:root {
  --bg: #fbfaf7;
  --paper: #ffffff;
  --stone: #ebe4da;
  --stone-light: #f4efe8;
  --lavender: #d7ccdf;
  --lavender-soft: #eee8f2;
  --lavender-deep: #8f7ba3;
  --eucalyptus: #aab9a7;
  --eucalyptus-soft: #e6ebe4;
  --eucalyptus-deep: #66785f;
  --charcoal: #2d2b2c;
  --muted: #6f696d;
  --line: rgba(74, 68, 72, 0.14);
  --line-soft: rgba(74, 68, 72, 0.08);
  --shadow: 0 24px 70px rgba(58, 48, 54, 0.09);
  --shadow-soft: 0 18px 44px rgba(58, 48, 54, 0.06);
  --font: "Raleway", Arial, sans-serif;
  --container: 1180px;
  --gutter: clamp(22px, 4vw, 48px);
  --section: clamp(76px, 9vw, 132px);
}

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

html {
  scroll-behavior: smooth;
}

section,
footer {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection {
  color: var(--charcoal);
  background: var(--lavender);
}

body.is-menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(143, 123, 163, 0.52);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--paper);
  background: var(--charcoal);
  border-radius: 8px;
  transition: transform 180ms ease;
}

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

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

.section {
  padding-block: var(--section);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 250, 247, 0.86);
  border-bottom: 1px solid rgba(74, 68, 72, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 12px 36px rgba(58, 48, 54, 0.055);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  min-width: max-content;
}

.brand__mark {
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: auto;
  max-height: 32px;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.brand__name {
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.22em;
}

.brand__descriptor {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand__logo {
  display: block;
  width: auto;
  height: 44px;
  max-width: 164px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
}

.site-nav a {
  position: relative;
  font-size: 13px;
  color: var(--muted);
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--lavender-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--charcoal);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header__cta-short {
  display: none;
}

.whatsapp-mini {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--eucalyptus-deep);
  background: rgba(230, 235, 228, 0.48);
  border: 1px solid rgba(102, 120, 95, 0.22);
  border-radius: 50%;
}

.icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.icon--stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-mini .icon {
  width: 20px;
  height: 20px;
}

.whatsapp-mini:hover,
.whatsapp-mini:focus-visible {
  color: var(--charcoal);
  background: rgba(230, 235, 228, 0.8);
  border-color: rgba(102, 120, 95, 0.34);
}

.menu-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

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

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

.btn--dark {
  color: var(--paper);
  background: var(--charcoal);
  box-shadow: 0 12px 28px rgba(45, 43, 44, 0.14);
}

.btn--light {
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(143, 123, 163, 0.18);
}

.btn--whatsapp {
  color: var(--eucalyptus-deep);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(102, 120, 95, 0.24);
  box-shadow: 0 12px 28px rgba(102, 120, 95, 0.08);
}

.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  color: var(--charcoal);
  background: rgba(230, 235, 228, 0.72);
  border-color: rgba(102, 120, 95, 0.34);
  box-shadow: 0 16px 32px rgba(102, 120, 95, 0.11);
}

.btn--whatsapp .icon {
  width: 20px;
  height: 20px;
  stroke-width: 1.85;
}

.btn--disabled {
  color: rgba(45, 43, 44, 0.42);
  background: rgba(255, 255, 255, 0.62);
  border-color: var(--line);
  cursor: not-allowed;
}

