@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
    --ink: #1d1710;
    --muted: #746958;
    --paper: #f5eddd;
    --cream: #eadcc2;
    --green: #203d39;
    --gold: #b99535;
    --deep-gold: #80621d;
    --wine: #7c2637;
    --maroon: #4c1117;
    --line: rgba(75, 47, 25, 0.18);
    --shadow: 0 24px 70px rgba(45, 26, 12, 0.2);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Jost', Arial, sans-serif;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -10;
    pointer-events: none;
    background:
        linear-gradient(rgba(245,237,221,0.88), rgba(245,237,221,0.88)),
        radial-gradient(circle at 20% 18%, rgba(185,149,53,0.13), transparent 34%),
        radial-gradient(circle at 88% 78%, rgba(124,38,55,0.12), transparent 32%);
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px clamp(20px, 4vw, 56px);
    color: #fffaf3;
    background: linear-gradient(180deg, rgba(29, 23, 16, 0.82), rgba(29, 23, 16, 0));
}

.legal-view .site-header {
    color: var(--ink);
    background: rgba(248, 246, 239, 0.94);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 30px rgba(18, 32, 29, 0.08);
    backdrop-filter: blur(14px);
}

.brand {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    font-weight: 700;
    letter-spacing: 0;
    text-shadow: 0 2px 20px rgba(0,0,0,0.28);
}

.brand-logo img {
    display: block;
    width: clamp(118px, 14vw, 174px);
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.36));
}

.legal-view .brand {
    color: var(--green);
    text-shadow: none;
}

.legal-view .brand-logo img {
    filter: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav a {
    opacity: 0.9;
}

.nav a:hover,
.nav a:focus {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.hero,
.editorial-panel {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: end;
    padding: 120px clamp(20px, 5vw, 70px) 84px;
    color: #fffaf3;
    isolation: isolate;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(29, 23, 16, 0.88) 0%, rgba(76, 17, 23, 0.54) 48%, rgba(32, 61, 57, 0.28) 100%),
        linear-gradient(0deg, rgba(29, 23, 16, 0.78) 0%, rgba(29, 23, 16, 0.06) 54%),
        url('https://images.unsplash.com/photo-1603262110263-fb0112e7cc33?auto=format&fit=crop&w=2200&q=82') center center / cover no-repeat;
}

.hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    z-index: -1;
    height: 18vh;
    background: linear-gradient(0deg, var(--paper), rgba(255,250,243,0));
}

.hero-content,
.panel-copy {
    max-width: 920px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,250,243,0.84);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--gold);
}

h1,
.editorial-panel h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    text-transform: uppercase;
    font-size: clamp(4rem, 11vw, 9rem);
    line-height: 0.85;
    font-weight: 700;
    letter-spacing: 0;
    text-shadow: 0 12px 50px rgba(0,0,0,0.28);
}

h1 {
    color: #fff7df;
}

.hero-copy,
.editorial-panel p {
    max-width: 560px;
    margin-top: 22px;
    color: rgba(255,250,243,0.88);
    font-size: clamp(0.9rem, 1.5vw, 1.06rem);
    line-height: 1.85;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border: 1px solid rgba(255,250,243,0.42);
    background: linear-gradient(180deg, #fff8df, #d8bd65);
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button.secondary {
    background: transparent;
    color: #fffaf3;
}

.button.secondary:hover {
    background: rgba(255,250,243,0.12);
}

.editorial-panel {
    border-top: 1px solid rgba(255,250,243,0.14);
}

.editorial-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background: var(--panel-image) center center / cover no-repeat;
    transform: scale(1.02);
}

.editorial-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(25, 18, 12, 0.76), rgba(76, 17, 23, 0.22) 55%, rgba(25, 18, 12, 0.5)),
        linear-gradient(0deg, rgba(25, 18, 12, 0.82), rgba(25, 18, 12, 0.1) 54%);
}

