:root {
  --paper: #fbf7f0;
  --paper-2: #fffdf9;
  --cream: #f4eadf;
  --gold: #b88935;
  --gold-2: #caa35d;
  --ink: #1e1d1b;
  --muted: #6c645d;
  --line: rgba(184, 137, 53, 0.28);
  --shadow: 0 22px 48px rgba(84, 58, 30, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", Arial, sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(250px, auto) 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 13px min(7vw, 92px);
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid rgba(184, 137, 53, 0.15);
  backdrop-filter: blur(14px);
}

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

.brand img,
.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand small,
.footer-brand span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
}

.main-nav a {
  position: relative;
  color: #171717;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  left: 50%;
  bottom: -11px;
  width: 32px;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: translateX(-50%) scaleX(0);
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.header-cta,
.gold-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 24px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: linear-gradient(135deg, #b17d2b, #d0a75f);
  box-shadow: 0 12px 26px rgba(177, 125, 43, 0.24);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.header-cta:hover,
.gold-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(177, 125, 43, 0.32);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 575px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
  align-items: stretch;
  padding: 44px min(9vw, 122px) 0;
  background:
    linear-gradient(90deg, rgba(251,247,240,0.96) 0%, rgba(251,247,240,0.9) 47%, rgba(251,247,240,0.3) 100%),
    radial-gradient(circle at 90% 8%, rgba(202,163,93,0.16), transparent 28rem);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 620px;
  padding: 26px 0 70px;
  text-align: center;
}

.overline {
  margin: 0 0 8px;
  color: transparent;
  font-size: 0.01rem;
}

.hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--gold);
  font-size: 1.12em;
  letter-spacing: 0.24em;
}

.signature-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.signature-line::before,
.signature-line::after,
.section-title span {
  width: 46px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.hero h2 {
  margin: 8px 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 2.7vw, 2.45rem);
  font-weight: 500;
  line-height: 1.14;
}

