/* ─────────────────────────────────────────────────────────────
   MAISON MONTCLAIR · Shared Design System
   Brow · Lash · Skin · Facials
   ───────────────────────────────────────────────────────────── */

:root {
  --cream:         #F2EBDF;
  --cream-light:   #F8F2E7;
  --bone:          #EAE0D1;
  --sand:          #D9C9B1;
  --champagne:     #C9A87C;
  --terracotta:    #B5573A;
  --terracotta-dp: #8E4129;
  --olive:         #6B7152;
  --ink:           #4A3F33;
  --ink-soft:      #6B5E4F;
  --line:          rgba(74, 63, 51, 0.14);
  --serif:         'Cormorant Garamond', 'Garamond', serif;
  --sans:          'Inter Tight', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  /* CRITICAL FIX: clears the sticky header when jumping to anchors so stats/sections aren't decapitated */
  scroll-padding-top: 110px;
}

body {
  font-family: var(--sans);
  background: var(--cream-light);
  color: var(--ink);
  line-height: 1.5;
  font-weight: 300;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ─── ANNOUNCEMENT BAR ─── */
.announce {
  background: var(--cream);
  color: var(--ink);
  text-align: center;
  padding: 11px 24px;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 1px solid var(--line);
}
.announce span { color: var(--champagne); margin: 0 10px; }

/* ─── NAVIGATION ─── */
nav.primary {
  position: sticky;
  top: 0;
  z-index: 100;
  /* Audit fix: raised opacity to 0.96 — blur is unreliable on iOS Safari and Android */
  background: rgba(248, 242, 231, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: all 0.4s ease;
}
/* Layout: logo on the left, nav links and Book Now grouped on the right */
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links { display: flex; gap: 38px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0;
  width: 0; height: 1px; background: var(--terracotta);
  transition: width 0.4s ease;
}
.nav-links a:hover { color: var(--terracotta-dp); }
.nav-links a:hover::after { width: 100%; }

.nav-logo {
  text-align: center;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--ink);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.nav-logo small {
  display: block;
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.46em;
  color: var(--terracotta);
  margin-top: 5px;
  font-weight: 400;
}
/* PNG logo with mix-blend-mode multiply hides the cream background against our cream page.
   SVG version exists at assets/logo.svg but its canvas has too much padding for nav use —
   kept the SVG as favicon only. */
.nav-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  mix-blend-mode: multiply;
}
.nav-logo-img {
  height: 74px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}
.footer-jap-logo {
  height: 80px !important;
  width: auto;
  display: block;
  margin: 0 auto 22px;
  mix-blend-mode: multiply;
}

/* legacy rule (left in place but the .nav-inner section above is the source of truth now) */
.nav-cta {
  background: var(--terracotta);
  color: var(--cream-light);
  padding: 13px 30px;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.4s ease;
  border: 1px solid var(--terracotta);
}
.nav-cta:hover { background: var(--terracotta-dp); border-color: var(--terracotta-dp); }

.nav-toggle {
  display: none; background: none; border: none;
  width: 28px; height: 20px; position: relative; cursor: pointer; padding: 0;
}
.nav-toggle span {
  display: block; position: absolute; left: 0;
  width: 100%; height: 1px; background: var(--ink);
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 4px; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 4px; }
.nav-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream-light); z-index: 99;
  /* Bumped top padding so first link clears the sticky nav header */
  padding: 120px 32px 40px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.nav-mobile.open { transform: translateY(0); }
.nav-mobile ul { list-style: none; }
.nav-mobile ul li { border-bottom: 1px solid var(--line); }
/* SCOPED to nav links only — was bleeding into the CTA and contact links */
.nav-mobile ul li a {
  display: block; padding: 22px 0;
  font-family: var(--serif); font-size: 28px; font-weight: 400;
  color: var(--ink); text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.3s ease, padding-left 0.4s ease;
}
.nav-mobile ul li a:hover { color: var(--terracotta-dp); padding-left: 8px; }

/* Mobile CTA — small refined button, matches desktop nav-cta scale */
.nav-mobile-cta {
  margin-top: 36px; display: block;
  background: var(--terracotta); color: var(--cream-light) !important;
  padding: 16px 24px; text-align: center; text-decoration: none;
  font-family: var(--sans) !important;
  font-size: 11px !important; letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 400;
  transition: background 0.3s ease;
}
.nav-mobile-cta:hover { background: var(--terracotta-dp); }

/* Bottom contact block — readable but quiet */
.nav-mobile-meta {
  margin-top: 56px; padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 14px; line-height: 1.8;
  color: var(--ink-soft); font-weight: 300;
}
.nav-mobile-meta strong {
  display: block; font-family: var(--serif);
  font-style: italic; font-weight: 400; color: var(--ink);
  margin-bottom: 8px; font-size: 18px;
}
/* Override the nav-link serif styles for contact links specifically */
.nav-mobile-meta a {
  display: inline; padding: 0;
  font-family: var(--sans) !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  color: var(--ink-soft) !important;
  letter-spacing: 0;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.nav-mobile-meta a:hover {
  color: var(--terracotta-dp) !important;
  padding-left: 0 !important;
  border-bottom-color: var(--champagne);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 400;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--cream-light); color: var(--ink); border-color: var(--cream-light); }
.btn-primary:hover { background: var(--terracotta); color: var(--cream-light); border-color: var(--terracotta); }
.btn-ghost { background: transparent; color: var(--cream-light); border-color: rgba(248, 242, 231, 0.55); }
.btn-ghost:hover { background: var(--cream-light); color: var(--ink); border-color: var(--cream-light); }
.btn-ink { background: var(--ink); color: var(--cream-light); border-color: var(--ink); }
.btn-ink:hover { background: var(--terracotta-dp); color: var(--cream-light); border-color: var(--terracotta-dp); }
.btn-outline-ink { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline-ink:hover { background: var(--ink); color: var(--cream-light); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroZoom { from { transform: scale(1.02); } to { transform: scale(1.1); } }
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ─── HERO: IMAGE VARIANT ─── */
.hero {
  position: relative;
  height: calc(100vh - 104px);
  min-height: 700px;
  overflow: hidden;
  background: var(--cream);
}
.hero-image {
  position: absolute; inset: 0;
  background-image: url('assets/hero.jpg');
  background-size: cover;
  background-position: 58% 50%;
  animation: heroZoom 24s ease-out forwards;
  /* Source image is already well-lit — gentle warmth lift only */
  filter: brightness(1.04) saturate(1.04) contrast(1.0);
}
.hero-atelier .hero-image {
  background-image: url('assets/hero-atelier-graded.jpg');
  background-position: 50% 60%;
}
/* Overlay deepened on the LEFT where "Considered, by hand." sits — Cam's feedback was that
   the headline blends into the bright daylight scene. Slight extra protection on the bottom
   too so the CTAs hold against the cream curtain pixels. */
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  background:
    /* Vertical gradient — light at top, deeper at bottom where text sits */
    linear-gradient(180deg, rgba(74, 63, 51, 0.10) 0%, rgba(74, 63, 51, 0.06) 28%, rgba(74, 63, 51, 0.62) 100%),
    /* Horizontal gradient on the LEFT half — gives the headline serious contrast */
    linear-gradient(90deg, rgba(40, 30, 22, 0.66) 0%, rgba(74, 63, 51, 0.32) 35%, rgba(74, 63, 51, 0.10) 60%, rgba(74, 63, 51, 0) 78%);
}
.hero-content {
  position: absolute; bottom: 88px; left: 64px; right: 64px;
  color: var(--cream-light); z-index: 2; max-width: 720px;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase;
  margin-bottom: 26px; opacity: 0;
  animation: fadeUp 1.2s 0.3s ease-out forwards;
  color: var(--cream-light); font-weight: 400;
}
.hero-eyebrow::before {
  content: ''; display: inline-block; width: 32px; height: 1px;
  background: var(--champagne); vertical-align: middle; margin-right: 16px;
}
/* When the eyebrow sits AFTER the CTAs (used in the new hero layout)
   it functions as a signature line — more breathing room above, no margin below */
.hero-eyebrow-after {
  margin-top: 44px;
  margin-bottom: 0;
  animation-delay: 1.2s;
}
.hero h1 {
  font-family: var(--serif);
  /* Smaller scale per Cam — the longer two-line headline reads calmer at this size */
  font-size: clamp(38px, 5.4vw, 84px);
  /* Weight bumped 300 → 400 for density without losing the serif elegance */
  font-weight: 400; line-height: 0.95; letter-spacing: -0.02em;
  margin-bottom: 36px; opacity: 0;
  /* Soft drop shadow lifts the letterforms off the bright atelier without looking heavy */
  text-shadow: 0 2px 24px rgba(20, 14, 8, 0.32), 0 1px 2px rgba(20, 14, 8, 0.18);
  animation: fadeUp 1.4s 0.5s ease-out forwards;
  position: relative;
}
/* Champagne hairline above the H1 — Japonica-style premium cue */
.hero h1::before {
  content: '';
  display: block;
  width: 56px; height: 1px;
  background: var(--champagne);
  margin: 0 0 30px;
  opacity: 0.85;
}
.hero h1 em { font-style: italic; font-weight: 300; color: var(--sand); }
/* Mobile-only line break in the hero headline (drops "with care" to its own line) */
.br-mob { display: none; }
/* Keep the ABN number from wrapping mid-number in the footer */
.abn-nowrap { white-space: nowrap; }
/* New subhead — tells first-time visitors what we do, in-fold */
.hero-subhead {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--cream-light);
  opacity: 0;
  margin-top: -10px;
  margin-bottom: 38px;
  animation: fadeUp 1.4s 0.7s ease-out forwards;
}
.hero-subhead .sep { color: var(--champagne); }
.hero p.lede {
  font-size: 17px; line-height: 1.65; max-width: 480px;
  opacity: 0; animation: fadeUp 1.4s 0.8s ease-out forwards;
  color: rgba(248, 242, 231, 0.92); margin-bottom: 42px; font-weight: 300;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1.4s 1.05s ease-out forwards;
}
.scroll-cue {
  position: absolute; bottom: 36px; right: 64px;
  color: var(--cream-light);
  font-size: 9px; letter-spacing: 0.42em; text-transform: uppercase;
  writing-mode: vertical-rl; opacity: 0.75; z-index: 2;
}
.scroll-cue::after {
  content: ''; display: block;
  width: 1px; height: 44px; background: var(--cream-light);
  margin: 16px auto 0; animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; opacity: 0.4; }
  50%      { transform: scaleY(1);   transform-origin: top; opacity: 1; }
}

