/* ================================================================
   In Her Company Tours — Production Stylesheet
   Colors and type from BRAND.md (source of truth).
   Fraunces + Inter + JetBrains Mono from Google Fonts.
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300..400&family=Inter:wght@400;500&family=JetBrains+Mono:wght@400;500&display=swap');

/* --- Custom properties ---------------------------------------- */
:root {
  --paper:    #FAFAF7;
  --paper2:   #F2F1EC;
  --ink:      #1F2A44;
  --ink-mute: #5A6478;
  --rust:     #1F2A44;
  --rule:     #E5E2D9;

  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --max-w:       1100px;
  --max-w-wide:  1200px;
  --max-w-copy:  640px;
  --max-w-narrow: 860px;
  --pad-x:       clamp(20px, 4vw, 48px);
  --gap-section: clamp(48px, 8vw, 96px);
  --gap-section-sm: clamp(32px, 5vw, 64px);
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font-family: inherit; }

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

/* --- Logo ----------------------------------------------------- */
.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  line-height: 1;
  gap: 6px;
}
.logo-main {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.3px;
  font-weight: 400;
  font-optical-sizing: auto;
}
.logo-sub {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* --- Navigation ----------------------------------------------- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  position: relative;
  top: auto;
  z-index: auto;
  background: var(--paper);
  border-bottom: 1px solid rgba(31,42,68,0.12);
  padding: 18px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav--dark {
  background: var(--ink);
  border-bottom-color: rgba(250,250,247,0.15);
  color: var(--paper);
}
.nav--dark .nav-link { color: rgba(250,250,247,0.6); }
.nav--dark .nav-link:hover,
.nav--dark .nav-link[aria-current="page"] {
  color: var(--paper);
  border-bottom-color: var(--paper);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-link {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--rust);
  border-bottom-color: var(--rust);
}

/* Book button in nav */
.btn-book {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 18px;
  background: #E91E8C;
  color: var(--paper) !important;
  border: 1.5px solid #E91E8C;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.btn-book:hover {
  background: var(--paper);
  color: #E91E8C !important;
}

/* Mobile Instagram icon (shown only on mobile, next to hamburger) */
.nav-ig-mobile {
  display: none;
  color: var(--ink);
  line-height: 0;
  transition: color 0.2s;
}
.nav-ig-mobile:hover { color: var(--rust); }
@media (max-width: 600px) {
  .nav-ig-mobile { display: flex; align-items: center; }
}

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}
.nav--dark .nav-hamburger span { background: var(--paper); }
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 20px var(--pad-x) 24px;
}
.nav--dark + .nav-mobile { background: var(--ink); }
.nav-mobile.is-open { display: block; }
.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.nav-mobile a {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}
.nav--dark + .nav-mobile a { color: rgba(250,250,247,0.6); }
.nav-mobile a[aria-current="page"] { color: var(--rust); }
.nav-mobile .btn { color: var(--paper) !important; }

/* --- Primary button ------------------------------------------- */
.btn {
  display: inline-block;
  padding: 16px 28px;
  background: #E91E8C;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid #E91E8C;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: var(--paper); color: #E91E8C; }
.btn--lg { padding: 18px 36px; font-size: 16px; }

/* --- Sticky book button --------------------------------------- */
.sticky-book {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
}
@media (max-width: 600px) {
  .sticky-book { bottom: 16px; right: 16px; }
}

/* --- Section shells ------------------------------------------- */
.section { padding: var(--gap-section) var(--pad-x); }
.section--sm { padding: var(--gap-section-sm) var(--pad-x); }
.section--dark { background: var(--ink); color: var(--paper); }
.section--paper2 { background: var(--paper2); }

.inner       { max-width: var(--max-w);       margin: 0 auto; }
.inner--wide { max-width: var(--max-w-wide);  margin: 0 auto; }
.inner--copy { max-width: var(--max-w-copy);  margin: 0 auto; }
.inner--narrow { max-width: var(--max-w-narrow); margin: 0 auto; }

/* --- Page header (h1 + optional subhead) ---------------------- */
.page-header {
  padding: clamp(40px,6vw,64px) var(--pad-x) clamp(20px,3vw,32px);
  border-bottom: 1px solid var(--rule);
}
.page-header h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 9vw, 120px);
  line-height: 0.92;
  letter-spacing: clamp(-1px, -0.025em, -3px);
  font-optical-sizing: auto;
}
.page-header-sub {
  margin-top: 28px;
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(17px,2vw,22px);
  line-height: 1.45;
  color: var(--ink-mute);
}

