/* ------------------------------------------------------------------ 1. TOKENS */
:root {
  /* Palette sampled directly from the Snatched Body by Flo hero banner.
     The site is deliberately light throughout — there are no dark section
     backgrounds. Emphasis comes from the coral, not from darkness. */
  --ink:          #131822;   /* headline navy-black, as on the banner */
  --ink-soft:     #303643;
  --ink-mute:     #5F646E;   /* body/secondary text (5.3:1 on the pink wash) */
  --bg-page:      #FAFAFA;   /* the banner's off-white ground */
  --bg-alt:       #FBEEF0;   /* the banner's pink benefit strip */
  --tint:         #FDF6F7;   /* the palest pink, for large washes */
  --coral:        #FC5D5E;   /* the banner's headline coral — decorative */
  --coral-deep:   #F5443D;   /* the product-box red */
  --coral-btn:    #D33A42;   /* button background with white text (4.7:1) */
  --coral-btn-hover:#B92F37;
  --coral-ink:    #BF313B;   /* coral text and links on light (5.0:1 on pink, 5.7:1 on white) */
  --coral-soft:   #FBDCDE;
  --line:         #EDDFE1;   /* warm hairline that suits the pink wash */
  --white:        #FFFFFF;

  /* Contrast note: --coral and --coral-deep are decorative only — they are the
     banner's true brand reds but sit at ~3.3:1 against white, below the WCAG AA
     threshold for text. Anything readable uses --coral-ink, and buttons use
     --coral-btn. Please keep that split if you adjust these values. */

  /* Semantic */
  --bg:           var(--bg-page);
  --fg:           var(--ink);
  --muted:        var(--ink-mute);
  --accent:       var(--coral-btn);
  --accent-warm:  var(--coral);

  /* Type */
  /* The banner and the logo wordmark both use a bold geometric sans, so the
     headings follow suit rather than reaching for a serif. */
  --font-display: "Montserrat", "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body:    "Jost", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.14vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.09rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.45rem);
  --step-2:  clamp(1.45rem, 1.3rem + 0.75vw, 1.95rem);
  --step-3:  clamp(1.8rem, 1.5rem + 1.4vw, 2.7rem);
  --step-4:  clamp(2.2rem, 1.7rem + 2.4vw, 3.9rem);
  --step-5:  clamp(2.6rem, 1.8rem + 3.6vw, 5rem);

  /* Space */
  --sp-1: 0.5rem;
  --sp-2: 0.875rem;
  --sp-3: 1.25rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4.5rem;
  --sp-7: 6.5rem;

  /* Shape */
  --radius:    14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(19, 24, 34, 0.05);
  --shadow:    0 12px 34px -14px rgba(19, 24, 34, 0.20);
  --shadow-lg: 0 28px 70px -30px rgba(19, 24, 34, 0.35);

  /* The banner is 1717px wide; the page is sized to sit comfortably inside it
     so the hero can run edge to edge without being scaled down. */
  --container: 1500px;
  --container-text: 1180px;   /* prose stays readable at a narrower measure */
  --header-h:  76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------------------------------------------------ 2. RESET */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.7;
  font-weight: 350;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--coral-btn);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* ------------------------------------------------------------- 3. TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.022em;
  text-wrap: balance;
  margin: 0 0 var(--sp-3);
  color: var(--ink);
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p  { margin: 0 0 var(--sp-3); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral-ink);
  margin: 0 0 var(--sp-2);
  display: block;
}

.lead {
  font-size: var(--step-1);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
}

.script {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--coral-ink);
}

.rule {
  width: 54px;
  height: 1px;
  background: var(--coral);
  border: 0;
  margin: var(--sp-3) 0;
}
.rule--center { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------- 4. LAYOUT */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.container--text   { width: min(100% - 3rem, var(--container-text)); margin-inline: auto; }
.container--narrow { width: min(100% - 2.5rem, 800px); }

.section        { padding: var(--sp-6) 0; }
.section--tight { padding: var(--sp-5) 0; }
.section--alt   { background: var(--bg-alt); }
.section--tinted { background: linear-gradient(160deg, var(--tint), var(--bg-alt)); }
.section--dark  { background: linear-gradient(165deg, var(--tint) 0%, var(--bg-alt) 100%); color: var(--ink); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--ink); }
.section--dark .lead { color: var(--ink-soft); }

