:root {
  --wine: #651f2b;
  --wine-deep: #3d1018;
  --rose: #b86a72;
  --sand: #d4b792;
  --cream: #f3ede4;
  --paper: #fbf8f3;
  --ink: #2b211f;
  --muted: #746663;
  --line: rgba(62, 35, 31, 0.16);
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); overflow-x: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { color: var(--cream); background: var(--wine); }

.skip-link { position: fixed; z-index: 999; top: 8px; left: 8px; padding: 10px 14px; background: var(--wine); color: white; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.site-header { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; height: 86px; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(24px, 5vw, 78px); border-bottom: 1px solid transparent; transition: .35s ease; }
.site-header.scrolled { height: 72px; background: rgba(251,248,243,.94); border-color: var(--line); backdrop-filter: blur(14px); }
.brand { display: flex; align-items: center; z-index: 2; }
.brand-logo { width: 104px; height: 74px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 46px); font-size: 13px; font-weight: 600; }
.site-nav > a:not(.nav-cta) { position: relative; padding: 28px 0; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; bottom: 20px; left: 0; width: 100%; height: 1px; background: var(--wine); transform: scaleX(0); transform-origin: right; transition: transform .3s; }
.site-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 13px 19px; color: white; background: var(--wine); border: 1px solid var(--wine); transition: .3s; }
.nav-cta:hover { background: transparent; color: var(--wine); }
.menu-toggle { display: none; border: 0; background: none; padding: 8px; }

.hero { min-height: 810px; padding: 150px clamp(24px, 6vw, 96px) 80px; display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(34px, 6vw, 100px); align-items: center; background: var(--cream); }
.hero-copy { max-width: 690px; }
.eyebrow { margin: 0 0 26px; display: flex; align-items: center; gap: 12px; color: var(--wine); font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow span { width: 34px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 26px; font: 400 clamp(64px, 7.3vw, 118px)/.82 var(--serif); letter-spacing: -.045em; }
h1 em, h2 em { color: var(--rose); font-weight: 400; }
.hero-lead { max-width: 560px; margin-bottom: 34px; color: var(--muted); font-size: clamp(16px, 1.3vw, 19px); line-height: 1.7; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 0 24px; border: 1px solid transparent; font-size: 13px; font-weight: 600; transition: .3s ease; }
.button svg { width: 17px; }
.button-primary { color: white; background: var(--wine); border-color: var(--wine); }
.button-primary:hover { color: var(--wine); background: transparent; }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 600; }
.text-link svg { width: 16px; transition: transform .3s; }
.text-link:hover svg { transform: translate(3px, -3px); }
.hero-proof { max-width: 610px; margin-top: 52px; padding-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.hero-proof > div { display: flex; gap: 12px; align-items: flex-start; }
.hero-proof strong { color: var(--rose); font: 24px var(--serif); }
.hero-proof span { color: var(--muted); font-size: 11px; line-height: 1.4; text-transform: uppercase; letter-spacing: .1em; }
.hero-visual { position: relative; min-height: 620px; }
.hero-photo { position: absolute; inset: 0 0 22px 7%; margin: 0; overflow: hidden; clip-path: polygon(12% 0,100% 0,100% 88%,86% 100%,0 100%,0 12%); }
.hero-photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); }
.hero-photo img { height: 100%; object-fit: cover; filter: saturate(.78) contrast(.98); }
.orbit-copy { position: absolute; left: -28px; top: 30px; width: 140px; height: 140px; color: var(--wine); font-size: 10px; letter-spacing: .22em; animation: spin 18s linear infinite; }
.orbit-copy::after { content: "✦"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 28px; }
.hero-note { position: absolute; right: -20px; bottom: 0; display: flex; align-items: center; gap: 12px; padding: 18px 20px; color: white; background: var(--wine); box-shadow: 0 18px 45px rgba(61,16,24,.22); font: 16px/1.35 var(--serif); }
.hero-note svg { width: 22px; color: var(--sand); }
@keyframes spin { to { transform: rotate(360deg); } }

