:root {
  --cream: #fff8f4;
  --blush: #f7e9ef;
  --rose: #d4789a;
  --rose-deep: #b85a7c;
  --lilac: #c9b6d8;
  --ink: #2a2430;
  --muted: #6f6474;
  --line: rgba(42, 36, 48, 0.1);
  --card: rgba(255, 255, 255, 0.78);
  --shadow: 0 18px 50px rgba(184, 90, 124, 0.14);
  --radius: 22px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --sticky-h: 68px;
  --max: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, #f3d6e4 0%, transparent 55%),
    radial-gradient(900px 500px at 100% 0%, #e8ddf3 0%, transparent 50%),
    var(--cream);
  line-height: 1.55;
  padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px) + 12px);
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--rose-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }
button, input, select, textarea { font: inherit; }
.wrap { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.skip {
  position: absolute; left: -999px; top: 0; background: #fff; padding: .75rem 1rem; z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }

.eyebrow {
  margin: 0 0 .55rem;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 600;
}
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .75rem;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.1rem, 6vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h3 { font-size: 1.2rem; }
.lede, .section-lede, p { color: var(--muted); }
.lede { font-size: 1.08rem; max-width: 36rem; }

/* Buttons */
.btn, .pill {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover, .pill:hover { transform: translateY(-1px); }
.btn { padding: .85rem 1.25rem; }
.btn-lg { padding: 1rem 1.4rem; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-rose, .pill-rose {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  box-shadow: 0 10px 28px rgba(184, 90, 124, 0.28);
}
.btn-rose:hover, .pill-rose:hover { color: #fff; }
.btn-cream {
  background: rgba(255,255,255,.82);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.pill { padding: .55rem 1rem; font-size: .92rem; }
.pill-ghost {
  background: rgba(255,255,255,.55);
  color: var(--ink);
  border: 1px solid var(--line);
}
.center-cta { text-align: center; margin-top: 1.75rem; }
.text-link {
  font-weight: 600;
  color: var(--rose-deep);
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(255, 248, 244, 0.82);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(145deg, #f3d0df, #d9c6ea);
  color: var(--rose-deep);
  font-size: 1rem;
  flex: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
}
.brand-text em {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--muted);
  font-size: .86rem;
}
.nav-desk { display: none; gap: 1rem; margin-left: auto; }
.nav-desk a {
  text-decoration: none;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 500;
}
.nav-desk a:hover { color: var(--ink); }
.top-actions { display: flex; gap: .45rem; margin-left: auto; }

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 2.5rem 0 3rem;
}
.hero-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: 1.15fr .85fr;
  gap: .45rem;
  padding: .45rem;
  opacity: .95;
}
.hero-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.hero-mosaic img:nth-child(1) { grid-row: 1 / 3; }
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,248,244,.2) 0%, rgba(255,248,244,.55) 42%, rgba(255,248,244,.94) 78%, var(--cream) 100%),
    linear-gradient(90deg, rgba(255,248,244,.72), transparent 55%);
}
.hero-copy { position: relative; z-index: 1; max-width: 38rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .65rem; margin: 1.25rem 0 .85rem; }
.hero-note {
  font-size: .92rem;
  max-width: 34rem;
  background: rgba(255,255,255,.65);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .7rem .9rem;
}

/* Strip */
.strip { margin-top: -.5rem; }
.strip-grid {
  display: grid;
  gap: .75rem;
}
.strip-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  display: grid;
  gap: .2rem;
}
.strip-k {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 600;
}
.strip-v { font-weight: 600; color: var(--ink); }

/* Sections */
.section { padding: 4rem 0; }
.section-head { max-width: 38rem; margin-bottom: 1.75rem; }
.about-grid, .visit-grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
.about-points {
  margin: 1.1rem 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .55rem;
}
.about-points li {
  padding: .7rem .9rem;
  border-radius: 14px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  font-weight: 500;
}
.about-frame {
  margin: 0;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  border: 1px solid var(--line);
}
.about-frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-frame figcaption {
  padding: .7rem 1rem .9rem;
  font-size: .88rem;
  color: var(--muted);
}

.svc-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.svc-card {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.svc-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.svc-card h3, .svc-card p { padding-inline: 1rem; }
.svc-card h3 { margin-top: 1rem; }
.svc-card p { margin: 0 0 1.15rem; }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .55rem;
}
.ig-grid a {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
}
.ig-grid img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform .35s ease;
}
.ig-grid a:hover img { transform: scale(1.04); }

