/* ============================================================
   AERIS DEALER NETWORK — styles.css  v2.0
   aerisdealernetwork.com — Premium cinematic redesign
   ============================================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  /* ── AERIS Brand Color System ── */
  --aeris-dark:        #263039;
  --aeris-steel:       #8e979d;
  --aeris-platinum:    #c4c9ca;
  --aeris-mist:        #d4d2d3;
  --aeris-white:       #ffffff;
  --aeris-off-white:   #f7f6f5;
  --aeris-text-dark:   #1a2329;
  --aeris-steel-light: #b8bfc3;

  /* ── Legacy aliases — remapped to brand values ── */
  --color-dark:        #263039;
  --color-steel:       #8e979d;
  --color-sky:         #b8bfc3;
  --color-platinum:    #c4c9ca;
  --color-mist:        #d4d2d3;
  --color-white:       #f7f6f5;
  --color-text-dark:   #1a2329;
  --color-text-muted:  #8e979d;
  --color-steel-hover: #263039;

  --clr-obsidian:    #263039;
  --clr-charcoal:    #263039;
  --clr-dark:        #263039;
  --clr-mid:         #1a2329;
  --clr-warm-grey:   #8e979d;
  --clr-light-grey:  #c4c9ca;
  --clr-cream:       #d4d2d3;
  --clr-off-white:   #f7f6f5;
  --clr-white:       #f7f6f5;
  --clr-gold:        #8e979d;
  --clr-gold-light:  #b8bfc3;
  --clr-gold-dark:   #263039;

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   7.5rem;
  --space-2xl:  8.75rem;

  /* Layout */
  --max-w:        1200px;
  --max-w-narrow: 720px;
  --nav-h:        72px;

  /* Motion */
  --ease-out:    cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --dur:          0.35s;
  --dur-slow:     0.7s;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--aeris-text-dark);
  background: var(--aeris-off-white);
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ---------- Typography Scale ---------- */
/* Display — hero headline, 72px+ */
.t-display {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 4.75rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

/* H1 — page-level headline, 64px+ */
.t-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* H2 — section headlines, 44px+ */
.t-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.875rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* H3 — card / sub-section */
.t-h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

/* Lead — subtitle / intro text */
.t-lead {
  font-family: var(--font-sans);
  font-size: clamp(1.0625rem, 1.75vw, 1.25rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--clr-mid);
}

/* Label — eyebrow category text */
.t-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3d5263;
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.5rem, 5vw, 3rem);
  padding-right: clamp(1.5rem, 5vw, 3rem);
}

.container--narrow { max-width: var(--max-w-narrow); }

.section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

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

/* ── Dark-section text overrides: ensure all body/label/lead text is legible ── */
.section--dark .t-lead,
.contrast-section .t-lead {
  color: rgba(255,255,255,0.72);
}

.section--dark .t-label,
.contrast-section .t-label,
.footer-cta-section .t-label {
  color: var(--aeris-steel-light);
}

.section--dark .t-h2,
.section--dark .t-h3,
.contrast-section .t-h2 {
  color: var(--aeris-white);
}

.section--dark .section-subhead {
  color: rgba(255,255,255,0.72);
}

.section--dark .manifesto-body,
.section--dark .promise-item p,
.section--dark .promise-clause {
  color: rgba(255,255,255,0.72);
}

.section--dark .promise-headline {
  color: var(--aeris-white);
}

.section--dark .manifesto-number {
  color: rgba(255,255,255,0.20);
}

.section--dark .divider {
  background: var(--aeris-steel);
}

.section--dark .expectation-item p {
  color: rgba(255,255,255,0.72);
}

.section--dark .expectation-item {
  border-bottom-color: rgba(255,255,255,0.08);
}