/* --- Mono label ----------------------------------------------- */
.label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.label--rust  { color: var(--rust); }
.label--mute  { color: var(--ink-mute); }
.label--sand  { color: rgba(250,250,247,0.5); }

/* ================================================================
   HOME PAGE
   ================================================================ */

/* Hero masthead */
.home-hero {
  padding: clamp(40px,5vw,64px) var(--pad-x) clamp(24px,3vw,40px);
}
.home-hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px,5vw,64px);
  align-items: end;
}
.home-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: clamp(-1.5px,-0.025em,-3.6px);
  margin: 16px 0 24px;
  font-optical-sizing: auto;
  text-wrap: balance;
}
.home-hero-sub {
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.4;
  color: var(--ink);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-meta {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
}

/* Quick facts strip */
.quick-facts { font-family: var(--mono); font-size: 16px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.quick-fact {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--rule);
  padding: 10px 0;
}
.quick-fact:last-child { border-bottom: 1px solid var(--rule); }
.quick-fact-key { color: var(--ink); }
.quick-fact-val { color: var(--ink); text-align: right; }

/* Hero image */
.hero-image-wrap { padding: 0 var(--pad-x); }
.hero-img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

/* Photo grid */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 280px;
  gap: 8px;
}
.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 600px) {
  .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .photo-grid img {
    height: auto;
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

/* Three pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(24px,4vw,48px);
}
.pillar { padding-top: 24px; }
.pillar-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--rust);
  margin-bottom: 16px;
}
.pillar-title {
  font-family: var(--serif);
  font-size: clamp(24px,3vw,38px);
  line-height: 1;
  letter-spacing: -1.2px;
  margin-bottom: 14px;
  font-weight: 400;
  font-optical-sizing: auto;
}
.pillar-body { font-size: 16px; line-height: 1.6; color: var(--ink-mute); }

/* Editorial centred column */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 48px;
}
.editorial-lead {
  font-family: var(--serif);
  font-size: clamp(24px,3vw,44px);
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 22px;
  font-weight: 400;
  font-optical-sizing: auto;
}
.editorial-body { color: var(--ink-mute); line-height: 1.7; }
.editorial-body p + p { margin-top: 16px; }
.editorial-closing {
  font-family: var(--serif);
  font-size: clamp(17px,1.8vw,22px);
  line-height: 1.45;
  color: var(--ink);
  margin-top: 16px;
}

/* Pull quote / testimonial */
.pullquote-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  align-items: start;
}
.pullquote-mark {
  font-family: var(--serif);
  font-size: clamp(72px,9vw,120px);
  line-height: 0.7;
  color: var(--rust);
}
.pullquote-text {
  font-family: var(--serif);
  font-size: clamp(24px,3.5vw,52px);
  line-height: 1.2;
  letter-spacing: -1px;
  font-weight: 300;
  font-optical-sizing: auto;
}
.pullquote-attr {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250,250,247,0.5);
}

/* Two-column image + text */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px,5vw,64px);
  align-items: center;
}
.two-col--portrait {
  grid-template-columns: 1fr 1.4fr;
  align-items: start;
}
.two-col-headline {
  font-family: var(--serif);
  font-size: clamp(28px,4.5vw,56px);
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin-bottom: 24px;
  font-weight: 400;
  font-optical-sizing: auto;
}
.two-col-body { color: var(--ink-mute); line-height: 1.7; }
.two-col-body p + p { margin-top: 14px; }

/* Who it's for — two-col text */
.text-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px,4vw,48px);
}
.text-two-col p { color: var(--ink-mute); line-height: 1.7; }

/* Numbered rows (practical bits) */
.numbered-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 0;
}
.numbered-header-title {
  font-family: var(--serif);
  font-size: clamp(28px,3.5vw,44px);
  line-height: 1.05;
  letter-spacing: -1.1px;
  font-weight: 400;
  font-optical-sizing: auto;
}
.numbered-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 2px solid var(--ink);
  align-items: center;
}
.numbered-row:first-child {
  border-top: none;
}
.numbered-row-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rust);
}
.numbered-row-title {
  font-family: var(--serif);
  font-size: clamp(20px,2.5vw,34px);
  line-height: 1.1;
  letter-spacing: -0.7px;
  margin-bottom: 10px;
  font-weight: 400;
  font-optical-sizing: auto;
}
.numbered-row-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 520px;
}

/* Inclusion statement */
.inclusion {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(17px,1.8vw,24px);
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
}

