/* ============================================================
   Salon KBH — Elite Grooming
   Reference: interfilm.dk (dark editorial)
   Accent: gold #C9A06A (Salon KBH brand)
   ============================================================ */

:root {
  /* Warm exclusive palette — dark espresso/leather */
  --bg: #15110D;            /* deep warm charcoal */
  --bg-2: #1E1812;          /* warm card */
  --bg-3: #2A2118;          /* lighter warm surface */
  --bg-deep: #0A0805;       /* near-black warm base */
  --bg-tint: #1A1410;       /* between bg and bg-2 */

  --line: rgba(232, 213, 184, 0.08);
  --line-strong: rgba(232, 213, 184, 0.16);

  --text: #F5EFE5;          /* warm cream */
  --text-soft: #D8CFC0;     /* soft cream */
  --text-muted: #8F8579;    /* warm muted */

  --gold: #C9A06A;
  --gold-2: #E0BE85;        /* brighter warm highlight */
  --gold-deep: #8C6E45;
  --gold-soft: #B8935A;     /* ms-totalbyg's amber gold */
  --gold-glow: rgba(201,160,106,0.35);

  --rust: #A8542B;          /* terracotta accent (use sparingly) */

  /* ms-totalbyg shared accent palette (used by pickers + badges) */
  --ms-gold: #b8935a;
  --ms-gold-light: #d6a978;
  --ms-gold-deep: #8e6d3f;
  --ms-accent: #c2562b;
  --ms-accent-dark: #9c4220;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px rgba(0,0,0,0.55);
  --shadow-soft: 0 24px 60px rgba(0,0,0,0.4);

  /* Match interfilm.dk content width: 90vw capped at 1400px */
  --container: 1400px;
  --container-pad: 5vw;

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

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html {
  background: var(--bg);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}

em { font-style: italic; color: var(--gold); font-weight: 500; }

.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 880px) {
  .container { width: calc(100% - 40px); }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: all .25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: #1a1208;
  box-shadow: 0 6px 18px rgba(201,160,106,0.25);
}
.btn--gold:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201,160,106,0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--small { padding: 10px 18px; font-size: 13px; }
.btn--large { padding: 18px 38px; font-size: 17px; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: all .35s var(--ease);
}
.nav.is-scrolled {
  background: rgba(15, 12, 9, 0.85);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}
.nav__logo img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-2);
}
.nav__logo-text em {
  font-style: italic;
  color: var(--gold);
  margin-left: 2px;
}
.nav__links {
  display: flex;
  gap: 30px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  transition: color .2s var(--ease);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transition: right .3s var(--ease);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { right: 0; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--gold);
  color: #1a1208;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.nav__cta:hover {
  background: var(--gold-2);
  transform: translateY(-1px);
}
.nav__cta .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #1a1208;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span {
  width: 22px; height: 2px;
  background: var(--text);
  transition: all .3s var(--ease);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 120px 0 110px;
  overflow: hidden;
  text-align: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% 25%;
  filter: brightness(0.45) contrast(1.05) saturate(0.85);
  animation: heroZoom 18s ease-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(21,17,13,0.45) 0%, rgba(21,17,13,0.85) 65%, var(--bg) 100%),
    linear-gradient(180deg, rgba(21,17,13,0.35) 0%, rgba(21,17,13,0.55) 50%, var(--bg) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 8px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: rgba(201,160,106,0.08);
  animation: fadeUp .8s var(--ease) both;
}
.hero__title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.1;
  margin: 0 0 22px;
  max-width: 24ch;
  text-wrap: balance;
  animation: fadeUp 1s var(--ease) .1s both;
}
@media (max-width: 480px) {
  .hero__title { font-size: 26px; max-width: none; }
}