/* Warm cream section backgrounds — editorial paper stock feel */
.section--cream { background: #f7f4ef; }
.section--off-white { background: #f4f2ed; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s ease,
              color 0.2s ease,
              border-color 0.2s ease,
              box-shadow 0.2s ease,
              transform 0.2s ease;
  white-space: nowrap;
  position: relative;
}

.btn:hover {
  transform: scale(1.015);
}

/* Primary — dark bg, white text */
.btn--gold {
  background: var(--aeris-dark);
  color: var(--aeris-white);
  border: none;
}
.btn--gold:hover {
  background: var(--aeris-steel);
  box-shadow: 0 8px 32px rgba(38,48,57,0.22);
  transform: scale(1.015) translateY(-1px);
}

/* Ghost on dark backgrounds — white border/text */
.btn--outline {
  background: transparent;
  color: var(--aeris-white);
  border: 1px solid rgba(255,255,255,0.55);
}
.btn--outline:hover {
  background: var(--aeris-white);
  color: var(--aeris-dark);
  border-color: var(--aeris-white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

/* Ghost on light backgrounds — dark border/text */
.btn--outline-dark {
  background: transparent;
  color: var(--aeris-dark);
  border: 1px solid var(--aeris-dark);
}
.btn--outline-dark:hover {
  background: var(--aeris-dark);
  color: var(--aeris-white);
  box-shadow: 0 4px 24px rgba(38,48,57,0.15);
}

/* Solid white fill with dark text — for CTAs on dark backgrounds */
.btn--on-dark {
  background: #ffffff;
  color: var(--aeris-dark);
  border: none;
}
.btn--on-dark:hover {
  background: var(--aeris-platinum);
  color: var(--aeris-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transform: scale(1.015) translateY(-1px);
}

.btn--lg {
  padding: 1.125rem 2.75rem;
  font-size: 0.8rem;
}

/* ---------- NAV — Frosted Glass ---------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  /* Start transparent over hero */
  background: transparent;
  transition: background 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}

/* Frosted glass state — triggered by JS on scroll > 80px */
.site-nav.frosted {
  background: #ffffff;
  border-bottom: 1px solid rgba(28,43,58,0.08);
  box-shadow: 0 2px 20px rgba(28,43,58,0.07);
}

/* Interior pages always start with solid header */
.site-nav.scrolled {
  background: #ffffff;
  border-bottom: 1px solid rgba(28,43,58,0.08);
  box-shadow: 0 2px 20px rgba(28,43,58,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

/* ── Nav logo lockup (image-based) ── */
.nav-logo-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

/* REV (white) logo — shown on dark/transparent nav */
.nav-logo-rev  { display: block; }
.nav-logo-color { display: none; }

/* COLOR (dark) logo — shown on frosted/scrolled nav */
.site-nav.frosted .nav-logo-rev,
.site-nav.scrolled .nav-logo-rev  { display: none; }
.site-nav.frosted .nav-logo-color,
.site-nav.scrolled .nav-logo-color { display: block; }

.nav-logo-descriptor {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--aeris-steel);
  margin-top: 4px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.4s ease;
  position: relative;
}

/* Dark links when frosted */
.site-nav.frosted .nav-links a,
.site-nav.scrolled .nav-links a {
  color: rgba(26,35,41,0.72);
}

.site-nav.frosted .nav-links a:hover,
.site-nav.scrolled .nav-links a:hover { color: var(--aeris-text-dark); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-steel);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover { color: var(--aeris-white); }

.nav-links a.active {
  color: rgba(255,255,255,0.95);
}

.site-nav.frosted .nav-links a.active,
.site-nav.scrolled .nav-links a.active {
  color: var(--clr-charcoal);
}

.nav-cta {
  margin-left: 1.5rem;
  transition: transform 0.2s var(--ease-out),
              box-shadow 0.2s var(--ease-out),
              background 0.4s ease,
              color 0.4s ease,
              border-color 0.4s ease;
}

/* CTA button switches to dark outline when frosted */
.site-nav.frosted .nav-cta,
.site-nav.scrolled .nav-cta {
  color: var(--aeris-text-dark);
  border-color: rgba(26,35,41,0.3);
}

.site-nav.frosted .nav-cta:hover,
.site-nav.scrolled .nav-cta:hover {
  background: var(--aeris-dark);
  color: var(--aeris-white);
  box-shadow: 0 4px 24px rgba(38,48,57,0.15);
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--clr-white);
  transition: all 0.35s var(--ease-out);
}

.site-nav.frosted .nav-hamburger span,
.site-nav.scrolled .nav-hamburger span {
  background: var(--clr-charcoal);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer — full height, slide from right */
.nav-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 90vw);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(0,0,0,0.06);
  padding: calc(var(--nav-h) + 2rem) 2.5rem 2.5rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  z-index: 999;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-mobile-drawer.open {
  transform: translateX(0);
  pointer-events: all;
}

.nav-mobile-drawer a {
  display: block;
  padding: 1.1rem 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.65);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color 0.2s;
}

.nav-mobile-drawer a:first-child { border-top: 1px solid rgba(0,0,0,0.06); }
.nav-mobile-drawer a:hover { color: var(--clr-charcoal); }

.nav-mobile-drawer .btn {
  margin-top: 2rem;
  width: 100%;
  text-align: center;
  border-color: rgba(26,26,26,0.3);
  color: var(--clr-charcoal);
}

.nav-mobile-drawer .btn:hover {
  background: var(--clr-charcoal);
  color: var(--clr-white);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 10s ease-out;
}

.hero-bg.loaded { transform: scale(1); }

/* Gradient: dark bottom → lighter top */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.28) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-content .t-label {
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.6);
}

.hero-content .t-display {
  color: var(--clr-white);
  margin-bottom: 1.75rem;
}

.hero-content .t-lead {
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.25rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Scroll chevron */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.4s ease;
}

.hero-scroll.hidden { opacity: 0; pointer-events: none; }

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-sans);
}

.hero-scroll-chevron {
  width: 20px;
  height: 20px;
  animation: chevronBounce 2s ease-in-out infinite;
}

.hero-scroll-chevron svg {
  stroke: rgba(255,255,255,0.4);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes chevronBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* ---------- CONTRAST SECTION (near-black, centered) ---------- */
.contrast-section {
  background: var(--clr-obsidian);
  padding: 10rem 0;
  text-align: center;
}

.contrast-inner {
  max-width: 720px;
  margin: 0 auto;
}

.contrast-inner .t-label {
  margin-bottom: 2rem;
  color: var(--aeris-steel-light);
}

.contrast-inner .t-h2 {
  color: var(--clr-white);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 2rem;
}

.contrast-body {
  font-size: 1.125rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- FOUR PILLARS (light cream, 2x2 grid) ---------- */
.pillars-section {
  background: #f7f4ef;
  padding: var(--space-xl) 0;
}

.pillars-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pillars-section-header .t-label { margin-bottom: 1.25rem; }
.pillars-section-header .t-h2 { color: var(--clr-charcoal); }
.pillars-section-header .t-lead {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}


.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.pillar {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(26,35,41,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out);
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.75rem;
}

.pillar-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--clr-obsidian);
  stroke-width: 1.4;
  fill: none;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--clr-charcoal);
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}

.pillar-desc {
  font-size: 1rem;
  color: var(--clr-mid);
  line-height: 1.8;
}

