:root {
  --green-900: #0a3d38;
  --green-800: #114e47;
  --sage-200: #e3ebe3;
  --sage-500: #7d927e;
  --cream-50: #fffcf7;
  --cream-100: #f8f1e7;
  --beige-200: #eadccb;
  --rose-100: #f5ded6;
  --rose-300: #d5aa9c;
  --gold-400: #c69a70;
  --gold-500: #a97b54;
  --ink: #20302d;
  --muted: #697673;
  --line: #e8ded2;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(32, 48, 45, 0.11);
  --soft-shadow: 0 12px 28px rgba(32, 48, 45, 0.08);
  --shadow-hover: 0 22px 54px rgba(32, 48, 45, 0.16);
  --shadow-focus: 0 0 0 4px rgba(198, 154, 112, 0.18);
  --gradient-primary: linear-gradient(135deg, #0a3d38 0%, #147064 58%, #c69a70 130%);
  --gradient-soft: linear-gradient(135deg, rgba(255, 252, 247, 0.96), rgba(248, 241, 231, 0.74));
  --surface-glass: rgba(255, 252, 247, 0.76);
  --radius: 8px;
  --max-width: 1180px;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(140deg, rgba(227, 235, 227, 0.58) 0%, rgba(227, 235, 227, 0) 34%),
    linear-gradient(220deg, rgba(245, 222, 214, 0.52) 0%, rgba(245, 222, 214, 0) 36%),
    var(--cream-50);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
  animation: pageFade 520ms var(--ease-premium) both;
}

main {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--green-900);
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(198, 154, 112, 0.72);
  outline-offset: 3px;
}

@keyframes pageFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes textRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 14px 28px rgba(10, 61, 56, 0.24), 0 0 0 0 rgba(20, 112, 100, 0.22);
  }

  72% {
    box-shadow: 0 14px 28px rgba(10, 61, 56, 0.24), 0 0 0 15px rgba(20, 112, 100, 0);
  }

  100% {
    box-shadow: 0 14px 28px rgba(10, 61, 56, 0.24), 0 0 0 0 rgba(20, 112, 100, 0);
  }
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.section-pad {
  padding: 84px 0;
}

.section-pad.compact {
  padding: 64px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface-glass);
  border-bottom: 1px solid rgba(232, 222, 210, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.58);
  transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 252, 247, 0.9);
  border-color: rgba(198, 154, 112, 0.28);
  box-shadow: 0 12px 34px rgba(32, 48, 45, 0.1);
}

.header-inner {
  width: min(100% - 32px, 1240px);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: var(--green-900);
  font-weight: 700;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(10, 61, 56, 0.12);
  transition: transform 220ms var(--ease-premium), box-shadow 220ms ease;
}

.brand span {
  white-space: nowrap;
}

.brand:hover img {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 30px rgba(10, 61, 56, 0.18);
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-400), var(--green-900));
  border-radius: var(--radius);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease-premium);
}

.site-nav a:hover {
  color: var(--green-900);
}

.site-nav a.is-active {
  color: var(--green-900);
  font-weight: 800;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  isolation: isolate;
  transition: transform 220ms var(--ease-premium), box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.header-cta::after,
.btn::after,
.floating-whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 48%, transparent 76%);
  transform: translateX(-130%);
  transition: transform 620ms var(--ease-premium);
  pointer-events: none;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: var(--gradient-primary);
  box-shadow: 0 14px 28px rgba(10, 61, 56, 0.2);
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--gradient-primary);
  box-shadow: 0 18px 38px rgba(10, 61, 56, 0.27);
  transform: translateY(-3px);
}

.header-cta:hover::after,
.btn:hover::after,
.floating-whatsapp:hover::after {
  transform: translateX(130%);
}

.header-cta:active,
.btn:active,
.floating-whatsapp:active {
  transform: translateY(0) scale(0.985);
}

.header-cta.is-active {
  background: var(--green-800);
}

.btn-secondary {
  color: var(--green-900);
  background: var(--white);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--gold-400);
  box-shadow: var(--soft-shadow);
  transform: translateY(-2px);
}

.btn-card {
  width: 100%;
  margin-top: auto;
  color: var(--green-900);
  background: var(--sage-200);
  border-color: rgba(125, 146, 126, 0.22);
}

