/* =========================================================================
   Mary Reis Massage Therapy — stylesheet
   Mobile first. Sections: tokens / base / layout / buttons / header /
   hero / about + location / treatments + plans / reserve / footer /
   decor / motion / breakpoints
   ========================================================================= */

/* ----------------------------- Design tokens ---------------------------- */
:root {
  /* Brand palette (taken from the visual identity) */
  --primary-green: #37532A;

  --brand:        var(--primary-green);
  --brand-dark:   #2B4220;
  --brand-deep:   #1F3016;
  --brand-soft:   #6B8560;

  --cream:        #F7F4EC;
  --cream-2:      #F1ECDF;
  --sand:         #E4DCC9;
  --white:        #FFFFFF;

  --ink:          #232B1D;
  --ink-soft:     #4E5A46;
  --alert:        #93553B;

  /* Typography */
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --font-sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --header-h: 68px;
  --section-y: clamp(4rem, 10vw, 7rem);
  --radius: 22px;
  --ease: cubic-bezier(.22, .68, .28, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden; /* safety net: nothing may scroll sideways on mobile */
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
ul { list-style: none; margin: 0; padding: 0; }
p  { margin: 0 0 1.15em; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.12; margin: 0 0 .5em; }
a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}
.plans :focus-visible,
.site-footer :focus-visible { outline-color: var(--white); }

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

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 200;
  padding: .75rem 1.25rem;
  background: var(--brand);
  color: var(--white);
  border-radius: 0 0 14px 14px;
  text-decoration: none;
  font-size: .9rem;
}
.skip-link:focus { top: 0; }

/* ------------------------------- Layout -------------------------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section { position: relative; padding-block: var(--section-y); overflow: hidden; }

.section__head { text-align: center; max-width: 40rem; margin-inline: auto; }

.section__title {
  font-size: clamp(2rem, 7.2vw, 3.15rem);
  letter-spacing: -.015em;
  color: var(--brand-deep);
}
.section__title--light { color: var(--white); }
.section__title--sm { font-size: clamp(1.6rem, 5.6vw, 2.3rem); }

.section__lead {
  max-width: 34rem;
  margin-inline: auto;
  color: var(--ink-soft);
  font-size: clamp(1rem, 4vw, 1.08rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}
.eyebrow--center { display: flex; justify-content: center; }
.eyebrow--light { color: rgba(255, 255, 255, .82); }

.eyebrow__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}

/* Small snake ornament used above section titles */
.ornament {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: 0 auto 1.1rem;
  width: fit-content;
}
.ornament__line {
  display: block;
  width: clamp(34px, 9vw, 54px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand));
  opacity: .55;
}
.ornament__line:last-child { background: linear-gradient(90deg, var(--brand), transparent); }
.ornament__snake { width: auto; height: 30px; color: var(--brand); opacity: .85; }

/* ------------------------------- Buttons ------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 52px;
  padding: .85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease);
}
.btn--solid   { background: var(--brand); color: var(--white); }
.btn--outline { background: transparent; color: var(--brand-deep); border-color: rgba(55, 83, 42, .45); }
.btn--sm { min-height: 44px; padding: .55rem 1.25rem; font-size: .85rem; }
.btn--lg { min-height: 58px; padding: 1rem 2rem; font-size: 1rem; }
.btn__icon { width: 20px; height: 20px; flex: none; }

.btn:hover  { transform: translateY(-2px); }
.btn--solid:hover   { background: var(--brand-dark); }
.btn--outline:hover { border-color: var(--brand); background: rgba(55, 83, 42, .07); }
.btn:active { transform: translateY(0); }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(55, 83, 42, .28);
  color: var(--brand);
  background: rgba(255, 255, 255, .55);
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.icon-btn svg { width: 21px; height: 21px; }
.icon-btn:hover { background: var(--brand); color: var(--white); border-color: var(--brand); }

/* ------------------------------- Header -------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 244, 236, .97);
  border-bottom-color: rgba(55, 83, 42, .14);
  box-shadow: 0 8px 30px -22px rgba(31, 48, 22, .5);
}
@supports (backdrop-filter: blur(10px)) {
  .site-header.is-scrolled { background: rgba(247, 244, 236, .86); backdrop-filter: blur(14px); }
}

.site-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  min-width: 0;
}
.brand__mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  flex: none;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.brand__name {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: var(--brand-deep);
  letter-spacing: .01em;
}
.brand__tagline {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand);
  opacity: .85;
}

.header-tools { display: flex; align-items: center; gap: .5rem; }

.nav-toggle {
  width: 46px; height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(55, 83, 42, .28);
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
}
.nav-toggle__bars { position: relative; width: 20px; height: 12px; display: block; }
.nav-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--brand-deep);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav-toggle__bars span:first-child { top: 0; }
.nav-toggle__bars span:last-child  { bottom: 0; }
.site-header.is-open .nav-toggle__bars span:first-child { transform: translateY(5.25px) rotate(45deg); }
.site-header.is-open .nav-toggle__bars span:last-child  { transform: translateY(-5.25px) rotate(-45deg); }

/* Mobile navigation panel */
.site-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  padding: 1.5rem clamp(1.25rem, 5vw, 2.5rem) 2rem;
  background: var(--cream);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 26px 50px -30px rgba(31, 48, 22, .6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s linear .35s;
}
.site-header.is-open .site-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s;
}

