/* ==================================================================
   Coco Beauty Salon — site styles
   Built on the design-system tokens (var(--*)). One cocoa accent,
   warm cream + espresso surfaces, pill CTAs, full-bleed photography.
   ================================================================== */

:root {
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);   /* soft, expensive settle */
  --ease-intro: cubic-bezier(0.16, 1, 0.3, 1);  /* premium entrance reveal */
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scrollbar-gutter: stable; }
body {
  margin: 0;
  font-family: var(--font-text);
  background: var(--color-canvas);
  color: var(--color-ink);
  font-size: var(--type-body-size);
  line-height: var(--type-body-lh);
  letter-spacing: var(--type-body-ls);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: #58331f; }
h1, h2, h3, h4 { margin: 0; font-weight: var(--weight-semibold); letter-spacing: -0.02em; }
p { margin: 0; }
::selection { background: var(--color-primary); color: var(--color-on-primary); }

.no-scroll { overflow: hidden; height: 100vh; }
/* entrance lock — no background scroll, no scrollbar while the intro is up */
html.intro-active, body.intro-active { overflow: hidden !important; height: 100%; }

/* ---------- shared layout ---------- */
.wrap { width: 100%; max-width: var(--container-grid); margin: 0 auto; padding: 0 40px; }
.wrap-text { width: 100%; max-width: var(--container-text); margin: 0 auto; padding: 0 40px; }
.section { padding: 104px 0; }
.eyebrow {
  font-size: var(--type-caption-strong-size);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
  margin-bottom: 22px;
}
.tile-dark .eyebrow { color: var(--color-primary-on-dark); }
.h-display { font-size: clamp(34px, 5vw, 56px); line-height: 1.05; letter-spacing: -0.03em; }
.h-lg { font-size: clamp(28px, 3.6vw, 42px); line-height: 1.08; letter-spacing: -0.025em; }
.lead {
  font-size: clamp(18px, 2vw, 22px); line-height: 1.5; font-weight: var(--weight-regular);
  color: #4b3527; letter-spacing: -0.01em;
}
.tile-dark { background: var(--color-surface-tile-1); color: var(--color-body-on-dark); }
.tile-dark .lead { color: var(--color-body-muted); }
.tile-parchment { background: var(--color-canvas-parchment); }

/* ---------- CTA pills (design-system Button grammar) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-text); font-size: var(--type-body-size);
  letter-spacing: var(--type-body-ls); line-height: 1; white-space: nowrap;
  border: none; cursor: pointer; border-radius: var(--radius-pill);
  padding: 15px 30px; transition: transform 120ms var(--ease-standard), background 200ms, color 200ms, border-color 200ms;
}
.btn { transition: transform 380ms var(--ease-lux), background 320ms var(--ease-soft), color 320ms, border-color 320ms, box-shadow 380ms var(--ease-lux); }
.btn:active { transform: scale(0.95); }
.btn-primary { background: var(--color-primary); color: var(--color-on-primary); box-shadow: 0 4px 14px rgba(107,63,42,0.16); }
.btn-primary:hover { background: #58331f; color: var(--color-on-primary); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(107,63,42,0.30); }
.btn-ghost { background: transparent; color: var(--color-primary); border: 1px solid var(--color-primary); }
.btn-ghost:hover { background: var(--color-primary); color: var(--color-on-primary); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(107,63,42,0.22); }
.btn-on-dark { background: var(--color-canvas); color: var(--color-ink); box-shadow: 0 4px 16px rgba(0,0,0,0.18); }
.btn-on-dark:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0,0,0,0.30); }
.btn-ghost-dark { background: transparent; color: var(--color-canvas); border: 1px solid rgba(255,248,240,0.45); }
.btn-ghost-dark:hover { border-color: var(--color-canvas); background: rgba(255,248,240,0.10); color:#fff; transform: translateY(-2px); }
.btn-sm { padding: 11px 22px; font-size: var(--type-caption-strong-size); }
.btn svg { width: 17px; height: 17px; }

/* ================= ENTRANCE OVERLAY ================= */
#intro {
  position: fixed; inset: 0; z-index: 3000;
  width: 100vw; height: 100vh; height: 100dvh; overflow: hidden;
  background: radial-gradient(120% 100% at 50% 40%, #23150e 0%, var(--color-surface-black) 70%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 1; transition: opacity 700ms var(--ease-intro);
  will-change: opacity;
}
#intro.hide { opacity: 0; pointer-events: none; }
.intro-inner { text-align: center; padding: 0 24px; transition: transform 700ms var(--ease-intro), opacity 700ms var(--ease-intro); }
#intro.hide .intro-inner { transform: translateY(-6px); opacity: 0; }
.intro-word {
  font-family: var(--font-display); color: var(--color-canvas);
  font-size: clamp(30px, 6vw, 62px); font-weight: var(--weight-light);
  letter-spacing: 0.06em; opacity: 0; transform: translateY(12px) scale(0.98);
  animation: introWord 700ms var(--ease-intro) 150ms forwards;
  will-change: opacity, transform; white-space: nowrap;
}
.intro-line {
  height: 1px; width: min(320px, 60vw); margin: 30px auto 24px; background: var(--color-primary-focus);
  opacity: 0; transform: scaleX(0); transform-origin: center;
  animation: introLine 600ms var(--ease-intro) 780ms forwards;
  will-change: opacity, transform;
}
.intro-loc {
  font-size: clamp(12px, 2.4vw, 15px); letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--color-body-muted); opacity: 0; transform: translateY(8px);
  animation: introLoc 500ms var(--ease-intro) 1180ms forwards;
  will-change: opacity, transform;
}
.intro-skip {
  position: absolute; bottom: 40px; left: 0; right: 0; text-align: center;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(232,199,186,0.5); opacity: 0;
  animation: introLoc 500ms ease 1800ms forwards;
}
@keyframes introWord { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes introLine { to { opacity: 1; transform: scaleX(1); } }
@keyframes introLoc  { to { opacity: 1; transform: translateY(0); } }

/* mobile: shorter travel, keep it light */
@media (max-width: 768px) {
  .intro-word { transform: translateY(8px) scale(0.985); }
  .intro-line { margin: 24px auto 20px; }
}
/* ================= CUSTOM CURSOR ================= */
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; z-index: 4000; pointer-events: none;
  border-radius: 50%; opacity: 0; transition: opacity 400ms var(--ease-lux), width 420ms var(--ease-lux),
  height 420ms var(--ease-lux), background 420ms var(--ease-lux), border-color 420ms; }