/* ─── HERO: STUDIO VARIANT — wordmark front-and-centre ─── */
.hero-studio {
  position: relative;
  height: calc(100vh - 104px);
  min-height: 640px;
  max-height: 820px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* Studio sweep — soft floor + back wall */
  background:
    radial-gradient(ellipse 110% 50% at 55% 100%, rgba(181, 87, 58, 0.06), transparent 70%),
    linear-gradient(180deg, var(--cream-light) 0%, var(--cream-light) 58%, var(--bone) 100%);
}
/* Subtle vignette */
.hero-studio::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 40%, transparent 50%, rgba(74, 63, 51, 0.05) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-studio-inner {
  position: relative; z-index: 2;
  max-width: 1440px; height: 100%;
  margin: 0 auto; padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Desktop copy slot inside the hero is unused now — moved to .hero-intro strip below */
.hero-studio-copy { display: none; }

/* ─── Wordmark subject: front-and-centre, dominant hero element ─── */
.studio-subject {
  position: relative;
  z-index: 2;
  pointer-events: none;
  user-select: none;
  text-align: center;
  width: 100%;
  padding: 0 32px;
  /* Soft studio cast shadow on the type itself */
  filter:
    drop-shadow(0 36px 40px rgba(74, 63, 51, 0.15))
    drop-shadow(0 10px 14px rgba(74, 63, 51, 0.08));
  opacity: 0;
  animation: fadeUp 1.6s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.studio-word-small {
  font-family: var(--sans);
  font-size: clamp(12px, 1.05vw, 18px);
  letter-spacing: 0.62em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--terracotta-dp);
  margin-bottom: 22px;
}
.studio-word-big {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  /* Dominant hero scale — fills the canvas horizontally */
  font-size: clamp(110px, 18vw, 280px);
  line-height: 0.86;
  letter-spacing: -0.035em;
  color: var(--ink);
  background: linear-gradient(180deg, #5A4D40 0%, #3D332A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.studio-word-meta {
  display: block;
  margin-top: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(13px, 1.1vw, 18px);
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  font-weight: 400;
}
/* Soft elliptical floor cast shadow beneath the centered wordmark */
.studio-floor-shadow {
  position: absolute;
  left: 18%; right: 18%;
  top: 62%;
  height: 70px;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(74, 63, 51, 0.22), rgba(74, 63, 51, 0.06) 55%, transparent 80%);
  filter: blur(18px);
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1.8s 0.8s ease-out forwards;
}
/* Tiny "no. 01" plate, atelier detail */
.studio-plate {
  position: absolute;
  left: 64px; bottom: 56px;
  font-family: var(--serif); font-style: italic;
  font-size: 13px; color: var(--ink-soft);
  letter-spacing: 0.02em;
  z-index: 3;
  opacity: 0; animation: fadeUp 1.4s 1.2s ease-out forwards;
}
.studio-plate::before {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: var(--champagne);
  vertical-align: middle; margin-right: 14px;
}

/* ─── STAT STRIP (credibility band) ─── */
.stat-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 36px 64px;
}
.stat-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.stat-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.stat-num em {
  font-style: normal;
  color: var(--champagne);
  font-size: 0.85em;
}
/* For italic word stats like "Bespoke" — uses the editorial serif italic */
.stat-num em:only-child {
  font-style: italic;
  font-size: 1em;
  color: var(--terracotta-dp);
}
.stat-label {
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
}
/* Tiny review count tucked under the average-rating stat */
.stat-sub {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-dp);
  margin-top: 3px;
}
/* Award badge sitting inside the stat strip */
.stat-item-badge img {
  height: 80px;
  width: auto;
  margin: 0 auto;
  display: block;
}
@media (max-width: 700px) {
  .stat-item-badge img { height: 66px; }
}

/* ─── AWARDS STRIP ─── */
.awards-strip {
  background: var(--cream-light);
  border-bottom: 1px solid var(--line);
  padding: 52px 64px;
}
.awards-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.awards-label {
  font-size: 10px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 400;
}
.awards-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.awards-badges img {
  height: 108px;
  width: auto;
  display: block;
}
@media (max-width: 700px) {
  .awards-strip { padding: 40px 24px; }
  .awards-badges { gap: 40px; }
  .awards-badges img { height: 86px; }
}

/* ─── EDITORIAL PULL-QUOTE — three sizes for editorial rhythm ─── */
.testimonial-pull {
  padding: 120px 64px;
  position: relative;
  overflow: hidden;
}
.testimonial-pull-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.testimonial-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 140px;
  color: var(--champagne);
  opacity: 0.6;
  line-height: 0.5;
  margin-bottom: 24px;
  height: 70px;
  display: block;
  user-select: none;
  pointer-events: none;
}
.testimonial-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  line-height: 1.32;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
}
.testimonial-meta {
  margin-top: 38px;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--terracotta-dp);
  font-weight: 400;
}
.testimonial-meta::before {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: var(--champagne);
  vertical-align: middle; margin-right: 16px;
}

/* LARGE — centered, anchored with a single champagne hairline at the bottom */
.testimonial-pull-large {
  background: var(--bone);
  padding-top: 110px;
  padding-bottom: 110px;
}
.testimonial-pull-large .testimonial-pull-inner {
  max-width: 880px;
  text-align: center;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--champagne);
}
.testimonial-pull-large .testimonial-mark {
  text-align: center;
  margin: 0 auto 18px;
  display: block;
  height: 60px;
}
.testimonial-pull-large .testimonial-text {
  font-size: clamp(26px, 3.2vw, 40px);
  max-width: 760px;
  margin: 0 auto;
}
.testimonial-pull-large .testimonial-meta {
  text-align: center;
  margin-top: 36px;
}
.testimonial-pull-large .testimonial-meta::before { display: none; }

/* SMALL — asymmetric, smaller scale, sits between content sections */
.testimonial-pull-small {
  background: var(--cream-light);
  padding: 90px 64px;
}
.testimonial-pull-small .testimonial-pull-inner {
  max-width: 740px;
  margin-left: auto;
  margin-right: 8%;
  text-align: right;
}
.testimonial-pull-small .testimonial-text {
  font-size: clamp(22px, 2.4vw, 30px);
  max-width: 100%;
}
.testimonial-pull-small .testimonial-meta::before {
  display: none;
}
.testimonial-pull-small .testimonial-meta {
  margin-top: 24px;
}

/* LINE — single floating line, no quote mark, breath between sections */
.testimonial-pull-line {
  background: var(--cream-light);
  padding: 70px 64px;
  text-align: center;
}
.testimonial-pull-line .testimonial-pull-inner {
  max-width: 820px;
}
.testimonial-text-line {
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 300;
}
.testimonial-pull-line .testimonial-meta {
  margin-top: 18px;
}
.testimonial-pull-line .testimonial-meta::before {
  display: none;
}

