/* ============================================================
   Nails De Maison — website styles
   Built on colors_and_type.css tokens
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--fg1);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
section { position: relative; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap-tight { max-width: 1000px; margin: 0 auto; padding: 0 32px; }

/* ---- shared atoms --------------------------------------- */
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--t-eyebrow);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--brass);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--brass);
  display: inline-block;
}
.eyebrow.on-ink { color: var(--rose-pale); }

.btn {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background var(--dur-fast) var(--ease-soft),
              color var(--dur-fast) var(--ease-soft),
              transform var(--dur-fast) var(--ease-soft),
              border-color var(--dur-fast) var(--ease-soft);
  white-space: nowrap;
}
.btn:active { transform: scale(0.975); }
.btn-solid { background: var(--ink); color: var(--ivory); }
.btn-solid:hover { background: var(--espresso); }
.btn-cream { background: var(--ivory); color: var(--ink); }
.btn-cream:hover { background: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--ivory); }
.btn-outline-cream { background: transparent; color: var(--ivory); border-color: rgba(245,239,227,0.5); }
.btn-outline-cream:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn-sage { background: var(--rose); color: var(--ivory); }
.btn-sage:hover { background: var(--rose-deep); }
.btn .ic { width: 16px; height: 16px; }

/* ---- reveal on scroll ----------------------------------- */
/* Translate-only entrance — never hides content. Even if a backgrounded
   tab freezes the transition mid-flight, the text is fully visible (just
   nudged a few px). Opacity is intentionally NOT animated. */
.reveal { transform: none; }
html.anim .reveal { transform: translateY(14px); transition: transform 0.9s var(--ease); }
html.anim .reveal.in { transform: none; }
@media (prefers-reduced-motion: reduce) { html.anim .reveal { opacity: 1 !important; transform: none !important; } }

/* ============================================================
   HEADER
   ============================================================ */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background var(--dur) var(--ease-soft), box-shadow var(--dur) var(--ease-soft), border-color var(--dur) var(--ease-soft);
  border-bottom: 1px solid transparent;
}
.hdr-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.hdr.scrolled {
  background: rgba(251,248,241,0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 46px; height: 46px; object-fit: contain; transition: opacity var(--dur) var(--ease-soft); }
.brand .bn {
  font-family: var(--font-display);
  font-size: 1.05rem; letter-spacing: 0.22em;
  line-height: 1;
}
.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-family: var(--font-sans);
  font-size: 0.86rem; font-weight: 400; letter-spacing: 0.04em;
  position: relative; padding: 4px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1px; background: currentColor; opacity: 0.7;
  transition: right var(--dur-fast) var(--ease);
}
.nav a:hover::after { right: 0; }
.hdr-cta { display: flex; align-items: center; gap: 18px; }

/* header color modes (dark text over light blush hero; same when scrolled) */
.hdr:not(.scrolled) { color: var(--ink); }
.hdr:not(.scrolled) .bn { color: var(--ink); }
.hdr.scrolled { color: var(--ink); }
.hdr.scrolled .bn { color: var(--ink); }
.hdr .menu-btn { display: none; background: none; border: none; cursor: pointer; color: inherit; }

/* mobile menu */
.mnav { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  /* Slightly under a full screen so the dark marquee strip peeks above the
     fold — a quiet signal that the page continues. */
  min-height: 90svh;
  background: #F2DCD8;
  color: var(--ink);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/textures/hero-light.png');
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(251,241,236,0.18) 0%, rgba(242,220,216,0) 42%, rgba(242,220,216,0.34) 100%);
}
.hero-inner { position: relative; z-index: 2; text-align: center; width: 100%; flex: 1 1 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 88px 32px 18px; }
.hero-emblem { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 18px; opacity: 0.96; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.06; letter-spacing: 0.01em;
  color: var(--ink); font-weight: 400; margin: 0;
  white-space: nowrap;
}
.hero h1 .it { font-family: var(--font-serif); font-style: italic; font-weight: 500; letter-spacing: 0; color: var(--rose-deep); }
.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  color: var(--plum); max-width: 600px; margin: 20px auto 0; line-height: 1.5;
}
/* ---- hero conversion stack: offer headline → tagline → sub → CTA → trust ---- */
.hero h1.hero-offer {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.4vw, 4.3rem);
  line-height: 1.07; letter-spacing: 0.01em; color: var(--ink);
  font-weight: 400; white-space: normal; max-width: 20ch; margin: 4px auto 0;
}
.hero h1.hero-offer .pct {
  font-family: var(--font-display); font-weight: 600;
  color: var(--rose-deep); white-space: nowrap;
}
.hero-tagline {
  font-family: var(--font-serif); font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  color: var(--plum); margin: 14px auto 0; line-height: 1.3; letter-spacing: 0.01em;
}
.hero-tagline .it { font-style: italic; font-weight: 500; color: var(--rose-deep); }
.hero .hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  color: var(--fg2); margin: 14px auto 0;
}