.btn--disabled:hover {
  transform: none;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 600;
  color: var(--lavender-deep);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow--green {
  color: var(--eucalyptus-deep);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(62px, 8vw, 104px);
  padding-bottom: clamp(70px, 9vw, 126px);
}

.hero::before {
  display: none;
}

.hero::after {
  position: absolute;
  top: 24px;
  left: max(24px, calc((100vw - var(--container)) / 2));
  width: 1px;
  height: 116px;
  content: "";
  background: rgba(143, 123, 163, 0.2);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  align-items: center;
  gap: clamp(56px, 8vw, 108px);
}

.hero__content {
  max-width: 730px;
  padding-top: 10px;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(52px, 6.4vw, 88px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 span {
  display: inline;
  color: var(--lavender-deep);
}

.hero__lead {
  max-width: 590px;
  margin: 28px 0 0;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.hero__actions .btn {
  min-height: 52px;
  padding-inline: 24px;
}

.hero__actions .btn--whatsapp {
  padding-inline: 22px 24px;
}

.hero__meta {
  margin: 32px 0 0;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.hero__visual {
  position: relative;
  display: grid;
  align-content: center;
  isolation: isolate;
}

.hero__visual::before {
  position: absolute;
  inset: 26px -16px 26px 34px;
  z-index: 0;
  content: "";
  background: rgba(215, 204, 223, 0.42);
  border: 1px solid rgba(143, 123, 163, 0.13);
  border-radius: 44px 10px 64px 10px;
  box-shadow: 0 22px 52px rgba(143, 123, 163, 0.08);
  transform: translate(12px, -12px);
}

.photo-card {
  position: relative;
  display: grid;
  place-content: center;
  gap: 16px;
  min-height: 420px;
  overflow: hidden;
  color: rgba(45, 43, 44, 0.22);
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(235, 228, 218, 0.58) 48%, rgba(230, 235, 228, 0.6)),
    var(--stone-light);
  border: 1px solid rgba(74, 68, 72, 0.1);
  box-shadow: var(--shadow);
}

.photo-card::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(143, 123, 163, 0.14);
  border-radius: inherit;
}

.photo-card::after {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(143, 123, 163, 0.24), transparent);
}

.photo-card__monogram {
  position: relative;
  z-index: 2;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.photo-card--about {
  min-height: 560px;
  border-radius: 18px 104px 18px 104px;
  box-shadow: var(--shadow-soft);
}

.hero-image-card {
  position: relative;
  display: grid;
  width: 100%;
  min-height: min(58vw, 560px);
  overflow: hidden;
  place-content: center;
  gap: 18px;
  color: rgba(45, 43, 44, 0.34);
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(244, 239, 232, 0.86) 54%, rgba(238, 232, 242, 0.46)),
    var(--stone-light);
  border: 1px solid rgba(74, 68, 72, 0.12);
  border-radius: 48px 10px 72px 10px;
  box-shadow: 0 24px 58px rgba(58, 48, 54, 0.075);
  z-index: 1;
}

.hero-image-card::before {
  position: absolute;
  inset: 16px;
  content: "";
  border: 1px solid rgba(143, 123, 163, 0.12);
  border-radius: inherit;
}

.hero-image-card__label {
  position: relative;
  z-index: 2;
  max-width: 220px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(74, 68, 72, 0.48);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-placeholder__mark {
  position: relative;
  z-index: 1;
  display: block;
  justify-self: center;
  width: clamp(118px, 34%, 170px);
  height: auto;
  opacity: 0.14;
  filter: grayscale(1);
}

.visual-placeholder__mark--about {
  width: clamp(108px, 36%, 158px);
  opacity: 0.12;
}

.visual-placeholder__caption {
  position: relative;
  z-index: 2;
  max-width: 230px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(74, 68, 72, 0.46);
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.purpose {
  padding-block: clamp(52px, 7vw, 86px);
}

.purpose__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding: clamp(40px, 6vw, 68px);
  background: var(--eucalyptus-soft);
  border: 1px solid rgba(102, 120, 95, 0.12);
  border-radius: 72px 72px 18px 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.purpose__inner::before {
  position: absolute;
  top: clamp(28px, 4vw, 42px);
  left: clamp(28px, 4vw, 42px);
  width: 64px;
  height: 1px;
  content: "";
  background: rgba(102, 120, 95, 0.28);
}

.purpose__copy {
  max-width: 820px;
}

.purpose h2,
.about h2,
.booking-prompt h2,
.section-heading h2,
.location h2,
.faq h2,
.agenda h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
}

.purpose p:not(.eyebrow),
.about__content > p,
.booking-prompt__copy > p,
.location__copy > p,
.faq__intro,
.agenda__copy > p {
  max-width: 720px;
  margin: 20px 0 0;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--muted);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(54px, 8vw, 110px);
}

.about__content {
  max-width: 680px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.trust-grid article {
  min-height: 112px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(58, 48, 54, 0.035);
}

.trust-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 500;
}

.trust-grid span {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.booking-prompt {
  padding-block: clamp(36px, 6vw, 76px);
}

.booking-prompt__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  padding: clamp(28px, 5vw, 46px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(238, 232, 242, 0.64)),
    var(--stone-light);
  border: 1px solid rgba(143, 123, 163, 0.14);
  border-radius: 28px 8px 28px 8px;
  box-shadow: 0 18px 48px rgba(58, 48, 54, 0.055);
}

.booking-prompt__inner::before {
  position: absolute;
  top: 24px;
  left: 28px;
  width: 54px;
  height: 1px;
  content: "";
  background: rgba(143, 123, 163, 0.32);
}

.booking-prompt__copy {
  max-width: 720px;
}

.booking-prompt__copy .eyebrow {
  margin-bottom: 14px;
}

.booking-prompt__copy > p {
  max-width: 650px;
  margin-top: 16px;
}

.booking-prompt__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px 20px;
  align-items: start;
  min-height: 176px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(143, 123, 163, 0.2);
  box-shadow: 0 22px 52px rgba(58, 48, 54, 0.075);
}

.service-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--eucalyptus-deep);
  background: linear-gradient(145deg, rgba(230, 235, 228, 0.9), rgba(238, 232, 242, 0.68));
  border: 1px solid rgba(102, 120, 95, 0.13);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 12px 28px rgba(58, 48, 54, 0.045);
}

