:root {
  --ink: #191518;
  --ink-soft: #4f484c;
  --paper: #fffaf8;
  --paper-deep: #f6ebe8;
  --rose: #c89586;
  --rose-dark: #9f6f63;
  --blush: #eedbd6;
  --white: #ffffff;
  --line: rgba(25, 21, 24, 0.13);
  --shadow: 0 24px 70px rgba(52, 34, 40, 0.13);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 9999;
  background: var(--ink);
  color: var(--white);
  padding: .8rem 1rem;
  border-radius: 999px;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.section { padding: 6.5rem 0; }
.section-tight { padding: 4.2rem 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1rem;
  color: var(--rose-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.display {
  margin: 0;
  max-width: 920px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 7vw, 6.6rem);
  line-height: .95;
  font-weight: 400;
  letter-spacing: -.055em;
}
.h1 { font-size: clamp(2.6rem, 5.5vw, 5.4rem); }
.h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 4.4rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -.045em;
}
.h3 { margin: 0; font-size: 1.25rem; line-height: 1.25; }
.lead { margin: 1.4rem 0 0; color: var(--ink-soft); font-size: clamp(1.04rem, 2vw, 1.28rem); max-width: 700px; }
.muted { color: var(--ink-soft); }
.kicker { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; color: var(--rose-dark); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--paper) 91%, transparent);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 14px 40px rgba(45, 29, 34, .08); border-color: var(--line); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 255px; height: auto; }
.nav { display: flex; align-items: center; gap: clamp(.75rem, 2vw, 1.65rem); }
.nav a { position: relative; padding: .65rem 0; font-size: .94rem; font-weight: 700; color: #443d41; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: .3rem; height: 1px; background: var(--rose-dark); transition: right .22s ease; }
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: .7rem; }
.menu-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { display: block; width: 20px; height: 1.5px; background: var(--ink); margin: 4px auto; transition: .2s ease; }
.menu-toggle::before, .menu-toggle::after { content: ""; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 50px;
  padding: .85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: #342d31; }
.btn-rose { background: var(--rose); color: #1b1416; }
.btn-outline { border-color: var(--line); background: rgba(255,255,255,.6); }
.btn-white { background: var(--white); color: var(--ink); }
.btn-link { min-height: auto; padding: 0; border-radius: 0; border-bottom: 1px solid var(--ink); }
.icon-circle { width: 30px; height: 30px; border: 1px solid currentColor; border-radius: 50%; display: inline-grid; place-items: center; font-size: .85rem; }

.hero { overflow: hidden; padding: 2rem 0 5rem; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2rem, 5vw, 5.5rem); align-items: center; }
.hero-copy { padding: 3rem 0; position: relative; }
.hero-copy::before { content: ""; position: absolute; width: 150px; height: 150px; border: 1px solid var(--rose); border-radius: 50%; opacity: .26; right: 4%; top: 1%; }
.hero-copy .display em { color: var(--rose-dark); font-style: italic; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: .7rem 1.2rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .92rem; }
.hero-trust span::before { content: "✦"; color: var(--rose-dark); margin-right: .45rem; }
.hero-media { position: relative; min-height: 660px; }
.hero-photo { width: 100%; height: 660px; object-fit: cover; object-position: 53% 28%; border-radius: 200px 200px 30px 30px; box-shadow: var(--shadow); }
.hero-caption { position: absolute; left: -2rem; bottom: 2rem; width: min(320px, 76%); padding: 1.25rem; border-radius: 22px; background: rgba(255,250,248,.93); border: 1px solid rgba(255,255,255,.8); box-shadow: 0 18px 45px rgba(50,30,37,.14); backdrop-filter: blur(14px); }
.hero-caption strong { display: block; font-family: Georgia, serif; font-size: 1.4rem; font-weight: 400; }
.hero-caption span { color: var(--ink-soft); font-size: .9rem; }

.marquee { border-block: 1px solid var(--line); overflow: hidden; background: #fff; }
.marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee span { padding: 1rem 1.5rem; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; white-space: nowrap; }
.marquee span::after { content: "•"; color: var(--rose); padding-left: 3rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.4rem, 7vw, 7rem); align-items: start; }
.quote-block { margin-top: 2rem; padding-left: 1.4rem; border-left: 2px solid var(--rose); font-family: Georgia, serif; font-size: 1.4rem; font-style: italic; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.4rem; }
.stat { padding: 1.3rem; border-top: 1px solid var(--ink); }
.stat strong { display: block; font-family: Georgia, serif; font-size: 2.1rem; font-weight: 400; }
.stat span { color: var(--ink-soft); font-size: .88rem; }

.treatment-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.treatment-card { position: relative; min-height: 260px; padding: 1.6rem; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.6); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.treatment-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(55,35,41,.09); background: var(--white); }
.treatment-mark { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--paper-deep); color: var(--rose-dark); font-family: Georgia, serif; font-size: 1.08rem; }
.treatment-card h3 { margin-top: 2.2rem; font-family: Georgia, serif; font-size: 1.55rem; font-weight: 400; }
.treatment-card p { color: var(--ink-soft); margin-bottom: 0; }
.treatment-card .arrow { position: absolute; right: 1.4rem; top: 1.45rem; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; }
.treatment-card[hidden] { display: none; }
.filter-bar { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 2rem; }
.filter-btn { border: 1px solid var(--line); border-radius: 999px; padding: .65rem 1rem; background: transparent; font-weight: 750; }
.filter-btn.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }

