:root {
  --ivory: #fcfaf6;
  --cream: #f5eee4;
  --soft-gold: #f0dfb8;
  --champagne: #d9b663;
  --gold: #95651f;
  --gold-bright: #d2a84e;
  --brown: #321c12;
  --brown-2: #4a291c;
  --burgundy: #741f2d;
  --ink: #241814;
  --muted: #6f5b50;
  --white: #ffffff;
  --line: rgba(116, 31, 45, 0.13);
  --shadow: 0 22px 60px rgba(67, 32, 24, 0.12);
  --radius: 18px;
  --heading: "Montserrat", Arial, sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
h1, h2, h3, p { margin-top: 0; }
section[id] { scroll-margin-top: 96px; }

:focus-visible {
  outline: 3px solid var(--champagne);
  outline-offset: 4px;
}

.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 14px;
  top: -70px;
  z-index: 1000;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--brown);
  color: var(--white);
}
.skip-link:focus { top: 14px; }

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 21px;
  border: 1px solid #b9852d;
  border-radius: 10px;
  background: linear-gradient(135deg, #b47d25 0%, #dfbd6b 100%);
  color: #2f1d12;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(149, 101, 31, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.button:hover { background: var(--burgundy); border-color: var(--burgundy); color: var(--white); transform: translateY(-2px); }
.button-sm { min-height: 44px; padding: 10px 17px; }
.button-light { background: var(--white); border-color: var(--white); color: var(--brown); }
.button-light:hover { background: var(--champagne); border-color: var(--champagne); color: var(--brown); }
.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--champagne);
  font-size: 0.82rem;
  font-weight: 700;
}
.text-link span { color: var(--gold); }
.text-link.light { color: var(--white); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

.topbar { background: var(--burgundy); color: #fff9ef; }
.topbar-inner { height: 36px; display: flex; align-items: center; justify-content: space-between; }
.topbar-inner span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.68rem; letter-spacing: 0.035em; }
.topbar-inner i { color: var(--champagne); }
.topbar-mobile { display: none !important; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 82px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(15px);
}
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 27px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand img { width: 56px; height: 56px; border: 1px solid rgba(210, 168, 78, 0.45); border-radius: 12px; object-fit: cover; box-shadow: 0 7px 20px rgba(93, 58, 19, 0.13); }
.brand span { display: flex; flex-direction: column; line-height: 1.05; }
.brand strong { color: var(--gold); font: 700 1.2rem var(--heading); letter-spacing: 0.12em; text-transform: uppercase; }
.brand small { color: #715f54; font-size: 0.55rem; letter-spacing: 0.17em; text-transform: uppercase; }
.main-menu { display: flex; align-items: center; gap: 23px; }
.main-menu a { position: relative; color: #55443b; font-size: 0.75rem; font-weight: 700; }
.main-menu a::after { content: ""; position: absolute; right: 100%; bottom: -7px; left: 0; height: 2px; background: var(--gold); transition: right 0.2s ease; }
.main-menu a:hover::after { right: 0; }
.menu-button { display: none; width: 44px; height: 44px; padding: 8px; border: 0; background: transparent; cursor: pointer; }
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 6px 0; background: var(--brown); }

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 12% 13%, #fff 0, transparent 34%), linear-gradient(135deg, #fff 18%, #f6eee3 100%);
}
.hero-media { position: absolute; inset: 0; width: 100%; }
.hero-media picture, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media img { object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, #3e111b 0%, #3e111b 30%, rgba(62, 17, 27, 0.995) 44%, rgba(62, 17, 27, 0.86) 58%, rgba(62, 17, 27, 0.16) 79%, rgba(62, 17, 27, 0.03) 100%); pointer-events: none; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; }
.hero-copy { max-width: 650px; padding: 78px 0 70px; color: var(--white); text-shadow: 0 2px 16px rgba(35, 8, 15, 0.28); }
.hero-copy h1 {
  margin-bottom: 25px;
  color: var(--white);
  font: 600 clamp(3rem, 4.65vw, 4.8rem) / 1.01 var(--heading);
  letter-spacing: -0.055em;
}
.hero-copy h1 em { color: #e3bd64; font-style: normal; }
.hero-copy .eyebrow { color: #f0cd7c; }
.hero-lead { max-width: 570px; margin-bottom: 29px; color: #fff8ef; font-size: 1rem; }
.hero-actions { display: flex; align-items: center; gap: 25px; }
.hero-copy .text-link { color: var(--white); }
.hero-microcopy { display: flex; align-items: center; gap: 8px; margin: 27px 0 0; color: #fff5e9; font-size: 0.72rem; font-weight: 600; }
.hero-microcopy i { color: var(--gold); }

.trust-strip { border-block: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { min-height: 105px; display: grid; grid-template-columns: 42px 1fr; align-content: center; padding: 21px 24px; border-right: 1px solid var(--line); }
.trust-grid > div:first-child { border-left: 1px solid var(--line); }
.trust-grid > div > span { grid-row: 1 / 3; width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid #e2c58e; border-radius: 50%; background: #fff7e9; color: var(--gold); font-size: 0.85rem; }
.trust-grid strong { color: var(--brown); font: 600 0.95rem var(--heading); }
.trust-grid small { color: #715f54; font-size: 0.68rem; }

.section { padding: 84px 0; }
.section-heading h2 { margin-bottom: 17px; color: var(--brown); font: 600 clamp(2.2rem, 3.7vw, 3.55rem) / 1.07 var(--heading); letter-spacing: -0.045em; }
.section-heading > p:last-child { max-width: 630px; margin-bottom: 0; color: var(--muted); }
.section-heading.centered { max-width: 850px; margin: 0 auto 40px; text-align: center; }
.section-heading.centered > p:last-child { margin-inline: auto; }
.split-heading { display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: end; gap: 70px; margin-bottom: 38px; }
.split-heading > p { padding-bottom: 5px; }

.featured-services { background: linear-gradient(180deg, #fffaf2 0%, var(--ivory) 60%); }
.service-carousel { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.service-track { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.service-banner { position: relative; min-height: 520px; overflow: hidden; border: 1px solid rgba(210, 168, 78, 0.42); border-radius: var(--radius); box-shadow: var(--shadow); }
.service-banner picture, .service-banner picture img { width: 100%; height: 100%; display: block; object-fit: cover; }
.service-banner picture { position: absolute; inset: 0; }
.service-banner picture img { object-position: center; }
.service-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(35, 18, 11, 0.02) 20%, rgba(35, 18, 11, 0.25) 48%, rgba(35, 18, 11, 0.94) 100%); }
.service-copy { position: absolute; right: 34px; bottom: 34px; left: 34px; z-index: 2; color: var(--white); }
.service-index { color: #f0d7ad; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.service-copy h3 { margin: 11px 0 15px; font: 600 clamp(2.3rem, 3.2vw, 3.5rem) / 1 var(--heading); letter-spacing: -0.045em; }
.service-copy p { max-width: 450px; margin-bottom: 21px; color: #f4eae3; font-size: 0.83rem; }
.carousel-nav { display: none; }

.treatments { background: var(--white); }
.treatment-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.treatment-card { position: relative; min-height: 245px; padding: 29px 27px; border: 1px solid var(--line); border-radius: 15px; background: #fffefa; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
.treatment-card:hover { transform: translateY(-4px); background: #fff8ed; box-shadow: 0 15px 38px rgba(50, 28, 18, 0.09); }
.treatment-card > span { position: absolute; top: 24px; right: 25px; color: var(--champagne); font: 600 0.95rem var(--heading); }
.treatment-icon, .journey-icon { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid #e2c58e; border-radius: 50%; background: #fff7e9; color: var(--gold); }
.treatment-card h3 { margin: 26px 0 11px; color: var(--brown); font: 600 1.35rem / 1.18 var(--heading); letter-spacing: -0.025em; }
.treatment-card p { margin: 0; color: var(--muted); font-size: 0.77rem; }

.journey { background: linear-gradient(135deg, #f8f2e8, #fffdf8); }
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 0; margin: 0; list-style: none; }
.journey-grid li { position: relative; min-height: 260px; padding: 28px; border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 35px rgba(50, 28, 18, 0.07); }
.journey-grid li > span { position: absolute; top: 25px; right: 26px; color: var(--soft-gold); font: 700 1.15rem var(--heading); }
.journey-icon { margin-bottom: 26px; background: linear-gradient(135deg, #b47d25, #dfbd6b); border-color: #b9852d; color: #2f1d12; }
.journey-grid h3 { margin-bottom: 10px; color: var(--brown); font: 600 1.25rem var(--heading); }
.journey-grid p { margin: 0; color: var(--muted); font-size: 0.8rem; }

.results { padding: 84px 0; background: linear-gradient(180deg, #f7f0e7 0%, #fffdf9 100%); color: var(--ink); }
.results-heading { display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: end; gap: 70px; margin-bottom: 40px; }
.results-heading h2 { color: var(--burgundy); }
.results-heading > p { color: var(--muted); }
.results-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.result-card { overflow: hidden; border: 1px solid rgba(210, 168, 78, 0.36); border-radius: 15px; background: var(--white); color: var(--brown); box-shadow: 0 13px 34px rgba(66, 35, 24, 0.08); }
.result-image { position: relative; aspect-ratio: 3.15 / 1; overflow: hidden; background: #f8efe4; }
.result-image > img { width: 100%; height: 100%; object-fit: cover; }
.result-labels { position: absolute; top: 12px; right: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; pointer-events: none; }
.result-labels span { justify-self: center; padding: 5px 10px; border-radius: 5px; background: rgba(34, 23, 17, 0.76); color: var(--white); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.result-meta { padding: 20px 23px 22px; }
.result-meta span { display: block; margin-bottom: 4px; color: var(--gold); font-size: 0.61rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.result-meta strong { font: 600 1.14rem var(--heading); }
.results-note { display: flex; align-items: center; justify-content: space-between; gap: 35px; padding-top: 28px; }
.results-note p { max-width: 780px; margin: 0; color: var(--muted); font-size: 0.72rem; }
.results .text-link.light { color: var(--burgundy); }

.team { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.team-card { overflow: hidden; min-width: 0; padding: 15px 15px 25px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); text-align: center; }
.team-card.featured { border-color: rgba(210, 168, 78, 0.65); background: var(--burgundy); color: var(--white); box-shadow: 0 16px 38px rgba(116, 31, 45, 0.16); }
.team-photo { position: relative; height: 255px; margin: 0 0 20px; overflow: hidden; border-radius: 12px; background: var(--cream); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.anderson-card .team-photo { background: radial-gradient(circle at 50% 22%, #fff7e8 0, #ead6b6 58%, #966525 100%); }
.anderson-card .team-photo img { object-fit: contain; object-position: center bottom; filter: drop-shadow(0 14px 18px rgba(39, 20, 11, 0.2)); }
.team-card > span { color: var(--gold); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.team-card h3 { margin: 11px 0 6px; font: 600 1.05rem / 1.24 var(--heading); letter-spacing: -0.02em; }
.team-card p { margin: 0; color: #7a665a; font-size: 0.68rem; }
.featured p { color: #d7c5ba; }

.google-proof { padding: 45px 0; background: var(--burgundy); color: var(--white); }
.google-proof-inner { display: grid; grid-template-columns: 68px 1fr auto; align-items: center; gap: 28px; }
.google-icon { width: 62px; height: 62px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.28); border-radius: 50%; color: #f0d7ad; font-size: 1.35rem; }
.google-proof .eyebrow { color: #f0d7ad; }
.google-proof h2 { margin: 0 0 7px; font: 600 clamp(1.45rem, 2.5vw, 2.2rem) / 1.12 var(--heading); letter-spacing: -0.035em; }
.google-proof p:last-child { margin: 0; color: #ecdfe0; font-size: 0.78rem; }

.location { background: linear-gradient(135deg, #f8f3eb, #fffdf9); }
.location-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; align-items: stretch; gap: 55px; }
.location-copy h2 { margin-bottom: 20px; color: var(--brown); font: 600 clamp(2.25rem, 3.6vw, 3.5rem) / 1.07 var(--heading); letter-spacing: -0.045em; }
.location-copy > p { color: var(--muted); }
.location-copy dl { margin: 30px 0; }
.location-copy dl > div { display: grid; grid-template-columns: 125px 1fr; padding: 14px 0; border-top: 1px solid var(--line); }
.location-copy dt { color: var(--gold); font-size: 0.63rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.location-copy dd { margin: 0; color: #49382f; font-size: 0.8rem; }
.location-actions { display: flex; align-items: center; gap: 22px; }
.location-media { display: grid; grid-template-rows: minmax(470px, 1fr); min-width: 0; }
.map-shell { position: relative; min-height: 470px; overflow: hidden; border: 7px solid rgba(255,255,255,0.8); border-radius: var(--radius); background: #e9e2d8; box-shadow: var(--shadow); }
.map-shell > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.75); }
.map-shell-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: rgba(50, 28, 18, 0.26); }
.map-shell-overlay a { color: var(--white); font-size: 0.71rem; font-weight: 700; text-shadow: 0 1px 8px rgba(0,0,0,0.35); }
.map-load-button { min-height: 48px; padding: 12px 18px; border: 0; border-radius: 9px; background: var(--white); color: var(--brown); font-size: 0.78rem; font-weight: 700; cursor: pointer; box-shadow: 0 10px 30px rgba(35,20,12,0.22); }
.map-load-button i { margin-right: 7px; color: var(--gold); }
.map-shell iframe { width: 100%; height: 100%; min-height: 470px; border: 0; }

.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 75px; }
.faq-list details { padding: 19px 0; border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; min-height: 30px; list-style: none; cursor: pointer; font-size: 0.87rem; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--gold); font: 500 1.3rem var(--heading); transition: transform 0.2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 620px; margin: 0; padding: 11px 35px 0 0; color: var(--muted); font-size: 0.8rem; }

.final-cta { padding: 55px 0; background: linear-gradient(120deg, #a46d1d 0%, #d8b35f 55%, #efd493 100%); color: #2f1d12; }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 38px; }
.final-cta .eyebrow { color: #5e3a12; }
.final-cta h2 { max-width: 720px; margin: 0; font: 600 clamp(2rem, 3.4vw, 3.3rem) / 1.06 var(--heading); letter-spacing: -0.045em; }

.footer { position: relative; overflow: hidden; padding: 68px 0 23px; background: #3b121b; color: #dcc9c5; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 0.8fr 0.9fr 1fr; align-items: start; gap: 44px; }
.footer-brand strong { color: var(--champagne); }
.footer-brand small { color: #b9a294; }
.footer-intro p { max-width: 355px; margin: 22px 0 18px; font-size: 0.78rem; }
.footer-social { display: inline-flex; align-items: center; gap: 8px; color: var(--white); font-size: 0.73rem; }
.footer-social i, .footer-column i { color: var(--champagne); }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-column h3 { margin: 5px 0 11px; color: var(--white); font-size: 0.69rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-column a, .footer-column p { margin: 0; color: #cdbbad; font-size: 0.71rem; }
.footer-column strong { color: var(--white); }
.footer-column a:hover, .footer-social:hover { color: var(--champagne); }
.footer-bottom { display: flex; align-items: center; gap: 24px; margin-top: 42px; padding-top: 17px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.58rem; letter-spacing: 0.075em; text-transform: uppercase; }
.footer-bottom a { color: var(--white); }
.footer-bottom a:first-of-type { margin-left: auto; }

.whatsapp-float { position: fixed; right: 18px; bottom: 18px; z-index: 90; min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 17px; border: 1px solid #e1bd6a; border-radius: 999px; background: linear-gradient(135deg, #b47d25, #dfbd6b); color: #2f1d12; box-shadow: 0 12px 32px rgba(50,28,18,0.24); font-size: 0.72rem; }
.whatsapp-float i { font-size: 1.22rem; }

.legal-page { background: var(--white); }
.legal-hero { padding: 78px 0 50px; background: var(--cream); }
.legal-hero h1 { max-width: 800px; margin: 0; color: var(--brown); font: 600 clamp(2.2rem, 4vw, 3.8rem) / 1.05 var(--heading); letter-spacing: -0.045em; }
.legal-content { max-width: 850px; padding: 60px 0 85px; }
.legal-content h2 { margin-top: 35px; color: var(--brown); font: 600 1.35rem var(--heading); }
.legal-content p, .legal-content li { color: var(--muted); font-size: 0.9rem; }

@media (max-width: 1080px) {
  .desktop-cta { display: none; }
  .main-menu { gap: 18px; }
  .hero-copy h1 { font-size: 3.95rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-photo { height: 330px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-intro { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { padding-bottom: 72px; }
  .container { width: min(100% - 28px, 1160px); }
  section[id] { scroll-margin-top: 78px; }
  .topbar-inner { height: 34px; display: grid; place-items: center; text-align: center; }
  .topbar-desktop { display: none !important; }
  .topbar-mobile { display: block !important; font-size: 0.61rem !important; font-weight: 700; letter-spacing: 0.08em !important; text-transform: uppercase; }
  .site-header { height: 70px; }
  .brand img { width: 46px; height: 46px; border-radius: 10px; }
  .brand strong { font-size: 1rem; }
  .menu-button { display: block; position: relative; z-index: 102; }
  .main-menu { position: fixed; inset: 70px 0 auto; z-index: 101; display: flex; flex-direction: column; align-items: flex-start; gap: 0; padding: 12px 20px 24px; border-bottom: 1px solid var(--line); background: var(--ivory); opacity: 0; transform: translateY(-130%); transition: opacity 0.25s ease, transform 0.25s ease; }
  .main-menu.open { opacity: 1; transform: none; }
  .main-menu a { width: 100%; min-height: 48px; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-size: 0.9rem; }

  .hero { min-height: calc(100svh - 104px); align-items: end; }
  .hero-media { inset: 0; width: 100%; }
  .hero-media img { object-position: center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(43,14,20,0.02) 8%, rgba(43,14,20,0.22) 40%, rgba(43,14,20,0.94) 100%); }
  .hero-grid { display: block; }
  .hero-copy { max-width: 100%; padding: 42vh 0 35px; color: var(--white); text-shadow: 0 2px 15px rgba(25,13,8,0.35); }
  .hero-copy .eyebrow { color: #f0d7ad; }
  .hero-copy h1 { margin-bottom: 18px; color: var(--white); font-size: clamp(2.32rem, 10.8vw, 3.2rem); line-height: 1.03; }
  .hero-copy h1 em { color: #f1ce96; }
  .hero-lead { margin-bottom: 22px; color: #f5ece6; font-size: 0.86rem; line-height: 1.55; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .hero-actions .button { width: 100%; background: linear-gradient(135deg, #b47d25, #e1c06e); border-color: #d5ad55; color: #2f1d12; text-shadow: none; }
  .hero-actions .text-link { align-self: flex-start; color: var(--white); }
  .hero-microcopy { flex-wrap: wrap; margin-top: 15px; color: #f4e8df; font-size: 0.62rem; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .trust-grid > div { min-height: 92px; grid-template-columns: 37px 1fr; padding: 16px 13px; border-bottom: 1px solid var(--line); }
  .trust-grid > div:nth-child(odd) { border-left: 1px solid var(--line); }
  .trust-grid > div > span { width: 30px; height: 30px; }
  .trust-grid strong { font-size: 0.75rem; }
  .trust-grid small { font-size: 0.59rem; }

  .section, .results { padding: 59px 0; }
  .section-heading h2 { font-size: clamp(1.9rem, 8.7vw, 2.65rem); line-height: 1.09; }
  .section-heading > p:last-child { font-size: 0.83rem; }
  .section-heading.centered { margin-bottom: 31px; }
  .split-heading, .results-heading, .faq-grid { grid-template-columns: 1fr; gap: 24px; margin-bottom: 31px; }

  .featured-services { overflow: hidden; }
  .service-carousel { width: 100%; }
  .service-track { display: flex; gap: 13px; overflow-x: auto; padding: 0 14px 7px; scroll-padding: 14px; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-inline: contain; }
  .service-track::-webkit-scrollbar { display: none; }
  .service-banner { flex: 0 0 calc(100vw - 43px); min-height: 465px; scroll-snap-align: center; }
  .service-banner:nth-child(2) picture img { object-position: 56% center; }
  .service-copy { right: 23px; bottom: 25px; left: 23px; }
  .service-copy h3 { font-size: 2.2rem; }
  .service-copy p { font-size: 0.75rem; }
  .service-copy .button { min-height: 44px; padding: 10px 14px; font-size: 0.7rem; }
  .carousel-nav { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 14px 14px 0; color: var(--muted); }
  .carousel-nav > span { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; }
  .carousel-nav button { width: 44px; height: 44px; flex: 0 0 44px; border: 1px solid #dfc491; border-radius: 50%; background: var(--white); color: var(--gold); cursor: pointer; }
  .carousel-status { display: flex; gap: 5px; }
  .carousel-status span { width: 7px; height: 7px; border-radius: 50%; background: #d8c5ad; }
  .carousel-status span.active { background: var(--gold); }

  .treatment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .treatment-card { min-height: 225px; padding: 19px 14px 21px; }
  .treatment-card > span { top: 17px; right: 14px; font-size: 0.79rem; }
  .treatment-icon { width: 41px; height: 41px; font-size: 0.87rem; }
  .treatment-card h3 { margin: 20px 0 9px; font-size: 1.03rem; }
  .treatment-card p { font-size: 0.65rem; line-height: 1.52; }

  .journey-grid { grid-template-columns: 1fr; gap: 11px; }
  .journey-grid li { min-height: auto; padding: 22px 22px 23px 84px; }
  .journey-icon { position: absolute; top: 22px; left: 21px; margin: 0; }
  .journey-grid li > span { top: 18px; right: 19px; font-size: 0.83rem; }
  .journey-grid h3 { margin-bottom: 6px; font-size: 1.05rem; }
  .journey-grid p { font-size: 0.72rem; }

  .results-grid { grid-template-columns: 1fr; gap: 13px; }
  .result-image { aspect-ratio: 3 / 1; }
  .result-card:nth-child(3) .result-image { aspect-ratio: auto; }
  .result-card:nth-child(3) .result-image > img { height: auto; object-fit: contain; }
  .result-meta { padding: 17px 19px 19px; }
  .results-note { align-items: flex-start; flex-direction: column; gap: 14px; padding-top: 23px; }

  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .team-card { padding: 9px 9px 19px; }
  .team-photo { height: 205px; margin-bottom: 15px; }
  .team-card > span { font-size: 0.48rem; }
  .team-card h3 { font-size: 0.84rem; }
  .team-card p { font-size: 0.58rem; }

  .google-proof { padding: 38px 0; }
  .google-proof-inner { grid-template-columns: 48px 1fr; gap: 17px; }
  .google-icon { width: 48px; height: 48px; font-size: 1rem; }
  .google-proof h2 { font-size: 1.25rem; }
  .google-proof p:last-child { font-size: 0.69rem; }
  .google-proof .button { grid-column: 1 / -1; width: 100%; }

  .location-grid { grid-template-columns: 1fr; gap: 38px; }
  .location-copy h2 { font-size: 2.25rem; }
  .location-copy dl > div { grid-template-columns: 100px 1fr; }
  .location-actions { align-items: flex-start; flex-direction: column; gap: 10px; }
  .location-media { grid-template-rows: 330px; }
  .map-shell { min-height: 330px; }
  .map-shell iframe { min-height: 316px; }

  .faq-list summary { min-height: 44px; align-items: center; font-size: 0.8rem; }
  .final-cta { padding: 48px 0 92px; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .final-cta h2 { font-size: 2rem; }
  .final-cta .button { width: 100%; }

  .footer { padding: 57px 0 35px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 22px; }
  .footer-intro { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
  .footer-bottom a:first-of-type { margin-left: 0; }
  .whatsapp-float { right: 14px; bottom: 11px; left: 14px; min-height: 52px; font-size: 0.76rem; }
}

@media (max-width: 390px) {
  .hero-copy h1 { font-size: 2.45rem; }
  .service-banner { min-height: 440px; }
  .treatment-card { min-height: 218px; padding-inline: 12px; }
  .treatment-card h3 { font-size: 0.96rem; }
  .team-photo { height: 185px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-intro { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button, .treatment-card, .main-menu { transition: none; }
}