.marquee { width: 100%; overflow: hidden; color: var(--cream); background: var(--wine); }
.marquee div { width: max-content; padding: 16px 0; font: 13px var(--serif); letter-spacing: .14em; animation: marquee 28s linear infinite; }
.marquee span { margin: 0 22px; color: var(--sand); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: clamp(90px, 10vw, 150px) clamp(24px, 6vw, 96px); }
.section-heading { margin-bottom: 66px; display: grid; grid-template-columns: 1fr .55fr; gap: 60px; align-items: end; }
.section-heading h2, .about h2, .faq h2, .final-cta h2, .method h2 { margin: 0; font: clamp(48px, 5.2vw, 80px)/.98 var(--serif); letter-spacing: -.035em; }
.section-heading > p { max-width: 480px; margin-bottom: 4px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.treatment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.treatment-card { position: relative; min-height: 305px; border: 1px solid var(--line); background: #fff; overflow: hidden; transition: transform .4s, box-shadow .4s; }
.treatment-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(50,30,25,.1); }
.treatment-card.featured { grid-row: span 2; }
.card-image { position: relative; height: 390px; overflow: hidden; }
.card-image img { height: 100%; object-fit: cover; transition: transform .8s; }
.treatment-card:hover .card-image img { transform: scale(1.04); }
.card-image span { position: absolute; top: 18px; left: 18px; padding: 9px 12px; color: white; background: var(--wine); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.card-body { min-height: 100%; display: grid; grid-template-columns: 70px 1fr; padding: 32px; }
.card-number { color: var(--rose); font: 20px var(--serif); }
.card-body h3, .image-card h3 { margin-bottom: 15px; font: clamp(28px, 2.8vw, 42px)/1.05 var(--serif); }
.card-body p { max-width: 560px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.card-body ul { display: flex; flex-wrap: wrap; gap: 12px 22px; list-style: none; padding: 15px 0 0; margin: 0; border-top: 1px solid var(--line); }
.card-body li { display: flex; align-items: center; gap: 8px; color: var(--wine); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.card-body li svg { width: 15px; }
.card-body a { position: absolute; right: 28px; bottom: 28px; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.card-body a:hover { color: white; background: var(--wine); }
.wine { color: var(--cream); background: var(--wine); border-color: var(--wine); }
.wine .card-number, .wine .card-body p { color: #e3c6bf; }
.wine .card-body a { border-color: rgba(255,255,255,.25); }
.wine .card-body a:hover { color: var(--wine); background: var(--cream); }
.image-card { min-height: 390px; }
.image-card > img { height: 100%; object-fit: cover; filter: saturate(.7); }
.image-card::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(35,15,15,.74)); }
.image-card-caption { position: absolute; z-index: 1; left: 28px; right: 28px; bottom: 25px; display: grid; grid-template-columns: 48px 1fr; color: white; }
.image-card-caption span { font: 20px var(--serif); color: var(--sand); }
.image-card-caption h3 { margin-bottom: 5px; }
.image-card-caption p { margin: 0; font-size: 13px; color: #eee0d9; }

.method { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 10vw, 160px); color: var(--cream); background: var(--wine-deep); }
.eyebrow.light { color: var(--sand); }
.method-intro > p:not(.eyebrow) { max-width: 510px; margin: 28px 0 34px; color: #cfbbb6; line-height: 1.75; }
.button-light { color: var(--wine-deep); background: var(--cream); border-color: var(--cream); }
.button-light:hover { color: var(--cream); background: transparent; }
.method-steps { list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(255,255,255,.15); }
.method-steps li { display: grid; grid-template-columns: 48px 1fr 38px; gap: 24px; padding: 29px 0; border-bottom: 1px solid rgba(255,255,255,.15); align-items: center; }
.method-steps > li > span { color: var(--sand); font: 18px var(--serif); }
.method-steps h3 { margin: 0 0 7px; font: 29px var(--serif); }
.method-steps p { margin: 0; color: #bfa9a4; font-size: 13px; line-height: 1.5; }
.method-steps svg { color: var(--sand); }

.about { display: grid; grid-template-columns: 1fr .84fr; align-items: center; gap: clamp(70px, 10vw, 155px); background: var(--cream); }
.about-collage { position: relative; min-height: 680px; }
.about-main { height: 620px; object-fit: cover; filter: saturate(.72); }
.award-card { position: absolute; right: -45px; bottom: 20px; width: 220px; height: 220px; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; color: white; background: var(--wine); }
.award-card svg { position: absolute; top: 25px; right: 25px; width: 32px; color: var(--sand); }
.award-card strong { margin-bottom: 7px; font: 25px/1 var(--serif); }
.award-card span { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.about-line { position: absolute; left: -25px; bottom: 23px; padding: 9px 12px; background: var(--sand); font-size: 9px; font-weight: 600; letter-spacing: .18em; transform: rotate(-90deg); transform-origin: left bottom; }
.about-lead { margin: 30px 0 22px; color: var(--ink) !important; font: 22px/1.5 var(--serif) !important; }
.about-copy > p:not(.eyebrow) { color: var(--muted); font-size: 15px; line-height: 1.75; }
.signature { margin: 28px 0 20px; color: var(--wine); font: italic 40px Georgia, serif; transform: rotate(-3deg); }
.burgundy { color: var(--wine); }

.testimonials { background: #fff; }
.section-heading.centered { display: block; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.testimonial-stage { max-width: 1060px; margin: auto; display: grid; grid-template-columns: 60px 1fr 60px; gap: 25px; align-items: center; }
.testimonial-slider { min-height: 320px; position: relative; }
.testimonial { position: absolute; inset: 0; margin: 0; padding: 45px clamp(30px, 6vw, 85px); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--cream); opacity: 0; transform: translateX(25px); pointer-events: none; transition: .5s ease; }
.testimonial.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.quote-mark { height: 42px; color: var(--rose); font: 74px/1 var(--serif); }
.testimonial > p { max-width: 720px; margin: 14px auto 25px; font: clamp(23px, 2.4vw, 36px)/1.35 var(--serif); }
.testimonial footer strong, .testimonial footer span { display: block; }
.testimonial footer strong { color: var(--wine); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.testimonial footer span { margin-top: 5px; color: var(--muted); font-size: 11px; }
.slider-button { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; transition: .3s; }
.slider-button:hover { color: white; background: var(--wine); }
.slider-dots { margin-top: 28px; display: flex; justify-content: center; gap: 9px; }
.slider-dots button { width: 25px; height: 3px; padding: 0; border: 0; background: #d7cbc4; cursor: pointer; }
.slider-dots button.active { background: var(--wine); }

.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(65px, 10vw, 150px); background: var(--cream); }
.faq-title > p:last-child { max-width: 430px; margin-top: 27px; color: var(--muted); line-height: 1.7; }
.accordion { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; padding: 25px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; text-align: left; border: 0; background: transparent; cursor: pointer; font: 23px var(--serif); }
.faq-item button svg { flex: 0 0 auto; width: 19px; transition: transform .3s; }
.faq-item > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-item > div p { overflow: hidden; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.faq-item.open > div { grid-template-rows: 1fr; }
.faq-item.open > div p { padding: 0 55px 25px 0; }
.faq-item.open button svg { transform: rotate(45deg); }

.final-cta { min-height: 500px; padding: clamp(80px, 9vw, 130px) clamp(24px, 8vw, 128px); position: relative; display: flex; align-items: center; overflow: hidden; color: var(--cream); background: var(--wine); }
.final-copy { position: relative; z-index: 1; }
.final-cta h2 { font-size: clamp(50px, 6vw, 92px); }
.final-cta h2 em { color: var(--sand); }
.final-copy > p:not(.eyebrow) { margin: 24px 0 30px; color: #e0c8c3; }
.final-word { position: absolute; right: -2vw; bottom: -8vw; color: rgba(255,255,255,.045); font: clamp(180px, 29vw, 460px)/1 var(--serif); letter-spacing: -.08em; }

.site-footer { padding: 55px clamp(24px, 6vw, 96px) 30px; display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 30px; color: #ccb8b3; background: #251114; }
.footer-brand { display: flex; align-items: center; color: var(--cream); }
.footer-logo { width: 118px; height: 100px; object-fit: contain; object-position: left center; }
.site-footer > p { margin: 0; font-size: 12px; }
.footer-links { display: flex; gap: 10px; }
.footer-links a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.footer-links svg { width: 16px; }
.site-footer small { grid-column: 1 / -1; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; }
.whatsapp-float { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 9px; padding: 13px 17px; color: white; background: #1f8f62; border-radius: 40px; box-shadow: 0 14px 30px rgba(20,80,55,.25); font-size: 12px; font-weight: 600; transition: transform .3s; }
.whatsapp-float:hover { transform: translateY(-4px); }
.whatsapp-float svg { width: 19px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .16s; }

@media (max-width: 1050px) {
  .site-nav { position: fixed; inset: 0; padding: 120px 30px 40px; flex-direction: column; align-items: flex-start; background: var(--cream); transform: translateX(100%); transition: transform .4s; font: 28px var(--serif); }
  .site-nav.open { transform: translateX(0); }
  .site-nav > a:not(.nav-cta) { padding: 8px 0; }
  .nav-cta { margin-top: 15px; font: 13px var(--sans); }
  .menu-toggle { display: block; z-index: 2; cursor: pointer; }
  .hero { grid-template-columns: 1fr; padding-top: 130px; }
  .hero-visual { min-height: 630px; }
  .hero-photo { left: 0; }
  .method, .about, .faq { grid-template-columns: 1fr; }
  .about-copy { max-width: 700px; }
  .method { gap: 70px; }
  .faq { gap: 60px; }
}

@media (max-width: 720px) {
  .site-header { height: 72px; padding: 0 20px; }
  .brand-logo { width: 82px; height: 60px; }
  .hero { min-height: auto; padding: 115px 20px 60px; }
  h1 { font-size: clamp(58px, 19vw, 82px); }
  .hero-proof { gap: 10px; }
  .hero-proof > div { display: block; }
  .hero-proof strong { display: block; margin-bottom: 5px; font-size: 18px; }
  .hero-proof span { font-size: 9px; }
  .hero-visual { min-height: 480px; }
  .hero-photo { inset: 0 0 15px 0; }
  .hero-note { right: -5px; }
  .orbit-copy { display: none; }
  .section { padding: 82px 20px; }
  .section-heading { display: block; margin-bottom: 44px; }
  .section-heading > p { margin-top: 24px; }
  .treatment-grid { grid-template-columns: 1fr; }
  .treatment-card.featured { grid-row: auto; }
  .card-image { height: 300px; }
  .card-body { grid-template-columns: 42px 1fr; padding: 25px 20px; }
  .card-body h3 { font-size: 30px; }
  .about-collage { min-height: 530px; }
  .about-main { height: 480px; }
  .award-card { right: 0; width: 175px; height: 175px; }
  .testimonial-stage { grid-template-columns: 1fr; }
  .testimonial-slider { min-height: 400px; }
  .slider-button { position: absolute; z-index: 2; margin-top: 450px; }
  .slider-button.next { right: 20px; }
  .slider-button.prev { left: 20px; }
  .slider-dots { margin-top: 66px; }
  .faq-item button { font-size: 20px; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer > p { grid-column: 1 / -1; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 50px; height: 50px; padding: 0; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