.service-card__icon svg,
.service-card__icon [data-lucide] {
  width: 26px;
  height: 26px;
  stroke-width: 1.8;
}

.service-card h3 {
  align-self: center;
  max-width: 280px;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.28;
}

.service-card p {
  grid-column: 2;
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.process {
  background: var(--lavender-soft);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.process__steps article {
  position: relative;
  padding: clamp(28px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(143, 123, 163, 0.15);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(58, 48, 54, 0.045);
}

.process__steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lavender-deep);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(143, 123, 163, 0.18);
  border-radius: 50%;
  letter-spacing: 0.18em;
  box-shadow: 0 8px 22px rgba(58, 48, 54, 0.035);
}

.process__steps h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

.process__steps p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.location {
  padding-block: clamp(70px, 8vw, 112px) clamp(48px, 6vw, 84px);
  background: linear-gradient(180deg, rgba(238, 232, 242, 0.5), var(--bg) 58%);
}

.location__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(38px, 6vw, 76px);
  padding: clamp(34px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(244, 239, 232, 0.78)),
    var(--stone-light);
  border: 1px solid rgba(74, 68, 72, 0.1);
  border-radius: 42px 12px 42px 12px;
  box-shadow: 0 22px 60px rgba(58, 48, 54, 0.065);
  overflow: hidden;
}

.location__inner::before {
  position: absolute;
  top: 30px;
  left: 34px;
  width: 64px;
  height: 1px;
  content: "";
  background: rgba(102, 120, 95, 0.3);
}

.location__copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.location__address {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  max-width: 100%;
  min-height: 44px;
  padding: 11px 14px;
  margin: 26px 0 24px;
  color: var(--eucalyptus-deep);
  background: rgba(230, 235, 228, 0.68);
  border: 1px solid rgba(102, 120, 95, 0.14);
  border-radius: 999px;
}

.location__address .icon {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
}

.location__address span {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.location__map {
  position: relative;
  z-index: 1;
  padding: 10px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(74, 68, 72, 0.1);
  border-radius: 28px 8px 28px 8px;
  box-shadow: 0 18px 48px rgba(58, 48, 54, 0.07);
  overflow: hidden;
}

.location__map::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(215, 204, 223, 0.32);
  border-radius: inherit;
}

.location__map iframe {
  display: block;
  width: 100%;
  height: clamp(360px, 34vw, 450px);
  background: var(--stone-light);
  border-radius: 20px 6px 20px 6px;
}

.faq {
  padding-top: clamp(56px, 7vw, 96px);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(42px, 7vw, 86px);
  align-items: start;
}