.hours-card {
  background:
    linear-gradient(160deg, rgba(255,255,255,.9), rgba(247,233,239,.85));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.6rem 1.25rem 1.35rem;
  box-shadow: var(--shadow);
}
.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem .95rem;
  border-radius: 14px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  font-size: .96rem;
}
.hours-list span { color: var(--muted); }
.hours-list strong { color: var(--ink); font-weight: 650; text-align: right; }
.hours-list .is-closed {
  background: rgba(201, 182, 216, 0.22);
}
.hours-list .is-closed strong { color: var(--rose-deep); }

.visit-lines { line-height: 1.9; font-weight: 560; }
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 280px;
  background: #eee;
}
.map-frame iframe { width: 100%; height: 320px; border: 0; }

.site-footer {
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .94rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-inner strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: .25rem;
}
.footer-inner p { margin: .15rem 0; }
.credit {
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #8a7f90;
}

/* Sticky Call + Book */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: .55rem;
  padding: .65rem .75rem calc(.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 248, 244, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(42, 36, 48, 0.08);
}
.sticky-call, .sticky-book {
  border-radius: 16px;
  border: 0;
  min-height: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 650;
  cursor: pointer;
}
.sticky-call {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.sticky-call span { font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.sticky-call strong { font-size: .95rem; }
.sticky-book {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(184, 90, 124, 0.28);
}

/* Book modal */
body.book-open { overflow: hidden; }
.book-modal[hidden] { display: none !important; }
.book-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: end center;
}
.book-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 36, 48, 0.42);
}
.book-panel {
  position: relative;
  width: min(100%, 520px);
  max-height: min(92vh, 760px);
  overflow: auto;
  background: linear-gradient(180deg, #fffaf8, #f7e9ef);
  border-radius: 28px 28px 0 0;
  padding: 1.35rem 1.2rem 1.6rem;
  box-shadow: 0 -20px 60px rgba(42, 36, 48, 0.25);
}
.book-x {
  position: absolute;
  top: .7rem; right: .85rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}
.book-lead { margin-top: 0; }
#book-form {
  display: grid;
  gap: .85rem;
  margin-top: 1rem;
}
#book-form label { display: grid; gap: .35rem; font-weight: 560; }
#book-form label span { font-size: .9rem; }
#book-form input,
#book-form select,
#book-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .8rem .9rem;
  background: #fff;
  color: var(--ink);
}
#book-form .is-invalid input,
#book-form .is-invalid select {
  border-color: #c45a7a;
  box-shadow: 0 0 0 3px rgba(196, 90, 122, 0.15);
}
.err { color: #b23b5c; min-height: 1em; font-weight: 500; }
.book-row {
  display: grid;
  gap: .75rem;
  grid-template-columns: 1fr 1fr;
}
.book-fallback {
  text-align: center;
  font-size: .92rem;
  margin: .25rem 0 0;
}
#book-thanks { display: grid; gap: .85rem; }
#book-thanks[hidden] { display: none !important; }
#thanks-body { color: var(--muted); }

@media (min-width: 720px) {
  .strip-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-grid { grid-template-columns: repeat(3, 1fr); gap: .75rem; }
  .about-grid, .visit-grid { grid-template-columns: 1.1fr .9fr; gap: 2.5rem; }
  .hours-card { padding: 2rem 2rem 1.6rem; }
  .book-modal { place-items: center; }
  .book-panel {
    border-radius: 28px;
    padding: 1.75rem 1.6rem 1.8rem;
  }
}

@media (min-width: 960px) {
  .nav-desk { display: flex; }
  .top-actions { margin-left: 0; }
  .hero-mosaic {
    grid-template-columns: .9fr .7fr .7fr;
    grid-template-rows: 1fr 1fr;
    gap: .65rem;
    padding: 1rem 8% 1rem 42%;
  }
  .hero-mosaic img:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
  .hero-mosaic img:nth-child(2) { grid-column: 2; grid-row: 1; }
  .hero-mosaic img:nth-child(3) { grid-column: 3; grid-row: 1; }
  .hero-mosaic img:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }
  .svc-grid { grid-template-columns: repeat(4, 1fr); }
  .sticky-cta {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(520px, calc(100% - 2rem));
    border-radius: 22px 22px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .pill, .ig-grid img { transition: none; }
}