.cursor { width: 32px; height: 32px; border: 1px solid rgba(201,165,92,0.85);
  transform: translate(-50%, -50%); backdrop-filter: saturate(120%); }
.cursor-dot { width: 5px; height: 5px; background: var(--color-primary-focus);
  transform: translate(-50%, -50%); transition: opacity 400ms, width 300ms var(--ease-lux), height 300ms var(--ease-lux); }
.cursor.ready, .cursor-dot.ready { opacity: 1; }
.cursor.grow { width: 66px; height: 66px; background: rgba(201,165,92,0.16); border-color: rgba(201,165,92,0.55); }
.cursor.grow ~ .cursor-dot, .cursor-dot.hide { opacity: 0; }
.cursor.press { transform: translate(-50%, -50%) scale(0.82); }
body.cursor-on, body.cursor-on a, body.cursor-on button, body.cursor-on .svc-card { cursor: none; }

/* ================= NAV ================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px; transition: background 400ms, padding 400ms, box-shadow 400ms, border-color 400ms;
  border-bottom: 1px solid transparent;
}
.nav.solid {
  background: rgba(255,248,240,0.82); backdrop-filter: var(--blur-frosted);
  -webkit-backdrop-filter: var(--blur-frosted); padding: 13px 40px;
  border-bottom: 1px solid var(--color-border-faint);
}
.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.nav-brand .bn { font-family: var(--font-display); font-size: 21px; font-weight: var(--weight-semibold);
  letter-spacing: -0.01em; color: var(--color-canvas); transition: color 400ms; }
.nav-brand .bl { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; margin-top: 5px;
  color: rgba(255,248,240,0.7); transition: color 400ms; }
.nav.solid .nav-brand .bn { color: var(--color-ink); }
.nav.solid .nav-brand .bl { color: var(--color-ink-muted-48); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { position: relative; font-size: 13px; letter-spacing: 0.02em; color: rgba(255,248,240,0.86);
  font-weight: var(--weight-regular); transition: color 360ms var(--ease-lux), opacity 360ms; padding: 4px 2px; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left center; opacity: 0.75;
  transition: transform 460ms var(--ease-lux); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--color-primary-focus); }
.nav.solid .nav-links a { color: var(--color-ink); }
.nav.solid .nav-links a:hover { color: var(--color-primary); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-cta { }
.nav .btn-nav { background: var(--color-canvas); color: var(--color-ink); padding: 11px 22px;
  font-size: 13px; border-radius: var(--radius-pill); border: none; cursor: pointer;
  transition: transform 380ms var(--ease-lux), background 320ms var(--ease-soft), color 320ms, box-shadow 380ms var(--ease-lux);
  box-shadow: 0 4px 14px rgba(0,0,0,0.14); }
.nav .btn-nav:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,0.22); }
.nav .btn-nav:active { transform: scale(0.95); }
.nav.solid .btn-nav { background: var(--color-primary); color: var(--color-on-primary); box-shadow: 0 4px 14px rgba(107,63,42,0.20); }
.nav.solid .btn-nav:hover { background: #58331f; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(107,63,42,0.32); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 1.6px; background: var(--color-canvas); transition: all 300ms; }
.nav.solid .hamburger span { background: var(--color-ink); }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 1400; background: var(--color-surface-tile-1);
  color: var(--color-canvas); transform: translateX(100%); transition: transform 520ms var(--ease-standard);
  display: flex; flex-direction: column; padding: 30px 32px; }
.drawer.open { transform: translateX(0); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; }
.drawer-top .bn { font-family: var(--font-display); font-size: 20px; }
.drawer-close { background: none; border: none; color: var(--color-canvas); cursor: pointer; padding: 6px; }
.drawer-links { display: flex; flex-direction: column; gap: 4px; margin-top: 44px; }
.drawer-links a { font-size: 26px; font-weight: var(--weight-light); color: var(--color-canvas);
  padding: 12px 0; border-bottom: 1px solid rgba(255,248,240,0.1); letter-spacing: -0.01em; }
.drawer-foot { margin-top: auto; }
.drawer-foot .btn { width: 100%; }
.drawer-meta { margin-top: 22px; font-size: 13px; color: var(--color-body-muted); line-height: 1.7; }

/* ================= HERO ================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  overflow: hidden; background: var(--color-surface-black); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%;
  transform: scale(1.08); }
.hero-bg::after { content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(18,10,6,0.82) 0%, rgba(18,10,6,0.28) 42%, rgba(18,10,6,0.30) 100%),
    linear-gradient(to right, rgba(18,10,6,0.55) 0%, rgba(18,10,6,0.05) 55%); }
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--container-grid);
  margin: 0 auto; padding: 0 40px 96px; }
.hero h1 { color: var(--color-canvas); max-width: 15ch; font-weight: var(--weight-light); }
.hero .lead { color: rgba(255,248,240,0.9); max-width: 46ch; margin-top: 26px; }
.hero-cta { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,248,240,0.7);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; }
.hero-scroll .line { width: 1px; height: 46px; background: rgba(255,248,240,0.4); overflow: hidden; position: relative; }
.hero-scroll .line::after { content:""; position:absolute; top:-46px; left:0; width:1px; height:46px;
  background: var(--color-primary-focus); animation: scrollLine 2.4s var(--ease-standard) infinite; }
@keyframes scrollLine { 0%{transform:translateY(0)} 60%,100%{transform:translateY(92px)} }

/* ================= TRUST BAR ================= */
.trust { background: var(--color-canvas-parchment); border-top: 1px solid var(--color-border-faint);
  border-bottom: 1px solid var(--color-border-faint); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 30px 24px; text-align: center; display: flex; align-items: center; justify-content: center;
  gap: 12px; border-right: 1px solid var(--color-border-faint); font-size: 14px; letter-spacing: 0.02em;
  color: var(--color-ink); font-weight: var(--weight-regular); }
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 18px; height: 18px; color: var(--color-primary); flex: none; }

