/* ============================================================
   Luscious Paws — shared stylesheet
   Palette: softest blush + deep plum-mauve CTA
   Type: Cormorant Garamond (display) + Jost (body / UI)
   ============================================================ */

:root {
  /* warm neutrals */
  --cream:      #fdf7f5;
  --cream-2:    #faf1ee;
  --blush-50:   #fbeef0;
  --blush-100:  #f6e2e6;
  --paper:      #ffffff;

  /* rose accents */
  --rose:       #e9c4cb;
  --rose-soft:  #f0d5da;
  --rose-deep:  #d49aa3;

  /* deep accent (CTA / contrast) */
  --plum:       #5c3d41;
  --plum-700:   #4a2f33;
  --plum-900:   #3a2528;

  /* ink + muted text */
  --ink:        #2f2325;
  --muted:      #5f4d50;
  --muted-2:    #7a6669;
  --line:       #ecdde0;
  --line-2:     #e3d0d4;

  /* stars / rating gold */
  --gold:       #c9a24b;

  /* fonts */
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  /* shape + shadow */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 2px 10px rgba(92, 61, 65, 0.06);
  --shadow-md: 0 14px 40px -18px rgba(92, 61, 65, 0.28);
  --shadow-lg: 0 30px 70px -30px rgba(92, 61, 65, 0.40);

  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; font-size: 106.25%; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; overflow-x: hidden; max-width: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.62;
  font-size: 1.06rem;
  overflow-x: hidden;
  max-width: 100%;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }

::selection { background: var(--rose); color: var(--plum-900); }

:focus-visible {
  outline: 2.5px solid var(--plum);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section { padding-block: clamp(64px, 9vw, 128px); }

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--rose-deep);
  opacity: 0.7;
}
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--rose-deep);
  opacity: 0.7;
}

.section-head { max-width: 620px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: -0.015em;
}
.section-head .lead {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 54ch;
}
.section-head.center .lead { margin-inline: auto; }

.serif-accent { font-style: italic; color: var(--plum); font-weight: 500; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--plum);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-height: 52px;
  padding: 0 30px;
  border-radius: 100px;
  border: 1.5px solid var(--bg);
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s, box-shadow .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn:hover { background: var(--plum-700); border-color: var(--plum-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --bg: transparent;
  --fg: var(--plum);
  border-color: var(--line-2);
}
.btn--ghost:hover {
  background: var(--paper);
  border-color: var(--plum);
  color: var(--plum);
}

.btn--light {
  --bg: #fff; --fg: var(--plum);
  border-color: #fff;
}
.btn--light:hover { background: var(--blush-50); border-color: var(--blush-50); color: var(--plum-900); }

.btn--sm { min-height: 44px; padding: 0 22px; font-size: 0.78rem; }
.btn--block { width: 100%; }

.btn .ic { width: 17px; height: 17px; }

/* ---------- image slot styling ---------- */
.media {
  --slot-bg: repeating-linear-gradient(135deg, var(--blush-100) 0 14px, var(--blush-50) 14px 28px);
  background: var(--blush-100);
  display: block;
  position: relative;
  font-family: var(--sans);
}
.media::part(placeholder),
.media .is-placeholder {
  font-family: var(--sans);
  letter-spacing: 0.04em;
}

/* a labeled frame ring around photo slots */
.photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.photo .media { width: 100%; height: 100%; }
.photo .tag {
  position: absolute;
  left: 14px; bottom: 14px;
  z-index: 3;
  pointer-events: none;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plum);
  background: rgba(255,255,255,0.86);
  padding: 6px 11px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  font-weight: 500;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -24px rgba(92,61,65,.5);
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-right: auto;
}
.brand__logo {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  border: 1.5px solid var(--rose);
  box-shadow: var(--shadow-sm);
}
.brand__logo .media { width: 100%; height: 100%; }
.brand__name {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--plum);
}
.brand__name small {
  display: block;
  font-family: var(--sans);
  font-size: 0.54rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
  margin-top: 3px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  font-weight: 400;
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--plum);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line-2);
  background: var(--paper);
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  width: 20px; height: 1.6px; background: var(--plum);
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* mobile menu drawer */
.mobile-menu {
  position: fixed;
  inset: 78px 0 auto 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 14px var(--gut) 28px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s, opacity .3s;
  z-index: 55;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu a {
  display: block;
  padding: 15px 6px;
  font-size: 1.18rem;
  font-family: var(--display);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.mobile-menu .btn { margin-top: 20px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(48px, 6vw, 88px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -22%; right: -8%;
  width: 46vw; height: 46vw;
  max-width: 620px; max-height: 620px;
  background: radial-gradient(circle at 50% 50%, var(--rose-soft), transparent 68%);
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.hero__copy { max-width: 600px; }
.hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--plum); }
.hero__sub {
  margin-top: 24px;
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 46ch;
}
.hero__sub strong { color: var(--plum); font-weight: 500; }
.hero__actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: visible;
}
.hero__photo .photo {
  border-radius: var(--r-xl);
  height: 100%;
}
.hero__photo .photo .media { aspect-ratio: 4/5; }
.hero__badge {
  position: absolute;
  z-index: 4;
  left: -28px; bottom: 36px;
  background: var(--paper);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 230px;
}
.hero__badge .num {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--plum);
  line-height: 1;
}
.hero__badge .lab {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  line-height: 1.3;
}

