/* ============================================================
   Strength As Medicine — spec preview
   Design system + layout
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --forest:      #2d3a32;   /* primary */
  --forest-deep: #20292322; /* faint tint helper not used directly */
  --pine:        #3c4d42;
  --moss:        #6f7d6a;
  --clay:        #b06a4f;   /* accent */
  --clay-deep:   #95573e;
  --cream:       #f4efe6;   /* secondary / page */
  --cream-soft:  #efe7d9;
  --paper:       #faf7f1;
  --ink:         #232a25;
  --ink-soft:    #4b554d;
  --line:        rgba(45, 58, 50, 0.14);
  --white:       #ffffff;

  /* Type */
  --serif: "Iowan Old Style", "Palatino Linotype", "Palatino", "Georgia", "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Fluid type scale */
  --fs-overline: clamp(0.72rem, 0.68rem + 0.2vw, 0.8rem);
  --fs-small:    clamp(0.86rem, 0.83rem + 0.2vw, 0.95rem);
  --fs-body:     clamp(1rem, 0.96rem + 0.25vw, 1.12rem);
  --fs-lead:     clamp(1.18rem, 1.05rem + 0.6vw, 1.5rem);
  --fs-h3:       clamp(1.4rem, 1.2rem + 1vw, 1.95rem);
  --fs-h2:       clamp(2.1rem, 1.6rem + 2.4vw, 3.4rem);
  --fs-h1:       clamp(2.7rem, 2.1rem + 3.4vw, 4.9rem);
  --fs-display:  clamp(3.4rem, 2rem + 6vw, 7rem);

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

  --maxw: 1280px;
  --gutter: clamp(1.25rem, 0.5rem + 3vw, 4rem);

  --radius: 4px;
  --radius-lg: 14px;
  --shadow: 0 24px 60px -28px rgba(28, 38, 31, 0.45);
  --shadow-soft: 0 14px 40px -22px rgba(28, 38, 31, 0.4);

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

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.04; letter-spacing: -0.01em; }

::selection { background: var(--clay); color: var(--paper); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.overline {
  font-family: var(--sans);
  font-size: var(--fs-overline);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 600;
  color: var(--clay-deep);
}

.section-head { max-width: 46rem; }
.section-head .overline { display: inline-block; margin-bottom: var(--space-sm); }
.section-head h2 { font-size: var(--fs-h2); margin-bottom: var(--space-sm); }
.section-head p { font-size: var(--fs-lead); color: var(--ink-soft); line-height: 1.5; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--clay);
  --btn-fg: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.95rem 1.7rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -16px rgba(149, 87, 62, 0.7); }
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  border-color: rgba(244, 239, 230, 0.5);
}
.btn--ghost:hover { background: rgba(244, 239, 230, 0.1); box-shadow: none; }

.btn--dark { --btn-bg: var(--forest); --btn-fg: var(--cream); }
.btn--dark:hover { box-shadow: 0 16px 30px -16px rgba(45, 58, 50, 0.7); }

/* Focus states */
a:focus-visible, .btn:focus-visible, button:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding: 0.7rem 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); }

.brand { display: flex; flex-direction: column; line-height: 1; color: var(--cream); transition: color 0.4s var(--ease); }
.scrolled .brand { color: var(--forest); }
.brand .brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}
.brand .brand-sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-weight: 600;
  margin-top: 0.3rem;
  opacity: 0.85;
}

.nav { display: flex; align-items: center; gap: clamp(1.2rem, 2vw, 2.4rem); }
.nav a.nav-link {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--cream);
  position: relative;
  transition: color 0.3s var(--ease);
}
.scrolled .nav a.nav-link { color: var(--forest); }
.nav a.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1.5px;
  background: var(--clay);
  transition: width 0.35s var(--ease);
}
.nav a.nav-link:hover::after { width: 100%; }

.nav .nav-cta {
  font-size: 0.8rem;
  padding: 0.65rem 1.3rem;
}
.nav-link.nav-hide-mobile { display: inline; }

@media (max-width: 860px) {
  .nav { gap: 0.9rem; }
  .nav-link.nav-hide-mobile { display: none; }
}
@media (max-width: 480px) {
  .header-inner { gap: 0.75rem; }
  .brand .brand-name { font-size: 1.12rem; }
  .brand .brand-sub { font-size: 0.54rem; letter-spacing: 0.26em; }
  .nav .nav-cta { padding: 0.6rem 1rem; font-size: 0.74rem; white-space: nowrap; }
}