.site-nav__list { display: flex; flex-direction: column; }
.site-nav__link {
  display: block;
  padding: .95rem 0;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--brand-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(55, 83, 42, .13);
}
.site-nav__link:hover { color: var(--brand); }

.site-nav__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: .15rem;
  color: var(--brand);
}
.lang-switch__btn {
  border: 0;
  background: none;
  padding: .5rem .45rem;
  font: inherit;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: rgba(55, 83, 42, .55);
  cursor: pointer;
  transition: color .3s var(--ease);
}
.lang-switch__btn:hover { color: var(--brand); }
.lang-switch__btn.is-active { color: var(--brand-deep); text-decoration: underline; text-underline-offset: 5px; }
.lang-switch__divider { color: rgba(55, 83, 42, .4); font-size: .8rem; }

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(31, 48, 22, .38);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.nav-backdrop.is-visible { opacity: 1; }

/* --------------------------------- Hero -------------------------------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(1.75rem, 7vw, 3.5rem));
  padding-bottom: clamp(3.5rem, 10vw, 6rem);
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 85% 0%, var(--cream-2) 0%, transparent 60%),
    var(--cream);
}

.hero__content { max-width: 34rem; }

.hero__title {
  font-size: clamp(2.4rem, 11vw, 3.4rem);
  letter-spacing: -.02em;
  color: var(--brand-deep);
  margin-bottom: .55em;
}

.hero__text {
  font-size: clamp(1rem, 4.2vw, 1.12rem);
  color: var(--ink-soft);
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero__actions .btn { flex: 1 1 auto; min-width: 12.5rem; }

.hero__media {
  position: relative;
  margin: clamp(1.75rem, 6vw, 2.75rem) 0 0;
}

.arch {
  position: relative;
  overflow: hidden;
  border-radius: 50% 50% 5% 5% / 34% 34% 3% 3%;
  background: var(--sand);
  box-shadow: 0 40px 60px -45px rgba(31, 48, 22, .8);
}
.arch img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 466 / 620; }
.arch--soft { border-radius: 50% 50% 16px 16px / 26% 26% 4% 4%; }
.arch--soft img { aspect-ratio: 251 / 500; object-position: center 18%; }

.hero__emblem {
  position: absolute;
  right: -6px;
  bottom: -18px;
  width: clamp(84px, 24vw, 116px);
  padding: 14px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 18px 34px -20px rgba(31, 48, 22, .85);
}

/* --------------------------- About + location --------------------------- */
.about { background: var(--cream); }

.about__watermark {
  position: absolute;
  top: 34%;
  left: 50%;
  width: min(520px, 105vw);
  transform: translate(-50%, -50%);
  opacity: .04;
  pointer-events: none;
  user-select: none;
}

.about__intro { position: relative; z-index: 1; display: grid; gap: clamp(2rem, 7vw, 3rem); }

.about__media { position: relative; width: 100%; margin: 0 auto; max-width: 16rem; }
.about__media .arch { box-shadow: 0 40px 60px -48px rgba(31, 48, 22, .9); }

.about__snake {
  position: absolute;
  left: -34px;
  bottom: -30px;
  z-index: -1;
  width: 92px;
  height: auto;
  color: var(--brand);
  opacity: .45;
}

