/* ============ Royal Glow Salon ============ */

:root {
  --bg: #f4efe8;
  --bg-2: #ebe3d6;
  --bg-3: #1c1612;
  --fg: #1a1410;
  --fg-soft: #4a3f37;
  --fg-mute: #87796b;
  --accent: #6b2c2c;
  --accent-2: #b88a5c;
  --line: #d9cdba;
  --line-soft: rgba(26, 20, 16, 0.12);
  --serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --max: 1440px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
html { scrollbar-gutter: stable; }

body {
  cursor: auto;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
img { display: block; max-width: 100%; }

/* ============ Custom cursor ============ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease, mix-blend-mode 0.25s;
  mix-blend-mode: multiply;
}
.cursor.hover {
  width: 56px; height: 56px;
  background: var(--accent);
  mix-blend-mode: multiply;
}
.cursor-trail {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0.4;
}
@media (max-width: 768px) {
  .cursor, .cursor-trail { display: none; }
}

/* ============ Topbar ============ */
.topbar {
  border-bottom: 1px solid var(--line);
  padding: 10px 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 50;
}
.topbar .pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.topbar .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2f8a5a;
  box-shadow: 0 0 0 4px rgba(47, 138, 90, 0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47, 138, 90, 0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(47, 138, 90, 0); }
}
.topbar-marquee {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.topbar-marquee .track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 40s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 18px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  transition: background 0.3s ease;
}
.nav.scrolled {
  background: rgba(244, 239, 232, 0.92);
  backdrop-filter: blur(14px);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links.right { justify-content: flex-end; }

.brand {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

/* ====== Stacked logo system (match reference: Cormorant Garamond 300) ====== */
.logo {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  column-gap: 0.23em;
  row-gap: 0;
  text-align: center;
  font-family: "Cormorant Garamond", "Instrument Serif", Georgia, serif;
  color: var(--fg);
  line-height: 1;
  --logo-royal: 60px;
  --logo-glow: 78px;
  --logo-by: 12px;
  --logo-royal-track: 0.18em;     /* 10.8px / 60px */
  --logo-by-track: 0.42em;        /* 5.04px / 12px */
  --logo-gap-glow: 0;
  --logo-gap-by: 22px;
  --logo-by-rule: 56px;
}
.logo-top {
  font-family: inherit;
  font-weight: 300;
  font-size: var(--logo-royal);
  letter-spacing: var(--logo-royal-track);
  text-transform: uppercase;
  line-height: 1;
  padding-left: var(--logo-royal-track);
  color: var(--fg);
}
.logo-script {
  font-family: inherit;
  font-style: italic;
  font-weight: 300;
  font-size: var(--logo-glow);
  color: #8E5E47;
  line-height: 1;
  margin-top: var(--logo-gap-glow);
  letter-spacing: 0;
}
.logo-by {
  display: inline-flex;
  flex-basis: 100%;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: "Inter", "DM Sans", system-ui, sans-serif;
  font-style: normal;
  font-size: var(--logo-by);
  font-weight: 300;
  letter-spacing: var(--logo-by-track);
  text-transform: uppercase;
  color: var(--fg-soft);
  line-height: 1;
  padding-left: var(--logo-by-track);
  margin-top: var(--logo-gap-by);
}
.logo-by-rule {
  display: none; /* reference has no rule — just the byline */
}

/* Nav-sized — same proportions, scaled ~0.45 */
.logo--nav {
  --logo-royal: 30px;
  --logo-glow: 36px;
  --logo-by: 9.5px;
  --logo-gap-glow: 0;
  --logo-gap-by: 8px;
}
.logo--nav .logo-script { line-height: 0.92; }

/* Footer giant — scale up the reference */
.logo--giant {
  --logo-royal: clamp(48px, 8vw, 130px);
  --logo-glow: clamp(64px, 10.5vw, 168px);
  --logo-by: clamp(11px, 1.3vw, 18px);
  --logo-gap-glow: clamp(-4px, -0.4vw, 0px);
  --logo-gap-by: clamp(20px, 3vw, 42px);
}

.brand .logo-script { transition: transform 0.6s cubic-bezier(.2,.7,.2,1); }
.brand:hover .logo-script { transform: translateY(-1px); }

.brand .logo-script { transition: transform 0.6s cubic-bezier(.2,.7,.2,1); }
.brand:hover .logo-script { transform: translateY(-1px); }

.nav-links a.nav-cta {
  background: var(--fg);
  color: var(--bg);
  padding: 8px 8px 8px 22px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  transition: background 0.35s ease, transform 0.3s ease, color 0.35s ease;
}
.nav-cta .arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease, color 0.35s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.nav-cta:hover .arrow {
  transform: translateX(2px);
}
.nav-links a.nav-cta::after { display: none; }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 80px 32px 60px;
  max-width: var(--max);
  margin: 0 auto;
}
.hero-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-mute);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 8.4vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.03em;
}
.hero h1 .it { font-style: italic; color: var(--accent); }
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .inner {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero h1 .line:nth-child(2) .inner { animation-delay: 0.12s; }
.hero h1 .line:nth-child(3) .inner { animation-delay: 0.24s; }
@keyframes rise {
  to { transform: translateY(0); }
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 16px;
}
.hero-side p {
  font-size: 17px;
  line-height: 1.5;
  color: var(--fg-soft);
  max-width: 360px;
  opacity: 0;
  animation: fade 1.2s ease 0.6s forwards;
}
.hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade 1.2s ease 0.8s forwards;
}
.tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--fg-soft);
}