/* ================= SERVICES ================= */
.svc-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px;
  flex-wrap: wrap; margin-bottom: 52px; }
.svc-head .lead { max-width: 40ch; }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.svc-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: #000;
  aspect-ratio: 3/4; transition: transform 620ms var(--ease-lux), box-shadow 620ms var(--ease-lux); }
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 26px 50px rgba(36,22,15,0.28); }
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1100ms var(--ease-lux); }
.svc-card:hover img { transform: scale(1.08); }
.svc-card::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,10,6,0.86) 0%, rgba(18,10,6,0.15) 55%, rgba(18,10,6,0.05) 100%); }
.svc-body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 24px; color: var(--color-canvas); }
.svc-body h3 { font-size: 20px; letter-spacing: -0.02em; }
.svc-body p { font-size: 13.5px; line-height: 1.5; color: rgba(255,248,240,0.82); margin-top: 8px;
  max-height: 0; opacity: 0; overflow: hidden; transition: max-height 500ms var(--ease-standard), opacity 400ms, margin 400ms; }
.svc-card:hover .svc-body p { max-height: 120px; opacity: 1; }
.svc-num { position: absolute; top: 18px; left: 20px; z-index: 2; font-size: 12px; letter-spacing: 0.2em;
  color: rgba(255,248,240,0.75); }

