/* ─────────────────────────────────────────────────────────────
   Piandré · stylesheet — extreme minimalism
   White canvas, a single Piandré-red accent (used once per view),
   Cormorant Garamond display + Mulish text, hairline structure,
   generous whitespace. Token NAMES are preserved so css/book.css
   inherits this treatment with no changes.
   ───────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; accent-color: #C02D2F; color-scheme: light; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Native date/time pickers inherit accent-color above (red, not browser blue).
   Polish the calendar icon on the date fields. */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .5; transition: opacity .2s var(--ease); }
input[type="date"]:hover::-webkit-calendar-picker-indicator,
input[type="time"]:hover::-webkit-calendar-picker-indicator { opacity: 1; }

/* Honeypot — off-screen field real people never see; bots fill it → we drop it.
   Not display:none (some bots skip those). */
.hp { position: absolute; left: -9999px; top: 0; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

:root {
  /* Minimalist palette — white + ink + a single red */
  --paper:    #FFFFFF;   /* the canvas */
  --paper-2:  #FAF8F6;   /* barely-there warm white — hover / alt rows */
  --ink:      #141210;   /* near-black warm ink */
  --ink-soft: #4A443E;   /* secondary text */
  --muted:    #7A736C;   /* tertiary / labels */
  --red:      #C02D2F;   /* Piandré red — the only accent */
  --red-deep: #9C2123;
  --blush:    #DBB7A5;   /* legacy token, retained for compatibility */
  --taupe:    #AD998A;   /* legacy token, retained for compatibility */
  --line:     rgba(20,18,16,.10);   /* hairline */
  --line-2:   rgba(20,18,16,.18);
  --white:    #ffffff;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Mulish", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --maxw: 1320px;
  --gutter: clamp(22px, 5vw, 72px);
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ── Typographic primitives ───────────────────────────── */
.display { font-family: var(--font-display); font-weight: 300; line-height: .98; letter-spacing: -.015em; }
.eyebrow {
  font-size: 12.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-soft); margin: 0 0 22px;
}
.eyebrow .i { color: var(--red); }
.eyebrow--muted { color: var(--muted); }
.lede { font-size: clamp(17px, 1.9vw, 20px); color: var(--ink-soft); font-weight: 400; line-height: 1.6; }
h1, h2, h3, h4 { margin: 0; font-weight: inherit; }
em { font-style: italic; }

/* ── Buttons → minimalist arrow-links ─────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 0; background: none; border: 0;
  transition: color .3s var(--ease);
}
.btn .arrow, .btn .ln {
  display: inline-block; width: 40px; height: 1px; background: currentColor;
  transition: width .4s var(--ease);
}
.btn:hover .arrow, .btn:hover .ln { width: 64px; }
.btn-primary { color: var(--red); }
.btn-primary:hover { color: var(--red-deep); }
.btn-ghost { color: var(--ink); }
.btn-ghost:hover { color: var(--red); }
.btn-light { color: #fff; }

.arrowlink {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--red);
}
/* arrow that pushes a dot forward on hover */
.arrowlink .ln { position: relative; display: inline-block; width: 30px; height: 1em; flex-shrink: 0; }
.arrowlink .ln::before {
  content: "→"; position: absolute; left: 0; top: 50%; transform: translate(0, -50%);
  font-family: var(--font-sans); font-size: 15px; line-height: 1; font-weight: 400;
  transition: transform .4s var(--ease);
}
.arrowlink .ln::after {
  content: ""; position: absolute; left: 19px; top: 50%; width: 5px; height: 5px; border-radius: 50%;
  background: currentColor; transform: translate(0, -50%); transition: transform .4s var(--ease);
}
.arrowlink:hover .ln::before { transform: translate(4px, -50%); }
.arrowlink:hover .ln::after  { transform: translate(9px, -50%); }
.link-arrow { /* legacy alias used elsewhere */
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--red);
}
.link-arrow .arrow { width: 40px; height: 1px; background: var(--red); display:inline-block; transition: width .4s var(--ease); }
.link-arrow:hover .arrow { width: 64px; }

