/* ============================================================
   Where Time Softens — unhurried anti-aging clinic
   Concept: the light of a single slow day. As you scroll, the page
            warms from palest dawn to golden dusk — time, passing gently.
   Palette: champagne → warm grey → amber, text in warm grey-brown.
   Type:    Cormorant Garamond (display) · Mulish (body/utility)
   ============================================================ */

:root {
  /* The day, top to bottom — a slow warming.
     Deep end kept light enough that muted text still meets WCAG AA. */
  --dawn:      #F7F3EC;   /* palest morning */
  --morning:   #F3ECDD;   /* mid-morning */
  --noon:      #EEE5D3;   /* warm noon */
  --afternoon: #E9DEC9;   /* early afternoon */
  --dusk:      #E5D8C1;   /* golden hour */
  --evening:   #E1D4BB;   /* low sun */
  --night:     #DED0B5;   /* settled dusk (footer) */

  --champagne: #E7DCC8;
  --grey:      #635949;   /* warm grey for labels/numerals — AA on warm bg */
  --ink:       #4A423A;   /* warm grey-brown text */
  --ink-soft:  #5A5045;   /* muted body — AA on warm tones */
  --light:     #F7F3EC;   /* text over image */

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Mulish", system-ui, -apple-system, sans-serif;

  --gutter: clamp(1.5rem, 6vw, 9rem);
  --section-gap: clamp(6rem, 14vw, 12rem);

  --ease: cubic-bezier(0.22, 0.61, 0.24, 1);
  --measure: 66rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--dawn);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.075rem);
  line-height: 1.75;
  letter-spacing: 0.006em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* Interactive: fast taps + a clear, adaptive keyboard focus ring.
   currentColor tracks the text colour, so the ring stays visible on
   both the dark hero and the light sections. */
a, button { touch-action: manipulation; }
a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 1px;
}
.button-cta:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.005em;
}

/* The day — each section a step further into the light */
.day--dawn      { background: var(--dawn); }
.day--morning   { background: var(--morning); }
.day--noon      { background: var(--noon); }
.day--afternoon { background: var(--afternoon); }
.day--dusk      { background: var(--dusk); }
.day--evening   { background: var(--evening); }
.day--night     { background: var(--night); }


/* ---------- Ambient film grain ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.045;                 /* no blend-mode: plain overlay stays cheap */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%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");
  background-size: 140px 140px;
}

/* ---------- Header ---------- */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.25rem, 3vw, 2.25rem) var(--gutter);
}
.brand {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--light);
  text-shadow: 0 1px 16px rgba(40, 34, 30, 0.5);
}
.header-link {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--light);
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(247, 243, 236, 0.45);
  text-shadow: 0 1px 14px rgba(40, 34, 30, 0.45);
  transition: border-color 0.6s var(--ease), opacity 0.6s var(--ease);
}
.header-link:hover { border-color: var(--light); opacity: 0.85; }

/* ============================================================
   1. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: var(--gutter);
  padding-bottom: clamp(3.5rem, 8vh, 7rem);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  position: absolute; inset: 0;
  background: #cfc8bd url("img/hero.jpg?v=4") center 30% / cover no-repeat;
  transform: scale(1.06);
  will-change: transform;
  animation: heroDrift 30s ease-in-out infinite alternate;
}
.hero-veil {
  position: absolute; inset: -10% -20%;
  background:
    repeating-linear-gradient(
      92deg,
      rgba(247, 243, 236, 0.00) 0px,
      rgba(247, 243, 236, 0.06) 14px,
      rgba(120, 110, 98, 0.06) 30px,
      rgba(247, 243, 236, 0.00) 46px
    );
  opacity: 0.4;
  will-change: transform, opacity;
  animation: veilDrift 26s ease-in-out infinite alternate;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(52, 45, 39, 0.64) 0%, rgba(52, 45, 39, 0.14) 42%, rgba(52, 45, 39, 0.0) 70%),
    linear-gradient(105deg, rgba(52, 45, 39, 0.32) 0%, rgba(52, 45, 39, 0.0) 55%);
}
/* Signature motion: a warm sunbeam sweeps slowly across the room —
   the sun moving over the course of a morning. Clearly visible, GPU-only. */
.hero-sunbeam {
  position: absolute;
  top: -60%;
  left: 0;
  width: 42%;
  height: 220%;
  background: linear-gradient(90deg,
    rgba(255, 244, 214, 0) 0%,
    rgba(255, 240, 205, 0.24) 42%,
    rgba(255, 238, 198, 0.46) 50%,
    rgba(255, 240, 205, 0.24) 58%,
    rgba(255, 244, 214, 0) 100%);
  transform: rotate(9deg) translate3d(-160%, 0, 0);
  will-change: transform, opacity;
  animation: sunbeam 11s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  pointer-events: none;
}
@keyframes sunbeam {
  0%   { transform: rotate(9deg) translate3d(-160%, 0, 0); opacity: 0; }
  12%  { opacity: 1; }
  50%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { transform: rotate(9deg) translate3d(420%, 0, 0); opacity: 0; }
}