/* ---------- CREDIBILITY STATS ---------- */
.credibility-section {
  background: #f4f3f0;
  padding: 8rem 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.credibility-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.credibility-stat {
  flex: 1;
  text-align: center;
  padding: 0 3rem;
  position: relative;
}

.credibility-stat + .credibility-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(28,43,58,0.1);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--clr-obsidian);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.625rem;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4a5a67;
  line-height: 1.5;
}

/* ---------- FOOTER CTA (minimal, generous) ---------- */
.footer-cta-section {
  background: var(--clr-obsidian);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.footer-cta-section .t-label { margin-bottom: 1.5rem; color: var(--aeris-steel-light); }
.footer-cta-section .t-lead { color: rgba(255,255,255,0.68); }

.footer-cta-section .t-h2 {
  color: var(--clr-white);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ---------- SITE FOOTER ---------- */
.site-footer {
  background: var(--clr-obsidian);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 4rem 0 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

/* ── Footer logo lockup (image-based) ── */
.footer-logo-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.footer-logo-img {
  height: 30px;
  width: auto;
  display: block;
}

.footer-logo-descriptor {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 5px;
  display: block;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2.25rem;
}

.footer-nav a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--aeris-white); }

.footer-contact { text-align: right; }

.footer-contact a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--clr-white); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p, .footer-bottom a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.04em;
}

.footer-bottom a:hover { color: rgba(255,255,255,0.65); }

/* ---------- PAGE HERO (interior pages) ---------- */
.page-hero {
  background: var(--clr-obsidian);
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 5rem;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
}

.page-hero .container { width: 100%; }

.page-hero .t-label {
  margin-bottom: 1.25rem;
  color: var(--aeris-steel-light);
}

.page-hero .t-h1 {
  color: var(--clr-white);
  margin-bottom: 1.5rem;
}

.page-hero .t-lead {
  color: rgba(255,255,255,0.6);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- WHY AERIS MANIFESTO ---------- */
.manifesto-section {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid rgba(61,96,128,0.18);
}

.manifesto-section:last-of-type { border-bottom: none; }

.manifesto-number {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(0,0,0,0.07);
  line-height: 1;
  margin-bottom: -1.25rem;
  user-select: none;
}

.manifesto-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 5rem;
  align-items: start;
}

.manifesto-sidebar .t-label { margin-bottom: 1rem; }

.manifesto-sidebar .t-h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.manifesto-body {
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--clr-mid);
}

.promise-list {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
  margin-top: 1.5rem;
}

.promise-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.promise-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-gold);
  margin-top: 0.65rem;
  flex-shrink: 0;
}

.promise-item p {
  font-size: 1.0625rem;
  color: var(--clr-mid);
  line-height: 1.75;
}

/* ---------- DEALER PROGRAM BENEFITS ---------- */
.program-benefits {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.benefit-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 2rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.benefit-item:first-child { border-top: 1px solid rgba(0,0,0,0.06); }

.benefit-icon {
  width: 36px;
  height: 36px;
  margin-top: 4px;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--clr-obsidian);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--clr-charcoal);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.benefit-desc {
  font-size: 1rem;
  color: var(--clr-mid);
  line-height: 1.8;
}

/* ---------- WHAT WE EXPECT ---------- */
.expectations-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.expectation-item {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.expectation-num {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 300;
  color: var(--clr-obsidian);
  opacity: 0.18;
  flex-shrink: 0;
  width: 3.5rem;
  letter-spacing: -0.02em;
  line-height: 1;
  padding-top: 0.2rem;
}

.expectation-item p {
  font-size: 1.0625rem;
  color: var(--clr-mid);
  line-height: 1.75;
}

/* ---------- HOW IT WORKS STEPS ---------- */
.steps-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  margin-top: 1rem;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
  max-width: 180px;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(61,96,128,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--clr-gold);
  position: relative;
  z-index: 2;
  background: var(--clr-obsidian);
}

.step-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-align: center;
  line-height: 1.5;
}

.step-arrow {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 80px;
}

.step-arrow svg {
  width: 24px;
  height: 24px;
  stroke: rgba(61,96,128,0.4);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- APPLY FORM ---------- */
.form-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--clr-white);
  border-radius: 20px;
  box-shadow: 0 8px 64px rgba(0,0,0,0.08);
  padding: 3.5rem;
}

.apply-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}

.form-group {
  margin-bottom: 2.25rem;
  position: relative;
}

.form-helper-note {
  margin-top: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--clr-warm-grey);
  line-height: 1.6;
  font-style: italic;
}

.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-warm-grey);
  margin-bottom: 0.75rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  border-radius: 0;
  padding: 0.625rem 0 0.875rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--clr-charcoal);
  outline: none;
  transition: border-color 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--clr-light-grey);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--color-steel);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}

.form-select-wrap {
  position: relative;
}

.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--clr-warm-grey);
  pointer-events: none;
}

.form-select { cursor: pointer; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 0;
}

/* Apply submit button */
.apply-form .btn--gold {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
}

/* ---------- PRODUCTS GRID ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--clr-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.13);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
  display: block;
}

.product-card:hover .product-card-img {
  transform: scale(1.04);
}

.product-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-body .t-label { margin-bottom: 0.75rem; }

.product-card-body .t-h3 {
  margin-bottom: 0.5rem;
  font-size: 1.375rem;
  letter-spacing: -0.01em;
}

.product-card-subhead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--clr-mid);
  line-height: 1.55;
  margin-bottom: 0.875rem;
}

.product-card-desc {
  font-size: 0.9375rem;
  color: var(--clr-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  flex: 1;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-charcoal);
  transition: gap 0.2s;
}

.product-link:hover { gap: 0.75rem; }

.product-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.products-footnote {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.products-footnote p {
  font-size: 0.9375rem;
  color: var(--clr-mid);
  line-height: 1.8;
  max-width: 680px;
}

/* ---------- PRODUCT BADGE ---------- */
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold-dark);
  background: rgba(61,96,128,0.1);
  border: 1px solid rgba(61,96,128,0.25);
  padding: 0.35rem 0.75rem;
  margin-top: auto;
  border-radius: 2px;
}