.section-head { max-width: 640px; margin-bottom: var(--sp-5); }
.section-head--center { margin-inline: auto; text-align: center; }

.grid { display: grid; gap: var(--sp-4); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.split {
  display: grid;
  gap: var(--sp-5);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .split--wide-left  { grid-template-columns: 1.15fr 0.85fr; }
  .split--wide-right { grid-template-columns: 0.85fr 1.15fr; }
}

/* --------------------------------------------------------------- 5. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease),
              color 0.3s var(--ease), border-color 0.3s var(--ease),
              box-shadow 0.35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* One filled button and one outline, as on the banner. No dark fills. */
.btn--primary {
  background: var(--coral-btn);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--coral-btn-hover); box-shadow: var(--shadow); }

.btn--accent {
  background: var(--coral-btn);
  color: var(--white);
}
.btn--accent:hover { background: var(--coral-btn-hover); box-shadow: var(--shadow); }

.btn--outline {
  border-color: var(--coral-btn);
  color: var(--coral-ink);
  background: var(--white);
}
.btn--outline:hover { background: var(--coral-btn); color: var(--white); border-color: var(--coral-btn); }

/* Secondary action on a light ground — quiet, neutral outline. */
.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}
.btn--ghost:hover { border-color: var(--ink); background: var(--white); color: var(--ink); }

.btn--sm  { padding: 0.65rem 1.3rem; min-height: 42px; font-size: 0.7rem; }
.btn--full { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--coral);
  padding-bottom: 3px;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow:hover { gap: 0.8rem; color: var(--coral-ink); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.btn-row--center { justify-content: center; }

/* ---------------------------------------------------------------- 6. HEADER */
.topbar {
  background: var(--bg-alt);
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-height: 38px;
  flex-wrap: wrap;
  text-align: center;
  padding: 0.4rem 0;
}
.topbar a:hover { color: var(--coral-ink); }
.topbar__dot { color: var(--coral-ink); opacity: 0.6; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.93);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(19, 24, 34, 0.5);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.brand__mark { width: 48px; height: auto; max-height: 48px; flex-shrink: 0; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.brand__tag {
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coral-ink);
  margin-top: 3px;
}

.nav { display: none; }
@media (min-width: 1080px) {
  .nav { display: flex; align-items: center; gap: 1.15rem; }
}
@media (min-width: 1360px) {
  .nav { gap: 1.5rem; }
}
.nav__link {
  position: relative;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  transition: color 0.25s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--coral-ink);
  transition: width 0.35s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { width: 100%; }
.nav__link[aria-current="page"] { color: var(--ink); }

.header__actions { display: flex; align-items: center; gap: 0.8rem; }

.langswitch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
}
.langswitch a { padding: 0.2rem 0.15rem; }
.langswitch a:hover { color: var(--coral-ink); }
.langswitch [aria-current="true"] { color: var(--ink); font-weight: 500; }
.langswitch__sep { color: var(--muted); opacity: 0.55; }

.header .btn--book { display: none; }
@media (min-width: 720px) { .header .btn--book { display: inline-flex; } }

/* Mobile menu */
.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 0 11px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}
@media (min-width: 1080px) { .burger { display: none; } }
.burger span {
  display: block; height: 1.5px; width: 100%;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.2s;
}
.burger[aria-expanded="true"] span:nth-child(1),
.drawer .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2),
.drawer .burger span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3),
.drawer .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--bg-page);
  padding: var(--sp-4) 0 var(--sp-6);
  overflow-y: auto;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.5s var(--ease), visibility 0.5s;
}
.drawer.is-open { transform: translateY(0); visibility: visible; }
.drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--sp-4); }
.drawer__nav { display: flex; flex-direction: column; }
.drawer__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.25s, padding-left 0.3s var(--ease);
}
.drawer__link:hover { color: var(--coral-ink); padding-left: 0.5rem; }
.drawer__foot { margin-top: var(--sp-4); display: grid; gap: var(--sp-2); }
.drawer__meta { font-size: 0.85rem; color: var(--muted); }

/* Floating mobile book button */
.book-float {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(120%);
  z-index: 90;
  box-shadow: var(--shadow-lg);
  transition: transform 0.45s var(--ease);
  width: min(92%, 460px);
}
.book-float.is-visible { transform: translateX(-50%) translateY(0); }
@media (min-width: 1080px) { .book-float { display: none; } }

