/* ==========================================================================
   Wallace Farm and Sawmill — Sponsor Media Kit
   Design lane: "Warm Timber & Forge" — kraft paper + walnut + forge iron +
   Belgian-horse rust + gold-leaf accents. Print-brochure feel. First
   LIGHT-PALETTE site in the Obsidian River portfolio.
   ========================================================================== */

:root {
  /* Palette — kraft paper + walnut + rust + forge */
  --paper:        #f4ece0;       /* primary background — kraft cream */
  --paper-warm:   #ece1d1;       /* deeper paper for section breaks */
  --paper-deep:   #ddd0bd;       /* hover / surface */
  --linen:        #faf5ec;       /* lightest accent — title cards */

  --ink:          #1f1a14;       /* primary text — almost black, warm */
  --ink-soft:     #3a322a;
  --ink-muted:    #6e6457;
  --ink-quiet:    #9a8f7f;

  --walnut:       #5c3a21;       /* deep wood-grain */
  --walnut-bright:#7a4f30;
  --walnut-deep:  #3d2616;

  --rust:         #b85a3a;       /* Belgian horse chestnut */
  --rust-bright:  #cf6e4a;
  --rust-deep:    #8d422a;

  --forge:        #2b2521;       /* iron-forge dark for dark sections */
  --forge-near:   #3a322d;

  --gold-leaf:    #b08846;       /* warm gold accent — keep sparing */
  --gold-bright:  #d4a85f;

  --border:       rgba(31, 26, 20, 0.14);
  --border-strong:rgba(31, 26, 20, 0.28);
  --border-rust:  rgba(184, 90, 58, 0.32);
  --border-gold:  rgba(176, 136, 70, 0.36);

  /* Typography */
  --f-display:    "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --f-serif-i:    "Crimson Pro", Georgia, serif;
  --f-sans:       "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono:       "JetBrains Mono", "Courier New", monospace;

  /* Sizing */
  --container: 1180px;
  --container-prose: 720px;
  --gutter: clamp(20px, 4vw, 56px);
  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 8px;

  --shadow-1: 0 1px 2px rgba(31,26,20,0.04), 0 6px 18px rgba(31,26,20,0.08);
  --shadow-2: 0 2px 4px rgba(31,26,20,0.06), 0 20px 48px rgba(31,26,20,0.16);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--f-sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(184,90,58,0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(92,58,33,0.04) 0%, transparent 40%);
  background-attachment: fixed;
}

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

a { color: var(--rust-deep); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--walnut); }

::selection { background: var(--rust); color: var(--linen); }

.skip-link {
  position: absolute; top: -100px; left: 12px;
  background: var(--ink); color: var(--paper);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-weight: 700;
  transition: top .2s; z-index: 100;
}
.skip-link:focus { top: 12px; }

.container {
  width: min(100% - var(--gutter)*2, var(--container));
  margin-inline: auto;
}
.prose {
  width: min(100% - var(--gutter)*2, var(--container-prose));
  margin-inline: auto;
}

