@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Karla:wght@400;500;700&display=swap');

:root {
  --cream: #FBF3EF;
  --cream-alt: #F5E9E2;
  --rose: #C17A94;
  --rose-dark: #A85E78;
  --sage: #8FA07E;
  --ink: #3D3330;
  --ink-muted: #8B7A74;
  --border: #EAD9D2;
  --max-w: 740px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Karla', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--rose-dark); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--rose-dark); outline-offset: 3px; }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 22px; }

/* ---------- Header ---------- */
header.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.3em;
  color: var(--rose-dark);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.logo span { color: var(--sage); }
nav.primary-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.92em;
}
nav.primary-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}
nav.primary-nav a:hover { color: var(--rose-dark); }
.btn-book {
  background: var(--rose);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9em;
}
.btn-book:hover { background: var(--rose-dark); }

/* ---------- Hero / signature pulse ---------- */
.hero { padding: 56px 0 8px; }
.eyebrow {
  font-family: 'Karla', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74em;
  color: var(--sage);
  font-weight: 700;
  margin: 0 0 10px;
}
h1 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 2.5em;
  line-height: 1.12;
  margin: 0 0 18px;
  color: var(--ink);
}
.pulse-divider {
  width: 100%;
  max-width: 260px;
  height: 28px;
  margin: 4px 0 26px;
  display: block;
}
.pulse-divider path {
  fill: none;
  stroke: var(--rose);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lede {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.18em;
  color: #5c4d47;
  font-weight: 400;
  margin: 0 0 8px;
}

/* ---------- Content ---------- */
main { padding-bottom: 60px; }
h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.5em;
  color: var(--rose-dark);
  margin: 2.1em 0 0.6em;
}
p { margin: 0.9em 0; }
ul.check-list { list-style: none; padding: 0; margin: 1em 0; }
ul.check-list li {
  padding-left: 1.6em;
  position: relative;
  margin-bottom: 0.65em;
}
ul.check-list li::before {
  content: "✦";
  color: var(--sage);
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 0.9em;
}
strong { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 12px;
}
.faq-item p.q {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.04em;
  margin: 0 0 8px;
  color: var(--ink);
}
.faq-item p.a { margin: 0; color: #574a45; }

/* ---------- CTA block ---------- */
.cta-block {
  background: var(--cream-alt);
  border-radius: 18px;
  padding: 30px 28px;
  text-align: center;
  margin: 46px 0 40px;
}
.cta-block h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.35em;
  margin: 0 0 6px;
  color: var(--ink);
}
.cta-block p { margin: 0 0 18px; color: var(--ink-muted); }
.cta-block .btn-book { padding: 13px 30px; font-size: 1em; }

/* ---------- Related links ---------- */
.related {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  margin-top: 30px;
  font-size: 0.97em;
  color: #5c4d47;
}
.related a { font-weight: 700; }

.disclaimer {
  font-size: 0.86em;
  color: var(--ink-muted);
  font-style: italic;
  margin-top: 30px;
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: #33241f;
  color: #f1e3dc;
  padding: 42px 0 30px;
  margin-top: 40px;
}
footer.site-footer .wrap {
  max-width: 980px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
footer.site-footer h4 {
  font-family: 'Fraunces', serif;
  font-size: 1em;
  color: #f6c9d6;
  margin: 0 0 10px;
}
footer.site-footer a { color: #f1e3dc; text-decoration: none; }
footer.site-footer a:hover { text-decoration: underline; }
footer.site-footer .col { min-width: 200px; }
footer.site-footer p { margin: 0 0 6px; font-size: 0.92em; color: #d9c3ba; }
.foot-bottom {
  max-width: 980px;
  margin: 30px auto 0;
  padding: 18px 22px 0;
  border-top: 1px solid #4a3830;
  font-size: 0.8em;
  color: #b89a90;
}

@media (max-width: 640px) {
  h1 { font-size: 1.9em; }
  .hero { padding: 38px 0 6px; }
  .header-inner { gap: 10px; }
  nav.primary-nav { gap: 12px; font-size: 0.86em; }
}

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