/* ============================================================
   Hero — split editorial
   ============================================================ */
.hero {
  position: relative;
  color: var(--cream);
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(125% 95% at 90% 8%, rgba(176,106,79,0.18), transparent 58%),
    linear-gradient(158deg, #38483d 0%, var(--forest) 44%, #181f1a 100%);
}
/* film grain for editorial depth */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05; mix-blend-mode: overlay;
}
.hero-glow {
  position: absolute; z-index: 0; pointer-events: none;
  width: 62vw; height: 62vw; max-width: 720px; max-height: 720px;
  right: -14vw; top: -16vw;
  background: radial-gradient(circle, rgba(176,106,79,0.26), transparent 64%);
  filter: blur(8px);
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-inner {
  position: relative; z-index: 1;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: clamp(2.75rem, 6vw, 4rem);
  padding-top: clamp(7rem, 13vh, 9.5rem);
  padding-bottom: clamp(3.5rem, 7vh, 5.5rem);
}
.hero-content { max-width: 40rem; }

.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: var(--fs-overline);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero .eyebrow::before {
  content: ""; width: 38px; height: 1.5px; background: var(--clay); display: inline-block;
}

.hero h1 {
  font-size: var(--fs-h1);
  letter-spacing: -0.018em;
  margin-bottom: 1.6rem;
  max-width: 15ch;
  text-wrap: balance;
}
.hero-lead {
  font-size: var(--fs-lead);
  max-width: 40ch;
  line-height: 1.5;
  color: rgba(244, 239, 230, 0.9);
  margin-bottom: 2.4rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero-meta {
  margin-top: clamp(2.5rem, 4vw, 3.4rem);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.4rem, 3.5vw, 2.8rem);
  padding-top: 1.7rem;
  border-top: 1px solid rgba(244, 239, 230, 0.22);
}
.hero-meta .stat .num { font-family: var(--serif); font-size: clamp(1.7rem, 1.2rem + 1.4vw, 2.4rem); display: block; line-height: 1; }
.hero-meta .stat .lbl { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(244,239,230,0.72); margin-top: 0.5rem; display: block; }

/* Portrait */
.hero-figure { position: relative; width: 100%; max-width: 26rem; }
.hero-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 44px 90px -42px rgba(0,0,0,0.78), 0 0 0 1px rgba(244,239,230,0.08);
}
.hero-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(24,31,26,0.18) 0%, transparent 34%, rgba(24,31,26,0.5) 100%);
}
.hero-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 42%;
  transform: scale(1.08);
  animation: heroZoom 16s var(--ease) forwards;
  filter: saturate(0.97) contrast(1.04);
}
.hero-badge {
  position: absolute; left: -1px; bottom: -1px; z-index: 2;
  background: var(--clay);
  color: var(--paper);
  padding: 0.95rem 1.35rem;
  border-radius: 0 16px 0 16px;
  display: flex; align-items: baseline; gap: 0.6rem;
  box-shadow: 0 18px 36px -20px rgba(0,0,0,0.6);
}
.hero-badge .b-num { font-family: var(--serif); font-size: 2.1rem; line-height: 0.85; }
.hero-badge .b-lbl { font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.15em; line-height: 1.25; font-weight: 600; }

@media (min-width: 980px) {
  .hero-inner {
    grid-template-columns: 1.04fr 0.96fr;
    align-items: center;
    gap: clamp(3rem, 6vw, 6rem);
  }
  .hero-content { max-width: 38rem; }
  .hero-figure { justify-self: end; max-width: 29rem; }
}

/* On-load reveal targets (hidden only when JS can animate them in) */
.js [data-hero] { opacity: 0; transform: translateY(26px); }
.hero-ready [data-hero] {
  animation: heroRise 0.95s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes heroRise { to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   General section reveal
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ============================================================
   Intro / philosophy strip
   ============================================================ */
.intro { background: var(--paper); padding-block: clamp(4rem, 3rem + 5vw, 7.5rem); position: relative; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
.intro-lead-col .overline { display: inline-block; margin-bottom: 1.4rem; }
.intro-statement {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 1.1rem + 2.6vw, 3.15rem);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--forest);
  max-width: 18ch;
  text-wrap: balance;
}
.intro-body { color: var(--ink-soft); max-width: 42ch; }
.intro-body p:first-child { font-size: var(--fs-lead); line-height: 1.5; color: var(--ink); }
.intro-body p + p { margin-top: 1.2rem; }

@media (min-width: 900px) {
  .intro-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: clamp(3rem, 6vw, 7rem); }
  .intro-lead-col { border-left: 2px solid var(--clay); padding-left: clamp(1.5rem, 2vw, 2.4rem); }
}