/* ─── ULTRACEUTICALS PARTNER STRIP ─── */
.partner-strip {
  background: var(--cream-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 80px 64px;
}
.partner-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.partner-eyebrow {
  font-size: 10px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
  font-weight: 400;
}
.partner-strip h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
}
.partner-strip p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto;
}

/* ─── INTRO / PHILOSOPHY ─── */
.intro {
  padding: 160px 64px 140px;
  text-align: center;
  background: var(--cream-light);
  position: relative;
}
.intro-eyebrow {
  font-size: 10px; letter-spacing: 0.46em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 30px; font-weight: 400;
}
.intro h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.18; font-weight: 300;
  max-width: 880px; margin: 0 auto 48px;
  letter-spacing: -0.008em; color: var(--ink);
}
.intro h2 em { font-style: italic; color: var(--terracotta-dp); }
/* Body is now two short editorial sentences — bigger type, narrower column gives them weight.
   Pulled from 16 to 19 so the precision phrasing reads with the gravitas it needs. */
.intro-body { max-width: 720px; margin: 0 auto; }
.intro-body p {
  font-size: 19px; line-height: 1.6;
  color: var(--ink-soft); font-weight: 300; margin-bottom: 22px;
  letter-spacing: -0.003em;
}
.intro-body p:last-of-type { margin-bottom: 0; }
.intro-link {
  display: inline-block;
  margin-top: 4px;
  color: var(--terracotta-dp);
  text-decoration: none;
  font-style: italic;
  font-family: var(--serif);
  font-size: 17px;
  border-bottom: 1px solid var(--champagne);
  padding-bottom: 1px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.intro-link:hover {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}
.intro-coda {
  margin: 72px auto 0;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.2; letter-spacing: -0.008em;
  color: var(--terracotta-dp); max-width: 720px;
}
.intro-coda::before {
  content: ''; display: block;
  width: 40px; height: 1px; background: var(--champagne);
  margin: 0 auto 36px;
}

/* ─── TREATMENTS (was "Services") ─── */
.services { background: var(--bone); padding: 140px 64px; position: relative; }
/* Audit fix: previously a flex split with a huge empty gutter between headline and intro.
   Now centered, stacked, reads as one block. */
.services-header {
  display: block;
  text-align: center;
  max-width: 880px;
  margin: 0 auto 80px;
  padding: 0 24px;
}
.services-eyebrow {
  font-size: 10px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 22px;
  font-weight: 400;
}
.services-header h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 300; line-height: 1.12; letter-spacing: -0.008em; color: var(--ink);
  margin-bottom: 28px;
}
.services-header h2 em { font-style: italic; color: var(--terracotta-dp); }
.services-header p {
  max-width: 620px; font-size: 16px; line-height: 1.8;
  color: var(--ink-soft); font-weight: 300;
  margin: 0 auto;
}
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 1440px; margin: 0 auto;
}
/* Three-column variant for the expanded six-card menu */
.services-grid-3 { grid-template-columns: repeat(3, 1fr); }
.services-grid-3 .service-card { aspect-ratio: 3/4; }
.services-grid-3 .service-card h3 { font-size: 28px; }
.services-grid-3 .service-card .service-content { padding: 36px; }
@media (max-width: 1100px) {
  .services-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
/* Whole card is now a block-level <a> so image, headline and meta all click through */
.service-card {
  position: relative; overflow: hidden;
  background: var(--cream); aspect-ratio: 4/5; cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}
.service-card:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
}
.service-card .service-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: saturate(0.95);
}
.service-card:hover .service-img { transform: scale(1.06); }
.service-card .service-overlay {
  position: absolute; inset: 0;
  /* Stronger bottom scrim so text stays legible on any image, regardless of source brightness */
  background: linear-gradient(180deg,
    rgba(74, 63, 51, 0.08) 0%,
    rgba(74, 63, 51, 0.18) 40%,
    rgba(74, 63, 51, 0.65) 70%,
    rgba(40, 30, 22, 0.88) 100%);
  transition: background 0.6s ease;
}
.service-card:hover .service-overlay {
  background: linear-gradient(180deg,
    rgba(142, 65, 41, 0.18) 0%,
    rgba(74, 63, 51, 0.38) 40%,
    rgba(74, 63, 51, 0.75) 70%,
    rgba(40, 30, 22, 0.92) 100%);
}
.service-card .service-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 48px; color: var(--cream-light); z-index: 2;
}
.service-num {
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: var(--sand); margin-bottom: 12px; opacity: 0.9;
}
.service-card h3 {
  font-family: var(--serif); font-size: 36px; font-weight: 400;
  line-height: 1.1; margin-bottom: 14px; letter-spacing: -0.005em;
}
.service-card .service-tags {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(248, 242, 231, 0.88); font-weight: 400; margin-bottom: 24px;
}
.service-link {
  font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--cream-light); text-decoration: none;
  display: inline-flex; align-items: center; gap: 12px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
  font-weight: 400;
}
.service-card:hover .service-link { opacity: 1; transform: translateY(0); }
.service-link::after { content: '→'; font-size: 14px; transition: transform 0.4s ease; }
.service-card:hover .service-link::after { transform: translateX(4px); }
/* "New" pill for facials */
.service-new {
  position: absolute; top: 24px; right: 24px; z-index: 3;
  background: var(--cream-light); color: var(--terracotta-dp);
  font-family: var(--serif); font-style: italic; font-size: 13px;
  padding: 6px 14px; letter-spacing: 0.02em;
}

/* ─── Icon-card treatment grid (Cam's pick — Option 3 from grid mockups) ───
   Cream cards with hand-drawn SVG line motifs, terracotta accents. Premium and ownable
   without depending on portfolio photography. -----------------------------------------*/
.icon-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
}
.icon-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  background: var(--cream-light);
  border: 1px solid var(--line);
  padding: 56px 36px 44px;
  aspect-ratio: 4/5;
  transition: border-color 0.4s ease, transform 0.4s ease, background 0.4s ease;
}
.icon-card:hover {
  border-color: var(--champagne);
  transform: translateY(-3px);
  background: #FDF8EE;
}
.icon-card:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
}
.icon-card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--terracotta-dp);
  margin-bottom: 8px;
}
.icon-card-eyebrow {
  font-size: 9px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-weight: 400;
}
.icon-card-svg {
  display: block;
  width: 120px;
  height: 120px;
  margin: 20px auto 36px;
  color: var(--terracotta-dp);
  transition: color 0.4s ease, transform 0.6s ease;
}
.icon-card:hover .icon-card-svg {
  color: var(--terracotta);
  transform: scale(1.04);
}
.icon-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: -0.005em;
}
.icon-card-tags {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 22px;
}
.icon-card-link {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--terracotta-dp);
  margin-top: auto;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.icon-card:hover .icon-card-link {
  border-bottom-color: var(--champagne);
  color: var(--terracotta);
}
/* "Launching soon" pill for SkinPen card */
.icon-card-pill {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--cream);
  border: 1px solid var(--champagne);
  color: var(--terracotta-dp);
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  padding: 4px 12px;
  letter-spacing: 0.02em;
}
@media (max-width: 1100px) {
  .icon-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .icon-card-grid { grid-template-columns: 1fr; gap: 14px; }
  .icon-card { aspect-ratio: auto; padding: 44px 28px 36px; }
  .icon-card-svg { width: 90px; height: 90px; margin: 12px auto 28px; }
}

