:root {
  --red: #E83B32;
  --red-2: #F04A40;
  --gold: #D8AD3F;
  --gold-light: #F3D77A;
  --dark: #173F38;
  --body: #596562;
  --white: #FFFFFF;
  --bg: #FAFBF8;
  --footer: #EEF0F1;
  --line: #e7ebe7;
  --shadow: 0 18px 50px rgba(23, 63, 56, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "DM Sans", sans-serif;
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: absolute; left: -999px; top: 8px; background: var(--red); color: #fff; padding: 8px 12px; z-index: 2000;
}
.skip-link:focus { left: 8px; }

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  color: var(--dark);
  font-weight: 600;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(42px, 5.4vw, 68px); line-height: 1.05; }
h2 { font-size: clamp(32px, 3.4vw, 46px); line-height: 1.15; }
h3 { font-size: 22px; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 2.6px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow span {
  width: 38px; height: 1px; background: var(--gold); display: inline-block;
}
.section { padding: 96px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head p:last-child { margin-top: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(232, 59, 50, 0.22);
}
.btn-red:hover { background: var(--red-2); }
.btn-outline {
  background: #fff;
  color: var(--red);
  border-color: var(--red);
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 10px 22px rgba(216, 173, 63, 0.24);
}
.arrow { font-weight: 400; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f0f0f0;
}
.nav-wrap {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand img { width: 188px; height: auto; }
.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--dark);
}
.main-nav a { position: relative; padding: 8px 0; }
.main-nav a:hover,
.main-nav a.is-active { color: var(--red); }
.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 22px; height: 2px;
  background: var(--red);
}
.nav-cta { justify-self: end; }
.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 0; background: transparent;
  flex-direction: column; justify-content: center; gap: 5px;
}
.menu-toggle span {
  display: block; height: 2px; width: 22px; background: var(--dark); margin: 0 auto;
}

.hero {
  position: relative;
  background: linear-gradient(110deg, #fff 0%, var(--bg) 48%, #f7edd2 100%);
  overflow: hidden;
}
.hero-leaf {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 80%, rgba(243, 215, 122, .18), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(232, 59, 50, .05), transparent 22%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  min-height: 640px;
  gap: 20px;
  position: relative;
}
.hero-copy { padding: 64px 0 52px; max-width: 620px; }
.hero h1 span { color: var(--red); font-style: italic; font-weight: 500; }
.lead { font-size: 17px; margin: 22px 0 28px; max-width: 540px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-points {
  display: flex;
  gap: 18px;
  list-style: none;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid #eadfca;
}
.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  font-size: 13px;
  color: var(--dark);
  padding-right: 12px;
  border-right: 1px solid #eadfca;
}
.hero-points li:last-child { border: 0; }
.point-icon {
  width: 28px; height: 28px; color: var(--gold); flex: none; margin-top: 1px;
}
.point-icon svg { width: 100%; height: 100%; }
.hero-visual { position: relative; height: 640px; }
.hero-photo {
  position: absolute;
  inset: 24px 0 0 0;
  border-radius: 0 0 0 48px;
  overflow: hidden;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.18) 28%, transparent 58%);
}
.floating-card {
  position: absolute;
  left: 18px;
  bottom: 42px;
  z-index: 2;
  background: #fff;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  min-width: 280px;
}
.floating-card strong { display: block; color: var(--dark); font-size: 14px; }
.floating-card p { font-size: 12px; color: #7a8481; }
.gold-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); flex: none;
}

.stats {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-grid article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 18px;
  border-right: 1px solid var(--line);
}
.stats-grid article:last-child { border: 0; }
.stat-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  color: var(--gold);
  background: #fbf6e6;
  display: grid; place-items: center;
  flex: none;
}
.stat-icon svg { width: 22px; height: 22px; }
.stats-grid strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  color: var(--dark);
  line-height: 1.1;
}
.stats-grid span { font-size: 13px; }