/* A single quiet minute — the time device, stated plainly */
.hero-stamp {
  position: absolute;
  top: clamp(4.5rem, 12vh, 7rem);
  left: 0; right: 0;
  z-index: 2;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.82);
  text-shadow: 0 1px 18px rgba(40, 34, 30, 0.55);
}

.hero-inner { position: relative; z-index: 2; max-width: 40rem; color: var(--light); }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin: 0 0 clamp(1.1rem, 2vw, 1.6rem);
  color: rgba(247, 243, 236, 0.82);
}
.hero-title {
  font-size: clamp(2.8rem, 8.6vw, 6.2rem);
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: -0.006em;
  margin: 0;
  text-shadow: 0 1px 40px rgba(40, 34, 30, 0.28);
}
/* The payoff line — larger, the size contrast the eye lands on */
.hero-title em {
  display: block;
  font-style: italic;
  font-weight: 300;
  font-size: 1.12em;
  line-height: 1;
  margin-top: 0.08em;
}

/* Signature: the brand's own word, made of soft light through linen.
   A warm bloom — luminous, not blurred — so it stays fully legible. */
.soft-word {
  font-style: italic;
  color: #FCF8EE;
  text-shadow:
    0 0 24px rgba(250, 236, 205, 0.55),
    0 0 52px rgba(240, 214, 168, 0.38),
    0 2px 40px rgba(40, 34, 30, 0.28);
}
.hero-sub {
  max-width: 32rem;
  margin: clamp(1.5rem, 3vw, 2.2rem) 0 clamp(2rem, 4vw, 2.8rem);
  font-size: clamp(1.02rem, 0.6vw + 0.9rem, 1.2rem);
  line-height: 1.85;
  color: rgba(247, 243, 236, 0.9);
}
.text-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--light);
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(247, 243, 236, 0.5);
  transition: letter-spacing 0.6s var(--ease), border-color 0.6s var(--ease);
}
.text-cta:hover { letter-spacing: 0.3em; border-color: var(--light); }

.hero-scroll {
  position: absolute;
  bottom: clamp(1.5rem, 3vh, 2.4rem);
  right: var(--gutter);
  z-index: 2;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.7);
  writing-mode: vertical-rl;
}
.hero-scroll::after {
  content: "";
  display: block;
  width: 1px; height: 42px;
  margin: 12px auto 0;
  background: linear-gradient(rgba(247,243,236,0.7), rgba(247,243,236,0));
  animation: scrollPulse 2.8s var(--ease) infinite;
}

@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.12) translate3d(-1.4%, -1.6%, 0); }
}
@keyframes veilDrift {
  from { transform: translate3d(-2%, 0, 0); opacity: 0.42; }
  to   { transform: translate3d(2%, -1.5%, 0); opacity: 0.7; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.6); transform-origin: top; }
  50%      { opacity: 0.9;  transform: scaleY(1);   transform-origin: top; }
}

/* ---------- "Settle": blur-in on load (the softening signature) ---------- */
.settle { opacity: 1; filter: blur(0); transform: none; }
.js .settle {
  opacity: 0;
  filter: blur(16px);
  transform: translateY(14px);
  transition: opacity 1.8s var(--ease), filter 2.1s var(--ease), transform 1.8s var(--ease);
}
.js body.loaded .settle { opacity: 1; filter: blur(0); transform: none; }
.js body.loaded .settle-1 { transition-delay: 0.15s; }
.js body.loaded .settle-2 { transition-delay: 0.45s; }
.js body.loaded .settle-3 { transition-delay: 0.85s; }
.js body.loaded .settle-4 { transition-delay: 1.35s; }

/* ============================================================
   2. MANIFESTO
   ============================================================ */
.manifesto {
  padding: clamp(6rem, 13vw, 11rem) var(--gutter);
  text-align: center;
}
.manifesto-line {
  max-width: 30rem;
  margin: 0 auto;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.7rem, 4.2vw, 3rem);
  line-height: 1.32;
  color: var(--ink);
}

/* ============================================================
   Shared section scaffolding
   ============================================================ */
