:root {
  --forest: #0f3b2e;
  --forest-2: #133f31;
  --forest-3: #08261e;
  --ivory: #f6f2e6;
  --ivory-2: #fffaf0;
  --gold: #c6a15a;
  --gold-2: #a77c31;
  --soil: #5a4632;
  --sage: #7d8f6a;
  --sage-2: #dfe7d4;
  --terracotta: #b85f3c;
  --charcoal: #2f3434;
  --muted: #68746d;
  --line: rgba(15, 59, 46, .18);
  --shadow: 0 24px 70px rgba(8, 38, 30, .14);
  --shadow-soft: 0 16px 40px rgba(8, 38, 30, .10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius: 18px;
  --max: 1180px;
  --serif: Georgia, 'Times New Roman', Times, serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold-2); }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
::selection { background: rgba(198, 161, 90, .35); }

.skip-link {
  position: absolute; left: -999px; top: 1rem; z-index: 9999;
  background: var(--forest); color: #fff; padding: .75rem 1rem; border-radius: 999px;
}
.skip-link:focus { left: 1rem; }
.site-header {
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid rgba(246, 242, 230, .16);
  background: rgba(15, 59, 46, .93);
  color: var(--ivory);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 84px;
  gap: 1.2rem;
}
.brand-lockup { display: flex; align-items: center; gap: .85rem; min-width: 220px; }
.brand-lockup img { width: 68px; height: auto; }
.brand-lockup span { display: block; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-size: .72rem; line-height: 1.25; }
.brand-lockup strong { font-family: var(--serif); font-size: 1.02rem; line-height: 1.08; font-weight: 700; color: var(--ivory); }
.nav-toggle { display: none; background: transparent; color: var(--ivory); border: 1px solid rgba(246,242,230,.35); border-radius: 999px; padding: .65rem .85rem; }
.site-nav { display: flex; align-items: center; gap: 1.05rem; }
.site-nav a { color: rgba(246,242,230,.88); font-size: .85rem; letter-spacing: .05em; text-transform: uppercase; }
.site-nav a.active, .site-nav a:hover { color: var(--gold); }
.nav-cta { border: 1px solid var(--gold); padding: .72rem 1rem; border-radius: 999px; color: var(--gold) !important; }
.nav-cta:hover { background: var(--gold); color: var(--forest) !important; }

.hero {
  position: relative;
  min-height: 780px;
  color: var(--ivory);
  background: var(--forest-3);
  overflow: hidden;
  display: grid;
  align-items: stretch;
}
.hero.short { min-height: 520px; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .62; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,38,30,.94) 0%, rgba(8,38,30,.74) 34%, rgba(8,38,30,.26) 72%, rgba(8,38,30,.52) 100%),
              linear-gradient(0deg, rgba(8,38,30,.74) 0%, rgba(8,38,30,0) 42%);
}
.hero-content {
  position: relative; z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 100px 0 86px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: end;
}
.hero.short .hero-content { padding: 72px 0; }
.kicker { color: var(--gold); text-transform: uppercase; letter-spacing: .24em; font-weight: 700; font-size: .78rem; }
h1, h2, h3, h4 { margin: 0; color: var(--forest); font-family: var(--serif); line-height: .98; letter-spacing: -.025em; }
.hero h1 { color: var(--ivory); font-size: clamp(3.8rem, 8vw, 8.8rem); max-width: 880px; margin: 1rem 0 1.2rem; }
.hero.short h1 { font-size: clamp(3rem, 6vw, 6.6rem); }
.hero-lead { font-size: clamp(1.12rem, 1.45vw, 1.38rem); max-width: 730px; color: rgba(246,242,230,.92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .95rem; margin-top: 2rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  border-radius: 999px; padding: .92rem 1.2rem; font-weight: 700;
  letter-spacing: .03em; transition: .25s ease; cursor: pointer; border: 1px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--forest); }
.btn-primary:hover { background: #d5b86d; color: var(--forest); transform: translateY(-2px); }
.btn-secondary { border-color: rgba(246,242,230,.45); color: var(--ivory); background: rgba(246,242,230,.06); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-dark { background: var(--forest); color: var(--ivory); }
.btn-dark:hover { background: var(--forest-3); color: var(--gold); transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--line); color: var(--forest); background: rgba(255,255,255,.35); }
.btn-ghost:hover { border-color: var(--gold); color: var(--forest); background: rgba(198,161,90,.16); }
.hero-card {
  background: rgba(246,242,230,.9);
  color: var(--forest);
  border: 1px solid rgba(198,161,90,.38);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow);
  max-width: 420px;
  justify-self: end;
}
.hero-card img { width: 160px; margin: 0 auto 1.2rem; }
.hero-card h2 { font-size: 2rem; text-align: center; margin-bottom: .75rem; }
.hero-card p { margin: 0; color: var(--soil); text-align: center; }
.hero-card .mini-row { margin-top: 1.4rem; display: grid; grid-template-columns: repeat(3,1fr); gap: .55rem; }
.hero-card .mini-row div { padding: .8rem .6rem; border: 1px solid var(--line); border-radius: 16px; text-align: center; font-size: .8rem; color: var(--forest); background: rgba(255,255,255,.38); }
.hero-card .mini-row strong { display: block; font-family: var(--serif); font-size: 1.45rem; color: var(--gold-2); }

