/* ============================================================
   ÉIRE MOTOR COMPANY
   Born of Ireland. Built for the World.
   ------------------------------------------------------------
   Design system — quiet luxury. No hype. No startup.
   ============================================================ */

:root {
  /* Palette */
  --midnight: #050505;
  --emerald: #0E2A22;
  --emerald-deep: #0A1F19;
  --bronze: #B08A58;
  --bronze-soft: #C8A878;
  --ivory: #EAE6DE;
  --ivory-dim: rgba(234, 230, 222, 0.62);
  --ivory-faint: rgba(234, 230, 222, 0.38);
  --hairline: rgba(176, 138, 88, 0.28);

  /* Type */
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --engrave: 'Cinzel', 'Cormorant Garamond', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Rhythm */
  --section-pad: clamp(6rem, 14vh, 12rem);
  --gutter: clamp(1.5rem, 6vw, 8rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  background: var(--midnight);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--bronze); color: var(--midnight); }

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

/* ── Reusable atoms ─────────────────────────────────────── */

.label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--bronze);
}

.divider {
  width: 64px;
  height: 1px;
  background: var(--bronze);
  opacity: 0.7;
  margin: 2.25rem 0;
}
.divider.center { margin-left: auto; margin-right: auto; }

.serif-display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.005em;
}

.eyebrow { margin-bottom: 1.75rem; }

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.4s var(--ease), transform 1.4s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }

/* ── Header ─────────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem var(--gutter);
  transition: background 0.6s var(--ease), padding 0.6s var(--ease), border-color 0.6s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
  border-bottom: 1px solid var(--hairline);
}
.site-header .mark {
  font-family: var(--engrave);
  font-size: 1.02rem;
  letter-spacing: 0.34em;
  font-weight: 500;
  color: var(--ivory);
  text-transform: uppercase;
  padding-left: 0.34em;
}
.site-header nav {
  display: flex;
  gap: 2.6rem;
}
.site-header nav a {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  transition: color 0.4s var(--ease);
}
.site-header nav a:hover { color: var(--bronze-soft); }
@media (max-width: 820px) { .site-header nav { display: none; } }

/* ── Hero ───────────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
/* Cinematic placeholder backdrop — swap .hero-media's background-image with the real hero render */
.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 38%, rgba(14, 42, 34, 0.55) 0%, rgba(5, 5, 5, 0) 60%),
    radial-gradient(80% 60% at 50% 120%, rgba(176, 138, 88, 0.16) 0%, rgba(5, 5, 5, 0) 70%),
    linear-gradient(180deg, #060807 0%, #050505 55%, #040404 100%);
  z-index: 0;
}
.hero-media::after {
  /* subtle ground reflection sheen */
  content: '';
  position: absolute;
  left: 50%; bottom: 8%;
  width: 78vw; height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(176,138,88,0.5), transparent);
  opacity: 0.5;
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(130% 100% at 50% 50%, transparent 52%, rgba(5,5,5,0.85) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
}
.hero-wordmark {
  font-family: var(--engrave);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  line-height: 1.06;
  font-size: clamp(2.4rem, 7vw, 6.2rem);
  color: var(--ivory);
  padding-left: 0.3em;
}
.hero-wordmark .accent { color: var(--ivory); }
.hero-sub {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.6vw, 2.1rem);
  line-height: 1.4;
  color: var(--ivory-dim);
  margin-top: 1.8rem;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 3rem;
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  transition: gap 0.5s var(--ease), color 0.5s var(--ease);
}
.hero-cta:hover { gap: 1.5rem; color: var(--ivory); }
.hero-cta .line { width: 40px; height: 1px; background: currentColor; display: inline-block; }

.scroll-hint {
  position: absolute;
  bottom: 2.4rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  animation: floaty 3.4s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ── Section shell ──────────────────────────────────────── */

section { position: relative; }

.band {
  padding: var(--section-pad) var(--gutter);
}
.band.emerald { background: var(--emerald-deep); }
.band.tight { padding-top: clamp(4rem, 8vh, 7rem); padding-bottom: clamp(4rem, 8vh, 7rem); }

.measure { max-width: 760px; }
.measure.center { margin: 0 auto; text-align: center; }

.h-xl { font-size: clamp(2.1rem, 5vw, 4.2rem); }
.h-lg { font-size: clamp(1.8rem, 4vw, 3.2rem); }
.h-md { font-size: clamp(1.5rem, 3vw, 2.4rem); }

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--ivory-dim);
  font-weight: 300;
  line-height: 1.85;
}
.lede + .lede { margin-top: 1.4rem; }
.lede .pull { color: var(--ivory); }

