/* Anti-FOUC: hide content until GSAP has set its initial animation states.
   The .gsap-loading class is added in <head> and removed once motion is ready
   (with a safety timeout), so the page never stays hidden if scripts fail. */
html.gsap-loading body {
  visibility: hidden;
}

/* ==========================================================================
   DESIGN SYSTEM TOKENS & CSS BRIDGE
   ========================================================================== */
:root {
  /* Colors */
  --color-primary: #1c1917;
  --color-secondary: #5a5e59;
  --color-tertiary: #c2410c;
  --color-neutral: #faf9f6;
  --color-surface: #e9ebe4;
  --color-on-surface: #1c1917;
  --color-on-tertiary: #ffffff;

  /* Fonts */
  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --font-label: 'Space Grotesk', sans-serif;

  /* Fluid type scale - min .. (peak token) */
  --text-display: clamp(2.8rem, 1.6rem + 6vw, 5.5rem); /* headline-display */
  --text-numeral: clamp(3.5rem, 2rem + 7vw, 7rem); /* section numerals */
  --text-lg: clamp(1.6rem, 1.2rem + 2vw, 2.4rem); /* headline-lg */
  --text-body: clamp(1rem, 0.95rem + 0.3vw, 1.05rem); /* body-md */
  --text-label: 0.75rem; /* label-caps */

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: clamp(3rem, 2rem + 4vw, 4rem);
  --space-xl: clamp(5rem, 3rem + 8vw, 8rem);

  /* Shape */
  --rounded-none: 0px;
  --rounded-sm: 4px;
  --rounded-md: 16px;

  --max-width: 1400px;
  --measure: 62ch; /* max reading width for body copy */

  /* Motion & Animation Tokens */
  --ease: power2.out; /* used in GSAP calls */
  --ease-css: cubic-bezier(
    0.16,
    1,
    0.3,
    1
  ); /* smooth expo curve for CSS transitions */
  --dur-fast: 0.3s;
  --dur-base: 0.6s;
  --dur-slow: 1s;

  /* Border Utilities for Systematic Grid Look */
  --border-color: rgba(28, 25, 23, 0.1);
  --border-thin: 1px solid var(--border-color);

  /* Layered Shadows (Neutral tone to match alabaster & sage) */
  --shadow-sm:
    0 2px 8px rgba(28, 25, 23, 0.08), 0 0 0 1px rgba(28, 25, 23, 0.04);
  --shadow-md:
    0 8px 20px rgba(28, 25, 23, 0.12), 0 0 0 1px rgba(28, 25, 23, 0.04);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  background-color: var(--color-neutral);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Selection colors */
::selection {
  background-color: var(--color-tertiary);
  color: var(--color-on-tertiary);
}

/* Custom scrollbar (Firefox: thin + tokenized colors; WebKit/Chromium: styled track + thumb) */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--color-secondary) var(--color-surface);
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--color-surface);
}

::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: var(--rounded-sm);
  border: 3px solid var(--color-surface); /* inset look */
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-tertiary);
}

/* Typography styles */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  text-wrap: balance; /* graceful enhancement; ignored where unsupported */
}

p {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--color-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) ease;
}

/* ==========================================================================
   LAYOUT ARCHITECTURE (SYSTEMATIC GRID)
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

.grid-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  border-left: var(--border-thin);
  border-right: var(--border-thin);
}

@media (min-width: 768px) {
  .container {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }
}

/* Common Section Borders & Structure */
.section-bordered {
  position: relative;
  border-bottom: var(--border-thin);
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
  width: 100%;
}

/* Horizontal Padding to prevent content from touching left/right grid borders */
:is(.hero, .section-bordered, .trust-strip, .cta-section, .footer) {
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

@media (min-width: 768px) {
  :is(.hero, .section-bordered, .trust-strip, .cta-section, .footer) {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }
}

/* Accessibility Helpers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px; /* Hidden off-screen by default */
  left: var(--space-md);
  background-color: var(--color-primary);
  color: var(--color-neutral);
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-label);
  font-size: var(--text-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  z-index: 999;
  border: 1px solid var(--border-color);
  transition: top 0.2s var(--ease-css);
}

