/* ============================================================
   SETLHARE FARM — Editorial Swiss
   Monochromatic palette derived from primary #1a1408
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,700&family=DM+Sans:wght@400;500;600&display=swap');

/* ============================================================
   FILM GRAIN — FG-02 Standard (opacity 0.09)
   ============================================================ */
/* Global grain overlay — fixed, covers all pages via shared stylesheet */
body::before {
  content: '';
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.09;
  pointer-events: none;
  z-index: 9999;
}

/* ============================================================
   CSS VARIABLES — Monochromatic from #1a1408 — warm amber gold editorial
   ============================================================ */
:root {
  /* Monochromatic palette — all derived from hue 100, saturation ~28% (soft agricultural green) */
  --color-background:  #fdfbf4;   /* warm near-white — paper white */
  --color-surface:     #f5f0e0;   /* warm light surface */
  --color-surface-dark: #100e04;  /* deep warm dark */
  --color-primary:     #1a1408;   /* near-black warm — #1a1408 equiv */
  --color-accent:      #c47b0e;   /* amber gold — #c47b0e equiv */
  --color-text:        #100c02;    /* near-black warm */
  --color-muted:       #9a8a5a;   /* warm muted grey */
  --color-divider:     #e8e0c4;   /* warm divider rule */
  --color-text-on-dark: #fdf5e0;  /* warm near-white on dark */

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --margin-outer: 8vw;
  --nav-height: 80px;
  --spacing-unit: 1rem;

  /* Radii — editorial: none */
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;

  /* Shadows — none */
  --shadow-sm: none;
  --shadow-lg: none;

  /* Transitions */
  --transition-speed: 200ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

@media (hover: none) {
  body { cursor: auto; }
  #custom-cursor { display: none; }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul {
  list-style: none;
}

/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-surface);
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* ============================================================
   PAGE LOADER — Progress Bar
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--color-background);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.dismissed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
}

.page-loader__bar-track {
  width: min(320px, 60vw);
  height: 1px;
  background: var(--color-divider);
  position: relative;
  overflow: hidden;
}

.page-loader__bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--color-accent);
  transition: width 0.3s var(--ease-out);
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
#custom-cursor {
  pointer-events: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
}

#cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

#cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition-speed) ease,
              border-color var(--transition-speed) ease;
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: var(--color-background);
  border-bottom-color: var(--color-divider);
}

.site-nav--light {
  /* Over dark hero — light text */
}

.site-nav__inner {
  max-width: 100%;
  padding: 0 var(--margin-outer);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav__wordmark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--color-text-on-dark);
  transition: color var(--transition-speed) ease;
}

.site-nav.scrolled .site-nav__wordmark {
  color: var(--color-primary);
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.site-nav__links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-divider);
  transition: color var(--transition-speed) ease;
}

.site-nav.scrolled .site-nav__links a {
  color: var(--color-muted);
}

.site-nav__links a:hover,
.site-nav__links a.active {
  color: var(--color-accent);
}

.site-nav.scrolled .site-nav__links a:hover,
.site-nav.scrolled .site-nav__links a.active {
  color: var(--color-accent);
}

.site-nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.site-nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-text-on-dark);
  transition: all var(--transition-speed) ease;
}

.site-nav.scrolled .site-nav__hamburger span {
  background: var(--color-primary);
}

.site-nav__hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.site-nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.site-nav__hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-background);
  border-bottom: 1px solid var(--color-divider);
  padding: 2rem var(--margin-outer);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
  pointer-events: none;
}

.site-nav__mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.site-nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.site-nav__mobile a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.site-nav__mobile a:hover {
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .site-nav__links { display: none; }
  .site-nav__hamburger { display: flex; }
  .site-nav__mobile { display: block; }
  .site-nav__inner { padding: 0 1.5rem; }
}

/* ============================================================
   HERO — Full-Bleed (from animation context: hero: full-bleed)
   height: 100vh; overflow: hidden — nav is position:fixed overlay
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background-color: #100e04;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Sepia filter for editorial documentary treatment */
  filter: sepia(0.65) contrast(1.05) brightness(0.82);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    hsla(25, 40%, 8%, 0.88) 0%,
    hsla(25, 40%, 8%, 0.55) 40%,
    hsla(25, 40%, 8%, 0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 10;
  padding: 0 var(--margin-outer) 8vh;
  max-width: 70ch;
}

.hero__meta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.hero__rule {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  margin-bottom: 1.5rem;
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-text-on-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero__deck {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-divider);
  max-width: 55ch;
  margin-bottom: 2.5rem;
}

.hero__cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-on-dark);
  border: 1px solid var(--color-accent);
  padding: 0.85rem 2rem;
  transition: background var(--transition-speed) ease,
              color var(--transition-speed) ease;
}

.hero__cta:hover {
  background: var(--color-accent);
  color: var(--color-text-on-dark);
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  min-height: 50vh;
  padding: calc(var(--nav-height) + 8vh) var(--margin-outer) 6vh;
  background: var(--color-background);
  border-bottom: 1px solid var(--color-divider);
}

