:root {
  --teal: #00829b;
  --teal-dark: #045c6c;
  --green: #54a64a;
  --brown: #6c5f42;
  --ink: #172c31;
  --cream: #f6f3ec;
  --sand: #e8e0d1;
  --white: #fff;
  --line: rgba(23, 44, 49, 0.15);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family:
    Georgia,
    Times New Roman,
    serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}
h1 em,
h2 em {
  color: var(--teal);
  font-weight: 400;
}
.site-header {
  height: 104px;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 180px 1fr 160px;
  align-items: center;
  gap: 24px;
  background: #fffffff7;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}
.brand img {
  width: 104px;
  height: 66px;
  object-fit: contain;
}
nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 38px);
}
nav a {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding: 9px 0;
}
nav a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: 0.3s;
}
nav a:hover:after {
  width: 100%;
}
.header-cta {
  justify-self: end;
  padding: 14px 18px;
  border: 1px solid var(--brown);
  color: var(--brown);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.header-cta span {
  margin-left: 12px;
}
.hero-slider {
  min-height: max(760px, calc(100vh - 104px));
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.home-hero {
  min-height: calc(100vh - 104px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: var(--ink);
  color: #fff;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(18px);
  transition:
    opacity 0.65s ease,
    transform 0.75s ease,
    visibility 0.65s;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  z-index: 1;
}
.home-hero-image {
  background:
    linear-gradient(90deg, #0000000f, #00000047),
    url(../images/hero.webp) center/cover;
}
.home-hero-image-pais {
  background:
    linear-gradient(90deg, #00000005, #0000001c),
    url(../images/hero-mes-dos-pais-2026.webp) 68% center/cover;
}
.home-hero-copy {
  padding: 8vw 7vw 7vw 6vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.home-hero h1 {
  font-size: clamp(62px, 7vw, 108px);
  line-height: 0.92;
  margin-bottom: 38px;
}
.campaign-slide .home-hero-copy {
  padding: 42px 5.5vw 58px;
  justify-content: flex-start;
}
.campaign-slide .kicker {
  margin-bottom: 16px;
}
.campaign-slide h1 {
  font-size: clamp(40px, 4.25vw, 64px);
  line-height: 1;
  margin-bottom: 20px;
}
.campaign-slide .home-hero-copy > p:not(.campaign-detail) {
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 18px;
}
.home-hero h1 em {
  color: #6ec2cc;
}
.home-hero p {
  font:
    17px/1.75 Georgia,
    serif;
  max-width: 500px;
  color: #d6e0df;
  margin-bottom: 34px;
}
.home-hero .campaign-detail {
  font:
    14px/1.6 Arial,
    sans-serif;
  color: #d2e1e2;
  margin: 0 0 16px;
  padding-left: 17px;
  border-left: 2px solid var(--green);
  max-width: 520px;
}
.campaign-detail strong {
  color: #fff;
}
.campaign-note {
  display: block;
  color: #a9c8cc;
  font-size: 9px;
  line-height: 1.55;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.campaign-note strong {
  color: #fff;
}
.hero-controls {
  position: absolute;
  z-index: 3;
  right: 3vw;
  bottom: 25px;
  display: flex;
  gap: 8px;
}
.hero-controls button {
  appearance: none;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #ffffff8c;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 9px;
  letter-spacing: 0.12em;
}
.hero-controls button.is-active {
  color: #fff;
  border-color: var(--green);
}
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 9px;
  font-weight: 700;
  color: var(--teal-dark);
}
.kicker:before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.kicker.light {
  color: #b8d9dc;
}
.button {
  min-height: 55px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  transition: 0.25s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-light {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}
.button-teal {
  background: var(--teal);
  color: #fff;
}
.button-outline {
  border: 1px solid var(--teal);
  color: var(--teal);
}
.inline-link {
  display: inline-flex;
  gap: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 9px;
}
.intro-split {
  padding: 140px 8vw;
  display: grid;
  grid-template-columns: 25% 75%;
  background: #fff;
}
.intro-split > div {
  max-width: 1000px;
}
.intro-split h2 {
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1.05;
  margin-bottom: 38px;
}
.intro-split p {
  max-width: 580px;
  margin: 0 0 35px auto;
  font:
    18px/1.8 Georgia,
    serif;
  color: #526268;
}
.intro-split .inline-link {
  margin-left: calc(100% - 580px);
}
.feelings {
  padding: 125px 8vw 105px;
  background: var(--teal-dark);
  color: #fff;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.6fr 0.65fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 75px;
}
.section-heading h2 {
  font-size: clamp(54px, 6vw, 86px);
  line-height: 0.98;
  margin: 0;
}
.section-heading h2 em {
  color: #78c9d0;
}
.section-heading > p {
  font:
    16px/1.8 Georgia,
    serif;
  color: #c8dcde;
  margin: 0;
}
.feeling-list {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.feeling-row {
  min-height: 160px;
  display: grid;
  grid-template-columns: 7% 23% 32% 1fr 40px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: 0.3s;
}
.feeling-row:hover {
  padding: 0 20px;
  background: #ffffff0f;
}
.feeling-row > span,
.feeling-row small {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #add0d3;
}
.feeling-row h3 {
  font-size: clamp(30px, 3vw, 45px);
  margin: 0;
}
.feeling-row p {
  font:
    15px/1.65 Georgia,
    serif;
  color: #c8dcde;
  margin: 0;
  max-width: 380px;
}
.feeling-row small {
  text-transform: uppercase;
  line-height: 1.7;
}
.feeling-row b {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 400;
}
.featured-treatments {
  padding: 130px 7vw;
  background: var(--cream);
  text-align: center;
}
.feature-title {
  max-width: 900px;
  margin: 0 auto 70px;
}
.feature-title .kicker {
  justify-content: center;
}
.feature-title h2 {
  font-size: clamp(50px, 5vw, 75px);
  line-height: 1.03;
}
.treatment-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 25px;
  margin-bottom: 55px;
  text-align: left;
}
.treatment-preview-grid article {
  background: #fff;
  padding-bottom: 25px;
}
.treatment-card-link {
  display: block;
}
.therapy-icon {
  width: 82px;
  height: 82px;
  color: var(--teal-dark);
  display: block;
  overflow: visible;
}
.therapy-icon .icon-halo {
  stroke: #045c6c30;
  stroke-width: 0.7;
  stroke-dasharray: 1.5 2.8;
}
.therapy-icon .icon-botanical {
  stroke: var(--green);
  stroke-width: 0.85;
  opacity: 0.76;
}
.therapy-icon .icon-accent {
  stroke: var(--green);
  stroke-width: 1.05;
}
.therapy-icon .icon-art {
  transform: translate(5px, 5px) scale(0.84);
  transform-origin: center;
}
.therapy-artwork {
  display: block;
  object-fit: cover;
  border-radius: 50%;
}
.treatment-icon-stage {
  height: 290px;
  position: relative;
  display: grid;
  place-items: center;
  background: #fbfaf5;
  overflow: hidden;
}
.treatment-icon-stage:before {
  content: "";
  position: absolute;
  width: 236px;
  height: 236px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 50px #045c6c14;
}
.treatment-icon-stage:after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(108, 95, 66, 0.08);
  pointer-events: none;
}
.treatment-icon-stage .therapy-artwork {
  width: 250px;
  height: 250px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 18px rgba(4, 92, 108, 0.07));
  transition: transform 0.5s ease;
}
.treatment-preview-grid article:hover .therapy-artwork {
  transform: scale(1.035);
}
.treatment-icon-stage span {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 8px 11px;
  background: #fff;
  color: var(--teal-dark);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  z-index: 2;
}
.treatment-preview-grid h3 {
  font-size: 27px;
  padding: 0 24px;
  margin: 24px 0 12px;
}
.treatment-preview-grid p {
  padding: 0 24px;
  color: #5c6d71;
  font:
    14px/1.65 Georgia,
    serif;
  min-height: 70px;
}
.treatment-preview-grid article > div:last-child {
  margin: 20px 24px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
}
.treatment-preview-grid small {
  color: #708286;
}
.treatment-preview-grid strong {
  color: var(--teal);
  font-size: 12px;
}
.home-spa-day {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 720px;
  background: #ded7c9;
}
.spa-day-photo {
  background: url(../images/space.webp) center/cover;
}
.home-spa-day > div:last-child {
  padding: 110px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.home-spa-day h2 {
  font-size: clamp(50px, 5vw, 76px);
  line-height: 1;
}
.home-spa-day p {
  font:
    16px/1.8 Georgia,
    serif;
  color: #526268;
  margin: 30px 0;
}
.gift {
  padding: 105px 8vw;
  background: var(--teal);
  color: #fff;
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 210px;
  gap: 7vw;
  align-items: center;
}
.gift h2 {
  font-size: clamp(48px, 5vw, 74px);
  line-height: 1;
  margin: 0;
}
.gift h2 em {
  color: #fff;
}
.gift > p {
  font:
    16px/1.8 Georgia,
    serif;
  margin: 0;
}
.round-link {
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-transform: uppercase;
  font-size: 8px;
  line-height: 1.6;
  letter-spacing: 0.13em;
  transition: 0.3s;
}
.round-link:hover {
  background: #fff;
  color: var(--teal);
}
.page-hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  background: #fff;
}
.page-hero-copy {
  padding: 100px 6vw 90px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-hero h1 {
  font-size: clamp(55px, 6vw, 88px);
  line-height: 0.96;
  margin-bottom: 30px;
}
.page-hero p {
  font:
    16px/1.75 Georgia,
    serif;
  color: #5a6a6e;
  max-width: 500px;
}
.page-hero-image {
  min-height: 620px;
  background-size: cover;
  background-position: center;
}
.therapies-hero-image {
  background-image:
    linear-gradient(#00829b14, #00829b14), url(../images/hero.webp);
  background-position: 58% center;
}
.space-hero-image {
  background-image: url(../images/space.webp);
}
.workshops-hero-image {
  background-image:
    linear-gradient(#005c6c26, #005c6c26), url(../images/hero.webp);
}
.spaday-hero-image {
  background-image: url(../images/space.webp);
  background-position: center 60%;
}
.contact-hero-image {
  background-image:
    linear-gradient(#00829b1f, #00829b1f), url(../images/hero.webp);
}
.contact-map {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
  filter: saturate(0.72) contrast(0.94);
}
.map-directions {
  position: absolute;
  right: 28px;
  bottom: 28px;
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 30px #172c3130;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: 0.25s;
}
.map-directions:hover {
  transform: translateY(-2px);
  background: var(--teal-dark);
}
.catalog-intro {
  display: grid;
  grid-template-columns: 1fr 1.5fr 0.8fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 70px;
}
.catalog-intro h2 {
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1;
  margin: 0;
}
.catalog-intro > p {
  color: #657579;
  font:
    14px/1.7 Georgia,
    serif;
  margin: 0;
}
.therapy-catalog,
.programs,
.spa-combos {
  padding: 120px 7vw;
  background: var(--cream);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.catalog-card {
  background: #fff;
  padding: 32px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}
.catalog-card-top {
  display: flex;
  justify-content: space-between;
  color: var(--teal);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.catalog-artwork {
  width: 138px;
  height: 138px;
  margin-top: 24px;
  box-shadow: 0 10px 28px #045c6c14;
}
.catalog-card h3 {
  font-size: 30px;
  margin: 24px 0 18px;
}
.catalog-card p {
  font:
    14px/1.7 Georgia,
    serif;
  color: #5b6b70;
  flex: 1;
}
.catalog-meta {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}
.catalog-meta strong {
  color: var(--teal);
}
.catalog-card a {
  margin-top: 24px;
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: 0.13em;
  color: var(--teal-dark);
}
.catalog-actions {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.catalog-actions a {
  margin: 0;
}
.catalog-actions a:last-child {
  color: var(--teal);
  font-weight: 700;
}
.trust-strip {
  padding: 90px 8vw;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
}
.trust-strip article {
  border-top: 1px solid var(--teal);
  padding-top: 24px;
}
.trust-strip span {
  color: var(--teal);
  font-size: 9px;
  letter-spacing: 0.13em;
}
.trust-strip h3 {
  font-size: 28px;
  margin: 30px 0 14px;
}
.trust-strip p {
  color: #657579;
  font:
    14px/1.7 Georgia,
    serif;
  margin: 0;
}
.home-faq {
  padding: 120px 8vw;
  background: var(--cream);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 9vw;
}
.home-faq h2 {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font:
    22px/1.35 Georgia,
    serif;
  padding-right: 38px;
  position: relative;
}
.faq-list summary:after {
  content: "+";
  position: absolute;
  right: 4px;
  color: var(--teal);
}
.faq-list details[open] summary:after {
  content: "–";
}
.faq-list p {
  color: #5d6d71;
  font:
    14px/1.75 Georgia,
    serif;
  max-width: 650px;
  margin: 18px 0 0;
}
.therapy-detail-hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  background: #fff;
}
.therapy-detail-copy {
  padding: 90px 7vw 90px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.back-link {
  color: var(--teal-dark);
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 55px;
}
.therapy-detail-copy h1 {
  font-size: clamp(58px, 6vw, 90px);
  line-height: 0.94;
  margin-bottom: 30px;
}
.therapy-detail-copy > p {
  font:
    17px/1.75 Georgia,
    serif;
  color: #5a6a6e;
  max-width: 600px;
}
.therapy-detail-meta {
  width: 100%;
  max-width: 520px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  margin: 20px 0 28px;
  font-size: 12px;
}
.therapy-detail-meta strong {
  color: var(--teal);
}
.therapy-detail-art {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f7f4ed, #eaf2ef);
  padding: 7vw;
}
.therapy-detail-art .therapy-artwork {
  width: min(520px, 100%);
  height: auto;
  box-shadow: 0 30px 80px #045c6c1f;
}
.therapy-benefits {
  padding: 120px 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  background: var(--cream);
}
.therapy-benefits h2 {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
}
.benefit-list {
  border-top: 1px solid var(--line);
}
.benefit-list article {
  min-height: 115px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 55px 1fr;
  align-items: center;
}
.benefit-list span {
  color: var(--teal);
  font-size: 9px;
}
.benefit-list h3 {
  font-size: 25px;
  margin: 0;
}
.therapy-expect {
  padding: 110px 8vw;
  background: var(--teal-dark);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
}
.therapy-expect h2 {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
}
.therapy-expect p {
  font:
    16px/1.8 Georgia,
    serif;
  color: #cae0e2;
}
.therapy-expect .button {
  margin-top: 20px;
}
.mobile-booking-bar {
  display: none;
}
.editorial {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 760px;
  background: #e5ded1;
}
.editorial-image {
  background-size: cover;
  background-position: center;
}
.space-detail-image {
  background-image: url(../images/hero.webp);
}
.editorial-copy {
  padding: 100px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.editorial-copy h2 {
  font-size: clamp(50px, 5vw, 73px);
  line-height: 1;
}
.editorial-copy p {
  font:
    16px/1.8 Georgia,
    serif;
  color: #526268;
}
.values {
  padding: 90px 8vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  background: #fff;
}
.values article {
  border-top: 2px solid var(--teal);
  padding-top: 25px;
}
.values article > span {
  font-size: 9px;
  color: var(--teal);
}
.values h3 {
  font-size: 28px;
  margin: 34px 0 14px;
}
.values p {
  font:
    14px/1.7 Georgia,
    serif;
  color: #657579;
}
.programs {
  background: #fff;
}
.program-row {
  display: grid;
  grid-template-columns: 4% 86px 1fr 180px 160px;
  gap: 30px;
  align-items: center;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}
.program-row:last-child {
  border-bottom: 1px solid var(--line);
}
.program-row > span {
  font-size: 9px;
  color: var(--teal);
}
.program-icon {
  width: 82px;
  height: 82px;
  padding: 4px;
  background: transparent;
}
.program-row h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
.program-row p {
  font:
    14px/1.65 Georgia,
    serif;
  color: #657579;
  margin: 0;
  max-width: 650px;
}
.program-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.program-meta strong {
  color: var(--teal);
}
.program-row > a {
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: 0.12em;
  color: var(--teal-dark);
}
.combo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.combo-card {
  background: #fff;
  padding: 30px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--teal);
}
.combo-card > span {
  font-size: 9px;
  color: var(--teal);
}
.combo-card h3 {
  font-size: 31px;
  margin: 35px 0 25px;
}
.combo-card ul {
  padding: 0;
  list-style: none;
  flex: 1;
}
.combo-card li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font:
    13px Georgia,
    serif;
}
.combo-card > div {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}
.combo-card strong {
  color: var(--teal);
}
.combo-card a {
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: 0.12em;
  color: var(--teal-dark);
}
.contact-grid {
  padding: 120px 8vw;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10vw;
  background: #fff;
}
.contact-grid h2 {
  font-size: clamp(52px, 5vw, 76px);
  line-height: 1;
}
.contact-grid > div:first-child > p {
  font:
    17px/1.8 Georgia,
    serif;
  color: #526268;
  margin-top: 35px;
}
.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.contact-details article {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.contact-details small {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 8px;
  color: var(--teal);
}
.contact-details p {
  font:
    14px/1.8 Georgia,
    serif;
  color: #526268;
  margin-top: 18px;
}
.footer {
  background: #123c45;
  color: #fff;
  padding: 110px 7vw 30px;
}
.footer-call {
  text-align: center;
  padding-bottom: 95px;
}
.footer-call .kicker {
  justify-content: center;
}
.footer-call h2 {
  font-size: clamp(46px, 5vw, 74px);
  line-height: 1.05;
  margin-bottom: 40px;
}
.footer-call h2 em {
  color: #79cbd2;
}
.footer-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 50px 0;
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 40px;
}
.footer-logo img {
  width: 125px;
  filter: brightness(0) invert(1);
}
.footer-grid small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 8px;
  color: #92c5c9;
  margin-bottom: 15px;
}
.footer-grid p {
  font:
    13px/1.8 Georgia,
    serif;
  color: #c8dadd;
}
.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 7px;
  letter-spacing: 0.14em;
  color: #91b3b7;
}
@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 120px 1fr;
    height: 88px;
    padding: 0 22px;
  }
  nav {
    display: none;
  }
  .header-cta {
    justify-self: end;
  }
  .brand img {
    width: 90px;
    height: 58px;
  }
  .home-hero,
  .page-hero,
  .home-spa-day,
  .editorial {
    grid-template-columns: 1fr;
  }
  .hero-slider {
    min-height: 1040px;
  }
  .hero-slide {
    grid-template-rows: 420px 620px;
  }
  .home-hero {
    min-height: auto;
  }
  .home-hero-image {
    min-height: 460px;
    order: 1;
  }
  .home-hero-image-pais {
    min-height: 460px;
    order: 1;
    background-position: 68% center;
  }
  .hero-slide .home-hero-copy {
    order: 2;
  }
  .home-hero-copy {
    padding: 80px 25px;
  }
  .home-hero h1 {
    font-size: 64px;
  }
  .campaign-slide .home-hero-copy {
    padding: 38px 25px 64px;
  }
  .campaign-slide h1 {
    font-size: 48px;
  }
  .intro-split {
    padding: 90px 25px;
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .intro-split h2 {
    font-size: 46px;
  }
  .intro-split p,
  .intro-split .inline-link {
    margin-left: 0;
  }
  .feelings,
  .featured-treatments,
  .therapy-catalog,
  .programs,
  .spa-combos {
    padding: 85px 25px;
  }
  .section-heading,
  .catalog-intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .section-heading h2 {
    font-size: 52px;
  }
  .feeling-row {
    grid-template-columns: 45px 1fr 40px;
    padding: 28px 0;
    gap: 10px;
  }
  .feeling-row p,
  .feeling-row small {
    grid-column: 2/4;
  }
  .feeling-row b {
    grid-column: 3;
    grid-row: 1;
  }
  .treatment-preview-grid,
  .catalog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .home-spa-day > div:last-child {
    padding: 85px 25px;
  }
  .spa-day-photo {
    min-height: 560px;
  }
  .gift {
    padding: 80px 25px;
    grid-template-columns: 1fr;
  }
  .page-hero-copy {
    padding: 75px 25px;
  }
  .page-hero-image {
    min-height: 500px;
  }
  .contact-map iframe {
    min-height: 500px;
  }
  .editorial-image {
    min-height: 560px;
  }
  .editorial-copy {
    padding: 85px 25px;
  }
  .values {
    padding: 70px 25px;
    grid-template-columns: 1fr;
  }
  .trust-strip,
  .home-faq,
  .therapy-benefits,
  .therapy-expect {
    padding: 80px 25px;
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .therapy-detail-hero {
    grid-template-columns: 1fr;
  }
  .therapy-detail-copy {
    padding: 75px 25px;
  }
  .therapy-detail-art {
    padding: 70px 25px;
  }
  .program-row {
    grid-template-columns: 40px 76px 1fr;
  }
  .program-row > div:not(.program-meta) {
    grid-column: 3;
  }
  .program-meta,
  .program-row > a {
    grid-column: 3;
  }
  .combo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    padding: 85px 25px;
    grid-template-columns: 1fr;
  }
  .footer {
    padding: 85px 25px 25px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-logo {
    grid-column: 1/-1;
  }
}
@media (max-width: 620px) {
  .header-cta {
    padding: 11px 12px;
    font-size: 8px;
  }
  .home-hero h1,
  .page-hero h1 {
    font-size: 51px;
  }
  .hero-slider {
    min-height: 1040px;
  }
  .hero-slide {
    grid-template-rows: 350px 690px;
  }
  .campaign-slide h1 {
    font-size: 39px;
  }
  .home-hero-image-pais {
    min-height: 350px;
    background-position: 67% center;
  }
  .home-hero-copy {
    padding: 55px 25px 75px;
  }
  .campaign-slide .home-hero-copy {
    padding: 34px 25px 82px;
  }
  .home-hero .campaign-detail {
    font-size: 13px;
  }
  .hero-controls {
    right: 16px;
    bottom: 16px;
  }
  .home-hero-image,
  .page-hero-image,
  .spa-day-photo,
  .editorial-image {
    min-height: 420px;
  }
  .contact-map iframe {
    min-height: 420px;
  }
  .map-directions {
    right: 18px;
    bottom: 18px;
  }
  .treatment-preview-grid,
  .catalog-grid,
  .combo-grid,
  .contact-details {
    grid-template-columns: 1fr;
  }
  .treatment-preview-grid p {
    min-height: auto;
  }
  .gift h2,
  .home-spa-day h2,
  .catalog-intro h2,
  .editorial-copy h2,
  .contact-grid h2 {
    font-size: 45px;
  }
  .round-link {
    width: 180px;
    height: 180px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .legal {
    flex-direction: column;
    gap: 10px;
  }
  body {
    padding-bottom: 64px;
  }
  .mobile-booking-bar {
    position: fixed;
    z-index: 50;
    left: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 25px #172c3114;
  }
  .mobile-booking-bar a {
    display: grid;
    place-items: center;
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--teal-dark);
  }
  .mobile-booking-bar a:first-child {
    background: var(--teal);
    color: #fff;
  }
  .trust-strip {
    grid-template-columns: 1fr;
  }
  .home-faq h2,
  .therapy-benefits h2,
  .therapy-expect h2,
  .therapy-detail-copy h1 {
    font-size: 43px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
