@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@500;600;700&display=swap");

:root {
  --bg: #fffaf6;
  --bg-soft: #f7eee7;
  --card: rgba(255, 255, 255, 0.78);
  --card-strong: #fffdfb;
  --ink: #241916;
  --muted: #6b5a54;
  --line: rgba(84, 50, 39, 0.12);
  --accent: #111111;
  --rose: #e7c8c0;
  --gold: #c59a5c;
  --gold-soft: rgba(197, 154, 92, 0.14);
  --shadow: 0 24px 60px rgba(79, 47, 37, 0.12);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(231, 200, 192, 0.55), transparent 32%),
    radial-gradient(circle at 85% 8%, rgba(197, 154, 92, 0.16), transparent 22%),
    linear-gradient(180deg, #fffdfb 0%, #fcf6f1 44%, #fffaf7 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(36, 25, 22, 0.06);
  z-index: 50;
}

.progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #f0d7b1);
}

.site-header {
  padding: 28px 6vw 40px;
}

.nav {
  position: sticky;
  top: 16px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  margin-bottom: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.76);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(63, 39, 30, 0.08);
}

.nav.scrolled {
  background: rgba(255, 252, 249, 0.96);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1f1714, #8c6542);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 0.96rem;
}

.brand-copy small {
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.94rem;
  color: var(--muted);
}

.nav-cta,
.btn {
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.burger,
.mobile-menu {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 140px);
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.offer-card h2,
.booking-copy h2,
.specialist-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  margin: 16px 0 18px;
  max-width: 12ch;
}

.hero-text {
  max-width: 56ch;
  font-size: 1.06rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 700;
}

.btn:hover,
.nav-cta:hover,
.floating-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 680px;
}

.hero-metrics div,
.service-card,
.compare-card,
.case-card,
.step-card,
.review-card,
.booking-form,
.map-card,
.offer-card,
.specialist-copy,
.portrait-shell,
.trust-strip article {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-metrics div {
  padding: 18px;
  border-radius: var(--radius-sm);
}

.hero-metrics strong {
  display: block;
  font-size: 1.12rem;
  margin-bottom: 4px;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.hero-glow {
  position: absolute;
  inset: 8% 14% auto auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(197, 154, 92, 0.34), transparent 70%);
  filter: blur(18px);
}

.hero-frame {
  position: relative;
  padding: 24px 0 44px 28px;
}

.hero-video-card {
  position: relative;
  min-height: 620px;
  padding: 28px;
  border-radius: 36px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, #f7e6df 0%, #ecd8ce 42%, #2c1d1a 100%);
  box-shadow: 0 34px 80px rgba(68, 42, 32, 0.22);
}

.video-badge,
.hero-floating,
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.video-badge {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.video-face {
  position: absolute;
  inset: 98px 36px 110px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 46% 28%, rgba(255, 245, 239, 0.94), transparent 18%),
    radial-gradient(circle at 54% 36%, rgba(255, 235, 223, 0.96), transparent 22%),
    radial-gradient(circle at 50% 54%, rgba(246, 209, 190, 0.88), transparent 24%),
    linear-gradient(180deg, rgba(72, 40, 32, 0.18), rgba(23, 13, 11, 0.48)),
    radial-gradient(circle at 50% 16%, #fff4ef, #efc7bb 44%, #603f38 88%);
}

.video-caption {
  position: absolute;
  right: 28px;
  left: 28px;
  bottom: 28px;
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  background: rgba(17, 17, 17, 0.46);
  color: #fff;
  border-radius: 22px;
  backdrop-filter: blur(18px);
}

.video-caption span {
  color: rgba(255, 255, 255, 0.8);
}

.hero-floating {
  position: absolute;
  padding: 14px 16px;
  background: rgba(255, 252, 249, 0.92);
  border: 1px solid rgba(84, 50, 39, 0.08);
  box-shadow: var(--shadow);
  min-width: 180px;
  display: grid;
  gap: 4px;
}

.hero-floating strong {
  font-size: 0.98rem;
}

.hero-floating span {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.84rem;
}

.hero-floating-top {
  top: 48px;
  right: -12px;
}

.hero-floating-bottom {
  left: 0;
  bottom: 0;
}

.section {
  padding: 48px 6vw 110px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.offer-card h2,
.booking-copy h2,
.specialist-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  margin: 12px 0;
}

.section-heading p,
.specialist-copy p,
.booking-copy p,
.offer-card p {
  color: var(--muted);
}

.trust {
  padding-top: 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-strip article {
  padding: 24px;
  border-radius: var(--radius-md);
}

.trust-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.trust-strip span {
  color: var(--muted);
}

.services-grid,
.reviews-grid,
.steps-grid {
  display: grid;
  gap: 20px;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius-md);
}

.service-tag {
  width: fit-content;
  padding: 8px 12px;
  background: var(--gold-soft);
  color: #946b32;
}

.service-card h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.service-card p {
  color: var(--muted);
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
}

.service-meta a {
  color: var(--accent);
  font-weight: 700;
}

.results-layout,
.specialist-layout,
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 22px;
  align-items: start;
}

.compare-card {
  padding: 24px;
  border-radius: 32px;
}

.compare-stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 28px;
  background: #ecd3cb;
}