/* One-line title in the same Cormorant style as the rest of the page */
.hero__title--line {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(22px, 3.4vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  text-transform: none;
  max-width: none;
  color: #ffffff;
  white-space: nowrap;
}
.hero__title--line em {
  font-style: italic;
  color: #C9A06A;
}
/* Legacy block variant — kept in case it's reused elsewhere */
.hero__title--block {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 3.4vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  max-width: none;
  color: #ffffff;
  white-space: nowrap;
}
.hero__title--block em {
  font-style: normal;
  font-family: inherit;
  color: #C9A06A;
}
.hero__subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(15px, 1.4vw, 22px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.005em;
  text-transform: none;
  color: #d8cfc0;
  margin: 0 0 36px;
  max-width: 70ch;
  line-height: 1.45;
  animation: fadeUp 1s var(--ease) .25s both;
}
@media (max-width: 880px) {
  .hero__title--block,
  .hero__title--line { white-space: normal; font-size: clamp(22px, 5.5vw, 36px); }
  .hero__subtitle { font-size: 15px; }
}

.hero__lead {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 48ch;
  margin: 0 0 32px;
  line-height: 1.6;
  animation: fadeUp 1s var(--ease) .25s both;
}
@media (min-width: 1024px) { .hero__lead { font-size: 19px; line-height: 1.55; } }
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  animation: fadeUp 1s var(--ease) .4s both;
}
.hero__rating {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s var(--ease) .55s both;
}
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 13px;
}
.rating-pill strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
}
.rating-pill .stars {
  color: var(--gold);
  letter-spacing: 0.05em;
  font-size: 12px;
}
.rating-pill__src {
  color: var(--text-muted);
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border: 1.5px solid var(--text-muted);
  border-radius: 12px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 2px; height: 8px;
  background: var(--gold);
  border-radius: 1px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { top: 6px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Trust strip
   ============================================================ */
.trust {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.trust__inner {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
}
.trust__item svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   Section navigation pills (under trust strip)
   Cream backdrop · pill left-aligned with logo
   ============================================================ */
.section-nav {
  background: #f6f1ea;            /* same cream as Produkter panel — flows together */
  border-top: 1px solid #d8cdbd;  /* divider from trust strip above */
  border-bottom: none;             /* no divider — pill and content read as ONE box */
  padding: 32px 0 0;               /* breathing room above pill; flush at bottom */
}
.section-nav .container {
  display: flex;
  justify-content: flex-start;
}

/* picker--nav variant: single segmented pill spanning the FULL container
   width, tabs distributed evenly. Same gold sliding indicator. */
.picker.picker--nav {
  margin: 0 auto 0 0 !important;
  left: 0 !important;
  transform: none !important;
  flex-wrap: nowrap;
  max-width: 100%;
  align-self: stretch !important;
  width: 100%;
  display: flex;
}
.picker--nav .picker__tab {
  text-decoration: none;
  flex: 1 1 0;
  justify-content: center;
}

@media (max-width: 880px) {
  .section-nav {
    padding: 14px 0;
    position: sticky;
    top: 60px;                 /* sits right below the fixed top-nav */
    z-index: 50;
    background: #f6f1ea;
    box-shadow: 0 6px 18px rgba(31, 28, 25, 0.08);
  }
  .picker--nav {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
  .picker--nav::-webkit-scrollbar { display: none; }
}

/* ============================================================
   Marquee — looping image carousel just above prices.
   Transparent background, rounded thumbnails, pauses on hover.
   ============================================================ */
.marquee {
  background: transparent;
  padding: 28px 0;
  overflow: hidden;
  border: none;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.marquee__track {
  display: flex;
  gap: 8px;                        /* tight — images close to each other */
  width: max-content;
  animation: marqueeScroll 60s linear infinite;
}
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track {
  animation-play-state: paused;
}
.marquee__item {
  flex-shrink: 0;
  width: 180px;
  height: 120px;
  border-radius: 14px;             /* clearly rounded corners */
  overflow: hidden;
  background: rgba(0,0,0,0.2);
  position: relative;
  transition: transform .35s var(--ease);
}
.marquee__item:hover { transform: scale(1.04); }
.marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 720px) {
  .marquee__item { width: 140px; height: 92px; }
  .marquee__track { animation-duration: 45s; }
}

/* ============================================================
   FAQ accordion
   ============================================================ */
.tab-panel.faq {
  background: var(--bg);
  padding: 60px 0 100px;
}
.faq .kicker { color: var(--gold); }
.faq .section-title { color: var(--text); }
.faq .section-title em { color: var(--gold); }
.faq .section-lead { color: var(--text-muted); }

.faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 48px;
}
.faq__item {
  border-bottom: 1px solid var(--line-strong);
}
@media (max-width: 720px) {
  .faq__list { grid-template-columns: 1fr; column-gap: 0; }
}
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 22px 4px;
  background: transparent;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  letter-spacing: 0;
  transition: color .25s var(--ease);
}
.faq__q:hover { color: var(--gold); }
.faq__q[aria-expanded="true"] { color: var(--gold); }

.faq__icon {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  transition: transform .35s var(--ease), color .25s var(--ease);
}
.faq__q[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}
.faq__q[aria-expanded="true"] + .faq__a {
  max-height: 400px;
}
.faq__a p {
  margin: 0;
  padding: 0 4px 22px;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 78ch;
}

/* ============================================================
   Priser tab-panel — elegant 2x2 price list, cream backdrop
   ============================================================ */
.tab-panel.prices-panel {
  background: #f6f1ea;
  border-bottom: 1px solid #d8cdbd;
  padding: 36px 0 90px;
  --on-cream-text: #1a1816;
  --on-cream-soft: #3b342d;
  --on-cream-muted: #7a6e60;
  --on-cream-line: #d8cdbd;
}
.prices-panel .kicker { color: #c2562b; }
.prices-panel .section-title { color: var(--on-cream-text); }
.prices-panel .section-title em { color: #b8935a; }
.prices-panel .section-lead { color: var(--on-cream-soft); }

/* Horizontal carousel — 2 categories visible (featured fully in view), swipe right for more */
.prices-list {
  display: flex;
  gap: 40px;
  margin: 0 0 28px;
  padding: 22px 0 24px;        /* room above for the "MEST POPULÆRE" badge */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(31,28,25,0.25) transparent;
  cursor: grab;
}
.prices-list:active { cursor: grabbing; }
.prices-list::-webkit-scrollbar { height: 6px; }
.prices-list::-webkit-scrollbar-thumb {
  background: rgba(31,28,25,0.25);
  border-radius: 999px;
}
.prices-list::-webkit-scrollbar-track { background: transparent; }

.price-cat {
  position: relative;
  flex: 0 0 calc((100% - 80px) / 2.5);   /* 2.5 visible, accounting for gap */
  min-width: 240px;
  scroll-snap-align: start;
  padding: 22px 0 4px;
  border-top: 1px solid var(--on-cream-line);
}

.price-cat__badge {
  position: absolute;
  top: -10px;
  left: 0;
  background: #c2562b;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.price-cat__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0 0 14px;
  color: var(--on-cream-text);
}
.price-cat__title em { color: #b8935a; font-style: italic; }

.price-cat__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.price-cat__list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 0;
  font-size: 12.5px;
  color: var(--on-cream-text);
  font-weight: 500;
}
.price-cat__name { flex: 0 0 auto; }
.price-cat__name em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--on-cream-muted);
  margin-left: 3px;
  font-size: 11.5px;
}
.price-cat__dots {
  flex: 1;
  border-bottom: 1px dotted var(--on-cream-line);
  transform: translateY(-3px);
  min-width: 10px;
}
.price-cat__amount {
  flex: 0 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  color: #b8935a;
  letter-spacing: 0.005em;
  white-space: nowrap;
}

.prices-panel__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--on-cream-line);
}
.prices-panel__note {
  margin: 0;
  font-size: 11.5px;
  color: var(--on-cream-muted);
  font-style: italic;
  flex: 1 1 auto;
}
.prices-panel__actions .btn { flex: 0 0 auto; }