/* ------------------------------------------------------------------ 7. HERO */
/* Two heroes, one message.
   From 720px up, the studio's banner artwork runs edge to edge exactly as
   designed. Below that its baked-in text would be far too small to read, so
   phones get the same headline as live HTML over a text-free crop of the same
   photography. The call to action underneath is real on both. */
.hero {
  position: relative;
  background: var(--bg-page);
  overflow: hidden;
}

.hero__banner { display: none; }
@media (min-width: 720px) {
  .hero__banner {
    display: block;
    width: 100%;
    max-width: 1717px;
    margin-inline: auto;
  }
  .hero__banner img { width: 100%; height: auto; display: block; }
  .hero__phone { display: none; }
}

/* ---- phone layout ---- */
.hero__phone { padding: var(--sp-4) 0 0; }
.hero__logo {
  width: min(62vw, 260px);
  height: auto;
  margin: 0 auto var(--sp-3);
}
.hero__phone h2 {
  font-size: clamp(1.75rem, 1.15rem + 3.6vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: var(--sp-3);
}
.hero__line2 { color: var(--coral-ink); display: block; }
.hero__dash {
  width: 54px; height: 3px;
  background: var(--coral);
  border: 0; border-radius: 2px;
  margin: 0 auto var(--sp-3);
}
.hero__sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 34ch;
  margin: 0 auto var(--sp-4);
}
.hero__sub strong { font-weight: 500; color: var(--ink); }
.hero__photo {
  margin-top: var(--sp-4);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.hero__photo img { width: 100%; height: auto; display: block; }

/* ---- shared action bar ---- */
.hero__actions {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--sp-3) 0;
}
.hero__actions-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2) var(--sp-4);
  text-align: center;
}
.hero__actions .btn-row { justify-content: center; }
.hero__note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.hero__note svg { color: var(--coral-ink); flex-shrink: 0; }

/* Show a block on phones only (the banner already carries it on desktop). */
.only-phone { display: block; }
@media (min-width: 720px) { .only-phone { display: none; } }

/* Page hero (interior pages) */
.pagehero {
  background: linear-gradient(165deg, var(--tint) 0%, var(--bg-alt) 70%, var(--bg-page) 100%);
  padding: var(--sp-6) 0 var(--sp-5);
  text-align: center;
}
.pagehero--dark { background: linear-gradient(165deg, var(--coral-soft), var(--bg-alt)); color: var(--ink); }
.pagehero--dark h1 { color: var(--ink); }
.pagehero--dark .lead { color: var(--ink-soft); }
.pagehero .lead { max-width: 62ch; margin-inline: auto; }

.crumbs {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: var(--sp-2);
}
.crumbs a:hover { color: var(--coral-btn); }
.crumbs span { color: var(--muted); opacity: 0.6; padding: 0 0.4rem; }

/* ------------------------------------------------------- 8. TRUST / STRIPS */
.trust {
  background: var(--bg-alt);
  color: var(--ink);
  padding: var(--sp-4) 0;
}
.trust__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--sp-3);
  list-style: none;
  margin: 0; padding: 0;
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  padding: 0 var(--sp-2);
  position: relative;
}
/* Hairline dividers between the columns, as on the banner. */
.trust__item + .trust__item::before {
  content: "";
  position: absolute;
  left: 0; top: 12%;
  width: 1px; height: 76%;
  background: var(--line);
}
@media (max-width: 719px) {
  .trust__item + .trust__item::before { display: none; }
}
.trust__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--coral-ink);
  line-height: 1.25;
}
.trust__note {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--ink-soft);
}
.trust__item svg { color: var(--coral-ink); flex-shrink: 0; }

.marquee-note {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--step-2);
  color: var(--coral);
}

/* --------------------------------------------------------------- 9. CARDS */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--tint);
}
.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, var(--tint), var(--bg-alt));
  overflow: hidden;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.card:hover .card__media img { transform: scale(1.05); }
.card__tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
}
.card__body {
  padding: var(--sp-3) var(--sp-3) var(--sp-3);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}
.card__title { margin: 0; font-size: var(--step-1); }
.card__excerpt { color: var(--muted); font-size: 0.94rem; margin: 0; flex: 1; }
.card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.7rem;
  margin-top: 0.3rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.card__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: 0;
}
.card__price small { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); display: block; }
.card__actions { display: flex; gap: 0.5rem; margin-top: 0.85rem; }
.card__actions .btn { flex: 1; }