.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}
.about-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
}
.about-copy p { margin-bottom: 14px; }
.check-list { list-style: none; margin: 22px 0 28px; }
.check-list li {
  position: relative;
  padding: 8px 0 8px 32px;
  color: var(--dark);
  font-weight: 600;
}
.check-list li::before {
  content: "✓";
  position: absolute; left: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #f7ecd0;
  color: var(--gold);
  font-size: 12px;
  display: grid; place-items: center;
}

.treatments { background: var(--bg); }
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.treatment-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #eef1ee;
  box-shadow: 0 10px 30px rgba(23,63,56,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.card-img { height: 210px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 28px 24px 26px; position: relative; }
.mini-icon {
  position: absolute;
  top: -22px; left: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(216,173,63,.3);
}
.mini-icon svg { width: 20px; height: 20px; }
.treatment-card h3 { margin: 10px 0 10px; }
.treatment-card p { font-size: 14.5px; margin-bottom: 16px; min-height: 66px; }
.treatment-card a { color: var(--red); font-weight: 700; font-size: 14px; }

.why { background: var(--bg); padding-top: 40px; }
.why-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.why-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.why-items article {
  background: #fff;
  border: 1px solid #eef1ee;
  border-radius: 18px;
  padding: 22px;
}
.why-icon {
  width: 40px; height: 40px; color: var(--gold);
  margin-bottom: 12px; display: block;
}
.why-icon svg { width: 32px; height: 32px; }
.why-items h3 { font-size: 18px; margin-bottom: 8px; }
.why-items p { font-size: 14px; }

.results { background: #fff; }
.result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.result-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eef1ee;
  box-shadow: 0 10px 28px rgba(23,63,56,.05);
}
.result-card img {
  width: 100%; height: 250px;
  object-fit: cover;
  object-position: center top;
}
.result-meta { padding: 16px 16px 18px; }
.result-meta h3 { font-size: 18px; }
.result-meta span { font-size: 13px; color: #7a8481; }

.process { background: var(--bg); }
.process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: none;
}
.process-grid li {
  background: #fff;
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  position: relative;
  border: 1px solid #eef1ee;
}
.process-grid li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px; top: 38px;
  color: var(--gold);
  font-size: 20px;
}
.process-grid span {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid; place-items: center;
  margin: 0 auto 14px;
  font-weight: 700;
}
.process-grid h3 { margin-bottom: 8px; font-size: 20px; }
.process-grid p { font-size: 14px; }