.feature-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; background: var(--ink); color: var(--white); }
.feature-image { min-height: 680px; background: url('../images/heidi-face.webp') center 25%/cover no-repeat; }
.feature-copy { padding: clamp(3rem, 8vw, 7rem); display: flex; flex-direction: column; justify-content: center; }
.feature-copy .eyebrow { color: #e5b7aa; }
.feature-copy p { color: rgba(255,255,255,.72); max-width: 560px; }
.signature { margin-top: 2.2rem; font-family: "Segoe Script", "Bradley Hand", cursive; font-size: 1.8rem; color: #eedbd6; transform: rotate(-3deg); }

.finder { background: linear-gradient(145deg, var(--paper-deep), #fff); border-block: 1px solid var(--line); }
.finder-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: center; }
.finder-card { padding: 2rem; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.7); }
.goal-list { display: grid; gap: .8rem; }
.goal-option { display: flex; align-items: center; gap: .85rem; padding: 1rem; border: 1px solid var(--line); border-radius: 18px; cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.goal-option:hover, .goal-option:has(input:checked) { border-color: var(--rose); background: var(--paper-deep); }
.goal-option input { accent-color: var(--rose-dark); }
.finder-result { min-height: 110px; margin-top: 1rem; padding: 1rem 1.1rem; border-radius: 16px; background: #211d20; color: #fff; }
.finder-result strong { color: #efc7bc; }

.location-card { display: grid; grid-template-columns: 1.1fr .9fr; border-radius: var(--radius); overflow: hidden; background: #211d20; color: #fff; box-shadow: var(--shadow); }
.location-copy { padding: clamp(2rem, 5vw, 4rem); }
.location-copy p { color: rgba(255,255,255,.72); }
.location-art { min-height: 420px; position: relative; background: radial-gradient(circle at 20% 20%, #dcb3a7, transparent 34%), linear-gradient(145deg, #684a51, #171416); overflow: hidden; }
.location-art::before, .location-art::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; }
.location-art::before { width: 330px; height: 330px; right: -90px; top: -80px; }
.location-art::after { width: 220px; height: 220px; left: 35px; bottom: -90px; }
.map-pin { position: absolute; inset: 0; display: grid; place-items: center; font-family: Georgia, serif; text-align: center; }
.map-pin .pin { width: 84px; height: 84px; display: grid; place-items: center; margin: 0 auto 1rem; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: var(--paper); color: var(--ink); font-size: 2rem; }
.map-pin .pin span { transform: rotate(45deg); }

.page-hero { padding: 6rem 0 4.5rem; border-bottom: 1px solid var(--line); background: linear-gradient(160deg, #fffaf8 20%, #f5e7e3 100%); }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: end; }
.page-hero-note { padding: 1.6rem; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.55); }

.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.prose h2, .prose h3 { font-family: Georgia, serif; font-weight: 400; }
.prose h2 { font-size: 2.3rem; margin-top: 0; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.2rem; }
.poster-frame { padding: .8rem; border: 1px solid var(--line); border-radius: 30px; background: #fff; box-shadow: var(--shadow); }
.poster-frame img { border-radius: 22px; }

.faq-list { display: grid; gap: .8rem; margin-top: 2rem; }
.faq-item { border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.62); overflow: hidden; }
.faq-question { width: 100%; border: 0; background: transparent; padding: 1.25rem 1.35rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; font-weight: 800; color: var(--ink); }
.faq-question span:last-child { font-size: 1.3rem; transition: transform .2s ease; }
.faq-item.is-open .faq-question span:last-child { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { padding: 0 1.35rem 1.25rem; margin: 0; color: var(--ink-soft); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 2rem; }
.contact-panel { padding: 2rem; border-radius: var(--radius); background: var(--ink); color: #fff; }
.contact-panel p { color: rgba(255,255,255,.72); }
.contact-list { display: grid; gap: 1rem; margin: 2rem 0; }
.contact-item { display: grid; grid-template-columns: 46px 1fr; gap: .8rem; align-items: start; }
.contact-item .symbol { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.1); }
.form-card { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .45rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: .9rem 1rem; background: #fffdfa; color: var(--ink); outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--rose-dark); box-shadow: 0 0 0 3px rgba(200,149,134,.14); }
.field textarea { min-height: 140px; resize: vertical; }
.form-status { margin-top: .8rem; min-height: 1.5rem; color: var(--rose-dark); font-weight: 700; }

.notice { padding: 1rem 1.2rem; border-left: 3px solid var(--rose); background: var(--paper-deep); color: var(--ink-soft); }
.legal { max-width: 850px; }
.legal h2 { font-family: Georgia, serif; font-size: 2rem; font-weight: 400; margin-top: 2.8rem; }
.legal p, .legal li { color: var(--ink-soft); }

.cta-band { padding: 4.5rem 0; background: var(--blush); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-inner h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 4rem); font-weight: 400; line-height: 1; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.site-footer { background: #171416; color: #fff; padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .9fr 1fr; gap: 2.2rem; }
.footer-brand img { width: 260px; filter: invert(1) grayscale(1) brightness(3); opacity: .92; }
.footer-brand p, .site-footer li, .site-footer a, .footer-small { color: rgba(255,255,255,.66); }
.footer-links { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .6rem; }
.footer-links a:hover { color: #fff; }
.footer-title { font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; color: #e5b7aa; }
.footer-bottom { margin-top: 3rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 1rem; font-size: .82rem; color: rgba(255,255,255,.55); }

.floating-wa { position: fixed; right: 1rem; bottom: 1rem; z-index: 900; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #1fa855; color: #fff; box-shadow: 0 14px 35px rgba(26,128,66,.28); font-size: 1.55rem; border: 3px solid #fff; }

@media (max-width: 980px) {
  .header-actions .btn { display: none; }
  .menu-toggle { display: block; }
  .nav { position: fixed; inset: 84px 1rem auto 1rem; display: grid; gap: 0; padding: 1rem; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,250,248,.98); box-shadow: var(--shadow); transform: translateY(-14px); opacity: 0; visibility: hidden; transition: .2s ease; }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav a { padding: .9rem 1rem; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .hero-grid, .intro-grid, .finder-grid, .page-hero-grid, .content-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 0; }
  .hero-copy { padding-bottom: 1rem; }
  .hero-media { min-height: 560px; }
  .hero-photo { height: 560px; }
  .hero-caption { left: 1rem; }
  .treatment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-split { grid-template-columns: 1fr; }
  .feature-image { min-height: 560px; }
  .location-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 660px) {
  .container { width: min(calc(100% - 1.2rem), var(--max)); }
  .section { padding: 4.5rem 0; }
  .header-inner { min-height: 72px; }
  .brand img { width: 205px; }
  .nav { top: 72px; }
  .display { font-size: clamp(2.7rem, 15vw, 4.5rem); }
  .h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero-copy::before { display: none; }
  .hero-media { min-height: 500px; }
  .hero-photo { height: 500px; border-radius: 120px 120px 24px 24px; }
  .hero-caption { bottom: 1rem; }
  .hero-actions, .cta-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .hero-trust { display: grid; }
  .stat-row { grid-template-columns: 1fr; }
  .treatment-grid { grid-template-columns: 1fr; }
  .feature-image { min-height: 460px; }
  .feature-copy { padding: 3rem 1.2rem; }
  .finder-card, .form-card, .contact-panel { padding: 1.35rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 4rem 0 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