/* ============================================================
   About — overlapping editorial
   ============================================================ */
.about { padding-block: var(--space-xl); position: relative; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.about-media { position: relative; }
.about-media .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.about-media .frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 16%;
  transform: scale(1.2); transform-origin: 50% 10%;
  transition: transform 1.1s var(--ease);
  /* clinical forest duotone — same source as the hero, a deliberately different mood */
  filter: grayscale(100%) brightness(1.08) contrast(1.05);
}
.about-media .frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(155deg, rgba(111,125,106,0.42) 0%, var(--forest) 100%);
  mix-blend-mode: multiply;
}
.about-media:hover .frame img { transform: scale(1.26); }
.about-media .tag {
  position: absolute;
  bottom: -1px; left: -1px;
  background: var(--forest);
  color: var(--cream);
  padding: 1.1rem 1.5rem;
  border-radius: 0 var(--radius-lg) 0 var(--radius-lg);
  max-width: 70%;
}
.about-media .tag .t-num { font-family: var(--serif); font-size: 1.7rem; line-height: 1; }
.about-media .tag .t-lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(244,239,230,0.8); margin-top: 0.35rem; }

.about-copy h2 { font-size: var(--fs-h2); margin: var(--space-sm) 0 var(--space-md); max-width: 20ch; }
.about-copy p { color: var(--ink-soft); }
.about-copy p + p { margin-top: 1.1rem; }
.about-sign {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.3rem;
}
.about-sign .sign-name { font-family: var(--serif); font-size: 1.6rem; color: var(--forest); line-height: 1; }
.about-sign .role { font-family: var(--sans); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--ink-soft); }

@media (min-width: 980px) {
  .about-grid { grid-template-columns: 0.85fr 1.15fr; gap: clamp(3rem, 6vw, 6.5rem); }
  .about-media { padding-right: 2rem; }
}

/* ============================================================
   Services — photo-led, asymmetric rows
   ============================================================ */
.services { background: var(--forest); color: var(--cream); padding-block: var(--space-xl); }
.services .section-head h2 { color: var(--cream); }
.services .section-head p { color: rgba(244,239,230,0.78); }
.services .section-head .overline { color: var(--clay); }

.svc-list {
  margin-top: var(--space-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.4rem, 2vw, 2rem);
}

.svc {
  position: relative;
  background: rgba(244, 239, 230, 0.045);
  border: 1px solid rgba(244, 239, 230, 0.16);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.9rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), background 0.45s var(--ease);
}
.svc::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 3px;
  background: var(--clay);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.5s var(--ease);
}
.svc:hover { transform: translateY(-5px); border-color: rgba(244,239,230,0.32); background: rgba(244,239,230,0.07); }
.svc:hover::before { transform: scaleY(1); }

.svc-top {
  display: flex; align-items: baseline; gap: 1rem;
  padding-bottom: 1.3rem; margin-bottom: 1.4rem;
  border-bottom: 1px solid rgba(244,239,230,0.14);
}
.svc-top .idx {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 1.6rem + 2vw, 3.4rem);
  line-height: 0.8;
  color: var(--clay);
}
.svc-top .dur { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(244,239,230,0.7); font-weight: 600; }

.svc-body h3 { font-size: var(--fs-h3); color: var(--cream); margin-bottom: 0.9rem; max-width: 20ch; }
.svc-body p { color: rgba(244,239,230,0.82); max-width: 52ch; }
.svc-body .feels { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.svc-body .feels span {
  font-size: 0.76rem; letter-spacing: 0.04em;
  border: 1px solid rgba(244,239,230,0.25);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  color: rgba(244,239,230,0.85);
}

@media (min-width: 880px) {
  .svc-list { grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 2vw, 2.2rem); }
}

