/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─── TOKENS ─── */
:root {
  --dark-olive:   #252E0F;   /* deepest — nav, hero, strips, footer   */
  --olive:        #6B7540;   /* mid olive — buttons, borders           */
  --olive-mid:    #7E8C4A;   /* lighter olive — facts strip bg         */
  --olive-light:  #A3B062;   /* subtle use                             */
  --gold:         #C8A84B;   /* THE pop — labels, dividers, numbers    */
  --gold-light:   #DBBE72;   /* hover states                           */
  --beige:        #EDD898;   /* richest beige surface                  */
  --beige-mid:    #F0E3B8;   /* mid surface                            */
  --beige-light:  #F7F0D8;   /* lightest content bg                    */
  --tan:          #C4AC7C;
  --text:         #252E0F;
  --text-light:   #5A562C;
  --white:        #FAFAF3;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--beige-light);
  line-height: 1.75;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; width: 100%;
  z-index: 1000;
  height: 68px;
  background: var(--dark-olive);
  border-bottom: 1px solid rgba(200,168,75,0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav-links button {
  background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s; padding: 0;
}
.nav-links button:hover  { color: var(--gold-light); }
.nav-links button.active { color: var(--white); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--dark-olive) !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 2px;
  border-bottom: none !important;
  padding-bottom: 0.5rem !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover  { background: var(--gold-light) !important; }
.nav-cta.active { background: var(--gold-light) !important; border-bottom: none !important; }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: 68px; left: 0; right: 0;
  background: var(--dark-olive);
  border-bottom: 1px solid rgba(200,168,75,0.15);
  padding: 1.75rem 2rem; gap: 1.5rem; z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu button {
  background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); text-align: left; padding: 0;
}
.mobile-menu button.active { color: var(--gold-light); }

/* ─── TABS ─── */
.tab-content        { display: none; }
.tab-content.active { display: block; }

/* ─── SHARED ─── */
.section-inner { max-width: 860px; margin: 0 auto; }

.section-label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 700; color: var(--dark-olive);
  line-height: 1.12; margin-bottom: 1.25rem;
}
.divider {
  width: 44px; height: 2px;
  background: var(--gold); margin-bottom: 2.5rem;
}

/* ─── BODY TEXT ─── */
p {
  color: var(--text-light);
  margin-bottom: 1.6rem;
  font-size: 1rem; line-height: 1.9;
  max-width: 700px;
}
p:last-child { margin-bottom: 0; }

.lead-p {
  font-size: 1.12rem !important;
  color: var(--text) !important;
  line-height: 1.9 !important;
  margin-bottom: 2rem !important;
}

/* ─── PAGE HEADER BANNER ─── */
.page-header {
  background: var(--dark-olive);
  padding: 7rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 80%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,168,75,0.3), transparent);
}
.page-header .section-label { color: var(--gold); }
.page-header .section-title { color: var(--white); }
.page-header .divider       { background: var(--gold); margin: 0 auto; }

/* ─── FACTS STRIP ─── */
.facts-strip {
  background: var(--olive-mid);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2.75rem 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.fact {
  display: flex; flex-direction: column; align-items: center;
  padding: 0.5rem 3.5rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.fact:last-child { border-right: none; }
.fact-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 0.4rem;
}
.fact-label {
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.55); white-space: nowrap;
}

/* ─── PULL QUOTE ─── */
.pull-quote {
  background: var(--dark-olive);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 1.75rem 2rem;
  margin: 2rem 0;
  max-width: 680px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
}

/* ─── MISSION LIST ─── */
.mission-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.mission-list li {
  background: var(--beige-light);
  border-left: 3px solid var(--gold);
  padding: 0.9rem 1.25rem;
  border-radius: 0 4px 4px 0;
  color: var(--text-light);
  font-size: 0.94rem; line-height: 1.6;
  max-width: none;
}
.mission-list li::before { display: none; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block; text-decoration: none;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer; border: none;
}
.btn-primary {
  background: var(--olive); color: var(--white);
  padding: 0.95rem 2.6rem;
}
.btn-primary:hover { background: var(--dark-olive); transform: translateY(-1px); }
.btn-gold {
  background: var(--gold); color: var(--dark-olive);
  padding: 0.95rem 2.6rem; font-weight: 700;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ─── PHOTO PLACEHOLDERS ─── */
.photo-slot {
  background: var(--beige);
  border: 2px dashed var(--tan);
  border-radius: 4px; width: 100%;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.photo-slot::after {
  content: 'Add Photo Here';
  font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--tan);
  pointer-events: none;
}
.photo-slot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.photo-slot:has(img)::after { display: none; }

.photos-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.photos-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }

.photos-label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}

/* ─── DARK PHOTO SLOT VARIANT (inside dark strips) ─── */
.dark-slot {
  background: rgba(255,255,255,0.05);
  border-color: rgba(200,168,75,0.25);
  border-radius: 4px;
}
.dark-slot::after { color: rgba(200,168,75,0.4); }

/* ─── CONTENT BLOCKS ─── */
.text-section  { padding: 5rem 2rem; }
.split-section { padding: 5rem 2rem; }
.photo-strip   { padding: 4rem 2rem 5rem; }

.split-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  max-width: 1020px; margin: 0 auto;
}
.split-row.img-left .sr-img { order: -1; }
.split-row .sr-text p       { max-width: none; }
.split-row .photo-slot      { aspect-ratio: 4/5; border: none; border-radius: 4px; }

.strip-inner { max-width: 1020px; margin: 0 auto; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark-olive);
  border-top: 1px solid rgba(200,168,75,0.15);
  color: rgba(255,255,255,0.35);
  text-align: center;
  padding: 2.25rem;
  font-size: 0.78rem; letter-spacing: 0.06em;
}
footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
footer a:hover { color: var(--gold-light); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .photos-3 { grid-template-columns: 1fr 1fr; }
  .fact     { padding: 0.5rem 2rem; }
}
@media (max-width: 768px) {
  .split-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-row.img-left .sr-img { order: 0; }
  .split-row .photo-slot { aspect-ratio: 4/3; }
}
@media (max-width: 640px) {
  .nav-links   { display: none; }
  .hamburger   { display: flex; }
  nav          { padding: 0 1.5rem; }
  .photos-2,
  .photos-3    { grid-template-columns: 1fr; }
  .page-header { padding: 5.5rem 1.5rem 3.5rem; }
  .text-section, .split-section, .photo-strip { padding: 3.5rem 1.5rem; }
  .facts-strip { gap: 1rem; }
  .fact {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 1rem 2rem; width: 100%; align-items: flex-start;
  }
  .fact:last-child { border-bottom: none; }
}
