/* ==========================================================================
   salondecoiffuredezack — global stylesheet
   Brand purple #8D5A97 · Brand mint #B8EBD0
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* brand */
  --purple:       #8D5A97;
  --purple-600:   #7A4A84;
  --purple-400:   #A87AB1;
  --purple-100:   #EFE4F2;

  --plum-900:     #24132A;
  --plum-800:     #351E3D;
  --plum-700:     #4A2B54;

  --mint:         #B8EBD0;
  --mint-500:     #6FC79B;
  --mint-600:     #4FAE80;
  --mint-700:     #35805D;

  /* surfaces + text */
  --bg:           #FBF8FA;
  --surface:      #FFFFFF;
  --surface-2:    #F3EAF1;
  --ink:          #24132A;
  --muted:        #6B5872;
  --line:         rgba(36, 19, 42, 0.12);
  --line-soft:    rgba(36, 19, 42, 0.07);

  /* accents that need to shift for dark backgrounds */
  --accent:       #8D5A97;
  --accent-2:     #35805D;

  /* header */
  --header-bg:    #8D5A97;
  --header-ink:   rgba(255, 255, 255, 0.90);
  --header-h:     76px;

  /* shape + motion */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(36, 19, 42, 0.06);
  --shadow-md: 0 12px 34px rgba(36, 19, 42, 0.10);
  --shadow-lg: 0 26px 70px rgba(36, 19, 42, 0.16);
  --ease: cubic-bezier(.22, .61, .36, 1);

  /* layout */
  --pad: clamp(20px, 5vw, 48px);
  --maxw: 1200px;

  /* type */
  --font-display: "Poppins", "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Hero photo is set inline on .hero__photo in index.html.
     If you set it here instead, the path is relative to THIS file: url("../img/hero.jpg") */
  --hero-photo: none;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:        #180D1C;
    --surface:   #221328;
    --surface-2: #2C1933;
    --ink:       #F6EEF8;
    --muted:     #B8A0BF;
    --line:      rgba(246, 238, 248, 0.15);
    --line-soft: rgba(246, 238, 248, 0.08);
    --purple-100:#3A2242;
    --accent:    #CBA3D4;
    --accent-2:  #6FC79B;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 12px 34px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 26px 70px rgba(0, 0, 0, 0.55);
  }
}
:root[data-theme="dark"] {
  --bg:        #180D1C;
  --surface:   #221328;
  --surface-2: #2C1933;
  --ink:       #F6EEF8;
  --muted:     #B8A0BF;
  --line:      rgba(246, 238, 248, 0.15);
  --line-soft: rgba(246, 238, 248, 0.08);
  --purple-100:#3A2242;
  --accent:    #CBA3D4;
  --accent-2:  #6FC79B;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 34px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 26px 70px rgba(0, 0, 0, 0.55);
}

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--mint-600); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 9vw, 116px); }
.section--tight { padding-block: clamp(48px, 6vw, 76px); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 3. Header + nav ---------- */
.header {
  position: sticky; top: 0; z-index: 200;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.header__inner {
  max-width: 1440px; margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 32px);
  height: var(--header-h);
  display: flex; align-items: center; gap: 18px;
}
.logo {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(15px, 1.45vw, 19px); letter-spacing: -0.02em;
  color: #fff; text-decoration: none; white-space: nowrap; margin-right: auto;
}
.logo__mark {
  height: calc(var(--header-h) * 0.56); width: auto; flex: none;
  transition: transform .3s var(--ease);
}
.logo:hover .logo__mark { transform: translateY(-1px) rotate(-3deg); }
.logo__word span { color: var(--mint); }
.logo:hover .logo__word span { color: #fff; }

.footer__emblem { width: 124px; height: auto; margin: -8px 0 14px -10px; opacity: .95; }

.nav { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__link {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 13px; border-radius: var(--r-sm);
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--header-ink); text-decoration: none;
  background: none; border: 0; cursor: pointer;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav__link:hover { color: #fff; background: rgba(255, 255, 255, 0.12); }
.nav__link[aria-current="page"] { color: #fff; }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 2px;
  height: 2px; background: var(--mint); border-radius: 2px;
}
.nav__item { position: relative; display: flex; }
.nav__caret { transition: transform .25s var(--ease); flex: none; }
.nav__item.is-open .nav__caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; z-index: 10;
  min-width: 236px; padding: 8px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--shadow-md);
  list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav__item.is-open .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a {
  display: block; padding: 9px 12px; border-radius: var(--r-sm);
  font-size: 14.5px; text-decoration: none; color: var(--ink);
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.dropdown a:hover { background: var(--purple-100); color: var(--purple-600); }

.icon-btn {
  display: grid; place-items: center; width: 38px; height: 38px;
  border: 0; border-radius: 50%; background: transparent;
  color: var(--header-ink); cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.icon-btn:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }

.burger { display: none; }

/* ---------- 4. Buttons ---------- */
.btn {
  --btn-bg: var(--purple); --btn-fg: #fff; --btn-bd: var(--purple);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px; border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd);
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease),
              background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--mint  { --btn-bg: var(--mint); --btn-fg: var(--plum-900); --btn-bd: var(--mint); }
.btn--ghost { --btn-bg: transparent; --btn-fg: currentColor; --btn-bd: currentColor; }
.btn--ghost:hover { --btn-bg: var(--mint); --btn-fg: var(--plum-900); --btn-bd: var(--mint); }
.btn--sm { padding: 11px 20px; font-size: 11.5px; }

.btn--book {
  padding: 11px 22px; font-size: 11.5px;
  background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.75);
}
.btn--book:hover { background: var(--mint); color: var(--plum-900); border-color: var(--mint); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--accent); text-decoration: none;
}
.link-arrow svg { transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }
.on-dark .link-arrow { color: var(--mint); }

/* ---------- 5. Section headers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px; }
.on-dark .eyebrow { color: var(--mint); }

.s-head { max-width: 620px; margin-bottom: clamp(36px, 5vw, 56px); }
.s-head--center { margin-inline: auto; text-align: center; }
.s-head--center .eyebrow::before { display: none; }
.s-head h2 { font-size: clamp(30px, 4.4vw, 50px); }
.s-head p { margin-top: 18px; color: var(--muted); font-size: clamp(16px, 1.4vw, 18px); }
.on-dark .s-head p { color: rgba(255, 255, 255, 0.72); }

.on-dark { color: #fff; }
.band-dark {
  background: var(--plum-900);
  background-image:
    radial-gradient(900px 420px at 12% -10%, rgba(141, 90, 151, 0.55), transparent 65%),
    radial-gradient(700px 380px at 92% 110%, rgba(111, 199, 155, 0.16), transparent 62%);
}
.band-soft { background: var(--surface-2); }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: min(78vh, 720px);
  display: grid; align-items: center;
  padding-block: clamp(72px, 11vw, 140px);
  background: var(--plum-900);
  background-image:
    radial-gradient(1100px 560px at 18% 0%, rgba(141, 90, 151, 0.72), transparent 62%),
    radial-gradient(760px 520px at 88% 100%, rgba(111, 199, 155, 0.20), transparent 60%);
  color: #fff;
}
.hero__photo {
  position: absolute; inset: 0; z-index: -3;
  background-image: var(--hero-photo);
  background-size: cover; background-position: center 20%;
  filter: grayscale(1) contrast(1.15) brightness(.9);
  opacity: .62;
}
/* Keeps the headline on solid ground while the photo stays legible to the right. */
.hero__scrim {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(100deg,
    rgba(36, 19, 42, 0.95) 0%,
    rgba(36, 19, 42, 0.88) 30%,
    rgba(36, 19, 42, 0.58) 60%,
    rgba(74, 43, 84, 0.38) 100%);
}
@media (max-width: 760px) {
  .hero__scrim { background: linear-gradient(180deg, rgba(36,19,42,.86) 0%, rgba(36,19,42,.78) 45%, rgba(36,19,42,.92) 100%); }
  .hero__photo { background-position: center 16%; opacity: .5; }
}
.hero__grain { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; opacity: .5; pointer-events: none; }
.hero__art {
  position: absolute; right: -4%; top: 50%; transform: translateY(-50%);
  width: min(46%, 520px); z-index: -1; opacity: .22; color: var(--mint);
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 1000px; }
.hero h1 {
  font-size: clamp(40px, 7.4vw, 88px);
  color: var(--mint);
  margin-bottom: 22px;
}
.hero__lead {
  font-size: clamp(17px, 1.7vw, 21px); line-height: 1.55;
  color: rgba(255, 255, 255, 0.82); max-width: 50ch;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.trust {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 52px);
  margin-top: clamp(40px, 6vw, 64px);
  padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}
.trust li { display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: rgba(255, 255, 255, 0.86); }
.trust svg { color: var(--mint); flex: none; }

/* page hero (interior pages) */
.page-hero {
  position: relative; overflow: hidden;
  padding-block: clamp(56px, 8vw, 96px);
  background: var(--plum-900);
  background-image:
    radial-gradient(900px 460px at 10% -20%, rgba(141, 90, 151, 0.68), transparent 62%),
    radial-gradient(620px 340px at 95% 120%, rgba(111, 199, 155, 0.18), transparent 60%);
  color: #fff;
}
.page-hero h1 { font-size: clamp(34px, 6vw, 66px); color: var(--mint); }
.page-hero p { margin-top: 16px; max-width: 54ch; color: rgba(255, 255, 255, 0.78); font-size: clamp(16px, 1.4vw, 18px); }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--mint); }