/* Package cards */
.pkg {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-3);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pkg:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pkg--feature { background: var(--coral-btn); color: var(--white); border-color: var(--coral-btn); }
.pkg--feature h3 { color: var(--bg-page); }
.pkg--feature .pkg__blurb { color: rgba(255,255,255,0.86); }
.pkg__num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--coral-ink);
}
.pkg--feature .pkg__num { color: var(--white); }
.pkg__label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.pkg--feature .pkg__label { color: rgba(255,255,255,0.75); }
.pkg__blurb { color: var(--muted); font-size: 0.92rem; flex: 1; }
.pkg__badge {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--coral-btn);
  color: var(--white);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.pkg-wrap { position: relative; }

/* Feature list */
.features { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.features li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.features svg { flex-shrink: 0; margin-top: 5px; color: var(--coral-ink); }
.section--dark .features svg,
.product-hero .features svg { color: var(--coral-ink); }
.section--dark .features li { color: var(--ink-soft); }

/* Stat / info tiles */
.tiles { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.tile { background: var(--white); padding: var(--sp-3); text-align: center; }
.tile__k { font-family: var(--font-display); font-size: var(--step-2); color: var(--ink); }
.tile__v { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* Placeholder frames (gallery / photos awaiting upload) */
.placeholder {
  aspect-ratio: 4 / 5;
  border: 1.5px dashed var(--coral);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(231,243,255,0.7), rgba(228,230,235,0.7));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  padding: var(--sp-3);
  color: #4B4E52;   /* darker than --ink-mute so the label clears AA on the tint */
}
.placeholder__icon { color: var(--coral); }
.placeholder__label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; }

/* Editable placeholder (About page) */
.editable {
  background: rgba(252, 93, 94, 0.10);
  border-left: 3px solid var(--coral);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.editable__key {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-ink);
  display: block;
  margin-bottom: 0.35rem;
}
.editable__hint { color: var(--muted); font-size: 0.92rem; font-style: italic; margin: 0; }

/* Accordion (FAQ) */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__h { margin: 0; font-size: inherit; font-weight: inherit; }
.acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: 1.35rem 0;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.02rem, 0.98rem + 0.2vw, 1.15rem);
  color: var(--ink);
  transition: color 0.25s;
}
.acc__btn:hover { color: var(--coral-ink); }
.acc__icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  position: relative;
}
.acc__icon::before, .acc__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 13px; height: 1.5px;
  background: var(--coral-ink);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease);
}
.acc__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc__btn[aria-expanded="true"] .acc__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.acc__panel > div { overflow: hidden; }
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__panel p { padding-bottom: 1.35rem; color: var(--ink-soft); max-width: 72ch; }

/* Testimonials */
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.quote__mark { font-family: Georgia, serif; font-size: 3rem; line-height: 0.6; color: var(--coral-soft); }
.quote__text { font-family: var(--font-display); font-weight: 500; font-size: var(--step-1); line-height: 1.5; color: var(--ink); }
.quote__who { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: auto; }

.empty-state {
  text-align: center;
  padding: var(--sp-5) var(--sp-3);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-lg);
  color: var(--muted);
}
.empty-state__title { font-family: var(--font-display); font-size: var(--step-2); color: var(--ink-soft); margin-bottom: 0.5rem; }

/* Product / DiabyControl */
.product-hero {
  background: linear-gradient(150deg, var(--tint) 0%, var(--bg-alt) 65%, var(--coral-soft) 100%);
  color: var(--ink);
  padding: var(--sp-6) 0;
}
.product-hero h1,
.product-hero h2,
.product-hero h3 { color: var(--ink); }
.product-hero .lead { color: var(--ink-soft); }
.badge-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--coral-btn);
  border: 1px solid var(--coral-btn);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
}
.badge-soon::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--white);
}

.ingredient {
  display: grid;
  gap: 0.4rem;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .ingredient { grid-template-columns: 220px 120px 1fr; align-items: baseline; gap: var(--sp-3); }
}
.ingredient__name { font-family: var(--font-display); font-weight: 600; font-size: clamp(1rem, 0.96rem + 0.2vw, 1.12rem); }
.ingredient__amt {
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  color: var(--coral-ink);
  font-weight: 500;
}
.ingredient__about { color: var(--muted); font-size: 0.94rem; }