/* ---------- trust bar ---------- */
.trustbar {
  background: var(--plum);
  color: #fff;
}
.trustbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 40px;
  padding-block: 22px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}
.trust-item .ic { width: 19px; height: 19px; color: var(--rose); flex: none; }
.trust-item strong { font-weight: 500; }
.trust-sep { width: 1px; height: 22px; background: rgba(255,255,255,0.2); }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars .ic { width: 16px; height: 16px; }
@media (max-width: 720px){ .trust-sep { display: none; } }

/* ---------- services ---------- */
.services { background: var(--cream); }
.svc-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.svc-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.svc-card__media { aspect-ratio: 1/1; position: relative; }
.svc-card__media .media { width: 100%; height: 100%; }
.svc-card__body { padding: 24px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.svc-card h3 { font-size: 1.62rem; }
.svc-card__price {
  margin-top: 10px;
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-family: var(--sans);
}
.svc-card__price .from { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); }
.price-slot {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--plum);
  border-bottom: 1.5px dashed var(--rose-deep);
  padding-bottom: 1px;
  cursor: text;
  white-space: nowrap;
}
.svc-card__desc { margin-top: 14px; color: var(--muted); font-size: 0.96rem; flex: 1; }
.svc-card__incl {
  margin: 16px 0 22px; padding: 0; list-style: none;
  display: flex; flex-wrap: wrap; gap: 7px;
}
.svc-card__incl li {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--plum);
  background: var(--blush-50);
  border-radius: 100px;
  padding: 5px 11px;
  white-space: nowrap;
}
.svc-card .btn { margin-top: auto; }