.btn-card:hover {
  background: var(--green-900);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.92), rgba(248, 241, 231, 0.92)),
    linear-gradient(112deg, rgba(227, 235, 227, 0.55), rgba(245, 222, 214, 0.36));
  border-bottom: 1px solid var(--line);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(248, 241, 231, 0.92), rgba(255, 252, 247, 0.92)),
    linear-gradient(118deg, rgba(227, 235, 227, 0.42), rgba(198, 154, 112, 0.12));
  border-bottom: 1px solid var(--line);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent 42%),
    linear-gradient(180deg, transparent 68%, rgba(255, 252, 247, 0.76));
  opacity: 0.82;
  pointer-events: none;
}

.hero > *,
.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero .section-heading {
  margin-bottom: 0;
}

.page-hero h1 {
  margin-bottom: 14px;
}

.hero.section-pad {
  padding: 54px 0 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-500);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.35rem;
  line-height: 1.05;
  font-weight: 600;
}

h2 {
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  line-height: 1.12;
  font-weight: 600;
}

h3 {
  color: var(--green-900);
  font-size: 1.12rem;
  line-height: 1.3;
}

.hero-subtitle {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 26px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--green-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9rem;
  box-shadow: 0 10px 22px rgba(32, 48, 45, 0.06);
  transition: transform 220ms var(--ease-premium), box-shadow 220ms ease, border-color 220ms ease;
}

.hero-notes span:hover {
  border-color: rgba(198, 154, 112, 0.5);
  box-shadow: 0 14px 28px rgba(32, 48, 45, 0.1);
  transform: translateY(-2px);
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .hero-subtitle,
.hero-copy .hero-actions,
.hero-copy .hero-notes {
  opacity: 0;
  transform: translateY(14px);
}

.hero-copy.is-visible .eyebrow {
  animation: textRise 620ms var(--ease-premium) 80ms both;
}

.hero-copy.is-visible h1 {
  animation: textRise 680ms var(--ease-premium) 170ms both;
}

.hero-copy.is-visible .hero-subtitle {
  animation: textRise 680ms var(--ease-premium) 260ms both;
}

.hero-copy.is-visible .hero-actions {
  animation: textRise 680ms var(--ease-premium) 350ms both;
}

.hero-copy.is-visible .hero-notes {
  animation: textRise 680ms var(--ease-premium) 440ms both;
}

.hero-visual.is-visible .logo-frame {
  animation: softFloat 7s ease-in-out 900ms infinite;
}

.hero-visual {
  display: grid;
  gap: 18px;
  place-items: center;
  padding: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 252, 247, 0.7));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
}

.logo-frame {
  display: grid;
  place-items: center;
  width: min(100%, 350px);
  aspect-ratio: 1;
  padding: 18px;
  background: linear-gradient(145deg, var(--green-900), #0f5750);
  border: 1px solid rgba(198, 154, 112, 0.65);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(10, 61, 56, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-info {
  width: min(100%, 340px);
  padding: 18px;
  background: rgba(255, 252, 247, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(12px);
}

.hero-info strong,
.hero-info span {
  display: block;
}

.hero-info strong {
  color: var(--green-900);
  margin-bottom: 4px;
}

.hero-info span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.trust {
  background: var(--cream-50);
}

.home-preview {
  background: var(--white);
}

.preview-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 210px;
  padding: 26px;
  background: linear-gradient(145deg, var(--white), rgba(255, 252, 247, 0.86));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 240ms var(--ease-premium), box-shadow 240ms ease, border-color 240ms ease, background-color 240ms ease;
}

.preview-card::before,
.benefit-card::before,
.service-card::before,
.contact-card::before,
.booking-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(198, 154, 112, 0.08));
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.preview-card:hover {
  border-color: rgba(198, 154, 112, 0.58);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.preview-card:hover::before,
.benefit-card:hover::before,
.service-card:hover::before,
.contact-card:hover::before,
.booking-form:focus-within::before {
  opacity: 1;
}

.preview-card p {
  color: var(--muted);
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(248, 241, 231, 0.94), rgba(255, 252, 247, 0.96)),
    linear-gradient(90deg, rgba(227, 235, 227, 0.5), rgba(245, 222, 214, 0.38));
}

.cta-inner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.cta-inner h2,
.cta-inner p {
  margin-bottom: 0;
}

.cta-inner p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 10px;
}

.benefits-grid,
.cards-grid {
  display: grid;
  gap: 18px;
}

.benefits-grid {
  grid-template-columns: repeat(6, 1fr);
}

.benefit-card,
.service-card,
.package-card,
.contact-card,
.booking-form {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 240ms var(--ease-premium), box-shadow 240ms ease, border-color 240ms ease;
}

.benefit-card {
  min-height: 190px;
  padding: 22px;
}

.benefit-card:hover,
.service-card:hover,
.contact-card:hover {
  border-color: rgba(198, 154, 112, 0.58);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.benefit-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold-500);
  font-size: 0.82rem;
  font-weight: 800;
}

