/* ============================================================
   SOLEIL BEAUTY BAR - design system
   Palette + logo sampled from India's own brand assets.
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Brand - sampled from the Soleil logo & promo art */
  --butter:      #FCE99A;   /* logo wordmark */
  --butter-deep: #F3D877;
  --clay:        #D09A77;   /* "Beauty Bar" script */
  --clay-deep:   #8F5837;
  --sun:         #D78306;   /* brand accent */
  --sun-ink:     #8F5405;   /* accessible on cream */

  /* Neutrals - warm espresso through to cream */
  --ink:      #191513;
  --ink-2:    #241F1C;
  --ink-3:    #322B27;
  --ink-line: rgba(252, 233, 154, .16);

  --cream:  #FDFAF5;
  --sand:   #F7F0E5;
  --blush:  #F4EAE8;
  --line:   #E7DDCE;

  --text:   #221E1B;
  --text-2: #574E46;
  --muted:  #6B6259;

  /* Type */
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans:  "Jost", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Fluid scale */
  --t-display: clamp(3rem, 11vw, 7.5rem);
  --t-h1:      clamp(2.4rem, 6.4vw, 4.6rem);
  --t-h2:      clamp(1.95rem, 4.4vw, 3.05rem);
  --t-h3:      clamp(1.3rem, 2.3vw, 1.65rem);
  --t-lead:    clamp(1.06rem, 1.6vw, 1.27rem);
  --t-body:    1.0625rem;
  --t-sm:      .9375rem;
  --t-eyebrow: .74rem;

  /* Space */
  --gap:     clamp(1.25rem, 3vw, 2rem);
  --section: clamp(4.5rem, 9vw, 8.5rem);
  --pad:     clamp(1.25rem, 5vw, 2.5rem);
  --max:     1220px;
  --measure: 60ch;

  /* Form */
  --r-sm: 6px;
  --r:    16px;
  --r-lg: 24px;
  --arch: 46% 46% 14px 14px / 38% 38% 3% 3%;

  --shadow-sm: 0 2px 10px -4px rgba(58, 40, 22, .16);
  --shadow:    0 18px 44px -26px rgba(58, 40, 22, .40);
  --shadow-lg: 0 40px 80px -44px rgba(58, 40, 22, .55);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-size: var(--t-body);
  font-weight: 400;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, picture, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { line-height: 1.06; font-weight: 400; text-wrap: balance; }
p { text-wrap: pretty; }
a { color: inherit; }

::selection { background: var(--butter); color: var(--ink); }

/* Focus - always visible, never removed */
:focus-visible {
  outline: 2.5px solid var(--sun);
  outline-offset: 3px;
  border-radius: 3px;
}
.on-dark :focus-visible, .site-header :focus-visible { outline-color: var(--butter); }

.skip {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -140%);
  z-index: 999; background: var(--ink); color: var(--butter);
  padding: .85rem 1.5rem; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-size: var(--t-sm); font-weight: 500; text-decoration: none;
  transition: transform .2s var(--ease);
}
.skip:focus { transform: translate(-50%, 0); }

.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;
}

/* ---------- 3. Typography ---------- */
.display, h1, h2, h3, .h2, .h3 {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 34, "WONK" 1;
  letter-spacing: -.022em;
}
.display {
  font-size: var(--t-display);
  font-weight: 600;
  line-height: .88;
  letter-spacing: -.038em;
}
h1, .h1 { font-size: var(--t-h1); font-weight: 500; letter-spacing: -.03em; }
h2, .h2 { font-size: var(--t-h2); font-weight: 500; }
h3, .h3 { font-size: var(--t-h3); font-weight: 500; line-height: 1.22; letter-spacing: -.012em; }

.italic { font-style: italic; font-variation-settings: "SOFT" 60, "WONK" 1; }
.hl { color: var(--sun-ink); font-style: italic; }
.on-dark .hl { color: var(--butter); }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--t-eyebrow);
  font-weight: 500;
  letter-spacing: .21em;
  text-transform: uppercase;
  color: var(--sun-ink);
  display: flex; align-items: center; gap: .7rem;
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: currentColor; opacity: .55; flex: none;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: ""; width: 26px; height: 1px; background: currentColor; opacity: .55; flex: none;
}
.on-dark .eyebrow { color: var(--clay); }

