:root {
  --black: #2a0d14;
  --charcoal: #3f1721;
  --brown-900: #f8efe4;
  --brown-800: #f1e2cf;
  --brown-700: #7a2a36;
  --gold-800: #8c643a;
  --gold-600: #b98555;
  --gold-400: #d8b77e;
  --cream: #f6eadb;
  --cream-2: #fffaf2;
  --muted: rgba(246, 234, 219, 0.78);
  --line: rgba(122, 42, 54, 0.18);
  --line-strong: rgba(122, 42, 54, 0.34);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", Arial, sans-serif;
  --container: min(1160px, calc(100vw - 40px));
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f8efe4;
  color: #32161b;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--cream-2);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(11, 10, 9, 0.84), rgba(11, 10, 9, 0.38));
  border-bottom: 1px solid rgba(212, 180, 119, 0.14);
  transition: background 220ms ease, min-height 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(11, 10, 9, 0.96);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-600);
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--gold-400);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.1;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.nav a {
  color: rgba(250, 247, 241, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.nav a:hover {
  color: var(--gold-400);
}

.header-actions {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: rgba(21, 18, 16, 0.86);
  color: var(--cream);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 0 auto 6px;
  background: var(--gold-400);
  transition: transform 180ms ease;
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
  color: #130f0b;
  box-shadow: 0 14px 28px rgba(185, 151, 91, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(185, 151, 91, 0.34);
}

.btn-outline {
  border-color: var(--line-strong);
  color: var(--cream-2);
  background: rgba(11, 10, 9, 0.28);
}

.btn-outline:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
}

.btn-small {
  min-height: 42px;
  padding-inline: 18px;
}

.btn-large {
  min-height: 56px;
  padding-inline: 28px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 118px 0 82px;
}

.hero-bg,
.final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(11, 10, 9, 0.96) 0%, rgba(11, 10, 9, 0.82) 42%, rgba(11, 10, 9, 0.48) 72%, rgba(11, 10, 9, 0.72) 100%),
    linear-gradient(180deg, rgba(11, 10, 9, 0.24) 0%, rgba(11, 10, 9, 0.58) 100%);
}

.hero::after,
.final-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, var(--black));
  z-index: -1;
}

.hero-content {
  max-width: 710px;
  margin-left: max(20px, calc((100vw - 1160px) / 2));
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--cream-2);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  font-size: clamp(52px, 6.6vw, 88px);
}

h2 {
  font-size: clamp(38px, 4.3vw, 62px);
}

h3 {
  font-size: 26px;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero-lede {
  margin-top: 24px;
  color: var(--cream-2);
  font-family: var(--sans);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.35;
}

.hero-copy {
  max-width: 600px;
  margin-top: 16px;
  font-size: 18px;
}

.price-block {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
  margin-top: 28px;
  padding: 18px 22px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: rgba(11, 10, 9, 0.36);
}

.price-block span,
.price-panel span {
  color: rgba(250, 247, 241, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.price-block strong {
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.9;
}

.microcopy {
  margin-top: 18px;
  color: rgba(250, 247, 241, 0.84);
  font-size: 14px;
  font-weight: 600;
}

.hero-proof {
  display: inline-flex;
  max-width: 100%;
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 22px;
  color: rgba(250, 247, 241, 0.8);
  font-size: 14px;
  font-weight: 600;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(21, 18, 16, 0.88);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 92px;
  padding: 16px;
  border-right: 1px solid var(--line);
  color: rgba(250, 247, 241, 0.84);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item svg,
.carousel-controls svg,
.mobile-whatsapp svg,
.mobile-maps svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-400);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: clamp(76px, 9vw, 132px) 0;
}

.editorial {
  background: linear-gradient(180deg, var(--black), var(--brown-900));
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.78fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
}

.editorial-copy p:not(.eyebrow) {
  max-width: 590px;
  margin-top: 18px;
  font-size: 18px;
}

.editorial-copy .btn {
  margin-top: 30px;
}

.editorial-image {
  position: relative;
  margin: 0;
  min-height: 620px;
  border: 1px solid var(--line-strong);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.editorial-image::before,
.gallery-grid figure::before,
.service-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212, 180, 119, 0.22);
  pointer-events: none;
  z-index: 2;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.therapies {
  background: var(--brown-900);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-heading.narrow {
  max-width: 760px;
  text-align: center;
  margin-inline: auto;
}

.section-heading p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 480px;
  display: grid;
  align-content: end;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--charcoal);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 10, 9, 0.08), rgba(11, 10, 9, 0.9) 76%, rgba(11, 10, 9, 0.98));
  z-index: 1;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card > div {
  position: relative;
  z-index: 3;
  padding: 28px;
}