.product-badge svg {
  width: 11px;
  height: 11px;
  stroke: var(--clr-gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ---------- FEATURE SECTIONS (Retreat detail page) ---------- */
.feature-sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 3rem 0;
}

.feature-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

/* Sub-numeral — matches Why AERIS promise list treatment */
.feature-sub-num {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  color: rgba(26,35,41,0.72);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.875rem;
  user-select: none;
}

/* Icon cell — hidden; kept in CSS for graceful degradation */
.feature-section-icon { display: none; }
.feature-section-icon svg { display: none; }

.feature-section-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--clr-charcoal);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.feature-section-body {
  font-size: 0.9375rem;
  color: var(--clr-mid);
  line-height: 1.85;
}

/* ---------- COMPARISON TABLE ---------- */
.comparison-table-wrap {
  overflow-x: auto;
  margin: 2.5rem 0;
  border-radius: 12px;
  border: 1px solid rgba(28,43,58,0.12);
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.comparison-table thead th {
  padding: 1.125rem 1.5rem;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background: var(--clr-obsidian);
  color: rgba(255,255,255,0.90);
}

.comparison-table thead th:first-child { color: rgba(255,255,255,0.55); width: 22%; }
.comparison-table thead th:nth-child(2) { color: rgba(255,255,255,0.70); }
.comparison-table thead th:nth-child(3) {
  color: #ffffff;
}

.comparison-table tbody tr:nth-child(odd) { background: var(--clr-off-white); }
.comparison-table tbody tr:nth-child(even) { background: var(--clr-white); }

.comparison-table td {
  padding: 1rem 1.5rem;
  color: var(--clr-mid);
  line-height: 1.6;
  vertical-align: top;
  border-bottom: 1px solid rgba(28,43,58,0.06);
}

.comparison-table td:first-child {
  font-weight: 500;
  color: var(--clr-charcoal);
  font-size: 0.875rem;
}

.comparison-table td:nth-child(2) { color: var(--clr-warm-grey); }

.comparison-table td:nth-child(3) {
  font-weight: 500;
  color: var(--clr-charcoal);
  background: rgba(61,96,128,0.04);
}

/* ---------- WARRANTY SECTION ---------- */
.warranty-section {
  background: var(--clr-obsidian);
  padding: var(--space-xl) 0;
}

.warranty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
  margin-top: 2.5rem;
}

.warranty-col h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.375rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.warranty-list { display: flex; flex-direction: column; gap: 1rem; }

.warranty-item { display: flex; gap: 0.875rem; align-items: flex-start; }

.warranty-item-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--clr-gold);
  margin-top: 0.6rem;
  flex-shrink: 0;
}

.warranty-item p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

.warranty-item strong {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.warranty-not-covered { margin-top: 2rem; }
.warranty-not-covered h3 { color: rgba(255,255,255,0.45); }
.warranty-not-covered .warranty-item p { color: rgba(255,255,255,0.35); }

.warranty-footnote {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.22);
  line-height: 1.8;
  font-style: italic;
}

/* ---------- BOTTOM LINE ---------- */
.bottom-line {
  background: #f7f4ef;
  padding: var(--space-lg) 0;
}

.bottom-line .t-h2 { margin-bottom: 1.375rem; }

.bottom-line p {
  font-size: 1.0625rem;
  color: var(--clr-mid);
  line-height: 1.9;
  max-width: 760px;
}

/* ---------- PLACEHOLDER PAGE ---------- */
.placeholder-page {
  min-height: 65vh;
  display: flex;
  align-items: center;
  background: var(--clr-obsidian);
  padding: calc(var(--nav-h) + 4rem) 0 5rem;
}

.placeholder-content { max-width: 580px; }

.placeholder-content .t-h1 {
  color: var(--clr-white);
  margin-bottom: 1.5rem;
}

.placeholder-content p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

/* ---------- ABOUT PAGE ---------- */
.founder-letter {
  font-size: 1.0625rem;
  color: var(--clr-mid);
  line-height: 1.9;
  max-width: 660px;
}

.founder-letter p + p { margin-top: 1.5rem; }

.founder-signature {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.founder-signature .sig-name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 300;
  font-style: italic;
  color: var(--clr-charcoal);
}

.founder-signature .sig-title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-top: 0.25rem;
}

/* ---------- UTILITY ---------- */
.divider {
  width: 48px;
  height: 1px;
  background: var(--clr-gold);
  margin: 1.75rem 0;
}

.divider--center { margin: 1.75rem auto; }

.section-header { margin-bottom: 4rem; }
.section-header .t-label { margin-bottom: 1rem; }
.section-header .t-h2 { margin-bottom: 1rem; }
.section-header .t-lead { max-width: 580px; }

/* ---------- SCROLL ANIMATIONS ---------- */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger delays for grid items */
  .fade-in-delay-1 { transition-delay: 0.12s; }
  .fade-in-delay-2 { transition-delay: 0.24s; }
  .fade-in-delay-3 { transition-delay: 0.36s; }
  .fade-in-delay-4 { transition-delay: 0.48s; }
}