.about__media-2 {
  width: 100%;
  margin-top: .9rem;
  border-radius: 18px;
  box-shadow: 0 24px 40px -34px rgba(31, 48, 22, .85);
}

.about__content .ornament { margin-inline: 0 auto; }
.about__content p { color: var(--ink-soft); max-width: 34rem; }

.about__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 4.4vw, 1.3rem);
  line-height: 1.5;
  color: var(--brand) !important;
  padding-left: 1rem;
  border-left: 1px solid rgba(55, 83, 42, .3);
}

.qualities {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.4rem;
  margin-top: 1.75rem;
}
.quality {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
}
.quality__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(55, 83, 42, .3);
  border-radius: 50%;
  flex: none;
}
.quality__icon svg { width: 18px; height: 18px; }

.location { position: relative; z-index: 1; margin-top: clamp(3.5rem, 10vw, 6rem); }
.location__head { text-align: center; max-width: 34rem; margin: 0 auto clamp(1.75rem, 5vw, 2.5rem); }
.location__lead { color: var(--ink-soft); margin: 0; }

.location__grid { display: grid; gap: 1rem; }

.location__card {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  padding: clamp(1.5rem, 5vw, 2rem);
  background: var(--cream-2);
  border: 1px solid rgba(55, 83, 42, .12);
  border-radius: var(--radius);
  font-style: normal;
}
.location__label {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}
.location__address {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 4.4vw, 1.35rem);
  line-height: 1.55;
  color: var(--brand-deep);
}
.location__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 44px;
  margin-top: .35rem;
  padding-top: .5rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  width: fit-content;
}
.location__link svg { width: 18px; height: 18px; }
.location__link:hover { border-bottom-color: currentColor; }

.location__map {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(55, 83, 42, .16);
  background: var(--cream-2);
  aspect-ratio: 4 / 3;
  box-shadow: 0 30px 50px -44px rgba(31, 48, 22, .9);
}
.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(.82) contrast(.96);
}

/* ------------------------------ Treatments ------------------------------ */
.treatments { background: var(--cream); }
.treatments .section__head { margin-bottom: clamp(2.25rem, 7vw, 3.25rem); }

.accordion {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  margin-inline: auto;
  border-top: 1px solid rgba(55, 83, 42, .18);
}
.accordion__item { border-bottom: 1px solid rgba(55, 83, 42, .18); }
.accordion__heading { margin: 0; font-family: inherit; }

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 68px;
  padding: 1.1rem 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  color: var(--brand-deep);
  transition: color .3s var(--ease);
}
.accordion__name {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 4.6vw, 1.5rem);
  line-height: 1.25;
}
.accordion__trigger:hover { color: var(--brand); }

.accordion__plus {
  position: relative;
  width: 34px; height: 34px;
  flex: none;
  border: 1px solid rgba(55, 83, 42, .3);
  border-radius: 50%;
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.accordion__plus::before,
.accordion__plus::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 1.5px;
  background: var(--brand);
  transform: translate(-50%, -50%);
  transition: transform .35s var(--ease), background-color .3s var(--ease);
}
.accordion__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion__item.is-open .accordion__plus { background: var(--brand); border-color: var(--brand); }
.accordion__item.is-open .accordion__plus::before,
.accordion__item.is-open .accordion__plus::after { background: var(--white); }
.accordion__item.is-open .accordion__plus::after { transform: translate(-50%, -50%) rotate(0deg); }

.accordion__panel {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  /* visibility flips instantly on open and only after the collapse on close */
  transition: height .38s var(--ease), visibility 0s linear .38s;
}
.accordion__item.is-open .accordion__panel {
  visibility: visible;
  transition: height .38s var(--ease), visibility 0s;
}
.accordion__inner { padding-bottom: 1.6rem; max-width: 40rem; }
.accordion__desc { color: var(--ink-soft); margin-bottom: 1rem; }
.accordion__meta { display: flex; align-items: baseline; gap: 1.25rem; margin: 0; }
.accordion__duration {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.accordion__price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--brand);
}

/* Extras */
.extras {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  margin: clamp(2.75rem, 7vw, 3.5rem) auto 0;
}
.extras__title {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: 1.2rem;
  color: var(--brand-deep);
  margin-bottom: .9rem;
}
.extras__plus { color: var(--brand); font-size: 1.4rem; line-height: 1; }