.service-card h3 {
  font-size: 28px;
}

.service-card p {
  margin-top: 12px;
}

.service-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.service-actions a {
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 0 14px;
  border: 1px solid rgba(244, 215, 170, 0.42);
  background: rgba(42, 13, 20, 0.4);
}

.service-actions a:first-child {
  background: rgba(244, 215, 170, 0.92);
  color: #3f1721;
}

.price-section {
  padding: clamp(76px, 9vw, 132px) 0;
  background:
    linear-gradient(90deg, rgba(11, 10, 9, 0.92), rgba(36, 27, 22, 0.88)),
    linear-gradient(135deg, var(--black), var(--brown-800));
  border-block: 1px solid var(--line);
}

.price-grid,
.filter-grid,
.location-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.price-grid p {
  max-width: 610px;
  margin-top: 18px;
  font-size: 18px;
}

.price-panel {
  position: relative;
  padding: clamp(34px, 5vw, 56px);
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(21, 18, 16, 0.96), rgba(11, 10, 9, 0.96));
  box-shadow: var(--shadow);
}

.price-panel strong {
  display: block;
  margin-top: 18px;
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: clamp(78px, 8vw, 122px);
  line-height: 0.82;
}

.price-panel p {
  margin: 24px 0;
  font-size: 17px;
}

.filter-section {
  background: linear-gradient(180deg, var(--brown-900), var(--black));
}

.filter-statement {
  align-self: start;
}

.filter-statement p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--cream-2);
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 600;
}

.filter-list {
  padding-left: clamp(0px, 3vw, 40px);
  border-left: 1px solid var(--line);
}

.filter-list ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.filter-list li {
  position: relative;
  padding-left: 28px;
  color: var(--cream-2);
}

.filter-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 12px;
  height: 1px;
  background: var(--gold-400);
}

.premium-line {
  margin-bottom: 26px;
  color: var(--gold-400);
  font-weight: 700;
}

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

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.why-item {
  min-height: 290px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-item span {
  display: block;
  margin-bottom: 48px;
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: 34px;
}

.why-item h3 {
  font-size: 24px;
  line-height: 1.15;
}

.why-item p {
  margin-top: 14px;
}

.gallery-section {
  background: var(--brown-900);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr 0.9fr;
  grid-auto-rows: 230px;
  gap: 18px;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--charcoal);
}

.gallery-grid figure.feature {
  grid-row: span 2;
}

.gallery-grid figure:nth-child(3) {
  grid-column: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
  filter: saturate(0.94) contrast(1.06);
}

.reviews {
  background: var(--black);
}

.reviews-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-controls button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
}

.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-800) var(--brown-800);
  padding-bottom: 6px;
}

.review-card {
  scroll-snap-align: start;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(36, 27, 22, 0.74), rgba(21, 18, 16, 0.74));
}