@media (max-width: 720px) {
  .prices-list {
    margin: 0 0 24px;
    padding: 22px 0 20px;       /* aligned with container edge = logo */
    gap: 24px;
  }
  .price-cat { flex-basis: 78%; min-width: 240px; }
  .price-cat__title { font-size: 20px; }
}

/* ============================================================
   Tab content (panels under section-nav, only one visible at a time)
   ============================================================ */
.tab-content { position: relative; }
.tab-panel {
  display: none;
  animation: tabFadeIn .35s var(--ease) both;
}
.tab-panel.is-active { display: block; }

/* All tab panels dock tight under the section-nav pill, share compact head */
.tab-panel.gallery,
.tab-panel.reviews,
.tab-panel.find,
.tab-panel.about { padding-top: 50px; }
.tab-panel .section-head {
  max-width: 100%;
  margin-bottom: 36px;
}
.tab-panel .kicker {
  font-size: 11px;
  margin-bottom: 12px;
}
.tab-panel .section-title {
  font-size: clamp(26px, 3.2vw, 42px);
  margin-bottom: 14px;
}
.tab-panel .section-lead {
  font-size: clamp(13px, 1vw, 14px);
  line-height: 1.55;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Reviews
   ============================================================ */
.reviews {
  padding: 120px 0;
  background: #f6f1ea;
  border-top: 1px solid #d8cdbd;
  border-bottom: 1px solid #d8cdbd;
  --on-cream-text: #1a1816;
  --on-cream-soft: #3b342d;
  --on-cream-muted: #7a6e60;
}
.reviews .kicker { color: #c2562b; }
.reviews .section-title { color: var(--on-cream-text); }
.reviews .section-title em { color: #b8935a; }
.reviews .section-lead { color: var(--on-cream-soft); }

/* Horizontal carousel — 2 rows × 3 visible columns = 6 cards at a time, slide right for more */
.reviews__grid {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);   /* 3 cards visible per row */
  gap: 12px 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(31,28,25,0.3) rgba(31,28,25,0.08);
  cursor: grab;
  scroll-padding-left: 0;
}
.reviews__grid:active { cursor: grabbing; }
.reviews__grid::-webkit-scrollbar { height: 6px; }
.reviews__grid::-webkit-scrollbar-thumb {
  background: rgba(31,28,25,0.3);
  border-radius: 999px;
}
.reviews__grid::-webkit-scrollbar-track {
  background: rgba(31,28,25,0.06);
  border-radius: 999px;
}
.reviews__grid > .review { scroll-snap-align: start; }
.review--hidden { /* legacy class — no longer hides anything in carousel mode */ }
.reviews__actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.reviews__actions .btn {
  background: #DC2626;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 13px 28px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(220, 38, 38, 0.28);
}
.reviews__actions .btn:hover {
  background: #B91C1C;
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(220, 38, 38, 0.42);
  transform: translateY(-2px);
}
.review {
  background: #ffffff;
  border: 1px solid #d8cdbd;
  border-radius: var(--radius-lg);
  padding: 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
  box-shadow: 0 8px 24px rgba(31,28,25,0.06);
  will-change: transform;
}

/* (Auto-rolling parallax removed — reviews now use horizontal slide carousel) */
.review:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(31,28,25,0.12);
}
.review--featured {
  background: #1f1c19;
  border-color: #1f1c19;
  color: #f6f1ea;
}
.review--featured .review__quote { color: #f6f1ea; }
.review--featured .review__by strong { color: #f6f1ea; }
.review--featured .review__by span { color: #b8935a; }

/* Review header: name + source stacked left, stars top-right; separator below */
.review__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d8cdbd;
  margin: -2px 0 0;
}
.review--featured .review__head { border-bottom-color: rgba(184,147,90,0.3); }

.review__person {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.review__name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--on-cream-text);
  line-height: 1.2;
}
.review--featured .review__name { color: #f6f1ea; }

.review__source {
  font-size: 10px;
  color: var(--on-cream-muted);
  letter-spacing: 0.04em;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s var(--ease);
  line-height: 1.2;
}
.review__source:hover { color: #c2562b; }
.review--featured .review__source { color: #d6a978; }
.review--featured .review__source:hover { color: #ffd9a8; }

.review__stars {
  color: #b8935a;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.review--featured .review__stars { color: #d6a978; }

.review__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15.5px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: var(--on-cream-text);
  margin: 0;
  flex: 1;
}

/* Source link sits at the bottom on its own row */
.review__by {
  display: flex;
  align-items: center;
}
.review__by a {
  font-size: 10px;
  color: var(--on-cream-muted);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color .2s var(--ease);
  font-weight: 500;
}
.review__by a:hover {
  color: #c2562b;
}
.review--featured .review__by a { color: #d6a978; }
.review--featured .review__by a:hover { color: #ffd9a8; }
.reviews__note {
  text-align: center;
  margin-top: 32px;
  font-size: 12px;
  color: var(--on-cream-muted);
  font-style: italic;
}

@media (max-width: 880px) {
  .reviews__grid { grid-template-columns: 1fr; gap: 18px; }
  .reviews { padding: 80px 0; }
}

/* ============================================================
   Section heads
   ============================================================ */
.section-head {
  text-align: left;
  margin-bottom: 64px;
  max-width: 780px;
  margin-left: 0;
  margin-right: auto;
}
.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  margin: 0 0 18px;
  letter-spacing: -0.015em;
}
.section-lead {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--text-muted);
  max-width: 60ch;
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   Services — exclusive white & brown editorial layout
   ============================================================ */
.services {
  padding: 36px 0 90px;            /* tight top so it docks under the pill */
  background: #f6f1ea;
  border-top: none;
  border-bottom: 1px solid #d8cdbd;
  --on-cream-text: #1a1816;
  --on-cream-soft: #3b342d;
  --on-cream-muted: #7a6e60;
  --on-cream-line: #d8cdbd;
}
.services .section-head { margin-bottom: 44px; }
.services .kicker { color: #c2562b; font-size: 11px; margin-bottom: 12px; }
.services .section-head {
  max-width: 100%;
  margin-bottom: 36px;
}
.services .section-title {
  color: var(--on-cream-text);
  font-size: clamp(26px, 3.2vw, 42px);   /* ~30% smaller — fits on one line */
  margin-bottom: 14px;
}
.services .section-title em { color: #b8935a; }
.services .section-lead {
  color: var(--on-cream-soft);
  font-size: clamp(13px, 1vw, 14px);
  line-height: 1.55;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);    /* 2x2 horizontal cards */
  gap: 24px;
}
.service-card {
  background: #ffffff;
  border: 1px solid #e7ddca;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .4s var(--ease);
  display: grid;
  grid-template-columns: 38% 1fr;
  align-items: stretch;
  box-shadow: 0 2px 14px rgba(31, 28, 25, 0.04);
  height: 175px;              /* ~50% shorter than before */
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: #b8935a;
  box-shadow: 0 18px 40px rgba(31, 28, 25, 0.12);
}
.service-card__media {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 75%, rgba(255,255,255,0.08) 100%);
}
.service-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.service-card:hover .service-card__media img {
  transform: scale(1.05);
}
.service-card__body {
  padding: 16px 20px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.service-card__body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--on-cream-text);
  line-height: 1.1;
}
.service-card__body p {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--on-cream-soft);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--on-cream-line);
}
.service-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: #b8935a;
  letter-spacing: 0.005em;
}
.services .service-card__foot .btn--gold,
.services .service-card__foot .btn--small {
  padding: 7px 16px;
  font-size: 12px;
}

@media (max-width: 720px) {
  .services__grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 40% 1fr; height: 160px; }
}
@media (max-width: 480px) {
  .service-card {
    grid-template-columns: 1fr;
    height: auto;
  }
  .service-card__media { aspect-ratio: 4/3; height: auto; }
  .service-card__body { padding: 18px 22px 18px; }
}
/* Override the Book button on cream services panel — dark charcoal pill */
.services .service-card__foot .btn--gold {
  background: #1f1c19;
  color: #f5efe5;
  box-shadow: 0 6px 16px rgba(31, 28, 25, 0.15);
}
.services .service-card__foot .btn--gold:hover {
  background: #c2562b;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(194, 86, 43, 0.3);
}

/* ============================================================
   Prices — interactive picker on warm cream backdrop
   (à la "Three packages for your wedding journey")
   ============================================================ */
.prices {
  padding: 120px 0;
  background: #f6f1ea;       /* ms-totalbyg --bg */
  border-top: 1px solid #d8cdbd;
  border-bottom: 1px solid #d8cdbd;
  overflow: hidden;
  --on-cream-text: #1a1816;     /* ms-totalbyg --ink */
  --on-cream-soft: #3b342d;     /* --ink-soft */
  --on-cream-muted: #7a6e60;    /* --muted */
  --on-cream-line: #d8cdbd;     /* --line */
  --on-cream-line-dashed: rgba(122, 110, 96, 0.32);
  --on-cream-card: #ffffff;     /* --paper */
  --ms-accent: #c2562b;         /* --accent (terracotta) */
  --ms-gold: #b8935a;           /* --gold */
}
.prices__container { position: relative; }

.prices .kicker { color: var(--ms-accent); }
.prices .section-title { color: var(--on-cream-text); }
.prices .section-title em { color: var(--ms-gold); }
.prices .section-lead { color: var(--on-cream-soft); }

/* --- Tab switcher pill (dark pill on cream backdrop) --- */
.picker {
  position: relative;
  display: inline-flex;
  margin: 0 auto 40px;
  padding: 6px;
  background: #1f1c19;          /* ms-totalbyg --dark */
  border: 1px solid #1f1c19;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 18px 44px rgba(31, 28, 25, 0.3);
  left: 50%;
  transform: translateX(-50%);
}
.picker__indicator {
  position: absolute;
  top: 6px;
  bottom: 6px;
  background: linear-gradient(180deg, #d6a978 0%, var(--ms-gold) 60%, #8e6d3f 100%);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(184, 147, 90, 0.5), inset 0 1px 0 rgba(255,255,255,0.35);
  transition: left .45s var(--ease), width .45s var(--ease);
  z-index: 0;
  /* set via JS */
  left: 6px;
  width: 0;
}
.picker__tab {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: transparent;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 999px;
  transition: color .35s var(--ease);
  white-space: nowrap;
}
.picker__tab:hover { color: var(--text-soft); }
.picker__tab.is-active {
  color: #1f1c19;
}
.picker__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  background: var(--ms-accent);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 999px;
  transition: all .3s var(--ease);
}
.picker__tab.is-active .picker__badge {
  background: #1f1c19;
  color: var(--ms-gold);
}

/* --- Stage with arrows --- */
.picker-stage {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.picker-stage__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f1c19;
  border: 1px solid #1f1c19;
  border-radius: 50%;
  color: #f6f1ea;
  cursor: pointer;
  transition: all .25s var(--ease);
  box-shadow: 0 8px 22px rgba(31, 28, 25, 0.25);
}
.picker-stage__arrow:hover {
  background: var(--ms-accent);
  border-color: var(--ms-accent);
  color: #fff;
}
.picker-stage__arrow--prev { left: -26px; }
.picker-stage__arrow--next { right: -26px; }
@media (min-width: 1280px) {
  .picker-stage__arrow--prev { left: -68px; }
  .picker-stage__arrow--next { right: -68px; }
}

/* --- Card --- */
.picker-card {
  position: relative;
  background: var(--on-cream-card);
  border: 1px solid var(--on-cream-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 540px;
  box-shadow:
    0 30px 80px rgba(31, 28, 25, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.picker-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s var(--ease);
}
.picker-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.picker-panel__media {
  position: relative;
  overflow: hidden;
  background: #2A2118;
  min-height: 540px;
}
.picker-panel__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.4s var(--ease);
}
.picker-panel.is-active .picker-panel__media img {
  transform: scale(1.04);
}
.picker-panel__media-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 55%, rgba(255, 255, 255, 0.20) 100%),
    linear-gradient(180deg, rgba(31,28,25,0.10) 0%, rgba(31,28,25,0.30) 100%);
  pointer-events: none;
}

.picker-panel__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 56px;
  background: var(--on-cream-card);
  color: var(--on-cream-text);
}
.picker-panel__kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ms-accent);
  margin-bottom: 14px;
}
.picker-panel__title {
  font-size: clamp(36px, 4vw, 52px);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  color: var(--on-cream-text);
}
.picker-panel__title em { color: var(--ms-gold); }
.picker-panel__lead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--on-cream-soft);
  margin: 0 0 28px;
  max-width: 44ch;
}