@keyframes fade { to { opacity: 1; } }

/* ===== Hero filmstrip ===== */
.hero-strip {
  margin: 60px -32px 0;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero-strip::before,
.hero-strip::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 4;
  pointer-events: none;
}
.hero-strip::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.hero-strip::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }

.hero-strip-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 0 32px 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.hero-strip-head .ttl {
  font-family: var(--serif);
  font-size: 22px;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.hero-strip-head .ttl .it { font-style: italic; color: var(--accent); }

.hero-strip-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: stripScroll 60s linear infinite;
  padding: 0 12px;
}
.hero-strip:hover .hero-strip-track { animation-play-state: paused; }

@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  height: 540px;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-card:hover { transform: translateY(-6px); }
.hero-card.tall    { width: 360px; }
.hero-card.wide    { width: 540px; }
.hero-card.square  { width: 460px; }
.hero-card.slim    { width: 280px; }
.hero-card .placeholder { transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1); }
.hero-card:hover .placeholder { transform: scale(1.06); }

.hero-card .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,20,16,0) 0%, rgba(26,20,16,0) 55%, rgba(26,20,16,0.7) 100%);
}
.hero-card .badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(244,239,232,0.92);
  backdrop-filter: blur(8px);
  color: var(--fg);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex; gap: 6px; align-items: center;
}
.hero-card .badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.hero-card .price {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--fg);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}
.hero-card .info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  color: var(--bg);
  display: flex; justify-content: space-between; align-items: end;
  gap: 12px;
}
.hero-card .info .name {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.hero-card .info .name .it { font-style: italic; color: var(--accent-2); }
.hero-card .info .meta {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 4px;
}
.hero-card .info .arrow {
  width: 36px; height: 36px;
  background: rgba(244,239,232,0.94);
  color: var(--fg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.hero-card:hover .info .arrow { background: var(--accent); color: var(--bg); transform: rotate(-45deg); }

/* sub-strip — three quick stats */
.hero-substrip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 40px;
}
.hero-substrip > div {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.hero-substrip > div:last-child { border-right: none; }
.hero-substrip .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.hero-substrip .v {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-substrip .v .it { font-style: italic; color: var(--accent); }
.hero-substrip .sub {
  font-size: 12px;
  color: var(--fg-soft);
  margin-top: 2px;
}

/* SVG placeholder backgrounds */
.placeholder {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg, rgba(26,20,16,0.04) 0 1px, transparent 1px 14px),
    linear-gradient(135deg, var(--ph-a, #d6c4a8) 0%, var(--ph-b, #a78461) 100%);
  position: relative;
}
.placeholder::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  opacity: 0.5;
}
.placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.placeholder img.loaded { opacity: 1; }

/* tones */
.t-rose    { --ph-a:#e8c9b8; --ph-b:#b3786a; }
.t-clay    { --ph-a:#d6b693; --ph-b:#8a5d3f; }
.t-sage    { --ph-a:#c5cdb3; --ph-b:#7a8466; }
.t-ink     { --ph-a:#3a322c; --ph-b:#161310; }
.t-cream   { --ph-a:#efe2cc; --ph-b:#c9b596; }
.t-wine    { --ph-a:#9b5757; --ph-b:#4d1f1f; }
.t-blush   { --ph-a:#f0d3c4; --ph-b:#c98e7a; }
.t-mocha   { --ph-a:#bb9479; --ph-b:#704c33; }

/* ============ Marquee strip ============ */
/* ===== Partners band ===== */
.partners {
  border-block: 1px solid var(--line);
  background: var(--bg);
  margin-top: 80px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.partners .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
  border-right: 1px solid var(--line);
  padding-right: 48px;
}
.partners .label .big {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--fg);
}
.partners .logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.partner {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--fg);
  opacity: 0.55;
  transition: opacity 0.3s, color 0.3s, transform 0.3s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.partner:hover { opacity: 1; color: var(--accent); transform: translateY(-1px); }
.partner .mark {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 8px;
  opacity: 0.7;
}
.partner.sans {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.partner.serif-italic { font-style: italic; }
@media (max-width: 980px) {
  .partners {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }
  .partners .label { border-right: none; padding-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
  .partners .logos { gap: 20px 32px; }
  .partner { font-size: 20px; }
  .partner.sans { font-size: 14px; }
}

/* ============ Section ============ */
.section {
  padding: 120px 32px;
  max-width: var(--max);
  margin: 0 auto;
}
.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
}
.section-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.section-title .it { font-style: italic; color: var(--accent); }
.section-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-mute);
  text-align: right;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.2,0.8,0.2,1), transform 0.9s cubic-bezier(0.2,0.8,0.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ Philosophy ============ */
.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.philosophy-img {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.philosophy-img .img-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 11px;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in oklab, var(--fg) 12%, transparent);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  line-height: 1;
}
.philosophy-img .img-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 22%, transparent);
}

/* User-fillable image placeholder */
.pmu-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pmu-placeholder .ph-stripes {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 18px,
    color-mix(in oklab, var(--fg) 6%, transparent) 18px,
    color-mix(in oklab, var(--fg) 6%, transparent) 19px
  );
  pointer-events: none;
}
.pmu-placeholder .ph-label {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 32px;
}
.pmu-placeholder .ph-label-top {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.pmu-placeholder .ph-label-main {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--accent);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-top: 4px;
}
.pmu-placeholder .ph-label-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--fg-soft);
  margin-top: 8px;
}
.philosophy-text { display: flex; flex-direction: column; gap: 24px; }
.philosophy-text .quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.philosophy-text .quote .it { font-style: italic; color: var(--accent); }
.philosophy-text p { color: var(--fg-soft); max-width: 480px; font-size: 16px; }
.philosophy-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  margin-top: 16px;
}
.philosophy-stats .stat .num {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
}
.philosophy-stats .stat .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-top: 8px;
}

/* ============ Services ============ */
.services-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.services-tabs button {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--fg-soft);
  transition: all 0.3s;
}
.services-tabs button.active {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.services-tabs button:hover:not(.active) {
  border-color: var(--fg);
  color: var(--fg);
}

.service-row {
  display: grid;
  grid-template-columns: 44px 76px 1fr 1.6fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding 0.4s cubic-bezier(0.2,0.8,0.2,1), background 0.4s;
  position: relative;
}
.service-row:hover {
  padding-left: 16px;
}
.service-row::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.2,0.8,0.2,1);
}
.service-row:hover::before { width: 4px; }

.service-row .idx {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-mute);
}
.service-row .thumb {
  width: 76px;
  height: 76px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
}
.service-row:hover .thumb { transform: scale(1.06); }
.service-row .name {
  font-family: var(--serif);
  font-size: clamp(22px, 2.1vw, 32px);
  letter-spacing: -0.01em;
  line-height: 1.1;
  transition: color 0.3s;
}
.service-row:hover .name { color: var(--accent); font-style: italic; }
.service-row .desc {
  font-size: 13px;
  color: var(--fg-soft);
  line-height: 1.4;
}
.service-row .dur {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.service-row .price {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--fg);
  white-space: nowrap;
}
.service-row .price .from {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-mute);
  display: block;
  margin-bottom: 2px;
}