.page-hero__meta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.page-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-primary);
  max-width: 20ch;
}

.page-hero__deck {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-muted);
  max-width: 55ch;
  margin-top: 1.5rem;
}

/* ============================================================
   SECTION PRIMITIVES
   ============================================================ */
.section {
  padding: 8vh var(--margin-outer);
}

.section--surface {
  background: var(--color-surface);
}

.section--dark {
  background: var(--color-surface-dark);
}

.section-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-divider);
  margin-bottom: 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}

.chapter-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.chapter-heading--large {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
}

.chapter-heading--italic {
  font-style: italic;
}

.chapter-heading--light {
  color: var(--color-text-on-dark);
}

.deck {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-muted);
  max-width: 55ch;
  margin-bottom: 1.5rem;
}

.deck--light {
  color: var(--color-divider);
}

.body-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text);
  max-width: 65ch;
  margin-bottom: 1.25rem;
}

.body-text--light {
  color: var(--color-text-on-dark);
}

.body-text--muted {
  color: var(--color-muted);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.02em;
  margin-top: 1rem;
  transition: gap var(--transition-speed) ease;
}

.link-arrow:hover {
  gap: 0.7rem;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  background: var(--color-background);
}

.stats-band__cell {
  padding: 4vh var(--margin-outer);
  border-left: 1px solid var(--color-divider);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stats-band__cell:first-child {
  border-left: none;
}

.stats-band__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.stats-band__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-band__cell:nth-child(3) {
    border-left: none;
  }
}

@media (max-width: 480px) {
  .stats-band {
    grid-template-columns: 1fr;
  }
  .stats-band__cell {
    border-left: none;
    border-top: 1px solid var(--color-divider);
    padding: 3vh 1.5rem;
  }
}

/* ============================================================
   PULL-QUOTE BAND
   ============================================================ */
.pull-quote-band {
  padding: 10vh var(--margin-outer);
  background: var(--color-surface);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pull-quote-band__rule {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  margin: 0 auto 3rem;
  transform-origin: left center;
}

.pull-quote-band__text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--color-primary);
  max-width: 70ch;
  margin-bottom: 2rem;
}

.pull-quote-band__attribution {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ============================================================
   ASYMMETRIC SPLIT LAYOUTS
   ============================================================ */
.split-65-35 {
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 6rem;
  align-items: start;
}

.split-60-40 {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 6rem;
  align-items: start;
}

.split-55-45 {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 6rem;
  align-items: start;
}

.split-35-65 {
  display: grid;
  grid-template-columns: 35fr 65fr;
  gap: 6rem;
  align-items: start;
}

.split-40-60 {
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: 6rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .split-65-35,
  .split-60-40,
  .split-55-45,
  .split-35-65,
  .split-40-60 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Sidebar with left rule */
.sidebar-ruled {
  border-left: 1px solid var(--color-divider);
  padding-left: 2rem;
}

@media (max-width: 1024px) {
  .sidebar-ruled {
    border-left: none;
    border-top: 1px solid var(--color-divider);
    padding-left: 0;
    padding-top: 2rem;
  }
}

/* ============================================================
   DATA / FACT PAIRS
   ============================================================ */
.fact-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fact-list__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-divider);
  gap: 2rem;
}

.fact-list__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  flex-shrink: 0;
}

.fact-list__value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  text-align: right;
}

/* ============================================================
   DATA TABLES (financial/product pricing)
   ============================================================ */
.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table tr {
  border-bottom: 1px solid var(--color-divider);
}

.data-table td {
  padding: 0.75rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
}

.data-table td:first-child {
  text-align: left;
  color: var(--color-muted);
}

.data-table td:last-child {
  text-align: right;
  font-weight: 500;
}

.data-table .data-table__total td {
  border-top: 1px solid var(--color-primary);
  border-bottom: none;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-primary);
}

/* ============================================================
   THREE-COLUMN CARD ROW (departments/pillars)
   ============================================================ */
.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.card-row__card {
  border-top: 1px solid var(--color-divider);
  padding-top: 2rem;
  transition: border-color var(--transition-speed) ease-in-out;
}

.card-row__card:hover {
  border-top-color: var(--color-accent);
}

.card-row__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.card-row__text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .card-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================================
   IMPACT STRIP
   ============================================================ */
.impact-strip {
  background: var(--color-surface-dark);
  padding: 6vh var(--margin-outer);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.impact-strip__item {
  padding: 2rem 3rem;
  border-left: 1px solid var(--color-accent);
}

.impact-strip__item:first-child {
  border-left: none;
  padding-left: 0;
}

.impact-strip__item:last-child {
  padding-right: 0;
}

.impact-strip__text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text-on-dark);
}

@media (max-width: 768px) {
  .impact-strip {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .impact-strip__item {
    border-left: none;
    border-top: 1px solid var(--color-accent);
    padding: 2rem 0;
  }
  .impact-strip__item:first-child {
    border-top: none;
  }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 8vh var(--margin-outer);
  text-align: center;
  background: var(--color-background);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-banner__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
  max-width: 20ch;
}

.cta-banner__sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 55ch;
}