.picker-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  border-top: 1px solid var(--on-cream-line);
}
.picker-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--on-cream-line-dashed);
  font-size: 15px;
  color: var(--on-cream-soft);
  font-weight: 500;
}
.picker-list li span:last-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ms-gold);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.picker-panel__cta {
  align-self: flex-start;
  background: var(--ms-accent);
  color: #fff;
  box-shadow: 0 8px 22px rgba(194, 86, 43, 0.28);
}
.picker-panel__cta:hover {
  background: #9c4220;
  box-shadow: 0 14px 32px rgba(194, 86, 43, 0.4);
}

.prices__note {
  text-align: center;
  margin-top: 36px;
  font-size: 13px;
  color: var(--on-cream-muted);
  font-style: italic;
}

/* --- Mobile --- */
@media (max-width: 880px) {
  .picker {
    width: calc(100% - 16px);
    margin: 0 8px 32px;
    left: 0;
    transform: none;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-radius: 999px;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .picker::-webkit-scrollbar { display: none; }
  .picker__tab { padding: 11px 16px; font-size: 11px; letter-spacing: 0.12em; flex-shrink: 0; }
  .picker__badge { font-size: 9px; padding: 2px 6px; }

  .picker-card { min-height: auto; border-radius: var(--radius); }
  .picker-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .picker-panel__media {
    min-height: 220px;
    aspect-ratio: 16/10;
  }
  .picker-panel__media-tint {
    background: linear-gradient(180deg, transparent 30%, rgba(26,43,61,0.55) 100%);
  }
  .picker-panel__body { padding: 32px 26px 36px; }
  .picker-panel__title { font-size: 32px; }

  .picker-stage__arrow { display: none; }
}

/* ============================================================
   Gallery — editorial mosaic, flush tiles, fills full column
   ============================================================ */
.gallery {
  padding: 120px 0;
  background: #efe5d8;                   /* warm cream backdrop (image #55 reference) */
}
.gallery .container {
  width: 100%;
  max-width: 100%;
}
.gallery .section-head {
  width: 90%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.gallery .kicker { color: #c2562b; }
.gallery .section-title { color: #1a1816; }
.gallery .section-title em { color: #b8935a; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 3px;                        /* tight 3px gap */
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}
.gallery__item {
  margin: 0;
  border-radius: 0;                /* sharp corners */
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  background: #efe5d8;
  outline: none;
  transform: none !important;
  width: 100%;
  height: 100%;
  isolation: isolate;
}
/* Image is absolutely positioned inside the box, so any transform stays
   purely visual and the box's layout dimensions are untouched. */
.gallery__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  transition: transform 1.2s var(--ease);
  display: block;
  will-change: transform;
}
.gallery__item:hover img {
  transform: scale(1.05);          /* gentle pan-in — box edges stay put */
}

/* Mosaic pattern — 4 cols × 4 rows, two large heroes + four smaller tiles */
.gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(2) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(3) { grid-column: span 1; grid-row: span 2; }
.gallery__item:nth-child(4) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(5) { grid-column: span 1; grid-row: span 2; }
.gallery__item:nth-child(6) { grid-column: span 4; grid-row: span 1; }

/* Outer corners rounded — to mirror the section-nav pill above */
.gallery__item:nth-child(1) { border-top-left-radius: 22px; }
.gallery__item:nth-child(2) { border-top-right-radius: 22px; }
.gallery__item:nth-child(6) {
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
}

@media (max-width: 880px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(4) { grid-column: span 2; grid-row: span 2; }
}

/* ============================================================
   About
   ============================================================ */
.about {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__copy h2 { margin-bottom: 28px; }
.about__copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0 0 18px;
}
.about__stats {
  display: flex;
  gap: 40px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about__stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about__stats strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.about__stats span {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.about__image {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
}
.about__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about__image figcaption {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(21,17,13,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 880px) {
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__image { aspect-ratio: 3/4; }
}

/* ============================================================
   Find os
   ============================================================ */
.find {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.find__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: stretch;
}
.find__info h2 { margin-bottom: 32px; }
.find__hours {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin-bottom: 28px;
}
.find__hours h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}
.find__hours ul {
  list-style: none;
  margin: 0; padding: 0;
}
.find__hours li {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 14px;
  color: var(--text-soft);
  border-bottom: 1px dashed var(--line);
}
.find__hours li:last-child { border-bottom: none; }

.find__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.find__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}
.find__phone svg { color: var(--gold); }
.find__phone:hover { color: var(--gold); }
.find__email {
  font-size: 15px;
  color: var(--text-muted);
}
.find__email:hover { color: var(--gold); }

.find__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
  min-height: 480px;
  border: 1px solid var(--line);
}
.find__map iframe {
  width: 100%; height: 100%;
  min-height: 480px;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}

@media (max-width: 880px) {
  .find__inner { grid-template-columns: 1fr; gap: 40px; }
  .find__map { min-height: 360px; }
  .find__map iframe { min-height: 360px; }
}

/* ============================================================
   Final CTA
   ============================================================ */
.cta-final {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,160,106,0.18) 0%, transparent 60%),
    var(--bg-deep);
  text-align: center;
  border-top: 1px solid var(--line);
}
.cta-final h2 {
  font-size: clamp(40px, 5vw, 64px);
  margin: 0 0 14px;
}
.cta-final p {
  font-size: 17px;
  color: var(--text-muted);
  margin: 0 0 36px;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--bg-deep);
  padding: 70px 0 0;
  border-top: 1px solid var(--line);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 50px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__brand img {
  border-radius: 50%;
  background: var(--bg-2);
}
.footer__brand strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  display: block;
  letter-spacing: 0.02em;
}
.footer__brand span {
  font-size: 13px;
  color: var(--text-muted);
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__cols h5 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.footer__cols a, .footer__cols span {
  display: block;
  font-size: 14px;
  color: var(--text-soft);
  padding: 4px 0;
  transition: color .2s var(--ease);
  line-height: 1.6;
}
.footer__cols a:hover { color: var(--gold); }
.footer__bar {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 880px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ============================================================
   Sticky mobile CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--gold);
  color: #1a1208;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45), 0 4px 12px rgba(201,160,106,0.4);
  transition: all .3s var(--ease);
}
.sticky-cta:hover { transform: translateY(-2px); }