/* ---------- 7. Cards / grids ---------- */
.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 228px), 1fr)); }

.card {
  position: relative; overflow: hidden;
  padding: clamp(26px, 3vw, 36px);
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--mint));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line); }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 22px;
  border-radius: var(--r-md); background: var(--purple-100); color: var(--accent);
}
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card__price {
  display: block; margin-top: 20px; padding-top: 18px; border-top: 1px dashed var(--line);
  font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--accent);
  text-decoration: none;
}

/* split section */
.split { display: grid; gap: clamp(32px, 5vw, 72px); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--flip .split__media { order: 2; } }
.split__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4 / 5; }
.split__media > img, .split__media > svg { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: clamp(20px, 3vw, 36px); list-style: none; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 5vw, 50px); color: var(--accent); line-height: 1; letter-spacing: -0.03em; }
.on-dark .stat__num { color: var(--mint); }
.stat__label { margin-top: 8px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.on-dark .stat__label { color: rgba(255,255,255,.66); }

/* ---------- 8. Price list ---------- */
.price-list { list-style: none; }
.price-item {
  display: grid; grid-template-columns: 1fr auto; gap: 6px 20px; align-items: baseline;
  padding: 20px 0; border-bottom: 1px solid var(--line-soft);
}
.price-item:first-child { border-top: 1px solid var(--line-soft); }
.price-item { scroll-margin-top: calc(var(--header-h) + 28px); }
.price-item__name { grid-column: 1; grid-row: 1; font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.price-item__meta { grid-column: 1; grid-row: 2; color: var(--muted); font-size: 14.5px; }
.price-item__cost { grid-column: 2; grid-row: 1 / span 2; align-self: center; font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--accent); white-space: nowrap; }
.tag {
  display: inline-block; margin-left: 10px; padding: 3px 10px; border-radius: var(--r-pill);
  background: var(--mint); color: var(--plum-900);
  font-family: var(--font-body); font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  vertical-align: middle;
}

/* ---------- 9. Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); gap: clamp(12px, 1.6vw, 20px); }
.shot {
  position: relative; display: block; padding: 0; border: 0; width: 100%;
  aspect-ratio: 1 / 1; border-radius: var(--r-md); overflow: hidden; cursor: zoom-in;
  background: var(--surface-2);
}
.shot > svg, .shot > img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform .5s var(--ease); }
.shot::after {
  content: attr(data-label); position: absolute; left: 0; right: 0; bottom: 0;
  padding: 34px 18px 16px; text-align: left;
  font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #fff;
  background: linear-gradient(transparent, rgba(36, 19, 42, 0.82));
  opacity: 0; transition: opacity .3s var(--ease);
}
.shot:hover > svg, .shot:hover > img { transform: scale(1.06); }
.shot:hover::after, .shot:focus-visible::after { opacity: 1; }
.strip { grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }

.lightbox {
  position: fixed; inset: 0; z-index: 400; display: grid; place-items: center;
  padding: 5vmin; background: rgba(20, 10, 24, 0.92); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), visibility .25s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__frame { display: grid; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-lg); }
.lightbox__frame > svg { width: min(760px, 90vw); height: auto; max-height: 84vh; aspect-ratio: 1 / 1; object-fit: cover; }
.lightbox__frame > img { width: auto; max-width: min(680px, 92vw); height: auto; max-height: 86vh; object-fit: contain; }
.lightbox__close { position: absolute; top: 20px; right: 20px; width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(255,255,255,.14); color: #fff; cursor: pointer; display: grid; place-items: center; }
.lightbox__close:hover { background: var(--mint); color: var(--plum-900); }

.clips { display: grid; gap: clamp(16px, 2.4vw, 26px); grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); max-width: 760px; margin-inline: auto; }
.clip { margin: 0; }
.clip video {
  width: 100%; aspect-ratio: 9 / 16; display: block;
  border-radius: var(--r-md); background: var(--plum-900);
  box-shadow: var(--shadow-md); object-fit: cover;
}
.clip figcaption { margin-top: 12px; text-align: center; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ---------- 10. Testimonials ---------- */
.quote {
  padding: clamp(26px, 3vw, 34px);
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
}
.quote__stars { display: flex; gap: 3px; color: var(--mint-600); margin-bottom: 16px; }
.quote p { font-size: 16.5px; }
.quote__who { margin-top: 20px; font-size: 13.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }

/* ---------- 11. Accordion ---------- */
.faq { max-width: 820px; margin-inline: auto; list-style: none; }
.faq__item { border-bottom: 1px solid var(--line-soft); }
.faq__item:first-child { border-top: 1px solid var(--line-soft); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  width: 100%; padding: 24px 4px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(16.5px, 2vw, 20px);
  letter-spacing: -0.01em; color: var(--ink);
  transition: color .2s var(--ease);
}
.faq__q:hover { color: var(--accent); }
.faq__sign { position: relative; flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--purple-100); display: grid; place-items: center; color: var(--purple); transition: transform .3s var(--ease), background-color .3s var(--ease); }
.faq__q[aria-expanded="true"] .faq__sign { transform: rotate(45deg); background: var(--mint); color: var(--plum-900); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 4px 26px; color: var(--muted); max-width: 62ch; }