.skip-link:focus-visible {
  top: 0; /* Slide into view on keyboard focus */
  outline: 2px solid var(--color-tertiary);
  outline-offset: 2px;
}

/* Accessibility: Visible Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-tertiary);
  outline-offset: 4px;
}

:focus-visible {
  scroll-margin-top: 100px;
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-css);
  border: 1px solid transparent;
  min-height: 44px; /* Accessible tap target */
  text-align: center;
}

.btn-primary {
  background-color: var(--color-tertiary);
  color: var(--color-on-tertiary);
  border-radius: var(--rounded-sm);
}

.btn-primary:hover {
  background-color: var(--color-primary);
  color: var(--color-neutral);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: var(--rounded-sm);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-neutral);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-sm {
  padding: 10px 20px;
  min-height: 40px;
}

/* Text links */
.text-link {
  color: var(--color-tertiary);
  font-family: var(--font-label);
  font-size: var(--text-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 8px 0;
}

.text-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-tertiary);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform var(--dur-fast) var(--ease-css);
}

.text-link:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}

/* Section Eyebrow Labels */
.section-eyebrow {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  display: block;
}

/* Section Header Block */
.section-header {
  margin-bottom: var(--space-md);
  max-width: 600px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  margin-top: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.section-desc {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-secondary);
  margin-bottom: 0;
}

/* ==========================================================================
   COMPONENT STYLES
   ========================================================================== */
/* --- START: components/nav/nav.css --- */
/* 1. Header & Navigation */
.header {
  border-bottom: var(--border-thin);
  position: sticky;
  top: 0;
  background-color: var(--color-neutral);
  z-index: 100;
}

.nav-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  height: 80px;
}

@media (min-width: 1024px) {
  .nav-grid {
    grid-template-columns: 1.1fr 2fr 1.4fr;
  }
}

.logo-col {
  padding: 0 var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  height: 100%;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.logo-amp {
  color: var(--color-secondary);
  font-style: italic;
  padding: 0 0.05em;
}

/* Availability indicator — communicates real status, not decoration */
.logo-status {
  display: none;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  padding-left: var(--space-sm);
  border-left: var(--border-thin);
  transition: opacity var(--dur-fast) var(--ease-css);
}

a.logo-status:hover {
  opacity: 0.75;
}

.logo-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-tertiary);
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .logo-status {
    display: inline-flex;
  }
}

.nav-links-col {
  display: none;
  border-left: var(--border-thin);
  border-right: var(--border-thin);
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

@media (min-width: 1024px) {
  .nav-links-col {
    display: flex;
  }
}

.nav-links-col a {
  font-family: var(--font-label);
  font-size: var(--text-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--color-secondary);
  position: relative;
  padding: 6px 0;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.nav-num {
  font-size: 0.75rem;
  color: var(--color-tertiary);
  font-weight: 600;
}

.nav-links-col a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-tertiary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-fast) var(--ease-css);
}

.nav-links-col a:hover {
  color: var(--color-primary);
}

.nav-links-col a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta-col {
  display: none;
  padding: 0 var(--space-sm);
  height: 100%;
  align-items: center;
  justify-content: flex-end;
}

@media (min-width: 1024px) {
  .nav-cta-col {
    display: flex;
  }
}

/* Hamburger Menu Icon */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 44px; /* Expanded touch target height/width */
  height: 44px;
  padding: 13px 10px; /* Center-aligns the 24px x 18px hamburger lines inside 44px box */
  box-sizing: border-box;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
  margin-left: auto;
  margin-right: var(--space-sm);
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transition: all var(--dur-fast) ease;
}