.editorial-panel h2 {
    max-width: 760px;
    font-size: clamp(2.8rem, 8vw, 7rem);
    line-height: 0.88;
    color: #f7e5a4;
}

.text-link {
    display: inline-flex;
    margin-top: 22px;
    color: #fffaf3;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-bottom: 1px solid rgba(255,250,243,0.64);
    padding-bottom: 5px;
}

.launch-band {
    padding: 74px clamp(20px, 5vw, 70px);
    background: var(--paper);
}

.legacy-band {
    display: grid;
    grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1fr);
    gap: clamp(28px, 6vw, 90px);
    align-items: center;
    padding: 84px clamp(20px, 5vw, 70px);
    background:
        linear-gradient(90deg, rgba(76,17,23,0.08), rgba(185,149,53,0.12)),
        var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.legacy-mark {
    display: grid;
    place-items: center;
}

.legacy-mark img {
    width: min(100%, 360px);
    height: auto;
    box-shadow: 0 22px 56px rgba(45, 26, 12, 0.18);
}

.launch-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: clamp(28px, 6vw, 90px);
    align-items: start;
}

.section-kicker {
    color: var(--wine);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
}

h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--green);
}

.lead {
    max-width: 720px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.store-panel {
    border-top: 3px solid var(--gold);
    background: #fff8e9;
    box-shadow: var(--shadow);
    padding: 28px;
}

.store-panel h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 16px;
}

.info-list {
    display: grid;
    gap: 15px;
    color: var(--muted);
    line-height: 1.55;
}

.info-list strong {
    display: block;
    color: var(--ink);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #eadcc2;
}

.feature {
    padding: 34px clamp(20px, 4vw, 56px);
    border-right: 1px solid var(--line);
}

.feature:last-child {
    border-right: 0;
}

.feature span {
    display: block;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--green);
    font-size: 1.75rem;
    line-height: 1.05;
    margin-bottom: 10px;
}

.feature p {
    color: var(--muted);
    line-height: 1.7;
}

.legal-page {
    min-height: 100vh;
    padding: 124px clamp(20px, 5vw, 70px) 70px;
    background:
        linear-gradient(180deg, rgba(49,74,66,0.08), rgba(255,250,243,0) 360px),
        var(--paper);
}

.legal-shell {
    max-width: 980px;
    margin: 0 auto;
}

.legal-shell h1 {
    color: var(--green);
    text-shadow: none;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.92;
}

.legal-intro {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 34px;
}

.legal-section {
    padding: 26px 0;
    border-top: 1px solid var(--line);
}

.legal-section h2 {
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    margin-bottom: 10px;
}

.legal-section p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 1rem;
}

.updated {
    color: var(--wine);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}

.footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 28px clamp(20px, 5vw, 70px);
    background: #1d1710;
    color: rgba(255,250,243,0.82);
}

.footer strong {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #fffaf3;
    font-size: 1.7rem;
    margin-bottom: 4px;
}

.footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 900px) {
    .site-header {
        position: absolute;
        align-items: flex-start;
    }

    .nav {
        display: none;
    }

    .launch-band,
    .legacy-band,
    .footer {
        grid-template-columns: 1fr;
    }

    .feature-strip {
        grid-template-columns: 1fr;
    }

    .feature {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .feature:last-child {
        border-bottom: 0;
    }

    .footer nav {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .hero,
    .editorial-panel {
        min-height: 88vh;
        padding-bottom: 56px;
    }

    .hero-content,
    .panel-copy {
        max-width: calc(100vw - 40px);
        width: 100%;
    }

    h1 {
        font-size: clamp(2.85rem, 15vw, 3.55rem);
        line-height: 0.92;
        max-width: 100%;
    }

    .hero-copy,
    .editorial-panel p {
        max-width: 100%;
    }

    .eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.1em;
    }

    .actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .store-panel {
        padding: 22px;
    }
}
