:root {
  --bg: #fbf7f3;
  --bg-alt: #f3ebe4;
  --ink: #2a1f24;
  --muted: #6d5d64;
  --brand: #7a2e4a;
  --brand-ink: #ffffff;
  --accent: #d9896b;
  --line: #e4d7ce;
  --card: #ffffff;
  --radius: 14px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1b1417;
    --bg-alt: #231a1e;
    --ink: #f3e9ec;
    --muted: #b9a7ae;
    --brand: #d5809f;
    --brand-ink: #1b1417;
    --accent: #e3a58c;
    --line: #3a2d33;
    --card: #2a2025;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); max-width: 18ch; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
a { color: var(--brand); }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 760px; }
.section { padding: 88px 0; }
.alt { background: var(--bg-alt); }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 600; color: var(--accent); margin-bottom: .6em; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 52ch; }
.lead-sm { color: var(--muted); }
.fine { font-size: .85rem; color: var(--muted); }

/* Buttons */
.btn {
  display: inline-block; border: 2px solid var(--brand); background: var(--brand); color: var(--brand-ink);
  font: 600 1rem var(--sans); padding: 13px 24px; border-radius: 999px; cursor: pointer;
  text-decoration: none; transition: transform .15s, opacity .15s;
}
.btn:hover { transform: translateY(-1px); opacity: .92; }
.btn-ghost { background: transparent; color: var(--brand); }
.btn-sm { padding: 8px 18px; font-size: .9rem; }
.linklike { background: none; border: 0; padding: 0; font: inherit; color: var(--brand); text-decoration: underline; cursor: pointer; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 10; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 20px; }
.logo { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--ink); text-decoration: none; margin: 0; }
.logo span { color: var(--accent); font-weight: 400; margin-left: .35em; }
.logo { white-space: nowrap; }
@media (max-width: 400px) { .nav .logo span { display: none; } }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .95rem; }
.nav-links a:hover { color: var(--ink); }

/* Hero */
.hero { padding: 110px 0 96px; background:
  radial-gradient(900px 400px at 85% 10%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%),
  radial-gradient(700px 400px at 0% 100%, color-mix(in srgb, var(--brand) 14%, transparent), transparent 70%); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 36px; }
.trust { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 26px; color: var(--muted); font-size: .92rem; }
.trust li::before { content: "✓"; color: var(--brand); margin-right: 8px; font-weight: 600; }

/* About */
.about { display: grid; grid-template-columns: 340px 1fr; gap: 60px; align-items: center; }
.portrait { aspect-ratio: 4/5; border-radius: var(--radius); background: linear-gradient(160deg, var(--accent), var(--brand)); display: grid; place-items: center; color: #fff; opacity: .9; overflow: hidden; }
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.quote-card { margin: 0; opacity: 1; background: linear-gradient(160deg, #9a4a64, #7a2e4a 55%, #5e2138);
  color: #fbf7f3; place-items: center; align-content: center; gap: 28px; padding: 40px 34px; text-align: center; }
.quote-card .mark { width: 96px; height: auto; color: #fbf7f3; }
.quote-card p { font-family: var(--serif); font-size: 1.55rem; line-height: 1.35; margin: 0; }
.quote-card figcaption { font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #e8b39e; }
.creds { font-size: .92rem; color: var(--muted); border-left: 3px solid var(--accent); padding-left: 14px; }

/* Topics */
.topics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.topic { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.topic p { color: var(--muted); margin: 0; font-size: .96rem; }
.topic.specialty { border-top: 3px solid var(--brand); }
.topic .tag { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--brand); margin-bottom: .5em; }

/* Pricing cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 32px 0 18px; align-items: stretch; }
.card { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; display: flex; flex-direction: column; }
.card p { color: var(--muted); }
.card .btn { margin-top: auto; text-align: center; }
.card.featured { border: 2px solid var(--brand); box-shadow: 0 16px 40px -20px color-mix(in srgb, var(--brand) 60%, transparent); }
.badge { position: absolute; top: -13px; left: 26px; background: var(--brand); color: var(--brand-ink) !important; font-size: .75rem; font-weight: 600; padding: 3px 12px; border-radius: 999px; }
.price { font-family: var(--serif); font-size: 2rem; color: var(--ink) !important; margin-bottom: .4em; }
.price span { font-family: var(--sans); font-size: .95rem; color: var(--muted); }

/* Steps */
.steps { list-style: none; padding: 0; margin: 32px 0 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.steps span { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--brand); color: var(--brand-ink); font-weight: 600; margin-bottom: 14px; }
.steps p { color: var(--muted); font-size: .96rem; }

/* Quotes */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 32px; }
blockquote { margin: 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; font-family: var(--serif); font-size: 1.08rem; }
cite { font-family: var(--sans); font-style: normal; font-size: .88rem; color: var(--muted); }

/* Booking */
.cal-inline { margin-top: 28px; min-height: 560px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: auto; }
.cal-placeholder { padding: 60px 28px; text-align: center; color: var(--muted); }
.cal-placeholder code { background: var(--bg-alt); padding: 2px 6px; border-radius: 6px; }

/* FAQ */
details { border-bottom: 1px solid var(--line); padding: 18px 0; }
summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--brand); font-size: 1.3rem; line-height: 1; }
details[open] summary::after { content: "–"; }
details p { color: var(--muted); margin: 12px 0 0; }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 48px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-inner > div:first-child { max-width: 440px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; font-size: .95rem; }

/* Responsive */
@media (max-width: 900px) {
  .topics, .quotes { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr; max-width: 460px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr; gap: 32px; }
  .portrait { max-width: 300px; }
  .quote-card { max-width: none; aspect-ratio: auto; padding: 36px 28px; gap: 18px; }
  .quote-card p { font-size: 1.35rem; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  .section { padding: 64px 0; }
  .hero { padding: 72px 0 64px; }
  .nav-links { display: none; }
  .topics, .quotes, .steps { grid-template-columns: 1fr; }
}

/* "Add to home screen" banner */
.install-banner {
  position: fixed; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 20;
  width: min(520px, calc(100% - 32px));
  display: flex; align-items: center; gap: 12px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 12px 14px; box-shadow: 0 18px 40px -18px rgba(0,0,0,.35);
}
.install-banner[hidden], .install-banner [hidden] { display: none; }
.install-banner img { border-radius: 10px; flex: none; }
.install-banner p { margin: 0; font-size: .9rem; flex: 1; }
.install-close { background: none; border: 0; font-size: 1.4rem; line-height: 1; color: var(--muted); cursor: pointer; padding: 4px 6px; }