.review-card p {
  color: var(--cream-2);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.review-card span {
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-cta {
  margin-top: 34px;
  text-align: center;
}

.location {
  background: linear-gradient(180deg, var(--black), var(--brown-900));
}

.location-copy > p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 18px;
}

address {
  margin-top: 30px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.8;
}

address strong,
.contact-list dt {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.contact-list div {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(21, 18, 16, 0.66);
}

.contact-list dd {
  margin: 0;
  color: var(--cream-2);
  line-height: 1.5;
}

.contact-list a:hover,
.map-card a:hover,
.site-footer a:hover {
  color: var(--gold-400);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.map-card {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.map-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.map-card div {
  padding: 30px;
}

.map-card h3 {
  margin-bottom: 18px;
  font-size: 38px;
  line-height: 1;
}

.map-card a {
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq {
  background: var(--brown-900);
}

.faq-grid {
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  color: var(--cream-2);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 34px 24px 0;
}

.final-cta {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(86px, 10vw, 150px) 0;
}

.final-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(11, 10, 9, 0.94), rgba(11, 10, 9, 0.74), rgba(11, 10, 9, 0.86)),
    linear-gradient(180deg, rgba(11, 10, 9, 0.28), rgba(11, 10, 9, 0.88));
}

.final-content {
  max-width: 760px;
  text-align: center;
}

.final-content .eyebrow {
  margin-bottom: 10px;
}

.final-content > strong {
  display: block;
  margin-bottom: 24px;
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: clamp(76px, 9vw, 132px);
  line-height: 0.8;
}

.final-content p:not(.eyebrow) {
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 18px;
}

.final-content .hero-ctas,
.final-content .hero-meta {
  justify-content: center;
}

.site-footer {
  padding: 44px 0 108px;
  background: var(--black);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.8fr;
  gap: 30px;
}

.site-footer p {
  margin-top: 14px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--gold-400);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  color: var(--muted);
  margin-top: 8px;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: none;
  grid-template-columns: minmax(0, 1fr) 52px 52px;
  gap: 8px;
  padding: 10px 12px max(10px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line-strong);
  background: rgba(11, 10, 9, 0.96);
  box-shadow: 0 -16px 44px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.mobile-cta a {
  min-height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-price,
.mobile-call {
  color: var(--gold-400);
}

.mobile-whatsapp,
.mobile-maps {
  color: var(--gold-400);
}

.mobile-book {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
  color: var(--black);
}

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

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

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

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

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

  .nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line-strong);
    background: rgba(11, 10, 9, 0.98);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: grid;
    gap: 4px;
  }

  .nav a {
    display: block;
    padding: 14px 10px;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions .btn {
    display: inline-flex;
  }

  .editorial-grid,
  .price-grid,
  .filter-grid,
  .location-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .filter-list {
    padding-left: 0;
    border-left: 0;
  }

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

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

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 620px);
  }

  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .site-header {
    min-height: 68px;
    padding: 12px 14px;
    gap: 10px;
  }

  .site-header.is-scrolled {
    min-height: 64px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand small {
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .header-actions .btn {
    min-height: 38px;
    max-width: 126px;
    padding: 0 12px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .nav {
    top: 68px;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
    padding: 96px 0 92px;
  }

  .hero-bg {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(11, 10, 9, 0.64), rgba(11, 10, 9, 0.88) 56%, rgba(11, 10, 9, 0.98) 100%),
      linear-gradient(90deg, rgba(11, 10, 9, 0.68), rgba(11, 10, 9, 0.42));
  }

  .hero-content {
    width: var(--container);
    margin: 0 auto;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  h1 {
    font-size: clamp(48px, 16vw, 68px);
  }

  h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-lede {
    margin-top: 16px;
    font-size: 19px;
  }

  .hero-copy {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.55;
  }

  .price-block {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
    padding: 14px 0;
    border-left: 0;
    border-right: 0;
    background: transparent;
  }

  .price-block span {
    max-width: 130px;
    font-size: 10px;
  }

  .price-block strong {
    font-size: 48px;
  }

  .microcopy {
    font-size: 12px;
    line-height: 1.5;
  }

  .hero-ctas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .hero .btn-large {
    min-height: 52px;
  }

  .hero-meta {
    margin-top: 16px;
    gap: 6px;
    font-size: 12px;
  }

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

  .trust-item {
    min-height: 80px;
    border-bottom: 1px solid var(--line);
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .trust-item:nth-child(2n) {
    border-right: 0;
  }

  .section {
    padding: 72px 0;
  }

  .editorial-copy p:not(.eyebrow),
  .section-heading p:not(.eyebrow),
  .price-grid p,
  .location-copy > p:not(.eyebrow),
  .final-content p:not(.eyebrow) {
    font-size: 16px;
  }

  .editorial-image {
    min-height: 460px;
  }

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

  .service-card {
    min-height: 390px;
  }

  .service-card h3 {
    font-size: 26px;
  }

  .price-panel {
    padding: 28px;
  }

  .price-panel strong {
    font-size: 82px;
  }

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

  .why-item {
    min-height: 220px;
  }

  .why-item span {
    margin-bottom: 32px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
    gap: 12px;
  }

  .gallery-grid figure.feature {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-grid figure:nth-child(3) {
    grid-column: span 2;
  }

  .reviews-top {
    align-items: start;
  }

  .carousel-controls {
    display: none;
  }

  .review-track {
    grid-auto-columns: 86%;
  }

  .review-card {
    min-height: 238px;
    padding: 24px;
  }

  .review-card p {
    font-size: 17px;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .location-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .faq-grid {
    gap: 10px;
  }

  summary {
    min-height: 66px;
    font-size: 15px;
  }

  .final-cta {
    min-height: 640px;
  }

  .final-content > strong {
    font-size: 82px;
  }

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

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 390px) {
  .header-actions .btn {
    display: none;
  }

  h1 {
    font-size: 47px;
  }

  .price-block strong {
    font-size: 44px;
  }
}

/* Beige + maroon refinement requested after the first build. */
.site-header {
  background: rgba(248, 239, 228, 0.92);
  border-bottom-color: rgba(122, 42, 54, 0.18);
  box-shadow: 0 10px 34px rgba(63, 23, 33, 0.08);
}

.site-header.is-scrolled {
  background: rgba(248, 239, 228, 0.98);
  box-shadow: 0 14px 34px rgba(63, 23, 33, 0.12);
}

.brand-logo {
  width: 188px;
  height: 88px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

.site-footer .brand {
  width: fit-content;
  padding: 16px 20px;
  background: #fffaf2;
  border: 1px solid rgba(216, 183, 126, 0.42);
  border-radius: 4px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.site-footer .brand-logo {
  width: 220px;
  height: 116px;
  mix-blend-mode: multiply;
}

.nav a {
  color: rgba(63, 23, 33, 0.78);
}

.nav a:hover {
  color: var(--brown-700);
}

.menu-toggle {
  border-color: rgba(122, 42, 54, 0.24);
  background: rgba(255, 250, 242, 0.88);
}

.menu-toggle span {
  background: var(--brown-700);
}

h1 {
  max-width: 620px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.12;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
}

.hero {
  min-height: 94svh;
}

.hero-bg {
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(42, 13, 20, 0.88), rgba(42, 13, 20, 0.58) 46%, rgba(42, 13, 20, 0.24)),
    linear-gradient(180deg, rgba(42, 13, 20, 0.14), rgba(42, 13, 20, 0.82));
}

.hero::after,
.final-cta::after {
  background: linear-gradient(180deg, transparent, #f8efe4);
}

.hero-lede {
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.45;
}

.hero-copy {
  max-width: 530px;
  font-size: 16px;
  line-height: 1.65;
}

.eyebrow,
.premium-line,
.service-card a,
.map-card a,
address strong,
.contact-list dt,
.review-card span {
  color: var(--brown-700);
}

.hero .eyebrow,
.hero .service-card a,
.hero .premium-line,
.final-cta .eyebrow {
  color: var(--gold-400);
}

.btn-primary {
  background: linear-gradient(180deg, #8f3542, #6f2430);
  color: #fffaf2;
  box-shadow: 0 14px 30px rgba(122, 42, 54, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 38px rgba(122, 42, 54, 0.28);
}

.btn-outline {
  border-color: rgba(122, 42, 54, 0.36);
  color: #6f2430;
  background: rgba(255, 250, 242, 0.62);
}

.hero .btn-outline,
.final-cta .btn-outline {
  border-color: rgba(255, 250, 242, 0.56);
  color: #fffaf2;
  background: rgba(63, 23, 33, 0.28);
}

.trust-strip,
.editorial,
.therapies,
.gallery-section,
.faq,
.location {
  background: #f8efe4;
  color: #32161b;
}

.trust-strip {
  border-block-color: rgba(122, 42, 54, 0.18);
}

.trust-item {
  color: #4b242b;
  border-color: rgba(122, 42, 54, 0.18);
}

.trust-item svg,
.carousel-controls svg,
.mobile-whatsapp svg,
.mobile-maps svg {
  stroke: var(--brown-700);
}

.section h2,
.section h3,
.location h2,
.location h3,
.faq h2 {
  color: #2a0d14;
}

.section p,
.location-copy > p:not(.eyebrow),
address,
.contact-list dd,
details p {
  color: rgba(50, 22, 27, 0.72);
}

.editorial-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.price-grid p,
.location-copy > p:not(.eyebrow),
.final-content p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.7;
}

.editorial-image,
.service-card,
.gallery-grid figure,
.review-card,
.contact-list div,
.map-card,
.price-panel,
.why-item {
  border-color: rgba(122, 42, 54, 0.18);
}

.editorial-image {
  min-height: 540px;
  box-shadow: 0 20px 54px rgba(63, 23, 33, 0.12);
}

.editorial-image::before,
.gallery-grid figure::before,
.service-card::before {
  border-color: rgba(255, 250, 242, 0.28);
}

.service-card {
  min-height: 420px;
  background: #3f1721;
}

.service-card h3 {
  color: #fffaf2;
  font-size: 23px;
}

.service-card p {
  color: rgba(255, 250, 242, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

.service-card a {
  color: #f4d7aa;
}

.service-actions a:first-child {
  color: #3f1721;
}

.price-section,
.filter-section,
.why,
.reviews,
.final-cta,
.site-footer {
  background: #3f1721;
}

.price-section {
  background:
    linear-gradient(90deg, rgba(63, 23, 33, 0.96), rgba(122, 42, 54, 0.92)),
    #3f1721;
  border-block-color: rgba(216, 183, 126, 0.22);
}

.price-section h2,
.price-section p,
.filter-section h2,
.filter-section p,
.filter-section li,
.why h2,
.why h3,
.why p,
.reviews h2,
.reviews p,
.final-cta h2,
.final-cta p,
.site-footer,
.site-footer p {
  color: #fffaf2;
}

.price-panel {
  background: rgba(255, 250, 242, 0.96);
  box-shadow: 0 20px 54px rgba(42, 13, 20, 0.2);
}

.price-panel span,
.price-panel p {
  color: rgba(50, 22, 27, 0.68);
}

.price-panel strong {
  color: #7a2a36;
  font-size: clamp(58px, 6vw, 88px);
}

.filter-list {
  border-left-color: rgba(216, 183, 126, 0.22);
}

.filter-list li::before {
  background: #d8b77e;
}

.why-grid {
  border-color: rgba(216, 183, 126, 0.2);
}

.why-item {
  border-color: rgba(216, 183, 126, 0.2);
}

.why-item span {
  color: #d8b77e;
  font-size: 26px;
}

.review-card {
  background: rgba(255, 250, 242, 0.96);
}

.review-card p {
  color: #32161b;
}

.location .contact-list div,
.map-card {
  background: rgba(255, 250, 242, 0.72);
}

summary {
  color: #32161b;
}

summary::after {
  color: #7a2a36;
}

.final-overlay {
  background:
    linear-gradient(90deg, rgba(42, 13, 20, 0.9), rgba(42, 13, 20, 0.62), rgba(42, 13, 20, 0.82)),
    linear-gradient(180deg, rgba(42, 13, 20, 0.08), rgba(42, 13, 20, 0.88));
}

.mobile-cta {
  background: rgba(248, 239, 228, 0.98);
  border-top-color: rgba(122, 42, 54, 0.24);
}

.mobile-cta a {
  border-color: rgba(122, 42, 54, 0.22);
  color: #6f2430;
}

.mobile-call,
.mobile-book {
  background: linear-gradient(180deg, #8f3542, #6f2430);
  color: #fffaf2 !important;
}

.mobile-whatsapp,
.mobile-maps {
  background: rgba(255, 250, 242, 0.72);
}

@media (max-width: 1040px) {
  .nav {
    background: rgba(248, 239, 228, 0.98);
    border-color: rgba(122, 42, 54, 0.22);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 78px;
  }

  .site-header.is-scrolled {
    min-height: 74px;
  }

  .nav {
    top: 78px;
  }

  .brand-logo {
    width: 148px;
    height: 68px;
  }

  .site-footer .brand {
    padding: 10px 12px;
  }

  .site-footer .brand-logo {
    width: 190px;
    height: 104px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 44px);
    line-height: 1.1;
  }

  h2 {
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.12;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    min-height: 92svh;
    padding-bottom: 84px;
  }

  .hero-bg {
    object-position: 52% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(42, 13, 20, 0.28), rgba(42, 13, 20, 0.86) 52%, rgba(42, 13, 20, 0.96)),
      linear-gradient(90deg, rgba(42, 13, 20, 0.74), rgba(42, 13, 20, 0.24));
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-copy,
  .editorial-copy p:not(.eyebrow),
  .section-heading p:not(.eyebrow),
  .price-grid p,
  .location-copy > p:not(.eyebrow),
  .final-content p:not(.eyebrow) {
    font-size: 14px;
  }

  .service-card {
    min-height: 360px;
  }

  .price-panel strong {
    font-size: 62px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 34px;
  }
}

.expanded-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 178px;
  gap: 14px;
}

.expanded-gallery figure.feature {
  grid-column: span 2;
  grid-row: span 2;
}

.expanded-gallery figure.tall {
  grid-row: span 2;
}

.expanded-gallery figure.wide {
  grid-column: span 2;
}

.expanded-gallery figure.brand-tile {
  grid-row: span 2;
}

.expanded-gallery figure:nth-child(3) {
  grid-column: auto;
}

.expanded-gallery figure {
  background: #4b1420;
  box-shadow: 0 14px 34px rgba(63, 23, 33, 0.08);
}

.expanded-gallery figure.feature img,
.expanded-gallery figure.wide img {
  object-position: center;
}

.expanded-gallery figure.tall img,
.expanded-gallery figure.brand-tile img {
  object-position: center;
}

@media (max-width: 1040px) {
  .expanded-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 170px;
  }

  .expanded-gallery figure.feature,
  .expanded-gallery figure.wide {
    grid-column: span 2;
  }
}

.brand-logo {
  width: 204px;
  height: 94px;
}

.site-footer .brand {
  padding: 18px 24px;
  background: #fff;
  border: 1px solid rgba(216, 183, 126, 0.58);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  isolation: isolate;
}

.site-footer .brand-logo {
  width: 232px;
  height: 122px;
}

.hero-bg {
  object-position: 62% center;
}

.service-card img {
  object-position: center 42%;
}

.gallery-shell {
  position: relative;
}

.gallery-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 16px;
}

.gallery-controls button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(122, 42, 54, 0.24);
  background: #fffaf2;
  color: #7a2a36;
  cursor: pointer;
}

.gallery-controls svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 46%);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: #8f3542 #f1e2cf;
  padding: 4px 2px 18px;
}

.gallery-slide {
  scroll-snap-align: start;
  min-height: 380px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(122, 42, 54, 0.18);
  background: #fffaf2;
  box-shadow: 0 18px 48px rgba(63, 23, 33, 0.12);
  cursor: zoom-in;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background: rgba(42, 13, 20, 0.92);
}

.lightbox.is-open {
  display: flex;
}

body.menu-open .mobile-cta {
  display: none;
}

.lightbox figure {
  width: min(1100px, 96vw);
  max-height: 92vh;
  margin: 0;
  display: grid;
  gap: 12px;
}

.lightbox img {
  width: 100%;
  max-height: calc(92vh - 52px);
  object-fit: contain;
  background: #fffaf2;
  border: 1px solid rgba(216, 183, 126, 0.36);
}

.lightbox figcaption {
  color: #fffaf2;
  text-align: center;
  font-size: 14px;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 242, 0.32);
  background: rgba(255, 250, 242, 0.12);
  color: #fffaf2;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.mobile-cta {
  grid-template-columns: minmax(0, 1fr) 62px;
}

.mobile-call {
  font-size: 11px;
}

.mobile-whatsapp {
  background: #fffaf2;
}

@media (max-width: 1040px) {
  .gallery-slider {
    grid-auto-columns: minmax(300px, 70%);
  }
}

@media (max-width: 760px) {
  .brand-logo {
    width: 158px;
    height: 72px;
  }

  .site-footer .brand {
    padding: 14px 16px;
    background: #fff;
  }

  .site-footer .brand-logo {
    width: 206px;
    height: 112px;
  }

  .hero-bg {
    object-position: 64% center;
  }

  .gallery-controls {
    display: none;
  }

  .gallery-slider {
    grid-auto-columns: 88%;
    gap: 12px;
  }

  .gallery-slide {
    min-height: 282px;
    padding: 10px;
  }

  .gallery-slide img {
    max-height: 300px;
  }

  .lightbox {
    padding: 14px;
  }
}

@media (max-width: 760px) {
  .expanded-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 152px;
    gap: 8px;
  }

  .expanded-gallery figure.feature {
    grid-column: span 2;
    grid-row: span 2;
  }

  .expanded-gallery figure.tall,
  .expanded-gallery figure.brand-tile {
    grid-row: span 2;
  }

  .expanded-gallery figure.wide {
    grid-column: span 2;
  }
}

/* Final typography and hero spacing polish. */
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
}

h1 {
  max-width: 600px;
  font-size: clamp(40px, 4.7vw, 62px);
  line-height: 1.12;
}

h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.18;
}

h3 {
  font-size: 22px;
}

.hero {
  padding-top: clamp(158px, 16vh, 200px);
}

.hero-content {
  padding-top: 58px;
}

.hero-lede {
  font-size: clamp(17px, 1.55vw, 22px);
}

.hero-copy {
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .hero {
    min-height: 96svh;
    padding-top: 136px;
    padding-bottom: 86px;
  }

  .hero-content {
    padding-top: 88px;
  }

  h1 {
    font-size: clamp(32px, 9.6vw, 40px);
    line-height: 1.14;
  }

  h2 {
    font-size: clamp(27px, 8.2vw, 36px);
  }

  .hero-lede {
    font-size: 15px;
  }

  .hero-copy {
    font-size: 13px;
    line-height: 1.62;
  }
}