/* primary CTA: the 10% OFF badge fused to the button so they read as one unit */
.hero-cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 13px; margin-top: 30px; }
/* honest urgency: the real, recurring Sunday deadline */
.hero-urgency {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-sans); font-weight: 600;
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rose-deep);
}
.hero-urgency::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--rose); flex: none;
}
html.anim .hero-urgency::before { animation: ndm-pulse 2.4s var(--ease-soft) infinite; }
@keyframes ndm-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(194,126,140,0.5); } 50% { box-shadow: 0 0 0 5px rgba(194,126,140,0); } }
@media (prefers-reduced-motion: reduce) { html.anim .hero-urgency::before { animation: none; } }
.hero-book {
  display: inline-flex; align-items: stretch; padding: 0; border: none; cursor: pointer;
  border-radius: var(--r-pill); overflow: hidden; background: var(--ink);
  box-shadow: var(--shadow-md); font-family: var(--font-sans);
  transition: transform var(--dur-fast) var(--ease-soft), box-shadow var(--dur-fast) var(--ease-soft);
}
.hero-book:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.hero-book:active { transform: translateY(0) scale(0.985); }
.hero-book-badge {
  display: inline-flex; align-items: center; flex: none;
  background: var(--rose-deep); color: var(--ivory);
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0 18px;
}
.hero-book-label {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--ivory);
  font-weight: 500; font-size: 0.86rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 17px 28px;
}
.hero-book-label .ic { width: 17px; height: 17px; }
.hero-microcopy {
  font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.05em; color: var(--fg2);
}
.hero-secondary { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-call { display: none; }   /* tap-to-call surfaces on phones only */

/* trust signal — real Google rating */
.hero-trust { margin-top: 16px; }
.hero-rating {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-sans); font-size: 0.92rem; color: var(--fg2);
  transition: color var(--dur-fast) var(--ease-soft);
}
.hero-rating:hover { color: var(--rose-deep); }
.hero-rating .stars { color: var(--brass); letter-spacing: 0.1em; font-size: 0.95rem; }
.hero-rating .rt strong { color: var(--ink); font-weight: 600; }
.hero-rating .ct { color: var(--fg3); font-size: 0.85rem; }

/* ---- Sunday Funday callout — the headline 20% offer, given its own band ---- */
.sunday {
  background: var(--blush); color: var(--ink);
  padding: clamp(30px, 5vw, 48px) 0;
  border-top: 1px solid var(--rose-pale); border-bottom: 1px solid var(--rose-pale);
}
.sunday-inner {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(20px, 4vw, 46px); flex-wrap: wrap; text-align: left;
}
.sunday-badge {
  flex: none; width: clamp(92px, 12vw, 118px); height: clamp(92px, 12vw, 118px);
  border-radius: 50%; background: var(--rose-deep); color: var(--ivory);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  line-height: 1; box-shadow: var(--shadow-md);
}
.sunday-badge .pc { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem); }
.sunday-badge .off { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; margin-top: 5px; }
.sunday-copy { max-width: 44ch; }
.sunday-kicker { font-family: var(--font-sans); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--rose-deep); }
.sunday-ttl {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.55rem, 3vw, 2.25rem); color: var(--ink); line-height: 1.12; margin: 8px 0 0;
}
.sunday-sub { margin: 11px 0 0; font-size: 0.95rem; color: var(--espresso); }
.sunday-cta { flex: none; }

/* ---- Persistent Book Now CTA ---- */
.sticky-book {
  position: fixed; z-index: 80; right: 26px; bottom: 26px;
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity var(--dur) var(--ease-soft), transform var(--dur) var(--ease-soft);
}
.sticky-book.show { opacity: 1; transform: none; pointer-events: auto; }
.sticky-book .btn { box-shadow: var(--shadow-lg); }
.hero-meta {
  position: relative; z-index: 2; flex: none;
  padding: 0 24px 30px;
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg2);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 9px; }
.hero-meta .ic { width: 15px; height: 15px; color: var(--rose); }

/* scroll cue — sits just above the meta row, gently inviting a scroll down */
.hero-scroll {
  position: relative; z-index: 2; flex: none;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 0; margin-bottom: 60px; text-decoration: none;
  transition: opacity var(--dur-fast) var(--ease-soft);
}
.hero-scroll .lbl {
  font-family: var(--font-sans); font-weight: 500;
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--rose-deep);
}
.hero-scroll .ic { width: 22px; height: 22px; color: var(--plum); }
.hero-scroll:hover .ic { color: var(--rose-deep); }
html.anim .hero-scroll .ic { animation: ndm-bob 1.7s var(--ease-soft) infinite; }
@keyframes ndm-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@media (prefers-reduced-motion: reduce) { html.anim .hero-scroll .ic { animation: none; } }

/* ============================================================
   MARQUEE strip
   ============================================================ */