/* ── Header ───────────────────────────────────────────── */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px calc(var(--gutter) + env(safe-area-inset-right, 0px)) 26px calc(var(--gutter) + env(safe-area-inset-left, 0px));
  background: rgba(255,255,255,.82); backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: padding .4s var(--ease), border-color .4s var(--ease);
}
.site-header.scrolled { padding-top: 15px; padding-bottom: 15px; border-bottom-color: var(--line); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 30px; width: auto; display: block; }
.brand .brand-word { font-family: var(--font-display); font-size: 25px; font-weight: 500; letter-spacing: .01em; }
.nav { display: flex; align-items: center; gap: 38px; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }   /* true-centered, independent of the CTA */
.nav-link { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); transition: color .3s var(--ease); }
.nav-link:hover { color: var(--red); }
.header-cta { display: flex; align-items: center; gap: 22px; }
.header-cta .book-dot {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 9px; color: var(--ink);
  border: 1px solid var(--line-2); border-radius: 100px; padding: 9px 18px;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.header-cta .book-dot:hover { border-color: var(--red); color: var(--red); }
.header-cta .book-dot .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); transition: transform .3s var(--ease); }
.header-cta .book-dot:hover .dot { transform: scale(1.4); }
.nav-toggle { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; margin: -10px -10px -10px 0; background: none; border: 0; padding: 10px; color: var(--ink); }

/* ── Hero — type-led, with a framed salon-interior loop ── */
/* Sized to its content (+ header clearance), not the full viewport — no big
   dead space above and below the hero on tall desktop screens. */
.hero { display: flex; align-items: center; padding: clamp(132px, 15vh, 164px) 0 clamp(52px, 7vh, 84px); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; width: 100%; }
.hero-copy { padding-top: clamp(4px, 2vw, 22px); }
.hero h1 { font-family: var(--font-display); font-weight: 300; font-size: clamp(44px, 5.6vw, 98px); line-height: 1.0; letter-spacing: -.015em; max-width: 14ch; }
.hero h1 .it { font-style: italic; position: relative; }
.hero h1 .it::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .12em; height: 3px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform 1.1s var(--ease) .5s;
}
.hero.lit h1 .it::after { transform: scaleX(1); }
.hero-copy .lede { margin-top: 28px; max-width: 34ch; }
.hero-copy .arrowlink { margin-top: 38px; }

.hero-media { position: relative; margin-top: clamp(28px, 5vh, 60px); }   /* sit a little below the hero eyebrow, not flush with it */

.hero-video {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-2);
}
.hero-media-tag {
  position: absolute; left: 14px; bottom: 14px;
  font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #fff;
  background: rgba(20,18,16,.42); backdrop-filter: blur(4px); padding: 7px 12px; border-radius: var(--radius);
}
@media (max-width: 820px) {
  .hero { min-height: auto; padding: 120px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero-copy .eyebrow { font-size: 10px; letter-spacing: .12em; white-space: nowrap; margin-bottom: 16px; }
  .hero h1 { font-size: clamp(50px, 13.8vw, 108px); line-height: 1.06; letter-spacing: -.02em; max-width: 15ch; }
  .hero-media { max-width: 480px; margin-top: 0; }   /* stacked below the copy — no extra offset */
  /* On mobile, get to the chat fast — the lede lives in the footer + meta anyway. */
  .hero-copy .lede { display: none; }
}

/* ── Trust strip — hairline row ───────────────────────── */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-inner { display: flex; flex-wrap: wrap; align-items: stretch; }
.trust-item { flex: 1 1 0; min-width: 140px; display: flex; flex-direction: column; gap: 6px; padding: 34px 0; }
.trust-item + .trust-item { border-left: 1px solid var(--line); padding-left: clamp(20px, 3vw, 44px); }
.trust-num { font-family: var(--font-display); font-size: clamp(32px, 4vw, 46px); font-weight: 400; line-height: 1; }
.trust-item:first-child .trust-num { color: var(--red); }
.trust-label { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.trust-sep { display: none; }

/* ── Section scaffolding ──────────────────────────────── */
.section { padding: clamp(72px, 8vw, 116px) 0; }
.section--tint { background: var(--paper-2); }
.section-head { margin-bottom: clamp(32px, 5vw, 56px); max-width: 760px; }
.section-head h2 { font-family: var(--font-display); font-weight: 300; font-size: clamp(34px, 5.4vw, 72px); line-height: 1.04; letter-spacing: -.01em; }
.section-head h2 .it { font-style: italic; color: var(--red); }
.section-head .lede { margin-top: 18px; max-width: 52ch; }
.head-row { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 34px; border-bottom: 1px solid var(--line); }

/* ── Services — magazine contents index ───────────────── */
.svc-row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(18px, 4vw, 56px);
  padding: clamp(22px, 2.4vw, 32px) 0; border-bottom: 1px solid var(--line);
  transition: padding-left .45s var(--ease), background .45s var(--ease);
}
.svc-row:hover { padding-left: 18px; background: linear-gradient(90deg, var(--paper-2), transparent 72%); }
.svc-name { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 3.4vw, 44px); line-height: 1.05; }
.svc-row:hover .svc-name { font-style: italic; }
.svc-eg { font-size: 14.5px; color: var(--muted); text-align: right; line-height: 1.5; max-width: 40ch; justify-self: end; }
.svc-go { font-size: 20px; color: var(--line-2); transition: color .45s var(--ease), transform .45s var(--ease); }
.svc-row:hover .svc-go { color: var(--red); transform: translateX(8px); }
.svc-foot { margin-top: clamp(36px, 5vw, 56px); }