.benefit-card p,
.service-card p,
.package-card p {
  color: var(--muted);
}

.cards-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.treatments {
  background: var(--white);
}

.treatments.facial {
  background: var(--cream-100);
}

.service-card,
.package-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
}

.card-topline {
  width: 54px;
  height: 4px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--gold-400), var(--green-900));
  border-radius: var(--radius);
  transition: width 240ms var(--ease-premium);
}

.service-card:hover .card-topline {
  width: 78px;
}

.service-card ul,
.package-card ul {
  padding-left: 20px;
  margin: 0 0 22px;
  color: var(--muted);
}

.service-card li,
.package-card li {
  margin-bottom: 8px;
}

.service-meta {
  margin: 0 0 18px;
  padding: 12px 14px;
  color: var(--green-900);
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 700;
}

.packages {
  background: var(--cream-50);
}

.package-card {
  background: linear-gradient(145deg, var(--green-900), #0f5750);
  border-color: rgba(198, 154, 112, 0.4);
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(198, 154, 112, 0.16));
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.package-card:hover {
  border-color: rgba(198, 154, 112, 0.72);
  box-shadow: 0 24px 54px rgba(10, 61, 56, 0.24);
  transform: translateY(-5px);
}

.package-card:hover::before {
  opacity: 1;
}

.package-card h3,
.package-card li {
  color: var(--white);
}

.package-card .btn-card {
  background: var(--cream-100);
}

.package-card .btn-card:hover {
  background: var(--gold-400);
  color: var(--green-900);
}

.results {
  background: var(--white);
}

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

.legal-note {
  padding: 14px 16px;
  color: var(--green-900);
  background: var(--rose-100);
  border: 1px solid rgba(213, 170, 156, 0.5);
  border-radius: var(--radius);
}

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

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 240ms var(--ease-premium), box-shadow 240ms ease, border-color 240ms ease;
}

.gallery-item:hover {
  border-color: rgba(198, 154, 112, 0.58);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.gallery-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
}

.gallery-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(10, 61, 56, 0.16));
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.gallery-trigger:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 4px;
}

.gallery-trigger img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 260ms var(--ease-premium), filter 260ms ease;
}

.gallery-item:hover .gallery-trigger img,
.gallery-trigger:focus-visible img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035);
}

.gallery-item:hover .gallery-trigger::after,
.gallery-trigger:focus-visible::after {
  opacity: 1;
}

.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(86px, 0.12fr) 1fr minmax(86px, 0.12fr);
  grid-template-rows: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: rgba(10, 61, 56, 0.92);
  backdrop-filter: blur(12px);
}