.strip {
  background: var(--ink); color: var(--ivory);
  border-top: 1px solid var(--line-ink);
  padding: 22px 0; overflow: hidden;
}
.strip-track { display: flex; gap: 56px; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.strip-track span {
  font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.04em;
  color: var(--ivory); display: inline-flex; align-items: center; gap: 56px;
}
.strip-track span::after { content: "✦"; color: var(--brass); font-size: 0.8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip-track { animation: none; } }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--paper); padding: var(--s-10) 0; }
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 72px; align-items: center; }
.about-figure { position: relative; }
.about-figure img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-md); }
.about-figure .tag {
  position: absolute; bottom: 22px; left: 22px;
  background: var(--ivory); color: var(--ink);
  font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.16em;
  padding: 12px 18px; border-radius: var(--r-pill); box-shadow: var(--shadow-md);
}
.about-copy { display: flex; flex-direction: column; align-items: flex-start; }
.about h2 { margin: 18px 0 0; }
.about .ndm-lead { margin: 24px 0 0; }
.about p { margin: 26px 0 0; max-width: 52ch; }
.about-sign { margin-top: 30px; display: flex; align-items: center; gap: 16px; }
.about-sign .nm { font-family: var(--font-display); font-size: 1.3rem; }
.about-sign .rl { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg3); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--ivory); padding: var(--s-10) 0; border-top: 1px solid var(--line); }
.services-head { text-align: center; margin-bottom: 18px; }
.services-head h2 { margin: 16px 0 0; }
.services-head .ndm-lead { max-width: 60ch; margin: 18px auto 0; }
.svc-tabs { display: flex; justify-content: center; gap: 8px; margin: 38px 0 46px; }
.svc-tab {
  font-family: var(--font-sans); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 12px 26px; border-radius: var(--r-pill); border: 1px solid var(--line);
  background: transparent; color: var(--fg2); cursor: pointer; transition: all var(--dur-fast) var(--ease-soft);
}
.svc-tab:hover { border-color: var(--ink); color: var(--ink); }
.svc-tab.active { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.svc-cols { display: grid; gap: 64px; }
.svc-cols.cols-2 { grid-template-columns: 1fr 1fr; }
.svc-cols.cols-1 { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
.svc-col h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 1.7rem;
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding-bottom: 16px; border-bottom: 1px solid var(--ink); margin: 0 0 8px;
}
.svc-col h3 .ct { font-family: var(--font-sans); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg3); }
.svc-row { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); cursor: pointer; transition: padding var(--dur-fast) var(--ease); }
.svc-row:hover { padding-left: 8px; }
.svc-row:hover .sr-name { color: var(--rose-deep); }
.svc-row .sr-text { flex: 1; }
.sr-name { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); transition: color var(--dur-fast) var(--ease-soft); }
.sr-desc { font-size: 0.86rem; color: var(--fg3); font-weight: 300; margin-top: 3px; }
.sr-go {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--rose-deep);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateX(-6px);
  transition: all var(--dur-fast) var(--ease-soft);
}
.sr-go .ic { width: 16px; height: 16px; }
.svc-row:hover .sr-go { opacity: 1; transform: none; background: var(--rose); color: var(--ivory); border-color: var(--rose); }
.services-note { text-align: center; margin-top: 48px; }
.services-note .ndm-small { display: block; margin-bottom: 22px; }

/* ============================================================
   RITUAL (the visit)
   ============================================================ */
.ritual { background: var(--ink); color: var(--ivory); padding: var(--s-10) 0; }
.ritual-head { text-align: center; max-width: 720px; margin: 0 auto 70px; }
.ritual-head h2 { color: var(--ivory); margin: 16px 0 0; }
.ritual-head p { color: var(--fg-on-ink-2); margin-top: 18px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step { padding: 0 28px; border-left: 1px solid var(--line-ink); }
.step:first-child { padding-left: 0; border-left: none; }
.step .no { font-family: var(--font-display); font-size: 2.4rem; color: var(--rose-pale); line-height: 1; }
.step h3 { color: var(--ivory); font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; margin: 22px 0 12px; }
.step p { color: var(--fg-on-ink-2); font-size: 0.95rem; }

/* ============================================================
   GALLERY (shades)
   ============================================================ */
.gallery { background: var(--paper); padding: var(--s-10) 0; }
.gallery-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px; gap: 24px; flex-wrap: wrap; }
.gallery-head h2 { margin: 14px 0 0; }
.grid-shades { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.shade { position: relative; aspect-ratio: 3/4; border-radius: var(--r-md); overflow: hidden; cursor: pointer; }
.shade img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.shade:hover img { transform: scale(1.07); }
.shade::after { content: ""; position: absolute; inset: 0; background: rgba(46,33,42,0.14); opacity: 0; transition: opacity var(--dur) var(--ease-soft); }
.shade:hover::after { opacity: 1; }
.shade .cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 16px; color: var(--ivory); transform: translateY(8px); opacity: 0;
  transition: all var(--dur) var(--ease);
}
.shade:hover .cap { transform: none; opacity: 1; }
.shade .cap .nm { font-family: var(--font-display); font-size: 1.1rem; }
.shade .cap .fin { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose-pale); }
.gallery .ig { text-align: center; margin-top: 44px; }

/* lightbox */
.lb { position: fixed; inset: 0; z-index: 200; background: rgba(46,33,42,0.88); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 5vh 6vw; opacity: 0; pointer-events: none; transition: opacity var(--dur) var(--ease-soft); }
.lb.open { opacity: 1; pointer-events: auto; }
.lb-card { max-width: 460px; width: 100%; }
.lb-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--r-md); }
.lb-card .meta { text-align: center; color: var(--ivory); margin-top: 22px; }
.lb-card .meta .nm { font-family: var(--font-display); font-size: 1.7rem; }
.lb-card .meta .fin { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose-pale); margin-top: 6px; }
.lb-close { position: absolute; top: 26px; right: 30px; background: none; border: none; color: var(--ivory); cursor: pointer; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: 1px solid rgba(245,239,227,0.3); color: var(--ivory); width: 52px; height: 52px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--dur-fast); }
.lb-nav:hover { background: rgba(245,239,227,0.12); }
.lb-prev { left: 4vw; } .lb-next { right: 4vw; }

/* ============================================================
   QUOTE band
   ============================================================ */