.faq__list {
  display: grid;
  gap: 10px;
}

.faq__item {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(58, 48, 54, 0.035);
  overflow: hidden;
}

.faq__item.is-open {
  border-color: rgba(143, 123, 163, 0.22);
  background: linear-gradient(90deg, rgba(238, 232, 242, 0.72), var(--paper) 34%);
}

.faq__button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  color: var(--charcoal);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.faq__button span:first-child {
  font-size: 16px;
  font-weight: 500;
}

.faq__icon {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  color: var(--lavender-deep);
  transition: transform 160ms ease;
}

.faq__button[aria-expanded="true"] .faq__icon {
  transform: rotate(180deg);
}

.faq__panel {
  padding: 0 24px 24px;
}

.faq__panel p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.agenda {
  padding-bottom: clamp(90px, 10vw, 142px);
}

.agenda__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 58px);
  max-width: 1040px;
  padding: clamp(38px, 6vw, 66px);
  text-align: left;
  background: var(--stone-light);
  border: 1px solid rgba(74, 68, 72, 0.1);
  border-radius: 42px 12px 42px 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.agenda__inner::before {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 58px;
  height: 1px;
  content: "";
  background: rgba(143, 123, 163, 0.28);
}

.agenda__copy > p {
  max-width: 560px;
}

.agenda__copy,
.booking-card {
  position: relative;
  z-index: 1;
}

.booking-card {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(143, 123, 163, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(58, 48, 54, 0.05);
}

.booking-card__label {
  display: block;
  padding: 20px 18px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer {
  position: relative;
  overflow: hidden;
  padding-block: 64px 30px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--charcoal);
}

.footer .container {
  position: relative;
  z-index: 1;
}

/* Acento botánico del pie: misma silueta de lavanda que las secciones
   superiores, en tinte claro (--lavender) para el fondo oscuro. */
.footer::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -200px;
  width: 190px;
  height: 390px;
  pointer-events: none;
  background: url("assets/lavanda-bg-light.webp") no-repeat bottom center / contain;
  opacity: 0.12;
  transform: rotate(-10deg);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.8fr) minmax(220px, 0.8fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  margin-bottom: 18px;
}

.footer .brand__mark--footer {
  width: 50px;
  max-height: 38px;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

.footer__brand-text .brand__name {
  color: var(--paper);
}

.footer__brand-text .brand__descriptor {
  color: rgba(255, 255, 255, 0.68);
}

.footer__logo {
  display: block;
  width: auto;
  height: 48px;
  max-width: 178px;
  object-fit: contain;
}

.footer p,
.footer address,
.footer span {
  font-size: 14px;
  font-style: normal;
  line-height: 1.8;
}

.footer .brand__name {
  font-size: 20px;
  line-height: 1;
}

.footer .brand__descriptor {
  font-size: 9px;
  line-height: 1;
}

.footer__contact {
  display: grid;
  gap: 11px;
}

.footer a {
  color: var(--paper);
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding-block: 6px;
  color: rgba(255, 255, 255, 0.78);
}

.footer__link .icon {
  width: 20px;
  height: 20px;
  color: rgba(230, 235, 228, 0.78);
}

.footer h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--paper);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer h2 .icon {
  width: 20px;
  height: 20px;
  color: rgba(230, 235, 228, 0.78);
}

