:root {
    --bg: #0b2018;
    --gold: #c79a4c;
    --gold-soft: #d7b56f;
    --gold-line: rgba(199, 154, 76, 0.24);
    --text: #f7eedb;
    --text-soft: rgba(247, 238, 219, 0.78);
    --text-faint: rgba(247, 238, 219, 0.55);
    --shadow: 0 24px 64px rgba(0, 0, 0, 0.36);
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1120px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 50% 14%, rgba(94, 116, 68, 0.24), transparent 22%),
        radial-gradient(circle at 15% 12%, rgba(199, 154, 76, 0.08), transparent 24%),
        radial-gradient(circle at 85% 22%, rgba(199, 154, 76, 0.05), transparent 24%),
        linear-gradient(180deg, #08170f 0%, #0b2018 40%, #07140e 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

a { color: var(--gold-soft); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; }

.shell {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

/* ---------- topbar ---------- */
.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
    background: rgba(7, 18, 13, 0.86);
    border-bottom: 1px solid rgba(199, 154, 76, 0.1);
}

.topbar-inner {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 0; color: inherit; }
.brand:hover { text-decoration: none; }

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    padding: 8px;
    background: radial-gradient(circle at 50% 42%, rgba(29, 58, 41, 0.98), rgba(11, 32, 24, 0.98));
    border: 1px solid var(--gold-line);
    flex: 0 0 auto;
}

.brand-overline {
    display: block;
    margin-bottom: 2px;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-faint);
}

.brand-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.15rem, 2vw, 1.6rem);
    font-weight: 600;
    color: var(--gold-soft);
    line-height: 1;
}

.nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }

.nav a {
    padding: 9px 13px;
    border-radius: 999px;
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--text-soft);
}

.nav a:hover { background: rgba(199, 154, 76, 0.1); color: var(--gold-soft); text-decoration: none; }

/* ---------- buttons ---------- */
.button-primary,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 14px 22px;
    font-size: 0.94rem;
    font-weight: 700;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.button-primary:hover, .button-secondary:hover, .badge-link:hover { transform: translateY(-1px); text-decoration: none; }

.button-primary {
    color: #fff8e8;
    background: linear-gradient(135deg, #c79a4c 0%, #8f6326 100%);
    box-shadow: 0 12px 28px rgba(143, 99, 38, 0.28);
}

.button-secondary {
    color: var(--gold-soft);
    border: 1px solid rgba(199, 154, 76, 0.22);
    background: rgba(199, 154, 76, 0.05);
}

.badge-link {
    display: inline-flex;
    width: fit-content;
    border-radius: 18px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(199, 154, 76, 0.12);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.badge-link img { width: 210px; max-width: 100%; height: auto; }

/* ---------- hero ---------- */
.hero { padding: 40px 0 12px; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.eyebrow::before, .eyebrow::after {
    content: "";
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(199, 154, 76, 0.7));
}

.eyebrow::after { transform: scaleX(-1); }

.hero-title {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.6rem, 8vw, 4.9rem);
    line-height: 0.95;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff4dd;
}

.hero-subtitle {
    margin: 20px 0 0;
    max-width: 660px;
    font-size: clamp(1rem, 2.5vw, 1.13rem);
    line-height: 1.85;
    color: var(--text-soft);
}

.hero-points { display: grid; gap: 8px; margin: 20px 0 0; max-width: 660px; }

.hero-point {
    display: flex;
    align-items: flex-start;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.7;
}

.hero-point::before {
    content: "☦";
    margin-right: 9px;
    color: var(--gold);
    line-height: 1.7;
    flex: 0 0 auto;
}

.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 26px; }

.stat-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 30px 0 0;
}

.stat {
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(199, 154, 76, 0.14);
    background: rgba(255, 255, 255, 0.025);
}

.stat b {
    display: block;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: #fff1d1;
    line-height: 1.1;
}

.stat span { font-size: 0.84rem; color: var(--text-faint); }

.source-note {
    margin-top: 24px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(199, 154, 76, 0.14);
    background: rgba(255, 255, 255, 0.025);
    color: var(--text-faint);
    font-size: 0.9rem;
    line-height: 1.75;
}

.source-note strong { color: var(--gold-soft); }

/* ---------- sections ---------- */
.section { padding: 34px 0; scroll-margin-top: 84px; }