/* ---------- about ---------- */
.about { background: var(--blush-50); }
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.about__photo { position: relative; }
.about__photo .photo { aspect-ratio: 4/5; border-radius: var(--r-xl); }
.about__photo .photo .media { aspect-ratio: 4/5; }
.about__photo .signature {
  position: absolute;
  right: -10px; bottom: -22px;
  background: var(--paper);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about__photo .signature .nm { font-family: var(--display); font-style: italic; font-size: 1.5rem; color: var(--plum); line-height: 1; }
.about__photo .signature .ro { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
.about__body h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.about__body p { margin-top: 20px; color: var(--ink); opacity: 0.84; }
.about__creds {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 26px;
  padding: 0; list-style: none;
}
.about__creds li { display: flex; gap: 12px; align-items: flex-start; }
.about__creds .ic { width: 22px; height: 22px; color: var(--plum); flex: none; margin-top: 2px; }
.about__creds b { display: block; font-weight: 500; font-family: var(--display); font-size: 1.18rem; color: var(--ink); }
.about__creds span { font-size: 0.85rem; color: var(--muted); }

/* ---------- reviews ---------- */
.reviews { background: var(--cream); }
.reviews__top {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.gscore {
  display: flex; align-items: center; gap: 16px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 16px 22px;
}
.gscore__num { font-family: var(--display); font-size: 2.8rem; font-weight: 600; color: var(--plum); line-height: 1; }
.gscore__g { display:flex; align-items:center; gap:8px; font-size:0.8rem; color: var(--muted); }
.gscore__g svg { width: 18px; height: 18px; }
.review-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex; flex-direction: column;
  position: relative;
}
.review-card .stars { margin-bottom: 14px; }
.review-card__text { color: var(--ink); opacity: 0.86; font-size: 1rem; flex: 1; }
.review-card__who { margin-top: 22px; display: flex; align-items: center; gap: 13px; }
.review-card__av {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--rose-soft); color: var(--plum);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 600; font-size: 1.1rem;
  flex: none;
}
.review-card__nm { font-weight: 500; font-size: 0.92rem; }
.review-card__date { font-size: 0.76rem; color: var(--muted-2); }

/* embed placeholder shared style */
.embed-slot {
  border: 1.5px dashed var(--line-2);
  border-radius: var(--r-md);
  background:
    repeating-linear-gradient(135deg, var(--cream-2) 0 16px, var(--blush-50) 16px 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 28px;
  color: var(--muted);
}
.embed-slot .tagline {
  font-family: monospace;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--plum);
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 7px 12px;
}
.embed-slot .hint { font-size: 0.84rem; max-width: 46ch; }
.embed-note {
  margin-top: 14px;
  font-family: monospace;
  font-size: 0.72rem;
  color: var(--muted-2);
  text-align: center;
}

/* ---------- instagram ---------- */
.insta { background: var(--blush-50); }
.insta__head { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.insta__handle { display: inline-flex; align-items: center; gap: 11px; font-size: 1.05rem; color: var(--plum); font-weight: 500; }
.insta__handle .ic { width: 24px; height: 24px; }
.insta-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.insta-grid .media { width: 100%; aspect-ratio: 1; border-radius: var(--r-sm); }
.insta-cap {
  margin-top: 22px;
  text-align: center;
  font-family: monospace;
  font-size: 0.72rem;
  color: var(--muted-2);
}

/* ---------- booking band ---------- */
.book-band { background: var(--plum); color: #fff; position: relative; overflow: hidden; }
.book-band::before {
  content:""; position:absolute; top:-30%; left:-6%;
  width: 38vw; height: 38vw; max-width: 480px; max-height: 480px;
  background: radial-gradient(circle, rgba(233,196,203,0.25), transparent 70%);
  pointer-events: none;
}
.book-band .section-head h2 { color: #fff; }
.book-band .eyebrow { color: var(--rose); }
.book-band .eyebrow::before, .book-band .eyebrow.center::after { background: var(--rose); }
.book-band .lead { color: rgba(255,255,255,0.78); }
.book-frame {
  margin-top: 44px;
  background: var(--paper);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.book-frame__bar {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.book-frame__bar .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--rose); }
.book-frame__bar .ttl { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-left: 6px; }
/* responsive moego container */
.moego-embed {
  position: relative;
  width: 100%;
  min-height: 640px;
  height: clamp(640px, 78vh, 920px);
}
.moego-embed iframe,
.moego-embed .embed-slot {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
@media (max-width: 640px){
  /* keep a real, tall height on phones so the MoeGo iframe fills it (it's position:absolute) */
  .moego-embed { height: 85vh; min-height: 680px; }
  .moego-embed .embed-slot { position: static; min-height: 560px; }
  /* hide "· Est. 2023" on phones per owner request */
  .eyebrow .est { display: none; }
}

/* ---------- contact / hours / map ---------- */
.contact { background: var(--cream); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}
.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 30px 34px;
}
.info-card + .info-card { margin-top: 22px; }
.info-card h3 { font-size: 1.7rem; margin-bottom: 18px; }
.nap-row { display: flex; gap: 14px; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid var(--line); }
.nap-row:last-child { border-bottom: 0; }
.nap-row .ic { width: 20px; height: 20px; color: var(--plum); flex: none; margin-top: 3px; }
.nap-row a, .nap-row span { font-size: 0.98rem; color: var(--ink); }
.nap-row a:hover { color: var(--plum); text-decoration: underline; }
.nap-row .lbl { display: block; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 3px; }

.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 0.96rem; }
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { color: var(--ink); }
.hours-list .time { color: var(--muted); font-variant-numeric: tabular-nums; }
.hours-list li.today { font-weight: 500; }
.hours-list li.today .day::after {
  content: "Today"; margin-left: 10px;
  font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--plum); background: var(--blush-50); padding: 3px 9px; border-radius: 100px; vertical-align: middle;
}
.hours-list .time.open { color: #2f7d52; font-weight: 500; }

.map-slot { margin-top: 22px; border-radius: var(--r-lg); overflow: hidden; height: 280px; }
.map-slot .embed-slot { height: 100%; border-radius: var(--r-lg); }

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-list details {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  margin-bottom: 14px; padding: 0 22px; transition: border-color .25s, box-shadow .25s;
}
.faq-list details[open] { border-color: var(--rose); box-shadow: var(--shadow-sm); }
.faq-list summary {
  list-style: none; cursor: pointer; padding: 20px 0; position: relative; padding-right: 36px;
  font-family: var(--display); font-size: 1.3rem; font-weight: 600; color: var(--plum); line-height: 1.3;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 1.6rem; font-weight: 300; color: var(--rose-deep); transition: transform .25s;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-a { padding: 0 0 22px; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.faq-a a { color: var(--plum); text-decoration: underline; }

/* contact form */
.cform { display: grid; gap: 16px; }
.cform .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  padding: 14px 16px;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-sm);
  background: var(--paper);
  color: var(--ink);
  min-height: 52px;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(92,61,65,0.12);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0566a; }
.field .err { font-size: 0.74rem; color: #c0566a; min-height: 1em; display: none; letter-spacing: 0.01em; text-transform: none; }
.field.invalid .err { display: block; }
.form-success {
  display: none;
  background: var(--blush-50);
  border: 1px solid var(--rose);
  border-radius: var(--r-md);
  padding: 18px 22px;
  color: var(--plum);
  font-size: 0.96rem;
  align-items: center;
  gap: 12px;
}
.form-success.show { display: flex; }

/* ---------- footer ---------- */
.site-footer { background: var(--plum-900); color: rgba(255,255,255,0.8); padding-block: 64px 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; margin-bottom: 18px; }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { margin-top: 16px; font-size: 0.92rem; max-width: 32ch; color: rgba(255,255,255,0.65); }
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: 11px; font-size: 0.92rem; }
.footer-list a:hover { color: var(--rose); }
.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: grid; place-items: center;
  transition: background .25s, border-color .25s, transform .25s;
}
.footer-social a:hover { background: rgba(255,255,255,0.1); border-color: var(--rose); transform: translateY(-2px); }
.footer-social .ic { width: 18px; height: 18px; color: #fff; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
}
.footer-bottom a:hover { color: var(--rose); }

/* ---------- sticky mobile bottom bar ---------- */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: none;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 8px;
  padding: 12px var(--gut) calc(12px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.mobile-bar .btn { min-height: 50px; width: 100%; padding: 0 8px; font-size: 0.74rem; letter-spacing: 0.05em; gap: 7px; }
.mobile-bar .btn .ic { width: 15px; height: 15px; }

/* text-to-book link (hero) */
.text-book-link { margin-top: 18px; }
.text-book-link a { display: inline-flex; align-items: center; gap: 9px; font-size: 0.94rem; color: var(--muted); }
.text-book-link a strong { color: var(--plum); font-weight: 500; border-bottom: 1.5px solid var(--rose-deep); padding-bottom: 1px; transition: border-color .2s; }
.text-book-link a:hover strong { border-color: var(--plum); }
.text-book-link .ic { width: 18px; height: 18px; color: var(--plum); flex: none; }
.text-book-link .ar { width: 14px; height: 14px; color: var(--rose-deep); }

/* alternate booking quick-actions (on plum band) */
.book-alt { margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.book-alt__label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px){
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 920px){
  .nav__links { display: none; }
  .nav__cta .btn--ghost { display: none; }
  .hamburger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__photo { max-width: 460px; margin-inline: auto; width: 100%; }
  .hero__badge { left: 10px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 420px; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px){
  body { font-size: 1rem; }
  .nav { min-height: 66px; }
  .mobile-menu { inset-block-start: 66px; }
  .svc-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .cform .row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 84px; }
  .hero__badge { position: static; margin-top: 18px; max-width: none; box-shadow: var(--shadow-sm); }
  .about__photo .signature { right: 10px; }
  .section { padding-block: clamp(52px, 12vw, 80px); }
}

@media (max-width: 380px){
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ---------- real images + styled placeholders (replaces artifact image-slot) ---------- */
img.media{object-fit:cover;display:block;width:100%;height:100%}
.img-ph{
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;
  background:repeating-linear-gradient(135deg,var(--blush-100) 0 14px,var(--blush-50) 14px 28px);
  color:var(--rose-deep);font-family:var(--sans);font-size:.66rem;font-weight:500;
  letter-spacing:.16em;text-transform:uppercase;text-align:center;padding:12px;
}
.img-ph svg{width:30px;height:30px;color:var(--rose-deep);opacity:.8}