/* ============ Gallery ============ */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: clamp(300px, 32vw, 520px) clamp(240px, 26vw, 420px) clamp(300px, 32vw, 520px);
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.gallery-item .placeholder {
  transition: transform 1s cubic-bezier(0.2,0.8,0.2,1);
  width: 100%;
  height: 100%;
}
.gallery-item:hover .placeholder { transform: scale(1.08); }
.gallery-item .meta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px;
  background: linear-gradient(to top, rgba(26,20,16,0.6), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
}
.gallery-item:hover .meta { opacity: 1; }

/* Row 1 */
.g-1  { grid-column: span 5; grid-row: 1; }
.g-2  { grid-column: span 4; grid-row: 1; }
.g-3  { grid-column: span 3; grid-row: 1; }
/* Row 2 */
.g-4  { grid-column: span 4; grid-row: 2; }
.g-5  { grid-column: span 5; grid-row: 2; }
.g-6  { grid-column: span 3; grid-row: 2; }
/* Row 3 */
.g-7  { grid-column: span 3; grid-row: 3; }
.g-8  { grid-column: span 6; grid-row: 3; }
.g-9  { grid-column: span 3; grid-row: 3; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 20, 16, 0.94);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-img {
  max-width: 70vw;
  max-height: 80vh;
  width: 700px;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.lightbox.open .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--fg);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--fg);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%; transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--bg);
}