/* ================= SIGNATURE ================= */
.sig-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.sig-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.sig-img img { width: 100%; height: 100%; object-fit: cover; }
.sig-list { list-style: none; margin: 34px 0 0; padding: 0; }
.sig-list li { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid var(--color-border-faint); }
.sig-list li:last-child { border-bottom: 1px solid var(--color-border-faint); }
.sig-list .ic { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--color-canvas-parchment);
  display: flex; align-items: center; justify-content: center; }
.sig-list .ic svg { width: 18px; height: 18px; color: var(--color-primary); }
.sig-list h4 { font-size: 17px; }
.sig-list p { font-size: 14.5px; color: #6a5142; margin-top: 4px; line-height: 1.5; }

/* ================= CINEMATIC ================= */
.cine { position: relative; }
.cine-panel { position: relative; height: 100vh; height: 100svh; min-height: 560px; overflow: hidden;
  display: flex; align-items: center; }
.cine-bg { position: absolute; inset: -12% 0; will-change: transform; }
.cine-bg img { width: 100%; height: 100%; object-fit: cover; }
.cine-panel::after { content:""; position:absolute; inset:0; background: rgba(18,10,6,0.5); z-index:1; }
.cine-content { position: relative; z-index: 2; width: 100%; max-width: var(--container-grid);
  margin: 0 auto; padding: 0 40px; color: var(--color-canvas); }
.cine-content .big { font-family: var(--font-display); font-weight: var(--weight-light);
  font-size: clamp(38px, 7vw, 96px); line-height: 1.02; letter-spacing: -0.03em; max-width: 16ch; }
.cine-content .sub { font-size: clamp(16px, 2vw, 21px); color: rgba(255,248,240,0.86); max-width: 44ch;
  margin-top: 24px; line-height: 1.5; }
.cine-tag { font-size: 12px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--color-primary-focus); margin-bottom: 20px; }