/* Respect prefers-reduced-motion — show immediately */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .pillars-grid { gap: 1.25rem; }
  .contrast-section { padding: 7rem 0; }
  .footer-cta-section { padding: 6rem 0; }
  .manifesto-layout { grid-template-columns: 200px 1fr; gap: 3rem; }
  .step-layout { grid-template-columns: 200px 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .warranty-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root {
    --space-xl:  5rem;
    --space-2xl: 5rem;
  }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content .t-lead { font-size: 1.0625rem; }
  .hero-ctas { flex-direction: column; align-items: center; }

  .contrast-section { padding: 6.25rem 0; }

  .pillars-grid { grid-template-columns: 1fr; gap: 1rem; }
  .pillar { padding: 2rem; }

  .credibility-stats { flex-direction: column; gap: 3rem; }
  .credibility-stat + .credibility-stat::before { display: none; }
  .credibility-stat { padding: 0; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .products-grid { grid-template-columns: 1fr; }

  .manifesto-layout { grid-template-columns: 1fr; gap: 2rem; }

  .steps-flow { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .step-arrow { display: none; }
  .step-item { flex-direction: row; max-width: none; gap: 1.5rem; }
  .step-num { flex-shrink: 0; }

  .apply-form .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 2rem; border-radius: 12px; }

  .benefit-item { grid-template-columns: 44px 1fr; padding: 2rem 0; }

  .feature-section { grid-template-columns: 44px 1fr; gap: 0 1.25rem; }
  .feature-section-icon { width: 44px; height: 44px; }

  .warranty-grid { grid-template-columns: 1fr; gap: 2rem; }

  .page-hero { min-height: 40vh; padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 3rem; }
}

@media (max-width: 480px) {
  .pillar { padding: 1.75rem 1.5rem; border-radius: 16px; }
  .product-card-body { padding: 1.5rem; }
  .form-card { padding: 1.5rem; }
}

/* ============================================================
   NEW SECTIONS — v2.1
   ============================================================ */

/* ---------- SECTION TYPOGRAPHY HELPERS ---------- */
.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--clr-charcoal);
  margin-bottom: 1.25rem;
}

.section-subhead {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: var(--clr-mid);
  line-height: 1.75;
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}

/* ---------- FEATURE CARDS (Market Protection, Dealer Program) ---------- */
.feature-card-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 760px;
  margin: 0 auto;
}

.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(26,35,41,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  display: flex;
  gap: 1.875rem;
  align-items: flex-start;
  transition: transform 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.feature-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-card-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--clr-obsidian);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card-content { flex: 1; }

.feature-card-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--clr-charcoal);
  margin-bottom: 0.625rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.feature-card-body {
  font-size: 1rem;
  color: var(--clr-mid);
  line-height: 1.85;
}

/* ---------- MARKET PROTECTION SECTION ---------- */
.market-protection-section {
  background: var(--clr-white);
  padding: 8.75rem 0;
}

.market-closing {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.375rem;
  font-weight: 300;
  color: var(--clr-mid);
  max-width: 680px;
  margin: 3.75rem auto 0;
  text-align: center;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

/* ---------- PRODUCT ENGINEERING SECTION ---------- */
.engineering-section {
  background: #f7f4ef;
  padding: var(--space-xl) 0;
}

.engineering-header {
  text-align: center;
  margin-bottom: 4rem;
}

.engineering-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.engineering-pullquote {
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 3vw, 2.375rem);
  font-weight: 300;
  color: var(--clr-mid);
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.engineering-body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  color: var(--clr-mid);
  line-height: 1.9;
}

.engineering-rule {
  width: 80px;
  height: 1px;
  background: var(--color-steel);
  opacity: 0.35;
  margin: 3.75rem auto 0;
}

/* ---------- EMAIL CAPTURE SECTION ---------- */
.email-capture-section {
  background: var(--clr-obsidian);
  padding: var(--space-xl) 0;
  text-align: center;
}

.email-capture-section .section-headline {
  color: var(--clr-white);
}

.email-capture-section .section-subhead {
  color: rgba(255,255,255,0.68);
  margin-bottom: 2.75rem;
}

.email-form-wrap {
  max-width: 480px;
  margin: 0 auto;
}

.email-form {
  display: flex;
  align-items: stretch;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.email-form-input {
  flex: 1;
  padding: 1rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  border: none;
  outline: none;
  background: var(--clr-white);
  color: var(--clr-charcoal);
  min-width: 0;
}

.email-form-input::placeholder { color: var(--clr-light-grey); }

.email-form-btn {
  background: var(--clr-gold);
  color: var(--clr-white);
  border: none;
  padding: 1rem 1.625rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

.email-form-btn:hover { background: var(--clr-gold-dark); }

.email-fine-print {
  margin-top: 1.125rem;
  font-size: 0.75rem;
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.42);
  text-align: center;
  letter-spacing: 0.02em;
}

.email-success {
  display: none;
  color: var(--clr-white);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  padding: 1.75rem;
  opacity: 0.85;
}

/* ---------- APPLY PAGE — PROCESS SECTION ---------- */
.timeline-section {
  background: #f7f4ef;
  padding: var(--space-xl) 0;
  padding-bottom: 0;
}

.timeline-section .section-headline { margin-bottom: 1.25rem; }
.timeline-section .section-subhead { margin-bottom: 0; }

/* Vertical step blocks — manifesto-style layout */
.step-blocks-wrap {
  /* no background; each step-wa-section carries its own */
}

.step-wa-section {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid rgba(61,96,128,0.10);
}

.step-wa-section:last-of-type { border-bottom: none; }

.step-wa-section--white { background: #ffffff; }
.step-wa-section--cream { background: #f7f4ef; }

/* Two-column inner layout: matches manifesto-layout proportions */
.step-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 5rem;
  align-items: start;
}

.step-sidebar .pillar-rule { margin-bottom: 1.25rem; }

.step-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3d5263;
  margin-bottom: 1rem;
}

.step-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--clr-charcoal);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
}