.lead {
  font-size: var(--t-lead);
  line-height: 1.62;
  color: var(--text-2);
  max-width: var(--measure);
}
.lead + .lead, .lead + p, p + .lead { margin-top: 1.05rem; }
.on-dark .lead { color: rgba(253, 250, 245, .76); }

.muted { color: var(--muted); }
.on-dark .muted { color: rgba(253, 250, 245, .58); }
.small { font-size: var(--t-sm); }

/* ---------- 4. Layout ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }
.wrap-narrow { max-width: 780px; }
.section { padding-block: var(--section); position: relative; }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }

.on-dark { background: var(--ink); color: var(--cream); }
.on-sand { background: var(--sand); }
.on-blush { background: var(--blush); }

.center { text-align: center; }
.center .lead, .center .eyebrow { margin-inline: auto; }

.stack > * + * { margin-top: 1.1rem; }
.section-head { max-width: 660px; margin-bottom: clamp(2.4rem, 5vw, 3.8rem); }
.section-head.center { margin-inline: auto; }

/* ---------- 5. Buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--butter);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1.02rem 1.85rem;
  min-height: 54px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; border-radius: 999px;
  font-family: var(--sans); font-size: .95rem; font-weight: 500;
  letter-spacing: .072em; text-transform: uppercase; text-decoration: none;
  line-height: 1; cursor: pointer; white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background-color .3s var(--ease), color .3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn-sun { --btn-bg: var(--butter); --btn-fg: var(--ink); }
.btn-sun:hover { --btn-bg: var(--butter-deep); }

.btn-ghost {
  --btn-bg: transparent; --btn-fg: var(--text);
  border-color: var(--line); box-shadow: none;
}
.btn-ghost:hover { --btn-bg: var(--ink); --btn-fg: var(--butter); border-color: var(--ink); }
.on-dark .btn-ghost { --btn-fg: var(--cream); border-color: var(--ink-line); }
.on-dark .btn-ghost:hover { --btn-bg: var(--butter); --btn-fg: var(--ink); border-color: var(--butter); }

.btn-sm { padding: .72rem 1.35rem; min-height: 44px; font-size: .8rem; }
.btn-block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.btn-row.center { justify-content: center; }

/* Text link with underline that grows */
.tlink {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 500; text-decoration: none; color: var(--sun-ink);
  padding-bottom: 2px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size .35s var(--ease);
}
.tlink:hover, .tlink:focus-visible { background-size: 100% 1px; }
.tlink .arw { transition: transform .35s var(--ease); }
.tlink:hover .arw { transform: translateX(4px); }
.on-dark .tlink { color: var(--butter); }

/* ---------- 6. Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(253, 250, 245, .94);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); }

.nav {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 74px;
}
.brand { display: flex; align-items: center; margin-right: auto; text-decoration: none; }
.brand img { width: 128px; height: auto; }
@media (min-width: 900px) { .brand img { width: 146px; } }

.nav-links { display: none; align-items: center; gap: 1.25rem; list-style: none; padding: 0; }
.nav-links a {
  font-size: .845rem; font-weight: 400; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none; color: var(--text-2);
  white-space: nowrap;
  position: relative; padding-block: .4rem;
  transition: color .25s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1.5px;
  background: var(--sun); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--text); }

.nav-cta { display: none; }
@media (min-width: 1000px) {
  .nav-links, .nav-cta { display: flex; }
}

/* Mobile menu */
.burger {
  position: relative; width: 46px; height: 46px; margin-right: -8px;
  background: none; border: 0; cursor: pointer; border-radius: 50%;
}
/* All three bars share one centre point and are offset by transform only,
   so the open state closes into an exact X. */
.burger span {
  position: absolute; top: 50%; left: 50%;
  width: 21px; height: 1.6px; margin: -.8px 0 0 -10.5px;
  background: var(--text); border-radius: 2px;
  transition: transform .32s var(--ease), opacity .2s var(--ease);
}
.burger span:nth-child(1) { transform: translateY(-6.5px); }
.burger span:nth-child(3) { transform: translateY(6.5px); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }
@media (min-width: 1000px) { .burger { display: none; } }