/* ─── Magazine cover treatment cards (a face per card, lighter finish) ─── */
.cover-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
}
.cover-card {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  text-decoration: none;
  color: var(--cream-light);
  background: var(--bone);
  border: 1px solid var(--line);
}
.cover-card:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 4px; }
.cover-card-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 16%;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cover-card:hover .cover-card-media { transform: scale(1.05); }
/* Lighter finish: top stays clear so the face reads, soft scrim only low for the type */
.cover-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(40,30,22,0) 42%, rgba(40,30,22,0.18) 60%, rgba(28,20,12,0.64) 100%);
  transition: background 0.5s ease;
}
.cover-card:hover .cover-card-overlay {
  background: linear-gradient(180deg, rgba(40,30,22,0) 36%, rgba(40,30,22,0.24) 58%, rgba(28,20,12,0.7) 100%);
}
.cover-card-eyebrow {
  position: absolute; top: 22px; left: 26px; right: 26px; z-index: 3;
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: rgba(248,242,231,0.95);
  text-shadow: 0 1px 12px rgba(20,14,8,0.55);
}
.cover-card-eyebrow .sep { color: var(--champagne); }
.cover-card-content {
  position: absolute; inset: 0; z-index: 2;
  padding: 28px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.cover-card-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1.04; letter-spacing: -0.01em;
  margin: 0 0 14px;
  text-shadow: 0 2px 20px rgba(20,14,8,0.55);
}
.cover-card-tags {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(248,242,231,0.92);
  text-shadow: 0 1px 10px rgba(20,14,8,0.6);
}
.cover-card-tags .sep { color: var(--champagne); }
.cover-card-link {
  margin-top: 16px;
  font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--cream-light);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  text-shadow: 0 1px 10px rgba(20,14,8,0.6);
}
.cover-card:hover .cover-card-link { opacity: 1; transform: translateY(0); }
.cover-card-pill {
  position: absolute; top: 20px; right: 20px; z-index: 4;
  background: var(--cream-light); color: var(--terracotta-dp);
  font-family: var(--serif); font-style: italic; font-size: 12px;
  padding: 4px 12px; letter-spacing: 0.02em;
}
@media (max-width: 1100px) { .cover-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) {
  .cover-card-grid { grid-template-columns: 1fr; gap: 14px; }
  .cover-card { aspect-ratio: 4/5; }
  .cover-card-title { font-size: clamp(28px, 7.5vw, 40px); }
}

/* Editorial FAQ link under the treatments grid (Cam's request — pulled from philosophy section
   into a calm centred italic link sitting on a champagne hairline). */
.services-faq-link {
  display: block;
  width: fit-content;
  margin: 72px auto 0;
  padding: 0 8px 12px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.004em;
  color: var(--terracotta-dp);
  text-decoration: none;
  border-bottom: 1px solid var(--champagne);
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.services-faq-link:hover {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}
@media (max-width: 720px) {
  .services-faq-link { font-size: 19px; margin-top: 56px; }
}

/* ─── MAGAZINE COVER CARDS (treatment grid) — lighter finish ─── */
.cover-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
}
.cover-card {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  text-decoration: none;
  color: var(--cream-light);
  background: var(--bone);
}
.cover-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 28%;
  transition: transform 1.6s cubic-bezier(0.16,1,0.3,1);
}
.cover-card:hover .cover-card-img { transform: scale(1.05); }
/* Light finish: face/image stays bright, only soft scrims top + bottom for the type */
.cover-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(40,30,22,0.34) 0%,
    rgba(40,30,22,0.05) 24%,
    rgba(40,30,22,0.05) 50%,
    rgba(28,20,12,0.66) 100%);
  transition: background 0.5s ease;
}
.cover-card:hover .cover-card-overlay {
  background: linear-gradient(180deg,
    rgba(40,30,22,0.40) 0%,
    rgba(40,30,22,0.12) 24%,
    rgba(40,30,22,0.14) 50%,
    rgba(28,20,12,0.74) 100%);
}
.cover-card-content {
  position: absolute; inset: 0;
  padding: 30px 28px;
  display: flex; flex-direction: column;
  z-index: 2;
}
.cover-card-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--cream-light);
  opacity: 0.92;
  text-shadow: 0 1px 12px rgba(20,14,8,0.5);
}
.cover-card-pill {
  position: absolute; top: 22px; right: 22px;
  background: var(--cream-light); color: var(--terracotta-dp);
  font-family: var(--serif); font-style: italic; font-size: 12px;
  padding: 4px 12px; letter-spacing: 0.02em; z-index: 3;
}
.cover-card-title {
  margin-top: auto;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 2.6vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--cream-light);
  text-shadow: 0 2px 20px rgba(20,14,8,0.55);
  margin-bottom: 14px;
}
.cover-card-tags {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(248,242,231,0.88);
  line-height: 1.7;
  text-shadow: 0 1px 10px rgba(20,14,8,0.5);
}
@media (max-width: 1100px) {
  .cover-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cover-card-grid { grid-template-columns: 1fr; gap: 14px; }
  .cover-card { aspect-ratio: 4/5; }
  .cover-card-title { font-size: clamp(30px, 9vw, 40px); }
}

/* ─── STORY (Atelier) ─── */
.story { padding: 160px 64px; background: var(--cream-light); overflow: hidden; }
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; max-width: 1440px; margin: 0 auto; align-items: center;
}
.story-image-wrap { position: relative; }
.story-image {
  aspect-ratio: 4/5;
  background-image: url('https://images.unsplash.com/photo-1556228852-80b6e5eeff06?w=1600&q=85');
  background-size: cover; background-position: center;
  filter: saturate(0.92) contrast(1.02);
  position: relative; z-index: 2;
}
/* Cam's own treatment-room photo for the atelier story */
.story-image-atelier {
  background-image: url('assets/treatment-room.jpg');
  background-position: center 60%;
}
.story-image-wrap::after {
  content: ''; position: absolute;
  top: 24px; right: -24px; bottom: -24px; left: 24px;
  border: 1px solid var(--champagne); z-index: 1;
}
.story-content { padding-right: 40px; }
.story-eyebrow {
  font-size: 10px; letter-spacing: 0.46em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 30px; font-weight: 400;
}
.story h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 300; line-height: 1.12;
  margin-bottom: 32px; letter-spacing: -0.01em; color: var(--ink);
}
.story h2 em { font-style: italic; color: var(--terracotta-dp); }
.story p {
  font-size: 16px; line-height: 1.9;
  color: var(--ink-soft); margin-bottom: 22px; font-weight: 300;
}
.story p.story-closing {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.5;
  color: var(--terracotta-dp);
  margin-top: 30px;
}
.story-signature {
  margin-top: 40px; font-family: var(--serif); font-style: italic;
  font-size: 24px; color: var(--terracotta-dp);
}
.story-signature small {
  display: block; font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 8px; font-style: normal; font-weight: 400;
}
.story-link {
  margin-top: 38px; display: inline-block;
  color: var(--ink); text-decoration: none;
  font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase;
  padding-bottom: 6px; border-bottom: 1px solid var(--champagne);
  transition: all 0.4s ease; font-weight: 400;
}
.story-link:hover { color: var(--terracotta-dp); border-color: var(--terracotta); }

/* ─── BOOKING BAND ─── */
.book-band {
  background:
    linear-gradient(180deg, rgba(242, 235, 223, 0.18), rgba(242, 235, 223, 0)),
    #B8806A;
  color: var(--cream-light);
  padding: 140px 64px;
  text-align: center;
  position: relative; overflow: hidden;
}
.book-band::before {
  content: 'M·M';
  position: absolute; bottom: -80px; right: -40px;
  font-family: var(--serif); font-style: italic;
  font-size: 320px; color: rgba(142, 65, 41, 0.28);
  line-height: 1; letter-spacing: -0.02em;
}
.book-band-eyebrow {
  font-size: 10px; letter-spacing: 0.46em; text-transform: uppercase;
  color: var(--cream); margin-bottom: 30px; font-weight: 400;
  position: relative; z-index: 1; opacity: 0.85;
}
.book-band h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 300; line-height: 1.1;
  max-width: 760px; margin: 0 auto 32px;
  letter-spacing: -0.01em; position: relative; z-index: 1;
}
.book-band h2 em { font-style: italic; color: var(--cream); }
.book-band p {
  max-width: 520px; margin: 0 auto 48px;
  font-size: 16px; line-height: 1.8;
  color: rgba(248, 242, 231, 0.92); font-weight: 300;
  position: relative; z-index: 1;
}
.book-band .btn-primary {
  background: var(--cream-light); color: var(--ink); border-color: var(--cream-light);
  position: relative; z-index: 1;
}
.book-band .btn-primary:hover {
  background: var(--ink); color: var(--cream-light); border-color: var(--ink);
}