.quote { background: var(--blush); color: var(--ink); padding: var(--s-10) 0; text-align: center; }
.quote .mark { font-family: var(--font-display); font-size: 3.4rem; color: var(--blush-deep); line-height: 1; margin-bottom: 6px; }
.quote blockquote { font-family: var(--font-serif); font-size: clamp(1.7rem, 3.4vw, 2.6rem); line-height: 1.4; font-style: italic; max-width: 22ch; margin: 0 auto; color: var(--espresso); text-wrap: balance; }
.quote .who { margin-top: 30px; font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); }
.quote .stars { color: var(--brass); margin-top: 26px; display: flex; justify-content: center; gap: 7px; }
.quote .stars .ic { width: 17px; height: 17px; }

/* ---- Reviews carousel (crossfade stack of curated Google reviews) ---- */
.quote .rev-stage { position: relative; min-height: clamp(232px, 30vh, 296px); margin-top: 2px; }
.quote .rev-card {
  position: absolute; inset: 0; margin: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.7s var(--ease-soft), transform 0.7s var(--ease-soft), visibility 0s linear 0.7s;
}
.quote .rev-card.on { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.quote .rev-card .stars { margin-top: 0; }
.quote .rev-card blockquote {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.25rem, 2.3vw, 1.78rem); line-height: 1.5;
  max-width: 40ch; margin: 22px auto 0; color: var(--espresso); text-wrap: balance;
}
.quote .rev-card .who { margin-top: 24px; font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); }

.quote .rev-source {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 28px;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg3);
  transition: color var(--dur-fast) var(--ease-soft);
}
.quote .rev-source:hover { color: var(--rose-deep); }
.quote .rev-source .ic { width: 15px; height: 15px; }

.quote .rev-ctrl { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 22px; }
.quote .rev-arrow {
  width: 42px; height: 42px; flex: none; border-radius: 50%;
  border: 1px solid var(--blush-deep); background: transparent; color: var(--espresso);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background var(--dur-fast) var(--ease-soft), color var(--dur-fast) var(--ease-soft), border-color var(--dur-fast) var(--ease-soft);
}
.quote .rev-arrow:hover { background: var(--espresso); color: var(--blush); border-color: var(--espresso); }
.quote .rev-arrow .ic { width: 18px; height: 18px; }
.quote .rev-dots { display: flex; align-items: center; gap: 10px; }
.quote .rev-dot {
  width: 8px; height: 8px; padding: 0; border: none; border-radius: 50%; cursor: pointer;
  background: var(--blush-deep); opacity: 0.45;
  transition: opacity var(--dur-fast) var(--ease-soft), transform var(--dur-fast) var(--ease-soft), background var(--dur-fast) var(--ease-soft);
}
.quote .rev-dot:hover { opacity: 0.8; }
.quote .rev-dot.on { opacity: 1; transform: scale(1.45); background: var(--brass); }

@media (prefers-reduced-motion: reduce) {
  .quote .rev-card { transition: opacity 0.2s linear, visibility 0s linear 0.2s; transform: none; }
  .quote .rev-card.on { transition-delay: 0s; }
}

/* ============================================================
   BOOKING
   ============================================================ */