/* Subtle paper-grain noise via SVG background */
.paper-grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.2 0 0 0 0 0.18 0 0 0 0 0.15 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* =======================  HEADER  ======================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0;
  transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(244, 236, 224, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.hdr-inner {
  width: min(100% - var(--gutter)*2, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.brand { display: flex; align-items: baseline; gap: 12px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark {
  font-family: var(--f-display);
  font-weight: 800;
  font-style: italic;
  font-size: 32px;
  color: var(--rust-deep);
  line-height: 1;
  letter-spacing: -0.01em;
}
.brand-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.005em;
  line-height: 1.1;
  color: var(--ink);
}
.brand-sub {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
  display: block;
}

.hdr-cta { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-family: var(--f-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--walnut-deep);
  border-color: var(--walnut-deep);
  color: var(--linen);
  box-shadow: 0 10px 28px -6px rgba(31, 26, 20, 0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--walnut);
  background: rgba(92, 58, 33, 0.06);
}
.btn-rust {
  background: var(--rust);
  color: var(--linen);
  border-color: var(--rust);
}
.btn-rust:hover {
  background: var(--rust-bright);
  border-color: var(--rust-bright);
  box-shadow: 0 10px 28px -6px rgba(184, 90, 58, 0.4);
}

/* =======================  HERO  ======================= */
.hero {
  position: relative;
  padding: clamp(140px, 16vw, 200px) 0 clamp(80px, 10vw, 120px);
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(184,90,58,0.10) 0%, transparent 60%),
    var(--paper);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  width: min(100% - var(--gutter)*2, 980px);
  margin-inline: auto;
  text-align: center;
}
.hero-frame {
  display: inline-block;
  padding: 8px 20px;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-leaf);
  margin-bottom: 36px;
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(40px, 8vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.022em;
  margin: 0 0 24px;
  color: var(--ink);
}
.hero-title em {
  font-family: var(--f-serif-i);
  font-style: italic;
  font-weight: 500;
  color: var(--rust-deep);
  letter-spacing: -0.005em;
}
.hero-title .amp {
  font-family: var(--f-serif-i);
  font-style: italic;
  color: var(--gold-leaf);
  font-weight: 500;
}
.hero-title .line-sub {
  display: block;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: clamp(13px, 1.2vw, 16px);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 28px;
}

.hero-mission {
  max-width: 680px;
  margin: 36px auto 0;
  font-family: var(--f-serif-i);
  font-style: italic;
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.5;
  color: var(--ink-soft);
}
.hero-mission::before, .hero-mission::after {
  content: '"';
  color: var(--rust);
  font-weight: 700;
  font-size: 1.1em;
}

.hero-channel-row {
  margin: 56px auto 0;
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  justify-content: center;
  align-items: center;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.hero-channel-row .dot { color: var(--gold-leaf); }

/* =======================  STAT BLOCK  ======================= */
.band-stats {
  background: var(--paper-warm);
  padding: clamp(60px, 7vw, 100px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.stat-banner {
  text-align: center;
  margin-bottom: 56px;
}
.stat-banner .eyebrow { color: var(--rust-deep); }
.stat-banner h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin: 12px 0 0;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.stat-banner h2 em {
  font-family: var(--f-serif-i);
  font-style: italic;
  color: var(--rust-deep);
  font-weight: 500;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.stat {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  background: var(--paper);
  transition: background .25s var(--ease);
}
.stat:hover { background: var(--linen); }
.stat .s-num {
  display: block;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  color: var(--rust-deep);
  letter-spacing: -0.03em;
}
.stat .s-num em {
  font-family: var(--f-serif-i);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-leaf);
}
.stat .s-lbl {
  display: block;
  margin-top: 14px;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.stat .s-note {
  display: block;
  margin-top: 6px;
  font-family: var(--f-serif-i);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-quiet);
}

.stats-fineprint {
  margin: 36px auto 0;
  max-width: 720px;
  text-align: center;
  font-family: var(--f-serif-i);
  font-style: italic;
  font-size: 13.5px;
  color: var(--ink-quiet);
  line-height: 1.6;
}

/* =======================  GENERIC SECTION  ======================= */
.band { padding: clamp(80px, 10vw, 130px) 0; position: relative; }
.band-paper { background: var(--paper); }
.band-warm { background: var(--paper-warm); }
.band-forge {
  background: var(--forge);
  color: var(--linen);
}
.band-forge .display, .band-forge h2, .band-forge h3, .band-forge h4 { color: var(--linen); }
.band-forge .lede, .band-forge p { color: rgba(244, 236, 224, 0.8); }
.band-forge .eyebrow { color: var(--gold-bright); }
.band-forge a { color: var(--gold-bright); }

.band-head { max-width: 820px; margin: 0 auto clamp(48px, 6vw, 76px); text-align: center; }
.band-head .lede {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 18px 0 0;
  font-family: var(--f-serif-i);
  font-style: italic;
}
.band-forge .band-head .lede { color: rgba(244,236,224,0.78); }

.eyebrow {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--rust-deep);
  margin: 0 0 18px;
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow.with-mark::before, .eyebrow.with-mark::after {
  content: ""; display: inline-block;
  width: 22px; height: 1px;
  background: var(--gold-leaf);
}
.eyebrow.gold { color: var(--gold-leaf); }

.display {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0 0 14px;
}
.display em {
  font-family: var(--f-serif-i);
  font-style: italic;
  font-weight: 500;
  color: var(--rust-deep);
  letter-spacing: -0.005em;
}
.display-xl {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 14px;
}
.display-xl em {
  font-family: var(--f-serif-i);
  font-style: italic;
  font-weight: 500;
  color: var(--rust-deep);
}

.lede { color: var(--ink-soft); }

/* =======================  AUDIENCE BREAKDOWN  ======================= */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.audience-block {
  background: var(--paper);
  border: 1px solid var(--border);
  border-left: 3px solid var(--rust);
  padding: 32px 32px;
  border-radius: var(--r-sm);
}
.band-forge .audience-block {
  background: var(--forge-near);
  border-color: rgba(244,236,224,0.15);
  border-left-color: var(--gold-bright);
}
.audience-block h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 22px;
}
.band-forge .audience-block h3 { color: var(--linen); }
.audience-block h3 em { font-family: var(--f-serif-i); font-style: italic; font-weight: 500; color: var(--rust-deep); }
.band-forge .audience-block h3 em { color: var(--gold-bright); }

.audience-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px dotted var(--border);
  font-size: 15px;
}
.band-forge .audience-row { border-bottom-color: rgba(244,236,224,0.15); }
.audience-row:last-child { border-bottom: 0; }
.audience-row .a-label { color: var(--ink-soft); font-weight: 500; }
.band-forge .audience-row .a-label { color: rgba(244,236,224,0.75); }
.audience-row .a-value {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 17px;
  font-feature-settings: "tnum";
}
.band-forge .audience-row .a-value { color: var(--linen); }

/* Bar visualization */
.bar-row { padding: 10px 0; }
.bar-row:last-child { border-bottom: 0; }
.bar-label {
  display: flex; justify-content: space-between;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.band-forge .bar-label { color: rgba(244,236,224,0.75); }
.bar-label .bar-pct { font-family: var(--f-display); font-weight: 700; color: var(--ink); }
.band-forge .bar-label .bar-pct { color: var(--linen); }
.bar-track {
  height: 8px;
  background: var(--paper-deep);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.band-forge .bar-track { background: rgba(244,236,224,0.10); }
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--walnut) 0%, var(--rust) 100%);
  border-radius: var(--r-sm);
  transition: width 1.2s var(--ease-out);
}
.band-forge .bar-fill {
  background: linear-gradient(90deg, var(--gold-leaf) 0%, var(--rust-bright) 100%);
}

/* =======================  PILLARS  ======================= */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.pillar {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 32px 28px;
  border-radius: var(--r-sm);
  position: relative;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.pillar:hover {
  transform: translateY(-3px);
  border-color: var(--border-rust);
  box-shadow: var(--shadow-1);
}
.pillar .p-num {
  display: inline-block;
  font-family: var(--f-serif-i);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  color: var(--gold-leaf);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.pillar h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 10px;
}
.pillar h3 em { font-family: var(--f-serif-i); font-style: italic; font-weight: 500; color: var(--rust-deep); }
.pillar p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* =======================  WHY THIS AUDIENCE  ======================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  max-width: 1100px;
  margin: 0 auto;
}
.why-card {
  padding: 32px 30px;
  border-top: 2px solid var(--gold-leaf);
  background: var(--forge-near);
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}
.why-card h4 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--linen);
  margin: 0 0 14px;
}
.why-card h4 em { font-family: var(--f-serif-i); font-style: italic; font-weight: 500; color: var(--gold-bright); }
.why-card p {
  color: rgba(244,236,224,0.78);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* =======================  INVENTORY  ======================= */
.inventory-table {
  max-width: 980px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.inv-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 24px;
  padding: 26px 32px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.inv-row:last-child { border-bottom: 0; }
.inv-row:hover { background: var(--linen); }
.inv-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.inv-name em { font-family: var(--f-serif-i); font-style: italic; font-weight: 500; color: var(--rust-deep); }
.inv-desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.inv-meta {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: right;
  white-space: nowrap;
}
.inv-meta em {
  font-family: var(--f-serif-i);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold-leaf);
  font-weight: 500;
  font-size: 13px;
}

.rates-note {
  max-width: 720px;
  margin: 36px auto 0;
  text-align: center;
  font-family: var(--f-serif-i);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* =======================  CONTACT  ======================= */
.contact-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--border-strong);
  border-top: 3px solid var(--rust);
  padding: clamp(40px, 5vw, 64px) clamp(32px, 4vw, 56px);
  border-radius: var(--r-sm);
  text-align: center;
}
.contact-card .display { margin-bottom: 22px; }
.contact-card .c-detail {
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  text-align: left;
  border-top: 1px solid var(--border);
  padding-top: 26px;
}
.contact-card .c-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  align-items: baseline;
}
.contact-card .c-label {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact-card .c-value {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  word-break: break-word;
}
.contact-card .c-value a { color: var(--ink); border-bottom: 1px solid var(--gold-leaf); }
.contact-card .c-value a:hover { color: var(--rust-deep); }

/* =======================  STORYLINE / TIMELINE  ======================= */
.storyline {
  max-width: 880px;
  margin: 0 auto;
  font-family: var(--f-serif-i);
  font-style: italic;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.55;
  color: var(--ink-soft);
  text-align: center;
}
.storyline strong {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 700;
  color: var(--rust-deep);
}

/* =======================  REVEAL  ======================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* =======================  FOOTER  ======================= */
.site-footer {
  background: var(--forge);
  color: rgba(244,236,224,0.7);
  padding: 64px 0 24px;
  border-top: 2px solid var(--gold-leaf);
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}
.ft-brand h4 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--linen);
}
.ft-brand h4 em { font-family: var(--f-serif-i); font-style: italic; font-weight: 500; color: var(--gold-bright); }
.ft-brand p {
  color: rgba(244,236,224,0.7);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  max-width: 360px;
}
.ft-col h5 {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 0 16px;
}
.ft-col a, .ft-col p {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  color: rgba(244,236,224,0.8);
  text-decoration: none;
  line-height: 1.5;
  margin: 0 0 8px;
  display: block;
}
.ft-col a:hover { color: var(--linen); }
.ft-col p.small {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0;
  color: rgba(244,236,224,0.55);
  margin-top: 4px;
}

.ft-base {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(244,236,224,0.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  width: min(100% - var(--gutter)*2, var(--container));
  margin-inline: auto;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(244,236,224,0.5);
}
.ft-base a { color: var(--gold-bright); }

/* =======================  RESPONSIVE  ======================= */
@media (max-width: 880px) {
  .audience-grid { grid-template-columns: 1fr; }
  .inv-row { grid-template-columns: 1fr; gap: 8px; padding: 22px 22px; }
  .inv-meta { text-align: left; }
  .contact-card .c-row { grid-template-columns: 1fr; gap: 4px; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .hdr-cta .btn-secondary { display: none; }
  .brand-name { font-size: 17px; }
  .brand-mark { font-size: 26px; }
  .brand-sub { font-size: 9px; }
}
@media (max-width: 520px) {
  .ft-grid { grid-template-columns: 1fr; }
  .hero-channel-row { font-size: 11px; letter-spacing: 0.12em; }
}