/* ============ Video ============ */
.videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.video-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
}
.video-card.feature { aspect-ratio: 4/5; }
.video-card .placeholder {
  transition: transform 1.2s cubic-bezier(0.2,0.8,0.2,1);
}
.video-card:hover .placeholder { transform: scale(1.06); }
.video-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,20,16,0.7), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: var(--bg);
}
.video-card .play {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--fg);
  display: flex; align-items: center; justify-content: center;
  align-self: flex-start;
  transition: transform 0.4s;
}
.video-card:hover .play { transform: scale(1.1); }
.video-card .play svg { margin-left: 4px; }
.video-card .info { display: flex; flex-direction: column; gap: 6px; }
.video-card .info .ttl {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
}
.video-card .info .sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}
.video-card .duration {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(26,20,16,0.6);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  border-radius: 999px;
}

/* ============ Reviews ============ */
.reviews-band {
  background: var(--bg-3);
  color: var(--bg);
  margin: 0 -32px;
  padding: 120px 32px;
}
.reviews-band .section {
  padding: 0;
}
.reviews-band .section-head { border-color: rgba(255,255,255,0.16); }
.reviews-band .section-num,
.reviews-band .section-kicker { color: rgba(255,255,255,0.6); }
.reviews-band .section-title .it { color: var(--accent-2); }