.footer__bottom {
  padding-top: 36px;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

  .site-nav {
    position: fixed;
    top: 78px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    max-height: calc(100vh - 96px);
    max-height: calc(100dvh - 96px);
    padding: 12px;
    overflow-y: auto;
    background: rgb(251, 250, 247);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    z-index: 40;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 46px;
    padding: 14px 8px;
    font-size: 15px;
    display: flex;
    align-items: center;
  }

  .site-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    padding: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(102, 120, 95, 0.22);
    border-radius: 50%;
    transition: background 180ms ease, border-color 180ms ease, transform 120ms ease;
  }

  .menu-toggle:hover {
    background: rgba(230, 235, 228, 0.8);
    border-color: rgba(102, 120, 95, 0.34);
  }

  .menu-toggle:focus-visible {
    border-color: rgba(102, 120, 95, 0.34);
    outline: 2px solid var(--eucalyptus-deep);
    outline-offset: 2px;
  }

  .menu-toggle:active {
    transform: scale(0.94);
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 999px;
    transition: transform 200ms ease, opacity 140ms ease;
  }

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

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

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

  .header__actions {
    justify-self: end;
  }

  .hero__grid,
  .about__grid,
  .location__inner,
  .faq__grid,
  .booking-prompt__inner,
  .agenda__inner {
    grid-template-columns: 1fr;
  }

  .booking-prompt__actions {
    justify-content: flex-start;
  }

  .hero::before {
    display: none;
  }

  .hero__visual {
    min-height: 0;
  }

  .hero__visual::before {
    inset: 24px 10px 22px 34px;
    border-radius: 42px 10px 58px 10px;
    transform: translate(8px, -10px);
  }

  .hero-image-card {
    min-height: 460px;
  }

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

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

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

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

