/* Shaz's Beauty Bar — Public site styles
   Warm brown + cream + gold. Great Vibes + Montserrat. */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
  --brown: #75492b;
  --brown-deep: #5d3a22;
  --espresso: #2e211a;
  --ink: #33291f;
  --cream: #f7e6df;
  --cream-soft: #fbf3ee;
  --gold: #dfd6a7;
  --gold-deep: #c9bc7f;
  --white: #ffffff;
  --line: rgba(117, 73, 43, 0.18);
  --shadow-sm: 0 2px 10px rgba(74, 47, 27, 0.08);
  --shadow-md: 0 14px 40px rgba(74, 47, 27, 0.14);
  --shadow-lg: 0 30px 80px rgba(46, 33, 26, 0.22);
  --font-display: 'Great Vibes', cursive;
  --font-body: 'Montserrat', system-ui, sans-serif;
  --header-h: 84px;
  --radius: 22px;
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::-webkit-scrollbar { height: 9px; width: 10px; }
*::-webkit-scrollbar-thumb { background: var(--brown); border-radius: 99em; border: 3px solid transparent; background-clip: padding-box; }
*::-webkit-scrollbar-track { background: transparent; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: min(92%, var(--maxw)); margin: 0 auto; }
.section { padding: clamp(56px, 9vw, 110px) 0; position: relative; }
.section--cream { background: var(--cream-soft); }

/* Section heading */
.sec-head { text-align: center; margin-bottom: clamp(34px, 5vw, 60px); }
.sec-head .cursive {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  line-height: 1.05;
  color: var(--brown);
  font-weight: 400;
}
.sec-head .sub {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-top: 6px;
}
.sec-head .lede {
  max-width: 560px; margin: 14px auto 0; color: #6b5d50; font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 50px; cursor: pointer; border: 1.5px solid var(--brown);
  background: var(--brown); color: var(--white);
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--brown); }
.btn--ghost:hover { background: var(--brown); color: var(--white); }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--espresso); }
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn--block { width: 100%; }
.btn i { font-size: 1.25rem; }

/* Header / Nav */
.header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 900;
  display: flex; align-items: center;
  background: rgba(251, 243, 238, 0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: all .3s ease;
}
.header.scrolled { background: rgba(251, 243, 238, 0.96); border-bottom-color: var(--line); box-shadow: var(--shadow-sm); height: 70px; }
.nav { width: min(92%, var(--maxw)); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav__brand img { height: 46px; width: auto; transition: height .3s ease; }
.header.scrolled .nav__brand img { height: 40px; }
.nav__menu { display: flex; align-items: center; gap: 34px; }
.nav__link {
  font-weight: 600; font-size: 0.86rem; letter-spacing: 0.04em; color: var(--espresso);
  position: relative; padding: 6px 0; transition: color .25s ease;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--brown); transition: width .3s ease;
}
.nav__link:hover, .nav__link.active { color: var(--brown); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__cta { padding: 10px 22px; font-size: 0.74rem; }
.nav__toggle { display: none; font-size: 1.7rem; color: var(--brown); background: none; border: 0; cursor: pointer; line-height: 1; }

/* Hero */
.hero {
  position: relative; padding-top: var(--header-h);
  background:
    radial-gradient(120% 120% at 100% 0, rgba(223,214,167,0.45), transparent 55%),
    var(--cream);
  border-radius: 0 0 clamp(40px, 12vw, 160px) 0;
  overflow: hidden;
}
.hero__grid {
  width: min(92%, var(--maxw)); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 30px; align-items: center;
  min-height: calc(100vh - var(--header-h)); padding: 40px 0;
}
.hero__content { max-width: 520px; }
.hero__eyebrow { font-size: 0.78rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.hero__title { font-family: var(--font-display); font-size: clamp(3.6rem, 9vw, 6rem); color: var(--brown); line-height: 1; margin: 8px 0 18px; }
.hero__text { font-size: 1.05rem; color: #5b4d41; letter-spacing: 0.01em; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__media { position: relative; justify-self: center; }
.hero__media::before {
  content: ""; position: absolute; inset: -6% -6% 6% 6%;
  border: 2px solid var(--brown); border-radius: 220px 220px 30px 30px; z-index: 0;
}
.hero__media img {
  position: relative; z-index: 1; width: min(380px, 80vw); border-radius: 220px 220px 24px 24px;
  filter: drop-shadow(0 30px 40px rgba(46,33,26,0.25));
}

/* Services */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px;
}
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 24px; text-align: center; cursor: pointer; position: relative; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  font-family: inherit;
}
.service-card::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 4px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-card__icon { width: 78px; height: 78px; object-fit: contain; margin: 0 auto 16px; }
.service-card__name { font-size: 1.2rem; font-weight: 700; color: var(--brown); text-transform: capitalize; }
.service-card__blurb { font-size: 0.86rem; color: #6f6155; margin-top: 8px; min-height: 38px; }
.service-card__more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep); }
.service-card--download { background: var(--brown); color: var(--white); }
.service-card--download .service-card__name { color: var(--white); }
.service-card--download .service-card__blurb { color: rgba(255,255,255,0.85); }
.service-card--download .service-card__more { color: var(--gold); }
.service-card--download .service-card__icon { filter: brightness(0) invert(1); }