/* Hamburger Active State */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background-color: var(--color-neutral);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  transform: translateY(-100%);
  visibility: hidden; /* Fix: removes all elements within from the tab sequence when menu is closed */
  transition: transform 0.4s var(--ease-css), visibility 0.4s var(--ease-css);
}

.mobile-nav.active {
  transform: translateY(0);
  visibility: visible; /* Restore tab order on active */
}

.mobile-nav a:not(.btn) {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-xs);
}

.mobile-nav .nav-num {
  font-size: 1rem;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
  .mobile-nav {
    display: none;
  }
}

/* --- END: components/nav/nav.css --- */
/* --- START: components/hero/hero.css --- */
/* 2. Hero Section — asymmetric, type-led editorial layout */
.hero {
  position: relative;
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
  overflow: visible;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 1024px) {
  .hero-grid {
    /* Asymmetric: text owns the larger left column, portrait the right */
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-xl);
    align-items: start;
  }
}

/* ---- Text Zone ---- */
.hero-text-zone {
  display: flex;
  flex-direction: column;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-display);   /* peaks at 5.5rem — the page's biggest type */
  line-height: 0.95;
  margin-bottom: var(--space-md);
  letter-spacing: -0.035em;
  font-weight: 600;
  color: var(--color-primary);
}

/* Accent on a single word — the only color emphasis in the hero */
.hero-headline-accent {
  font-style: italic;
  color: var(--color-tertiary);
}

.hero-subhead {
  font-size: 1.05rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  max-width: 50ch;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

/* Inline trust signals — sits below the CTAs */
.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.hero-trust li {
  font-family: var(--font-label);
  font-size: var(--text-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-secondary);
  position: relative;
  padding-left: 18px;
}

.hero-trust li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--color-tertiary);
}

/* ---- Visual Zone (portrait + supporting fact) ---- */
.hero-visual-zone {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: var(--border-thin);
  border-radius: var(--rounded-sm);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-base) var(--ease-css),
    transform var(--dur-base) var(--ease-css);
}

.hero-image-wrapper:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-css);
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.03);
}

/* Supporting fact overlay — glassmorphic structured card */
.hero-fact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  background-color: rgba(250, 249, 246, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 18px;
  border: var(--border-thin);
  border-radius: var(--rounded-sm);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.hero-fact-eyebrow {
  font-family: var(--font-label);
  font-size: 0.75rem; /* Increased from 0.6rem for visual AA scale readability */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-tertiary);
  margin-bottom: 2px;
  display: block;
}

.hero-fact-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 0.95;
  color: var(--color-primary);
  letter-spacing: -0.03em;
}

.hero-fact-plus {
  color: var(--color-tertiary);
}

.hero-fact-label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-secondary);
  line-height: 1.4;
}

@media (min-width: 1024px) {
  .hero-text-zone {
    padding-right: var(--space-md);
    padding-top: var(--space-md);
  }

  /* Supporting fact overlaps the lower-left corner of the portrait —
     an intentional offset that breaks the image's rectangle. */
  .hero-fact {
    position: absolute;
    bottom: var(--space-md);
    left: calc(-1 * var(--space-md));
    box-shadow: var(--shadow-md);
    transition: all var(--dur-base) var(--ease-css);
  }

  .hero-fact:hover {
    transform: translateY(-2px);
    background-color: rgba(250, 249, 246, 0.95);
  }
}

/* --- END: components/hero/hero.css --- */
/* --- START: components/trust/trust.css --- */
/* 3. Trust Strip */
.trust-strip {
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
  background-color: var(--color-surface);
}

.trust-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
}

.trust-eyebrow {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-secondary);
  text-align: center;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-lg);
  width: 100%;
  padding: var(--space-xs) 0;
  list-style: none;
  margin: 0;
}

/* Wordmark logos: styled text, not images — change the names in trust.html.
   For real logo images, swap each <li> for an <img class="trust-logo">. */