/* ---------- 12. Contact ---------- */
.contact-grid { display: grid; gap: clamp(32px, 5vw, 64px); grid-template-columns: 1fr; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 0.85fr 1.15fr; } }
.info-list { list-style: none; display: grid; gap: 26px; }
.info-list__row { display: flex; gap: 16px; }
.info-list__row > :not(.info-list__icon) { min-width: 0; flex: 1; }
.info-list__icon { flex: none; display: grid; place-items: center; width: 44px; height: 44px; border-radius: var(--r-md); background: var(--purple-100); color: var(--purple); }
.info-list dt { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.info-list dd { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; overflow-wrap: anywhere; }
.info-list dd a { text-decoration: none; }
.info-list dd a:hover { color: var(--accent); }

.hours { list-style: none; }
.hours li { display: flex; justify-content: space-between; gap: 20px; padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: 15.5px; }
.hours li:last-child { border-bottom: 0; }
.hours span:last-child { color: var(--muted); }
.hours li.is-closed span:last-child { color: var(--accent); }

.form { display: grid; gap: 20px; padding: clamp(26px, 3.4vw, 40px); background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.form__row { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.field { display: grid; gap: 7px; }
.field label { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; min-width: 0; padding: 13px 15px; border-radius: var(--r-sm);
  border: 1.5px solid var(--line); background: var(--bg); color: var(--ink);
  font-size: 16px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--purple); box-shadow: 0 0 0 4px var(--purple-100);
}
.field.has-error input, .field.has-error select { border-color: #C2453F; }
.field__err { font-size: 13px; color: #C2453F; display: none; }
.field.has-error .field__err { display: block; }
.form__note { font-size: 13.5px; color: var(--muted); }
.form__ok {
  display: none; gap: 12px; align-items: flex-start; padding: 16px 18px;
  border-radius: var(--r-md); background: var(--mint); color: var(--plum-900); font-size: 15px;
}
.form__ok.is-visible { display: flex; }

/* Server-side failure — same shape as the success panel, alarmed colours. */
.form__err {
  display: none; gap: 12px; align-items: flex-start; padding: 16px 18px;
  border-radius: var(--r-md); background: #FBE9E8; color: #7A2621;
  border: 1px solid #E9BDBA; font-size: 15px;
}
.form__err.is-visible { display: flex; }

/* Honeypot — off-screen for people, irresistible to bots. Not display:none,
   which some bots skip. */
.hp {
  position: absolute !important; left: -9999px !important;
  width: 1px !important; height: 1px !important;
  overflow: hidden !important;
}

/* Submit button while the request is in flight. */
.btn[aria-busy="true"] { opacity: .65; cursor: progress; }

.map-block {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm);
  background: var(--surface);
}
.map { position: relative; aspect-ratio: 16 / 7; background: var(--surface-2); }
.map > iframe { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; border: 0; display: block; }
.map > svg { width: 100%; height: 100%; }

/* Shown instead of the live map where embedded frames can't load. */
.map__fallback {
  position: absolute; inset: 0; z-index: 0;
  display: grid; place-content: center; justify-items: center; gap: 14px;
  padding: 24px; text-align: center; color: #fff;
  background: var(--plum-900);
  background-image:
    radial-gradient(720px 340px at 20% 0%, rgba(141, 90, 151, 0.65), transparent 62%),
    radial-gradient(520px 300px at 90% 110%, rgba(111, 199, 155, 0.20), transparent 60%);
}
.map__fallback svg { color: var(--mint); }
.map__fallback p { font-family: var(--font-display); font-weight: 600; font-size: 17px; line-height: 1.45; }

.map__bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; border-top: 1px solid var(--line-soft);
}
.map__addr { display: flex; align-items: center; gap: 12px; font-size: 15px; line-height: 1.4; }
.map__addr svg { flex: none; color: var(--accent); }
.map__addr strong { font-family: var(--font-display); font-size: 16px; }
@media (max-width: 620px) {
  .map { aspect-ratio: 4 / 3; }
  .map__bar { justify-content: center; text-align: center; }
  .map__bar .btn { width: 100%; }
}

/* ---------- 13. CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(30px, 5vw, 54px); color: var(--mint); }
.cta-band p { margin: 18px auto 32px; max-width: 46ch; color: rgba(255, 255, 255, 0.78); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- 14. Footer ---------- */
.footer { background: var(--plum-900); color: rgba(255, 255, 255, 0.72); padding-block: clamp(48px, 6vw, 72px) 0; }
.footer__grid { display: grid; gap: 36px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.footer__brand { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: #fff; text-decoration: none; }
.footer__brand span { color: var(--mint); }
.footer__tag { margin-top: 14px; font-size: 15px; max-width: 34ch; }
.footer h3 { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--mint); margin-bottom: 16px; font-weight: 600; font-family: var(--font-body); }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a { color: inherit; text-decoration: none; font-size: 15px; transition: color .2s var(--ease); }
.footer a:hover { color: var(--mint); }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); transition: all .2s var(--ease); }
.socials a:hover { background: var(--mint); color: var(--plum-900); border-color: var(--mint); transform: translateY(-2px); }
.footer__bar {
  margin-top: clamp(40px, 5vw, 60px); padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 13.5px; color: rgba(255, 255, 255, 0.55);
}

/* ---------- 15. Search overlay ---------- */
.search {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(20, 10, 24, 0.9); backdrop-filter: blur(8px);
  padding: clamp(60px, 12vh, 140px) var(--pad) var(--pad);
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), visibility .25s;
}
.search.is-open { opacity: 1; visibility: visible; }
.search__box { max-width: 640px; margin-inline: auto; }
.search__input {
  width: 100%; padding: 20px 24px; border-radius: var(--r-md);
  border: 1.5px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(18px, 2.6vw, 26px);
}
.search__input::placeholder { color: rgba(255,255,255,.45); }
.search__input:focus { outline: none; border-color: var(--mint); }
.search__results { list-style: none; margin-top: 14px; max-height: 46vh; overflow-y: auto; }
.search__results li a {
  display: block; padding: 15px 20px; border-radius: var(--r-sm);
  color: #fff; text-decoration: none; transition: background-color .18s var(--ease);
}
.search__results li a:hover, .search__results li a:focus-visible { background: rgba(255,255,255,.12); }
.search__results strong { display: block; font-family: var(--font-display); font-size: 16.5px; }
.search__results span { font-size: 14px; color: rgba(255,255,255,.6); }
.search__empty { padding: 18px 20px; color: rgba(255,255,255,.6); }
.search__hint { margin-top: 12px; font-size: 13px; color: rgba(255,255,255,.45); text-align: center; }