.step-body {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--clr-mid);
  margin: 0;
}

.step-body + .step-body {
  margin-top: 1.5rem;
}

/* Closing italic serif line */
.timeline-closing {
  text-align: center;
  padding: var(--space-xl) 0;
  background: #f7f4ef;
  font-size: 1.0625rem;
  color: rgba(26,35,41,0.80);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: -0.01em;
  max-width: 680px;
  margin: 0 auto;
}

/* ---------- RESPONSIVE — NEW SECTIONS ---------- */
@media (max-width: 1024px) {
  .market-protection-section { padding: 6rem 0; }
  .engineering-two-col { gap: 2.5rem; }
  .manifesto-layout { grid-template-columns: 200px 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .market-protection-section { padding: 5.625rem 0; }
  .market-closing { font-size: 1.2rem; margin-top: 2.5rem; }

  .engineering-section { padding: var(--space-xl) 0; }
  .engineering-two-col { grid-template-columns: 1fr; gap: 2rem; }
  .engineering-rule { margin-top: 2.5rem; }

  .feature-card { flex-direction: column; gap: 1.25rem; padding: 1.875rem; }

  .email-form { flex-direction: column; border-radius: 8px; overflow: visible; box-shadow: none; }
  .email-form-input {
    border-radius: 8px;
    margin-bottom: 0.625rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.2);
  }
  .email-form-btn {
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.2);
  }

  /* Manifesto + step layout */
  .manifesto-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .step-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .manifesto-number { font-size: 3.5rem; margin-bottom: 0; }

  /* Footer grid */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .feature-card { padding: 1.5rem; border-radius: 16px; }

  /* Prevent body overflow on narrow screens */
  body { overflow-x: hidden; }
  .container { overflow-x: hidden; }
}

/* ============================================================
   GLOBAL NAV RESPONSIVE — logo only (hamburger handled at 768px above)
   ============================================================ */
@media (max-width: 900px) {
  /* Logo scales down on tablet/mobile */
  .nav-logo-img { height: 28px; }
  .nav-logo-descriptor { font-size: 8px; letter-spacing: 0.12em; }
  .footer-logo-img { height: 24px; }
}

/* ============================================================
   PILLAR SECTIONS — Dealer Program "What You Get"
   ============================================================ */

.pillar-section {
  background: var(--clr-white);
  padding: 5rem 0;
  border-bottom: 1px solid rgba(28,43,58,0.07);
}

.pillar-section--alt {
  background: #f7f4ef;
}

.pillar-row {
  max-width: 760px;
}

.pillar-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3d5263;
  margin-bottom: 1rem;
}

.pillar-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--clr-charcoal);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.pillar-copy {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--clr-mid);
  max-width: 640px;
}

/* ============================================================
   PROMISE ROWS — Why AERIS "What We Promise"
   ============================================================ */

.promise-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(28,43,58,0.08);
}

.promise-item:first-child {
  border-top: 1px solid rgba(28,43,58,0.08);
}

.promise-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 500;
  color: var(--clr-charcoal);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 0.375rem;
}

.promise-clause {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--clr-mid);
  line-height: 1.7;
}

/* ============================================================
   PRODUCT CARD — Child Safety Line
   ============================================================ */

.product-card-safety {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--clr-mid);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding: 0.875rem 1rem;
  background: rgba(28,43,58,0.04);
  border-radius: 6px;
  border-left: 2px solid var(--clr-gold);
}

.product-card-safety-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  stroke: var(--clr-gold);
  stroke-width: 1.5;
  fill: none;
}

/* ============================================================
   PRODUCTS PAGE — Consolidated Warranty Line
   ============================================================ */

.products-warranty-line {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--clr-mid);
  margin-top: 3rem;
  margin-bottom: 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(28,43,58,0.08);
}

/* ============================================================
   PROCESS STEPS — Dealer Program "How It Works"
   ============================================================ */

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.process-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.process-step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1;
  letter-spacing: -0.02em;
}

.process-step-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.375rem;
}

.process-step-desc {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

@media (max-width: 1100px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .process-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem 1.5rem;
  }

  .process-step-num {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
  }
}

/* ============================================================
   PRODUCT DETAIL — Single Warranty Line
   ============================================================ */

.product-warranty-line {
  background: var(--clr-obsidian);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 3rem 0;
  text-align: center;
}

.product-warranty-line p {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.product-warranty-line a {
  color: var(--clr-gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.product-warranty-line a:hover {
  color: var(--clr-white);
}

/* ============================================================
   WHY AERIS — HERO IMAGE
   ============================================================ */

.why-hero-img-wrap {
  position: relative;
  width: 100%;
  /* Pushes down exactly the nav height so the image fills below the header */
  padding-top: var(--nav-h);
  height: calc(var(--nav-h) + 55vh);
  overflow: hidden;
  /* No background — image fills it */
}

.why-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* Gradient: barely-there dark veil at top (nav legibility),
   then a clean fade to white at the bottom to blend into content */
.why-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,35,41,0.12)  0%,
    rgba(26,35,41,0.00)  25%,
    rgba(247,246,245,0.00) 55%,
    rgba(247,246,245,0.85) 82%,
    rgba(247,246,245,1.00) 100%
  );
  pointer-events: none;
}

/* Override page-hero to be transparent / light for this page only */
.why-hero-header {
  background: transparent;
  padding-top: 3rem;
  min-height: auto;
}

.why-hero-header .t-label { color: var(--aeris-steel); }

.why-hero-header .t-h1 {
  color: var(--aeris-text-dark);
}