.booking { background: var(--ivory); padding: var(--s-10) 0; border-top: 1px solid var(--line); }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: stretch; }
.booking h2 { margin: 16px 0 0; font-family: var(--font-serif); font-style: italic; font-weight: 500; letter-spacing: 0; font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 1.05; }
.booking-lead { margin-top: 22px; max-width: 44ch; }
.info-list { margin-top: 38px; display: flex; flex-direction: column; gap: 4px; }
.info-row { display: flex; gap: 18px; padding: 20px 0; border-top: 1px solid var(--line); }
.info-row:last-child { border-bottom: 1px solid var(--line); }
.info-row .ic { width: 20px; height: 20px; color: var(--rose); flex: none; margin-top: 3px; }
.info-row .lbl { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg3); }
.info-row .val { font-family: var(--font-sans); font-weight: 400; font-size: 1.1rem; letter-spacing: 0.01em; color: var(--ink); margin-top: 5px; }
.info-row .val a:hover { color: var(--rose-deep); }
.book-card { background: var(--ink); color: var(--ivory); border-radius: var(--r-lg); padding: 48px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.book-card .bg { position: absolute; inset: 0; background-image: url('assets/textures/hero-glow.png'); background-size: cover; opacity: 0.5; }
.book-card > * { position: relative; z-index: 2; }
.book-card h3 { color: var(--ivory); font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: 2.3rem; margin: 14px 0 0; }
.book-card p { color: var(--fg-on-ink-2); margin: 16px 0 30px; }
.book-card .phone { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.4rem); color: var(--ivory); letter-spacing: 0.02em; }
.book-card .hrs { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line-ink); display: flex; flex-direction: column; gap: 8px; font-size: 0.9rem; color: var(--fg-on-ink-2); }
.book-card .hrs div { display: flex; justify-content: space-between; }
.map-embed { margin-top: 64px; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); height: 340px; filter: grayscale(0.3) sepia(0.1); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--ivory); padding: var(--s-9) 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: var(--s-8); border-bottom: 1px solid var(--line-ink); }
.footer .brand img { width: 64px; height: 64px; }
.footer .brand .bn { color: var(--ivory); font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.22em; }
.footer-blurb { color: var(--fg-on-ink-2); margin-top: 22px; max-width: 36ch; font-size: 0.95rem; }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--rose-pale); margin: 0 0 20px; font-weight: 500; }
.footer-col a, .footer-col p { display: block; color: var(--fg-on-ink-2); font-size: 0.95rem; margin: 0 0 12px; transition: color var(--dur-fast); }
.footer-col a:hover { color: var(--ivory); }
.footer-socials { display: flex; gap: 12px; margin-top: 8px; }
.footer-socials a { width: 42px; height: 42px; border: 1px solid var(--line-ink); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--ivory); transition: all var(--dur-fast); }
.footer-socials a:hover { background: var(--ivory); color: var(--ink); }
.footer-socials .ic { width: 18px; height: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 0.8rem; color: var(--fg3); flex-wrap: wrap; gap: 12px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav, .hdr-cta .btn { display: none; }
  .hdr .menu-btn { display: inline-flex; }
  .about-grid, .svc-cols, .booking-grid, .footer-top { grid-template-columns: 1fr; gap: 44px; }
  /* menu: one centered column on tablet/phone (beats the .cols-2 grid) */
  .svc-cols.cols-2, .svc-cols.cols-1 { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; gap: 8px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 36px 0; }
  .step { padding: 0 22px; } .step:nth-child(3) { border-left: none; padding-left: 0; }
  .grid-shades { grid-template-columns: repeat(3, 1fr); }
  .about-figure img { aspect-ratio: 16/11; }
}
@media (max-width: 600px) {
  .wrap, .wrap-tight { padding: 0 22px; }
  .steps { grid-template-columns: 1fr; } .step { border-left: none; padding: 0; }
  .grid-shades { grid-template-columns: repeat(2, 1fr); }
  .hero-meta { gap: 18px; font-size: 0.7rem; }
  .book-card { padding: 32px 26px; }

  /* Hero: flow content from the top (below the fixed header) instead of
     vertically centering — centering let tall content overflow up behind
     the header, colliding the hero emblem with the brand logo. Sizing to
     content (min-height:auto) also removes the empty gap above the strip. */
  .hero { min-height: auto; }
  .hero-inner { justify-content: flex-start; padding-top: 100px; padding-bottom: 26px; }
  .hero-emblem { width: 56px; height: 56px; margin-bottom: 12px; }
  .hero h1.hero-offer { font-size: clamp(1.95rem, 9vw, 2.7rem); }
  .hero-tagline { margin-top: 12px; }
  .hero .hero-sub { margin-top: 12px; }
  .hero-cta-wrap { margin-top: 24px; width: 100%; }
  .hero-book { width: 100%; max-width: 360px; }
  .hero-book-badge { padding: 0 14px; font-size: 0.85rem; letter-spacing: 0.08em; }
  .hero-book-label { flex: 1 1 auto; justify-content: center; padding: 15px 14px; font-size: 0.8rem; letter-spacing: 0.08em; }
  .hero-secondary { width: 100%; max-width: 360px; }
  .hero-secondary .btn { flex: 1 1 0; justify-content: center; padding: 13px 14px; font-size: 0.74rem; }
  .hero-call { display: inline-flex; }   /* tap-to-call on phones */
  .hero-scroll { margin-bottom: 22px; }

  /* Sunday Funday: stack and center on phones */
  .sunday-inner { flex-direction: column; text-align: center; gap: 18px; }
  .sunday-copy { max-width: none; }

  /* Sticky Book Now becomes a full-width bottom bar */
  .sticky-book { left: 14px; right: 14px; bottom: 14px; }
  .sticky-book .btn { width: 100%; justify-content: center; }

  /* Tighten the generous desktop section rhythm so mobile isn't all gaps. */
  .about, .services, .ritual, .gallery, .booking, .quote { padding: 64px 0; }
  .footer { padding: 56px 0 32px; }
  .ritual-head { margin-bottom: 40px; }
  .gallery-head { margin-bottom: 28px; }
}

/* mobile menu overlay */
.mnav { position: fixed; inset: 0; z-index: 90; background: var(--ink); color: var(--ivory); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px; opacity: 0; pointer-events: none; transition: opacity var(--dur) var(--ease-soft); }
.mnav.open { opacity: 1; pointer-events: auto; }
.mnav a { font-family: var(--font-display); font-size: 2rem; color: var(--ivory); }
.mnav .close { position: absolute; top: 28px; right: 26px; background: none; border: none; color: var(--ivory); cursor: pointer; }

/* ============================================================
   BOOKING MODAL (calendar)
   ============================================================ */
.bm-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(46,33,42,0.55); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 4vh 5vw;
  opacity: 0; pointer-events: none;
}
.bm-overlay.open { opacity: 1; pointer-events: auto; }
.bm {
  background: var(--paper); width: 100%; max-width: 560px; max-height: 92vh; overflow: auto;
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(0.98); transition: transform var(--dur) var(--ease);
}
.bm-overlay.open .bm { transform: none; }
.bm-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 30px 32px 0;
}
.bm-head .ttl { font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: 1.9rem; color: var(--ink); line-height: 1.1; }
.bm-head .sub { font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: 8px; }
.bm-close { background: none; border: 1px solid var(--line); border-radius: 50%; width: 40px; height: 40px; flex: none; cursor: pointer; color: var(--ink); display: flex; align-items: center; justify-content: center; transition: all var(--dur-fast); }
.bm-close:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.bm-close .ic { width: 18px; height: 18px; }