/* ---------- 16. Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 17. Responsive nav ---------- */
@media (max-width: 1080px) {
  :root { --header-h: 66px; }
  .burger { display: grid; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0 auto; z-index: 190;
    width: min(340px, 86vw); padding: 22px 18px;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--plum-900); overflow-y: auto;
    transform: translateX(100%); transition: transform .32s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .nav.is-open { transform: none; }
  .nav__item { flex-direction: column; align-items: stretch; }
  .nav__link { padding: 14px 12px; font-size: 13px; justify-content: space-between; }
  .nav__link[aria-current="page"]::after { left: 12px; right: auto; width: 22px; bottom: 8px; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; border: 0; box-shadow: none; padding: 0 0 8px 12px;
    display: none; min-width: 0;
  }
  .nav__item.is-open .dropdown { display: block; }
  .dropdown a { color: rgba(255,255,255,.75); font-size: 14px; }
  .dropdown a:hover { background: rgba(255,255,255,.1); color: #fff; }
  .nav__book { margin-top: 14px; }
  .nav__book .btn { width: 100%; }
  .desktop-book { display: none; }
  body.nav-open { overflow: hidden; }
  .nav-scrim { position: fixed; inset: var(--header-h) 0 0; z-index: 180; background: rgba(20,10,24,.5); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }
}
@media (min-width: 1081px) { .nav__book { display: none; } .nav-scrim { display: none; } }
@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero__art { display: none; }
  .btn { padding: 13px 22px; }
  .price-item { grid-template-columns: 1fr auto; }
}