.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: var(--ink); color: var(--cream);
  padding: 96px var(--pad) calc(env(safe-area-inset-bottom) + 2rem);
  display: flex; flex-direction: column;
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.mobile-menu[data-open="true"] { opacity: 1; visibility: visible; }
.mobile-menu ul { list-style: none; padding: 0; margin: 0 0 auto; }
.mobile-menu li { border-bottom: 1px solid var(--ink-line); }
/* Scoped to the nav list: a blanket `.mobile-menu a` rule outranks .btn and
   would render the booking CTA as a 30px serif menu item. */
.mobile-menu ul a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.05rem 0;
  font-family: var(--serif); font-size: 1.85rem; font-weight: 400;
  font-variation-settings: "SOFT" 34, "WONK" 1;
  text-decoration: none; color: var(--cream);
  opacity: 0; transform: translateY(14px);
}
.mobile-menu[data-open="true"] ul a { animation: menuIn .5s var(--ease) forwards; }
.mobile-menu li:nth-child(1) a { animation-delay: .04s; }
.mobile-menu li:nth-child(2) a { animation-delay: .08s; }
.mobile-menu li:nth-child(3) a { animation-delay: .12s; }
.mobile-menu li:nth-child(4) a { animation-delay: .16s; }
.mobile-menu li:nth-child(5) a { animation-delay: .20s; }
.mobile-menu li:nth-child(6) a { animation-delay: .24s; }
.mobile-menu li:nth-child(7) a { animation-delay: .28s; }
.mobile-menu ul a span { font-family: var(--sans); font-size: .8rem; color: var(--clay); letter-spacing: .1em; }
@keyframes menuIn { to { opacity: 1; transform: none; } }
.mobile-menu .mm-foot { padding-top: 2rem; display: grid; gap: .8rem; }
.mobile-menu .mm-meta { font-size: var(--t-sm); color: rgba(253,250,245,.72); line-height: 1.7; }
.mobile-menu .mm-meta a { color: var(--butter); text-decoration: none; }
.mobile-menu .btn { white-space: normal; }
body.menu-open { overflow: hidden; }

/* ---------- 7. Sticky mobile booking bar ---------- */
.bookbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: flex; gap: .55rem; align-items: center;
  padding: .6rem var(--pad) calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(25, 21, 19, .93);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--ink-line);
  transform: translateY(105%);
  transition: transform .4s var(--ease);
}
.bookbar.is-on { transform: none; }
.bookbar .btn { flex: 1; padding-inline: 1rem; }
.bookbar-icon {
  display: grid; place-items: center; flex: none;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(252, 233, 154, .1); color: var(--butter);
  border: 1px solid var(--ink-line); text-decoration: none;
  transition: background-color .25s var(--ease);
}
.bookbar-icon:hover { background: rgba(252, 233, 154, .2); }
.bookbar-icon svg { width: 20px; height: 20px; }
@media (min-width: 1000px) { .bookbar { display: none; } }

/* ---------- 8. Sun / texture motifs ---------- */
.grain::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}
.glow {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(215, 131, 6, .30), rgba(215, 131, 6, 0) 68%);
  filter: blur(10px);
}

.rays { position: absolute; pointer-events: none; z-index: 0; opacity: .5; }
.rays line { stroke: var(--clay); stroke-width: 1; stroke-linecap: round; }
.on-dark .rays line { stroke: var(--butter); }

.sun-divider {
  display: grid; place-items: center; padding-block: clamp(2rem, 5vw, 3.2rem);
}
.sun-divider svg { width: clamp(120px, 22vw, 180px); height: auto; opacity: .5; }
.sun-divider circle { fill: var(--clay); }
.sun-divider line { stroke: var(--clay); stroke-width: 1.2; stroke-linecap: round; }
.on-dark .sun-divider circle { fill: var(--butter); }
.on-dark .sun-divider line { stroke: var(--butter); }