/* ─── FOOTER ─── */
footer { background: var(--cream); padding: 80px 64px 32px; color: var(--ink); }
.footer-inner { max-width: 1440px; margin: 0 auto; }
.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 56px; border-bottom: 1px solid var(--line);
  gap: 48px; flex-wrap: wrap;
}
.footer-brand-block { display: flex; flex-direction: column; }
.footer-brand {
  font-family: var(--serif);
  font-size: 26px; font-weight: 500; letter-spacing: 0.18em;
  color: var(--ink); line-height: 1;
}
.footer-brand-tag {
  font-size: 9px; letter-spacing: 0.46em; text-transform: uppercase;
  color: var(--terracotta); margin-top: 8px; font-weight: 400;
}
.footer-nav { display: flex; gap: 36px; list-style: none; flex-wrap: wrap; }
.footer-nav a {
  color: var(--ink); text-decoration: none;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 400; transition: color 0.3s ease;
}
.footer-nav a:hover { color: var(--terracotta-dp); }
.footer-cta {
  background: var(--terracotta); color: var(--cream-light);
  padding: 14px 32px; text-decoration: none;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 400;
  border: 1px solid var(--terracotta); transition: all 0.4s ease; white-space: nowrap;
}
.footer-cta:hover { background: var(--terracotta-dp); border-color: var(--terracotta-dp); }
.footer-mid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding: 56px 0; border-bottom: 1px solid var(--line);
}
.footer-desc {
  max-width: 360px; font-size: 14px; line-height: 1.85;
  font-weight: 300; color: var(--ink-soft);
}
.footer-col h4 {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; font-weight: 400; color: var(--ink); margin-bottom: 18px;
}
.footer-col p, .footer-col address {
  font-style: normal; font-size: 13.5px; line-height: 1.85;
  font-weight: 300; color: var(--ink-soft);
}
.footer-col a { color: var(--ink-soft); text-decoration: none; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--terracotta-dp); }
.hours-row { display: flex; justify-content: space-between; font-size: 13px; padding: 3px 0; color: var(--ink-soft); }
.hours-row span:first-child { color: var(--ink); }
.footer-bottom {
  padding-top: 32px; display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 400; flex-wrap: wrap; gap: 20px;
}
.socials { display: flex; gap: 28px; }
.socials a {
  color: var(--ink-soft); text-decoration: none;
  transition: color 0.3s ease; font-size: 11px; letter-spacing: 0.32em;
}
.socials a:hover { color: var(--terracotta-dp); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .footer-mid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-desc { grid-column: span 2; }
  /* ─── Mobile tweaks for hero + intro strip ─── */
  .hero-studio {
    height: 78vh;
    min-height: 480px;
    max-height: 700px;
  }
  .hero-studio-inner {
    padding: 0 24px;
  }
  .studio-subject { padding: 0 4px; }
  .studio-word-small { font-size: 13px; margin-bottom: 22px; }
  .studio-word-big { font-size: clamp(64px, 20vw, 160px); line-height: 0.88; }
  .studio-word-meta { margin-top: 24px; font-size: 14px; }
  .studio-floor-shadow {
    left: 15%; right: 15%; top: 60%;
    height: 50px;
  }
  .studio-plate { left: 24px; bottom: 24px; font-size: 11px; }

  .hero-intro { padding: 56px 28px 24px; }
  .hero-intro h1 { font-size: clamp(38px, 11vw, 56px); margin-bottom: 22px; }
  .hero-intro p { font-size: 15px; line-height: 1.75; margin-bottom: 32px; }
  .hero-intro .hero-ctas { flex-direction: column; max-width: 340px; }
  .hero-intro .btn { width: 100%; text-align: center; }
}

/* ─── Intro strip below the hero (universal — desktop AND mobile) ─── */
.hero-intro {
  background: var(--cream-light);
  padding: 90px 64px 60px;
  text-align: center;
  position: relative;
}
.hero-intro::before {
  content: '';
  display: block;
  width: 1px;
  height: 56px;
  background: var(--champagne);
  margin: 0 auto 40px;
  opacity: 0.7;
}
.hero-intro .hi-eyebrow {
  font-size: 10px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 26px;
  font-weight: 400;
}
.hero-intro h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 4.2vw, 62px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 auto 28px;
  max-width: 880px;
}
.hero-intro h1 em {
  font-style: italic;
  color: var(--terracotta-dp);
}
.hero-intro p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
  margin: 0 auto 40px;
  max-width: 540px;
}
.hero-intro .hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  /* Mobile: logo on the left, then [Book Now + hamburger] on the right */
  .nav-inner { padding: 16px 24px; gap: 16px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-mobile { display: block; }
  .nav-right { gap: 14px; }
  .nav-logo { font-size: 17px; letter-spacing: 0.16em; }
  .nav-logo small { font-size: 7px; letter-spacing: 0.4em; margin-top: 4px; }
  .nav-logo-img { height: 56px; } /* bumped from 44 → 56 per Cam — slight increase */
  .nav-cta { padding: 10px 18px; font-size: 9px; letter-spacing: 0.22em; }

  .hero, .hero-studio { height: calc(100vh - 90px); min-height: 600px; }
  .hero-image { background-position: 60% 50%; }
  .hero-content { left: 28px; right: 28px; bottom: 56px; }
  .hero h1 { font-size: clamp(34px, 9vw, 46px); margin-bottom: 24px; }
  .br-mob { display: inline; }
  /* Stronger single bottom scrim on mobile so the headline holds over the bright curtains */
  .hero-image::after {
    background: linear-gradient(180deg, rgba(40,30,22,0.10) 0%, rgba(40,30,22,0.16) 38%, rgba(28,20,12,0.74) 100%);
  }
  .hero p.lede { font-size: 15px; }
  .hero-ctas { gap: 10px; }
  .btn { padding: 14px 22px; font-size: 9px; letter-spacing: 0.26em; }
  .scroll-cue { display: none; }

  .hero-studio-inner { padding: 0 28px; }
  .hero-studio h1 { font-size: clamp(46px, 12vw, 70px); }
  .studio-plate { left: 28px; bottom: 32px; }

  .intro, .services, .story, .book-band {
    padding-left: 24px; padding-right: 24px;
  }
  .intro { padding-top: 100px; padding-bottom: 100px; }
  .intro-coda { margin-top: 56px; font-size: clamp(24px, 7vw, 34px); }
  .intro-coda::before { margin-bottom: 28px; }
  .services, .story, .book-band { padding-top: 100px; padding-bottom: 100px; }

  .services-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid-3 { grid-template-columns: 1fr; }
  .service-card .service-content { padding: 32px; }
  .service-card h3 { font-size: 28px; }

  /* Stat strip stacks 2x2 on tablet, then 1-col on phone */
  .stat-strip { padding: 28px 24px; }
  .stat-inner { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }

  /* Editorial pull-quotes: tighter padding, left-aligned small variant on mobile */
  .testimonial-pull { padding: 80px 24px; }
  .testimonial-pull-small { padding: 70px 24px; }
  .testimonial-pull-small .testimonial-pull-inner { text-align: left; margin-right: 0; }
  .testimonial-pull-line { padding: 50px 24px; }
  .testimonial-mark { font-size: 90px; height: 45px; }

  /* Ultraceuticals strip */
  .partner-strip { padding: 64px 24px; }

  .story-grid { grid-template-columns: 1fr; gap: 60px; }
  .story-content { padding-right: 0; }
  .story-image-wrap::after { right: -12px; bottom: -12px; left: 12px; top: 12px; }

  .book-band::before { font-size: 180px; right: -20px; bottom: -50px; }

  footer { padding: 60px 24px 28px; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 28px; padding-bottom: 40px; }
  .footer-nav { gap: 20px; }
  .footer-nav a { font-size: 10px; letter-spacing: 0.22em; }
  .footer-mid { grid-template-columns: 1fr; gap: 36px; padding: 40px 0; }
  .footer-desc { grid-column: span 1; max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 18px; }
}

@media (max-width: 480px) {
  .nav-logo { font-size: 15px; letter-spacing: 0.14em; }
  .nav-logo small { font-size: 6.5px; letter-spacing: 0.36em; }
  .nav-cta { padding: 9px 14px; font-size: 8.5px; letter-spacing: 0.2em; }
  .hero-content { bottom: 40px; }
  /* Audit fix: tightened clamp ceiling on smallest viewports — was 60px, now 52px */
  .hero h1 { font-size: clamp(30px, 8.8vw, 40px); margin-bottom: 20px; line-height: 1.05; }
  .hero-eyebrow { font-size: 10px; margin-bottom: 20px; }
  .hero p.lede { margin-bottom: 28px; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  /* Treatments header tightened too */
  .services-header h2 { font-size: clamp(34px, 9vw, 46px); }
}

/* ─────────────────────────────────────────────────────────────
   AUDIT-DRIVEN ADDITIONS · 27 May 2026
   ───────────────────────────────────────────────────────────── */

/* Consistent separator dot — spaced champagne, used everywhere */
.sep {
  display: inline-block;
  margin: 0 0.5em;
  color: var(--champagne);
  font-weight: 400;
}
/* In dark contexts the champagne reads warm-gold against cream */
.hero-eyebrow .sep,
.service-tags .sep,
.service-num .sep {
  color: var(--champagne);
  opacity: 0.85;
}

/* ─── Service card image — now <img> instead of background-image ─── */
img.service-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Tone-grading: pull stock-glam shots toward the warm, desaturated palette of the room photos.
     Less saturation, lower contrast, slight warm sepia tint, soft brightness. */
  filter: saturate(0.7) contrast(0.95) sepia(0.15) brightness(0.96);
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover img.service-img { transform: scale(1.06); }

/* ─── Hero animation — gentler infinite drift instead of finite zoom ─── */
@keyframes heroDrift {
  0%   { transform: scale(1.04) translate(0, 0); }
  50%  { transform: scale(1.08) translate(-1%, -0.5%); }
  100% { transform: scale(1.04) translate(0, 0); }
}
.hero-image { animation: heroDrift 40s ease-in-out infinite; }

/* ─── Partner strip — two-column with Ultraceuticals product photo ─── */
.partner-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.partner-image {
  position: relative;
  aspect-ratio: 5/4;
}
.partner-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.95) contrast(1.02);
}
/* Champagne accent border, sits behind the image for editorial framing */
.partner-image::after {
  content: '';
  position: absolute;
  top: 18px; right: -18px; bottom: -18px; left: 18px;
  border: 1px solid var(--champagne);
  z-index: 0;
}
.partner-image img { z-index: 1; }
.partner-copy {
  padding-right: 40px;
}
/* Partner grid as a link — whole row clickable to /products */
.partner-grid-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s ease;
}
.partner-grid-link:hover .partner-image img {
  transform: scale(1.02);
}
.partner-grid-link .partner-image img {
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.partner-cta-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--terracotta-dp);
  border-bottom: 1px solid var(--champagne);
  padding-bottom: 4px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.partner-grid-link:hover .partner-cta-link {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}
