/* The Thai Wellness Spa — shared PHP design system */
:root {
  --primary: #2f5148;
  --secondary: #dfe8dc;
  --accent: #b86f55;
  --background: #f7f2e9;
  --surface: #fffdf8;
  --dark-text: #23342f;
  --muted-text: #6a7771;
  --border: rgba(35, 52, 47, 0.14);
  --success: #47735f;
  --cta: #b86f55;
  --cta-hover: #96553f;
  --whatsapp: #2f8c68;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(35, 52, 47, 0.07);
  --shadow-md: 0 18px 50px rgba(35, 52, 47, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --mono: "Courier New", monospace;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --content-width: 1120px;
  --gutter: 20px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--dark-text);
  font: 16px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(var(--content-width), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; border: 0; clip: rect(0, 0, 0, 0); white-space: nowrap; }

.grid { display: grid; gap: 24px; }

.section {
  padding: 88px 0;
  border-top: 1px solid var(--border);
  content-visibility: auto;
  contain-intrinsic-size: 420px;
}

.section-heading { max-width: 720px; margin-bottom: 36px; }
.section-heading h2,
.section h2 {
  margin: 0;
  color: var(--dark-text);
  font: 400 clamp(2.3rem, 7vw, 4.3rem)/1.08 var(--serif);
  letter-spacing: -0.045em;
}

.section-heading p,
.section__note { max-width: 560px; color: var(--muted-text); }

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font: 700 11px/1.2 var(--sans);
  letter-spacing: .2em;
  text-transform: uppercase;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 30;
  padding: 10px 14px;
  background: var(--white);
}
.skip-link:focus { left: 20px; top: 20px; }

.announcement-bar {
  background: var(--primary);
  color: var(--white);
  font: 700 11px/1.2 var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.announcement-bar__inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 0;
  text-align: center;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 9;
  border-bottom: 1px solid var(--border);
  background: rgba(247, 242, 233, .94);
  backdrop-filter: blur(14px);
}

/* Buttons are intentionally consistent so every conversion action reads as a clear choice. */
.btn,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 21px;
  border: 1px solid var(--cta);
  border-radius: var(--radius-pill);
  background: var(--cta);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.btn:hover,