/* Closing CTA */
.cta-headline {
  font-family: var(--serif);
  font-size: clamp(40px,7vw,88px);
  line-height: 0.96;
  letter-spacing: -2.2px;
  font-weight: 400;
  margin-bottom: 20px;
  text-wrap: balance;
  font-optical-sizing: auto;
}
.cta-body {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(250,250,247,0.75);
  max-width: 540px;
  margin: 0 auto 36px;
}

/* ================================================================
   THE TOUR PAGE
   ================================================================ */

.timeline-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
}
.timeline-row:first-child { border-top-color: var(--ink); }
.timeline-index {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--rust);
  padding-top: 6px;
}
.timeline-title {
  font-family: var(--serif);
  font-size: clamp(20px,2.5vw,34px);
  line-height: 1.1;
  letter-spacing: -0.6px;
  margin-bottom: 8px;
  font-weight: 400;
  font-optical-sizing: auto;
}
.timeline-body { font-size: 16px; line-height: 1.6; color: var(--ink-mute); max-width: 640px; }
.timeline-end { border-top: 1px solid var(--ink); }

/* Photo pair */
.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */

.about-pullquote { max-width: 1000px; margin: 0 auto; }
.about-pullquote-big {
  font-family: var(--serif);
  font-size: clamp(26px,4.5vw,56px);
  line-height: 1.1;
  letter-spacing: -1.2px;
  font-weight: 300;
  margin-bottom: 24px;
  font-optical-sizing: auto;
}
.about-pullquote-body {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(250,250,247,0.8);
  max-width: 780px;
  margin-bottom: 18px;
}
.about-pullquote-closing {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: rgba(250,250,247,0.5);
}

/* Chapters rows */
.chapter-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 16px;
  padding-bottom: 0;
}
.chapter-header-title {
  font-family: var(--serif);
  font-size: clamp(28px,3.5vw,44px);
  line-height: 1.05;
  letter-spacing: -1.1px;
  font-weight: 400;
  font-optical-sizing: auto;
}
.chapter-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.chapter-header + .chapter-row { border-top: none; }
.about-mobile-rule { display: none; }
.chapter-key {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rust);
  padding-top: 10px;
}
.chapter-title {
  font-family: var(--serif);
  font-size: clamp(18px,2.2vw,30px);
  line-height: 1.15;
  letter-spacing: -0.6px;
  margin-bottom: 10px;
  font-weight: 400;
  font-optical-sizing: auto;
}
.chapter-body { font-size: 16px; line-height: 1.6; color: var(--ink-mute); max-width: 480px; }

/* About closing band */
.about-closing-lead {
  font-family: var(--serif);
  font-size: clamp(26px,4vw,48px);
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: 400;
  margin-bottom: 24px;
  font-optical-sizing: auto;
}
.about-closing-body { font-size: 18px; line-height: 1.65; color: var(--ink-mute); }
.about-closing-body p + p { margin-top: 14px; }

/* Promises 2-up */
.promises { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,48px); }
.promise { border-top: 1px solid var(--ink); padding-top: 20px; }
.promise-title {
  font-family: var(--serif);
  font-size: clamp(18px,2.5vw,30px);
  line-height: 1.1;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
  font-weight: 400;
  font-optical-sizing: auto;
}
.promise-body { font-size: 15px; line-height: 1.6; color: var(--ink-mute); }

/* ================================================================
   FAQS PAGE
   ================================================================ */

.faq-item { border-top: 1px solid var(--rule); }
.faq-item:first-child { border-top-color: var(--ink); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  text-align: left;
}
.faq-btn-inner { display: flex; gap: 20px; align-items: baseline; }
.faq-num { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 1.5px; color: var(--rust); flex-shrink: 0; }
.faq-question {
  font-family: var(--serif);
  font-size: clamp(17px,2vw,26px);
  line-height: 1.2;
  letter-spacing: -0.3px;
  font-weight: 400;
  color: var(--ink);
  font-optical-sizing: auto;
}
.faq-toggle {
  font-family: var(--mono);
  font-size: 22px;
  color: var(--ink);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
  margin-top: 2px;
}
.faq-item.is-open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 28px 44px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mute);
  max-width: 640px;
}
.faq-item.is-open .faq-answer { display: block; }
.faq-end { border-top: 1px solid var(--ink); }
.faq-footer { margin-top: 48px; text-align: center; font-size: 16px; color: var(--ink-mute); }
.faq-footer a { color: var(--rust); text-decoration: underline; text-underline-offset: 3px; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px,7vw,80px);
}
.contact-intro {
  font-family: var(--serif);
  font-size: clamp(20px,2.5vw,34px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
  font-weight: 400;
  font-optical-sizing: auto;
}
.contact-detail { border-top: 1px solid var(--rule); padding: 14px 0; }
.contact-detail:last-child { border-bottom: 1px solid var(--rule); }
.contact-detail-val { font-size: 15px; color: var(--ink); margin-top: 4px; }

.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 8px;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: clamp(16px,1.8vw,22px);
  color: var(--ink);
  outline: none;
  resize: vertical;
  display: block;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--ink-mute); opacity: 0.6; }