.partner-strip {
  padding: 140px 64px;
}
.partner-strip .partner-eyebrow {
  margin-bottom: 22px;
}
.partner-strip h3 {
  margin-bottom: 28px;
  text-align: left;
}
.partner-strip p {
  text-align: left;
  margin: 0;
}
.partner-inner { display: none; } /* legacy block, replaced by .partner-grid */

/* ─── 3-up testimonial grid ─── */
.testimonial-grid-section {
  background: var(--cream-light);
  padding: 140px 64px 130px;
}
.testimonial-grid-header {
  max-width: 1440px;
  margin: 0 auto 64px;
  text-align: center;
}
.tg-eyebrow {
  font-size: 10px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 22px;
  font-weight: 400;
}
.testimonial-grid-header h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 auto;
  max-width: 720px;
}
.testimonial-grid-header h2 em {
  font-style: italic;
  color: var(--terracotta-dp);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
}
.tg-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}
.tg-card:hover {
  transform: translateY(-4px);
  border-color: var(--champagne);
}
.tg-stars {
  color: var(--champagne);
  font-size: 14px;
  letter-spacing: 0.3em;
  margin-bottom: 22px;
}
.tg-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 32px;
  flex: 1;
}
.tg-meta {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tg-name {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.tg-treatment {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--terracotta-dp);
}
.tg-all-link {
  display: block;
  text-align: center;
  margin-top: 48px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--champagne);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transition: color 0.3s ease;
}
.tg-all-link:hover { color: var(--terracotta-dp); }

/* ─── Booking band — split layout with image ─── */
.book-band-image {
  padding: 0;
  background: #B8806A;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 480px;
  overflow: hidden;
}
/* Compact variant — Cam's feedback was the section reads too long and too large.
   Min-height pulled in, copy padding tightened, headline scaled down. */
.book-band-compact {
  min-height: 380px;
}
.book-band-compact .book-band-copy {
  padding: 64px 64px;
}
.book-band-compact h2 {
  font-size: clamp(34px, 4vw, 50px);
  margin-bottom: 22px;
}
.book-band-compact p {
  margin-bottom: 32px;
}
.book-band-image::before { display: none; } /* hide the old M·M monogram */
.book-band-image-side {
  position: relative;
  overflow: hidden;
  background: #F2EBDF; /* fallback that matches the photo's natural cream wall */
}
.book-band-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Brow shaping photo — face is centred slightly low, keep it in frame */
  object-position: 50% 45%;
  display: block;
  filter: saturate(0.96) contrast(1.04) brightness(1.0);
  opacity: 1;
}
.book-band-image-side::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 70%, rgba(184, 128, 106, 0.28) 100%);
  pointer-events: none;
}
.book-band-copy {
  padding: 100px 80px;
  align-self: center;
  position: relative;
}

/* ─── Instagram embed section ─── */
.ig-embed-section {
  padding: 130px 64px 100px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.ig-embed-header {
  text-align: center;
  margin-bottom: 60px;
}
.ig-embed-header .ig-eyebrow {
  font-size: 10px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 22px;
  font-weight: 400;
}
.ig-embed-header h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 18px;
}
.ig-embed-header h2 em {
  font-style: italic;
  color: var(--terracotta-dp);
}
.ig-embed-header .ig-handle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--terracotta-dp);
  text-decoration: none;
  transition: color 0.3s ease;
}
.ig-embed-header .ig-handle:hover { color: var(--terracotta); }
/* Static IG grid — six atelier tiles, all link to Instagram */
.ig-static-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}
.ig-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92);
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}
.ig-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(142, 65, 41, 0);
  transition: background 0.5s ease;
  pointer-events: none;
}
.ig-tile:hover img { transform: scale(1.04); filter: saturate(1); }
.ig-tile:hover::after { background: rgba(142, 65, 41, 0.18); }
.ig-follow-link {
  display: block;
  text-align: center;
  margin-top: 48px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--champagne);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transition: color 0.3s ease;
}
.ig-follow-link:hover { color: var(--terracotta-dp); }

/* ─── Footer enhancements ─── */
.footer-stat {
  margin-top: 16px;
  font-style: italic;
  color: var(--terracotta-dp);
  font-family: var(--serif);
  font-size: 16px;
}
.footer-contact {
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-soft);
}
.footer-contact a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.footer-contact a:hover {
  color: var(--terracotta-dp);
  border-bottom-color: var(--champagne);
}
.footer-map-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta-dp);
  text-decoration: none;
  border-bottom: 1px solid var(--champagne);
  padding-bottom: 3px;
  transition: color 0.3s ease;
}
.footer-map-link:hover { color: var(--terracotta); }
.footer-map-iframe {
  width: 100%;
  height: 200px;
  border: 1px solid var(--line);
  display: block;
  filter: grayscale(0.2) sepia(0.05);
}
.footer-legal {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ─────────────────────────────────────────────────────────────
   FOOTER — JAPONICA-CALM, LIGHT
   Centered brand, hairline-divided columns, generous breathing.
   ───────────────────────────────────────────────────────────── */
footer.footer-jap {
  background: var(--bone);
  color: var(--ink-soft);
  padding: 130px 64px 56px;
  position: relative;
}
.footer-jap-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* Brand header — centered, large breathing */
.footer-jap-header {
  text-align: center;
  margin-bottom: 90px;
}
.footer-jap-logo {
  height: 88px;
  width: auto;
  display: block;
  margin: 0 auto 22px;
  mix-blend-mode: multiply;
}
.footer-jap-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 19px);
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.footer-jap-tag .sep {
  margin: 0 0.4em;
  color: var(--champagne);
}

/* Hairline dividers */
.footer-jap-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne) 20%, var(--champagne) 80%, transparent);
  opacity: 0.7;
  margin: 0;
}

/* 3-column info */
.footer-jap-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding: 80px 0;
  text-align: center;
}
.fjc-h {
  font-size: 10px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--terracotta-dp);
  font-weight: 400;
  margin-bottom: 26px;
  font-family: var(--sans);
  font-style: normal;
}
.fjc-body {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 18px;
}
.fjc-body:last-child { margin-bottom: 0; }
.fjc-link {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
  padding-bottom: 1px;
}
.fjc-link:hover {
  color: var(--terracotta-dp);
  border-bottom-color: var(--champagne);
}
.fjc-hours { font-size: 14px; }
.fjc-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--champagne);
  vertical-align: middle;
  margin: 0 8px;
  opacity: 0.6;
}
.fjc-stats {
  font-family: var(--serif);
  font-style: italic;
  color: var(--terracotta-dp);
  font-size: 16px;
  margin-top: 6px;
}

/* Payment methods strip — sits between the 3-col info and the legal row */
.footer-payment {
  text-align: center;
  padding: 32px 0 8px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
}
.footer-payment .fp-label {
  display: inline-block;
  margin-right: 18px;
  color: var(--terracotta-dp);
}
.footer-payment .fp-list {
  display: inline-block;
}
.footer-payment .sep {
  color: var(--champagne);
  margin: 0 6px;
}