@media (max-width: 720px) {
  :root {
    --gutter: 18px;
    --section: 58px;
  }

  .section {
    padding-block: var(--section);
  }

  section,
  footer {
    scroll-margin-top: 78px;
  }

  .header__inner {
    grid-template-columns: auto 40px auto;
    min-height: 66px;
    gap: 8px;
    justify-content: space-between;
  }

  .brand {
    gap: 7px;
  }

  .brand__mark {
    width: 26px;
    max-height: 20px;
  }

  .brand__logo {
    height: 31px;
    max-width: clamp(108px, 34vw, 128px);
  }

  .brand__name {
    font-size: 18px;
  }

  .brand__descriptor {
    font-size: 8px;
  }

  .whatsapp-mini {
    display: none;
  }

  .header__cta {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 12px;
  }

  .header__cta-full {
    display: none;
  }

  .header__cta-short {
    display: inline;
  }

  .site-nav {
    top: 66px;
    right: 14px;
    left: 14px;
    max-height: calc(100vh - 84px);
    max-height: calc(100dvh - 84px);
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 54px;
  }

  .hero::before {
    width: 82vw;
    min-width: 0;
    border-bottom-left-radius: 44px;
  }

  .hero::after {
    display: none;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(36px, 10.8vw, 48px);
    line-height: 1.04;
  }

  .hero__lead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.68;
  }

  .hero__actions {
    gap: 10px;
    margin-top: 28px;
  }

  .hero__actions,
  .booking-card__actions {
    flex-direction: column;
  }

  .hero__actions .btn,
  .booking-card__actions .btn {
    width: 100%;
    min-height: 50px;
  }

  .hero__meta {
    margin-top: 24px;
    line-height: 1.8;
    letter-spacing: 0.04em;
  }

  .hero-image-card,
  .photo-card--about {
    min-height: 300px;
    border-radius: 48px 10px 58px 10px;
  }

  .hero__visual {
    margin-top: 4px;
  }

  .hero-image-card::before {
    inset: 12px;
  }

  .hero__visual::before {
    inset: 18px 4px 14px 24px;
    border-radius: 42px 8px 52px 8px;
    opacity: 0.86;
    transform: translate(6px, -8px);
  }

  .purpose__inner {
    gap: 22px;
    padding: 28px 24px;
    border-radius: 32px 32px 12px 12px;
  }

  .purpose__inner::before {
    top: 22px;
    left: 24px;
    width: 48px;
  }

  .purpose h2,
  .about h2,
  .booking-prompt h2,
  .section-heading h2,
  .location h2,
  .faq h2,
  .agenda h2 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.12;
  }

  .purpose p:not(.eyebrow),
  .about__content > p,
  .booking-prompt__copy > p,
  .location__copy > p,
  .faq__intro,
  .agenda__copy > p {
    margin-top: 16px;
    font-size: 15.5px;
    line-height: 1.72;
  }

  .about__grid,
  .faq__grid {
    gap: 34px;
  }

  .booking-prompt {
    padding-block: 34px;
  }

  .booking-prompt__inner {
    gap: 22px;
    padding: 30px 22px;
    border-radius: 22px 8px 22px 8px;
  }

  .booking-prompt__inner::before {
    top: 20px;
    left: 22px;
    width: 42px;
  }

  .booking-prompt__actions {
    justify-content: stretch;
  }

  .booking-prompt__actions .btn {
    width: 100%;
    min-height: 50px;
  }

  .trust-grid {
    gap: 10px;
    margin-top: 26px;
  }

  .trust-grid article {
    min-height: 0;
    padding: 18px;
  }

  .trust-grid,
  .services__grid,
  .process__steps,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 48px 1fr;
    gap: 14px 16px;
    min-height: 0;
    padding: 20px;
  }

  .service-card__icon {
    width: 46px;
    height: 46px;
  }

  .service-card__icon svg,
  .service-card__icon [data-lucide] {
    width: 24px;
    height: 24px;
  }

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

  .service-card p {
    margin-top: 8px;
    font-size: 13.5px;
    line-height: 1.55;
  }

  .process__steps span {
    width: 38px;
    height: 38px;
    margin-bottom: 20px;
  }

  .process__steps {
    gap: 12px;
    margin-top: 30px;
  }

  .process__steps article {
    padding: 22px;
  }

  .process__steps h3 {
    font-size: 18px;
  }

  .location {
    padding-block: 46px 38px;
  }

  .location__inner {
    gap: 28px;
    padding: 30px 20px;
    border-radius: 30px 10px 30px 10px;
  }

  .location__inner::before {
    top: 22px;
    left: 22px;
    width: 44px;
  }

  .location__address {
    align-items: flex-start;
    width: 100%;
    margin: 22px 0 22px;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .location__copy .btn {
    width: 100%;
    min-height: 50px;
  }

  .location__map {
    padding: 8px;
    border-radius: 24px 8px 24px 8px;
  }

  .location__map iframe {
    height: 310px;
    border-radius: 18px 6px 18px 6px;
  }

  .faq {
    padding-top: 48px;
  }

  .faq__list {
    gap: 8px;
  }

  .faq__button {
    min-height: 58px;
    gap: 16px;
    padding: 18px 18px;
  }

  .faq__button span:first-child {
    font-size: 15.5px;
    line-height: 1.35;
  }

  .faq__panel {
    padding: 0 18px 20px;
  }

  .agenda__inner {
    gap: 24px;
    padding: 32px 20px;
    border-radius: 28px 10px 28px 10px;
  }

  .agenda__inner::before {
    display: none;
  }

  .footer::after {
    display: none;
  }

  .booking-card {
    padding: 12px;
  }

  .booking-card__label {
    padding: 16px 12px;
    font-size: 11.5px;
    line-height: 1.55;
    text-align: center;
  }

  .footer {
    padding-block: 48px 24px;
  }

  .footer__grid {
    gap: 30px;
  }

  .footer .brand__mark--footer {
    width: 44px;
    max-height: 34px;
  }

  .footer__logo {
    height: 42px;
    max-width: 156px;
  }

  .footer__link {
    align-items: flex-start;
    gap: 11px;
  }

  .footer__bottom {
    padding-top: 24px;
    margin-top: 32px;
  }
}

@media (max-width: 390px) {
  :root {
    --gutter: 16px;
  }

  .header__inner {
    grid-template-columns: minmax(92px, auto) 38px auto;
  }

  .brand {
    gap: 6px;
  }

  .brand__mark {
    width: 20px;
    max-height: 15px;
  }

  .brand__logo {
    height: 29px;
    max-width: 112px;
  }

  .brand__name {
    font-size: 17px;
  }

  .brand__descriptor {
    margin-top: 4px;
    font-size: 7px;
  }

  .header__cta {
    min-height: 36px;
    padding-inline: 11px;
  }

  .hero h1 {
    font-size: clamp(34px, 10.5vw, 42px);
  }

  .hero-image-card,
  .photo-card--about {
    min-height: 276px;
  }

  .hero__visual::before {
    inset: 14px 2px 12px 18px;
    border-radius: 36px 8px 46px 8px;
    transform: translate(5px, -6px);
  }

  .purpose__inner,
  .booking-prompt__inner,
  .agenda__inner {
    padding-inline: 18px;
  }

  .location__inner {
    padding: 28px 18px;
  }

  .location__map iframe {
    height: 280px;
  }

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

  .service-card__icon {
    width: 44px;
    height: 44px;
  }

  .service-card p {
    grid-column: auto;
  }
}

