:root {
  --bg: #faf5ef;
  --bg-soft: #f3e9df;
  --card: #ffffff;
  --text: #352a22;
  --text-soft: #6b5c4f;
  --accent: #a97a56;
  --accent-dark: #8a5f3f;
  --border: #e7dccb;
  --radius: 18px;
  --shadow: 0 12px 32px rgba(70, 50, 30, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 16px;
}

h2 {
  font-size: clamp(28px, 4vw, 40px);
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  color: var(--accent-dark);
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

.section {
  padding: 90px 0;
}

.section-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  color: var(--text-soft);
  font-size: 17px;
}

/* ===== Header ===== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 245, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 14.5px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--accent-dark); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(169, 122, 86, 0.35);
}

.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
}

.btn-outline:hover { background: var(--text); color: #fff; }

.btn-sm { padding: 10px 20px; font-size: 13px; }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Hero ===== */
.hero {
  padding: 56px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-text .eyebrow { text-align: left; }

.hero h1 { font-size: clamp(32px, 4.6vw, 50px); }

.hero-sub {
  font-size: 19px;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.hero-note {
  font-size: 15px;
  color: var(--text-soft);
  max-width: 460px;
  margin-bottom: 32px;
}

.hero-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }

.hero-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
}

.hero-badge b { display: block; font-size: 22px; color: var(--accent-dark); }
.hero-badge span { font-size: 12.5px; color: var(--text-soft); }

/* ===== Pains ===== */
.pains {
  background: var(--bg-soft);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.pain-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px 28px;
  font-size: 16.5px;
  box-shadow: var(--shadow);
}

.pain-transition {
  text-align: center;
  font-size: 19px;
  max-width: 640px;
  margin: 0 auto;
  color: var(--accent-dark);
  font-weight: 600;
}

/* ===== Services ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.service-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-body h3 { font-size: 20px; }

.service-body p {
  color: var(--text-soft);
  font-size: 14.5px;
  flex: 1;
}

.service-price {
  font-size: 15px;
  color: var(--accent-dark);
  font-weight: 700;
  margin: 10px 0 16px;
}

/* ===== Results gallery ===== */
.results { background: var(--bg-soft); }

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.result-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.result-card img { width: 100%; object-fit: cover; }

.result-caption {
  padding: 18px 22px 22px;
}

.result-caption h4 { margin: 0 0 6px; font-size: 16px; }
.result-caption p { margin: 0; font-size: 14px; color: var(--text-soft); }

.result-note {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 15px;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-photo img { aspect-ratio: 3/4; object-fit: cover; }

.about-quote {
  font-size: 18px;
  color: var(--text);
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 20px 0 26px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 10px;
}

.about-list li {
  padding-left: 26px;
  position: relative;
  font-size: 15px;
  color: var(--text-soft);
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.cert-row {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.cert-row img {
  width: 110px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* ===== Trust ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.trust-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  font-size: 14.5px;
  font-weight: 600;
}

.trust-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 32px;
  color: var(--accent-dark);
  display: block;
  margin-bottom: 8px;
}

/* ===== Process ===== */
.process { background: var(--bg-soft); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.process-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px 20px;
  box-shadow: var(--shadow);
}

.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 30px;
  color: var(--accent);
  margin-bottom: 10px;
}

.process-card h4 { font-size: 15.5px; margin: 0 0 8px; }
.process-card p { font-size: 13.5px; color: var(--text-soft); margin: 0; }

/* ===== Prices ===== */
.price-table {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
}

.price-row:last-child { border-bottom: none; }
.price-row b { font-size: 19px; color: var(--accent-dark); }
.price-note {
  text-align: center;
  color: var(--text-soft);
  font-size: 14px;
  margin-top: 22px;
}

.price-sub {
  background: var(--bg-soft);
  font-size: 14.5px;
  color: var(--text-soft);
}

/* ===== Reviews ===== */
.reviews { background: var(--bg-soft); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.review-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  flex-shrink: 0;
}

.review-name { font-weight: 600; font-size: 15px; }
.review-stars { color: var(--accent); font-size: 13px; letter-spacing: 1px; }
.review-card p { margin: 0; font-size: 14.5px; color: var(--text-soft); }

/* ===== FAQ ===== */
.faq-item {
  background: var(--card);
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 26px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--accent);
  transition: transform 0.2s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-body {
  padding: 0 26px 22px;
  color: var(--text-soft);
  font-size: 14.5px;
}

.faq-body ul { margin: 8px 0; padding-left: 20px; }
.faq-body li { margin-bottom: 6px; }
.faq-body h5 { margin: 14px 0 6px; color: var(--text); font-size: 14.5px; }

/* ===== Final CTA / Form ===== */
.cta-final {
  background: linear-gradient(135deg, #3a2c22, #4c3a2c);
  color: #fdf8f2;
  border-radius: 28px;
  margin: 0 24px;
  padding: 70px 40px;
}

.cta-final .container { max-width: 980px; padding: 0; }

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.cta-final h2 { text-align: left; color: #fff; }
.cta-final p { color: #e4d8ca; font-size: 15.5px; margin-bottom: 26px; }

.contact-links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 20px; }
.contact-links a { color: #f3e5d5; font-size: 14px; text-decoration: none; border-bottom: 1px dotted #b99b7d; }

.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  color: var(--text);
}

.form-card h3 { font-size: 18px; }

.field { margin-bottom: 14px; }

.field label {
  display: block;
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 14.5px;
  background: var(--bg);
  color: var(--text);
}

.field textarea { resize: vertical; min-height: 70px; }

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.form-submit {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

.form-submit:hover { background: var(--accent-dark); }

/* ===== Footer ===== */
footer {
  padding: 34px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-soft);
}

/* ===== Mobile ===== */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .cta-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; max-width: 420px; margin: 0 auto; }
  .pain-grid, .result-grid, .review-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .section { padding: 60px 0; }
  .cta-final { padding: 44px 22px; margin: 0 14px; }
  .cert-row img { width: 90px; height: 116px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-badge { position: static; margin-top: 14px; display: inline-block; }
}