/* ============================================================
   Booking modal
   ============================================================ */
.booking {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.booking.is-open {
  pointer-events: auto;
  opacity: 1;
}
.booking__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,8,5,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.booking__panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 460px;
  max-width: 92vw;
  background: var(--bg-2);
  border-left: 1px solid var(--gold);
  padding: 60px 40px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}
.booking.is-open .booking__panel { transform: translateX(0); }

.booking__close {
  position: absolute;
  top: 18px; right: 22px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.booking__close:hover {
  background: var(--gold);
  color: #1a1208;
  border-color: var(--gold);
}
.booking__title {
  font-size: 38px;
  margin: 12px 0 8px;
}
.booking__lead {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 30px;
}

.booking__option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: all .25s var(--ease);
}
.booking__option:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  background: rgba(201,160,106,0.06);
}
.booking__option--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1208;
}
.booking__option--primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  color: #1a1208;
}
.booking__option--primary .booking__icon {
  background: rgba(26,18,8,0.15);
  color: #1a1208;
}
.booking__option--primary small { color: rgba(26,18,8,0.7); }

.booking__icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(201,160,106,0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.booking__option strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}
.booking__option small {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}
.booking__option--primary strong { color: #1a1208; }

.booking__hours {
  margin-top: 30px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text-soft);
}
.booking__hours strong { color: var(--gold); margin-right: 6px; }