.section { padding: var(--section-gap) var(--gutter); }
.section-head { max-width: 42rem; margin: 0 auto clamp(3rem, 7vw, 5rem); text-align: center; }
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
  margin: 0 0 1.4rem;
}
.section-title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  font-weight: 300;
  color: var(--ink);
}
.section-intro {
  margin: clamp(1.2rem, 2.5vw, 1.8rem) auto 0;
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.12rem);
  line-height: 1.85;
}

/* ============================================================
   3. TREATMENTS — cards led by the time they take
   ============================================================ */
.rite-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--measure);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.4vw, 1.75rem);
}
.rite {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "time  price"
    "body  body";
  align-items: start;
  gap: 0.4rem 1.5rem;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  background: rgba(255, 253, 249, 0.5);
  border: 1px solid rgba(168, 159, 148, 0.28);
  border-radius: 3px;
  box-shadow: 0 1px 1px rgba(70, 52, 34, 0.03);
  transition: background 0.7s var(--ease), transform 0.7s var(--ease),
              border-color 0.7s var(--ease), box-shadow 0.7s var(--ease);
}
.rite:hover {
  background: rgba(255, 253, 249, 0.9);
  border-color: rgba(168, 159, 148, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -28px rgba(70, 52, 34, 0.4);
}
.rite-time {
  grid-area: time;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 0.9;
  color: var(--ink);
}
.rite-unit {
  font-size: 0.9rem;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-left: 0.35em;
}
.rite-price {
  grid-area: price;
  justify-self: end;
  align-self: center;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  color: var(--ink-soft);
}
.rite-body { grid-area: body; margin-top: 0.9rem; }
.rite-name {
  font-size: clamp(1.35rem, 2.3vw, 1.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 0.4rem;
}
.rite-note { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.65; margin: 0; }

/* ============================================================
   4. EXPERIENCE — a strip of film
   ============================================================ */
.experience-lead { max-width: 42rem; margin: 0 auto clamp(3rem, 7vw, 5rem); text-align: center; }
.filmstrip {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  align-items: end;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  max-width: 78rem;
  margin: 0 auto;
}
.frame { margin: 0; }
.frame img {
  width: 100%;
  height: auto;              /* let aspect-ratio govern, not the HTML height attr */
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.94) brightness(1.01);
  box-shadow: 0 26px 50px -34px rgba(70, 52, 34, 0.5);
}
.frame--a img { aspect-ratio: 3 / 4; }
.frame--b img { aspect-ratio: 4 / 5; }
.frame--c img { aspect-ratio: 3 / 4; }
.frame--a { margin-bottom: clamp(1.5rem, 4vw, 3.5rem); }   /* stagger, like frames on a strip */
.frame--c { margin-bottom: clamp(0.75rem, 2vw, 1.75rem); }
.frame figcaption {
  margin-top: 0.9rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ============================================================
   5. SLOW ROOM — golden hour statement
   ============================================================ */
.slow-room {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--gutter);
  overflow: hidden;
}
.slow-room-bg {
  position: absolute; inset: 0;
  background: #b7a98f url("img/slow-room.jpg?v=4") center / cover no-repeat;
}
.slow-room-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(70, 52, 34, 0.46), rgba(70, 52, 34, 0.34));
}
.slow-room-inner { position: relative; z-index: 2; color: var(--light); }
.slow-line {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 6vw, 4.6rem);
  line-height: 1.14;
  margin: 0;
  text-shadow: 0 2px 44px rgba(30, 24, 20, 0.4);
}
.slow-line--soft {
  font-style: italic;
  color: #FBF6EA;
  text-shadow:
    0 0 26px rgba(250, 234, 200, 0.4),
    0 2px 44px rgba(30, 24, 20, 0.4);
}

/* ============================================================
   One quiet voice
   ============================================================ */
.quiet-quote { text-align: center; }
.quote { max-width: 42rem; margin: 0 auto; }
.quote blockquote {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.55rem, 3.6vw, 2.5rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
}
.quote figcaption {
  margin-top: clamp(1.4rem, 3vw, 2rem);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ============================================================
   4b. THE RITUAL — the steps of an unhurried visit
   ============================================================ */
.steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--measure);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: step;
}
.step { position: relative; padding-top: clamp(1.4rem, 2.5vw, 2rem); border-top: 1px solid rgba(158, 148, 132, 0.4); }
.step-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--grey);
  margin-bottom: 0.9rem;
}
.step-name {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 0.6rem;
}
.step-note { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.65; margin: 0; }

/* ============================================================
   6. BOOKING
   ============================================================ */
