:root {
    --black: #070706;
    --graphite: #151716;
    --graphite-2: #20231f;
    --gold: #c9a34d;
    --gold-2: #e7c879;
    --emerald: #073f33;
    --burgundy: #6d1f2e;
    --ivory: #f7f0df;
    --muted: #cfc4aa;
    --line: rgba(231, 200, 121, .22);
    --shadow: 0 24px 70px rgba(0, 0, 0, .35);
    --radius: 24px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--black);
    color: var(--ivory);
    font-family: Poppins, Arial, sans-serif;
    line-height: 1.75;
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(1180px, 92%);
    margin: auto
}

.topbar {
    background: #040404;
    border-bottom: 1px solid var(--line);
    font-size: .88rem;
    color: var(--muted)
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: .65rem 0;
    flex-wrap: wrap
}

.topbar span {
    margin-right: 1rem
}

.age-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border: 1px solid var(--gold);
    color: var(--gold-2);
    border-radius: 999px;
    padding: .28rem .75rem;
    font-weight: 700
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 7, 6, .88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transition: .3s
}

.navbar.scrolled {
    box-shadow: 0 14px 35px rgba(0, 0, 0, .38)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px
}

.brand {
    display: flex;
    align-items: center;
    gap: .8rem
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 35% 20%, var(--gold-2), var(--gold) 44%, #6f5520);
    color: #14110a;
    font-weight: 900;
    font-family: 'Playfair Display', serif
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: .03em
}

.brand-sub {
    font-size: .66rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--muted);
    margin-top: -.35rem
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .2rem
}

.nav-links a {
    padding: 1.65rem .85rem;
    color: var(--muted);
    font-weight: 600;
    font-size: .93rem;
    position: relative
}

.nav-links a:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 1rem;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: .25s;
    transform: translateX(-50%)
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--ivory)
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 48%
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--gold-2);
    border-radius: 12px;
    padding: .55rem .75rem;
    font-size: 1.2rem
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    border-radius: 999px;
    padding: .9rem 1.35rem;
    font-weight: 700;
    transition: .25s;
    border: 1px solid transparent
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    color: #161107;
    box-shadow: 0 15px 35px rgba(201, 163, 77, .22)
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(201, 163, 77, .34);
    color: #161107
}

.btn-outline {
    border-color: var(--gold);
    color: var(--gold-2);
    background: rgba(201, 163, 77, .05)
}

.btn-outline:hover {
    background: rgba(201, 163, 77, .14);
    color: var(--ivory);
    transform: translateY(-3px)
}

.hero {
    position: relative;
    min-height: 84vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(110deg, rgba(7, 7, 6, .96), rgba(7, 63, 51, .62)), var(--hero-img, url('../img/morvexalin-hero.jpg')) center/cover no-repeat
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 20%, rgba(201, 163, 77, .2), transparent 35%), linear-gradient(0deg, rgba(7, 7, 6, .82), transparent 35%)
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 7rem 0
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--gold-2);
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 800;
    margin-bottom: 1rem
}

.hero h1,
.page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 8vw, 6.2rem);
    line-height: .98;
    margin: 0 0 1.2rem
}

.hero p {
    font-size: 1.12rem;
    max-width: 680px;
    color: #e4d9c2
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem
}

.notice {
    border: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(109, 31, 46, .34), rgba(7, 63, 51, .22));
    border-radius: var(--radius);
    padding: 1.15rem 1.3rem;
    color: var(--ivory);
    box-shadow: var(--shadow)
}

section {
    padding: 88px 0
}

.section-head {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center
}

.section-head.left {
    text-align: left;
    margin-left: 0
}

.kicker {
    font-family: 'Playfair Display', serif;
    color: var(--gold-2);
    font-style: italic;
    font-size: 1.25rem
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.2vw, 3.5rem);
    line-height: 1.1;
    margin: .35rem 0;
    color: var(--ivory)
}

.section-text {
    color: var(--muted);
    margin: 0
}

.grid {
    display: grid;
    gap: 1.5rem
}

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

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

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

