/* ─────────────────────────────────────────────────────────────
   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; }

body {
  font-family: var(--sans);
  background: var(--cream-light);
  color: var(--ink);
  line-height: 1.5;
  font-weight: 300;
  overflow-x: hidden;
  -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;
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.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;
}
/* Image logo (preferred — uses Cam's actual logo file) */
.nav-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  /* Blend mode hides the solid cream background of the PNG against our cream page */
  mix-blend-mode: multiply;
}
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.nav-right { display: flex; justify-content: flex-end; align-items: center; gap: 28px; }
.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; padding: 90px 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 li { border-bottom: 1px solid var(--line); }
.nav-mobile 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 a:hover { color: var(--terracotta-dp); padding-left: 8px; }
.nav-mobile-cta {
  margin-top: 40px; display: block;
  background: var(--terracotta); color: var(--cream-light);
  padding: 18px; text-align: center; text-decoration: none;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 400;
}
.nav-mobile-meta {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 13px; 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: 6px; font-size: 15px;
}

/* ─── 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;
}
/* Cam's own atelier shot — arched mirror + boucle chair */
.hero-atelier .hero-image {
  background-image: url('assets/arched-mirror.jpg');
  background-position: 50% 55%;
}
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(74, 63, 51, 0.15) 0%, rgba(74, 63, 51, 0.1) 30%, rgba(74, 63, 51, 0.72) 100%),
    linear-gradient(90deg, rgba(74, 63, 51, 0.6) 0%, rgba(74, 63, 51, 0.15) 60%, rgba(74, 63, 51, 0) 100%);
}
.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;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 8.5vw, 124px);
  font-weight: 300; line-height: 0.95; letter-spacing: -0.018em;
  margin-bottom: 36px; opacity: 0;
  animation: fadeUp 1.4s 0.5s ease-out forwards;
}
.hero h1 em { font-style: italic; font-weight: 300; color: var(--sand); }
.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;
}
.stat-label {
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
}

/* ─── 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 — full-width, big serif, sits between sections as a feature */
.testimonial-pull-large {
  background: var(--bone);
}
.testimonial-pull-large .testimonial-text {
  font-size: clamp(28px, 3.6vw, 46px);
  max-width: 920px;
}

/* 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); }
.intro-body { max-width: 580px; margin: 0 auto; }
.intro-body p {
  font-size: 16px; line-height: 1.9;
  color: var(--ink-soft); font-weight: 300; margin-bottom: 26px;
}
.intro-body p:last-of-type { margin-bottom: 0; }
.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; }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  max-width: 1440px; margin: 0 auto 80px; gap: 60px;
}
.services-header h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300; line-height: 1.05; letter-spacing: -0.01em; color: var(--ink);
}
.services-header h2 em { font-style: italic; color: var(--terracotta-dp); }
.services-header p {
  max-width: 360px; font-size: 15px; line-height: 1.8;
  color: var(--ink-soft); padding-bottom: 12px; font-weight: 300;
}
.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); }
}
.service-card {
  position: relative; overflow: hidden;
  background: var(--cream); aspect-ratio: 4/5; cursor: pointer;
}
.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;
  background: linear-gradient(180deg, rgba(74, 63, 51, 0.1) 0%, rgba(74, 63, 51, 0.2) 50%, rgba(74, 63, 51, 0.72) 100%);
  transition: background 0.6s ease;
}
.service-card:hover .service-overlay {
  background: linear-gradient(180deg, rgba(142, 65, 41, 0.2) 0%, rgba(74, 63, 51, 0.4) 50%, rgba(74, 63, 51, 0.82) 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;
}

/* ─── 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-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) {
  .nav-inner { grid-template-columns: auto 1fr auto; padding: 16px 24px; gap: 16px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; justify-self: start; }
  .nav-mobile { display: block; }
  .nav-logo { font-size: 17px; letter-spacing: 0.16em; }
  .nav-logo small { font-size: 7px; letter-spacing: 0.4em; margin-top: 4px; }
  .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(48px, 13vw, 76px); margin-bottom: 28px; }
  .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(40px, 13vw, 52px); margin-bottom: 22px; line-height: 1; }
  .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;
  filter: saturate(0.95);
  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-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;
}
.book-band-image::before { display: none; } /* hide the old M·M monogram */
.book-band-image-side {
  position: relative;
  overflow: hidden;
}
.book-band-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}
.book-band-image-side::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(184, 128, 106, 0.4) 100%);
}
.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); }
.lightwidget-widget {
  max-width: 1440px;
  margin: 0 auto;
  display: block;
}
/* Fallback grid — visible if iframe doesn't render (placeholder widget ID) */
.ig-fallback-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}
.ig-fallback-tile {
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, var(--bone) 25%, transparent 25%, transparent 50%, var(--bone) 50%, var(--bone) 75%, transparent 75%) 0 0 / 12px 12px,
    var(--cream-light);
  position: relative;
}
.ig-fallback-tile::after {
  content: 'Instagram feed';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic;
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  opacity: 0;
}
.ig-fallback-tile:nth-child(2)::after,
.ig-fallback-tile:nth-child(5)::after {
  opacity: 0.7;
}

/* ─── 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);
}

/* ─── 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-fallback-grid { grid-template-columns: repeat(3, 1fr); }
  .book-band-copy { padding: 70px 24px; }
}