.why-hero-header .t-lead {
  color: var(--clr-mid);
}

/* Mobile — shorter image so it doesn't dominate */
@media (max-width: 768px) {
  .why-hero-img-wrap {
    height: calc(var(--nav-h) + 40vh);
  }

  .why-hero-header {
    padding-top: 2rem;
  }
}

/* ============================================================
   SHARED PAGE HERO IMAGE SYSTEM
   Used by: Dealer Program, and any future image-hero pages.
   (Why AERIS uses its own why-hero-* classes above — same concept)
   ============================================================ */

.page-hero-img-wrap {
  position: relative;
  width: 100%;
  padding-top: var(--nav-h);
  height: calc(var(--nav-h) + 55vh);
  overflow: hidden;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* Subtle dark veil at top edge (keeps nav legible over photo),
   fades cleanly to the page off-white at the bottom */
.page-hero-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,35,41,0.10)   0%,
    rgba(26,35,41,0.00)   22%,
    rgba(247,246,245,0.00) 55%,
    rgba(247,246,245,0.88) 82%,
    rgba(247,246,245,1.00) 100%
  );
  pointer-events: none;
}

/* Light modifier — strips the dark .page-hero background and
   switches all text to dark brand colors */
.page-hero--light {
  background: transparent;
  padding-top: 3rem;
  min-height: auto;
}

.page-hero--light .t-label {
  color: var(--aeris-steel);
}

.page-hero--light .t-h1 {
  color: var(--aeris-text-dark);
}

.page-hero--light .t-lead {
  color: var(--clr-mid);
}

/* Mobile — shorter image */
@media (max-width: 768px) {
  .page-hero-img-wrap {
    height: calc(var(--nav-h) + 40vh);
  }

  .page-hero--light {
    padding-top: 2rem;
  }
}

/* ============================================================
   DEALER PROGRAM — TYPOGRAPHIC HERO
   Intentional absence of imagery. The message is the hero.
   Reference: McKinsey Quarterly, FT Weekend, Deloitte Insights.
   ============================================================ */

.dp-type-hero {
  background: var(--clr-obsidian);
  padding-top: var(--nav-h);
  min-height: calc(var(--nav-h) + 52vh);
  display: flex;
  align-items: center;
}

.dp-type-hero-inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 6rem 2.5rem 5.5rem;
}

/* Eyebrow label — warm platinum on dark */
.dp-type-hero-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--aeris-steel-light);
  margin-bottom: 1.5rem;
}

/* Thin horizontal rule — visible on dark */
.dp-type-hero-rule {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.22);
  margin-bottom: 2.25rem;
}

/* Main headline — crisp white on dark steel blue */
.dp-type-hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3.25rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--aeris-white);
  margin-bottom: 2rem;
}

/* Subhead — soft platinum, one step below headline */
.dp-type-hero-subhead {
  font-family: var(--font-sans);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.68);
  max-width: 680px;
}

/* Mobile — generous spacing maintained, scale reduced */
@media (max-width: 768px) {
  .dp-type-hero {
    min-height: calc(var(--nav-h) + 44vh);
  }

  .dp-type-hero-inner {
    padding: 4rem 1.5rem 3.5rem;
  }

  .dp-type-hero-headline {
    letter-spacing: -0.015em;
  }
}

/* ============================================================
   DEALER PROGRAM — PILLAR ANCHORED LAYOUT (Roman Numerals)
   ============================================================ */

/* Explicit background classes for white/cream alternation */
.pillar-section--white {
  background: #ffffff;
}

/* .pillar-section--alt already defined as #f7f4ef warm cream */

/* Two-column layout: numeral left, content right */
.pillar-row--anchored {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0 3.5rem;
  align-items: start;
  max-width: 840px;
}

/* Large serif roman numeral — architectural anchor */
.pillar-numeral {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: rgba(26,35,41,0.12);
  line-height: 1;
  letter-spacing: -0.02em;
  padding-top: 0.5rem;
  user-select: none;
}

/* Content column */
.pillar-content {
  padding-top: 0.25rem;
}

/* Short architectural rule above eyebrow — editorial section marker */
.pillar-rule {
  width: 40px;
  height: 1px;
  background: var(--clr-obsidian);
  opacity: 0.35;
  margin-bottom: 1.25rem;
}

/* On dark section backgrounds, flip the rule to a visible light tone */
.section--dark .pillar-rule,
.contrast-section .pillar-rule,
.market-protection-section .pillar-rule,
.footer-cta-section .pillar-rule,
.email-capture-section .pillar-rule,
.dp-type-hero .pillar-rule,
.page-hero .pillar-rule {
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
}

/* Tighten pillar-row default for the anchored layout */
.pillar-row--anchored .pillar-label {
  margin-bottom: 0.875rem;
}

/* .expectation-num defined above with roman numeral visual treatment */

/* Mobile: stack numeral above content */
@media (max-width: 640px) {
  .pillar-row--anchored {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pillar-numeral {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 0;
    opacity: 0.18;
  }
}

/* ============================================================
   DEALER PROGRAM — BREAKOUT PULL QUOTE
   Full-width dark steel blue, centered italic, editorial pause
   ============================================================ */

.dp-pull-quote {
  background: var(--clr-obsidian);
  padding: 7.5rem 0;
  text-align: center;
}

.dp-pull-quote-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Thin centered horizontal rule in warm platinum tone */
.dp-pull-quote-rule {
  width: 64px;
  height: 1px;
  background: rgba(196,201,202,0.45);
}

/* Large italic serif quote */
.dp-pull-quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.625rem, 3.5vw, 2.375rem);
  font-weight: 300;
  color: var(--aeris-off-white);
  line-height: 1.45;
  letter-spacing: -0.015em;
  margin: 0;
}