.extras__item {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  padding: .5rem 0;
}
.extras__name { color: var(--ink-soft); }
.extras__dots {
  flex: 1;
  min-width: 1.5rem;
  border-bottom: 1px dotted rgba(55, 83, 42, .4);
  transform: translateY(-.25em);
}
.extras__price { color: var(--brand); font-weight: 600; }

/* Monthly plans (green band) */
.plans {
  position: relative;
  overflow: hidden;
  margin: clamp(3rem, 8vw, 4.5rem) clamp(.75rem, 3vw, 2rem) 0;
  padding-block: clamp(2.75rem, 8vw, 4rem);
  background: var(--brand);
  color: var(--white);
  border-radius: 32px;
}
.plans .section__head { margin-bottom: clamp(1.75rem, 6vw, 2.5rem); }
.plans__lead { color: rgba(255, 255, 255, .78); margin: 0; }

.plans__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  max-width: 46rem;
  margin-inline: auto;
}

.plan {
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 140px 140px 22px 22px / 90px 90px 22px 22px;
  transition: background-color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.plan:hover { background: rgba(255, 255, 255, .12); transform: translateY(-3px); }
.plan--featured { background: rgba(255, 255, 255, .13); border-color: rgba(255, 255, 255, .42); }

.plan__badge {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  margin: 0 auto 1rem;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
}
.plan__badge img { width: 32px; }

.plan__name {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  margin-bottom: .4em;
}
.plan__price {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 8vw, 3rem);
  line-height: 1;
  color: var(--white);
  margin: 0 0 1rem;
}
.plan__list li {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.5;
  color: rgba(255, 255, 255, .8);
  padding: .3rem 0;
}

.plans__note {
  position: relative;
  z-index: 1;
  margin: clamp(1.75rem, 5vw, 2.25rem) 0 0;
  text-align: center;
  font-size: .82rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .72);
}

/* ------------------------------- Reserve -------------------------------- */
.reserve { background: var(--cream); }

.booking {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  margin: clamp(2.25rem, 6vw, 3rem) auto 0;
}

.booking__step { margin: 0 0 clamp(1.75rem, 5vw, 2.25rem); padding: 0; border: 0; }

.booking__legend {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 0;
  margin-bottom: 1rem;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
}
.booking__stepno {
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border: 1px solid rgba(55, 83, 42, .4);
  border-radius: 50%;
  font-size: .74rem;
  flex: none;
}
.booking__optional {
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: lowercase;
  color: var(--ink-soft);
  font-style: italic;
}

.options { display: grid; gap: .75rem; }

.option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 68px;
  padding: .9rem 1.1rem;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(55, 83, 42, .22);
  border-radius: 18px;
  cursor: pointer;
  transition: border-color .3s var(--ease), background-color .3s var(--ease), transform .3s var(--ease);
}
.option:hover { border-color: rgba(55, 83, 42, .45); }
.option:focus-within { outline: 2px solid var(--brand); outline-offset: 3px; }
.option input {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0;
  margin: 0;
}

.option__text { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.option__name {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.25;
  color: var(--brand-deep);
}
.option__meta { font-size: .8rem; letter-spacing: .04em; color: var(--ink-soft); }

.option__mark {
  position: relative;
  width: 24px; height: 24px;
  margin-left: auto;
  flex: none;
  border: 1px solid rgba(55, 83, 42, .4);
  border-radius: 50%;
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.option__mark--box { border-radius: 8px; }
.option__mark::after {
  content: "";
  position: absolute;
  top: 46%; left: 50%;
  width: 10px; height: 5px;
  border-left: 1.6px solid var(--white);
  border-bottom: 1.6px solid var(--white);
  transform: translate(-50%, -50%) rotate(-45deg) scale(.6);
  opacity: 0;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.option.is-selected {
  border-color: var(--brand);
  background: rgba(55, 83, 42, .09);
}
.option.is-selected .option__mark { background: var(--brand); border-color: var(--brand); }
.option.is-selected .option__mark::after { opacity: 1; transform: translate(-50%, -50%) rotate(-45deg) scale(1); }

.booking__submit { display: grid; justify-items: center; gap: .85rem; text-align: center; }
.booking__submit .btn { width: 100%; max-width: 24rem; }

.booking__error {
  margin: 0;
  padding: .7rem 1.1rem;
  border: 1px solid rgba(147, 85, 59, .35);
  border-radius: 14px;
  background: rgba(147, 85, 59, .07);
  color: var(--alert);
  font-size: .88rem;
}
.booking__hint { margin: 0; font-size: .8rem; color: var(--ink-soft); max-width: 26rem; }

.config-note {
  max-width: 34rem;
  margin: 1.75rem auto 0;
  padding: .85rem 1.1rem;
  border: 1px dashed rgba(55, 83, 42, .5);
  border-radius: 14px;
  background: rgba(55, 83, 42, .06);
  font-size: .82rem;
  line-height: 1.5;
  color: var(--ink-soft);
  text-align: left;
}

/* -------------------------------- Footer -------------------------------- */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--brand-deep);
  color: rgba(255, 255, 255, .8);
  padding-block: clamp(3rem, 9vw, 4.5rem);
  text-align: center;
}
.site-footer__inner { position: relative; z-index: 1; display: grid; gap: 2rem; justify-items: center; }
.site-footer__brand img { width: 74px; margin: 0 auto .9rem; }
.site-footer__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin: 0;
}
.site-footer__tagline {
  margin: .35rem 0 0;
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}
.site-footer__location { margin: .9rem 0 0; font-size: .95rem; }