.review-stage {
  position: relative;
  min-height: 360px;
}
.review-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: center;
}
.review-card.active { opacity: 1; }
.review-card .quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.review-card .quote::before {
  content: "“";
  font-family: var(--serif);
  font-size: 120px;
  line-height: 0;
  color: var(--accent-2);
  display: block;
  margin-bottom: 24px;
}
.review-card .author {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card .avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.review-card .author .name {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
}
.review-card .author .role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.review-card .stars {
  color: var(--accent-2);
  font-size: 18px;
  letter-spacing: 4px;
  margin-top: 6px;
}

.review-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.review-controls button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, color 0.3s;
}
.review-controls button:hover {
  background: var(--bg);
  color: var(--fg);
}
.review-dots {
  display: flex;
  gap: 8px;
  margin-left: 16px;
}
.review-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background 0.3s, width 0.3s;
}
.review-dot.active { background: var(--accent-2); width: 28px; border-radius: 4px; }

/* ============ Booking ============ */
.booking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.booking-side .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 8px;
}
.booking-side h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.booking-side h3 .it { font-style: italic; color: var(--accent); }
.booking-side p { color: var(--fg-soft); max-width: 380px; font-size: 16px; }
.booking-side .hours {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.booking-side .hours .row {
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 0;
}
.booking-side .hours .row.closed { color: var(--fg-mute); }

.booking-form {
  background: var(--bg-2);
  border-radius: 6px;
  padding: 40px;
}
.bf-step {
  display: flex; align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 24px;
}
.bf-step .pill {
  background: var(--fg);
  color: var(--bg);
  padding: 4px 10px;
  border-radius: 999px;
}
.bf-bar {
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.bf-bar .fill {
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1);
}
.bf-q {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.bf-q .it { font-style: italic; color: var(--accent); }
.bf-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}
.bf-opt {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 14px 16px;
  border-radius: 4px;
  text-align: left;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.25s;
}
.bf-opt .price {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.bf-opt:hover { border-color: var(--fg); }
.bf-opt.selected {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.bf-opt.selected .price { color: rgba(255,255,255,0.6); }

/* ===== Service categories in booking step 1 ===== */
.bf-cats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.bf-cat {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bf-cat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
}
.bf-cat-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  white-space: nowrap;
}
.bf-cat-rule {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.bf-cat-count {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--fg-mute);
}
.bf-cat .bf-options {
  margin-bottom: 0;
}

/* ===== Category picker (step 1a) ===== */
.bf-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}
.bf-cat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  min-height: 110px;
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--fg);
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.bf-cat-card:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
  transform: translateY(-2px);
}
.bf-cat-card-label {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.bf-cat-card-meta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  transition: color 0.25s ease;
}
.bf-cat-card:hover .bf-cat-card-meta { color: rgba(255,255,255,0.7); }
.bf-cat-card .arrow {
  display: inline-flex;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid currentColor;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: transform 0.25s ease;
}
.bf-cat-card:hover .arrow { transform: translateX(3px); }

.bf-cat-crumb {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.bf-cat-back {
  border: none;
  background: transparent;
  padding: 0;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  cursor: pointer;
  transition: color 0.2s ease;
}
.bf-cat-back:hover { color: var(--fg); }
.bf-cat-current {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--fg);
}

@media (max-width: 980px) {
  .bf-cat-grid { grid-template-columns: 1fr; gap: 8px; }
  .bf-cat-card { min-height: 90px; padding: 16px; }
  .bf-cat-card-label { font-size: 20px; }
}