/* ── Menu video band — a quiet glimpse inside the salon ── */
.menu-video {
  position: relative; margin: clamp(30px, 4vw, 52px) 0 clamp(8px, 2vw, 20px);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--paper-2);
}
.menu-video video { display: block; width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }
.menu-video::after { /* soft vignette so it blends, not a hard rectangle */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(20,18,16,.12) 0%, transparent 22%, transparent 72%, rgba(20,18,16,.22) 100%);
}
.menu-video-tag {
  position: absolute; left: 16px; bottom: 14px; z-index: 1;
  font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #fff;
  background: rgba(20,18,16,.42); backdrop-filter: blur(4px); padding: 7px 12px; border-radius: var(--radius);
}
/* gentle ease-in (longer, softer than the default reveal) */
.menu-video.reveal { transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
@media (max-width: 600px) { .menu-video video { aspect-ratio: 16 / 11; } }
@media (max-width: 760px) {
  .svc-row { grid-template-columns: 1fr; gap: 6px; align-items: start; }
  .svc-eg { text-align: left; justify-self: start; color: var(--ink-soft); margin-top: 6px; max-width: 52ch; }
  .svc-go { display: none; }
}

/* ── Feature band (LAKMÉ / store) ─────────────────────── */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 6vw, 90px); align-items: center; }
.feature-media {
  aspect-ratio: 4/5; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper-2);
}
.feature-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature h2 { font-family: var(--font-display); font-weight: 300; font-size: clamp(32px, 4.6vw, 60px); line-height: 1.06; letter-spacing: -.01em; }
.feature h2 .it { font-style: italic; color: var(--red); }
.feature .lede { margin: 20px 0 30px; }
@media (max-width: 820px) { .feature { grid-template-columns: 1fr; } .feature-media { max-width: 420px; order: -1; } }

/* ── Branches — minimal columns ───────────────────────── */
.branch-region { margin-top: clamp(40px, 5vw, 60px); }
.branch-region:first-of-type { margin-top: clamp(24px, 3vw, 36px); }
.branch-region-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-bottom: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink);
}
.branch-region-head .count { color: var(--muted); font-weight: 600; }
.branch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: var(--paper); border: 1px solid var(--line); }
.branch-card { background: var(--paper); padding: 26px 24px 28px; transition: background .4s var(--ease); display: block; box-shadow: inset -1px -1px 0 var(--line); }
.branch-card:hover { background: var(--paper-2); }
.branch-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 24px; line-height: 1.05; margin-bottom: 8px; }
.branch-card .branch-flag { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--red); display: block; margin: -4px 0 10px; }
.branch-card .branch-hours { font-size: 14px; color: var(--ink-soft); font-weight: 400; line-height: 1.75; }
.branch-card .branch-book { margin-top: 16px; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; opacity: 0; transition: opacity .3s var(--ease), color .3s var(--ease); }
.branch-card:hover .branch-book { opacity: 1; color: var(--red); }
.branch-all { margin-top: clamp(36px, 5vw, 52px); }
@media (max-width: 760px) { .branch-grid { grid-template-columns: 1fr 1fr; } .branch-card .branch-book { opacity: 1; } }
@media (max-width: 480px) { .branch-grid { grid-template-columns: 1fr; } }