.trust-logo {
  color: var(--color-secondary);
  opacity: 0.55;
  font-family: var(--font-label);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-logo:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  transition: opacity var(--dur-fast) var(--ease-css), transform var(--dur-fast) var(--ease-css);
}

/* --- END: components/trust/trust.css --- */
/* --- START: components/benefits/benefits.css --- */
/* BENEFITS / BY THE NUMBERS
   A stats band: descriptive line on top, oversized figure anchored to a shared baseline
   at the bottom, hairline rules between columns (no card boxes). Figures are set in the
   display face so the numbers read as part of the editorial voice, not a dashboard. */
.benefits-intro {
  margin-bottom: var(--space-lg);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  list-style: none;
  padding: 0;
  margin: 0;
}

.stat-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.stat-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-secondary);
}

/* Figure pinned to the bottom so all four numbers sit on one baseline on desktop */
.stat-figure-block {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.stat-figure {
  font-family: var(--font-display);
  font-size: var(--text-numeral);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--color-primary);
}

.stat-figure-unit {
  font-size: 0.42em;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-tertiary);
  margin-left: 0.08em;
}

.stat-label {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-secondary);
}

@media (min-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl) var(--space-lg);
  }
}

@media (min-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .stat-col {
    padding: 0 var(--space-md);
  }

  /* Hairline dividers between columns, like the reference — no card boxes */
  .stat-col + .stat-col {
    border-left: var(--border-thin);
  }

  .stat-col:first-child {
    padding-left: 0;
  }

  .stat-col:last-child {
    padding-right: 0;
  }
}

/* --- END: components/benefits/benefits.css --- */
/* --- START: components/services/services.css --- */
/* 4B. PREMIUM SERVICES SECTION (VERSION 3: BESPOKE CAPABILITY MANIFEST) */
.services-manifest-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  width: 100%;
}

.services-manifest-intro {
  margin-bottom: var(--space-sm);
}

.manifest-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.manifest-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-sm);
  border-bottom: var(--border-thin);
  position: relative;
  transition: background-color var(--dur-fast) var(--ease-css);
  will-change: transform, opacity;
}

.manifest-row:last-child {
  border-bottom: none;
}

.manifest-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-tertiary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--dur-fast) var(--ease-css);
}

.manifest-row:hover {
  background-color: rgba(28, 25, 23, 0.015);
}

.manifest-row:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.manifest-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.manifest-code {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-tertiary);
  letter-spacing: 0.05em;
}

.manifest-category {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-secondary);
}

.manifest-main h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.manifest-main p {
  font-size: 0.95rem;
  color: var(--color-primary);
  line-height: 1.55;
  max-width: var(--measure);
  margin-bottom: var(--space-sm);
}

.manifest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.manifest-tag {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-secondary);
  background-color: var(--color-surface);
  padding: 4px 10px;
  border-radius: var(--rounded-sm);
  border: 1px solid rgba(28, 25, 23, 0.04);
}

.manifest-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-xs);
}

.manifest-price {
  font-family: var(--font-label);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

.price-period {
  color: var(--color-secondary);
  font-size: 0.75rem;
  text-transform: lowercase;
  font-weight: 500;
}

.manifest-link {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-tertiary);
  transition: transform var(--dur-fast) var(--ease-css);
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  margin: -8px -12px; /* Expands clickable area without shifting layout */
}

.manifest-row:hover .manifest-link {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .manifest-row {
    display: grid;
    grid-template-columns: 1.2fr 3.5fr 1.3fr;
    gap: var(--space-md);
    align-items: start;
    padding: var(--space-md) var(--space-sm);
  }

  .manifest-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .manifest-action {
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: var(--space-sm);
    text-align: right;
    margin-top: 0;
  }
}