/* Small-caps attribution */
.dp-pull-quote-attr {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(196,201,202,0.55);
}

@media (max-width: 640px) {
  .dp-pull-quote {
    padding: 5rem 0;
  }
}

/* ============================================================
   WHY AERIS PAGE — EDITORIAL SYSTEM (matches Dealer Program)
   ============================================================ */

/* Section containers — alternating backgrounds */
.wa-section {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid rgba(61,96,128,0.10);
}

.wa-section:last-of-type { border-bottom: none; }

.wa-section--white { background: #ffffff; }
.wa-section--cream { background: #f7f4ef; }

/* Large serif Roman numeral — same ghost family as pillar numerals */
.wa-numeral {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: rgba(26,35,41,0.72);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: -0.75rem;
  user-select: none;
}

/* Closing italic line in dark section IV */
.wa-closing-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-top: 2rem;
}

/* ============================================================
   PROMISE NEW LIST — rebuilt hierarchical treatment
   ============================================================ */

.promise-new-list {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
}

.promise-new-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(26,35,41,0.07);
}

.promise-new-item:first-child {
  border-top: 1px solid rgba(26,35,41,0.07);
}

/* Lowercase roman sub-numeral: i, ii, iii, iv, v */
.promise-sub-num {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--clr-obsidian);
  opacity: 0.72;
  flex-shrink: 0;
  width: 2rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  padding-top: 0.15rem;
  user-select: none;
}

.promise-new-content {
  flex: 1;
}

/* Promise headline — serif, confident, dark */
.promise-new-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 500;
  color: var(--clr-charcoal);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 0.375rem;
}

/* Promise body — sans-serif, clearly readable */
.promise-new-body {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--clr-mid);
  line-height: 1.7;
  margin: 0;
}

/* Mobile */
@media (max-width: 640px) {
  .wa-numeral {
    font-size: 2.75rem;
    margin-bottom: -0.5rem;
  }

  .promise-new-item {
    gap: 1.25rem;
    padding: 1.75rem 0;
  }

  .wa-closing-line {
    font-size: 1.125rem;
  }
}

/* ============================================================
   ENGINEERING PAGE — EDITORIAL SYSTEM
   ============================================================ */

/* Alternating section backgrounds */
.eng-section--white { background: #ffffff; }
.eng-section--cream { background: #f7f4ef; }

/* Strengthened domain eyebrow label */
.eng-domain-label {
  font-family: var(--font-sans) !important;
  font-size: 0.6875rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: #3d5263 !important;
  margin-bottom: 0.375rem !important;
}

/* Role sublabel — serif italic attribution, reads as a pair with label */
.eng-domain-role {
  font-family: var(--font-serif) !important;
  font-style: italic !important;
  font-size: clamp(1rem, 1.5vw, 1.1875rem) !important;
  font-weight: 300 !important;
  color: rgba(26,35,41,0.65) !important;
  letter-spacing: 0 !important;
  margin-bottom: 1.75rem !important;
}

/* Domain section top border — remove since we use bg alternation */
.eng-domain-section {
  border-top: none !important;
}

/* Principles list in The Future — reuses promise-new-item, just needs wrapper */
.eng-principles-list {
  margin-top: 2rem;
  margin-bottom: 0;
}

/* ============================================================
   ENGINEERING RESULTS — dark steel blue, declaration-level credibility
   ============================================================ */

.eng-results-section {
  background: var(--clr-obsidian);
  padding: var(--space-xl) 0;
}

.eng-results-headline {
  color: var(--clr-white);
  max-width: 520px;
  margin-top: 0.5rem;
}

/* Stats grid — same columns, new card treatment */
.eng-results-section .eng-stats-grid {
  margin-top: 4rem;
}

/* Rebuilt stat card — warm white on dark bg, commands attention */
.eng-stat-card {
  background: #f7f4ef !important;
  border-radius: 16px !important;
  padding: 2.5rem 2rem !important;
  box-shadow: none !important;
  border: 1px solid rgba(26,35,41,0.08) !important;
  text-align: left !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Small-caps "RESULT" eyebrow at top of each card */
.eng-stat-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #3d5263;
  display: block;
  margin-bottom: 1rem;
}

/* Thin warm brass rule between eyebrow and number */
.eng-stat-rule {
  width: 32px;
  height: 1px;
  background: rgba(26,35,41,0.20);
  margin-bottom: 1.25rem;
}

/* Main stat word — large serif, punches hard */
.eng-stat-number {
  font-family: var(--font-serif) !important;
  font-size: clamp(2.75rem, 5vw, 4rem) !important;
  font-weight: 300 !important;
  color: var(--clr-obsidian) !important;
  line-height: 1 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 1rem !important;
}

/* Descriptor below the number */
.eng-stat-label {
  font-size: 0.875rem !important;
  color: #4a5a67 !important;
  line-height: 1.55 !important;
  font-weight: 400 !important;
  margin-top: auto;
}

/* Mobile */
@media (max-width: 640px) {
  .eng-domain-role {
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
  }

  .eng-stat-number {
    font-size: 2.5rem !important;
  }
}

/* ============================================================
   PRODUCT CARD — EYEBROW LABEL SYSTEM
   ============================================================ */

/* Thin rule above card eyebrow — matches pillar-rule treatment */
.product-card-rule {
  width: 40px;
  height: 1px;
  background: var(--clr-obsidian);
  opacity: 0.22;
  margin-bottom: 0.875rem;
}

/* Small-caps category label above product name */
.product-card-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-obsidian);
  margin-bottom: 0.5rem;
  line-height: 1;
}