.notice {
  border: 1px solid var(--coral);
  background: rgba(252, 93, 94, 0.09);
  border-radius: var(--radius);
  padding: var(--sp-3);
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.notice strong { color: var(--ink); }
.notice--dark { border-color: var(--coral); background: var(--white); color: var(--ink-soft); }
.notice--dark strong { color: var(--coral-ink); }

/* CTA band */
.cta-band {
  background: linear-gradient(140deg, var(--tint) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  right: -140px; top: -180px;
  background: radial-gradient(circle, rgba(252,93,94,0.20), transparent 68%);
  pointer-events: none;
}
.cta-band h2 { color: var(--ink); position: relative; }
.cta-band p { color: var(--ink-soft); max-width: 58ch; margin-inline: auto; position: relative; }
.cta-band .btn-row { position: relative; margin-top: var(--sp-3); }

/* ---------------------------------------------------------------- 10. FORMS */
.form { display: grid; gap: var(--sp-3); }
.form-row { display: grid; gap: var(--sp-3); grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: 0.4rem; }
.field label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.field label .opt { color: var(--muted); text-transform: none; letter-spacing: 0; font-weight: 300; }

.input, .textarea, .select {
  width: 100%;
  padding: 0.9rem 1rem;
  min-height: 50px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--coral-ink);
  box-shadow: 0 0 0 3px rgba(204, 55, 66, 0.20);
}
.textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23BF313B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
  cursor: pointer;
}
.check input {
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 2px;
  accent-color: var(--coral-btn);
}

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert {
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.94rem;
  border: 1px solid;
}
.alert--ok    { background: #E7F5E9; border-color: #B7DFBC; color: #1B5E20; }
.alert--error { background: #FCEDEC; border-color: #F0C4C0; color: #B3261E; }

.newsletter { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.newsletter .input { flex: 1; min-width: 200px; }

/* --------------------------------------------------------------- 11. FOOTER */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  padding: var(--sp-6) 0 var(--sp-3);
  font-size: 0.92rem;
}
.footer a { color: var(--ink-soft); transition: color 0.25s; }
.footer a:hover { color: var(--coral-ink); }
.footer h2 {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
  font-weight: 500;
  line-height: 1.4;
}
.footer__grid {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.footer__brandcol { grid-column: span 1; }
@media (min-width: 900px) { .footer__brandcol { grid-column: span 2; max-width: 340px; } }
.footer__brand-name { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }
.footer__brand-tag { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--coral-ink); margin-top: 0.4rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer__contact { display: grid; gap: 0.5rem; margin-top: var(--sp-3); }

.socials { display: flex; gap: 0.6rem; margin-top: var(--sp-3); }
.socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.socials a:hover { background: var(--coral-btn); border-color: var(--coral-btn); color: var(--white); transform: translateY(-2px); }

.footer__bottom {
  margin-top: var(--sp-5);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-4);
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--ink-mute);
}
.footer__disclaimer {
  margin-top: var(--sp-3);
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--ink-mute);
  max-width: 76ch;
}