/* ------------------------------------------------------------------
   Detalle de servicios: tarjetas clicables + modal / hoja inferior
   ------------------------------------------------------------------ */
body.is-modal-open {
  overflow: hidden;
}

.service-card {
  position: relative;
  cursor: pointer;
}

.service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  grid-column: 2;
  justify-self: start;
  margin: 14px 0 0;
  padding: 0;
  font-family: var(--font);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--eucalyptus-deep);
  cursor: pointer;
  background: none;
  border: 0;
}

.service-card__more .icon {
  width: 15px;
  height: 15px;
  transition: transform 180ms ease;
}

/* Extiende el área de toque del botón a toda la tarjeta. */
.service-card__more::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
}

.service-card__more:focus-visible {
  outline: none;
}

.service-card:hover .service-card__more {
  color: var(--lavender-deep);
}

.service-card:hover .service-card__more .icon {
  transform: translateX(4px);
}

.service-card:focus-within {
  border-color: rgba(143, 123, 163, 0.34);
  box-shadow: 0 0 0 3px rgba(143, 123, 163, 0.18), var(--shadow-soft);
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.service-modal.is-open {
  display: flex;
}

.service-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 43, 44, 0.44);
  backdrop-filter: blur(3px);
  animation: service-modal-fade 220ms ease both;
}

.service-modal__dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  width: min(860px, 100%);
  max-height: min(620px, 100%);
  overflow: hidden;
  background: var(--bg);
  border-radius: 14px;
  box-shadow: var(--shadow);
  animation: service-modal-rise 260ms cubic-bezier(0.22, 0.8, 0.3, 1) both;
}

.service-modal.is-closing .service-modal__overlay {
  animation: service-modal-fade 180ms ease reverse both;
}

.service-modal.is-closing .service-modal__dialog {
  animation: service-modal-rise 180ms ease reverse both;
}

.service-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--charcoal);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(58, 48, 54, 0.12);
  transition: background 160ms ease, transform 120ms ease;
}

.service-modal__close:hover {
  background: #ffffff;
}

.service-modal__close:focus-visible {
  outline: 2px solid var(--eucalyptus-deep);
  outline-offset: 2px;
}

.service-modal__close:active {
  transform: scale(0.94);
}

.service-modal__close .icon {
  width: 18px;
  height: 18px;
}

.service-modal__media {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--stone-light);
}

.service-modal__viewport {
  height: 100%;
  overflow: hidden;
  touch-action: pan-y;
}

.service-modal__track {
  display: flex;
  height: 100%;
  transition: transform 340ms cubic-bezier(0.25, 0.8, 0.35, 1);
}

.service-modal__slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
}

.service-modal__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Panel de marca cuando la foto real aún no existe en assets/services/. */
.service-modal__fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, var(--eucalyptus-soft), var(--lavender-soft) 82%);
}

.service-modal__slide.is-missing .service-modal__fallback {
  display: flex;
}

.service-modal__slide.is-missing .service-modal__photo {
  display: none;
}

.service-modal__fallback-mark {
  width: 96px;
  height: auto;
  opacity: 0.55;
}

.service-modal__fallback span {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.service-modal__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--charcoal);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(58, 48, 54, 0.12);
  transform: translateY(-50%);
  transition: background 160ms ease;
}

.service-modal__arrow:hover {
  background: #ffffff;
}

.service-modal__arrow:focus-visible {
  outline: 2px solid var(--eucalyptus-deep);
  outline-offset: 2px;
}

.service-modal__arrow:active {
  transform: translateY(-50%) scale(0.94);
}

.service-modal__arrow .icon {
  width: 20px;
  height: 20px;
}

.service-modal__arrow--prev {
  left: 14px;
}