.section-title {
    margin: 0 0 8px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.9rem, 5.5vw, 3rem);
    line-height: 1.02;
    font-weight: 600;
    color: #fff1d1;
}

.section-lead {
    margin: 0 0 26px;
    max-width: 720px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-soft);
}

/* ---------- stories ---------- */
.story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: center;
    padding: 26px 0;
    border-top: 1px solid rgba(199, 154, 76, 0.1);
}

.story:first-of-type { border-top: 0; }

.story-shot {
    width: 100%;
    max-width: 340px;
    height: auto;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(199, 154, 76, 0.18);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #0d2318;
}

.story h3 {
    margin: 0 0 10px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 600;
    color: #fff1d1;
    line-height: 1.1;
}

.story p { margin: 0 0 12px; font-size: 0.99rem; line-height: 1.85; color: var(--text-soft); }
.story ul { margin: 0; padding-left: 20px; color: var(--text-soft); line-height: 1.8; font-size: 0.95rem; }

.story-kicker {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

/* ---------- narrative lede ---------- */
.lede {
    max-width: 760px;
    margin: 0 0 28px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.3rem, 3.4vw, 1.75rem);
    line-height: 1.5;
    color: #f4ead6;
}

.lede strong { color: var(--gold-soft); font-weight: 600; }

/* ---------- timeline ---------- */
.timeline {
    position: relative;
    margin: 0;
    padding: 6px 0 6px 26px;
    list-style: none;
    border-left: 1px solid rgba(199, 154, 76, 0.26);
}

.timeline li { position: relative; padding-bottom: 24px; }
.timeline li:last-child { padding-bottom: 4px; }

.timeline li::before {
    content: "";
    position: absolute;
    left: -31px;
    top: 7px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(199, 154, 76, 0.12);
}

.timeline .when {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 4px;
}

.timeline .what {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.3rem;
    color: #fff1d1;
    line-height: 1.25;
    display: block;
    margin-bottom: 4px;
}

.timeline p { margin: 0; font-size: 0.93rem; line-height: 1.75; color: var(--text-soft); }
.timeline .srb .what { color: var(--gold-soft); }
.timeline .srb::before { background: #e8c477; box-shadow: 0 0 0 5px rgba(232, 196, 119, 0.18); }

.timeline-note {
    margin: 22px 0 0;
    font-size: 0.86rem;
    color: var(--text-faint);
    line-height: 1.7;
}

/* ---------- gallery ---------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.gallery figure {
    margin: 0;
    border-radius: var(--radius-md);
    border: 1px solid rgba(199, 154, 76, 0.16);
    overflow: hidden;
    background: #0d2318;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.gallery img { width: 100%; height: auto; }

.gallery figcaption {
    padding: 10px 12px 12px;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--text-faint);
}

/* ---------- feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }

.feature-card {
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(199, 154, 76, 0.12);
    background: linear-gradient(180deg, rgba(18, 44, 31, 0.9), rgba(10, 25, 19, 0.95));
    box-shadow: var(--shadow);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: rgba(199, 154, 76, 0.08);
    border: 1px solid rgba(199, 154, 76, 0.18);
    font-size: 1.1rem;
}

.feature-card h3 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.55rem;
    font-weight: 600;
    color: #fff1d1;
}

.feature-card p { margin: 8px 0 0; font-size: 0.95rem; line-height: 1.8; color: var(--text-soft); }

/* ---------- article cards ---------- */
.article-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }

.article-card {
    display: block;
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(199, 154, 76, 0.14);
    background: linear-gradient(180deg, rgba(18, 44, 31, 0.88), rgba(11, 28, 20, 0.96));
    color: inherit;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.article-card:hover { transform: translateY(-2px); border-color: rgba(199, 154, 76, 0.3); text-decoration: none; }

.article-card h2, .article-card h3 {
    margin: 0 0 8px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff1d1;
    line-height: 1.15;
}

.article-card p { margin: 0; font-size: 0.93rem; line-height: 1.75; color: var(--text-soft); }

.article-card .more { display: inline-block; margin-top: 12px; font-size: 0.84rem; font-weight: 700; color: var(--gold-soft); }

/* ---------- faq ---------- */
.faq details {
    border-radius: var(--radius-md);
    border: 1px solid rgba(199, 154, 76, 0.14);
    background: rgba(255, 255, 255, 0.025);
    padding: 14px 18px;
    margin-bottom: 10px;
}

.faq summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: #fff1d1;
    list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "☦ "; color: var(--gold); }
