/* ══ Key Resourcing — Shared Stylesheet ══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:     #1e2d1f;
  --forest-mid: #2e4530;
  --forest-lt:  #3d5c3f;
  --honey:      #c4993a;
  --honey-lt:   #dbb96a;
  --honey-pale: #f0e4c4;
  --cream:      #f7f3ec;
  --parchment:  #ede6d8;
  --ink:        #1a1a16;
  --muted:      #6b6358;
  --border:     rgba(26,26,22,0.12);
  --serif:      'Cormorant Garant', Georgia, serif;
  --sans:       'Jost', system-ui, sans-serif;
  --section:    100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 5%; }
section { padding: var(--section) 0; }

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(30,45,31,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid rgba(196,153,58,0.2);
  transition: background 0.3s;
}

.nav-brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
.brand-main { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; color: #fff; letter-spacing: 0.04em; }
.brand-sub  { font-size: 0.58rem; font-weight: 300; color: var(--honey-lt); letter-spacing: 0.22em; text-transform: uppercase; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 2.25rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--honey-lt); }
.nav-links .nav-cta {
  border: 0.5px solid rgba(196,153,58,0.5);
  color: var(--honey) !important;
  padding: 0.4rem 1.25rem;
  transition: background 0.2s, border-color 0.2s !important;
}
.nav-links .nav-cta:hover { background: rgba(196,153,58,0.1); border-color: var(--honey); }

/* ── Mobile nav toggle (CSS-only) ── */
.nav-toggle { display: none; }          /* the hidden checkbox */
.nav-hamburger {
  display: none;                          /* hidden on desktop, shown on mobile */
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px; height: 30px;
  cursor: pointer;
  z-index: 210;
}
.nav-hamburger span {
  display: block;
  height: 2px; width: 100%;
  background: var(--honey-lt);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Typography ── */
.eyebrow {
  display: block;
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 0.75rem;
}

.section-h {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  max-width: 500px;
}

.ornament {
  display: block;
  text-align: center;
  color: var(--honey);
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.5em;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.rule::before, .rule::after {
  content: ''; flex: 1; height: 0.5px;
  background: var(--honey); opacity: 0.65;
}
.rule span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--honey);
  white-space: nowrap;
  letter-spacing: 0.06em;
}

/* ── Buttons ── */
.btn-gold {
  display: inline-block;
  background: var(--honey);
  color: var(--forest);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 2.2rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: var(--honey-lt); transform: translateY(-1px); }

.btn-outline-dark {
  display: inline-block;
  border: 0.5px solid var(--forest);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 2.2rem;
  transition: background 0.2s;
}
.btn-outline-dark:hover { background: rgba(30,45,31,0.06); }

.btn-outline-light {
  display: inline-block;
  border: 0.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.75);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 2.2rem;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline-light:hover { border-color: var(--honey); color: var(--honey-lt); }

/* ── Page hero ── */
.page-hero {
  padding: 140px 0 80px;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 0.5px solid rgba(196,153,58,0.1);
  pointer-events: none;
}
.page-hero .eyebrow { color: var(--honey); }
.page-hero .section-h { color: #fff; max-width: 620px; }
.page-hero .section-lead { color: rgba(255,255,255,0.75); }

/* ── Strip stats ── */
.stats-strip {
  background: rgba(196,153,58,0.07);
  border-top: 0.5px solid rgba(196,153,58,0.18);
  border-bottom: 0.5px solid rgba(196,153,58,0.18);
}
.stats-strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.strip-stat {
  padding: 1.75rem 0 1.75rem 2.5rem;
  border-right: 0.5px solid rgba(196,153,58,0.15);
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
}
.strip-stat:first-child { padding-left: 0; }
.strip-stat:last-child  { border-right: none; }
.stat-n { font-family: var(--serif); font-size: 2.1rem; font-weight: 300; color: var(--honey-lt); line-height: 1; }
.stat-l { font-size: 0.75rem; font-weight: 300; color: rgba(255,255,255,0.75); letter-spacing: 0.04em; }

/* ── Footer ── */
footer {
  background: #111710;
  padding: 3.5rem 5% 2rem;
  border-top: 0.5px solid rgba(196,153,58,0.35);
}
.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.15);
  margin-bottom: 2rem;
}
.footer-brand-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: #fff; letter-spacing: 0.04em; }
.footer-brand-tag  { font-size: 0.6rem; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; color: var(--honey); margin: 3px 0 1rem; display: block; }
.footer-brand p    { color: rgba(255,255,255,0.68); font-size: 0.82rem; font-weight: 300; line-height: 1.8; max-width: 230px; }
.footer-col h4 { font-size: 0.62rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--honey); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a  { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.82rem; font-weight: 300; transition: color 0.2s; }
.footer-col a:hover { color: var(--honey-lt); }
.footer-bottom {
  max-width: 1160px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.74rem; font-weight: 300; color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 900px) {
  :root { --section: 70px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip-inner { grid-template-columns: 1fr; }
  .strip-stat { padding-left: 0; border-right: none; border-bottom: 0.5px solid rgba(196,153,58,0.12); }
  .strip-stat:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  :root { --section: 56px; }
  .footer-grid { grid-template-columns: 1fr; }

  /* show hamburger */
  .nav-hamburger { display: flex; }

  /* mobile dropdown menu */
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(30,45,31,0.99);
    backdrop-filter: blur(10px);
    border-bottom: 0.5px solid rgba(196,153,58,0.2);
    padding: 0.5rem 5% 1.25rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.9rem 0;
    font-size: 0.8rem;
    border-bottom: 0.5px solid rgba(196,153,58,0.12);
  }
  .nav-links .nav-cta {
    border: 0.5px solid rgba(196,153,58,0.5);
    text-align: center;
    padding: 0.8rem 1.25rem;
    margin-top: 0.75rem;
  }

  /* open state — when checkbox checked */
  .nav-toggle:checked ~ .nav-links {
    max-height: 400px;
    opacity: 1;
    padding-top: 0.5rem;
  }
  /* hamburger → X animation */
  .nav-toggle:checked ~ .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-hamburger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}