.compare-image {
  position: absolute;
  inset: 0;
}

.compare-image span {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 700;
}

.compare-before {
  background:
    radial-gradient(circle at 46% 28%, rgba(255, 240, 230, 0.96), transparent 17%),
    radial-gradient(circle at 54% 38%, rgba(255, 220, 210, 0.84), transparent 18%),
    radial-gradient(circle at 50% 56%, rgba(212, 145, 133, 0.72), transparent 18%),
    linear-gradient(180deg, #faece5, #d49f95 56%, #9e6f66 100%);
}

.compare-after {
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
  background:
    radial-gradient(circle at 46% 28%, rgba(255, 247, 240, 0.98), transparent 17%),
    radial-gradient(circle at 54% 38%, rgba(255, 235, 223, 0.82), transparent 18%),
    radial-gradient(circle at 50% 56%, rgba(232, 191, 169, 0.54), transparent 18%),
    linear-gradient(180deg, #fef1eb, #efc8b7 56%, #b27c72 100%);
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.24);
}

.compare-range {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.compare-range span {
  color: var(--muted);
  font-size: 0.94rem;
}

.compare-range input {
  width: 100%;
  accent-color: var(--gold);
}

.results-cases {
  display: grid;
  gap: 18px;
}

.case-card {
  padding: 24px;
  border-radius: var(--radius-md);
}

.case-card p {
  color: var(--muted);
  margin-top: 8px;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
  padding: 24px;
  border-radius: var(--radius-md);
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--gold-soft);
  color: #946b32;
  font-weight: 800;
  margin-bottom: 18px;
}

.step-card p {
  color: var(--muted);
  margin-top: 8px;
}

.specialist-layout {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
}

.portrait-shell {
  padding: 28px;
  border-radius: 34px;
}

.portrait {
  min-height: 540px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 48% 18%, rgba(255, 239, 233, 0.95), transparent 18%),
    radial-gradient(circle at 50% 36%, rgba(246, 211, 195, 0.78), transparent 20%),
    radial-gradient(circle at 50% 54%, rgba(226, 178, 160, 0.55), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02)),
    linear-gradient(160deg, #f3dfd7, #d7b5aa 48%, #755248 100%);
}

.specialist-copy {
  padding: 30px;
  border-radius: 34px;
}

.specialist-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.specialist-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
}

.reviews-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-card {
  padding: 24px;
  border-radius: var(--radius-md);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-top span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.review-card p {
  color: var(--ink);
}

.avatar {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f2d7d1, #c99d89);
}

.a2 {
  background: linear-gradient(135deg, #ead7c5, #ba8d64);
}

.a3 {
  background: linear-gradient(135deg, #ebd0c3, #9a6f63);
}

.a4 {
  background: linear-gradient(135deg, #f3e0d6, #d0ab97);
}

.offer {
  padding-top: 0;
}

.offer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(197, 154, 92, 0.16), transparent 26%),
    rgba(255, 255, 255, 0.8);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

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

.faq-list p {
  color: var(--muted);
  margin-top: 12px;
}

.booking-layout {
  align-items: stretch;
}

.map-card {
  position: relative;
  min-height: 220px;
  margin-top: 22px;
  padding: 24px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.34)),
    linear-gradient(0deg, rgba(197, 154, 92, 0.08), rgba(197, 154, 92, 0.08)),
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(36, 25, 22, 0.05) 58px 60px),
    repeating-linear-gradient(180deg, transparent 0 58px, rgba(36, 25, 22, 0.05) 58px 60px);
}

.map-pin {
  position: absolute;
  top: 28px;
  left: 28px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

.map-card span {
  position: absolute;
  right: 24px;
  bottom: 24px;
  color: var(--muted);
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 30px;
}

.booking-form label {
  display: grid;
  gap: 10px;
  font-weight: 600;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 16px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 24px 50px rgba(17, 17, 17, 0.22);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .services-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero,
  .results-layout,
  .specialist-layout,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 18px 4vw 30px;
  }

  .nav {
    top: 10px;
    margin-bottom: 18px;
  }

  .nav-links {
    display: none;
  }

  .burger {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 12px 10px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
  }

  .burger span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 48;
    background: rgba(22, 15, 13, 0.44);
    padding: 20px;
  }

  .mobile-menu.open {
    display: block;
  }

  .mobile-menu-card {
    margin-left: auto;
    width: min(320px, 100%);
    display: grid;
    gap: 14px;
    padding: 22px;
    border-radius: 28px;
    background: #fffaf7;
    box-shadow: var(--shadow);
  }

  .menu-close {
    justify-self: end;
    border: 0;
    background: transparent;
    font-size: 2rem;
    line-height: 1;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .hero-metrics,
  .trust-strip,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 34px 4vw 82px;
  }

  .hero {
    gap: 24px;
  }

  .services-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .hero-video-card,
  .compare-stage,
  .portrait {
    min-height: 420px;
  }

  .hero-frame {
    padding: 10px 0 54px;
  }

  .hero-floating-top {
    right: 0;
  }

  .hero-floating-bottom {
    left: 10px;
  }

  .service-card,
  .step-card,
  .review-card,
  .case-card,
  .trust-strip article {
    padding: 20px;
  }

  .floating-cta {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }
}