/* ── Full-width render plates ───────────────────────────── */

.plate {
  position: relative;
  width: 100%;
  height: clamp(420px, 78vh, 880px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #060807;
  background-size: cover;
  background-position: center;
}
/* Placeholder ambiance until renders land */
.plate.placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 70% at 50% 55%, rgba(14,42,34,0.6) 0%, rgba(5,5,5,0) 62%),
    radial-gradient(60% 40% at 50% 110%, rgba(176,138,88,0.18) 0%, rgba(5,5,5,0) 70%),
    linear-gradient(180deg, #070908 0%, #050505 100%);
}
.plate .plate-mark {
  position: relative;
  z-index: 2;
  font-family: var(--engrave);
  font-size: clamp(1.4rem, 4vw, 2.8rem);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(234, 230, 222, 0.10);
  padding-left: 0.36em;
  user-select: none;
}
.plate-caption {
  position: absolute;
  z-index: 3;
  bottom: clamp(1.8rem, 5vh, 3.5rem);
  left: var(--gutter);
  max-width: 520px;
}
.plate-caption .h-lg { color: var(--ivory); }
.plate-vignette {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(5,5,5,0.4) 0%, transparent 30%, transparent 60%, rgba(5,5,5,0.75) 100%);
  pointer-events: none;
}

/* ── Vision split ───────────────────────────────────────── */

.vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Philosophy cards ───────────────────────────────────── */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  margin-top: clamp(3rem, 6vh, 5rem);
}
.card {
  background: var(--midnight);
  padding: clamp(2.2rem, 4vw, 3.4rem) clamp(1.8rem, 3vw, 2.6rem);
  transition: background 0.6s var(--ease);
}
.card:hover { background: var(--emerald-deep); }
.card .num {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--bronze);
  letter-spacing: 0.1em;
}
.card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  margin: 1.1rem 0 0.9rem;
  color: var(--ivory);
}
.card p {
  font-size: 0.94rem;
  color: var(--ivory-dim);
  line-height: 1.75;
}

/* ── Centered statement blocks ──────────────────────────── */

.statement {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

/* ── Journey / email capture ────────────────────────────── */

.journey {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.signup {
  margin-top: 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.signup .row { display: flex; gap: 1rem; }
@media (max-width: 560px) { .signup .row { flex-direction: column; } }
.signup input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 1rem 1.1rem;
  transition: border-color 0.4s var(--ease);
}
.signup input::placeholder { color: var(--ivory-faint); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.74rem; }
.signup input:focus { outline: none; border-color: var(--bronze); }
.signup button {
  background: var(--bronze);
  color: var(--midnight);
  border: 1px solid var(--bronze);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 1.05rem 2.4rem;
  cursor: pointer;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
}
.signup button:hover { background: transparent; color: var(--bronze-soft); }
.signup .note {
  font-size: 0.72rem;
  color: var(--ivory-faint);
  letter-spacing: 0.06em;
  margin-top: 0.4rem;
}
.signup .feedback {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--bronze-soft);
  min-height: 1.4em;
}

/* ── Footer ─────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--hairline);
  padding: clamp(3.5rem, 7vh, 5rem) var(--gutter) clamp(2.5rem, 4vh, 3.5rem);
  text-align: center;
}
.site-footer .mark {
  font-family: var(--engrave);
  font-size: 1.2rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ivory);
  padding-left: 0.34em;
}
.site-footer .tagline {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ivory-dim);
  margin-top: 1rem;
}
.footer-links {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2.4rem 0;
}
.footer-links a {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  transition: color 0.4s var(--ease);
}
.footer-links a:hover { color: var(--bronze-soft); }
.footer-fine {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: var(--ivory-faint);
  text-transform: uppercase;
}

/* ── Motion preferences ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ════════════════════════════════════════════════════════
   v2 — matched to hero reference (left-aligned, triquetra)
   ════════════════════════════════════════════════════════ */

/* ── Brand lockup (triquetra + wordmark) ────────────────── */
.brand { display: inline-flex; align-items: center; gap: 0.85rem; }
.brand-mark { width: 30px; height: 30px; color: var(--bronze); flex: none; }
.brand-mark.lg { width: 44px; height: 44px; }
.brand-word {
  font-family: var(--engrave);
  font-size: 1.18rem;
  letter-spacing: 0.26em;
  line-height: 1;
  color: var(--ivory);
  padding-left: 0.26em;
  display: flex;
  flex-direction: column;
  gap: 0.28em;
}
.brand-word small {
  font-family: var(--sans);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  padding-left: 0.1em;
}
.brand-word.lg { font-size: 1.5rem; }
.brand-word.lg small { font-size: 0.58rem; }

/* ── Header: three-zone (brand · nav · button) ──────────── */
.site-header { justify-content: space-between; }
.primary-nav { display: flex; gap: 2.4rem; }
.primary-nav a {
  font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ivory-dim); transition: color 0.4s var(--ease);
}
.primary-nav a:hover { color: var(--bronze-soft); }
.stay-btn {
  font-size: 0.64rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--bronze-soft);
  border: 1px solid var(--hairline);
  padding: 0.72rem 1.4rem;
  transition: all 0.45s var(--ease);
}
.stay-btn:hover { background: var(--bronze); color: var(--midnight); border-color: var(--bronze); }
@media (max-width: 960px) { .primary-nav { display: none; } }
@media (max-width: 520px) { .stay-btn { display: none; } }