/* ---------- 9. Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--cream);
  padding-block: clamp(3.5rem, 9vw, 7rem) clamp(3.5rem, 8vw, 6rem);
  isolation: isolate;
}
.hero .glow { width: 74vw; height: 74vw; max-width: 760px; max-height: 760px;
  top: -26%; right: -18%; }
.hero .glow.two {
  width: 42vw; height: 42vw; left: -16%; bottom: -22%; top: auto; right: auto;
  background: radial-gradient(circle, rgba(208, 154, 119, .24), rgba(208, 154, 119, 0) 70%);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; gap: clamp(2.5rem, 6vw, 4.5rem); align-items: center;
}
@media (min-width: 940px) {
  .hero-grid { grid-template-columns: 1.06fr .94fr; }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .48rem 1rem .48rem .55rem;
  background: rgba(252, 233, 154, .09);
  border: 1px solid var(--ink-line); border-radius: 999px;
  font-size: .78rem; letter-spacing: .09em; text-transform: uppercase;
  color: var(--butter); margin-bottom: 1.5rem; text-decoration: none;
  transition: background-color .25s var(--ease);
}
.hero-badge:hover { background: rgba(252, 233, 154, .17); }
.hero-badge b { font-weight: 600; }
.hero-badge .dot {
  width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
  background: var(--butter); color: var(--ink); font-size: .68rem; font-weight: 700;
  flex: none;
}

.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .l1 { display: block; }
.hero h1 .l2 { display: block; color: var(--butter); }
.hero .lead { max-width: 44ch; margin-bottom: 2.1rem; }
.hero .btn-row { margin-bottom: 2.2rem; }

.hero-facts {
  display: flex; flex-wrap: wrap; gap: .5rem 1.6rem;
  padding-top: 1.6rem; border-top: 1px solid var(--ink-line);
  font-size: var(--t-sm); color: rgba(253, 250, 245, .72);
}
.hero-facts span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-facts svg { width: 15px; height: 15px; color: var(--clay); flex: none; }

/* Hero image - arch */
.hero-art { position: relative; }
.hero-art .frame {
  position: relative; border-radius: var(--arch); overflow: hidden;
  /* Close to the studio photo's own 1206x1142 so the neon sign, the shelves
     and both vases survive the crop. */
  aspect-ratio: 1 / 1.04; box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-line);
}
.hero-art .frame { --arch: 44% 44% 14px 14px / 34% 34% 3% 3%; }
.hero-art .frame picture { display: block; width: 100%; height: 100%; }
.hero-art .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-art .frame::after {
  content: ""; position: absolute; inset: 0;
  /* Just enough to seat the photo in the dark hero. Anything heavier and
     India and the neon sign lose their warmth. */
  background: linear-gradient(200deg, rgba(215,131,6,.06) 30%, rgba(25,21,19,.20));
}
@media (max-width: 939px) {
  .hero-art { max-width: 400px; margin-inline: auto; width: 100%; margin-bottom: 1.6rem; }
}

.hero-chip {
  position: absolute; z-index: 3; left: -20px; bottom: -22px;
  background: var(--cream); color: var(--text);
  border-radius: var(--r); padding: .85rem 1.15rem;
  box-shadow: var(--shadow); max-width: 220px;
}
/* A light card sitting inside a dark section: it must set its own colours
   so the .on-dark rules above cannot bleach its text. */
.hero-chip .stars { color: var(--sun-ink); font-size: .85rem; letter-spacing: .1em; }
.hero-chip p { font-size: .84rem; line-height: 1.45; color: var(--text-2); margin-top: .2rem; }
.hero-chip b { color: var(--text); font-weight: 500; }
.on-dark .hero-chip .muted, .hero-chip .muted { color: var(--muted); }
@media (max-width: 480px) { .hero-chip { left: -6px; bottom: -16px; max-width: 190px; } }