/* 4. Services Section (Asymmetric Columns / Magazine Grid) */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.services-intro {
  /* Sticky header concept on desktop */
  position: relative;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.service-card {
  padding: var(--space-md);
  background-color: var(--color-neutral);
  border: var(--border-thin);
  border-radius: var(--rounded-sm);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-md);
  /* Limit transitions to non-GSAP properties to prevent conflict during scroll reveal */
  transition: background-color var(--dur-fast) var(--ease-css),
              border-color var(--dur-fast) var(--ease-css),
              box-shadow var(--dur-fast) var(--ease-css);
}

.service-card:hover {
  background-color: var(--color-surface);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  /* Apply transform transition only during hover to ensure smooth entrance slide */
  transition: background-color var(--dur-fast) var(--ease-css),
              border-color var(--dur-fast) var(--ease-css),
              box-shadow var(--dur-fast) var(--ease-css),
              transform var(--dur-fast) var(--ease-css);
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(28, 25, 23, 0.05);
  padding-bottom: var(--space-xs);
}

.service-num {
  font-family: var(--font-label);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-tertiary);
}

.service-category {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
}

.service-card-content h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: var(--space-xs);
  margin-bottom: var(--space-xs);
  color: var(--color-primary);
}

.service-card-content p {
  font-size: 0.95rem;
  color: var(--color-secondary);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}

.service-bullets li {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-primary);
  position: relative;
  padding-left: 14px;
  line-height: 1.4;
}

.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 1px;
  background-color: var(--color-tertiary);
}

.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(28, 25, 23, 0.05);
  padding-top: var(--space-sm);
  margin-top: auto;
}

.service-price {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-tertiary);
  margin-top: 0;
}

.service-price-period {
  color: var(--color-secondary);
  font-size: 0.7rem;
  text-transform: lowercase;
}

.service-arrow {
  font-size: 1.25rem;
  color: var(--color-primary);
  transition: transform var(--dur-fast) var(--ease-css);
}

.service-card:hover .service-arrow {
  transform: translateX(6px);
  color: var(--color-tertiary);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--space-xl);
  }
  
  .services-intro {
    position: sticky;
    top: 120px;
  }
  
  .services-list {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- END: components/services/services.css --- */
/* --- START: components/about/about.css --- */
/* 5. About Section (Dossier Layout) */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.about-narrative-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
}

.about-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 2.4vw, 2.6rem);
  line-height: 1.1;
  font-weight: 300;
  font-style: italic;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  margin: 0;
}

.about-narrative-column h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  margin: 0;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.about-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-primary);
}

.about-body-text {
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--color-secondary);
}

/* Visual Column */
.about-visual-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
}

.about-portrait-wrapper {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
  border: var(--border-thin);
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-left-radius: var(--rounded-sm);
  border-bottom-right-radius: var(--rounded-sm);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-base) var(--ease-css),
    transform var(--dur-base) var(--ease-css);
  will-change: transform, opacity;
}

.about-portrait-wrapper:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.about-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-css);
}

.about-portrait-wrapper:hover .about-portrait {
  transform: scale(1.03);
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-xl);
  }
}

/* --- END: components/about/about.css --- */
/* --- START: components/proof/proof.css --- */
/* 6. Proof / Testimonials Section — "Outcomes Ledger"
   One ruled editorial ledger. The heading is the masthead row and every client is an
   entry; all rows share the same two column tracks and continuous hairline rules, so the
   heading reads as part of the list rather than a detached block above it. The left rail
   carries the concrete result, the right column carries the client's words.
   Deliberately distinct from the Process section's sticky-left layout. */

/* Soft surface tint: the ledger sits on the sage surface as a quiet color-block break.
   Foregrounds trace back to the ink/secondary tokens; the lone terracotta accent stays
   on the featured quote mark. */
.testimonials {
  background-color: var(--color-surface);
  --ledger-fg: var(--color-primary);
  --ledger-muted: var(--color-secondary);
  --ledger-rule: color-mix(in srgb, var(--color-primary) 14%, transparent);
}