/* ================= GALLERY ================= */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gal-item { position: relative; overflow: hidden; border-radius: var(--radius-sm); aspect-ratio: 1;
  background:#000; transition: transform 620ms var(--ease-lux), box-shadow 620ms var(--ease-lux); }
.gal-item:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(36,22,15,0.24); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1100ms var(--ease-lux); }
.gal-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gal-item:hover img { transform: scale(1.08); }
.gal-item .cap { position: absolute; left: 16px; bottom: 14px; z-index: 2; color: var(--color-canvas);
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0; transform: translateY(8px);
  transition: opacity 400ms, transform 400ms; }
.gal-item::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(18,10,6,0.6), transparent 50%);
  opacity: 0; transition: opacity 400ms; }
.gal-item:hover::after { opacity: 1; }
.gal-item:hover .cap { opacity: 1; transform: translateY(0); }

/* ================= PRICES ================= */
.price-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  border: 1px solid rgba(255,248,240,0.16); border-radius: var(--radius-lg); overflow: hidden; }
.price-cell { padding: 40px 26px; border-right: 1px solid rgba(255,248,240,0.16);
  display: flex; flex-direction: column; gap: 12px; }
.price-cell:last-child { border-right: none; }
.price-cell .pn { font-size: 15px; letter-spacing: 0.02em; color: var(--color-body-muted); }
.price-cell .pf { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(232,199,186,0.6); }
.price-cell .pv { font-family: var(--font-display); font-size: 40px; font-weight: var(--weight-light);
  color: var(--color-canvas); letter-spacing: -0.02em; }
.price-note { margin-top: 26px; font-size: 13px; color: var(--color-ink-muted-48); text-align: center; }
.tile-dark .price-note { color: rgba(232,199,186,0.55); }

/* ================= REVIEWS ================= */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rev-card { background: var(--color-canvas); border: 1px solid var(--color-hairline); border-radius: var(--radius-lg);
  padding: 34px 30px; display: flex; flex-direction: column;
  transition: transform 560ms var(--ease-lux), box-shadow 560ms var(--ease-lux), border-color 400ms; }