/* ── FAQ (AEO) ────────────────────────────────────────── */
.faq .section-head { max-width: 760px; margin: 0 auto; }
.faq-list { max-width: 760px; margin: clamp(26px, 3vw, 42px) auto 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item > summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: clamp(18px, 2.4vw, 26px) 0;
  font-family: var(--font-display); font-weight: 400; font-size: clamp(18px, 2.2vw, 25px); line-height: 1.25; color: var(--ink);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after { content: "+"; font-family: var(--font-sans); font-size: 24px; font-weight: 300; color: var(--red); flex-shrink: 0; line-height: 1; }
.faq-item[open] > summary::after { content: "–"; }
.faq-item > summary:hover { color: var(--red); }
.faq-a { padding: 0 0 clamp(20px, 2.4vw, 28px); max-width: 64ch; }
.faq-a p { font-size: clamp(15.5px, 1.7vw, 17px); line-height: 1.7; color: var(--ink-soft); margin: 0; }
.faq-a a { color: var(--red); text-decoration: none; border-bottom: 1px solid var(--line-2); transition: border-color .2s var(--ease); }
.faq-a a:hover { border-color: var(--red); }

/* ── Statement ────────────────────────────────────────── */
.statement { text-align: center; padding: clamp(52px, 7vw, 90px) 0; }
.statement .eyebrow { margin-bottom: 22px; }
.statement p.big { font-family: var(--font-display); font-weight: 300; font-size: clamp(26px, 3.6vw, 50px); line-height: 1.12; letter-spacing: -.01em; max-width: 20ch; margin: 0 auto; }
.statement p.big .it { font-style: italic; color: var(--red); }
.statement p.big a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
.statement p.big a:hover { color: var(--red); }
.statement-teaser { font-size: clamp(15.5px, 1.85vw, 18.5px); line-height: 1.75; color: var(--ink-soft); max-width: 56ch; margin: clamp(20px, 2.6vw, 30px) auto 0; }
.statement .arrowlink { margin-top: clamp(22px, 2.8vw, 32px); }
.statement .eyebrow a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: color .2s var(--ease), border-color .2s var(--ease); }
.statement .eyebrow a:hover { color: var(--red); border-color: var(--red); }

/* ── Brand film + invitation — contained video left, copy right ── */
.filmband { padding: clamp(48px, 7vw, 104px) 0; background: var(--paper); }
.filmband-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(30px, 4.5vw, 72px); align-items: center; }
.filmband-media { border-radius: 10px; overflow: hidden; background: var(--ink); aspect-ratio: 16 / 10; box-shadow: 0 30px 60px -30px rgba(20,18,16,.34); }
.filmband-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.filmband-copy .eyebrow { margin: 0 0 16px; }
.filmband-title { font-family: var(--font-display); font-weight: 300; font-size: clamp(34px, 4.6vw, 64px); line-height: 1.0; letter-spacing: -.015em; margin: 0; }
.filmband-title .it { font-style: italic; color: var(--red); }
.filmband-text { font-size: clamp(16px, 1.85vw, 18.5px); color: var(--ink-soft); line-height: 1.7; margin: 22px 0 0; max-width: 48ch; }
.filmband-copy .arrowlink { margin-top: 30px; }
@media (max-width: 860px) {
  .filmband-grid { grid-template-columns: 1fr; gap: clamp(22px, 5vw, 32px); }
  .filmband-media { aspect-ratio: 16 / 10; }
}

/* ── Instagram ────────────────────────────────────────── */
.ig-handle { color: var(--red); }
#instagram { display: none; }   /* Instagram carousel hidden for now — remove this line to restore it */
.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: clamp(28px, 3vw, 40px); }
.ig-tile { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--paper-2); display: block; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ig-tile:hover img { transform: scale(1.05); }
.ig-ovl { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; background: rgba(20,18,16,0); opacity: 0; transition: opacity .35s var(--ease), background .35s var(--ease); }
.ig-tile:hover .ig-ovl { opacity: 1; background: rgba(20,18,16,.34); }
.ig-foot { margin-top: clamp(28px, 4vw, 44px); }
@media (max-width: 760px) { .ig-grid { grid-template-columns: 1fr 1fr; } }