.bf-dates {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-bottom: 24px;
}
.bf-date {
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 6px;
  padding: 10px 6px;
  text-align: center;
  transition: all 0.25s;
  display: flex; flex-direction: column; gap: 2px;
}
.bf-date .day {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.bf-date .num {
  font-family: var(--serif);
  font-size: 22px;
}
.bf-date:hover { border-color: var(--fg); }
.bf-date.selected {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.bf-date.selected .day { color: rgba(255,255,255,0.8); }

.bf-times {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 24px;
}
.bf-time {
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 6px;
  padding: 12px 8px;
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  transition: all 0.25s;
}
.bf-time:hover { border-color: var(--fg); }
.bf-time.selected {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.bf-time.unavailable {
  opacity: 0.35;
  text-decoration: line-through;
  pointer-events: none;
}

.bf-field {
  display: flex; flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.bf-field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.bf-field input,
.bf-field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  font: inherit;
  color: inherit;
  transition: border-color 0.25s;
}
.bf-field input:focus,
.bf-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.bf-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}
.bf-back {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-soft);
  padding: 12px 0;
}
.bf-next {
  background: var(--fg);
  color: var(--bg);
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.3s, transform 0.3s;
}
.bf-next:hover { background: var(--accent); transform: translateY(-1px); }
.bf-next:disabled { opacity: 0.4; cursor: not-allowed; }
.bf-next .arrow { transition: transform 0.3s; }
.bf-next:hover .arrow { transform: translateX(4px); }

.bf-summary {
  background: var(--bg);
  border-radius: 6px;
  padding: 24px;
  margin: 16px 0 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.bf-summary .row {
  display: flex; justify-content: space-between;
  font-size: 14px;
}
.bf-summary .row .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.bf-summary .row .v { font-family: var(--serif); font-size: 18px; }
.bf-summary .total {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  font-family: var(--serif);
  font-size: 24px;
  display: flex; justify-content: space-between;
  align-items: baseline;
}

.bf-success {
  text-align: center;
  padding: 40px 20px;
}
.bf-success .check {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
}
.bf-success h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.bf-success h4 .it { font-style: italic; color: var(--accent); }
.bf-success p { color: var(--fg-soft); max-width: 320px; margin: 0 auto; }

/* ============ Contact / Footer ============ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 64px;
  padding: 80px 32px;
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.contact h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 16px;
}
.contact .big {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.contact .big .it { font-style: italic; color: var(--accent); }
.contact a:hover { color: var(--accent); }

.foot {
  border-top: 1px solid var(--line);
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-mute);
  flex-wrap: wrap;
  gap: 16px;
}
.foot .brand-foot {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: none;
}
.foot .brand-foot .it { font-style: italic; color: var(--accent); }

/* Big footer wordmark (uses .logo system above) */
.bigmark {
  text-align: center;
  padding: 56px 24px 56px;
  border-top: 1px solid var(--line);
  color: var(--fg);
  user-select: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Mobile */
@media (max-width: 980px) {
  .topbar { display: none; }
  .nav { position: fixed; left: 0; right: 0; top: 0; grid-template-columns: 1fr auto; padding: 14px 20px; background: rgba(244, 239, 232, 0.94); backdrop-filter: blur(14px); }
  .nav .logo--nav { --logo-royal: 19px; --logo-glow: 23px; --logo-by: 7.5px; --logo-gap-by: 5px; }
  body { padding-top: 72px; }
  .nav-links.left { display: none; }
  .nav-links.right { gap: 16px; font-size: 11px; }
  .nav-links.right a:not(.nav-cta) { display: none; }
  .hero { padding: 40px 20px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-strip { margin: 40px -20px 0; }
  .hero-strip-head { padding: 0 20px 16px; }
  .hero-card { height: 380px; }
  .hero-card.tall { width: 260px; }
  .hero-card.wide { width: 360px; }
  .hero-card.square { width: 320px; }
  .hero-card.slim { width: 200px; }
  .hero-substrip { grid-template-columns: 1fr 1fr; }
  .hero-substrip > div { border-right: none; border-bottom: 1px solid var(--line); padding: 20px; }
  .hero-substrip > div:nth-child(odd) { border-right: 1px solid var(--line); }
  .hero-substrip > div:nth-last-child(-n+2) { border-bottom: none; }
  .section { padding: 80px 20px; }
  .section-head { grid-template-columns: 1fr; gap: 12px; }
  .section-kicker { text-align: left; }
  .philosophy { grid-template-columns: 1fr; gap: 32px; }
  .service-row {
    grid-template-columns: 60px 1fr auto;
    grid-template-rows: auto auto auto;
    gap: 8px 12px;
    align-items: center;
  }
  .service-row .idx { display: none; }
  .service-row .thumb { grid-row: 1 / 3; grid-column: 1; width: 60px; height: 60px; }
  .service-row .name { grid-row: 1; grid-column: 2; }
  .service-row .price { grid-row: 1; grid-column: 3; text-align: right; }
  .service-row .desc { grid-row: 2; grid-column: 2 / 4; }
  .service-row .dur { grid-row: 3; grid-column: 1 / 4; }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-auto-rows: clamp(220px, 60vw, 360px);
  }
  .gallery-item {
    grid-column: span 1 !important;
    grid-row: auto !important;
  }
  .videos { grid-template-columns: 1fr; }
  .reviews-band { margin: 0 -20px; padding: 80px 28px; }
  .reviews-band .section-head { text-align: center; justify-items: center; }
  .reviews-band .section-kicker { text-align: center; }
  .review-stage { min-height: auto; }
  .review-card { position: relative; inset: auto; grid-template-columns: 1fr; gap: 24px; align-items: center; justify-items: center; text-align: center; display: none; }
  .review-card.active { display: grid; }
  .review-card .quote { font-size: clamp(22px, 5.6vw, 28px); text-align: center; }
  .review-card .quote::before { font-size: 80px; margin-bottom: 8px; text-align: center; display: block; }
  .review-card .avatar { width: 64px; height: 64px; }
  .review-card .author { align-items: center; text-align: center; }
  .review-card .author .name { font-size: 20px; }
  .review-card .stars { justify-content: center; }
  .review-controls { justify-content: center; margin-top: 28px; }
  .booking { grid-template-columns: 1fr; gap: 40px; }
  .booking-form { padding: 24px; }
  .bf-dates { grid-template-columns: repeat(3, 1fr); }
  .contact { grid-template-columns: 1fr; gap: 32px; padding: 60px 20px; }
}

/* Selection */
::selection { background: var(--accent); color: var(--bg); }

/* ============ Mobile burger + drawer ============ */
.nav-burger {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.nav-burger:hover { background: var(--fg); border-color: var(--fg); }
.nav-burger:hover span { background: var(--bg); }
.nav-burger span {
  position: absolute;
  left: 50%;
  width: 16px;
  height: 1.5px;
  background: var(--fg);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease, background 0.25s ease;
}
.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 20px; width: 12px; left: calc(50% - 2px); }
.nav-burger span:nth-child(3) { top: 26px; }
.nav-burger.is-open span:nth-child(1) { top: 20px; transform: translateX(-50%) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { top: 20px; transform: translateX(-50%) rotate(-45deg); width: 16px; left: 50%; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(26, 20, 16, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(86vw, 360px);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 24px 28px 28px;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.7, 0, 0.2, 1);
  box-shadow: -20px 0 60px rgba(26, 20, 16, 0.18);
  overflow-y: auto;
}
.mobile-menu.is-open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.mobile-menu-close {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.mobile-menu-close:hover { background: var(--fg); color: var(--bg); }
.mobile-menu-panel > a {
  display: block;
  padding: 16px 2px;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--fg);
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.01em;
  transition: padding 0.2s ease, color 0.2s ease;
}
.mobile-menu-panel > a:hover { padding-left: 8px; color: var(--accent); }
.mobile-menu-cta {
  margin-top: 20px;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px !important;
  background: var(--fg);
  color: var(--bg) !important;
  border: none !important;
  border-radius: 999px;
  font-family: "DM Sans", sans-serif !important;
  font-size: 13px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease;
}
.mobile-menu-cta:hover { background: var(--accent); padding-left: 20px !important; }
.mobile-menu-foot {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.mobile-menu-foot a { color: var(--fg); font-size: 14px; letter-spacing: 0.04em; text-transform: none; }

@media (max-width: 980px) {
  .nav-burger { display: inline-flex; align-items: center; justify-content: center; }
}
@media (min-width: 981px) {
  .mobile-menu { display: none; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--line); }
::-webkit-scrollbar-thumb:hover { background: var(--fg-mute); }