/* ── Hero: left-aligned over full-bleed render ──────────── */
.hero { align-items: flex-start; justify-content: center; text-align: left; }
.hero-media { background-size: cover; background-position: center 42%; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.86) 0%, rgba(5,5,5,0.52) 38%, rgba(5,5,5,0.06) 70%, rgba(5,5,5,0.3) 100%),
    linear-gradient(180deg, rgba(5,5,5,0.55) 0%, transparent 22%, transparent 62%, rgba(5,5,5,0.7) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hero-headline {
  font-size: clamp(2.6rem, 6.4vw, 6rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0.004em;
  color: var(--ivory);
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.hero-sub {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(0.92rem, 1.5vw, 1.1rem);
  letter-spacing: 0.04em;
  line-height: 1.85;
  color: var(--ivory-dim);
  margin-top: 1.6rem;
}

/* ── Outline button with triquetra ──────────────────────── */
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.7rem;
  margin-top: 2.6rem;
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--bronze-soft);
  border: 1px solid var(--bronze);
  padding: 1rem 2rem;
  transition: all 0.5s var(--ease);
}
.btn-outline:hover { background: var(--bronze); color: var(--midnight); }
.btn-outline:hover .btn-triq { color: var(--midnight); }
.btn-triq { width: 18px; height: 18px; color: var(--bronze-soft); transition: color 0.5s var(--ease); }

/* ── Plate caption left variant ─────────────────────────── */
.plate-caption.left { left: var(--gutter); bottom: clamp(2rem, 6vh, 4rem); }
.plate-caption .label { margin-bottom: 0.7rem; }

/* ── Exterior gallery (stacked full-bleed frames) ───────── */
.gallery-intro { background: var(--midnight); }
.frame {
  position: relative;
  width: 100%;
  height: clamp(440px, 86vh, 920px);
  background-size: cover;
  background-position: center;
  display: flex; align-items: flex-end;
}
.frame-tag {
  position: relative; z-index: 2;
  margin: 0 0 clamp(1.6rem, 4vh, 3rem) var(--gutter);
  font-size: 0.66rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--ivory-dim);
}

/* Hero render focal tuning on small screens */
@media (max-width: 720px) {
  .hero-media { background-position: 64% center; }
  .hero-scrim { background:
    linear-gradient(180deg, rgba(5,5,5,0.5) 0%, rgba(5,5,5,0.2) 30%, rgba(5,5,5,0.55) 75%, rgba(5,5,5,0.8) 100%); }
}

/* ── Emblem (real trinity-knot PNG, replaces SVG triquetra) ── */
img.brand-mark { width: 36px; height: auto; display: block; }
img.brand-mark.lg { width: 54px; }
img.btn-triq { width: 20px; height: auto; display: block; transition: filter 0.5s var(--ease); }
/* On the bronze-fill hover, darken the bronze emblem so it reads on the button */
.btn-outline:hover img.btn-triq { filter: brightness(0) saturate(0); }
/* subtle lift on header brand hover */
.brand:hover img.brand-mark { filter: brightness(1.08); }