.hero p:not(.overline):not(.signature-line) {
  max-width: 450px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.phone-link {
  display: table;
  margin: 15px auto 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.phone-link::before {
  color: var(--gold);
  content: "☏ ";
}

.hero-image {
  position: relative;
  align-self: end;
  min-height: 565px;
}

.hero-image img {
  position: absolute;
  right: -34px;
  bottom: 0;
  width: min(620px, 52vw);
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-top-left-radius: 300px;
  filter: saturate(0.92) contrast(1.02);
}

.botanical {
  position: absolute;
  width: 230px;
  height: 330px;
  opacity: 0.32;
  pointer-events: none;
}

.botanical::before,
.botanical::after {
  position: absolute;
  border: 1px solid var(--gold-2);
  border-right: 0;
  border-bottom: 0;
  content: "";
}

.botanical::before {
  left: 30px;
  top: 30px;
  width: 1px;
  height: 245px;
  transform: rotate(-17deg);
}

.botanical::after {
  left: 40px;
  top: 80px;
  width: 140px;
  height: 210px;
  border-radius: 80% 0 0 0;
}

.botanical-left {
  left: -28px;
  top: 150px;
}

.benefit-strip {
  position: relative;
  z-index: 6;
  width: min(980px, calc(100% - 36px));
  margin: -58px auto 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow);
}

.benefit-strip article {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 132px;
  padding: 20px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.benefit-strip article:last-child {
  border-right: 0;
}

.benefit-strip svg,
.treatment svg,
.why-grid svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-strip span,
.why-grid span {
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-section {
  width: min(990px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 66px;
  align-items: center;
  padding: 14px 0 66px;
}

.about-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: 11px 11px 0 rgba(184, 137, 53, 0.12);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  object-position: center 42%;
}

.about-copy h2 {
  margin: 0;
  color: var(--gold);
  font-family: "Great Vibes", cursive;
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 400;
  line-height: 0.9;
}

.spaced {
  margin: 12px 0 28px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.55em;
  text-transform: uppercase;
}

.about-copy p:not(.spaced):not(.gold-script) {
  max-width: 590px;
  color: #3b3834;
  line-height: 1.8;
}

.gold-script {
  color: var(--gold);
  font-family: "Great Vibes", cursive;
  font-size: 1.8rem;
  line-height: 1.15;
}

.treatments,
.results {
  padding: 14px min(7vw, 90px) 58px;
  background: var(--paper-2);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.treatment-grid {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.treatment {
  min-height: 202px;
  padding: 22px 14px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.treatment:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.treatment svg {
  margin: 0 auto 15px;
}

.treatment h3 {
  margin: 0 0 10px;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.treatment p {
  margin: 0 auto;
  max-width: 150px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

.why {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 50px min(7vw, 90px) 40px;
  background:
    linear-gradient(90deg, rgba(244,234,223,0.95), rgba(244,234,223,0.86)),
    url("../images/botox.jpg") right center/auto 100% no-repeat;
}

.why-grid {
  width: min(820px, 100%);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  margin-left: min(3vw, 44px);
}

.why-grid article {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.natural-line {
  margin: 34px 0 0 min(9vw, 100px);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.natural-line em {
  color: var(--gold);
  font-family: "Great Vibes", cursive;
  font-size: 1.45em;
  font-style: normal;
}

.why-face {
  display: none;
}

.botanical-right {
  right: 18px;
  bottom: 0;
  transform: scaleX(-1);
}

.results {
  padding-top: 50px;
}

.results-grid {
  width: min(1000px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.result-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

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

.result-card div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--gold);
  color: #fff;
}

.result-card span {
  display: grid;
  place-items: center;
  min-height: 28px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.result-card span:first-child {
  border-right: 1px solid rgba(255,255,255,0.5);
}

.results-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.final-cta {
  position: relative;
  min-height: 250px;
  display: grid;
  place-items: center;
  padding: 48px 24px 58px;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdf9, #f7eee4);
  text-align: center;
}

.final-cta p {
  max-width: 560px;
  margin: -12px auto 22px;
  color: var(--muted);
  line-height: 1.7;
}

.cta-logo-mark {
  position: absolute;
  right: 10%;
  bottom: 20px;
  width: 106px;
  opacity: 0.22;
}

.decor-vase {
  position: absolute;
  left: 8%;
  bottom: 0;
  width: 145px;
  height: 155px;
  opacity: 0.34;
  border: 12px solid var(--gold);
  border-top: 0;
  border-radius: 0 0 70px 70px;
}

.decor-vase::before,
.decor-vase::after {
  position: absolute;
  background: var(--gold);
  content: "";
}

.decor-vase::before {
  left: 50%;
  bottom: 105px;
  width: 2px;
  height: 90px;
  transform: rotate(-20deg);
}

.decor-vase::after {
  left: 56%;
  bottom: 145px;
  width: 60px;
  height: 30px;
  border-radius: 60px 60px 0 60px;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.25fr;
  gap: 26px;
  padding: 28px min(8vw, 108px);
  border-top: 1px solid var(--line);
  background: #fffdf9;
}

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

.footer nav,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer a,
.footer span {
  color: #2f2d2a;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-links span {
  font-size: 0.75rem;
}

.copyright {
  padding: 10px 18px;
  color: #fff;
  background: var(--gold);
  font-size: 0.75rem;
  text-align: center;
}

.float-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  background: #1fa855;
  box-shadow: 0 14px 30px rgba(31, 168, 85, 0.35);
  font-size: 1.35rem;
  font-weight: 900;
}

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

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

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    justify-self: end;
    display: grid;
    gap: 7px;
    width: 44px;
    height: 44px;
    padding: 13px 10px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #fff;
  }

  .menu-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: grid;
    gap: 2px;
    padding: 14px min(7vw, 92px);
    background: #fffdf9;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open a {
    padding: 12px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 24px;
  }

  .hero-copy {
    justify-self: center;
    padding-bottom: 30px;
  }

  .hero-image {
    min-height: 440px;
  }

  .hero-image img {
    left: 50%;
    right: auto;
    width: min(620px, 92vw);
    transform: translateX(-50%);
  }

  .benefit-strip,
  .about-section,
  .results-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .benefit-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-strip article:last-child {
    border-bottom: 0;
  }

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

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    min-height: 70px;
    padding: 10px 16px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

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

  .brand small {
    font-size: 0.56rem;
  }

  .hero {
    min-height: auto;
    padding: 22px 18px 0;
  }

  .hero-copy {
    width: min(360px, calc(100vw - 28px));
    max-width: min(360px, calc(100vw - 28px));
    overflow: visible;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.38rem, 6vw, 1.58rem);
    line-height: 1.05;
    letter-spacing: 0.035em;
    overflow-wrap: anywhere;
  }

  .hero h1 span {
    letter-spacing: 0.08em;
  }

  .hero h2 {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.36rem;
  }

  .hero p:not(.overline):not(.signature-line) {
    max-width: 305px;
    font-size: 0.95rem;
  }

  .signature-line {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
  }

  .signature-line::before,
  .signature-line::after,
  .section-title span {
    width: 26px;
  }

  .hero-image {
    min-height: 330px;
  }

  .benefit-strip {
    margin-top: -26px;
  }

  .about-section,
  .treatments,
  .why,
  .results {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-section {
    gap: 30px;
  }

  .about-copy h2 {
    font-size: 3.1rem;
  }

  .spaced {
    letter-spacing: 0.24em;
  }

  .treatment-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why {
    background: var(--cream);
  }

  .natural-line {
    margin-left: 0;
    text-align: center;
  }

  .decor-vase,
  .cta-logo-mark {
    display: none;
  }

  .footer {
    padding: 24px 18px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