.lightbox-image {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  width: auto;
  max-width: min(100%, 980px);
  max-height: calc(100vh - 128px);
  object-fit: contain;
  background: var(--cream-50);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.lightbox-close,
.lightbox-nav {
  min-height: 46px;
  padding: 11px 14px;
  color: var(--green-900);
  background: var(--cream-50);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.lightbox-close {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.lightbox-prev {
  grid-column: 1;
  grid-row: 2;
}

.lightbox-next {
  grid-column: 3;
  grid-row: 2;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  background: var(--gold-400);
  color: var(--green-900);
}

.faq {
  background: var(--cream-100);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(32, 48, 45, 0.06);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease-premium);
}

.faq-item:hover {
  border-color: rgba(198, 154, 112, 0.48);
  box-shadow: var(--soft-shadow);
  transform: translateY(-2px);
}

.faq-item button {
  width: 100%;
  padding: 20px 22px;
  color: var(--green-900);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 800;
  transition: background-color 180ms ease;
}

.faq-item button:hover {
  background: rgba(248, 241, 231, 0.58);
}

.faq-item button::after {
  content: "+";
  float: right;
  color: var(--gold-500);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.booking {
  background: var(--white);
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 34px;
}

.booking-copy {
  position: sticky;
  top: 106px;
}

.booking-copy p:not(.eyebrow),
.contact-card dd {
  color: var(--muted);
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-points a,
.contact-points span {
  padding: 14px 16px;
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-points a {
  color: var(--green-900);
  font-weight: 800;
}

.booking-form {
  padding: 28px;
}

.booking-form.is-sending {
  border-color: rgba(198, 154, 112, 0.68);
  box-shadow: var(--shadow-hover);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row {
  margin-bottom: 16px;
}

.form-row label,
.treatment-fieldset legend {
  display: block;
  margin-bottom: 8px;
  color: var(--green-900);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.form-row textarea {
  min-height: 118px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold-400);
  background: var(--white);
  box-shadow: var(--shadow-focus);
  transform: translateY(-1px);
}

.form-row:focus-within label {
  color: var(--gold-500);
}

.form-row.has-error input,
.form-row.has-error select,
.form-row.has-error textarea,
.treatment-fieldset.has-error {
  border-color: rgba(181, 72, 72, 0.55);
  box-shadow: 0 0 0 4px rgba(181, 72, 72, 0.1);
}

.treatment-fieldset {
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
}

.checkbox-grid label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 180ms ease, transform 180ms ease;
}

.checkbox-grid label:hover {
  color: var(--green-900);
  transform: translateX(2px);
}

.checkbox-grid input {
  width: 18px;
  height: 18px;
  accent-color: var(--green-900);
  flex: 0 0 auto;
  margin-top: 3px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.contact {
  background: var(--cream-100);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 24px;
}

.contact-card {
  padding: 28px;
}

.contact-card dl {
  display: grid;
  gap: 16px;
  margin: 0 0 24px;
}

.contact-card dt {
  color: var(--green-900);
  font-weight: 800;
}

.contact-card dd {
  margin: 0;
}

.contact-card a:not(.btn) {
  color: var(--green-900);
  font-weight: 800;
}

.map-wrap {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 240ms var(--ease-premium), box-shadow 240ms ease, border-color 240ms ease;
}

.map-wrap:hover {
  border-color: rgba(198, 154, 112, 0.5);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--gradient-primary);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(10, 61, 56, 0.24);
  font-weight: 800;
  isolation: isolate;
  animation: whatsappPulse 3.8s ease-out infinite;
  transition: transform 220ms var(--ease-premium), box-shadow 220ms ease, filter 220ms ease;
}

.floating-whatsapp:hover {
  filter: saturate(1.06);
  box-shadow: 0 20px 42px rgba(10, 61, 56, 0.3);
  transform: translateY(-4px);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--green-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 30px;
  padding: 50px 0 34px;
}

.site-footer img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 14px;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: 20px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-premium), transform 700ms var(--ease-premium), filter 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 1120px) {
  .header-inner {
    gap: 14px;
  }

  .site-nav {
    gap: 12px;
    font-size: 0.88rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 920px) {
  .section-pad {
    padding: 68px 0;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 18px 20px 24px;
    background: var(--cream-50);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--soft-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity 220ms ease, transform 220ms var(--ease-premium), visibility 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .booking-layout,
  .contact-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    display: grid;
  }

  .hero-grid {
    gap: 34px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .logo-frame {
    width: min(100%, 310px);
  }

  .cards-grid.three {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .header-inner {
    width: min(100% - 22px, 1240px);
    min-height: 72px;
  }

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

  .brand span {
    font-size: 0.95rem;
  }

  .site-nav {
    inset: 72px 0 auto 0;
  }

  .section-pad,
  .section-pad.compact {
    padding: 54px 0;
  }

  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero.section-pad {
    padding: 34px 0 30px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-visual {
    display: none;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .hero-subtitle,
  .hero-copy .hero-actions,
  .hero-copy .hero-notes {
    transform: translateY(10px);
  }

  .benefits-grid,
  .cards-grid.four,
  .results-gallery,
  .form-grid,
  .checkbox-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .booking-form,
  .contact-card {
    padding: 22px;
  }

  .footer-bottom {
    display: grid;
  }

  .floating-whatsapp {
    right: 14px;
    left: auto;
    min-width: 112px;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 12px;
    padding: 14px;
  }

  .lightbox-close {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .lightbox-image {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 100%;
    max-height: calc(100vh - 178px);
  }

  .lightbox-prev,
  .lightbox-next {
    grid-row: 3;
  }

  .lightbox-prev {
    grid-column: 1;
  }

  .lightbox-next {
    grid-column: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .hero-subtitle,
  .hero-copy .hero-actions,
  .hero-copy .hero-notes {
    opacity: 1 !important;
    transform: none !important;
  }

  .tilt-card,
  .tilt-card:hover {
    transform: none !important;
  }
}