.data-state {
  display: grid;
  place-items: center;
  min-height: 160px;
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: rgba(247, 230, 223, 0.42);
  color: #7c6b5d;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}

.data-state--loading::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border-radius: 50%;
  border: 2px solid rgba(117, 73, 43, 0.2);
  border-top-color: var(--brown);
  animation: spin 0.8s linear infinite;
}

.data-state--loading {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Price dialog */
.dialog {
  border: 0; padding: 0; border-radius: 26px; width: min(92vw, 860px); max-height: 88vh;
  box-shadow: var(--shadow-lg); background: var(--white); color: var(--ink);
  overflow: hidden;
}
.dialog::backdrop { background: rgba(46,33,26,0.45); backdrop-filter: blur(6px); }
.dialog[open] { animation: dlgIn .35s cubic-bezier(.2,.7,.3,1) both; }
@keyframes dlgIn { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.dialog__head {
  position: sticky; top: 0; z-index: 2; padding: 26px 32px 18px;
  background: linear-gradient(var(--cream-soft), var(--cream-soft));
  border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.dialog__title { font-family: var(--font-display); font-size: 2.6rem; color: var(--brown); line-height: 1; }
.dialog__title small { display: block; font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-top: 4px; }
.dialog__close {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--white); color: var(--brown); font-size: 1.2rem; cursor: pointer; display: grid; place-items: center;
  transition: all .2s ease;
}
.dialog__close:hover { background: var(--brown); color: var(--white); transform: rotate(90deg); }
.dialog__body { padding: 26px 32px; overflow-y: auto; max-height: calc(88vh - 200px); }
.price-groups { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.price-group { break-inside: avoid; }
.price-group__head { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brown); padding-bottom: 8px; border-bottom: 2px solid var(--gold); margin-bottom: 6px; }
.price-row { display: flex; align-items: baseline; gap: 10px; padding: 9px 0; border-bottom: 1px dashed var(--line); }
.price-row__label { flex: 1; color: var(--ink); font-size: 0.92rem; }
.price-row__dots { flex: 0 1 auto; border-bottom: 1px dotted var(--line); align-self: flex-end; min-width: 10px; }
.price-row__price { font-weight: 700; color: var(--brown); white-space: nowrap; }
.dialog__notes { margin-top: 20px; background: var(--cream); border-radius: 16px; padding: 16px 20px; }
.dialog__notes li { font-size: 0.82rem; color: var(--brown-deep); padding-left: 18px; position: relative; margin: 4px 0; }
.dialog__notes li::before { content: "✦"; position: absolute; left: 0; color: var(--gold-deep); }
.dialog__foot { padding: 18px 32px 26px; border-top: 1px solid var(--line); display: flex; justify-content: center; }

/* Banking */
.banking-card {
  max-width: 720px; margin: 0 auto; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden;
}
.banking-card__top { background: var(--brown); color: var(--white); padding: 22px 28px; display: flex; align-items: center; gap: 14px; }
.banking-card__top i { font-size: 2rem; color: var(--gold); }
.banking-card__top h3 { font-size: 1.15rem; font-weight: 700; }
.banking-card__top p { font-size: 0.8rem; opacity: 0.85; }
.bank-list { padding: 10px 28px; }
.bank-row { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.bank-row:last-child { border-bottom: 0; }
.bank-row__label { flex: 0 0 42%; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: #948578; font-weight: 600; }
.bank-row__value { flex: 1; font-weight: 700; color: var(--espresso); font-size: 1.05rem; word-break: break-word; }
.copy-btn {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line);
  background: var(--cream-soft); color: var(--brown); border-radius: 50px; padding: 8px 14px; font-size: 0.72rem;
  font-weight: 600; cursor: pointer; transition: all .2s ease; font-family: inherit;
}
.copy-btn:hover { background: var(--brown); color: var(--white); border-color: var(--brown); }
.copy-btn.copied { background: #3f7d54; color: #fff; border-color: #3f7d54; }
.banking-card__foot { padding: 20px 28px 26px; display: flex; justify-content: center; }

/* Story */
.story-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.story-media { position: relative; }
.story-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 4/5; object-fit: cover; }
.story-media::after { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 2px solid var(--gold-deep); border-radius: var(--radius); z-index: -1; }
.story-body p { color: #5b4d41; margin-bottom: 16px; font-size: 1.02rem; }
.story-body .cursive-name { font-family: var(--font-display); font-size: 2.4rem; color: var(--brown); margin-top: 8px; }

/* Gallery */
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 36px; }
.filter-chip {
  border: 1.5px solid var(--line); background: var(--white); color: var(--brown); border-radius: 50px;
  padding: 9px 20px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; cursor: pointer;
  transition: all .25s ease; font-family: inherit; text-transform: capitalize;
}
.filter-chip:hover { border-color: var(--brown); }
.filter-chip.active { background: var(--brown); color: var(--white); border-color: var(--brown); }
.gallery-grid { columns: 4 220px; column-gap: 16px; }
.gallery-item {
  break-inside: avoid; margin-bottom: 16px; border-radius: 16px; overflow: hidden; cursor: pointer;
  position: relative; box-shadow: var(--shadow-sm); background: var(--cream);
}
.gallery-item img { width: 100%; transition: transform .5s ease; }
.gallery-item::after {
  content: "\ea4f"; font-family: 'boxicons'; position: absolute; inset: 0; display: grid; place-items: center;
  color: #fff; font-size: 1.8rem; background: rgba(46,33,26,0.0); opacity: 0; transition: all .35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; background: rgba(46,33,26,0.35); }
.gallery-empty { text-align: center; color: #9a8b7e; padding: 40px 0; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1200; background: rgba(28,20,15,0.92); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; animation: fadeIn .25s ease both; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img { max-width: 86vw; max-height: 82vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,0.12); color: #fff; font-size: 1.8rem; cursor: pointer; display: grid; place-items: center;
  transition: background .2s ease;
}
.lightbox__btn:hover { background: rgba(255,255,255,0.28); }
.lightbox__prev { left: 3vw; } .lightbox__next { right: 3vw; }
.lightbox__close { position: absolute; top: 24px; right: 28px; width: 48px; height: 48px; font-size: 1.4rem; border-radius: 50%; border: 0; background: rgba(255,255,255,0.12); color: #fff; cursor: pointer; }
.lightbox__close:hover { background: rgba(255,255,255,0.28); }
.lightbox__count { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.8); font-size: 0.85rem; letter-spacing: 0.1em; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.testi-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); position: relative; }
.testi-card::before { content: "\201C"; font-family: Georgia, serif; position: absolute; top: 6px; left: 20px; font-size: 4.5rem; color: var(--gold); line-height: 1; opacity: 0.7; }
.testi-card__stars { color: var(--gold-deep); margin-bottom: 12px; font-size: 1rem; letter-spacing: 2px; position: relative; }
.testi-card__text { color: #5b4d41; font-size: 0.96rem; font-style: italic; margin-bottom: 18px; position: relative; }
.testi-card__by { display: flex; align-items: center; gap: 12px; }
.testi-card__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--brown); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 1.1rem; }
.testi-card__name { font-weight: 700; color: var(--espresso); }
.testi-card__service { font-size: 0.76rem; color: var(--gold-deep); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

/* Booking modal */
.booking__body { padding: 26px 32px 30px; overflow-y: auto; max-height: calc(88vh - 110px); }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #948578; margin-bottom: 7px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; font-family: inherit;
  font-size: 0.95rem; color: var(--ink); background: var(--cream-soft); transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--brown); box-shadow: 0 0 0 3px rgba(117,73,43,0.12); background: #fff; }
.form-row textarea { resize: vertical; min-height: 80px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-error { color: #b3402f; font-size: 0.78rem; margin-top: 5px; display: none; }
.form-row.invalid .form-error { display: block; }
.form-row.invalid input, .form-row.invalid select { border-color: #d08b7f; }

/* Footer */
.footer { background: var(--espresso); color: #e9ddd2; padding: clamp(48px, 7vw, 80px) 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer__brand img { height: 56px; filter: brightness(0) invert(1); opacity: 0.92; margin-bottom: 16px; }
.footer__brand p { font-size: 0.9rem; color: #b7a99c; max-width: 260px; }
.footer__col h4 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer__col p, .footer__col a { font-size: 0.92rem; color: #d3c6ba; margin-bottom: 8px; display: block; transition: color .2s ease; }
.footer__col a:hover { color: #fff; }
.footer__socials { display: flex; gap: 12px; margin-top: 18px; }
.footer__socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: grid; place-items: center; font-size: 1.3rem; color: #e9ddd2; margin: 0; transition: all .25s ease; }
.footer__socials a:hover { background: var(--gold); color: var(--espresso); border-color: var(--gold); transform: translateY(-3px); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 22px 0; font-size: 0.8rem; color: #9d9085; }
.footer__bottom a { color: #c7b9ac; text-decoration: underline; }
/* hidden admin trigger — looks like a decorative dot, no affordances */
.footer__seal { cursor: default; user-select: none; opacity: 0.5; transition: opacity .2s; }

/* Toast */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--espresso); color: #fff; padding: 14px 24px; border-radius: 50px; font-size: 0.9rem; font-weight: 600;
  box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transition: all .3s ease; z-index: 1500;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Services detail page */
.page-hero { padding-top: calc(var(--header-h) + 40px); padding-bottom: 36px; text-align: center; background: var(--cream); border-radius: 0 0 clamp(40px, 12vw, 140px) 0; }
.svc-detail-list { display: grid; gap: 26px; max-width: 920px; margin: 0 auto; }
.svc-block { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 28px 30px; scroll-margin-top: calc(var(--header-h) + 20px); }
.svc-block__head { display: flex; align-items: center; gap: 18px; padding-bottom: 18px; margin-bottom: 22px; border-bottom: 2px solid var(--gold); }
.svc-block__icon { width: 58px; height: 58px; object-fit: contain; flex: 0 0 auto; }
.svc-block__name { font-family: var(--font-display); font-size: 2.4rem; color: var(--brown); line-height: 1; }
.svc-block__blurb { font-size: 0.92rem; color: #6f6155; margin-top: 4px; }
.svc-block__book { margin-left: auto; flex: 0 0 auto; padding: 12px 22px; }
.svc-jump { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 34px; }

/* Policies page */
.policy-hero { padding-top: calc(var(--header-h) + 40px); padding-bottom: 30px; text-align: center; background: var(--cream); border-radius: 0 0 clamp(40px, 12vw, 140px) 0; }
.policy-list { display: grid; gap: 22px; max-width: 860px; margin: 0 auto; }
.policy-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; box-shadow: var(--shadow-sm); }
.policy-card h3 { color: var(--brown); font-size: 1.05rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }
.policy-card li { position: relative; padding-left: 28px; margin-bottom: 12px; color: #5b4d41; }
.policy-card li::before { content: "\ec4a"; font-family: 'boxicons'; position: absolute; left: 0; top: 1px; color: var(--gold-deep); }

/* Responsive */
@media (max-width: 960px) {
  .nav__menu {
    position: fixed; top: 0; right: 0; bottom: auto; left: auto; height: 100dvh; width: min(78%, 320px);
    background: rgba(251, 243, 238, 0.95); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 20px; padding: 40px; overflow-y: auto;
    transform: translateX(100%); transition: transform .35s ease; box-shadow: var(--shadow-lg); z-index: 950;
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__menu .nav__link { font-size: 0.86rem; letter-spacing: 0.04em; font-weight: 600; color: var(--espresso); }
  .nav__toggle { display: block; z-index: 960; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; gap: 18px; min-height: auto; padding: 30px 0 50px; }
  .hero__content { margin: 0 auto; }
  .hero__actions { justify-content: center; }
  .hero__media { display: none; }
  .story-grid { grid-template-columns: 1fr; }
  .story-media { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2 150px; }
  .dialog { width: 100%; max-width: 100%; height: 100dvh; max-height: 100dvh; border-radius: 0; margin: 0; }
  .dialog__body { max-height: calc(100dvh - 200px); }
  .booking__body { max-height: calc(100dvh - 110px); }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__socials { justify-content: center; }
  .dialog__title { font-size: 2.1rem; }
  .svc-block__head { flex-wrap: wrap; }
  .svc-block__book { margin-left: 0; }
  .bank-row { flex-wrap: wrap; }
  .bank-row__label { flex-basis: 100%; }
}

/* hide scrollbar utility for menu overlay backdrop */
.nav-backdrop { position: fixed; inset: 0; background: rgba(46,33,26,0.4); z-index: 895; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.nav-backdrop.open { opacity: 1; pointer-events: auto; }

/* ===== SEO / GEO content blocks (intro answer + FAQ accordion) ===== */
.container--narrow { width: min(92%, 840px); margin-left: auto; margin-right: auto; }

.seo-intro__lead { font-size: 1.06rem; color: var(--ink); text-align: center; max-width: 760px; margin: 0 auto; }

.seo-list { display: grid; gap: 14px; margin: 28px auto 0; max-width: 840px; }
@media (min-width: 760px) { .seo-list { grid-template-columns: 1fr 1fr; } }
.seo-list li {
  position: relative; padding: 14px 16px 14px 42px;
  background: var(--cream-soft); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-sm); line-height: 1.5;
}
.seo-list li::before { content: '\2727'; position: absolute; left: 16px; top: 14px; color: var(--gold-deep); }
.seo-list a { color: var(--brown); }
.seo-list a:hover { text-decoration: underline; }

.seo-intro__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* FAQ accordion */
.faq-list { max-width: 840px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-item > summary {
  cursor: pointer; list-style: none; padding: 18px 50px 18px 20px; position: relative;
  font-weight: 600; color: var(--brown-deep);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: '\002B'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 1.3rem; color: var(--gold-deep);
}
.faq-item[open] > summary::after { content: '\2212'; }
.faq-item > p { padding: 0 20px 18px; margin: 0; color: var(--ink); }
.faq-item > p a { color: var(--brown); text-decoration: underline; }

/* Long-form service prose (e.g. hair landing page) */
.content-prose { width: min(92%, 760px); margin: 0 auto; }
.content-prose h2 { font-family: var(--font-body); font-size: 1.42rem; color: var(--brown-deep); margin: 36px 0 10px; line-height: 1.25; }
.content-prose h2:first-child { margin-top: 0; }
.content-prose p { margin-bottom: 12px; }
.content-prose ul.bullets { margin: 8px 0 16px; padding-left: 0; }
.content-prose ul.bullets li { position: relative; padding-left: 24px; margin-bottom: 8px; }
.content-prose ul.bullets li::before { content: '\2727'; position: absolute; left: 4px; color: var(--gold-deep); }
.content-prose a { color: var(--brown); text-decoration: underline; }
.price-tag { display: inline-block; font-weight: 600; color: var(--brown); background: var(--cream-soft); border: 1px solid var(--line); border-radius: 999px; padding: 2px 12px; font-size: .92rem; text-decoration: none; }