/* Legal row */
.footer-jap-legal {
  padding-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
}
.fjl-copy { white-space: nowrap; }
.fjl-links {
  display: flex;
  align-items: center;
  gap: 14px;
}
.fjl-links a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.fjl-links a:hover {
  color: var(--terracotta-dp);
  border-bottom-color: var(--champagne);
}
.fjl-links .sep {
  color: var(--champagne);
  margin: 0 4px;
}

/* Responsive */
@media (max-width: 900px) {
  footer.footer-jap { padding: 80px 24px 40px; }
  .footer-jap-header { margin-bottom: 60px; }
  .footer-jap-logo { height: 64px; margin-bottom: 18px; }
  .footer-jap-cols { grid-template-columns: 1fr; gap: 48px; padding: 56px 0; }
  .footer-jap-legal { flex-direction: column-reverse; text-align: center; gap: 18px; padding-top: 32px; }
  .fjl-links { flex-wrap: wrap; justify-content: center; }
}

/* ─────────────────────────────────────────────────────────────
   ARTICLE PAGE (privacy policy and similar)
   ───────────────────────────────────────────────────────────── */
.article-page {
  background: var(--cream-light);
  padding: 120px 24px 100px;
}
.article-inner {
  max-width: 760px;
  margin: 0 auto;
}
.article-eyebrow {
  font-size: 10px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 22px;
  font-weight: 400;
}
.article-page h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 24px;
}
.article-page h1 em { font-style: italic; color: var(--terracotta-dp); }
.article-meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.article-page h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  margin: 56px 0 18px;
  letter-spacing: -0.005em;
}
.article-page h3 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta-dp);
  margin: 32px 0 14px;
}
.article-page p, .article-page li {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink);
  font-weight: 300;
  margin-bottom: 18px;
}
.article-page ul { padding-left: 24px; margin-bottom: 24px; }
.article-page li { margin-bottom: 10px; }
.article-page a {
  color: var(--terracotta-dp);
  text-decoration: none;
  border-bottom: 1px solid var(--champagne);
  padding-bottom: 1px;
  transition: color 0.3s ease;
}
.article-page a:hover { color: var(--terracotta); }
.article-page strong { color: var(--ink); font-weight: 500; }

/* ─────────────────────────────────────────────────────────────
   JOURNAL PAGE
   ───────────────────────────────────────────────────────────── */
.journal-header {
  background: var(--cream-light);
  padding: 140px 32px 80px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.journal-header-inner {
  max-width: 800px;
  margin: 0 auto;
}
.journal-eyebrow {
  font-size: 10px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 26px;
  font-weight: 400;
}
.journal-header h1 {
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 84px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 28px;
}
.journal-header h1 em { font-style: italic; color: var(--terracotta-dp); }
.journal-header p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto;
}
.journal-grid-section {
  background: var(--cream-light);
  padding: 100px 32px 130px;
}
.journal-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.journal-card {
  background: var(--cream);
  border: 1px solid var(--line);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}
.journal-card:hover {
  transform: translateY(-4px);
  border-color: var(--champagne);
}
.journal-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.journal-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bone);
}
.journal-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.journal-card:hover .journal-card-image img {
  transform: scale(1.04);
}
.journal-card-body {
  padding: 32px 28px 32px;
}
.journal-card-meta {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--terracotta-dp);
  margin-bottom: 16px;
  font-weight: 400;
}
.journal-card h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.journal-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 22px;
}
.journal-card-cta {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--champagne);
}
.journal-card:hover .journal-card-cta {
  color: var(--terracotta-dp);
}
.journal-pagination {
  text-align: center;
  margin-top: 60px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@media (max-width: 1100px) {
  .journal-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 700px) {
  .journal-grid { grid-template-columns: 1fr; gap: 28px; }
  .journal-header { padding: 90px 24px 60px; }
  .journal-grid-section { padding: 60px 24px 80px; }
}

/* ─── Text-only journal cards (Cam's pick — no imagery) ─── */
.journal-grid-textual {
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1200px;
}
.journal-text-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--bone);
  padding: 56px 56px 48px;
  border: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}
.journal-text-card:hover {
  background: #EFE4D2;
  border-color: var(--champagne);
  transform: translateY(-3px);
}
.journal-text-card:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
}
.journal-text-meta {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--terracotta-dp);
  font-weight: 500;
  margin-bottom: 32px;
}
.journal-text-card h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin: 0 0 22px;
}
.journal-text-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  margin: 0 0 40px;
  flex: 1;
}
.journal-text-cta {
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--terracotta-dp);
  border-bottom: 1px solid var(--champagne);
  padding-bottom: 6px;
  align-self: flex-start;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.journal-text-card:hover .journal-text-cta {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}
@media (max-width: 900px) {
  .journal-grid-textual { grid-template-columns: 1fr; max-width: 720px; }
  .journal-text-card { padding: 44px 36px 40px; }
}
@media (max-width: 500px) {
  .journal-text-card { padding: 36px 28px 32px; }
  .journal-text-meta { margin-bottom: 22px; }
  .journal-text-card p { margin-bottom: 30px; }
}

/* ─────────────────────────────────────────────────────────────
   TREATMENT PAGE TEMPLATE — one layout, six instances
   ───────────────────────────────────────────────────────────── */
/* Treatment + product page heroes — typography on a deepened warm gradient.
   Cam's feedback 28/05: the previous bloom washed out the italic "& MediLUX LED" text.
   Bloom removed, base gradient deepened, and a left-side scrim keeps the H1 readable. */
.tp-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  max-height: 640px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 22% 68%, #8A7666 0%, transparent 58%),
    radial-gradient(ellipse 55% 40% at 65% 38%, rgba(170, 148, 124, 0.35) 0%, transparent 65%),
    linear-gradient(135deg, #7F6B5A 0%, #A89078 45%, #C6AC8F 100%);
}
.tp-hero-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  /* No image by default now — leave the div for the overlay layer below */
}
.tp-hero-image::after {
  content: ''; position: absolute; inset: 0;
  background:
    /* Bottom shade so type stays grounded; left-side darkening protects the H1 */
    linear-gradient(180deg, rgba(50, 38, 28, 0.06) 0%, rgba(50, 38, 28, 0.04) 40%, rgba(40, 28, 18, 0.20) 100%),
    linear-gradient(90deg, rgba(74, 63, 51, 0.4) 0%, rgba(74, 63, 51, 0.08) 60%, rgba(74, 63, 51, 0) 100%);
}
.tp-hero-content {
  position: absolute; bottom: 64px; left: 64px; right: 64px;
  z-index: 2;
  color: var(--cream-light);
  max-width: 720px;
}
.tp-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.tp-hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 28px; height: 1px; background: var(--champagne);
  vertical-align: middle; margin-right: 14px;
}
.tp-hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6.4vw, 92px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.018em;
  margin-bottom: 22px;
}
/* Italic em was washing out at the old pale --sand. Bumped to champagne and
   weight 400 so "& MediLUX LED" reads cleanly against the warm gradient. */
.tp-hero h1 em { font-style: italic; font-weight: 400; color: var(--champagne); }
.tp-hero p {
  font-size: 17px;
  line-height: 1.65;
  font-weight: 300;
  color: rgba(248, 242, 231, 0.92);
  max-width: 560px;
}

/* Body sections */
.tp-section {
  padding: 110px 64px;
  background: var(--cream-light);
}
.tp-section-inner {
  max-width: 880px;
  margin: 0 auto;
}
.tp-section.alt { background: var(--cream); }
.tp-section.bone { background: var(--bone); }
.tp-section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 22px;
  font-weight: 400;
}
.tp-section h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 32px;
}
.tp-section h2 em { font-style: italic; color: var(--terracotta-dp); }
.tp-section h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin: 28px 0 10px;
}
.tp-section p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 22px;
}
.tp-section ul { padding-left: 24px; margin-bottom: 22px; }
.tp-section li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 10px;
}
.tp-section strong { color: var(--ink); font-weight: 500; }
.tp-section a {
  color: var(--terracotta-dp);
  text-decoration: none;
  border-bottom: 1px solid var(--champagne);
  padding-bottom: 1px;
}
.tp-section a:hover { color: var(--terracotta); }

/* Split section (image left, copy right) */
.tp-split {
  padding: 110px 64px;
  background: var(--cream-light);
}
.tp-split-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.tp-split-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  z-index: 2;
}
.tp-split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(0.96) sepia(0.1);
}
.tp-split-image-wrap {
  position: relative;
}
.tp-split-image-wrap::after {
  content: ''; position: absolute;
  top: 22px; right: -22px; bottom: -22px; left: 22px;
  border: 1px solid var(--champagne);
  z-index: 1;
}