/* ------------------------------------------------------------ 12. UTILITIES */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mb-0 { margin-bottom: 0; }
.mb-3 { margin-bottom: var(--sp-3); }
.mb-4 { margin-bottom: var(--sp-4); }
.muted { color: var(--muted); }
.small { font-size: 0.86rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.ratio-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, var(--tint), var(--bg-alt));
}
.ratio-photo img { width: 100%; height: 100%; object-fit: cover; }
.ratio-wide { aspect-ratio: 16 / 10; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(150deg, var(--tint), var(--bg-alt)); }
.ratio-wide img, .ratio-wide iframe { width: 100%; height: 100%; object-fit: cover; border: 0; }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 9; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.hours-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.1rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .is-today { color: var(--ink); font-weight: 500; }
.hours-list .is-today .day::after {
  content: "•";
  color: var(--coral-btn);
  margin-left: 0.4rem;
}
.footer .hours-list li { border-bottom-color: var(--line); }
/* Today's row is emphasised in ink on every surface now that the footer is light. */
.footer .hours-list .is-today,
.section--dark .hours-list .is-today { color: var(--ink); }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid;
}
.status-pill--open   { color: #1B5E20; border-color: #B7DFBC; background: #E7F5E9; }
.status-pill--closed { color: var(--muted); border-color: var(--line); background: var(--bg-alt); }
.status-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ------------------------------------------------- 13. MOTION & RESPONSIVE */
/* Scroll reveal.
   Scoped to .js so that if JavaScript is disabled, blocked, or fails to load,
   every section is simply visible. Content must never depend on JS to appear. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Very narrow phones: the brand lockup, language switch and menu button
   together are wider than the viewport, so the wordmark tightens up. */
@media (max-width: 420px) {
  .header__inner { gap: var(--sp-2); }
  .brand { gap: 0.5rem; }
  .brand__name { font-size: 0.86rem; }
  .brand__tag { display: none; }
  .langswitch { font-size: 0.66rem; gap: 0.2rem; }
  .burger { width: 42px; height: 42px; padding: 0 10px; }
  .topbar__inner { gap: 0.2rem 0.9rem; }
}

@media (max-width: 720px) {
  :root { --sp-6: 3.25rem; --sp-7: 4rem; }
  .hero { min-height: auto; }
  .hero__inner { padding: var(--sp-6) 0 var(--sp-5); }
  .card__actions { flex-direction: column; }
  .footer { padding-bottom: 88px; } /* clearance for the floating book button */
}

@media print {
  .header, .drawer, .book-float, .topbar, .btn { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ---- About: the founder's sign-off ------------------------------------ */
.about__sign { margin-top: var(--sp-4); }
.about__welcome { color: var(--coral-ink); font-weight: 600; }

/* ---- Consent steps on the Results page --------------------------------- */
.steps {
  list-style: none;
  margin: var(--sp-5) 0 0;
  padding: 0;
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  counter-reset: step;
}
.steps__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-4) var(--sp-4);
  position: relative;
}
.steps__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--coral-ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--sp-3);
}
.steps__h { font-size: var(--step-0); margin: 0 0 0.5rem; }
.steps__p { margin: 0; color: var(--ink-mute); font-size: 0.95rem; }
.empty-state--wide { max-width: 720px; margin-inline: auto; }

/* ---- Studio photographs on the About page ------------------------------ */
.studio-shot {
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, var(--tint), var(--bg-alt));
}
.studio-shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease);
}
.studio-shot:hover img { transform: scale(1.04); }

/* ---- Deposit cards on the booking page --------------------------------- */
.steps--compact { max-width: 900px; margin-inline: auto; text-align: left; }
.steps--compact .steps__item { padding: var(--sp-4); }
.steps--compact .steps__h { font-size: 1rem; }

.paycard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.paycard__name { font-size: var(--step-0); margin: 0; }
.paycard__meta { margin: 0; color: var(--ink-mute); font-size: 0.85rem; }
.paycard__dep {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--ink);
  margin: 0.6rem 0 0;
  line-height: 1.1;
}
.paycard__dep span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-ink);
  margin-top: 0.2rem;
}
.paycard__bal { margin: 0 0 var(--sp-3); color: var(--ink-mute); font-size: 0.85rem; }
.paycard .btn { margin-top: auto; }

/* ---- Payment panel ------------------------------------------------------ */
.paycard--link { text-decoration: none; color: inherit; transition: border-color .2s, transform .2s; }
.paycard--link:hover { border-color: var(--coral); transform: translateY(-2px); }

.paysum {
  display: flex; flex-wrap: wrap; gap: var(--sp-4);
  align-items: center; justify-content: space-between;
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--sp-4) var(--sp-5);
}
.paysum__name { margin: .25rem 0 .35rem; font-size: var(--step-1); }
.paysum__amount { text-align: right; }
.paysum__figure { display: block; font-family: var(--font-display); font-weight: 700; font-size: 2.1rem; line-height: 1; }
.paysum__label { display: block; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--coral-ink); margin-top: .35rem; }

.paylist { display: grid; gap: var(--sp-4); margin-top: var(--sp-4); }
.paymethod { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--sp-4) var(--sp-5); background: var(--white); }
.paymethod--primary { border-color: var(--coral); box-shadow: 0 2px 18px rgba(252,93,94,.10); }
.paymethod__head { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; margin-bottom: .5rem; }
.paymethod__title { margin: 0; font-size: var(--step-0); }
.paymethod__tag {
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  background: var(--coral-btn); color: var(--white);
  padding: .25rem .6rem; border-radius: var(--radius-pill);
}
.paymethod__tag--soft { background: var(--coral-soft); color: var(--coral-ink); }
.paymethod__p { margin: 0 0 var(--sp-3); color: var(--ink-mute); font-size: .95rem; }