.strip {
  background: var(--forest);
  color: var(--ivory);
  border-top: 1px solid rgba(246,242,230,.14);
  border-bottom: 1px solid rgba(246,242,230,.14);
}
.strip-inner { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.strip-item { padding: 1.3rem 1rem; border-right: 1px solid rgba(246,242,230,.14); }
.strip-item:first-child { border-left: 1px solid rgba(246,242,230,.14); }
.strip-item .num { display: block; color: var(--gold); font-family: var(--serif); font-size: 1.55rem; }
.strip-item span:last-child { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }

.section { padding: 92px 0; }
.section.tight { padding: 60px 0; }
.section.dark { background: var(--forest); color: var(--ivory); }
.section.dark h2, .section.dark h3 { color: var(--ivory); }
.section.sage { background: var(--sage-2); }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.section-head { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: end; margin-bottom: 3rem; }
.section-head.center { display: block; text-align: center; max-width: 850px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(2.6rem, 5.8vw, 6.2rem); }
.section-head p { margin: 0; color: var(--muted); font-size: 1.07rem; }
.section.dark .section-head p { color: rgba(246,242,230,.78); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.two-col.top { align-items: start; }
.copy-block h2 { font-size: clamp(2.4rem, 4.6vw, 5rem); margin: .6rem 0 1rem; }
.copy-block h3 { font-size: clamp(2rem, 3vw, 3.4rem); margin-bottom: .8rem; }
.copy-block p { color: var(--muted); font-size: 1.06rem; }
.section.dark .copy-block p { color: rgba(246,242,230,.78); }
.media-card { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); background: #fff; position: relative; }
.media-card img { width: 100%; height: 100%; object-fit: cover; min-height: 440px; }
.media-card.small img { min-height: 320px; }
.media-card-caption { position: absolute; left: 1rem; bottom: 1rem; right: 1rem; background: rgba(246,242,230,.92); border-radius: 20px; padding: 1rem 1.2rem; color: var(--forest); box-shadow: var(--shadow-soft); }
.media-card-caption strong { display: block; font-family: var(--serif); font-size: 1.35rem; }
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.card-grid.four { grid-template-columns: repeat(4,1fr); }
.card {
  background: rgba(255,255,255,.52);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: 0 12px 30px rgba(8,38,30,.05);
}
.card h3 { font-size: 1.72rem; margin-bottom: .65rem; }
.card p { color: var(--muted); margin: 0; }
.card .icon { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: rgba(198,161,90,.17); color: var(--gold-2); margin-bottom: 1rem; font-weight: 700; }
.card.dark-card { background: rgba(246,242,230,.06); border-color: rgba(246,242,230,.18); color: var(--ivory); }
.card.dark-card p { color: rgba(246,242,230,.73); }
.card.dark-card h3 { color: var(--ivory); }

.timeline { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; counter-reset: step; }
.timeline-step { position: relative; background: rgba(255,255,255,.5); border: 1px solid var(--line); border-radius: 22px; padding: 1.4rem; min-height: 230px; }
.timeline-step::before { counter-increment: step; content: '0' counter(step); display: inline-flex; width: 46px; height: 46px; align-items: center; justify-content: center; border-radius: 50%; background: var(--forest); color: var(--gold); font-family: var(--serif); font-size: 1.25rem; margin-bottom: 1rem; }
.timeline-step h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.timeline-step p { margin: 0; color: var(--muted); font-size: .95rem; }

.partner-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
}
.partner-card { background: var(--ivory-2); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-soft); }
.partner-card h3 { font-size: 2.3rem; margin-bottom: .6rem; }
.partner-card p { color: var(--muted); }
.partner-card .link-line { color: var(--gold-2); font-weight: 700; }

.product-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.product-item { background: rgba(255,255,255,.5); border: 1px solid var(--line); border-radius: 20px; padding: 1.25rem; display: grid; gap: .3rem; }
.product-item strong { color: var(--forest); font-family: var(--serif); font-size: 1.3rem; }
.product-item span { color: var(--muted); }

.story-quote { padding: 2rem; border-left: 4px solid var(--gold); background: rgba(198,161,90,.12); border-radius: 0 22px 22px 0; font-family: var(--serif); color: var(--forest); font-size: 1.6rem; line-height: 1.18; }
.story-quote small { display: block; margin-top: .9rem; font-family: var(--sans); color: var(--muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; }

.guest-card { background: var(--ivory-2); border-radius: var(--radius-xl); border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow-soft); }
.guest-card .guest-card-image { height: 320px; overflow: hidden; }
.guest-card .guest-card-image img { width: 100%; height: 100%; object-fit: cover; }
.guest-card .guest-card-body { padding: 1.8rem; }
.guest-card h3 { font-size: 2.1rem; margin-bottom: .7rem; }
.guest-card p { color: var(--muted); }