.btn-editorial {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 0.85rem 2rem;
  margin-top: 0.5rem;
  transition: background var(--transition-speed) ease,
              color var(--transition-speed) ease;
}

.btn-editorial:hover {
  background: var(--color-primary);
  color: var(--color-text-on-dark);
}

/* ============================================================
   OBJECTIVE GRID (4-column)
   ============================================================ */
.objective-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid var(--color-divider);
  margin-top: 2.5rem;
}

.objective-grid__col {
  padding: 2rem 2rem 2rem 1.5rem;
  border-right: 1px solid var(--color-divider);
}

.objective-grid__num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.objective-grid__text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  max-width: 30ch;
}

@media (max-width: 1024px) {
  .objective-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .objective-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PARTNER GRID (2×2)
   ============================================================ */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 2.5rem;
}

.partner-grid__cell {
  padding: 2.5rem 3rem 2.5rem 0;
  border-top: 1px solid var(--color-divider);
}

.partner-grid__cell:nth-child(2),
.partner-grid__cell:nth-child(4) {
  padding-left: 3rem;
  border-left: 1px solid var(--color-divider);
}

.partner-grid__name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.partner-grid__role {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.partner-grid__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
  .partner-grid__cell:nth-child(2),
  .partner-grid__cell:nth-child(4) {
    padding-left: 0;
    border-left: none;
  }
}

/* ============================================================
   CONTACT ROWS
   ============================================================ */
.contact-rows {
  max-width: 70ch;
  margin-top: 2rem;
}

.contact-rows__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-divider);
  gap: 2rem;
}

.contact-rows__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  flex-shrink: 0;
}

.contact-rows__value {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  text-align: right;
}

/* ============================================================
   MAP PLACEHOLDER
   ============================================================ */
.map-placeholder {
  width: 100%;
  aspect-ratio: 16 / 6;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.map-placeholder__label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-muted);
  font-weight: 400;
}

.map-caption {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* ============================================================
   SEPIA PHOTOGRAPHY
   ============================================================ */
.photo-sepia {
  width: 100%;
  height: auto;
  filter: sepia(0.55) contrast(1.05) brightness(0.95);
  display: block;
}

.photo-sepia--full {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: sepia(0.55) contrast(1.05) brightness(0.92);
}

/* Section opener photo — full column bleed */
.section-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: sepia(0.55) contrast(1.05) brightness(0.92);
  margin-bottom: 4rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-surface-dark);
  padding: 6vh var(--margin-outer) 4vh;
  border-top: 1px solid hsla(25, 38%, 25%, 0.5);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid hsla(25, 38%, 25%, 0.5);
  margin-bottom: 2.5rem;
}

.site-footer__wordmark {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-on-dark);
  margin-bottom: 0.75rem;
}

.site-footer__tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
  max-width: 30ch;
}

.site-footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}

.site-footer__col a,
.site-footer__col p {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: hsla(25, 30%, 75%, 0.7);
  line-height: 1.6;
  margin-bottom: 0.5rem;
  transition: color var(--transition-speed) ease;
}

.site-footer__col a:hover {
  color: var(--color-accent);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer__copy {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: hsla(25, 30%, 75%, 0.45);
}

.site-footer__credit {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: hsla(25, 30%, 75%, 0.35);
  transition: color var(--transition-speed) ease;
  text-decoration: none;
}

.site-footer__credit:hover {
  color: hsla(25, 30%, 75%, 0.7);
}

@media (max-width: 1024px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 480px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .site-footer { padding: 4vh 1.5rem 3vh; }
}

/* ============================================================
   SCROLL REVEAL SYSTEM
   ============================================================ */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal           { transform: translateY(28px); }
.reveal-left      { transform: translateX(-28px); }
.reveal-right     { transform: translateX(28px); }
.reveal-scale     { transform: scale(0.96); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.stagger > *.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   EDITORIAL GSAP TEMPLATE — CSS
   Restrained reveals, split-text headlines, power3.out easing
   ============================================================ */
.gsap-hero-heading .word {
  display: inline-block;
  overflow: hidden;
}

.gsap-hero-heading .char {
  display: inline-block;
  transform: translateY(110%);
}

.gsap-section-heading .word {
  display: inline-block;
  overflow: hidden;
}

.gsap-section-heading .char {
  display: inline-block;
  transform: translateY(100%);
}

.gsap-fade-up {
  opacity: 0;
  transform: translateY(24px);
}

.gsap-rule-expand {
  transform: scaleX(0);
  transform-origin: left center;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.mt-sm  { margin-top: 1rem; }
.mt-md  { margin-top: 2rem; }
.mt-lg  { margin-top: 3rem; }
.mb-sm  { margin-bottom: 1rem; }
.mb-md  { margin-bottom: 2rem; }

.text-accent { color: var(--color-accent); }
.text-muted  { color: var(--color-muted); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   CURRENT YEAR
   ============================================================ */
[data-current-year]::after {
  content: attr(data-year-value);
}