.card {
    background: linear-gradient(145deg, rgba(32, 35, 31, .92), rgba(13, 14, 13, .95));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.65rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden
}

.card:before {
    content: "";
    position: absolute;
    inset: auto -30% -60% auto;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(201, 163, 77, .18), transparent 65%)
}

.card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    margin: .4rem 0;
    color: var(--gold-2)
}

.card p,
.card li {
    color: var(--muted)
}

.media-card {
    min-height: 420px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow)
}

.media-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 7, 6, .9), rgba(7, 7, 6, .08))
}

.media-card .caption {
    position: absolute;
    z-index: 2;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem
}

.caption h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 0 0 .4rem
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    color: #111;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    font-weight: 900
}

.dark-band {
    background: linear-gradient(135deg, rgba(7, 63, 51, .32), rgba(109, 31, 46, .23));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.faq {
    max-width: 900px;
    margin: auto
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 18px;
    margin-bottom: .9rem;
    background: rgba(32, 35, 31, .72);
    overflow: hidden
}

.faq-q {
    width: 100%;
    background: transparent;
    border: 0;
    color: var(--ivory);
    padding: 1.15rem 1.25rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 800
}

.faq-q span {
    color: var(--gold-2)
}

.faq-a {
    display: none;
    padding: 0 1.25rem 1.25rem;
    color: var(--muted)
}

.faq-item.open .faq-a {
    display: block
}

.contact-box {
    background: linear-gradient(135deg, rgba(201, 163, 77, .12), rgba(7, 63, 51, .25));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem
}

.legal {
    max-width: 980px
}

.legal h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem)
}

.legal h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-2);
    margin-top: 2.4rem
}

.legal p,
.legal li {
    color: var(--muted)
}

.legal a {
    color: var(--gold-2)
}

footer {
    background: #040404;
    border-top: 1px solid var(--line);
    padding: 56px 0 24px;
    color: var(--muted)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem
}

.footer-title {
    font-family: 'Playfair Display', serif;
    color: var(--ivory);
    font-size: 1.8rem;
    font-weight: 900
}

.footer-links a {
    display: block;
    margin: .45rem 0;
    color: var(--muted)
}

.footer-links a:hover {
    color: var(--gold-2)
}

.footer-bottom {
    border-top: 1px solid var(--line);
    margin-top: 2rem;
    padding-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap
}

.cookie {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    width: min(940px, 92%);
    z-index: 2000;
    background: #0d0e0d;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: var(--shadow);
    display: none;
    gap: 1rem;
    align-items: center;
    justify-content: space-between
}

.cookie.show {
    display: flex
}

.cookie p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem
}

.btt {
    position: fixed;
    right: 18px;
    bottom: 92px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--graphite);
    color: var(--gold-2);
    display: none;
    place-items: center;
    z-index: 1500
}

.btt.show {
    display: grid
}

.list-clean {
    margin: 0;
    padding-left: 1.1rem
}

.divider {
    height: 1px;
    background: var(--line);
    margin: 2rem 0
}

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

    .nav-links {
        position: absolute;
        left: 0;
        right: 0;
        top: 78px;
        background: #090908;
        border-bottom: 1px solid var(--line);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: .8rem 4% 1.2rem
    }

    .nav-links.open {
        display: flex
    }

    .nav-links a {
        padding: .75rem 0
    }

    .split,
    .grid-2,
    .grid-3,
    .grid-4,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .hero {
        min-height: auto
    }

    .hero-content {
        padding: 5.2rem 0
    }

    .media-card {
        min-height: 340px
    }

    .cookie {
        flex-direction: column;
        align-items: flex-start
    }
}

@media(max-width:560px) {
    section {
        padding: 64px 0
    }

    .topbar .container {
        align-items: flex-start
    }

    .hero-actions {
        flex-direction: column
    }

    .btn {
        width: 100%
    }

    .brand-sub {
        display: none
    }

    .footer-bottom {
        display: block
    }

    .grid {
        gap: 1rem
    }
}