.ledger {
  display: flex;
  flex-direction: column;
}

/* Every row uses the same column geometry so the masthead and entries line up. */
.ledger-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--ledger-rule);
}

/* No top rule on the masthead — the section border already separates this section, and
   the entries' own hairlines carry the ledger rhythm from the first testimonial down. */
.ledger-masthead {
  border-top: none;
  padding-top: 0;
}

/* No rule between the masthead and the first entry — the heading flows into the list. */
.ledger-masthead + .ledger-entry {
  border-top: none;
}

/* The rail's gap (space-sm) is the eyebrow→title spacing; drop the eyebrow's own margin
   so it doesn't stack on top and matches the 16px rhythm of the other section headers. */
.ledger-masthead .section-eyebrow {
  margin-bottom: 0;
}

.ledger-entry {
  margin: 0;
}

/* ---- Left rail: heading on the masthead, result + author on entries ---- */
.ledger-rail {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.ledger-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.3rem);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ledger-fg);
  margin: 0;
  max-width: min(100%, 16ch);
}

/* The result is the ledger's data column — a quiet caps label, not the hero. */
.ledger-impact {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ledger-muted);
}

.ledger-cite {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.ledger-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--ledger-rule);
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-css);
}

.ledger-author {
  display: flex;
  flex-direction: column;
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ledger-fg);
  font-style: normal;
  line-height: 1.3;
}

.ledger-role {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ledger-muted);
}

/* ---- Right column: the words ---- */
.ledger-lede {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ledger-muted);
  margin: 0;
  max-width: min(100%, 42ch);
}

.ledger-quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ledger-fg);
  margin: 0;
  max-width: min(100%, 46ch);
}

/* Signature: a single oversized terracotta opening mark on the featured entry only,
   hung inline so it adds no vertical space. The accent stays rare. */
.is-featured .ledger-quote {
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
}

.ledger-mark {
  font-family: var(--font-display);
  font-size: 2.6em;
  line-height: 0;
  vertical-align: -0.34em;
  margin-right: 0.04em;
  color: var(--color-tertiary);
  user-select: none;
}

/* Hover: dim sibling entries so the focused voice stands out. */
@media (hover: hover) {
  /* Scoped here (not on the base rule) so it doesn't fight the GSAP opacity reveal. */
  .ledger-entry {
    transition: opacity var(--dur-base) var(--ease-css);
  }
  .ledger:hover .ledger-entry {
    opacity: 0.6;
  }
  .ledger:hover .ledger-entry:hover {
    opacity: 1;
  }
  .ledger-entry:hover .ledger-avatar {
    transform: scale(1.08);
  }
}

@media (min-width: 768px) {
  .ledger-row {
    grid-template-columns: minmax(200px, 1fr) minmax(0, 2.3fr);
    gap: var(--space-lg);
    align-items: start;
  }

  /* Masthead: drop the lede to the foot of the row so it shares a baseline with the
     title rather than floating in the top-right with empty space beneath it. */
  .ledger-masthead {
    align-items: end;
    padding-top: 0;
    padding-bottom: var(--space-lg);
  }
}