.bm-body { padding: 22px 32px 32px; }
.bm-section-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg3); margin: 4px 0 12px; }
/* offer reminder at the top of the booking flow */
.bm-promo {
  display: flex; align-items: center; gap: 11px;
  margin: 0 0 20px; padding: 11px 15px;
  background: rgba(236, 201, 200, 0.4);
  border: 1px solid var(--rose-pale); border-radius: var(--r-sm);
  font-family: var(--font-sans); font-size: 0.9rem; line-height: 1.4; color: var(--rose-deep);
}
.bm-promo .tag {
  font-weight: 600; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--rose-deep); color: var(--ivory);
  padding: 5px 11px; border-radius: 999px; white-space: nowrap; flex: none;
}
/* Sunday Funday note in the time step — shows when a Sunday date is selected */
.bm-sunday-note {
  display: flex; align-items: center; gap: 10px;
  margin: 0 0 12px; padding: 10px 14px;
  background: var(--blush); border: 1px solid var(--rose-pale); border-radius: var(--r-sm);
  font-family: var(--font-sans); font-size: 0.88rem; color: var(--rose-deep);
}
.bm-sunday-note .tag {
  font-weight: 600; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--rose-deep); color: var(--ivory);
  padding: 5px 11px; border-radius: 999px; white-space: nowrap; flex: none;
}

/* service picker — grouped, priced list (step 1) */
.bm-svc-list { display: flex; flex-direction: column; gap: 16px; }
.bm-svc-group { display: flex; flex-direction: column; gap: 6px; }
.bm-svc-cat {
  font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--rose-deep); margin: 4px 0 2px;
}
.bm-svc {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; text-align: left; cursor: pointer;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fff; color: var(--ink); font-family: var(--font-sans);
  transition: border-color var(--dur-fast) var(--ease-soft), background var(--dur-fast) var(--ease-soft);
}
.bm-svc:hover { border-color: var(--rose); background: var(--paper); }
.bm-svc .nm { font-size: 0.98rem; }
.bm-svc .meta { display: inline-flex; align-items: baseline; gap: 12px; flex: none; }
.bm-svc .pr { font-family: var(--font-display); font-size: 1.05rem; color: var(--rose-deep); }

/* chosen-service card (shown above the calendar once picked) */
.bm-svc-chosen {
  padding: 14px 16px; margin-bottom: 18px;
  background: var(--paper); border: 1px solid var(--rose-pale); border-radius: var(--r-sm);
}
.bm-svc-chosen-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.bm-svc-chosen .lbl { display: block; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg3); margin-bottom: 3px; }
.bm-svc-chosen .nm { font-family: var(--font-sans); font-weight: 500; color: var(--ink); }
.bm-svc-chosen .right { display: inline-flex; align-items: center; gap: 14px; flex: none; }
.bm-svc-chosen .pr { font-family: var(--font-display); font-size: 1.1rem; color: var(--rose-deep); }

/* "what's included" panel inside the chosen-service card */
.bm-includes-wrap { margin-top: 13px; padding-top: 13px; border-top: 1px solid var(--line); }
.bm-includes-label { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg3); margin-bottom: 9px; }
.bm-includes {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 8px 16px;
}
.bm-includes li { display: flex; align-items: center; gap: 8px; font-family: var(--font-sans); font-size: 0.86rem; color: var(--fg2); }
.bm-includes .ic { width: 14px; height: 14px; color: var(--rose); flex: none; }

/* optional-field hint */
.bm-field label .opt { text-transform: none; letter-spacing: 0; color: var(--fg3); font-size: 0.68rem; }

/* confirm summary card (step 5) */
.bm-confirm {
  margin-top: 20px; padding: 16px 18px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-sm);
}
.bm-confirm .row { display: flex; justify-content: space-between; gap: 12px; font-family: var(--font-sans); font-size: 0.92rem; color: var(--fg2); padding: 4px 0; }
.bm-confirm .row span:last-child { color: var(--ink); text-align: right; }
.bm-confirm .row.total { margin-top: 6px; padding-top: 10px; border-top: 1px solid var(--line); font-size: 1rem; }
.bm-confirm .row.total span:last-child { font-family: var(--font-display); color: var(--ink); }
.bm-confirm .row.total s { color: var(--fg3); margin-right: 8px; font-family: var(--font-sans); font-size: 0.9rem; }
.bm-discount {
  margin-top: 12px; padding: 8px 12px; text-align: center;
  font-size: 0.82rem; letter-spacing: 0.03em; color: var(--rose-deep);
  background: rgba(236, 201, 200, 0.4); border-radius: 999px;
}
/* "you won't be charged now" reassurance — booking reserves a time, pay at salon */
.bm-paynote {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 12px; padding: 11px 14px;
  background: var(--linen); border: 1px solid var(--line); border-radius: var(--r-sm);
  font-family: var(--font-sans); font-size: 0.84rem; line-height: 1.5; color: var(--fg2);
}
.bm-paynote .ic { width: 16px; height: 16px; color: var(--rose-deep); flex: none; margin-top: 2px; }
.bm-paynote strong { color: var(--ink); }
/* intro variant — same note, shown up top the moment the modal opens */
.bm-paynote--intro { margin: 0 0 18px; }

/* success price line */
.bm-success-price { margin-top: 14px; font-family: var(--font-sans); font-size: 0.95rem; color: var(--ink); }
.bm-success-price s { color: var(--fg3); margin-right: 8px; }
.bm-success-price span { color: var(--rose-deep); font-size: 0.82rem; }