.payfacts { display: grid; grid-template-columns: auto 1fr; gap: .4rem 1.25rem; margin: 0; }
.payfacts dt { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); padding-top: .2rem; }
.payfacts dd { margin: 0; }
.payfacts code {
  background: var(--tint); border: 1px solid var(--line);
  padding: .25rem .55rem; border-radius: 6px;
  font-size: .95rem; word-break: break-all;
}

.fieldset { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--sp-4); margin: 0 0 var(--sp-4); }
.fieldset legend { padding: 0 .5rem; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--coral-ink); }

@media (max-width: 560px) {
  .paysum { flex-direction: column; align-items: flex-start; }
  .paysum__amount { text-align: left; }
}

/* ---- Member account: appointment cards ---------------------------------- */
.apptlist { display: grid; gap: var(--sp-3); margin-top: var(--sp-4); }
.appt {
  display: flex; gap: var(--sp-4);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--white); padding: var(--sp-4);
}
.appt__when {
  flex: 0 0 76px; text-align: center;
  background: var(--bg-alt); border-radius: var(--radius);
  padding: .65rem .25rem; align-self: flex-start;
}
.appt__day { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; line-height: 1; }
.appt__mon { display: block; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--coral-ink); margin-top: .25rem; }
.appt__body { flex: 1 1 auto; min-width: 0; }
.appt__title { margin: 0 0 .2rem; font-size: var(--step-0); }
.appt__meta { margin: 0 0 .5rem; color: var(--ink-mute); font-size: .88rem; }
.appt__notes {
  margin: 0 0 .6rem; padding: .5rem .75rem;
  background: var(--tint); border-left: 3px solid var(--coral-soft); border-radius: 0 6px 6px 0;
  font-size: .88rem; color: var(--ink-soft);
}
.appt__req { font-size: .75rem; color: var(--ink-mute); margin-left: .6rem; }
.pill {
  display: inline-block; padding: .2rem .7rem; border-radius: var(--radius-pill);
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  background: var(--coral-soft); border: 1px solid var(--line); color: var(--coral-ink);
}
.pill--warn { background: var(--coral-soft); border-color: var(--coral-soft); color: var(--coral-ink); }
.pill--ok   { background: #E7F5E9; border-color: #B7DFBC; color: #1B5E20; }
.pill--off  { background: #F3F3F5; border-color: #DDD; color: #666; }
@media (max-width: 520px) {
  .appt { flex-direction: column; gap: var(--sp-3); }
  .appt__when { flex: none; align-self: flex-start; min-width: 76px; }
}

/* ---- Two-step sign-in --------------------------------------------------- */
.input--code {
  font-family: var(--font-display); font-size: 1.6rem; letter-spacing: .5em;
  text-align: center; padding-left: .5em;
}
.setupkey {
  display: flex; flex-wrap: wrap; align-items: center; gap: .75rem;
  background: var(--tint); border: 1px solid var(--line);
  border-radius: var(--radius); padding: .75rem 1rem; margin: .75rem 0 .35rem;
}
.setupkey span { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); }
.setupkey code { font-size: 1.02rem; letter-spacing: .08em; word-break: break-all; }
.reccodes {
  list-style: none; margin: var(--sp-4) 0 0; padding: 0;
  display: grid; gap: .5rem; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.reccodes li {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: .6rem .9rem; text-align: center;
}
.reccodes code { font-size: 1rem; letter-spacing: .06em; }
@media print {
  .reccodes { grid-template-columns: repeat(2, 1fr); }
  .btn-row, .site-header, .site-footer, .hero__actions { display: none !important; }
}

/* ---- Before & after gallery --------------------------------------------- */
/* Photos arrive in every shape: wide side-by-side pairs, tall phone shots,
   square crops. Rather than force one aspect ratio and crop the edges off
   somebody's result, each photo keeps its own proportions and the columns
   flow around it. A masonry column layout does that with no JavaScript.
   Note: `columns` — not grid auto-fit, which stretches a lone item across
   the whole row and turns one photo into a billboard. */
.ba-grid {
  columns: 3 300px;
  column-gap: var(--sp-4);
}
.ba-grid > figure {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin: 0 0 var(--sp-4);
}
.ba-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, var(--tint), var(--bg-alt));
  line-height: 0;                      /* no descender gap under the image */
}
.ba-photo img {
  display: block;
  width: 100%;
  height: auto;                        /* the whole photo, never cropped */
}
@media (max-width: 640px) {
  .ba-grid { columns: 1; }
}