.form-textarea { min-height: 96px; }

/* ================================================================
   PHOTOS
   ================================================================ */

figure { margin: 0; }
.photo-4-5 { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.photo-21-9 { width: 100%; aspect-ratio: 21/9; object-fit: cover; display: block; }
.photo-caption { font-size: 12px; color: var(--ink-mute); margin-top: 8px; line-height: 1.4; }

/* Placeholder for missing photos */
.photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--paper2);
  border: 1px dashed var(--rule);
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.photo-placeholder-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: var(--paper);
  padding: 3px 6px;
}

/* ================================================================
   FOOTER
   ================================================================ */

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(40px,6vw,56px) var(--pad-x) clamp(24px,4vw,32px);
  font-family: var(--sans);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(24px,4vw,48px);
  margin-bottom: clamp(32px,5vw,48px);
  align-items: end;
}
.footer-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-ig {
  color: rgba(250,250,247,0.8);
  line-height: 0;
  transition: color 0.2s;
}
.footer-ig:hover { color: var(--paper); }
.nav-ig {
  color: var(--ink);
  line-height: 0;
  transition: color 0.2s;
}
.nav-ig:hover { color: var(--rust); }
.footer-book-link {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250,250,247,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-book-link:hover { color: var(--paper); }
.footer-about { font-size: 14px; line-height: 1.55; color: rgba(250,250,247,0.7); max-width: 320px; margin-top: 16px; }
.footer-col-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250,250,247,0.5);
  margin-bottom: 14px;
  display: block;
}
.footer-col-label + .footer-col-label { margin-top: 24px; }
.footer-link {
  font-size: 14px;
  color: rgba(250,250,247,0.8);
  text-decoration: none;
  display: block;
  padding: 4px 0;
}
.footer-link:hover { color: var(--paper); }
.footer-text { font-size: 14px; color: rgba(250,250,247,0.8); }
.footer-newsletter-desc { font-size: 13px; line-height: 1.55; color: rgba(250,250,247,0.7); margin-bottom: 12px; }
.footer-newsletter-form { display: flex; border: 1px solid rgba(250,250,247,0.25); }
.footer-newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 12px;
  color: var(--paper);
  font-size: 13px;
  font-family: var(--sans);
  outline: none;
}
.footer-newsletter-input::placeholder { color: rgba(250,250,247,0.4); }
.footer-newsletter-btn {
  border: none;
  background: var(--rust);
  color: var(--paper);
  padding: 0 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(250,250,247,0.15);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(250,250,247,0.45);
  text-align: center;
  align-items: center;
}
.footer-bottom-copy {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 900px) {
  .home-hero-grid { grid-template-columns: 1fr; }
  .quick-facts { display: block; }
  .editorial-grid { grid-template-columns: 1fr; gap: 24px; }
  .editorial-grid > .editorial-spacer { display: none; }
  .two-col, .two-col--portrait { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 0; }
  .pillar { padding-top: 32px; padding-bottom: 32px; border-top: 2px solid var(--ink); }
  .numbered-header { grid-template-columns: 1fr; gap: 12px; }
  .numbered-row { grid-template-columns: 1fr; gap: 20px; }
  .numbered-row-img { display: none; }
  .photo-pair { grid-template-columns: 1fr; gap: 14px; }
  .text-two-col { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .promises { grid-template-columns: 1fr; gap: 32px; }
  .chapter-header { grid-template-columns: 1fr; gap: 12px; }
  .chapter-row { grid-template-columns: 120px 1fr; gap: 20px; }
  .about-mobile-rule { display: block; border-top: 2px solid var(--ink); margin: 0 var(--pad-x); }
  .chapter-row-img { display: none; }
  .timeline-row { grid-template-columns: 90px 1fr; gap: 16px; }
  .pullquote-grid { grid-template-columns: 44px 1fr; gap: 16px; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .numbered-row { grid-template-columns: 1fr; }
  .chapter-row { grid-template-columns: 1fr; }
  .chapter-key { padding-top: 0; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .faq-answer { padding-left: 32px; }
  .promises { gap: 24px; }
  .about-pullquote-body { font-size: 16px; }
}