/* ── Wordmark in bronze (match emblem + accents) ── */
.brand-word { color: var(--bronze); }
.brand-word small { color: var(--bronze-soft); opacity: 0.85; }
.site-footer .brand-word { color: var(--bronze); }

/* ── Wordmark legibility over the hero image ── */
.brand-word {
  font-weight: 600;
  font-size: 1.34rem;
  letter-spacing: 0.28em;
  text-shadow: 0 1px 14px rgba(0,0,0,0.65), 0 0 2px rgba(0,0,0,0.5);
}
.brand-word small {
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}
.brand-word.lg { font-size: 1.6rem; }

/* ════════════════════════════════════════════════════════
   v3 — substance pass: manifesto, detail sections, timeline,
   stronger typographic hierarchy
   ════════════════════════════════════════════════════════ */

.label.center { text-align: center; }

/* ── Manifesto ─────────────────────────────────────────── */
.manifesto { background: var(--midnight); text-align: center; }
.manifesto-inner { max-width: 880px; margin: 0 auto; }
.manifesto-lines { margin-top: 2.4rem; }
.m-line {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: 1.9;
  color: var(--ivory-dim);
  letter-spacing: 0.01em;
}
.m-line em { font-style: italic; font-weight: 500; color: var(--ivory); }
.m-line.accent { color: var(--ivory); }
.m-line.accent em { color: var(--bronze-soft); }
.m-payoff {
  font-weight: 500;
  font-size: clamp(2rem, 5.2vw, 4rem);
  line-height: 1.12;
  color: var(--bronze-soft);
  max-width: 16ch;
  margin: 0 auto;
}

/* ── Plate caption gets a supporting line ──────────────── */
.plate-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  color: var(--ivory-dim);
  margin-top: 0.8rem;
}

/* ── Full-bleed frame caption (Emerald Form / Interior) ── */
.frame { align-items: center; justify-content: flex-start; }
.frame.short { height: clamp(320px, 56vh, 600px); }
.frame-caption {
  position: relative; z-index: 2;
  max-width: 620px;
  padding: 0 var(--gutter);
  margin-left: clamp(0px, 4vw, 5rem);
}
.frame-caption .label { margin-bottom: 0.9rem; }
.frame-caption .h-lg { color: var(--ivory); text-shadow: 0 2px 30px rgba(0,0,0,0.6); }

/* ── Split section (Emerald Grille) ────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: clamp(440px, 72vh, 760px);
}
.split-media { background-size: cover; background-position: center; }
.split-text {
  background: var(--emerald-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 6rem) clamp(1.8rem, 5vw, 5rem);
}
.split-text .divider { margin: 1.6rem 0; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 360px; }
}

/* ── Three-card variant ────────────────────────────────── */
.cards.three { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

/* ── Timeline ──────────────────────────────────────────── */
.timeline {
  list-style: none;
  max-width: 720px;
  margin: clamp(3rem, 6vh, 5rem) auto 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6rem; bottom: 0.6rem;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--bronze), transparent);
  opacity: 0.5;
}
.timeline li {
  position: relative;
  padding: 0 0 clamp(2.4rem, 5vh, 3.6rem) clamp(2.2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: '';
  position: absolute;
  left: -4px; top: 0.5rem;
  width: 9px; height: 9px;
  background: var(--bronze);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--emerald-deep);
}
.t-year {
  font-family: var(--engrave);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--bronze-soft);
  line-height: 1;
}
.t-label {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--ivory-dim);
  font-style: italic;
}

/* ── Stay Connected (redesigned) ───────────────────────── */
.journey-body {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--ivory);
  margin-top: 1.6rem;
}
.journey-creed {
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: var(--ivory-faint);
  line-height: 1.9;
  margin-top: 1rem;
  text-transform: uppercase;
}
.signup button { letter-spacing: 0.24em; }

/* ── Sharper type hierarchy across headings ────────────── */
.h-xl { font-weight: 500; letter-spacing: -0.005em; }
.h-lg { font-weight: 500; }
.lede { max-width: 60ch; margin-left: auto; margin-right: auto; }
.split-text .lede { margin-left: 0; }
