:root {
  --bg: #F3E5DF;
  --bg-alt: #FFFFFF;
  --ink: #3B2A28;
  --soft: #8A6F69;
  --accent: #AE8148;
  --accent-deep: #8A6435;
  --rose: #D9A79A;
  --line: #E7D2C7;
  --font-display: 'Jost', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow: 0 14px 34px -20px rgba(59, 42, 40, .35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 760px; }

.eyebrow {
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
}

.h {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  line-height: 1.2;
  margin: .6rem 0 2.4rem;
  text-wrap: balance;
  max-width: 26ch;
}
.h--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease;
}
.btn:active { transform: scale(.98); }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--accent-deep); }
.btn--ghost { border: 1px solid var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--accent-deep); color: var(--accent-deep); }
.btn--text { background: none; color: var(--accent-deep); text-decoration: none; padding: .95rem .3rem; }
.btn--text:hover { color: var(--ink); }
.btn--full { width: 100%; }
.btn:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 3px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 229, 223, .9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.1rem 1.5rem; }
.logo-link { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); }
.logo-mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ink); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: .8rem; letter-spacing: 0;
}
.logo-word { font-family: var(--font-display); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: .95rem; }
.main-nav { display: flex; gap: 1.8rem; }
.main-nav a { text-decoration: none; color: var(--soft); font-size: .88rem; }
.main-nav a:hover { color: var(--ink); }
.header-phone { text-align: right; text-decoration: none; }
.header-phone .phone-label { display: block; font-size: .72rem; color: var(--soft); }
.header-phone .phone-number { display: block; font-family: var(--font-display); font-size: .92rem; font-weight: 600; color: var(--ink); }
@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-phone .phone-label { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 4.5rem;
  text-align: center;
  background: var(--bg);
}
.hero-bg {
  position: absolute; bottom: 0; width: 44%; height: 62%;
  object-fit: cover; z-index: 0; opacity: .58;
  filter: saturate(.8);
}
.hero-bg--left {
  left: 0; object-position: left bottom;
  -webkit-mask-image: linear-gradient(115deg, black 35%, transparent 88%);
  mask-image: linear-gradient(115deg, black 35%, transparent 88%);
}
.hero-bg--right {
  right: 0; object-position: right bottom;
  -webkit-mask-image: linear-gradient(245deg, black 35%, transparent 88%);
  mask-image: linear-gradient(245deg, black 35%, transparent 88%);
}
@media (max-width: 700px) {
  .hero-bg { width: 56%; height: 42%; opacity: .45; }
}
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 55% 60% at 50% 40%, var(--bg) 0%, rgba(243, 229, 223, .55) 55%, rgba(243, 229, 223, .82) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.avatar-ring {
  width: 320px; height: 320px; margin: 0 auto 2.2rem;
  border-radius: 50%; border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center; position: relative;
  padding: 18px;
}
.avatar-ring::before { content: ""; position: absolute; inset: 18px; border-radius: 50%; border: 1px solid var(--rose); pointer-events: none; }
.avatar-ring img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
@media (max-width: 560px) {
  .avatar-ring { width: 220px; height: 220px; padding: 14px; }
  .avatar-ring::before { inset: 14px; }
}
.hero-title {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .015em;
  font-size: clamp(1.9rem, 4.6vw, 3rem); line-height: 1.16; margin: .7rem 0 1.2rem; text-wrap: balance;
}
.hero-subtitle { font-size: 1.05rem; line-height: 1.7; color: var(--soft); max-width: 46ch; margin: 0 auto 2.3rem; }
.cta-row { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; }

/* ===== Sections ===== */
.sec { padding: 4.5rem 1.5rem; }
.sec--alt { background: var(--bg-alt); }

/* ===== Stat band ===== */
.stat-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  text-align: center; background: var(--ink); color: #fff;
  border-radius: 14px; padding: 2.6rem 1.5rem;
}
.stat-band .stat-num { font-family: var(--font-display); font-size: 2.3rem; font-variant-numeric: tabular-nums; }
.stat-band .stat-cap { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--rose); margin-top: .4rem; }
@media (max-width: 760px) { .stat-band { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; } }

/* ===== About specialist ===== */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3rem; align-items: center; }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } }
.about-media { position: relative; padding-bottom: 1.6rem; padding-right: 1.6rem; }
.about-photo-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow); }
.about-photo-secondary {
  position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: 12px; border: 5px solid var(--bg-alt); box-shadow: var(--shadow);
}
.sec:not(.sec--alt) .about-photo-secondary { border-color: var(--bg); }
.about-role { font-family: var(--font-display); font-size: .92rem; color: var(--accent-deep); margin: -1.6rem 0 1rem; text-transform: uppercase; letter-spacing: .03em; }
.about-bio { font-size: 1rem; line-height: 1.7; color: var(--soft); max-width: 46ch; margin: 0; }

/* ===== Pains ===== */
.pains { display: flex; flex-direction: column; }
.pain-row { display: grid; grid-template-columns: 1.6rem 1fr; gap: 1.1rem; padding: 1.3rem 0; border-bottom: 1px solid var(--rose); }
.pain-row:first-child { border-top: 1px solid var(--rose); }
.pain-row .mark { color: var(--accent); font-size: 1.3rem; line-height: 1; }
.pain-row h3 { margin: 0 0 .35rem; font-size: 1.02rem; font-family: var(--font-body); }
.pain-row p { margin: 0; color: var(--soft); font-size: .93rem; line-height: 1.55; }