.site-footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.site-footer__links a {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 46px;
  padding: .6rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  font-size: .9rem;
  text-decoration: none;
  color: var(--white);
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.site-footer__links a:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .55); }
.site-footer__links svg { width: 18px; height: 18px; }

.site-footer__legal {
  margin: 0;
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
}

/* ------------------------------ Back to top ----------------------------- */
.to-top {
  position: fixed;
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1rem, 4vw, 2rem);
  z-index: 80;
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 16px 30px -18px rgba(31, 48, 22, .9);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s linear .35s, background-color .3s var(--ease);
}
.to-top svg { width: 20px; height: 20px; }
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s, background-color .3s var(--ease);
}
.to-top:hover { background: var(--brand-dark); }

/* --------------------------- Decorative line art ------------------------ */
.decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.decor svg { position: absolute; }

.decor--hero    { color: var(--brand); opacity: .3; }
.decor--contact { color: var(--brand); opacity: .28; }

.decor__circle--1 { width: 240px; top: -90px; right: -110px; }
.decor__wave--1   { width: 260px; bottom: 6%; left: -90px; }
.decor__wave--2   { width: 300px; top: 4%; right: -110px; }

.decor__sparkle { width: 18px; }
.decor__sparkle--1 { top: 16%; right: 12%; }
.decor__sparkle--2 { bottom: 26%; left: 6%; width: 12px; }
.decor__sparkle--4 { bottom: 14%; left: 9%; width: 16px; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.decor__snake {
  position: absolute;
  pointer-events: none;
  user-select: none;
  height: auto;
  color: var(--brand);
}
.decor__snake--hero {
  right: -40px;
  bottom: 4%;
  width: 108px;
  opacity: .09;
}
.decor__snake--treatments {
  z-index: 0;
  top: 16%;
  left: -46px;
  width: 132px;
  opacity: .1;
}
.decor__snake--plans {
  z-index: 0;
  right: -34px;
  bottom: -40px;
  width: 150px;
  color: var(--white);
  opacity: .14;
}
.decor__snake--location {
  z-index: 0;
  right: -52px;
  top: 12%;
  width: 118px;
  opacity: .09;
  transform: scaleX(-1);
}
.decor__snake--reserve {
  z-index: 0;
  right: -46px;
  top: 18%;
  width: 140px;
  opacity: .1;
  transform: scaleX(-1) rotate(4deg);
}
.decor__snake--footer {
  left: -44px;
  bottom: -70px;
  width: 150px;
  color: var(--white);
  opacity: .08;
}

/* ------------------------------- Motion --------------------------------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  transition-delay: var(--d, 0ms);
}

@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(3deg); }
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: .85; }
  50%      { transform: scale(1.08); opacity: 1; }
}
@keyframes sway {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%      { transform: translateY(-14px) rotate(1.5deg); }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(5px); }
  60%      { transform: translateX(-3px); }
  80%      { transform: translateX(2px); }
}

.decor__circle { animation: drift 22s ease-in-out infinite; }
.decor__wave   { animation: drift 26s ease-in-out infinite reverse; }
.decor__sparkle { animation: breathe 7s ease-in-out infinite; }
.decor__sparkle--2 { animation-delay: 1.4s; }
.decor__sparkle--4 { animation-delay: 2.1s; }
.decor__snake--treatments { animation: sway 26s ease-in-out infinite; }
.decor__snake--plans { animation: sway 30s ease-in-out infinite reverse; }
.decor__snake--location { animation: sway 34s ease-in-out infinite; }
.decor__snake--reserve { animation: sway 28s ease-in-out infinite reverse; }
.decor__snake--hero { animation: sway 32s ease-in-out infinite; }

.is-shaking { animation: shake .45s var(--ease); }

/* ------------------------------ Breakpoints ----------------------------- */

/* Small phones: keep the hero CTAs comfortable */
@media (max-width: 400px) {
  .hero__actions .btn { flex: 1 1 100%; }
}

/* Large phones / small tablets */
@media (min-width: 600px) {
  .hero__media { max-width: 27rem; margin-inline: auto; }
  .about__media { margin-inline: auto; }
  .options { grid-template-columns: repeat(2, 1fr); }
  .plans__grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .location__grid { gap: 1.25rem; }
  .site-footer__inner { gap: 2.25rem; }
}

/* Tablet and up: switch to the desktop navigation */
@media (min-width: 900px) {
  :root { --header-h: 88px; }

  .header-tools { display: none; }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, 3vw, 2.75rem);
    padding: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .site-nav__list { flex-direction: row; align-items: center; gap: clamp(1.1rem, 2.4vw, 2rem); }
  .site-nav__link {
    position: relative;
    padding: .35rem 0;
    border: 0;
    font-family: var(--font-sans);
    font-size: .92rem;
    color: var(--ink);
  }
  .site-nav__link::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
  }
  .site-nav__link:hover::after { transform: scaleX(1); }
  .site-nav__actions { margin: 0; gap: 1.25rem; }

  .brand__mark { width: 52px; height: 52px; }
  .brand__name { font-size: 1.3rem; }
  .brand__tagline { font-size: .64rem; }

  /* Hero becomes two columns */
  .hero__inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: clamp(2.5rem, 6vw, 5rem);
    min-height: calc(100vh - var(--header-h));
    padding-block: clamp(2rem, 5vw, 4rem);
  }
  .hero { padding-bottom: clamp(4rem, 8vw, 7rem); }
  .hero__title { font-size: clamp(3rem, 4.6vw, 4.1rem); }
  .hero__actions .btn { flex: 0 0 auto; }
  .hero__media { margin: 0; max-width: 25rem; justify-self: end; }
  .hero__media .arch img { aspect-ratio: 466 / 640; }

  .decor__circle--1 { width: 340px; top: -120px; right: -120px; }
  .decor__wave--1 { width: 320px; bottom: 8%; left: -100px; }
  .decor__sparkle--1 { top: 20%; right: 44%; }
  .decor__snake--hero { left: 3%; right: auto; bottom: 8%; width: 132px; opacity: .13; }

  /* About: photo beside the text */
  .about__intro {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 4.5rem);
  }
  .about__media { width: 100%; max-width: 19rem; margin-inline: auto; }
  .about__media-2 {
    position: absolute;
    right: -26%;
    bottom: -2.5rem;
    width: 74%;
    margin: 0;
    border: 6px solid var(--cream);
    border-radius: 20px;
  }
  .about__snake { left: -44px; bottom: 8%; width: 104px; }

  .location__grid { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: stretch; }
  .location__card { justify-content: center; }
  .location__map { aspect-ratio: 16 / 10; height: 100%; }

  .decor__snake--treatments { width: 190px; left: -60px; top: 14%; }
  .decor__snake--plans { width: 210px; right: -50px; }
  .decor__snake--location { width: 165px; right: -70px; top: 8%; }
  .decor__snake--reserve { width: 200px; right: -60px; top: 14%; }
  .decor__snake--footer { width: 210px; left: -60px; bottom: -90px; }
}

/* Desktop */
@media (min-width: 1000px) {
  .options { grid-template-columns: repeat(2, 1fr); }
  .plans { border-radius: 44px; }
}

/* Wide desktop */
@media (min-width: 1280px) {
  .hero__inner { gap: 6rem; }
  .hero__media { max-width: 27rem; }
}

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

  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .btn:hover, .plan:hover { transform: none; }
}