/* Techniques band */
.techniques { margin-top: clamp(3rem, 5vw, 5rem); border-top: 1px solid rgba(244,239,230,0.2); padding-top: var(--space-lg); }
.techniques .lead-line { font-family: var(--serif); font-size: var(--fs-h3); color: var(--cream); max-width: 24ch; margin-bottom: var(--space-md); }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(244,239,230,0.15);
}
.tech-grid li {
  list-style: none;
  padding: 1.1rem 0.4rem;
  font-size: var(--fs-small);
  letter-spacing: 0.02em;
  color: rgba(244,239,230,0.85);
  border-bottom: 1px solid rgba(244,239,230,0.15);
  display: flex; align-items: center; gap: 0.7rem;
}
.tech-grid li::before { content: ""; width: 6px; height: 6px; background: var(--clay); border-radius: 50%; flex: none; }
@media (min-width: 760px) { .tech-grid { grid-template-columns: repeat(4, 1fr); column-gap: 2rem; } }

/* ============================================================
   Testimonials (real, from site)
   ============================================================ */
.proof { padding-block: var(--space-xl); }
.proof .section-head { margin-bottom: var(--space-lg); }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease);
}
.quote:hover { transform: translateY(-5px); }
.quote .mark { font-family: var(--serif); font-size: 2.6rem; line-height: 0.6; color: var(--clay); margin-bottom: 0.8rem; }
.quote p {
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1rem + 0.4vw, 1.3rem);
  line-height: 1.45;
  color: var(--forest);
  flex: 1;
}
.quote .who { margin-top: 1.4rem; font-family: var(--sans); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; color: var(--clay-deep); }
@media (min-width: 820px) { .proof-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   Contact
   ============================================================ */
.contact { background: var(--forest); color: var(--cream); padding-block: var(--space-xl); position: relative; overflow: hidden; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.contact .overline { color: var(--clay); }
.contact h2 { font-size: var(--fs-h2); color: var(--cream); margin: var(--space-sm) 0 var(--space-md); max-width: 14ch; }
.contact p.lead { font-size: var(--fs-lead); color: rgba(244,239,230,0.82); max-width: 40ch; line-height: 1.5; }
.contact-actions { margin-top: var(--space-lg); display: flex; flex-wrap: wrap; gap: 1rem; }

.contact-card {
  background: rgba(244,239,230,0.05);
  border: 1px solid rgba(244,239,230,0.18);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem);
}
.contact-card .row { padding: 1.1rem 0; border-bottom: 1px solid rgba(244,239,230,0.14); }
.contact-card .row:first-child { padding-top: 0; }
.contact-card .row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-card .k { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--clay); margin-bottom: 0.4rem; }
.contact-card .v { font-family: var(--serif); font-size: clamp(1.15rem, 1rem + 0.7vw, 1.5rem); color: var(--cream); }
.contact-card a.v { transition: color 0.3s var(--ease); }
.contact-card a.v:hover { color: var(--clay); }

@media (min-width: 920px) {
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; gap: clamp(3rem, 6vw, 6rem); }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: #1b231d; color: rgba(244,239,230,0.7); padding-block: var(--space-lg); }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-md); align-items: flex-start; }
.footer-brand .brand-name { font-family: var(--serif); font-size: 1.5rem; color: var(--cream); }
.footer-brand .brand-sub { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.3em; margin-top: 0.4rem; }
.footer-contact { font-size: var(--fs-small); line-height: 1.9; }
.footer-contact a:hover { color: var(--clay); }
.footer-bottom { margin-top: var(--space-lg); padding-top: var(--space-md); border-top: 1px solid rgba(244,239,230,0.12); font-size: 0.8rem; display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; justify-content: space-between; }
.footer-disclaimer { max-width: 60ch; font-size: 0.76rem; line-height: 1.6; opacity: 0.7; margin-top: var(--space-sm); }

/* Spec footer (mandatory) */
.spec-footer {
  background: #141b17;
  color: rgba(244,239,230,0.62);
  font-size: 0.8rem;
  text-align: center;
  padding: 1.4rem var(--gutter);
  line-height: 1.6;
}
.spec-footer a { color: var(--clay); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .hero-frame img { animation: none; transform: none; }
  .js [data-hero], [data-hero] { opacity: 1; transform: none; }
  .js .reveal, .reveal { opacity: 1; transform: none; }
}