.button:hover { background: var(--cta-hover); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.btn:focus-visible,
.button:focus-visible,
a:focus-visible { outline: 3px solid rgba(184, 111, 85, .4); outline-offset: 3px; }
.btn-primary { background: var(--primary); border-color: var(--primary); }
.btn-primary:hover { background: #203d35; }
.btn-secondary,
.button--outline { background: transparent; color: var(--cta); }
.btn-secondary:hover,
.button--outline:hover { background: rgba(184, 111, 85, .08); }
.btn-whatsapp { background: var(--whatsapp); border-color: var(--whatsapp); }
.btn-whatsapp:hover { background: #236b50; }
.btn-walkin { background: var(--secondary); border-color: var(--secondary); color: var(--primary); }
.btn-walkin:hover { background: #cad9c8; }
.btn-directions { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-directions:hover { background: var(--secondary); }
.button--small { min-height: 42px; padding: 10px 16px; }
.button--light { background: var(--white); border-color: var(--white); color: var(--primary); }
.btn-light { background: var(--white); border-color: var(--white); color: var(--primary); }
.btn-light:hover { background: #f0e8da; border-color: #f0e8da; }

/* Keep the primary phone action visually unmistakable across every section. */
.btn[data-cta-type="call"],
.button[data-cta-type="call"],
.sticky-cta__call {
  gap: 10px;
}
.btn[data-cta-type="call"]::before,
.button[data-cta-type="call"]::before,
.sticky-cta__call::before {
  display: inline-grid;
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  content: "☎";
  font: 700 .9em/1 Arial, sans-serif;
  transition: transform .2s ease, background-color .2s ease;
}
.btn[data-cta-type="call"]:hover::before,
.btn[data-cta-type="call"]:focus-visible::before,
.button[data-cta-type="call"]:hover::before,
.button[data-cta-type="call"]:focus-visible::before,
.sticky-cta__call:hover::before,
.sticky-cta__call:focus-visible::before {
  background: rgba(255, 255, 255, .26);
  transform: rotate(-12deg) scale(1.1);
}
.btn.btn-primary[data-cta-type="call"] {
  box-shadow: 0 8px 22px rgba(47, 81, 72, .2);
}
.btn.btn-primary[data-cta-type="call"]:hover,
.btn.btn-primary[data-cta-type="call"]:focus-visible {
  box-shadow: 0 12px 28px rgba(47, 81, 72, .3);
}

.card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card, .offer-card, .massage-card { transition: transform .25s ease, box-shadow .25s ease; }

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  background: var(--secondary);
  color: var(--primary);
  font: 700 11px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.offer-card,
.massage-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.offer-card:hover,
.massage-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.offer-card h3,
.massage-card h3 { margin: 14px 0 8px; font: 400 1.65rem/1.15 var(--serif); }
.offer-card p,
.massage-card p { margin: 0; color: var(--muted-text); }

.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-item__icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--primary);
  font: 700 12px var(--mono);
}
.trust-item h3 { margin: 0 0 4px; font-size: 1rem; }
.trust-item p { margin: 0; color: var(--muted-text); font-size: 14px; }
.trust-grid { margin-top: 10px; }
.trust-card { display: flex; min-height: 132px; flex-direction: column; justify-content: center; padding: 24px; border-left: 3px solid var(--accent); background: var(--surface); box-shadow: var(--shadow-sm); }
.trust-card strong { color: var(--primary); font: 400 1.45rem/1.2 var(--serif); }
.trust-card__rating { font-size: 2.15rem !important; }
.trust-card span { margin-top: 8px; color: var(--muted-text); font-size: 13px; }
.difference-grid { margin-top: 10px; }
.difference-card h3 { margin: 18px 0 7px; font: 400 1.45rem/1.15 var(--serif); }
.difference-card p { margin: 0; color: var(--muted-text); font-size: 14px; }
.section-small-cta { margin-top: 34px; }
.finder-section { background: #eef2eb; }
.finder-grid { margin-top: 12px; }
.finder-card__icon { display: block; margin-bottom: 18px; font-size: 26px; }
.finder-grid .massage-card h3 { margin-top: 0; font-size: 1.35rem; }
.finder-actions { margin-top: 34px; }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}
.brand { display: flex; flex: 0 0 auto; align-items: center; gap: 12px; text-decoration: none; white-space: nowrap; }
.brand__mark {
  display: block;
  width: 36px;
  height: 36px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: var(--surface);
  object-fit: cover;
}
.brand > span:last-child { font-size: 15px; font-weight: 700; letter-spacing: .03em; }
.navbar__links { display: flex; align-items: center; gap: 26px; font-size: 14px; }
.navbar__links a:not(.button) { text-decoration: none; }
.navbar__phone { display: none; margin-left: auto; text-align: right; }
.navbar__phone span { display: block; color: var(--muted-text); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.navbar__phone .call-link-icon { display: inline; color: var(--accent); font-size: 1em; letter-spacing: 0; }
.navbar__phone a { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: 15px; font-weight: 700; text-decoration: none; }
.navbar__mobile-actions,
.mobile-menu { display: none; }

.hero {
  display: grid;
  min-height: 630px;
  align-items: center;
  background:
    radial-gradient(circle at 76% 28%, rgba(184, 201, 185, .72), transparent 32%),
    linear-gradient(110deg, var(--background) 0 62%, #e0e8dd 62%);
}
.hero__layout { display: grid; align-items: center; gap: 42px; }
.hero__inner { padding: 76px 0; }
.hero h1 {
  max-width: 780px;
  margin: 0;
  font: 400 clamp(3.4rem, 10vw, 6.8rem)/.98 var(--serif);
  letter-spacing: -.06em;
}
.hero h1 em { color: var(--primary); font-style: italic; }
.hero__subheading { max-width: 490px; margin: 22px 0 0; color: var(--primary); font: 400 clamp(1.45rem, 3vw, 2rem)/1.15 var(--serif); }
.hero__lede { max-width: 490px; margin: 26px 0; color: var(--muted-text); font-size: 19px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__actions .hero__call { box-shadow: 0 10px 26px rgba(184, 111, 85, .22); }
.hero__call span { margin-left: 2px; font-weight: 400; opacity: .9; }
.hero__location { max-width: 300px; margin: 22px 0 26px; color: var(--muted-text); font-size: 14px; }
.hero__visual { display: none; position: relative; }
.hero__visual-caption { position: absolute; right: 20px; bottom: 56px; margin: 0; padding: 8px 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(24,44,38,.72); color: #fffaf1; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 18px 24px; margin-top: 42px; color: var(--primary); font-size: 12px; font-weight: 700; }
.trust-strip .trust-item { align-items: center; gap: 8px; }
.trust-strip .trust-item__icon { width: 26px; height: 26px; font-size: 11px; }
.trust-strip .trust-item > span:last-child { display: flex; flex-direction: column; gap: 2px; }
.trust-strip small { color: var(--muted-text); font-size: 10px; font-weight: 400; }
.trust-proof-section { padding: 42px 0; background: var(--surface); }
.trust-strip--section { justify-content: space-between; margin-top: 0; padding-top: 8px; }
.trust-proof__heading { max-width: 680px; margin-bottom: 24px; }
.trust-proof-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 0; }
.trust-proof-grid .trust-card { min-height: 126px; align-items: flex-start; padding: 20px; border-left: 3px solid var(--accent); }
.trust-proof-grid .trust-card__icon { display: block; margin: 0 0 10px; color: var(--accent); font-size: 17px; line-height: 1; letter-spacing: .08em; }
.trust-proof-grid .trust-card strong { font-size: 1.08rem; }
.trust-proof-grid .trust-card span:not(.trust-card__icon) { margin-top: 6px; }
.visual-band,
.walkin-feature,
.experience-layout,
.local-seo-layout,
.final-cta__layout { display: grid; gap: 32px; }
.section-visual {
  position: relative;
  overflow: hidden;
  min-width: 0;
  margin: 0;
  border-radius: var(--radius-md);
  background: var(--primary);
  box-shadow: var(--shadow-md);
}
.section-visual picture,
.section-visual img { display: block; width: 100%; height: 100%; }
.section-visual img { object-fit: cover; }
.section-visual--landscape { aspect-ratio: 1.35 / 1; }
.section-visual--portrait { aspect-ratio: 1 / 1.05; }
.section-visual figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  background: rgba(35,52,47,.78);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.35;
  text-transform: uppercase;
}
.trust-proof__intro,
.finder-intro,
.difference-intro { align-items: end; }
.trust-proof__heading,
.finder-intro .section-heading,
.difference-intro .section-heading { margin-bottom: 0; }

.section--soft { background: var(--secondary); }
.section--stub { min-height: 220px; }
.offer-section { background: var(--primary); color: var(--white); }
.offer-section h2 { color: var(--white); font-size: clamp(2rem, 6vw, 3.7rem); }
.offer-section h3 { margin: 20px 0 10px; color: #f0d6c9; font: 400 clamp(1.6rem, 4vw, 2.3rem)/1.15 var(--serif); }
.offer-section__inner { display: grid; align-items: center; gap: 42px; }
.offer-section__description { max-width: 560px; margin: 0 0 14px; color: rgba(255,255,255,.8); font-size: 17px; }
.offer-section__terms { max-width: 560px; margin: 0 0 28px; color: #f0d6c9; font-size: 13px; }
.offer-section .eyebrow { color: #e5ad94; }
.offer-section .btn-primary { background: var(--accent); border-color: var(--accent); }
.offer-section .btn-primary:hover { background: var(--cta-hover); }
.offer-section__visual { display: grid; gap: 0; }
.offer-section__visual .offer-timer { position: relative; z-index: 1; margin: -52px 18px 0; }
.offers-list-section { background: var(--primary); color: var(--white); }
.offers-list-section h2 { color: var(--white); }
.offers-list-section .section-heading p:not(.eyebrow) { color: rgba(255,255,255,.76); }
.offers-list-section .eyebrow { color: #e5ad94; }
.offer-timer { padding: 30px; border: 1px solid rgba(255,255,255,.24); border-radius: var(--radius-md); background: rgba(255,255,255,.08); text-align: center; }
.offer-timer__label { margin: 0 0 18px; color: #f0d6c9; font: 700 11px/1.2 var(--sans); letter-spacing: .18em; text-transform: uppercase; }
.offer-timer__digits { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--white); font: 400 clamp(2.5rem, 8vw, 4.4rem)/1 var(--mono); }
.offer-timer__digits span { display: flex; flex-direction: column; align-items: center; }
.offer-timer__digits span[aria-hidden] { margin-top: -20px; color: #e5ad94; }
.offer-timer__digits small { margin-top: 10px; color: rgba(255,255,255,.65); font: 10px/1 var(--sans); letter-spacing: .15em; text-transform: uppercase; }
.offer-timer__note { margin: 22px 0 0; color: rgba(255,255,255,.65); font-size: 12px; }
.offer-cards { display: grid; gap: 14px; margin-top: 52px; }
.offer-card--dark { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.08); box-shadow: none; }
.offer-card--dark:hover { background: rgba(255,255,255,.13); box-shadow: none; }
.offer-card--dark .badge { background: rgba(255,255,255,.14); color: #f0d6c9; }
.offer-card--dark h3 { color: var(--white); font-size: 1.25rem; }
.offer-card--dark p { margin: 10px 0 0; color: rgba(255,255,255,.76); font-size: 13px; line-height: 1.5; }
.offer-card--dark .offer-card__audience { color: var(--white); font-weight: 700; }
.offer-card--dark .offer-card__why { color: rgba(255,255,255,.68); }
.offer-card--dark a { display: inline-block; margin-top: 18px; color: #f0d6c9; font-size: 13px; font-weight: 700; text-decoration: none; }
.offer-card--dark a:hover { color: var(--white); }
.major-call-section { background: var(--dark-text); color: var(--white); }
.major-call-section h2 { max-width: 700px; color: var(--white); }
.major-call-section p:not(.eyebrow) { max-width: 620px; margin: 18px 0 0; color: rgba(255,255,255,.78); font-size: 18px; }
.major-call-section .eyebrow { color: #e5ad94; }
.major-call-section__inner { display: grid; align-items: center; gap: 34px; }
.major-call-section__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.major-call-section__copy .major-call-section__actions { margin-top: 28px; }
.major-call-section .btn-primary { background: var(--accent); border-color: var(--accent); }
.major-call-section .btn-primary:hover { background: var(--cta-hover); }
.walkin-section { background: var(--secondary); }
.walkin-section .section-heading p { font-size: 18px; }
.walkin-special { display: flex; align-items: center; gap: 16px; margin: 30px 0 4px; padding: 18px 20px; border: 1px solid rgba(184,111,85,.35); border-radius: var(--radius-md); background: rgba(255,253,248,.68); }
.walkin-special .badge { flex: 0 0 auto; background: var(--accent); color: var(--white); }
.walkin-special strong { color: var(--primary); font: 400 1.2rem/1.2 var(--serif); }
.walkin-special > span:last-child { margin-left: auto; color: var(--muted-text); font-size: 12px; }
.walkin-steps { display: grid; gap: 0; margin: 44px 0 36px; padding: 0; list-style: none; border-top: 1px solid var(--border); }
.walkin-steps li { display: flex; align-items: center; gap: 18px; min-height: 68px; padding: 15px 0; border-bottom: 1px solid var(--border); }
.walkin-steps li span { color: var(--accent); font: 700 12px var(--mono); }
.walkin-steps li strong { font: 400 1.2rem var(--serif); }
.walkin-feature { align-items: center; margin-top: 42px; }
.walkin-feature .walkin-special { margin-top: 0; }
.walkin-feature .walkin-steps { margin-top: 28px; }
.treatments-section { background: var(--background); }
.treatments-grid { display: grid; align-items: start; gap: 22px; }
.treatment-card { display: flex; overflow: hidden; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.treatment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.treatment-card__image { display: block; width: 100%; height: auto; object-fit: contain; }
.treatment-card__body { display: flex; flex: 1; flex-direction: column; padding: 22px; }
.treatment-card__body .badge { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.treatment-card h3 { margin: 16px 0 8px; font: 400 1.55rem/1.12 var(--serif); }
.treatment-card__body > p { margin: 0; color: var(--muted-text); font-size: 14px; }
.treatment-card__best { display: flex; flex-direction: column; gap: 3px; margin-top: 18px !important; padding-top: 16px; border-top: 1px solid var(--border); }
.treatment-card__best strong { color: var(--primary); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.treatment-card__details { margin-top: 15px !important; color: var(--muted-text); font: 11px var(--mono); text-transform: uppercase; }
.treatment-card__cta { width: 100%; margin-top: auto; }
.treatment-card__whatsapp { width: 100%; margin-top: 10px; }
.decision-cta { background: #e8eee5; }
.decision-cta__inner { display: grid; align-items: center; gap: 34px; }
.decision-cta h2 { margin-bottom: 12px; }
.decision-cta p { max-width: 560px; margin: 0 0 10px; color: var(--muted-text); }
.decision-cta .decision-cta__lead { color: var(--primary); font: 400 1.6rem/1.2 var(--serif); }
.decision-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.decision-cta__copy .decision-cta__actions { margin-top: 24px; }
.split-service { display: grid; align-items: center; gap: 44px; }
.split-service__visual img { width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.split-service__copy h2 { margin-bottom: 20px; }
.split-service__copy > p:not(.eyebrow) { max-width: 480px; margin: 0 0 26px; color: var(--muted-text); font-size: 18px; }
.packages-section { background: var(--primary); color: var(--white); }
.packages-section h2 { color: var(--white); }
.packages-section__inner { display: grid; align-items: center; gap: 34px; }
.packages-section__inner > div:first-child > p:not(.eyebrow) { max-width: 560px; color: rgba(255,255,255,.78); font-size: 18px; }
.packages-section .eyebrow { color: #e5ad94; }
.packages-section__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.packages-section__copy .packages-section__actions { margin-top: 28px; }
.packages-section .btn-primary { background: var(--accent); border-color: var(--accent); }
.experience-section { background: var(--secondary); }
.experience-steps { display: grid; gap: 0; margin: 10px 0 36px; padding: 0; list-style: none; border-top: 1px solid var(--border); }
.experience-steps li { display: flex; align-items: flex-start; gap: 18px; min-height: 76px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.experience-steps span { color: var(--accent); font: 700 12px var(--mono); }
.experience-steps li > div { display: grid; gap: 4px; }
.experience-steps strong { font: 400 1.5rem/1.1 var(--serif); }
.experience-steps p { margin: 0; color: var(--muted-text); font-size: 14px; line-height: 1.45; }
.experience-layout { align-items: center; }
.gallery-section { background: var(--background); }
.gallery-grid { display: grid; gap: 14px; }
.gallery-item { position: relative; overflow: hidden; min-height: 220px; margin: 0; border-radius: var(--radius-md); background: var(--primary); box-shadow: var(--shadow-sm); }
.gallery-item picture { display: block; height: 100%; }
.gallery-item img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption { position: absolute; right: 14px; bottom: 14px; left: 14px; padding: 9px 12px; border-radius: var(--radius-sm); background: rgba(35,52,47,.78); color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.gallery-closing { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; margin-top: 42px; }
.gallery-closing h3 { margin: 0; font: 400 clamp(1.7rem, 4vw, 2.5rem)/1.15 var(--serif); }
.local-seo-copy { max-width: 760px; margin-top: 28px; color: var(--muted-text); }
.local-seo-copy p { margin: 0 0 16px; }
.local-seo-answer { max-width: 760px; margin-top: 30px; padding: 22px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--background); }
.local-seo-answer h3 { margin: 0 0 18px; color: var(--primary); font: 400 1.6rem/1.15 var(--serif); }
.local-seo-answer dl { display: grid; gap: 14px; margin: 0; }
.local-seo-answer dl > div { padding-top: 14px; border-top: 1px solid var(--border); }
.local-seo-answer dt { color: var(--primary); font-size: 13px; font-weight: 700; }
.local-seo-answer dd { margin: 4px 0 0; color: var(--muted-text); font-size: 13px; line-height: 1.5; }
.local-seo-answer a { color: var(--primary); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.location__address { margin: 24px 0 18px; color: var(--muted-text); font-style: normal; }
.location__contact { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 28px; }
.location__contact a { color: var(--primary); font-size: 14px; font-weight: 700; text-decoration: none; }
.location__visual { display: grid; gap: 12px; }
.reviews-section { background: var(--secondary); }
.reviews-section__inner { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 28px; }
.reviews-section h2 { color: var(--primary); font-size: clamp(4rem, 12vw, 7rem); }
.reviews-stars { color: var(--accent); font-size: 17px; letter-spacing: .1em; line-height: 1; }
.reviews-section__label { margin: 8px 0 0; color: var(--primary); font: 400 1.5rem var(--serif); }
.reviews-section__count { margin: 8px 0 0; color: var(--muted-text); font-size: 13px; }
.reviews-section__action { display: grid; gap: 14px; justify-items: start; }
.reviews-section__action p { margin: 0; color: var(--muted-text); font-size: 14px; }
.faq-list { max-width: 820px; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; cursor: pointer; list-style: none; font: 400 1.15rem var(--serif); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { color: var(--accent); font: 400 1.5rem var(--sans); }
.faq-item[open] summary span { transform: rotate(45deg); }
.faq-item p { max-width: 700px; margin: -4px 0 20px; color: var(--muted-text); font-size: 14px; }
.faq-closing { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 48px; }
.faq-closing h3 { margin: 0; font: 400 1.8rem var(--serif); }
.topic-coverage-section { background: var(--surface); }
.topic-coverage-section .section-heading { max-width: 780px; }
.topic-coverage-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.topic-coverage-card { padding: 22px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--background); }
.topic-coverage-card h3 { margin: 0 0 10px; color: var(--primary); font: 400 1.35rem/1.15 var(--serif); }
.topic-coverage-card p { margin: 0; color: var(--muted-text); font-size: 14px; line-height: 1.6; }
.topic-coverage-card a { color: var(--primary); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(184,111,85,.55); text-underline-offset: 3px; }
.location-section__heading { max-width: 780px; margin-inline: auto; text-align: center; }
.location-panel { display: grid; gap: 22px; }
.location-map-card { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--background); box-shadow: var(--shadow-sm); }
.location-map { min-height: 420px; background: #e6e4dc; }
.location-map__placeholder { display: grid; min-height: inherit; place-content: center; justify-items: center; gap: 10px; padding: 34px; background: radial-gradient(circle at 50% 30%, rgba(255,255,255,.8), transparent 42%), linear-gradient(135deg, #e6e4dc, #d8e1d6); color: var(--primary); text-align: center; }
.location-map__placeholder-icon { display: grid; width: 56px; height: 56px; place-items: center; border-radius: 50%; background: var(--primary); color: #e5be71; font-size: 30px; line-height: 1; }
.location-map__placeholder strong { font: 400 1.7rem/1.15 var(--serif); }
.location-map__placeholder p { max-width: 280px; margin: 0; color: var(--muted-text); font-size: 14px; }
.location-map__placeholder .button { border-color: var(--primary); color: var(--primary); }
.location-map__placeholder .button:hover { background: var(--primary); color: var(--white); }
.location-map__placeholder[hidden] { display: none; }
.location-map iframe[hidden] { display: none; }
.location-map iframe { display: block; width: 100%; height: 100%; min-height: 420px; border: 0; }
.location-map-card__footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 20px; background: var(--surface); color: var(--muted-text); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.location-map-card__footer a { color: var(--primary); text-decoration: none; }
.location-map-card__footer a:hover { color: var(--accent); }
.location-info-stack { display: grid; gap: 12px; }
.location-info-card { display: flex; align-items: flex-start; gap: 16px; min-height: 104px; padding: 20px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); color: var(--dark-text); text-decoration: none; box-shadow: 0 8px 22px rgba(35,52,47,.04); }
.location-info-card__icon { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border-radius: 12px; background: var(--primary); color: #e5be71; font-size: 23px; line-height: 1; }
.location-info-card h3, .location-info-card strong { display: block; margin: 0 0 5px; color: var(--primary); font: 700 14px/1.25 var(--sans); }
.location-info-card address, .location-info-card p { margin: 0 0 7px; color: var(--muted-text); font-size: 12px; line-height: 1.45; font-style: normal; }
.location-info-card a, .location-info-card > div > a { color: var(--accent); font-size: 11px; font-weight: 700; text-decoration: none; }
.location-info-card b { display: block; margin-bottom: 4px; color: var(--accent); font-size: 15px; }
.location-info-card small { display: block; color: var(--muted-text); font-size: 11px; line-height: 1.35; }
.location-info-card--link, .location-info-card--whatsapp { transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.location-info-card--link:hover, .location-info-card--whatsapp:hover { transform: translateY(-2px); border-color: rgba(184,111,85,.4); box-shadow: var(--shadow-sm); }
.location-info-card--whatsapp { background: #eef7ef; }
.location-info-card--whatsapp .location-info-card__icon { background: #d9f1df; color: var(--whatsapp); }
.location-info-card--whatsapp strong, .location-info-card--whatsapp b { color: var(--whatsapp); }
.location__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.location__actions .btn { flex: 0 1 auto; }
.section--cta { background: var(--primary); color: var(--white); }
.section--cta h2 { color: var(--white); }
.section--cta .eyebrow { color: #d9a38f; }
.final-cta h2 { font-size: clamp(3rem, 8vw, 6rem); }
.final-cta h2 em { color: #e5ad94; font-style: italic; }
.final-cta__layout { align-items: center; }
.section--cta .section-visual { border: 1px solid rgba(255,255,255,.18); box-shadow: 0 24px 70px rgba(0,0,0,.24); }
.final-cta__copy { max-width: 560px; margin: 22px 0 20px; color: rgba(255,255,255,.8); font-size: 18px; }
.final-cta__offer { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 30px; color: #f0d6c9; font-size: 13px; }
.final-cta__offer .badge { background: rgba(255,255,255,.14); color: #f0d6c9; }
.final-cta__call span { margin-left: 4px; font-weight: 400; opacity: .9; }
.final-cta__directions { border-color: rgba(255,255,255,.72); color: var(--white); }
.booking-dialog { width: 100%; max-width: 840px; margin: clamp(48px, 8vw, 96px) auto 0; scroll-margin-top: 92px; overflow: visible; padding: clamp(28px, 5vw, 48px); border: 1px solid rgba(255,255,255,.14); border-radius: 28px; background: #50483e; color: #f7f0e5; box-shadow: 0 28px 90px rgba(23,19,15,.42); }
.booking-dialog::backdrop { background: rgba(46,40,34,.82); backdrop-filter: blur(5px); }
.booking-dialog__header { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.booking-dialog__header h3 { margin: 0; color: #fffaf1; font: 400 clamp(1.8rem, 5vw, 2.5rem)/1.1 var(--serif); }
.booking-dialog__close { display: inline-flex; width: 40px; height: 40px; flex: 0 0 auto; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: rgba(255,255,255,.04); color: #f7f0e5; cursor: pointer; font-size: 26px; line-height: 1; }
.booking-dialog__intro { margin: 18px 0 34px; color: #d8cfc2; font-size: 16px; line-height: 1.55; }
.booking-progress { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 0 7% 42px; padding: 0; list-style: none; }
.booking-progress::before { position: absolute; top: 20px; right: 12%; left: 12%; height: 1px; background: rgba(255,255,255,.16); content: ''; }
.booking-progress li { position: relative; z-index: 1; display: flex; min-width: 0; align-items: center; gap: 10px; color: #bdb3a7; font-size: 12px; font-weight: 700; }
.booking-progress li[aria-current="step"] { color: #fffaf1; }
.booking-progress__number { display: inline-flex; width: 40px; height: 40px; flex: 0 0 auto; align-items: center; justify-content: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.08); color: #c9c0b3; font-size: 13px; }
.booking-progress li[aria-current="step"] .booking-progress__number { background: #c39a52; color: #fffaf1; }
.booking-progress li > span:last-child { position: relative; z-index: 1; padding: 3px 5px; border-radius: 4px; background: #50483e; white-space: nowrap; }
.booking-form { display: grid; gap: 16px; }
.booking-step { display: grid; gap: 28px; }
.booking-step[hidden] { display: none; }
.booking-step__heading { display: grid; gap: 4px; }
.booking-step__heading .eyebrow { margin-bottom: 0; }
.booking-step__heading h4 { margin: 0; color: #fffaf1; font: 400 clamp(1.55rem, 4vw, 2.1rem)/1.15 var(--serif); }
.booking-step__hint { margin: -6px 0 0; color: #d8cfc2; font-size: 13px; }
.booking-step__selection { margin: -12px 0 0; color: #c5bbaf; font-size: 15px; }
.booking-step__selection strong { color: #fffaf1; }
.booking-step__error { color: #e5ad94; }
.booking-form__fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.booking-form__fieldset legend { margin-bottom: 22px; color: #fffaf1; font: 400 clamp(1.55rem, 4vw, 2.1rem)/1.15 var(--serif); }
.booking-choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.booking-choice { position: relative; display: flex; min-height: 56px; align-items: center; padding: 13px 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: rgba(255,255,255,.025); color: #f1e9df; cursor: pointer; font-size: 15px; line-height: 1.25; transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease; }
.booking-choice:has(input:checked) { border-color: #c39a52; background: rgba(195,154,82,.2); box-shadow: 0 0 0 2px rgba(195,154,82,.14); color: #fffaf1; font-weight: 700; }
.booking-choice:has(input:focus-visible) { outline: 3px solid rgba(229,190,113,.55); outline-offset: 2px; }
.booking-choice input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.booking-slot-layout { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 28px; }
.booking-slot-group { min-width: 0; margin: 0; padding: 0; border: 0; }
.booking-slot-group legend { margin-bottom: 12px; color: #fffaf1; font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.booking-slot-grid { display: grid; gap: 10px; }
.booking-date-choices { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.booking-time-choices { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.booking-slot { min-height: 42px; padding: 8px 10px; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; background: rgba(255,255,255,.025); color: #eee5da; cursor: pointer; font: inherit; font-size: 13px; }
.booking-slot:hover { border-color: rgba(229,190,113,.7); background: rgba(195,154,82,.1); }
.booking-slot[aria-pressed="true"] { border-color: #c39a52; background: #9e7c4b; color: #fffaf1; font-weight: 700; }
.booking-slot:focus-visible { outline: 3px solid rgba(229,190,113,.55); outline-offset: 2px; }
.booking-form__row { display: grid; gap: 16px; }
.booking-form__field { display: grid; gap: 7px; }
.booking-form__field label { color: #fffaf1; font-size: 13px; font-weight: 700; }
.booking-form__field label span { color: #c5bbaf; font-weight: 400; }
.booking-form__field input, .booking-form__field select, .booking-form__field textarea { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; background: rgba(255,255,255,.06); color: #fffaf1; font: inherit; }
.booking-form__field select option { background: #fffaf1; color: #50483e; }
.booking-form__field textarea { resize: vertical; }
.booking-form__field input:focus-visible, .booking-form__field select:focus-visible, .booking-form__field textarea:focus-visible, .booking-dialog__close:focus-visible { outline: 3px solid rgba(229,190,113,.55); outline-offset: 2px; }
.booking-form__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.booking-form__actions .btn { flex: 1 1 180px; }
.booking-step[data-booking-step="1"] .booking-form__actions .btn { flex-basis: 100%; }
.booking-form__actions .btn-whatsapp { border-color: #c39a52; border-radius: 4px; background: #9e7c4b; color: #fffaf1; }
.booking-form__actions .btn-whatsapp:hover { background: #b08c55; }
.booking-form__actions .btn-secondary { border-color: rgba(255,255,255,.24); border-radius: 4px; background: transparent; color: #f7f0e5; }
.booking-summary { display: grid; gap: 0; margin: 0; border-top: 1px solid rgba(255,255,255,.16); }
.booking-summary > div { display: grid; grid-template-columns: minmax(90px, .35fr) 1fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.booking-summary dt { color: #c5bbaf; font-size: 12px; font-weight: 700; }
.booking-summary dd { margin: 0; color: #fffaf1; font-size: 14px; font-weight: 700; }
.booking-form__fallback { margin: 0; color: #c5bbaf; font-size: 13px; text-align: center; }
.booking-form__fallback a { color: #e5be71; font-weight: 700; }
.exit-popup { width: min(520px, calc(100% - 32px)); padding: 0; border: 0; border-radius: var(--radius-md); background: var(--surface); color: var(--dark-text); box-shadow: 0 24px 80px rgba(0,0,0,.3); }
.exit-popup::backdrop { background: rgba(35,52,47,.72); backdrop-filter: blur(4px); }
.exit-popup__content { padding: clamp(28px, 6vw, 48px); background: radial-gradient(circle at 100% 0, rgba(223,232,220,.8), transparent 48%), var(--surface); }
.exit-popup h2 { margin: 0; color: var(--primary); font: 400 clamp(2.3rem, 8vw, 4.4rem)/.98 var(--serif); letter-spacing: -.045em; }
.exit-popup h2 em { color: var(--accent); font-style: italic; }
.exit-popup__copy { margin: 22px 0 26px; color: var(--muted-text); font-size: 15px; line-height: 1.6; }
.exit-popup__claim { width: 100%; }
.exit-popup__dismiss { display: block; margin: 17px auto 0; padding: 4px 8px; border: 0; background: transparent; color: var(--muted-text); cursor: pointer; font: inherit; font-size: 13px; text-decoration: underline; text-underline-offset: 3px; }
.exit-popup__dismiss:hover { color: var(--primary); }
.exit-popup__dismiss:focus-visible { outline: 3px solid rgba(184,111,85,.4); outline-offset: 3px; }
.floating-cta { position: fixed; right: 24px; bottom: 24px; z-index: 8; display: flex; flex-direction: column; gap: 12px; pointer-events: none; }
.floating-cta__button { position: relative; display: grid; width: 56px; height: 56px; place-items: center; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; box-shadow: 0 10px 24px rgba(35,52,47,.2); pointer-events: auto; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.floating-cta__button:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(35,52,47,.28); }
.floating-cta__button:focus-visible { outline: 3px solid rgba(255,255,255,.95); outline-offset: 3px; }
.floating-cta__button::after { position: absolute; right: calc(100% + 10px); padding: 6px 9px; border-radius: 5px; background: var(--primary); color: var(--white); content: attr(aria-label); font-size: 11px; font-weight: 700; letter-spacing: .05em; opacity: 0; pointer-events: none; text-transform: uppercase; transform: translateX(5px); transition: opacity .2s ease, transform .2s ease; white-space: nowrap; }
.floating-cta__button:hover::after, .floating-cta__button:focus-visible::after { opacity: 1; transform: translateX(0); }
.floating-cta__button svg { width: 24px; height: 24px; fill: currentColor; }
.floating-cta__call { background: var(--cta); color: var(--white); }
.floating-cta__whatsapp { background: #dceee5; color: var(--whatsapp); }
.floating-cta__call { animation: call-pulse 3.8s ease-in-out infinite; }
@keyframes call-pulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(35,52,47,.2); }
  50% { box-shadow: 0 12px 28px rgba(184,111,85,.42); }
}
@media (prefers-reduced-motion: reduce) {
  .floating-cta__call { animation: none; }
}

.footer { padding: 72px 0 90px; background: var(--secondary); }
.footer__grid { display: grid; gap: 36px; }
.footer__logo { display: block; width: min(150px, 100%); height: auto; margin: 0 0 24px; border-radius: 50%; box-shadow: var(--shadow-sm); }
.footer__brand h2 { margin: 0 0 24px; color: var(--primary); font: 400 2rem/1.1 var(--serif); }
.footer__column { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer__column h3 { margin: 0 0 8px; color: var(--primary); font: 700 11px var(--sans); letter-spacing: .15em; text-transform: uppercase; }
.footer__column a { color: var(--muted-text); text-decoration: none; }
.footer__column a:hover { color: var(--primary); }
.footer__phone-link { display: inline-flex; align-items: center; gap: 8px; }
.call-link-icon { color: var(--accent); font-size: 1.1em; font-weight: 700; line-height: 1; }
.footer__address { color: var(--muted-text); font-size: 14px; }
.footer__bottom { margin-top: 40px; padding-top: 18px; border-top: 1px solid var(--border); color: var(--muted-text); }
.sticky-cta { display: none; }

@media (min-width: 600px) {
  :root { --gutter: 32px; }
  .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section { padding: 104px 0; }
  .treatments-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  :root { --gutter: 40px; }
  .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .location-panel { grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); align-items: stretch; gap: 22px; }
  .location-map { min-height: 460px; }
  .location-map iframe { min-height: 460px; }
  .hero__inner { padding: 100px 0; }
  .hero__layout { grid-template-columns: minmax(0, 1.06fr) minmax(300px, .76fr); gap: 70px; }
  .hero__visual { display: block; align-self: stretch; padding: 42px 0; }
  .hero__visual picture { display: block; height: 100%; }
  .hero__image { width: 100%; height: 100%; min-height: 500px; object-fit: cover; border-radius: 170px 170px 14px 14px; box-shadow: var(--shadow-md); }
  .offer-section__inner { grid-template-columns: minmax(0, 1fr) minmax(300px, .58fr); gap: 80px; }
  .offer-cards { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .treatments-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .major-call-section__inner { grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr); gap: 80px; }
  .decision-cta__inner { grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr); gap: 80px; }
  .visual-band { grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr); gap: 70px; }
  .walkin-feature { grid-template-columns: minmax(300px, .9fr) minmax(0, 1fr); gap: 70px; }
  .experience-layout,
  .local-seo-layout,
  .final-cta__layout { grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr); gap: 80px; }
  .major-call-section__copy,
  .decision-cta__copy,
  .packages-section__copy { min-width: 0; }
  .split-service { grid-template-columns: minmax(300px, .8fr) 1fr; gap: 80px; }
  .split-service__visual img { height: 360px; }
  .packages-section__inner { grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr); gap: 80px; }
  .footer__grid { grid-template-columns: 1.5fr repeat(4, 1fr); gap: 30px; }
  .booking-form__row { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); grid-auto-rows: 220px; }
  .trust-proof-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .trust-proof-grid .trust-card { min-height: 150px; }
  .gallery-item--featured { grid-column: span 6; grid-row: span 2; }
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) { grid-column: span 3; }
  .gallery-item:nth-child(n+4) { grid-column: span 2; }
  .gallery-item, .gallery-item img { min-height: 220px; }
  .location__visual { min-width: 0; }
}

@media (max-width: 899px) {
  .section { padding: 76px 0; }
  .hero {
    min-height: 0;
    background: radial-gradient(circle at 90% 15%, rgba(184, 201, 185, .8), transparent 40%), var(--background);
  }
  .hero__layout { grid-template-columns: 1fr; gap: 0; }
  .hero__inner { padding: 64px 0 44px; }
  .hero h1 { font-size: clamp(3rem, 8vw, 5.6rem); }
  .hero__visual { display: block; order: -1; padding: 0 0 28px; }
  .hero__image {
    width: 100%;
    height: clamp(300px, 58vw, 470px);
    min-height: 0;
    object-fit: cover;
    border-radius: 28px;
  }
  .hero__visual-caption { right: 12px; bottom: 78px; font-size: 9px; }
  .split-service { grid-template-columns: 1fr; gap: 36px; }
  .split-service__visual img {
    width: min(100%, 420px);
    height: auto;
    max-height: 560px;
    margin-inline: auto;
    object-fit: contain;
  }
}

@media (min-width: 1280px) {
  :root { --content-width: 1240px; }
  .section { padding: 128px 0; }
}

@media (min-width: 1000px) and (max-width: 1179px) {
  .navbar { gap: 18px; padding: 14px 0; }
  .brand { gap: 8px; }
  .brand__mark { width: 30px; height: 30px; }
  .brand > span:last-child { font-size: 13px; }
  .navbar__links { flex: 0 1 auto; gap: 14px; font-size: 12px; }
  .navbar__links .navbar__header-call { display: none; }
  .navbar__links .navbar__whatsapp { display: inline-flex; min-height: 36px; padding: 8px 12px; font-size: 11px; }
  .navbar__phone { display: block; min-width: 124px; margin-left: 8px; }
  .navbar__phone span { font-size: 9px; }
  .navbar__phone a { font-size: 13px; }
}

@media (max-width: 999px) {
  .site-header { z-index: 12; }
  .navbar__links,
  .navbar__phone { display: none; }
  .navbar__mobile-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
  .navbar__mobile-call { min-height: 42px; padding: 9px 13px; font-size: 12px; white-space: nowrap; }
  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    padding: 20px var(--gutter) 24px;
    border-top: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow-md);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu nav { display: grid; gap: 0; }
  .mobile-menu nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
  }
  .mobile-menu__actions { display: grid; gap: 10px; margin-top: 18px; }
  .mobile-menu__actions .button { width: 100%; }
  .mobile-menu-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--primary);
    border-radius: 50%;
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
  }
}

@media (max-width: 700px) {
  .site-header { z-index: 12; }
  .topic-coverage-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .navbar { gap: 8px; padding: 12px 0; }
  .brand { min-width: 0; flex: 1 1 auto; gap: 8px; white-space: normal; }
  .brand__mark { width: 34px; height: 34px; }
  .brand > span:last-child {
    max-width: calc(100vw - 190px);
    overflow-wrap: anywhere;
    font-size: clamp(12px, 3.6vw, 14px);
    line-height: 1.2;
  }
  .navbar__links,
  .navbar__phone { display: none; }
  .navbar__mobile-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
  .navbar__mobile-call { min-height: 40px; padding: 9px 10px; font-size: 11px; white-space: nowrap; }
  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    padding: 20px var(--gutter) 24px;
    border-top: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow-md);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu nav { display: grid; gap: 0; }
  .mobile-menu nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
  }
  .mobile-menu__actions { display: grid; gap: 10px; margin-top: 18px; }
  .mobile-menu__actions .button { width: 100%; }
  .mobile-menu-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--primary);
    border-radius: 50%;
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
  }
  .hero { min-height: 0; }
  .hero__inner { padding: 42px 0 36px; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .hero__subheading { margin-top: 18px; font-size: 1.35rem; }
  .hero__lede { margin: 18px 0; font-size: 16px; }
  .hero__location { margin: 16px 0 20px; }
  .hero__visual { padding-bottom: 42px; }
  .hero__image { height: min(88vw, 360px); border-radius: 22px; }
  .visual-band,
  .walkin-feature,
  .experience-layout,
  .local-seo-layout,
  .final-cta__layout { gap: 24px; }
  .offer-section__visual .offer-timer { margin: 0 12px; }
  .section-visual figcaption { right: 10px; bottom: 10px; left: 10px; padding: 8px 10px; font-size: 10px; }
  .walkin-feature { margin-top: 28px; }
  .hero__actions { gap: 10px; }
  .hero__actions .btn { min-width: 0; padding-inline: 12px; font-size: 12px; }
  .offer-section__inner { gap: 32px; }
  .offer-timer { padding: 24px 16px; }
  .walkin-special { align-items: flex-start; flex-wrap: wrap; gap: 10px 12px; }
  .walkin-special strong { flex: 1 1 calc(100% - 130px); }
  .walkin-special > span:last-child { flex: 1 1 100%; margin-left: 0; }
  .gallery-item--featured,
  .gallery-item--featured img { min-height: 300px; }
  .hero__call { width: 100%; }
  .hero__actions .btn:not(.hero__call) { flex: 1 1 calc(50% - 12px); }
  .hero__actions .btn-directions { flex-basis: 100%; }
  .booking-dialog {
    width: 100%;
    max-width: none;
    max-height: none;
    margin-top: 48px;
    overflow: visible;
    padding: 20px 16px;
  }
  .booking-dialog__header { gap: 10px; }
  .booking-dialog__intro { margin: 14px 0 18px; font-size: 13px; }
  .booking-progress { gap: 3px; margin-bottom: 20px; }
  .booking-choices { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .booking-choice { min-height: 50px; padding: 9px 10px; font-size: 12px; }
  .booking-form { gap: 14px; }
  .booking-step { gap: 18px; }
  .booking-form__actions .btn { flex: 1 1 100%; }
  .booking-progress { gap: 4px; }
  .booking-progress li { align-items: flex-start; flex-direction: column; gap: 4px; font-size: 9px; line-height: 1.1; text-align: center; }
  .booking-progress__number { margin-inline: auto; }
  .booking-summary > div { grid-template-columns: 1fr; gap: 3px; }
  .trust-strip { gap: 14px 16px; margin-top: 34px; }
  .trust-strip .trust-item { min-width: calc(50% - 10px); }
  .trust-proof-section { padding: 30px 0; }
  .trust-proof-grid .trust-card { min-height: 120px; padding: 16px; }
  .trust-proof-grid .trust-card strong { font-size: 1rem; }
  .finder-section,
  .major-call-section { padding: 64px 0; }
  .location { grid-template-columns: 1fr; gap: 30px; }
  .location__card { min-height: 0; padding: 24px; }
  .treatment-card__body { padding: 18px 16px 16px; }
  .treatment-card h3 { font-size: 1.35rem; }
  .footer__grid { flex-direction: column; }
  .sticky-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: flex;
    gap: 8px;
    padding: 10px;
    border-top: 1px solid var(--border);
    background: rgba(255, 253, 248, .96);
    box-shadow: 0 -8px 24px rgba(35, 52, 47, .08);
  }
  .sticky-cta a {
    flex: .9;
    padding: 11px 8px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
  }
  .sticky-cta a.sticky-cta__call { flex: 1.25; background: var(--cta); color: var(--white); font-size: 13px; }
  .sticky-cta__whatsapp { background: #dceee5; color: var(--whatsapp); }
  .sticky-cta__walkin { background: var(--secondary); color: var(--primary); }
  .sticky-cta__directions { background: #e7e0d1; color: var(--primary); }
  .floating-cta { right: 14px; bottom: 88px; gap: 9px; }
  .floating-cta__button { width: 50px; height: 50px; }
  .floating-cta__button svg { width: 21px; height: 21px; }
  .floating-cta__button::after { display: none; }
  body { padding-bottom: 76px; }
  html { scroll-padding-bottom: 84px; }
  .announcement-bar__inner { min-height: 42px; padding-inline: 10px; font-size: 9px; }
}

@media (min-width: 1180px) {
  .navbar__phone { display: block; }
  .navbar__links { gap: 20px; }
  .navbar__links .navbar__header-call { display: none; }
  .navbar__links .navbar__whatsapp { display: inline-flex; min-height: 40px; padding: 9px 14px; font-size: 12px; }
}

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