/* --- END: components/proof/proof.css --- */
/* --- START: components/process/process.css --- */
/* 7. Process Section (Premium Split Grid Layout) */
.process-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.process-title-zone {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.process-content-zone {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

/* Normal flow so title/desc collapse to the same 16px rhythm as the other section headers.
   Zero the title's top margin so it aligns with the eyebrow in the left column. */
.process-main-header .section-title {
  margin-top: 0;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 600px) {
  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding: 0;
  will-change: transform, opacity;
}

.process-step-cta .text-link {
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.process-number {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: var(--space-xs);
  display: block;
}

.process-step h3 {
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: var(--space-xs);
}

.process-step p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Image styling */
.process-image-wrapper {
  width: 100%;
  border: var(--border-thin);
  border-radius: var(--rounded-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 5;
  transition: box-shadow var(--dur-base) var(--ease-css),
    transform var(--dur-base) var(--ease-css);
}

.process-image-wrapper:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.process-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-css);
}

.process-image-wrapper:hover .process-image {
  transform: scale(1.03);
}

/* Sibling Dimming on Hover */
@media (hover: hover) {
  /* Transition scoped here (not on the base rule) so it smooths the hover dim without
     fighting the GSAP opacity reveal on scroll. */
  .process-step {
    transition: opacity var(--dur-base) var(--ease-css);
  }
  .process-steps-grid:hover .process-step {
    opacity: 0.7;
  }
  .process-steps-grid:hover .process-step:hover {
    opacity: 1;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .process-layout-grid {
    grid-template-columns: 1.1fr 1.9fr;
    gap: var(--space-xl);
    align-items: stretch;
  }

  /* Image fills the left column down to the bottom of the steps on the right */
  .process-image-wrapper {
    flex: 1;
    aspect-ratio: auto;
    min-height: 0;
  }

  .process-steps-grid {
    gap: var(--space-lg) var(--space-xl);
  }

}

/* --- END: components/process/process.css --- */
/* --- START: components/faq/faq.css --- */
/* 8. FAQ Section (Editorial Split: sticky header rail + accordion) */
.faq-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

/* Normal flow (not flex) so the global eyebrow/title/desc margins collapse to the same
   rhythm as Benefits and Services, rather than stacking on top of a flex gap. */
.faq-intro {
  max-width: 600px;
}

.faq-nudge {
  font-size: var(--text-body);
  color: var(--color-secondary);
  margin: var(--space-sm) 0 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 768px) {
  .faq-layout-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--space-xl);
    align-items: start;
  }

  .faq-intro {
    position: sticky;
    top: 120px;
  }
}

.faq-item {
  border-bottom: var(--border-thin);
  will-change: transform, opacity;
}

.faq-item:first-of-type {
  border-top: var(--border-thin);
}

.faq-item summary {
  list-style: none; /* hide default arrow */
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  padding: var(--space-sm) 0;
  transition: color var(--dur-fast) var(--ease-css);
}

.faq-item summary::-webkit-details-marker {
  display: none; /* hide Safari default arrow */
}

.faq-item summary:hover {
  color: var(--color-tertiary);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--color-tertiary);
  outline-offset: 4px;
}

.faq-item[open] summary {
  color: var(--color-tertiary);
}

.faq-item-icon {
  font-family: var(--font-body);
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 400;
  color: var(--color-secondary);
  transition: transform var(--dur-fast) var(--ease-css), color var(--dur-fast) var(--ease-css);
  margin-left: var(--space-sm);
  display: inline-block;
  user-select: none;
}

.faq-item:hover .faq-item-icon {
  color: var(--color-tertiary);
}

.faq-item[open] .faq-item-icon {
  transform: rotate(45deg);
  color: var(--color-tertiary);
}

.faq-content {
  padding-bottom: var(--space-md);
  color: var(--color-secondary);
  font-size: var(--text-body);
  line-height: 1.6;
}

.faq-content p {
  margin: 0;
}

/* --- END: components/faq/faq.css --- */
/* --- START: components/cta/cta.css --- */
/* 9. Final CTA Section (Split Full-Width Layout)
   Dark color-block: the conversion climax sits on the primary ink surface as the page's
   single dark moment. No dark tokens exist in DESIGN.md, so the on-dark foregrounds are
   derived from --color-neutral via color-mix — every value still traces back to a token. */
.cta-section {
  background-color: var(--color-primary);
  color: var(--color-neutral);
  /* Derived on-dark scale */
  --cta-fg: var(--color-neutral);
  --cta-muted: color-mix(in srgb, var(--color-neutral) 68%, transparent);
  --cta-rule: color-mix(in srgb, var(--color-neutral) 16%, transparent);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: none;
}