/* ── CTA ──────────────────────────────────────────────── */
.cta-band { text-align: center; padding: clamp(88px, 11vw, 148px) 0; border-top: 1px solid var(--line); }
.cta-band h2 { font-family: var(--font-display); font-weight: 300; font-size: clamp(40px, 8vw, 112px); line-height: 1; letter-spacing: -.01em; }
.cta-band h2 .it { font-style: italic; color: var(--red); }
.cta-band p { color: var(--muted); max-width: 44ch; margin: 18px auto 0; font-weight: 300; }
.cta-band .arrowlink, .cta-band .btn { margin-top: 40px; }

/* ── Footer — light, minimal ──────────────────────────── */
.site-footer { background: var(--paper); border-top: 1px solid var(--line); padding: clamp(56px, 7vw, 84px) 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: clamp(28px, 4vw, 56px); padding-bottom: 44px; border-bottom: 1px solid var(--line); }
.footer-brand .brand-word { font-family: var(--font-display); font-size: 28px; font-weight: 500; }
.footer-logo { height: 34px; width: auto; display: block; }
.footer-brand p { color: var(--ink-soft); font-size: 14.5px; font-weight: 400; max-width: 32ch; margin: 16px 0 0; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); margin: 0 0 18px; }
.footer-col a { display: block; color: var(--ink-soft); font-size: 15px; line-height: 2.1; font-weight: 400; transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--red); }
.news h4 { color: var(--ink); }
.news p { color: var(--muted); font-size: 13.5px; font-weight: 300; margin: 0 0 16px; }
.news-form { display: flex; gap: 0; align-items: center; border-bottom: 1px solid var(--line-2); }
.news-form input { flex: 1; background: none; border: 0; padding: 10px 0; color: var(--ink); font-size: 14px; outline: none; }
.news-form input::placeholder { color: var(--muted); }
.news-form button { background: none; border: 0; color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 8px 0 8px 16px; }
.news .news-note { font-size: 11.5px; color: var(--muted); margin-top: 10px; font-weight: 300; }

/* "Stay in the loop" band — a slim signup section above the footer (/updates, /contact). */
.news-band { border-top: 1px solid var(--line); background: var(--paper-2); padding: clamp(40px, 6vw, 72px) 0; }
.news-band-inner { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 22px 56px; }
.news-band-copy { max-width: 48ch; }
.news-band-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 3.4vw, 38px); line-height: 1.05; letter-spacing: -.01em; margin: 0; color: var(--ink); }
.news-band-text { margin: 10px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.news-band-form { flex: 1; min-width: min(340px, 100%); }
.news-band .news-form button { cursor: pointer; white-space: nowrap; }
.news-band .news-note { font-size: 11.5px; color: var(--muted); margin-top: 12px; font-weight: 300; }
.news-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
@media (max-width: 640px) { .news-band-form { min-width: 100%; } }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding-top: 26px; font-size: 12px; color: var(--muted); }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--red); }
.footer-social { display: flex; flex-wrap: wrap; gap: 8px 16px; }
@media (max-width: 640px) { .footer-social { display: none; } }   /* mobile: hide footer links, keep just the copyright line */

/* ── Scroll reveal ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .06s; }
[data-delay="2"] { transition-delay: .12s; }
[data-delay="3"] { transition-delay: .18s; }
[data-delay="4"] { transition-delay: .24s; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 760px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    /* Anchor to the bottom of the (fixed) header so the menu tracks its real
       height — 82px at rest, 60px scrolled — instead of a magic 60px that let
       the header clip the first link. */
    position: absolute; top: 100%; left: 0; right: 0; transform: none; background: var(--paper);
    padding: 16px calc(var(--gutter) + env(safe-area-inset-right, 0px)) 16px calc(var(--gutter) + env(safe-area-inset-left, 0px));
    border-bottom: 1px solid var(--line); box-shadow: 0 24px 40px -24px rgba(20,18,16,.18);
  }
  .nav.open .nav-link { padding: 12px 0; font-size: 15px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px 28px; }
  .news { grid-column: 1 / -1; }
  .hero-foot { gap: 24px; }
  /* iOS Safari auto-zooms inputs below 16px on focus — keep the newsletter field at 16px */
  .news-form input { font-size: 16px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero h1 .it::after { transition: none; transform: scaleX(1); }
  * { scroll-behavior: auto !important; }
}