.booking { text-align: center; }
.booking-inner { max-width: 40rem; margin: 0 auto; }
.booking-eyebrow {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--grey); margin: 0 0 1.6rem;
}
.booking-line {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.12;
  color: var(--ink);
  margin: 0;
}
.booking-sub { color: var(--ink-soft); margin: 1.2rem 0 clamp(2.2rem, 4vw, 3rem); }
.button-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--light);
  background: var(--ink);
  padding: 1.15rem 2.6rem;
  border-radius: 2px;
  transition: background 0.6s var(--ease), letter-spacing 0.6s var(--ease), transform 0.6s var(--ease);
}
.button-cta:hover { background: #3f3932; letter-spacing: 0.28em; transform: translateY(-2px); }

/* ============================================================
   7. Footer
   ============================================================ */
.site-footer { color: var(--ink); padding: clamp(4.5rem, 9vw, 8rem) var(--gutter) clamp(2rem, 4vw, 3rem); }
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: clamp(3rem, 7vw, 6rem);
  max-width: 78rem;
  margin: 0 auto;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(82, 74, 66, 0.22);
}
.footer-wordmark {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  margin: 0 0 1.2rem;
}
.footer-tagline { color: var(--ink-soft); max-width: 24rem; margin: 0 0 2rem; line-height: 1.8; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.footer-h {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  margin: 0 0 1.2rem;
}
.footer-col p { margin: 0 0 0.5rem; font-size: 0.95rem; color: var(--ink-soft); }
.footer-col a { text-decoration: none; transition: color 0.5s var(--ease); }
.footer-col a:hover { color: var(--ink); }
.footer-base {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  justify-content: space-between;
  align-items: center;
  max-width: 78rem;
  margin: clamp(1.8rem, 3vw, 2.5rem) auto 0;
}
.footer-fine { font-size: 0.78rem; letter-spacing: 0.04em; color: var(--grey); margin: 0; }
.footer-credit { font-style: italic; }
.footer-top-link { text-decoration: none; transition: color 0.5s var(--ease); }
.footer-top-link:hover { color: var(--ink); }

/* ============================================================
   Scroll reveals — long ease + gentle blur (softening, page-wide)
   ============================================================ */
.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(10px);
  transition: opacity 1.4s var(--ease), transform 1.4s var(--ease), filter 1.5s var(--ease);
}
.js .reveal.in-view { opacity: 1; transform: none; filter: blur(0); }

/* Staggered reveals — cards, film frames and steps arrive in gentle sequence.
   (Only delays here; the hidden/visible states come from .reveal / .in-view.) */
.js .rite.reveal.in-view:nth-child(2) { transition-delay: 0.1s; }
.js .rite.reveal.in-view:nth-child(3) { transition-delay: 0.06s; }
.js .rite.reveal.in-view:nth-child(4) { transition-delay: 0.16s; }
.js .rite.reveal.in-view:nth-child(5) { transition-delay: 0.12s; }
.js .rite.reveal.in-view:nth-child(6) { transition-delay: 0.22s; }
.js .frame--b.reveal.in-view { transition-delay: 0.12s; }
.js .frame--c.reveal.in-view { transition-delay: 0.24s; }
.js .step.reveal.in-view:nth-child(2) { transition-delay: 0.1s; }
.js .step.reveal.in-view:nth-child(3) { transition-delay: 0.2s; }
.js .step.reveal.in-view:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 860px) {
  .rite-list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .filmstrip { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .frame--a { grid-column: 1 / -1; margin-bottom: 1rem; }
  .frame--a img { aspect-ratio: 16 / 10; }
  .frame--b, .frame--c { margin-bottom: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
}

@media (max-width: 560px) {
  .hero-scroll { display: none; }

  /* Grow secondary-link tap areas to ~44px without shifting layout */
  .header-link { padding: 0.7rem 0.4rem; margin: -0.7rem -0.4rem; }
  .text-cta { padding: 0.6rem 0; }
  .footer-col a,
  .footer-top-link { display: inline-block; padding: 0.55rem 0; margin: -0.35rem 0; }

  .steps { grid-template-columns: 1fr; gap: 0; }
  .step { border-top: none; padding-top: 0; padding-bottom: 1.6rem; }
  .step + .step { border-top: 1px solid rgba(158, 148, 132, 0.4); padding-top: 1.6rem; }
  .filmstrip { grid-template-columns: 1fr; }
  .frame--a img, .frame--b img, .frame--c img { aspect-ratio: 4 / 3; }
  .footer-base { justify-content: center; text-align: center; }
}

/* ============================================================
   Reduced motion — keep the calm, drop the movement
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-img { animation: none; transform: scale(1.02); }
  .hero-veil { animation: none; }
  .hero-sunbeam { animation: none; opacity: 0; }
  .hero-scroll::after { animation: none; }
  .js .settle,
  .js .reveal { opacity: 1 !important; filter: none !important; transform: none !important; transition: none !important; }
}