.service-modal__arrow--next {
  right: 14px;
}

.service-modal__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 7px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  transform: translateX(-50%);
}

.service-modal__dot {
  position: relative;
  width: 8px;
  height: 8px;
  padding: 0;
  cursor: pointer;
  background: rgba(45, 43, 44, 0.26);
  border: 0;
  border-radius: 999px;
  transition: width 200ms ease, background 200ms ease;
}

/* Área de toque ampliada para los puntos. */
.service-modal__dot::after {
  content: "";
  position: absolute;
  inset: -10px;
}

.service-modal__dot.is-active {
  width: 22px;
  background: var(--lavender-deep);
}

.service-modal__dot:focus-visible {
  outline: 2px solid var(--eucalyptus-deep);
  outline-offset: 3px;
}

.service-modal__body {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 34px 36px 30px;
  overflow-y: auto;
}

.service-modal__body .eyebrow {
  margin-bottom: 12px;
}

.service-modal__title {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
}

.service-modal__description {
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
}

.service-modal__bullets {
  display: grid;
  gap: 9px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.service-modal__bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 13.5px;
  line-height: 1.5;
}

.service-modal__bullets li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 2px;
  width: 7px;
  height: 7px;
  background: var(--eucalyptus);
  border-radius: 50%;
}

.service-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
}

@keyframes service-modal-fade {
  from {
    opacity: 0;
  }
}

@keyframes service-modal-rise {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
}

@media (max-width: 720px) {
  .service-modal {
    align-items: flex-end;
    padding: 0;
  }

  .service-modal__dialog {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    width: 100%;
    max-height: calc(100dvh - 28px);
    border-radius: 18px 18px 0 0;
    animation: service-sheet-up 300ms cubic-bezier(0.22, 0.8, 0.3, 1) both;
  }

  .service-modal.is-closing .service-modal__dialog {
    animation: service-sheet-up 200ms ease reverse both;
  }

  .service-modal__media {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .service-modal__body {
    padding: 24px 22px 26px;
  }

  .service-modal__title {
    font-size: 21px;
    padding-right: 8px;
  }

  .service-modal__actions {
    gap: 12px;
  }

  .service-modal__actions .btn {
    flex: 1 1 100%;
  }
}

@keyframes service-sheet-up {
  from {
    opacity: 0.6;
    transform: translateY(56%);
  }
}

@media (max-width: 390px) {
  .service-card__more {
    grid-column: auto;
  }
}

/* ------------------------------------------------------------------
   Acento botánico de fondo: silueta de lavanda (assets/lavanda-bg.webp,
   derivada de lavandadraw.png, teñida con --lavender-deep).
   Marca de agua sutil, siempre detrás del contenido (z-index -1).
   ------------------------------------------------------------------ */
.hero__grid {
  position: relative;
  z-index: 0;
}

.hero__grid::after {
  content: "";
  position: absolute;
  top: -36px;
  right: -84px;
  z-index: -1;
  width: 300px;
  height: 616px;
  pointer-events: none;
  background: url("assets/lavanda-bg.webp") no-repeat top center / contain;
  opacity: 0.13;
  transform: rotate(14deg);
}

.purpose__inner {
  z-index: 0;
  overflow: hidden;
}

.purpose__inner::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -96px;
  z-index: -1;
  width: 218px;
  height: 448px;
  pointer-events: none;
  background: url("assets/lavanda-bg.webp") no-repeat center / contain;
  opacity: 0.17;
  transform: scaleX(-1) rotate(9deg);
}

.faq {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.faq::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -70px;
  z-index: -1;
  width: 280px;
  height: 575px;
  pointer-events: none;
  background: url("assets/lavanda-bg.webp") no-repeat bottom center / contain;
  opacity: 0.11;
  transform: rotate(-12deg);
}

@media (max-width: 720px) {
  /* En móvil solo se conserva el acento del hero, más pequeño y tenue. */
  .hero__grid::after {
    top: -24px;
    right: -58px;
    width: 190px;
    height: 390px;
    opacity: 0.1;
    transform: rotate(18deg);
  }

  .purpose__inner::after,
  .faq::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
