:root {
    --sand: #F3E9DD;
    --stone: #E5DED4;
    --teal: #2F6F6E;
    --brown: #6B4F3A;
    --gold: #C9A227;
    --ink: #1F2A2E;
    --paper: #FFFFFF;
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Noto Sans CJK SC", "Microsoft Yahei", Arial, sans-serif;
    background: linear-gradient(180deg, var(--sand) 0%, #fff 60%);
    color: var(--ink);
    line-height: 1.65
}

a {
    color: var(--teal);
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px
}

.btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 12px;
    background: var(--gold);
    color: #1b1b1b;
    font-weight: 600;
    box-shadow: 0 8px 20px #00000014
}

.btn:hover {
    filter: brightness(.96)
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--teal);
    color: #fff;
    box-shadow: 0 2px 8px rgba(31, 42, 46, .08)
}

.header .bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: .3px
}

.brand img {
    height: 40px;
    width: auto;
    display: block
}

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center
}

nav a {
    display: block;
    padding: 12px 14px;
    color: #fff;
    border-bottom: 3px solid transparent
}

nav a:hover,
nav a.active {
    background: rgba(255, 255, 255, .1);
    border-bottom-color: var(--gold)
}

@media (max-width:900px) {
    .menu-toggle {
        display: block
    }

    nav {
        display: none;
        padding: 6px 10px
    }

    nav.open {
        display: block
    }

    nav ul {
        flex-direction: column;
        align-items: stretch
    }

    nav a {
        padding: 12px
    }
}

.hero {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 60vh;
    overflow: hidden
}

.hero img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    filter: brightness(.75) saturate(1.05);
    border-bottom: 6px solid var(--gold)
}

.hero .hero-content {
    position: absolute;
    inset: auto 0 30px 0;
    margin: auto;
    width: min(950px, calc(100% - 32px));
    background: rgba(47, 111, 110, .78);
    color: #fff;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(47, 111, 110, .18)
}

.fullbleed {
    position: relative;
    min-height: 90vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    margin: 18px 0;
    border-bottom: 6px solid var(--gold)
}

.fullbleed img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.75) saturate(1.05)
}

.fullbleed .content {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, .35);
    color: #fff;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
    text-align: center;
    width: min(900px, 92%)
}

.fullbleed .content h2 {
    color: #fff;
    border: none;
    margin-top: 0
}

main {
    padding: 28px 0 60px
}

section {
    background: var(--paper);
    border: 1px solid #0000000f;
    border-radius: 16px;
    box-shadow: 0 8px 28px #0000000b;
    padding: 22px;
    margin: 18px 0
}

h1,
h2,
h3 {
    line-height: 1.25
}

h2 {
    color: #21807d;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 8px
}

h3 {
    color: #6B4F3A
}

.grid {
    display: grid;
    gap: 16px
}

.grid.cols-2 {
    grid-template-columns: repeat(2, 1fr)
}

.grid.cols-3 {
    grid-template-columns: repeat(3, 1fr)
}

@media (max-width:900px) {

    .grid.cols-2,
    .grid.cols-3 {
        grid-template-columns: 1fr
    }
}

.card {
    background: linear-gradient(180deg, #ffffff 0%, var(--stone) 100%);
    border: 1px solid #00000012;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px #00000014;
    transition: .25s ease
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px #00000020
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover
}

.card .content {
    padding: 14px
}

.list {
    display: flex;
    gap: 16px;
    align-items: stretch;
    margin: 16px 0;
    background: var(--paper);
    border: 1px solid #00000012;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px #00000014
}

.list img {
    width: 320px;
    height: 220px;
    object-fit: cover
}

.list .text {
    padding: 14px;
    flex: 1
}

@media (max-width:900px) {
    .list {
        flex-direction: column
    }

    .list img {
        width: 100%;
        height: 220px
    }
}

footer {
    background: var(--teal);
    color: #fff;
    padding: 26px 16px;
    border-top: 6px solid var(--gold)
}

footer .cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px
}

footer a {
    color: #fff;
    opacity: .95
}

footer img.qr {
    width: 130px;
    height: 130px;
    object-fit: contain;
    background: #fff;
    padding: 6px;
    border-radius: 10px
}

@media (max-width:900px) {
    footer .cols {
        grid-template-columns: 1fr
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(8px) scale(.98)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.reveal {
    opacity: 0;
    transform: translateY(12px)
}

.reveal.in {
    opacity: 1;
    transform: none;
    animation: fadeInUp .6s ease-out both
}

.float-in {
    animation: floatIn .7s ease-out both
}

audio {
    width: 100%;
    margin-top: 8px
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px
}