/* Global eyebrow color (--color-secondary) is unreadable on ink; use the on-dark muted
   tone so the eyebrow stays quiet like every other section. Terracotta is reserved for
   the headline accent and the button. */
.cta-section .section-eyebrow {
  color: var(--cta-muted);
}

/* Base btn-primary (terracotta) pops on dark, but its hover goes ink-on-ink and vanishes —
   invert the hover to a light fill so the button stays visible. */
.cta-section .btn-primary:hover {
  background-color: var(--color-neutral);
  color: var(--color-primary);
}

.cta-container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 1024px) {
  .cta-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-lg);
  }
}

/* Left Column Styling */
.cta-text-zone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.cta-headline {
  color: var(--cta-fg);
  font-size: clamp(2rem, 1.6rem + 2.5vw, 3.5rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: var(--space-sm);
  font-family: var(--font-display);
}

.cta-headline-accent {
  color: var(--color-tertiary);
}

.cta-subhead {
  color: var(--cta-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: var(--space-lg);
  max-width: 50ch;
}

.cta-buttons-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  width: 100%;
}

@media (min-width: 480px) {
  .cta-buttons {
    flex-direction: row;
    align-items: center;
    width: auto;
  }
}

/* Checklist Styling under CTA Buttons */
.cta-checks {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

@media (min-width: 640px) {
  .cta-checks {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);
  }
}

.cta-check-item {
  font-family: var(--font-label);
  font-size: 0.75rem;
  color: var(--cta-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Right Column Styling */
.cta-factors-zone {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-factors-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* Numbered, hairline-separated list — no cards, no icons — matching the site's
   manifest/ledger language instead of introducing iconography unique to this section. */
.cta-factor-item {
  display: flex;
  gap: var(--space-md);
  align-items: baseline;
  padding: var(--space-md) 0;
  border-top: 1px solid var(--cta-rule);
}

.cta-factor-item:first-child {
  border-top: none;
  padding-top: 0;
}

.cta-factor-num {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--cta-muted);
  flex-shrink: 0;
}

.cta-factor-content h3 {
  color: var(--cta-fg);
  font-size: 0.95rem;
  margin: 0 0 var(--space-xs) 0;
  font-family: var(--font-body);
  font-weight: 600;
}

.cta-factor-content p {
  color: var(--cta-muted);
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0;
}

/* --- END: components/cta/cta.css --- */
/* --- START: components/footer/footer.css --- */
/* 9. Footer Section */
.footer {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-md);
  background-color: var(--color-neutral);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.footer-brand p {
  color: var(--color-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 45ch;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  border-left: none;
  padding-left: 0;
  transition: border-color var(--dur-fast) var(--ease-css);
}

.footer-links h3 {
  font-family: var(--font-label);
  font-size: var(--text-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-secondary);
  margin-bottom: var(--space-xs);
}

.footer-links a {
  font-size: var(--text-body);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  transition: color var(--dur-fast) var(--ease-css), transform var(--dur-fast) var(--ease-css);
  padding: 6px 0;
  min-height: 24px;
}

.footer-links a:hover {
  color: var(--color-tertiary);
  transform: translateX(4px);
}

.footer-bottom {
  position: relative;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: var(--border-thin);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}

.footer-copyright {
  font-size: var(--text-label);
  color: var(--color-secondary);
}

.back-to-top {
  font-family: var(--font-label);
  font-size: var(--text-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-secondary);
  transition: color var(--dur-fast) var(--ease-css), transform var(--dur-fast) var(--ease-css);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  margin: -8px -12px; /* Expands clickable area without shifting layout */
}

.back-to-top:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-lg);
  }

  .footer-links {
    border-left: var(--border-thin);
    padding-left: var(--space-md);
  }
  
  .footer-bottom {
    flex-direction: row;
  }
}

/* Support for prefers-reduced-motion CSS override */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- END: components/footer/footer.css --- */