/* ============================================================
   Reveal animations
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav.is-menu-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-menu-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.is-menu-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav.is-menu-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(15,12,9,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 24px 28px 32px;
    gap: 18px;
  }
  .nav.is-menu-open .nav__links a {
    font-size: 18px;
    color: var(--text);
  }
  .sticky-cta { display: inline-flex; }
  .hero { padding: 100px 0 60px; min-height: 90vh; }
  /* Touch devices: no mouse-only animations */
  .hero__scroll { display: none; }
  .marquee__track,
  .reviews__grid,
  .prices-list { cursor: default; }
  .gallery__item { cursor: default; }
  .gallery__item:hover img { transform: none; }
  /* Hero rating pills — compact 3-up on mobile (rating + stars on top row, name beneath) */
  .hero__rating {
    gap: 6px;
    width: 100%;
    flex-wrap: nowrap;
  }
  .rating-pill {
    flex: 1 1 0;
    min-width: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 6px;
    row-gap: 2px;
    align-items: center;
    padding: 8px 10px;
    text-align: center;
  }
  .rating-pill strong { grid-column: 1; grid-row: 1; font-size: 14px; }
  .rating-pill .stars { grid-column: 2; grid-row: 1; font-size: 10px; letter-spacing: 0.04em; text-align: left; }
  .rating-pill__src {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 9.5px;
    letter-spacing: 0.04em;
    text-align: center;
  }
  .services, .prices, .gallery, .about, .find { padding: 80px 0; }
  .section-head { margin-bottom: 48px; }
  .find__phone { font-size: 26px; }
  .trust__inner { justify-content: center; gap: 14px 28px; }
  .trust__item { font-size: 13px; }
  .footer__bar { justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
  .container,
  .hero__inner,
  .nav__inner,
  .trust__inner { width: calc(100% - 40px); padding: 0; }
  .hero__cta .btn { flex: 1; }
  .about__stats { gap: 20px; flex-wrap: wrap; }
  .about__stats strong { font-size: 30px; }
  .booking__panel { padding: 60px 24px 30px; }
  .booking__title { font-size: 30px; }
}