/* ===== Services / segment cards ===== */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 800px) { .grid3 { grid-template-columns: 1fr; } }
.seg-card { background: var(--bg-alt); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow); }
.sec--alt .seg-card { background: var(--bg); box-shadow: none; border: 1px solid var(--line); }
.seg-card .tag {
  display: inline-block; background: var(--rose); color: var(--ink);
  font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700;
  padding: .3rem .7rem; border-radius: 999px; margin-bottom: 1rem;
}
.seg-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin: 0 0 .6rem; text-transform: none; letter-spacing: 0; }
.seg-card p { color: var(--soft); font-size: .92rem; line-height: 1.6; margin: 0; }

/* ===== Calculator ===== */
.calc { background: var(--bg-alt); border-radius: 18px; padding: 2.6rem 2rem; text-align: center; box-shadow: var(--shadow); }
.calc h3 { font-family: var(--font-display); font-size: 1.3rem; margin: 0 0 1.5rem; text-transform: uppercase; letter-spacing: .03em; }
.chip-row { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; margin-bottom: 1.8rem; }
.chip {
  background: var(--bg); border: 1px solid var(--rose); color: var(--ink);
  padding: .65rem 1.3rem; border-radius: 999px; font-size: .87rem; cursor: pointer;
  font-family: var(--font-body); transition: background .15s, color .15s, border-color .15s;
}
.chip.on { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 2px; }
.price-out .num { font-family: var(--font-display); font-size: 2.6rem; color: var(--accent-deep); font-variant-numeric: tabular-nums; }
.price-out .cap { font-size: .8rem; color: var(--soft); text-transform: uppercase; letter-spacing: .05em; margin-top: .3rem; }

/* ===== Process steps ===== */
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; align-items: center; }
@media (max-width: 800px) { .process-grid { grid-template-columns: 1fr; gap: 2rem; } }
.process-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow); }
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step-n { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--accent); margin-bottom: .5rem; }
.step h4 { margin: 0 0 .3rem; font-size: 1rem; }
.step p { margin: 0; font-size: .87rem; color: var(--soft); line-height: 1.55; }

/* ===== Quote ===== */
.quote-grid { display: grid; grid-template-columns: .55fr 1fr; gap: 2.5rem; align-items: center; }
@media (max-width: 700px) { .quote-grid { grid-template-columns: 1fr; gap: 1.6rem; } }
.quote-photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow); }
.quote { background: var(--bg-alt); border-radius: 16px; padding: 2.2rem; box-shadow: var(--shadow); margin: 0; }
.quote p { font-size: 1.05rem; line-height: 1.65; margin: 0 0 1rem; }
.quote cite { font-style: normal; font-size: .85rem; color: var(--soft); }

.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: 1.6rem; }
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .review-grid { grid-template-columns: 1fr; } }
.review-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 14px; padding: 1.5rem; display: flex; flex-direction: column; gap: .9rem; }
.review-card p { margin: 0; font-size: .88rem; line-height: 1.55; color: var(--ink); flex: 1; }
.review-who { display: flex; align-items: center; gap: .7rem; }
.review-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--rose); color: var(--ink); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: .72rem; font-weight: 600;
}
.review-name { font-size: .85rem; font-weight: 600; }
.review-meta { display: block; font-size: .76rem; color: var(--soft); }

/* ===== Badges ===== */
.badges { display: flex; flex-wrap: wrap; gap: .9rem; }
.badge { border: 1px solid var(--rose); border-radius: 999px; padding: .55rem 1.2rem; font-size: .82rem; color: var(--soft); background: var(--bg-alt); }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--line); padding: 1.15rem 0; }
.faq-item summary { list-style: none; cursor: pointer; font-size: .98rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.2rem; color: var(--accent-deep); flex-shrink: 0; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--soft); font-size: .92rem; line-height: 1.6; margin: .8rem 0 0; }

/* ===== Final CTA ===== */
.final-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; align-items: center; }
@media (max-width: 800px) { .final-grid { grid-template-columns: 1fr; gap: 2rem; } }
.final-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow); }
.final-copy .h { max-width: none; }
.lead-form { display: flex; flex-direction: column; gap: .8rem; max-width: 360px; margin: 0; }
.field {
  width: 100%; padding: .9rem 1.1rem; border-radius: 999px; border: 1px solid var(--rose);
  background: var(--bg-alt); color: var(--ink); font-family: var(--font-body); font-size: .92rem; text-align: left;
}
.field:focus { outline: none; border-color: var(--accent-deep); }
.form-note { max-width: 420px; margin: 1rem 0 0; font-size: .85rem; color: var(--soft); }
.contact-line { display: flex; gap: 1.4rem; align-items: center; margin-top: 1.6rem; font-size: .88rem; color: var(--soft); flex-wrap: wrap; }
.contact-line a { text-decoration: none; }
.contact-line a:hover { color: var(--accent-deep); }
@media (max-width: 800px) { .final-copy, .lead-form, .form-note, .contact-line { text-align: left; } }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--line); padding: 1.6rem 1.5rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: var(--soft); }

/* ===== Reveal-on-scroll ===== */
[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