.rev-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(36,22,15,0.12); border-color: var(--color-primary-focus); }
.rev-stars { display: flex; gap: 3px; color: var(--color-primary-focus); margin-bottom: 18px; }
.rev-stars svg { width: 16px; height: 16px; fill: currentColor; }
.rev-q { font-size: 17px; line-height: 1.6; color: var(--color-ink); letter-spacing: -0.01em; flex: 1; }
.rev-by { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.rev-by img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.rev-by .rn { font-size: 15px; font-weight: var(--weight-semibold); }
.rev-by .rd { font-size: 13px; color: var(--color-ink-muted-48); }

/* ================= BOOKING CTA ================= */
.book { position: relative; text-align: center; overflow: hidden; }
.book-bg { position: absolute; inset: 0; }
.book-bg img { width: 100%; height: 100%; object-fit: cover; }
.book-bg::after { content:""; position:absolute; inset:0; background: rgba(18,10,6,0.78); }
.book-inner { position: relative; z-index: 2; }
.book h2 { color: var(--color-canvas); max-width: 18ch; margin: 0 auto; font-weight: var(--weight-light); }
.book .lead { color: rgba(255,248,240,0.86); max-width: 42ch; margin: 20px auto 0; }
.book-cta { display: flex; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

/* ================= FAQ ================= */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; align-items: start; }
.faq-list { border-top: 1px solid var(--color-border-faint); }
.faq-item { border-bottom: 1px solid var(--color-border-faint); }
.faq-q { width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 26px 4px;
  font-family: var(--font-text); font-size: 19px; letter-spacing: -0.02em; color: var(--color-ink);
  font-weight: var(--weight-semibold); }
.faq-q .pm { flex: none; width: 26px; height: 26px; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content:""; position:absolute; top:50%; left:50%; width:14px; height:1.6px;
  background: var(--color-primary); transform: translate(-50%,-50%); transition: transform 300ms var(--ease-standard); }
.faq-q .pm::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item.open .pm::after { transform: translate(-50%,-50%) rotate(0deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 460ms var(--ease-standard); }
.faq-a p { padding: 0 4px 26px; font-size: 16px; line-height: 1.6; color: #6a5142; max-width: 60ch; }

/* ================= CONTACT ================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-info h3 { font-size: 15px; letter-spacing: 0.02em; text-transform: none; color: var(--color-primary);
  margin-bottom: 8px; font-weight: var(--weight-semibold); }
.contact-block { padding: 22px 0; border-bottom: 1px solid var(--color-border-faint); }
.contact-block:first-of-type { border-top: 1px solid var(--color-border-faint); }
.contact-block p, .contact-block a { font-size: 16px; line-height: 1.7; color: var(--color-ink); }
.hours-row { display: flex; justify-content: space-between; font-size: 15px; padding: 5px 0; color: #4b3527; }
.hours-row span:last-child { color: var(--color-ink); }
.social-row { display: flex; gap: 12px; margin-top: 14px; }
.social-row a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--color-hairline);
  display: flex; align-items: center; justify-content: center; color: var(--color-ink); transition: all 250ms; }
.social-row a:hover { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-on-primary); }
.social-row svg { width: 18px; height: 18px; }
.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-ink-muted-48); margin-bottom: 8px; }
.field input, .field select, .field textarea { width: 100%; font-family: var(--font-text); font-size: 15px;
  padding: 13px 16px; border: 1px solid var(--color-hairline); border-radius: 12px; background: var(--color-canvas);
  color: var(--color-ink); transition: border-color 200ms, box-shadow 200ms; }
.field textarea { resize: vertical; min-height: 118px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none;
  border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(107,63,42,0.12); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-hairline);
  height: 260px; margin-top: 40px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.25) sepia(0.15); }
.form-note { font-size: 12.5px; color: var(--color-ink-muted-48); }

/* ================= FOOTER ================= */
.footer { background: var(--color-canvas-parchment); padding: 80px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.foot-col h4 { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-ink-muted-48);
  margin-bottom: 18px; font-weight: var(--weight-semibold); }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.foot-col a, .foot-col li { font-size: 14.5px; color: #4b3527; }
.foot-col a:hover { color: var(--color-primary); }
.foot-brand .fn { font-family: var(--font-display); font-size: 22px; font-weight: var(--weight-semibold);
  color: var(--color-ink); letter-spacing: -0.01em; }
.foot-brand p { font-size: 14px; color: #6a5142; line-height: 1.7; margin-top: 14px; max-width: 30ch; }
.foot-word { font-family: var(--font-display); font-weight: var(--weight-semibold);
  font-size: clamp(64px, 18vw, 260px); line-height: 0.82; letter-spacing: -0.04em; color: var(--color-ink);
  margin-top: 70px; user-select: none; }
.foot-legal { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  border-top: 1px solid var(--color-border-faint); margin-top: 34px; padding-top: 24px;
  font-size: 12px; color: var(--color-ink-muted-48); }
.foot-legal .lk { display: flex; gap: 22px; flex-wrap: wrap; }

/* ================= SCROLL REVEAL ================= */
.reveal { opacity: 0; transform: translateY(34px) scale(0.99); transition: opacity 1050ms var(--ease-lux),
  transform 1050ms var(--ease-lux); }
.reveal.in { opacity: 1; transform: none; will-change: auto; }
.reveal.d1 { transition-delay: 100ms; }
.reveal.d2 { transition-delay: 200ms; }
.reveal.d3 { transition-delay: 300ms; }
.reveal.d4 { transition-delay: 400ms; }
.reveal.d5 { transition-delay: 500ms; }
.reveal.d6 { transition-delay: 600ms; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1180px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .price-list { grid-template-columns: repeat(3, 1fr); }
  .price-cell:nth-child(3) { border-right: none; }
  .price-cell:nth-child(n+4) { border-top: 1px solid rgba(255,248,240,0.16); }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 76px 0; }
  .wrap, .wrap-text { padding: 0 24px; }
  .nav { padding: 16px 24px; }
  .nav.solid { padding: 12px 24px; }
  .hero-inner { padding: 0 24px 72px; }
  .sig-grid { grid-template-columns: 1fr; gap: 40px; }
  .sig-img { aspect-ratio: 16/11; }
  .faq-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .rev-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--color-border-faint); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: 1 / -1; }
}
/* ===== MOBILE-ONLY typography & spacing polish (390 / 430 / 768) ===== */
@media (max-width: 768px) {
  /* header: keep the wordmark clean, subtitle tighter so it never stretches */
  .nav-brand .bn { font-size: 18px; }
  .nav-brand .bl { font-size: 9px; letter-spacing: 0.24em; margin-top: 4px; }
  .nav .btn-nav { padding: 10px 18px; font-size: 12px; }

  /* hero: smaller headline + subhead, cleanly stacked full-width CTAs (no overlap/doubling) */
  .hero h1 { font-size: clamp(29px, 8vw, 40px); line-height: 1.1; max-width: 18ch; }
  .hero .lead { font-size: 16px; line-height: 1.55; max-width: 40ch; margin-top: 18px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; margin-top: 30px; }
  .hero-cta .btn { width: 100%; justify-content: center; text-align: center; padding: 16px 24px; }
  /* scroll cue would collide with the stacked CTAs on mobile — remove it */
  .hero-scroll { display: none; }

  /* SERVICE CARDS — premium split layout: photo on top, cream text panel below
     (text no longer sits on the image, so nothing looks pasted-over or crowded) */
  .svc-card { aspect-ratio: auto; background: var(--color-canvas); border: 1px solid var(--color-hairline);
    border-radius: var(--radius-lg); display: flex; flex-direction: column; }
  .svc-card:hover { transform: none; box-shadow: none; }
  .svc-card img { position: static; inset: auto; width: 100%; height: auto; aspect-ratio: 16 / 10;
    object-fit: cover; }
  .svc-card:hover img { transform: none; }
  .svc-card::after { display: none; }          /* drop the on-image gradient */
  .svc-body { position: static; inset: auto; padding: 15px 16px 18px; color: var(--color-ink); }
  .svc-body h3 { color: var(--color-ink); font-size: 16px; line-height: 1.25; }
  .svc-body p { position: static; max-height: none; opacity: 1; overflow: visible; margin-top: 6px;
    color: #6a5142; font-size: 12.5px; line-height: 1.6; transition: none; }
  /* number becomes a subtle chip resting on the photo — never overlaps the heading */
  .svc-num { top: 12px; left: 12px; font-size: 10px; letter-spacing: 0.16em; color: var(--color-canvas);
    background: rgba(18,10,6,0.5); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
    padding: 4px 9px; border-radius: var(--radius-pill); }
}
/* small phones (≤430): a touch smaller + tighter so nothing crowds */
@media (max-width: 430px) {
  .svc-body { padding: 13px 14px 16px; }
  .svc-body h3 { font-size: 15px; }
  .svc-body p { font-size: 12px; line-height: 1.55; margin-top: 5px; }
  .svc-num { top: 10px; left: 10px; font-size: 9.5px; padding: 3px 8px; }
}
@media (max-width: 680px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .price-list { grid-template-columns: 1fr 1fr; }
  .price-cell { padding: 28px 20px; }
  .price-cell:nth-child(2) { border-right: none; }
  .price-cell:nth-child(n+3) { border-top: 1px solid rgba(255,248,240,0.16); }
  .section { padding: 64px 0; }
  .svc-head { margin-bottom: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .cine-panel { min-height: 520px; }
}
@media (max-width: 430px) {
  .price-list { grid-template-columns: 1fr; }
  .price-cell { border-right: none; border-top: 1px solid rgba(255,248,240,0.16); }
  .price-cell:first-child { border-top: none; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-cta .btn, .book-cta .btn { width: 100%; }
}

/* touch / no-hover devices: never hide cursor, show service copy */
@media (hover: none) {
  .cursor, .cursor-dot { display: none !important; }
  body.cursor-on, body.cursor-on * { cursor: auto; }
  .svc-body p { max-height: 200px; opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-bg img { transform: none; }
}