.stories {
  background: linear-gradient(135deg, #E83B32, #F04A40);
  padding: 92px 0;
}
.light-head h2 { color: #fff; }
.eyebrow.gold { color: var(--gold-light); justify-content: center; }
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.story-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.story-card p { font-size: 15px; margin-bottom: 18px; }
.story-card strong { display: block; color: var(--dark); }
.story-card span { font-size: 12px; color: #7a8481; }

.faq { background: #fff; }
.faq-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: start;
}
.acc-item { border-bottom: 1px solid var(--line); }
.acc-item button {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 650;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}
.acc-item button span { color: var(--gold); font-size: 22px; line-height: 1; }
.acc-panel {
  display: none;
  padding: 0 0 16px;
  font-size: 15px;
}
.acc-item.open .acc-panel { display: block; }
.faq-aside img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  object-position: center;
  border-radius: 22px;
  background: #f7f1ea;
}
.faq-cta {
  margin-top: 18px;
  background: var(--bg);
  border-radius: 18px;
  padding: 22px;
}
.faq-cta p { margin: 8px 0 16px; }

.consult {
  background: linear-gradient(180deg, #fbf6e8 0%, #f4ead0 100%);
  padding: 92px 0;
}
.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.consult-meta { list-style: none; margin-top: 22px; color: var(--dark); }
.consult-meta li { padding: 6px 0; font-weight: 600; }
.consult-form {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  box-shadow: var(--shadow);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 700; color: var(--dark); }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #e6e8e6;
  background: #fbfbfb;
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  background: #fff;
}
.field.error input, .field.error select, .field.error textarea { border-color: var(--red); }
.error { min-height: 14px; color: var(--red); font-size: 12px; }
.form-status { grid-column: 1 / -1; font-size: 14px; color: var(--dark); }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.captcha-row img {
  width: 160px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #e6e8e6;
  background: #fbfbfb;
}
.captcha-refresh {
  width: 44px;
  height: 48px;
  border: 1px solid #e6e8e6;
  background: #fff;
  border-radius: 12px;
  color: var(--dark);
  font-size: 20px;
  cursor: pointer;
}
.captcha-row input { flex: 1; }

.footer {
  background: var(--footer);
  color: var(--body);
  padding: 64px 0 0;
  border-top: 4px solid var(--red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .9fr 1.1fr;
  gap: 32px;
  padding-bottom: 36px;
}
.footer-brand img { width: 170px; margin-bottom: 14px; }
.footer h3 {
  font-size: 18px;
  margin-bottom: 14px;
}
.footer a, .footer p { display: block; margin: 7px 0; font-size: 14.5px; }
.footer a:hover { color: var(--red); }
.footer-contact .contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
  color: var(--body);
  line-height: 1.5;
}
.footer-contact .contact-icon {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 2px;
  color: var(--red);
}
.footer-contact .contact-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  display: block;
}
.social { display: flex; gap: 12px; margin-top: 16px; }
.social a {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  color: #ef3226;
  margin: 0;
  box-shadow: 0 4px 10px rgba(23, 63, 56, 0.06);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.social a i { font-size: 20px; line-height: 1; }
.social a:hover { background: #ef3226; color: #fff; transform: translateY(-1px); }
.footer-bottom {
  background: linear-gradient(135deg, #E83B32, #F04A40);
  color: #fff;
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

.float-btn, .back-top {
  position: fixed;
  right: 18px;
  z-index: 40;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  border: 0;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.float-btn svg, .back-top svg { width: 24px; height: 24px; display: block; }
.call-btn { bottom: 142px; background: var(--red); }
.wa-btn { bottom: 82px; background: #25D366; }
.back-top {
  bottom: 22px;
  background: var(--gold);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
}
.back-top.show { opacity: 1; pointer-events: auto; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp .7s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

@media (max-width: 1439px) {
  .hero-grid, .hero-visual { min-height: 580px; }
  .hero-visual { height: 580px; }
}
@media (max-width: 1023px) {
  .nav-wrap { grid-template-columns: auto auto auto; }
  .main-nav { gap: 16px; font-size: 13px; }
  .hero-grid, .about-grid, .why-grid, .faq-grid, .consult-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 28px; }
  .about-media img { height: 380px; }
  .hero-visual { height: 420px; }
  .hero-photo { position: relative; inset: auto; height: 420px; border-radius: 24px; }
  .hero-photo::after { background: linear-gradient(180deg, transparent 50%, rgba(255,255,255,.4)); }
  .floating-card { left: 16px; bottom: 16px; }
  .treatment-grid, .result-grid, .story-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid li::after { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid article { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .nav-wrap { grid-template-columns: 1fr auto; min-height: 72px; }
  .brand img { width: 148px; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 72px;
    background: #fff;
    flex-direction: column;
    padding: 12px 20px 20px;
    gap: 0;
    border-bottom: 1px solid #eee;
    box-shadow: 0 16px 30px rgba(0,0,0,.06);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid #f3f3f3; }
  .hero-copy { padding: 36px 0 24px; }
  .hero-points { flex-direction: column; }
  .hero-points li { border: 0; padding: 0; }
  .stats-grid, .treatment-grid, .why-items, .result-grid, .process-grid, .story-grid, .consult-form, .footer-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 56px 0; }
  .about-media img { height: 320px; }
  .faq-aside img { height: 280px; }
  .footer-bottom-inner { flex-direction: column; }
}
@media (min-width: 1100px) {
  .treatment-card p { min-height: 72px; }
}