/* Before/after gallery placeholder */
.tp-gallery {
  padding: 100px 64px;
  background: var(--bone);
  text-align: center;
}
.tp-gallery-inner { max-width: 1280px; margin: 0 auto; }
.tp-gallery h2 { margin-bottom: 18px; }
.tp-gallery > .tp-gallery-inner > p {
  max-width: 540px; margin: 0 auto 48px;
  font-size: 15px; line-height: 1.7;
  color: var(--ink-soft); font-style: italic;
}
.tp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tp-gallery-tile {
  aspect-ratio: 1;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.tp-gallery-tile::after {
  content: 'Portfolio photograph';
  opacity: 0.5;
}
/* Gallery sub-nav (jump links) + grouped galleries by treatment type */
.tp-gallery-nav {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 10px 28px; margin: 0 auto 48px;
}
.tp-gallery-nav a {
  font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--terracotta-dp); text-decoration: none;
  border-bottom: 1px solid var(--champagne); padding-bottom: 4px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.tp-gallery-nav a:hover { color: var(--terracotta); border-bottom-color: var(--terracotta); }
.tp-gallery-group { margin-top: 64px; }
.tp-gallery-group:first-of-type { margin-top: 0; }
.tp-gallery-group > h3 {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 24px; color: var(--terracotta-dp); margin-bottom: 24px;
  text-align: center;
}
/* Labelled image placeholder for sections awaiting a real photo */
.tp-img-slot {
  aspect-ratio: 16/10;
  background: var(--bone);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 15px;
  color: var(--ink-soft); letter-spacing: 0.04em; text-align: center;
  margin: 8px 0 22px; padding: 24px;
}
/* Filled gallery tiles (real photos cover the placeholder label) */
.tp-gallery-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.tp-gallery-tile:has(img)::after { display: none; }
/* Before/after layouts for wide composite images */
.tp-ba-stack img { width: 100%; display: block; margin: 0 0 16px; border: 1px solid var(--line); }
.tp-ba-stack img:last-child { margin-bottom: 0; }
.tp-ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.tp-ba-grid img { width: 100%; display: block; border: 1px solid var(--line); }

/* Booking CTA band */
.tp-cta-band {
  padding: 120px 64px;
  background: #B8806A;
  color: var(--cream-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tp-cta-band h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--cream-light);
}
.tp-cta-band h2 em { font-style: italic; color: var(--cream); }
.tp-cta-band p {
  max-width: 540px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(248, 242, 231, 0.92);
}
.tp-cta-band .btn {
  background: var(--cream-light);
  color: var(--ink);
  border-color: var(--cream-light);
}
.tp-cta-band .btn:hover {
  background: var(--ink);
  color: var(--cream-light);
  border-color: var(--ink);
}

/* ─── Product page additions ─── */
.tp-section-tinted { background: var(--bone); }

.product-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 56px auto 0;
}
.product-cat {
  padding: 36px 28px 32px;
  background: var(--cream-light);
  border: 1px solid var(--line);
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.product-cat:hover {
  border-color: var(--champagne);
  transform: translateY(-3px);
}
.product-cat-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--terracotta-dp);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.product-cat h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 12px;
}
.product-cat p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
  margin: 0;
}

.product-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 56px auto 0;
}
.product-path {
  padding: 40px 32px;
  border-top: 1px solid var(--champagne);
  display: flex;
  flex-direction: column;
  /* Body copy length differs across the three cards — flex pushes the CTA to the bottom
     so "Reserve", "Facials menu" and "Email the atelier" line up on the same horizontal. */
}
.product-path-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--terracotta-dp);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 16px;
}
.product-path h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.product-path p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  margin: 0 0 28px;
  flex: 1; /* push the link down so all 3 CTAs share the same baseline */
}
.product-path-link {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta-dp);
  text-decoration: none;
  border-bottom: 1px solid var(--champagne);
  padding-bottom: 4px;
  align-self: flex-start;
  margin-top: auto;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.product-path-link:hover {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}

@media (max-width: 1100px) {
  .product-cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .product-cat-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-paths { grid-template-columns: 1fr; gap: 0; margin-top: 40px; }
  .product-path { padding: 32px 0; }
}

/* "Current" page indicator in nav */
.nav-links a.nav-current {
  color: var(--terracotta-dp);
}

/* Related treatments strip */
.tp-related {
  padding: 100px 64px;
  background: var(--cream);
  text-align: center;
  border-top: 1px solid var(--line);
}
.tp-related .tp-section-eyebrow { margin-bottom: 32px; }
.tp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.tp-related-card {
  display: block;
  padding: 32px 24px;
  background: var(--cream-light);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.tp-related-card:hover {
  border-color: var(--champagne);
  transform: translateY(-3px);
}
.tp-related-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--terracotta-dp);
  margin-bottom: 10px;
  display: block;
}
.tp-related-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
}

@media (max-width: 900px) {
  .tp-hero { height: 50vh; min-height: 380px; }
  .tp-hero-content { left: 28px; right: 28px; bottom: 48px; }
  .tp-hero h1 { font-size: clamp(40px, 11vw, 64px); }
  .tp-section, .tp-split, .tp-gallery, .tp-cta-band, .tp-related { padding-left: 24px; padding-right: 24px; }
  .tp-section, .tp-split, .tp-gallery, .tp-cta-band, .tp-related { padding-top: 80px; padding-bottom: 80px; }
  .tp-split-inner { grid-template-columns: 1fr; gap: 48px; }
  .tp-split-image-wrap::after { right: -12px; bottom: -12px; left: 12px; top: 12px; }
  .tp-gallery-grid { grid-template-columns: 1fr; gap: 12px; }
  .tp-related-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ─── Responsive: audit-driven additions ─── */
@media (max-width: 1100px) {
  .partner-grid { grid-template-columns: 1fr; gap: 60px; }
  .partner-copy { padding-right: 0; text-align: center; }
  .partner-strip h3, .partner-strip p { text-align: center; }
  .partner-image::after { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 20px; max-width: 640px; }
  .book-band-image { grid-template-columns: 1fr; min-height: 0; }
  .book-band-image-side { aspect-ratio: 16/9; }
  .book-band-image-side::after { display: none; }
  .book-band-copy { padding: 80px 32px; text-align: center; }
}

@media (max-width: 900px) {
  .partner-strip { padding: 90px 24px; }
  .testimonial-grid-section { padding: 90px 24px; }
  .testimonial-grid-header { margin-bottom: 48px; }
  .tg-card { padding: 32px 28px 28px; }
  .ig-embed-section { padding: 90px 24px 70px; }
  .ig-static-grid { grid-template-columns: repeat(3, 1fr); }
  .book-band-copy { padding: 70px 24px; }
}

/* ──────────────────────────────────────────────────────────────
   MOBILE FIXES — Cam's 28/05 feedback
   1. Hide the announcement banner
   2. Stop horizontal scroll caused by oversized image overlays
   3. Tidy the footer legal + payment rows so nothing bleeds off
   4. Trim the feature testimonial attribution to Name + Verified Google review
   ────────────────────────────────────────────────────────────── */
@media (max-width: 700px) {

  /* 1. Announcement banner — hidden on mobile (used to wrap to 3 lines) */
  .announce { display: none; }

  /* 2. Hard cap horizontal scroll. Story image overlay was bleeding off the right edge. */
  html, body { overflow-x: clip; max-width: 100vw; }
  .story-image-wrap::after {
    top: 12px; right: -8px; bottom: -12px; left: 8px;
  }
  /* Belt-and-braces: any descendant that pushes wider than the viewport is clipped */
  body > * { max-width: 100vw; }

  /* 3. Footer — legal row + payment row stacked, centred, no bleed */
  .footer-jap-legal {
    flex-direction: column-reverse;
    gap: 18px;
    text-align: center;
    align-items: center;
  }
  /* Copyright + ABN was running off the right edge on a single line.
     The desktop rule sets white-space: nowrap — override here so the line wraps,
     hide the inline separator, and cap the column width so wrap happens cleanly. */
  .fjl-copy {
    white-space: normal;
    text-align: center;
    line-height: 1.9;
    font-size: 10px;
    letter-spacing: 0.1em;
    max-width: none;
    margin: 0 auto;
  }
  .fjl-copy .sep { display: none; }
  .fjl-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    font-size: 9px;
    letter-spacing: 0.2em;
    line-height: 1.6;
  }
  .fjl-links a, .fjl-links .sep { white-space: nowrap; }
  .footer-payment {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .fp-list {
    line-height: 2;
    font-size: 10px;
    letter-spacing: 0.22em;
  }

  /* 4. Feature pull-quote attribution: hide the treatment middle bit, keep Name + Verified */
  .testimonial-meta .tm-mobile-hide { display: none; }
}
