:root {
  --ink: #2d2521;
  --muted: #786b63;
  --soft: #f8f3ee;
  --paper: #fffdfb;
  --nude: #eaded3;
  --rose: #d9a9a4;
  --champagne: #f2dfb6;
  --gold: #b89152;
  --line: rgba(91, 72, 61, 0.13);
  --shadow: 0 24px 70px rgba(70, 48, 38, 0.11);
  --radius: 28px;
  --serif: "Cormorant Garamond", "Georgia", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(242, 223, 182, 0.38), transparent 32rem),
    linear-gradient(180deg, #fffaf6 0%, #f8f3ee 48%, #fffdfb 100%);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.section-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 24px));
  margin: 12px auto 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 253, 251, 0.78);
  box-shadow: 0 14px 36px rgba(91, 72, 61, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(184, 145, 82, 0.32);
  border-radius: 50%;
  background: linear-gradient(145deg, #fff, #f4e8de);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.95rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
}

.header-nav {
  display: none;
  gap: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.header-nav a {
  transition: color 180ms ease;
}

.header-nav a:hover {
  color: var(--ink);
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, #3a2b25, #7b5b48);
  color: #fff;
  box-shadow: 0 18px 34px rgba(58, 43, 37, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 22px 42px rgba(58, 43, 37, 0.23);
}

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

.btn-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.86rem;
}

.btn-full {
  width: 100%;
}

.hero {
  display: grid;
  gap: 34px;
  min-height: calc(100vh - 84px);
  align-items: center;
  padding: 54px 0 38px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.96;
}

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 5vw, 4.15rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 6vw, 4.9rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.36rem;
  line-height: 1.15;
}

.hero-subtitle {
  max-width: 660px;
  margin-bottom: 18px;
  color: #4c403a;
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  line-height: 1.35;
}

.hero-text,
.section-heading p,
.final-cta p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  background: #f3e8df;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(62, 40, 31, 0.18));
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: 56% center;
}

.hero-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  max-width: 270px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 24px;
  background: rgba(255, 253, 251, 0.82);
  box-shadow: 0 18px 40px rgba(58, 43, 37, 0.16);
  backdrop-filter: blur(18px);
}

.hero-card span,
.hero-card strong {
  display: block;
}

.hero-card span {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card strong {
  line-height: 1.35;
}

.intro-band {
  padding: 34px 0;
}

.quote {
  border-block: 1px solid var(--line);
  padding: 34px 0;
  text-align: center;
}

.quote p {
  margin: 0;
  color: #4b3b33;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.section-block {
  padding: 88px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.align-left {
  margin: 0;
  text-align: left;
}

.steps-grid,
.products-grid,
.gallery-grid,
.trust-grid {
  display: grid;
  gap: 18px;
}

.step-card,
.product-card,
.before-after,
.trust-card {
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(255, 253, 251, 0.72);
  box-shadow: 0 18px 50px rgba(91, 72, 61, 0.08);
}

.step-card {
  min-height: 220px;
  border-radius: var(--radius);
  padding: 28px;
}

.step-card span,
.trust-card span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.step-card p,
.product-card p,
.product-card li,
.before-after figcaption {
  color: var(--muted);
  line-height: 1.68;
}

.products-grid {
  gap: 26px;
}

.product-card {
  overflow: hidden;
  border-radius: 32px;
}

.product-image {
  min-height: 220px;
  background-position: center;
  background-size: cover;
}

.product-image img,
.before-after-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image img {
  min-height: 220px;
}

.product-content {
  padding: 28px;
}

.product-type {
  margin-bottom: 8px;
  color: var(--gold) !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-content ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.product-content li {
  position: relative;
  padding-left: 24px;
}

.product-content li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.gallery-grid {
  grid-template-columns: 1fr;
}

.before-after {
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
}

.placeholder-image {
  display: grid;
  min-height: 250px;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), transparent),
    repeating-linear-gradient(135deg, rgba(184, 145, 82, 0.07) 0 1px, transparent 1px 14px),
    linear-gradient(135deg, #f7efe7, #eaded3);
  color: rgba(58, 43, 37, 0.5);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.05;
  text-align: center;
}

.before-after-img {
  display: block;
  min-height: 250px;
  aspect-ratio: 1 / 1;
  background: #f7efe7;
}

.before-after[data-image-slot="botox"] .before-after-img,
.before-after[data-image-slot="pele"] .before-after-img {
  background: #fffaf6;
  object-fit: contain;
  object-position: center center;
}

.before-after figcaption {
  margin: 0;
  padding: 18px 20px;
  font-size: 0.92rem;
}

.about-section {
  margin: 34px 0 92px;
  padding: 86px 0;
  background: linear-gradient(135deg, rgba(255, 253, 251, 0.86), rgba(234, 222, 211, 0.64));
  border-block: 1px solid rgba(184, 145, 82, 0.12);
}

.about-grid {
  display: grid;
  gap: 38px;
}

.trust-grid {
  grid-template-columns: 1fr;
}

.trust-card {
  min-height: 150px;
  border-radius: 24px;
  padding: 24px;
}

.trust-card span {
  margin-bottom: 26px;
}

.trust-card strong {
  display: block;
  max-width: 210px;
  font-size: 1.1rem;
  line-height: 1.28;
}

.final-cta {
  margin-bottom: 72px;
  padding: 76px 24px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 36px;
  background:
    radial-gradient(circle at 80% 10%, rgba(242, 223, 182, 0.46), transparent 22rem),
    rgba(255, 253, 251, 0.72);
  box-shadow: var(--shadow);
  text-align: center;
}

.final-cta p {
  max-width: 650px;
  margin-inline: auto;
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 34px 20px 46px;
  color: var(--muted);
  text-align: center;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 18px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 37, 33, 0.42);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(92vh, 850px);
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 34px 90px rgba(40, 28, 24, 0.24);
}

.modal-panel h2 {
  margin-bottom: 26px;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: #4d413b;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffaf6;
  color: var(--ink);
  outline: 0;
  padding: 15px 16px;
  transition: border 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(184, 145, 82, 0.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(184, 145, 82, 0.12);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--gold);
  font-weight: 800;
  text-align: center;
}

.form-status.is-error {
  color: #9b4c42;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (min-width: 720px) {
  .header-nav {
    display: flex;
  }

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

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

@media (min-width: 940px) {
  .hero,
  .about-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
  }

  .product-card {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
  }

  .product-card:nth-child(even) .product-image {
    order: 2;
  }
}

@media (max-width: 560px) {
  .site-header {
    border-radius: 18px;
  }

  .brand small,
  .site-header .btn-small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 390px;
  }

  .hero-card {
    left: 14px;
    right: 14px;
    max-width: none;
  }

  .section-block {
    padding: 68px 0;
  }

  .modal-panel {
    padding: 24px 18px;
    border-radius: 24px;
  }
}

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