/* service chips */
.bm-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.bm-chip {
  font-family: var(--font-sans); font-size: 0.85rem; padding: 9px 16px; border-radius: var(--r-pill);
  border: 1px solid var(--line); background: transparent; color: var(--fg2); cursor: pointer;
  transition: all var(--dur-fast) var(--ease-soft);
}
.bm-chip:hover { border-color: var(--rose); color: var(--rose-deep); }
.bm-chip.sel { background: var(--rose); color: var(--ivory); border-color: var(--rose); }

/* calendar */
.bm-cal-head { display: flex; align-items: center; justify-content: space-between; margin: 6px 0 14px; }
.bm-cal-head .mo { font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); }
.bm-cal-nav { display: flex; gap: 8px; }
.bm-cal-nav button { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); background: transparent; cursor: pointer; color: var(--ink); display: flex; align-items: center; justify-content: center; transition: all var(--dur-fast); }
.bm-cal-nav button:hover:not(:disabled) { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.bm-cal-nav button:disabled { opacity: 0.3; cursor: default; }
.bm-cal-nav .ic { width: 16px; height: 16px; }
.bm-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.bm-dow { text-align: center; font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg3); padding-bottom: 6px; }
.bm-day {
  aspect-ratio: 1; border: none; background: transparent; border-radius: 50%;
  font-family: var(--font-sans); font-size: 0.92rem; color: var(--ink); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-fast) var(--ease-soft);
}
.bm-day:hover:not(:disabled) { background: var(--blush); }
.bm-day:disabled { color: var(--line); cursor: default; }
.bm-day.sel { background: var(--rose); color: var(--ivory); }
.bm-day.today:not(.sel) { box-shadow: inset 0 0 0 1px var(--rose); }

/* time slots */
.bm-slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 6px; }
.bm-slot {
  font-family: var(--font-sans); font-size: 0.85rem; padding: 11px 0; border-radius: var(--r-sm);
  border: 1px solid var(--line); background: transparent; color: var(--fg2); cursor: pointer;
  transition: all var(--dur-fast) var(--ease-soft);
}
.bm-slot:hover { border-color: var(--rose); color: var(--rose-deep); }
.bm-slot.sel { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

.bm-divider { height: 1px; background: var(--line); margin: 26px 0; }

/* fields */
.bm-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bm-field { display: flex; flex-direction: column; gap: 6px; }
.bm-field.full { grid-column: 1 / -1; }
.bm-field label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg3); }
.bm-field input {
  font-family: var(--font-sans); font-size: 0.95rem; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff; color: var(--ink);
}
.bm-field input:focus { outline: none; border-color: var(--rose); }

/* footer / summary */
.bm-foot { margin-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.bm-summary { font-size: 0.9rem; color: var(--fg2); }
.bm-summary strong { font-family: var(--font-display); font-weight: 400; color: var(--ink); font-size: 1.05rem; }
.bm .btn { width: auto; }
.bm-foot .btn:disabled { opacity: 0.4; cursor: default; }
.bm-foot .btn:disabled:hover { background: var(--ink); }

/* success */
.bm-success { text-align: center; padding: 40px 32px 44px; }
.bm-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--rose); color: var(--ivory); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.bm-success .check .ic { width: 30px; height: 30px; }
.bm-success h3 { font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: 2rem; color: var(--ink); }
.bm-success p { margin: 14px auto 0; max-width: 38ch; }
.bm-success .recap { margin-top: 22px; font-family: var(--font-display); font-size: 1.15rem; color: var(--rose-deep); }
.bm-success .note { font-size: 0.82rem; color: var(--fg3); margin-top: 18px; }

/* ---- Square widget embed variant ---- */
.bm.bm--square {
  max-width: 600px; width: 100%;
  height: min(92vh, 840px); max-height: 92vh;
  display: flex; flex-direction: column; overflow: hidden;
}
.bm--square .bm-head { padding: 24px 28px 22px; border-bottom: 1px solid var(--line); align-items: center; }
.bm--square .ttl { white-space: nowrap; font-size: 1.7rem; }
.bm-frame-wrap { flex: 1 1 auto; position: relative; background: var(--paper); min-height: 0; }
.bm-frame-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.bm-frame-loading {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  color: var(--fg3); font-size: 0.9rem; font-family: var(--font-sans);
  pointer-events: none;
}
.bm-spinner {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--line); border-top-color: var(--rose);
  animation: bm-spin 0.8s linear infinite;
}
@keyframes bm-spin { to { transform: rotate(360deg); } }
.bm-note {
  flex: none; padding: 14px 24px; border-top: 1px solid var(--line);
  font-size: 0.82rem; color: var(--fg3); text-align: center; font-family: var(--font-sans);
}
.bm-note a { color: var(--rose-deep); text-decoration: underline; text-underline-offset: 3px; }
.bm-note a:hover { color: var(--ink); }

@media (max-width: 600px) {
  .bm-head, .bm-body { padding-left: 22px; padding-right: 22px; }
  .bm-slots { grid-template-columns: repeat(3, 1fr); }
  .bm-fields { grid-template-columns: 1fr; }
}

/* ============================================================
   ATELIER REFINEMENTS
   A quiet finishing layer — atmosphere, depth, and the small
   details that read as "designed." Built on the existing
   tokens; respects the motion contract (transform-only
   entrances, nothing hidden by opacity, reduced-motion safe).
   ============================================================ */