/* ---------- 10. Marquee trust strip ---------- */
.strip {
  background: var(--butter); color: var(--ink);
  padding-block: .95rem; overflow: hidden;
  border-block: 1px solid rgba(25, 21, 19, .12);
}
.strip-track {
  display: flex; gap: 2.6rem; width: max-content;
  animation: slide 44s linear infinite;
}
.strip span {
  display: inline-flex; align-items: center; gap: 2.6rem;
  font-size: .8rem; font-weight: 500; letter-spacing: .17em; text-transform: uppercase;
  white-space: nowrap;
}
.strip span::after { content: "\2733"; font-size: .95rem; opacity: .5; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .strip-track { animation: none; }
  .strip { display: flex; justify-content: center; }
}
.strip:hover .strip-track { animation-play-state: paused; }

/* ---------- 11. Cards & grids ---------- */
.grid { display: grid; gap: var(--gap); }
.g-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.g-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 268px), 1fr)); }
.g-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }

.card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(1.4rem, 3vw, 2rem);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              border-color .35s var(--ease);
}
.on-dark .card, .card.dark {
  background: var(--ink-2); border-color: var(--ink-line); color: var(--cream);
}
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--clay); }

.num {
  font-family: var(--serif); font-size: 2.1rem; font-weight: 500;
  font-variation-settings: "SOFT" 34, "WONK" 1;
  color: var(--sun-ink); line-height: 1; display: block; margin-bottom: .85rem;
}
.on-dark .num { color: var(--butter); }

/* ---------- 12. Service cards ---------- */
.svc {
  display: flex; flex-direction: column;
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              border-color .35s var(--ease);
}
.svc::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 3px;
  background: linear-gradient(90deg, var(--sun), var(--butter));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--clay); }