.faq details[open] summary { color: var(--gold-soft); }
.faq p { margin: 12px 0 0; font-size: 0.95rem; line-height: 1.85; color: var(--text-soft); }

/* ---------- cta ---------- */
.cta-card {
    margin: 30px 0 46px;
    padding: 28px 22px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(199, 154, 76, 0.12);
    background: linear-gradient(180deg, rgba(18, 44, 31, 0.9), rgba(10, 25, 19, 0.95));
    box-shadow: var(--shadow);
}

.cta-card::before {
    content: "";
    position: absolute;
    top: -48px;
    right: -48px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 154, 76, 0.18), transparent 66%);
}

.cta-card h2 {
    position: relative;
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    line-height: 1.02;
    font-weight: 600;
    color: #fff1d1;
}

.cta-card p { position: relative; margin: 14px 0 0; max-width: 720px; font-size: 1rem; line-height: 1.8; color: var(--text-soft); }
.cta-actions { position: relative; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 22px; }

/* ---------- article page ---------- */
.crumbs { padding: 22px 0 0; font-size: 0.83rem; color: var(--text-faint); }
.crumbs a { color: var(--text-faint); }

.prose { max-width: 760px; padding-bottom: 20px; }

.prose h1 {
    margin: 18px 0 10px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.1rem, 6vw, 3.2rem);
    line-height: 1.03;
    font-weight: 600;
    color: #fff4dd;
}

.prose .meta { font-size: 0.82rem; color: var(--text-faint); margin: 0 0 26px; }

.prose h2 {
    margin: 38px 0 12px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: #fff1d1;
    line-height: 1.15;
}

.prose h3 { margin: 26px 0 8px; font-size: 1.1rem; font-weight: 700; color: var(--gold-soft); }
.prose p, .prose li { font-size: 1.01rem; line-height: 1.9; color: var(--text-soft); }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 7px; }
.prose strong { color: #fff1d1; }

.prose blockquote {
    margin: 24px 0;
    padding: 4px 0 4px 20px;
    border-left: 2px solid var(--gold-line);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.25rem;
    line-height: 1.55;
    color: #f2e8d4;
}

.table-wrap { overflow-x: auto; margin: 20px 0; }

table {
    border-collapse: collapse;
    width: 100%;
    min-width: 420px;
    font-size: 0.93rem;
}

th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid rgba(199, 154, 76, 0.14); color: var(--text-soft); }
th { color: var(--gold-soft); font-weight: 700; white-space: nowrap; }

.inline-cta {
    margin: 30px 0;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(199, 154, 76, 0.18);
    background: rgba(199, 154, 76, 0.05);
}

.inline-cta p { margin: 0 0 14px; }

.related { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(199, 154, 76, 0.12); }
.related h2 { margin: 0 0 12px; font-size: 1.2rem; color: var(--gold-soft); font-family: "Manrope", sans-serif; font-weight: 700; }
.related ul { margin: 0; padding-left: 20px; }
.related li { margin-bottom: 8px; line-height: 1.7; }

/* ---------- footer ---------- */
.footer { padding: 10px 0 40px; }

.footer-inner {
    border-top: 1px solid rgba(199, 154, 76, 0.1);
    padding-top: 20px;
    display: grid;
    gap: 16px;
    color: var(--text-faint);
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-brand { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.24rem; color: var(--gold-soft); }

.dedication {
    margin-top: 6px;
    max-width: 700px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(199, 154, 76, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(199, 154, 76, 0.035));
}

.dedication-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.dedication p { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.2rem; line-height: 1.5; color: #f2e8d4; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    * { scroll-behavior: auto !important; }
}

html { scroll-behavior: smooth; }

@media (min-width: 760px) {
    .feature-grid, .article-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .stat-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .story { grid-template-columns: minmax(0, 300px) minmax(0, 1fr); gap: 52px; padding: 44px 0; }
    .story.reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 300px); }
    .story.reverse .story-shot { order: 2; margin-left: auto; }
    .footer-inner { grid-template-columns: 1fr auto; align-items: start; }
}

@media (max-width: 520px) {
    .nav a { padding: 8px 10px; font-size: 0.8rem; }
    .brand-overline { display: none; }
}