/* ---- Brand-level polish: selection, caret, scrollbar, focus -- */
::selection { background: var(--rose); color: var(--ivory); }
::-moz-selection { background: var(--rose); color: var(--ivory); }
html { scrollbar-color: var(--mauve) transparent; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--linen); }
::-webkit-scrollbar-thumb {
  background: var(--mauve); border-radius: var(--r-pill);
  border: 3px solid var(--linen);
}
::-webkit-scrollbar-thumb:hover { background: var(--rose); }
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px; border-radius: var(--r-xs);
}
a:focus-visible, .btn:focus-visible { outline-offset: 4px; }

/* ---- Filmic grain: a whisper of warmth over the whole page --- */
/* Fixed, non-interactive. Multiplies softly into the rosé paper
   so flat fills gain a hand-printed, editorial texture.        */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9000;
  pointer-events: none; mix-blend-mode: multiply; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { body::after { opacity: 0.035; } }

/* ---- Buttons: a touch of lift + warmth on hover -------------- */
.btn { position: relative; }
.btn-solid:hover, .btn-sage:hover, .btn-cream:hover,
.btn-outline:hover, .btn-outline-cream:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn:active { transform: translateY(0) scale(0.975); box-shadow: none; }

/* ---- HERO: a framed plate of light -------------------------- */
/* Soft radial glow blooms behind the headline for depth...      */
.hero-inner::before {
  content: ""; position: absolute; z-index: -1;
  left: 50%; top: 42%; transform: translate(-50%, -50%);
  width: min(880px, 92vw); height: min(620px, 70vh);
  background:
    radial-gradient(ellipse at center,
      rgba(247,239,234,0.55) 0%,
      rgba(236,201,200,0.30) 38%,
      rgba(242,220,216,0) 72%);
  pointer-events: none;
}
/* ...and a fine brass passe-partout frames the whole plate,
   like a print floated inside a gallery mount.                 */
.hero::after {
  content: ""; position: absolute; inset: 24px; z-index: 1;
  border: 1px solid rgba(190,154,106,0.30);
  pointer-events: none;
}
@media (max-width: 600px) { .hero::after { inset: 14px; } }

/* Emblem: settle in, then breathe ever so slightly. */
html.anim .hero-emblem {
  animation: ndm-float 6.5s var(--ease-soft) 1.2s infinite;
  filter: drop-shadow(0 8px 18px rgba(58,42,51,0.18));
}
@keyframes ndm-float { 50% { transform: translateY(-7px); } }
@media (prefers-reduced-motion: reduce) { html.anim .hero-emblem { animation: none; } }

/* ---- MARQUEE: fade the words into the edges ------------------ */
.strip {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

/* ---- ABOUT figure ------------------------------------------ */
.about-figure img {
  box-shadow: var(--shadow-lg);
  transition: transform 0.9s var(--ease);
}
.about-figure:hover img { transform: scale(1.015); }

/* ---- RITUAL: lift the dark band with a low rose glow --------- */
.ritual { overflow: hidden; }
.ritual::before {
  content: ""; position: absolute; z-index: 0;
  left: 50%; top: -10%; transform: translateX(-50%);
  width: 70%; height: 60%;
  background: radial-gradient(ellipse at center,
    rgba(194,126,140,0.20), rgba(58,42,51,0) 70%);
  pointer-events: none;
}
.ritual > .wrap { position: relative; z-index: 1; }
.step .no { transition: color var(--dur) var(--ease-soft); }
.step:hover .no { color: var(--rose); }

/* ---- QUOTE: a grander mark, floated as a watermark ---------- */
.quote { overflow: hidden; }
.quote .mark {
  font-size: clamp(4rem, 9vw, 6.5rem);
  opacity: 0.85; margin-bottom: -8px;
}

/* ---- GALLERY: warmer shade plates + finer overlay ----------- */
.shade { box-shadow: var(--shadow-md); }
.shade .cap .nm { letter-spacing: 0.01em; }

/* ---- MAP: greyscale at rest, blooms into color on hover ----- */
.map-embed { transition: filter 0.7s var(--ease-soft); }
.map-embed:hover { filter: grayscale(0) sepia(0); }

/* ---- FOOTER: social discs lift to a brass ring -------------- */
.footer-socials a:hover {
  transform: translateY(-3px);
  border-color: var(--brass);
  box-shadow: 0 12px 24px -14px rgba(0,0,0,0.55);
}

/* ============================================================
   BOOKING CALENDAR — extra states for the branded flow
   (chips/grid/slots/fields already styled above; these cover
   loading, empty, price tags, and the call-us fallback)
   ============================================================ */
.bm-chip .px { color: var(--fg3); margin-left: 8px; font-size: 0.82em; }
.bm-chip.sel .px { color: var(--rose-pale); }

.bm-slots-msg {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--fg2); padding: 10px 0 2px;
}
.bm-slots-msg .bm-spinner { width: 18px; height: 18px; border-width: 2px; }

.bm-linkbtn {
  background: none; border: none; padding: 0; font: inherit;
  color: var(--rose-deep); text-decoration: underline; text-underline-offset: 2px;
  cursor: pointer;
}
.bm-linkbtn:hover { color: var(--ink); }

.bm-error {
  margin-top: 18px; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--linen); color: var(--ink);
  font-size: 0.9rem; line-height: 1.55;
}
.bm-error a { color: var(--rose-deep); text-decoration: underline; text-underline-offset: 2px; }
.bm-error a:hover { color: var(--ink); }