.accordion { display: grid; gap: .8rem; }
details { background: rgba(255,255,255,.55); border: 1px solid var(--line); border-radius: 18px; padding: 1.05rem 1.2rem; }
summary { cursor: pointer; font-weight: 700; color: var(--forest); }
details p { color: var(--muted); margin-bottom: 0; }

.ledger { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.ledger-item { background: rgba(246,242,230,.07); border: 1px solid rgba(246,242,230,.16); border-radius: 22px; padding: 1.5rem; }
.ledger-item strong { color: var(--gold); font-family: var(--serif); font-size: 2.6rem; display: block; line-height: 1; }
.ledger-item span { color: rgba(246,242,230,.78); }

.cta-band { background: var(--forest-3); color: var(--ivory); border-radius: var(--radius-xl); padding: 3rem; display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center; box-shadow: var(--shadow); }
.cta-band h2 { color: var(--ivory); font-size: clamp(2.4rem, 5vw, 5.2rem); }
.cta-band p { color: rgba(246,242,230,.78); margin: .9rem 0 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: flex-end; }

.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: start; }
.contact-form { background: var(--ivory-2); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: grid; gap: .35rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--forest); font-weight: 700; font-size: .88rem; }
.form-field input, .form-field textarea, .form-field select { border: 1px solid var(--line); border-radius: 14px; padding: .86rem .9rem; background: #fffdf7; color: var(--charcoal); }
.form-field textarea { min-height: 140px; resize: vertical; }
.form-note { color: var(--muted); font-size: .9rem; }

.site-footer { background: var(--forest-3); color: rgba(246,242,230,.8); padding: 58px 0 34px; }
.footer-grid { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; display: grid; grid-template-columns: 1.2fr repeat(3, .7fr); gap: 2rem; }
.footer-brand img { width: 180px; margin-bottom: 1rem; filter: drop-shadow(0 10px 30px rgba(0,0,0,.18)); }
.footer-brand p { max-width: 420px; }
.footer-col h4 { color: var(--gold); font-family: var(--sans); text-transform: uppercase; letter-spacing: .17em; font-size: .78rem; margin-bottom: .8rem; }
.footer-col a { display: block; padding: .25rem 0; color: rgba(246,242,230,.78); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { width: min(var(--max), calc(100% - 32px)); margin: 2.6rem auto 0; padding-top: 1.2rem; border-top: 1px solid rgba(246,242,230,.14); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .88rem; }

.story-map { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
.story-map-card { position: relative; overflow: hidden; border-radius: var(--radius-lg); min-height: 420px; background: var(--forest); color: var(--ivory); }
.story-map-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.story-map-card div { position: absolute; inset: auto 0 0; padding: 1.6rem; background: linear-gradient(0deg, rgba(8,38,30,.92), rgba(8,38,30,0)); }
.story-map-card h3 { color: var(--ivory); font-size: 2rem; }
.story-map-card p { color: rgba(246,242,230,.8); margin-bottom: 0; }

.integrity-note { border: 1px solid rgba(198,161,90,.48); background: rgba(198,161,90,.12); border-radius: 22px; padding: 1.4rem; color: var(--soil); }
.integrity-note strong { color: var(--forest); }

@media (max-width: 1050px) {
  .site-nav { position: fixed; top: 84px; left: 0; right: 0; background: rgba(15,59,46,.98); flex-direction: column; align-items: flex-start; padding: 1rem 1.3rem 1.3rem; border-bottom: 1px solid rgba(246,242,230,.16); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: .25s ease; }
  .site-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { width: 100%; padding: .55rem 0; }
  .nav-toggle { display: inline-flex; }
  .hero-content, .section-head, .two-col, .cta-band, .contact-layout, .partner-panel { grid-template-columns: 1fr; }
  .hero-card { justify-self: start; }
  .strip-inner { grid-template-columns: repeat(2,1fr); }
  .card-grid, .card-grid.four { grid-template-columns: repeat(2,1fr); }
  .timeline { grid-template-columns: repeat(2,1fr); }
  .ledger { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-map { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
}
@media (max-width: 680px) {
  .header-inner { min-height: 74px; }
  .brand-lockup strong { font-size: .9rem; }
  .brand-lockup img { width: 56px; }
  .site-nav { top: 74px; }
  .hero, .hero.short { min-height: auto; }
  .hero-content { padding: 72px 0 56px; gap: 2rem; }
  .hero h1 { font-size: clamp(3.15rem, 16vw, 4.8rem); }
  .hero-card { padding: 1.2rem; border-radius: 24px; }
  .hero-card .mini-row { grid-template-columns: 1fr; }
  .strip-inner, .card-grid, .card-grid.four, .timeline, .ledger, .product-list, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .section-head { gap: 1rem; margin-bottom: 2rem; }
  .section-head h2, .copy-block h2 { font-size: clamp(2.45rem, 14vw, 4.2rem); }
  .media-card img { min-height: 280px; }
  .cta-band { padding: 1.7rem; border-radius: 24px; }
  .footer-bottom { display: block; }
}