.svc:hover::before { transform: scaleX(1); }
.svc.is-featured { border-color: var(--clay); background: linear-gradient(180deg, #FFFDF8, var(--cream)); }
.svc.is-featured::before { transform: scaleX(1); }

.svc-top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.svc h3 { margin-bottom: .55rem; }
.svc-price {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 500;
  font-variation-settings: "SOFT" 34, "WONK" 1;
  color: var(--text); white-space: nowrap; line-height: 1;
}
.svc-price small { font-family: var(--sans); font-size: .72rem; color: var(--muted); display: block;
  text-align: right; letter-spacing: .05em; margin-top: .3rem; font-weight: 400; }
.svc p { font-size: var(--t-sm); color: var(--text-2); line-height: 1.62; }
.svc-meta {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin: 1rem 0 1.25rem;
}
.svc .btn { margin-top: auto; }

.tag {
  display: inline-flex; align-items: center; gap: .32rem;
  padding: .28rem .68rem; border-radius: 999px;
  background: var(--sand); border: 1px solid var(--line);
  font-size: .74rem; letter-spacing: .04em; color: var(--text-2); white-space: nowrap;
}
.tag svg { width: 12px; height: 12px; opacity: .65; }
.tag-sun { background: rgba(215, 131, 6, .10); border-color: rgba(215, 131, 6, .3); color: var(--sun-ink); }
.tag-clay { background: rgba(208, 154, 119, .14); border-color: rgba(208, 154, 119, .38); color: var(--clay-deep); }

/* Options list inside a service */
.opts { margin: .3rem 0 1.25rem; border-top: 1px solid var(--line); }
.opts summary {
  cursor: pointer; list-style: none; padding: .8rem 0 0;
  font-size: var(--t-sm); font-weight: 500; color: var(--sun-ink);
  display: flex; align-items: center; gap: .4rem;
}
.opts summary::-webkit-details-marker { display: none; }
.opts summary .chev { transition: transform .3s var(--ease); width: 13px; height: 13px; }
.opts[open] summary .chev { transform: rotate(180deg); }
.opts ul { list-style: none; padding: .7rem 0 0; margin: 0; display: grid; gap: .4rem; }
.opts li {
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: .875rem; color: var(--text-2);
  padding-bottom: .4rem; border-bottom: 1px dashed var(--line);
}
.opts li:last-child { border-bottom: 0; }
.opts li b { font-weight: 500; color: var(--text); white-space: nowrap; }

/* ---------- 13. Category nav (services page) ---------- */
.catnav {
  position: sticky; top: 74px; z-index: 40;
  background: rgba(253, 250, 245, .92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding-block: .8rem;
}
.catnav-inner { display: flex; gap: .5rem; overflow-x: auto; scrollbar-width: none; }
.catnav-inner::-webkit-scrollbar { display: none; }
.catnav a {
  flex: none; padding: .55rem 1.05rem; border-radius: 999px;
  border: 1px solid var(--line); background: var(--cream);
  font-size: .82rem; letter-spacing: .04em; text-decoration: none; color: var(--text-2);
  white-space: nowrap;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.catnav a:hover, .catnav a.is-active {
  background: var(--ink); color: var(--butter); border-color: var(--ink);
}

/* ---------- 14. Gallery ---------- */
.gallery { display: grid; gap: .75rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--r-sm); }
.gallery img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure:nth-child(1), .gallery figure:nth-child(8) { border-radius: var(--arch); }

/* ---------- 15. Reviews ---------- */
.reviews { display: grid; gap: var(--gap); }
@media (min-width: 760px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: var(--ink-2); border: 1px solid var(--ink-line); border-radius: var(--r);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex; flex-direction: column;
}
.review .stars { color: var(--butter); letter-spacing: .16em; font-size: .92rem; margin-bottom: 1rem; }
.review blockquote {
  font-family: var(--serif); font-size: 1.12rem; line-height: 1.5; font-weight: 400;
  font-variation-settings: "SOFT" 40, "WONK" 1;
  color: var(--cream); margin: 0 0 1.3rem;
}
.review figcaption {
  margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--ink-line);
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--clay);
}

/* ---------- 16. Split feature ---------- */
.split { display: grid; gap: clamp(2.2rem, 6vw, 4.5rem); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.flip .split-art { order: 2; }
}
.split-art { position: relative; }
.split-art .frame {
  border-radius: var(--arch); overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.on-dark .split-art .frame { border-color: var(--ink-line); }
.split-art .frame picture { display: block; width: 100%; height: 100%; }
.split-art .frame img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 17. Steps ---------- */
.steps { counter-reset: s; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { counter-increment: s; background: var(--cream); padding: clamp(1.5rem, 3vw, 2.1rem); }
.on-dark .steps { background: var(--ink-line); border-color: var(--ink-line); }
.on-dark .step { background: var(--ink-2); }
.step::before {
  content: counter(s, decimal-leading-zero);
  font-family: var(--serif); font-size: 1.6rem; color: var(--clay);
  font-variation-settings: "SOFT" 34, "WONK" 1;
  display: block; margin-bottom: .8rem; line-height: 1;
}
.step h3 { margin-bottom: .5rem; }
.step p { font-size: var(--t-sm); color: var(--text-2); }
.on-dark .step p { color: rgba(253,250,245,.72); }

/* ---------- 18. FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0;
  font-family: var(--serif); font-size: clamp(1.08rem, 2vw, 1.28rem); font-weight: 500;
  font-variation-settings: "SOFT" 34, "WONK" 1;
  line-height: 1.32; letter-spacing: -.01em;
  transition: color .25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--sun-ink); }
.faq .pm {
  flex: none; width: 24px; height: 24px; margin-top: 2px; position: relative;
}
.faq .pm::before, .faq .pm::after {
  content: ""; position: absolute; inset: 50% 2px auto; height: 1.5px;
  background: var(--sun); transform: translateY(-50%);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq .pm::after { transform: translateY(-50%) rotate(90deg); }
.faq details[open] .pm::after { transform: translateY(-50%) rotate(0); opacity: 0; }
.faq .answer { padding-bottom: 1.6rem; max-width: var(--measure); }
.faq .answer p { font-size: var(--t-sm); color: var(--text-2); }
.faq .answer p + p { margin-top: .75rem; }
.faq details[open] .answer { animation: fadeUp .4s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(-6px); } }

/* ---------- 19. Hours ---------- */
.hours { list-style: none; padding: 0; margin: 0; }
.hours li {
  display: flex; justify-content: space-between; gap: 1.5rem; align-items: baseline;
  padding: .78rem 0; border-bottom: 1px solid var(--line);
  font-size: var(--t-sm);
}
.on-dark .hours li { border-color: var(--ink-line); }
.hours li:last-child { border-bottom: 0; }
.hours .d { letter-spacing: .1em; text-transform: uppercase; font-size: .78rem; color: var(--text-2); }
.on-dark .hours .d { color: rgba(253,250,245,.66); }
.hours .t { font-variant-numeric: tabular-nums; font-weight: 500; }
.hours li.closed .t { color: var(--muted); font-weight: 400; }
.on-dark .hours li.closed .t { color: rgba(253,250,245,.42); }
.hours li.today {
  background: rgba(215, 131, 6, .08); margin-inline: -.7rem; padding-inline: .7rem;
  border-radius: var(--r-sm); border-bottom-color: transparent;
}
.hours li.today .d { color: var(--sun-ink); font-weight: 500; }
.on-dark .hours li.today { background: rgba(252, 233, 154, .09); }
.on-dark .hours li.today .d { color: var(--butter); }

.open-now {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 999px; margin-bottom: 1.2rem;
}
.open-now .led { width: 7px; height: 7px; border-radius: 50%; background: currentColor; flex: none; }
.open-now[data-state="open"] { background: rgba(46, 125, 78, .12); color: #1F6B44; }
.open-now[data-state="closed"] { background: rgba(122, 112, 102, .14); color: var(--text-2); }
.on-dark .open-now[data-state="open"] { background: rgba(126, 217, 163, .13); color: #93E0B7; }
.on-dark .open-now[data-state="closed"] { background: rgba(253, 250, 245, .1); color: rgba(253,250,245,.66); }

/* ---------- 20. Map ---------- */
.map-frame {
  border-radius: var(--r); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); background: var(--sand);
  aspect-ratio: 16/11;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.86) contrast(1.02); }
@media (min-width: 700px) { .map-frame { aspect-ratio: 16/9; } }

/* ---------- 21. Packages ---------- */
.pkg {
  display: flex; flex-direction: column; position: relative;
  background: var(--ink-2); border: 1px solid var(--ink-line);
  border-radius: var(--r-lg); padding: clamp(1.6rem, 3.2vw, 2.2rem);
  color: var(--cream);
}
.pkg.is-best { border-color: var(--butter); box-shadow: 0 0 0 1px var(--butter), var(--shadow-lg); }
.pkg-flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--butter); color: var(--ink); border-radius: 999px;
  padding: .32rem .95rem; font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; white-space: nowrap;
}
.pkg h3 { color: var(--cream); }
.pkg .price {
  font-family: var(--serif); font-size: 3rem; font-weight: 500; line-height: 1;
  font-variation-settings: "SOFT" 34, "WONK" 1;
  color: var(--butter); margin: .9rem 0 .3rem;
}
.pkg .price sup { font-size: 1.1rem; vertical-align: super; margin-right: .1rem; }
.pkg .value { font-size: .82rem; color: var(--clay); letter-spacing: .05em; margin-bottom: 1.4rem; }
.pkg ul { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: .62rem; }
.pkg li { display: flex; gap: .6rem; font-size: var(--t-sm); color: rgba(253,250,245,.82); line-height: 1.5; }
.pkg li svg { width: 15px; height: 15px; color: var(--butter); flex: none; margin-top: 4px; }
.pkg .btn { margin-top: auto; }

/* ---------- 22. Callout / CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--ink); color: var(--cream);
  border-radius: var(--r-lg);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}
.cta-band .glow { width: 60%; height: 200%; top: -50%; left: 50%; transform: translateX(-50%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band .lead { margin-inline: auto; margin-bottom: 2rem; }

.note {
  display: flex; gap: .85rem; align-items: flex-start;
  background: var(--blush); border: 1px solid rgba(208, 154, 119, .34);
  border-radius: var(--r); padding: 1.1rem 1.3rem;
  font-size: var(--t-sm); color: var(--text-2); line-height: 1.6;
}
.note svg { width: 18px; height: 18px; color: var(--clay-deep); flex: none; margin-top: 3px; }
.note b { color: var(--text); font-weight: 500; }
.on-dark .note {
  background: rgba(252, 233, 154, .07); border-color: var(--ink-line);
  color: rgba(253,250,245,.78);
}
.on-dark .note svg { color: var(--butter); }
.on-dark .note b { color: var(--cream); }

/* ---------- 23. Social ---------- */
.social-cta {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
}
.handle {
  font-family: var(--serif); font-size: clamp(1.5rem, 4vw, 2.4rem); font-weight: 500;
  font-variation-settings: "SOFT" 34, "WONK" 1;
  text-decoration: none; display: inline-flex; align-items: center; gap: .7rem;
}
.handle:hover { color: var(--sun-ink); }
.on-dark .handle:hover { color: var(--butter); }

.social-row { display: flex; gap: .6rem; flex-wrap: wrap; }
.social-row a {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .68rem 1.1rem; border-radius: 999px;
  border: 1px solid var(--line); text-decoration: none;
  font-size: .84rem; letter-spacing: .04em;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.social-row a:hover { background: var(--ink); color: var(--butter); border-color: var(--ink); }
.on-dark .social-row a { border-color: var(--ink-line); }
.on-dark .social-row a:hover { background: var(--butter); color: var(--ink); border-color: var(--butter); }
.social-row svg { width: 17px; height: 17px; }

/* ---------- 24. Page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--ink); color: var(--cream);
  padding-block: clamp(3.2rem, 8vw, 5.6rem) clamp(3rem, 7vw, 4.8rem);
}
.page-hero .glow { width: 55vw; height: 55vw; max-width: 620px; max-height: 620px; top: -34%; right: -12%; }
.page-hero > .wrap { position: relative; z-index: 2; }
.page-hero h1 { margin-bottom: 1.1rem; }
.page-hero .lead { max-width: 56ch; }

.crumbs {
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(253, 250, 245, .55); margin-bottom: 1.6rem;
}
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--butter); }
.crumbs ol { display: flex; gap: .5rem; align-items: center; flex-wrap: wrap; padding: 0; margin: 0; list-style: none; }
.crumbs li { display: flex; gap: .5rem; align-items: center; }
.crumbs [aria-current] { color: var(--clay); }

/* ---------- 25. Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding-block: clamp(3.2rem, 7vw, 5rem) 2rem; }
.footer-grid { display: grid; gap: clamp(2rem, 5vw, 3rem); }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1050px) { .footer-grid { grid-template-columns: 1.5fr .8fr .8fr 1.1fr; } }
.site-footer img.f-logo { width: 168px; margin-bottom: 1.3rem; }
.site-footer .f-head {
  font-family: var(--sans); font-size: .74rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--clay);
  margin-bottom: 1.15rem; line-height: 1.4;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .62rem; }
.site-footer a { text-decoration: none; }
/* Scoped deliberately: a blanket `.site-footer a` rule outranks .btn and
   .social-row a, and would repaint the butter CTA's label near-white. */
.site-footer ul a,
.site-footer address a,
.site-footer .footer-bottom a {
  color: rgba(253, 250, 245, .78); font-size: var(--t-sm);
  transition: color .2s var(--ease);
}
.site-footer ul a:hover,
.site-footer address a:hover,
.site-footer .footer-bottom a:hover { color: var(--butter); }
.site-footer address { font-style: normal; font-size: var(--t-sm); color: rgba(253,250,245,.74); line-height: 1.7; }
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.6rem;
  border-top: 1px solid var(--ink-line);
  display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between;
  font-size: .8rem; color: rgba(253, 250, 245, .5);
}
.footer-bottom a { font-size: .8rem; }
@media (max-width: 999px) { .site-footer { padding-bottom: 6.5rem; } }

/* ---------- 26. Scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(20px); }
.js .reveal.in {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .reveal.d1.in { transition-delay: .07s; }
.js .reveal.d2.in { transition-delay: .14s; }
.js .reveal.d3.in { transition-delay: .21s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ---------- 27. Utility ---------- */
.mt-1 { margin-top: .8rem; }
.mt-2 { margin-top: 1.6rem; }
.mt-3 { margin-top: 2.4rem; }
.mb-2 { margin-bottom: 1.6rem; }
.rule { height: 1px; background: var(--line); border: 0; margin-block: clamp(2rem, 5vw, 3.4rem); }
.on-dark .rule { background: var(--ink-line); }
.nowrap { white-space: nowrap; }
