:root {
  --ink: #172019;
  --muted: #667168;
  --forest: #31533b;
  --forest-dark: #213928;
  --sage: #dce7da;
  --line: rgba(37, 54, 42, .12);
  --paper: #fbfaf6;
  --milk: rgba(255, 255, 255, .74);
  --warm: #f2eee6;
  --rose: #b9807a;
  --blue: #72879a;
  --shadow: 0 24px 80px rgba(28, 42, 32, .13);
  --soft-shadow: 0 12px 40px rgba(28, 42, 32, .08);
  --radius: 18px;
  --site-max: 1440px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html.preload-lock,
html.preload-lock body {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(220, 231, 218, .65), transparent 34rem),
    linear-gradient(180deg, #fffdf9 0%, var(--paper) 38%, #f6f3ec 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open,
body.modal-open,
body.page-transitioning { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }

.site-loader,
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .74), rgba(251, 250, 246, .54) 34%, rgba(220, 231, 218, .38) 100%),
    rgba(251, 250, 246, .58);
  backdrop-filter: blur(30px) saturate(138%);
  -webkit-backdrop-filter: blur(30px) saturate(138%);
}

.site-loader {
  z-index: 110;
  opacity: 1;
  visibility: visible;
  transition:
    opacity .72s cubic-bezier(.22, 1, .36, 1),
    visibility .72s step-end;
}

.loader-blur {
  position: absolute;
  inset: 0;
  background-image: url("assets/img/editorial/hero-wellbeing.jpeg");
  background-size: cover;
  background-position: center;
  filter: blur(26px);
  opacity: .18;
  transform: scale(1.08);
}

.loader-mark {
  position: relative;
  z-index: 2;
  width: 92px;
  height: 92px;
  display: grid;
  justify-items: center;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 50%;
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 18px 54px rgba(28, 42, 32, .12);
  transform: translateY(0) scale(1);
  transition:
    opacity .55s cubic-bezier(.22, 1, .36, 1),
    transform .72s cubic-bezier(.22, 1, .36, 1);
}

.loader-mark img {
  width: 54px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(28, 42, 32, .1));
}

.loader-mark span {
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  background:
    conic-gradient(from 20deg, rgba(49, 83, 59, .08), var(--forest), var(--rose), rgba(49, 83, 59, .08) 76%),
    rgba(255, 255, 255, .28);
  animation: loaderSpin 1.28s linear infinite;
  mask: radial-gradient(circle, transparent 58%, #000 59%);
}

body.loader-leaving .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.loader-leaving .site-loader .loader-mark {
  opacity: 0;
  transform: translateY(-14px) scale(.965);
}

.page-transition {
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .58s cubic-bezier(.22, 1, .36, 1),
    visibility .58s step-end;
}

.page-transition .loader-blur {
  opacity: .14;
}

.page-transition .loader-mark {
  opacity: 0;
  transform: translateY(12px) scale(.965);
}

.page-transition .loader-mark img {
  opacity: .96;
}

body.page-transitioning .page-transition {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity .52s cubic-bezier(.22, 1, .36, 1),
    visibility .52s step-start;
}

body.page-transitioning .page-transition .loader-mark {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(var(--site-max), calc(100% - 36px));
  margin: 14px auto 0;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px 16px 12px 20px;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 999px;
  background: rgba(255, 255, 255, .66);
  backdrop-filter: blur(24px) saturate(145%);
  box-shadow: 0 18px 70px rgba(35, 48, 37, .12);
}

.brand img {
  width: 126px;
  max-height: 48px;
  object-fit: contain;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: #2a352d;
  font-size: 14px;
}

.desktop-nav a,
.nav-button,
.portal-link {
  opacity: .82;
  transition: opacity .2s ease, color .2s ease;
}

.desktop-nav a:hover,
.nav-button:hover,
.portal-link:hover { opacity: 1; color: var(--forest); }

.nav-button,
.mobile-modal-link {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

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

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}

.button:hover { transform: translateY(-1px); box-shadow: var(--soft-shadow); }
.button-dark { color: white; background: linear-gradient(180deg, #41674b, var(--forest-dark)); border-color: rgba(33, 57, 40, .22); }
.button-light { background: rgba(255,255,255,.76); color: var(--forest-dark); backdrop-filter: blur(18px); }
.button.full { width: 100%; }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.7);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
}

.mobile-nav {
  position: fixed;
  inset: 96px 14px auto;
  z-index: 19;
  display: none;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.mobile-nav a,
.mobile-modal-link {
  display: block;
  width: 100%;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.mobile-nav a:last-child { border-bottom: 0; }

.hero {
  width: min(var(--site-max), calc(100% - 36px));
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
  height: min(680px, calc(100svh - 118px));
  min-height: 560px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.56);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 52px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1, h2 {
  margin: 0;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-weight: 500;
  line-height: .98;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  font-size: clamp(42px, 4.15vw, 62px);
}

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

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
}

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

.hero-lede {
  max-width: 500px;
  margin: 18px 0 0;
  color: #304035;
  font-size: clamp(16px, 1.35vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

.trust-row span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 16px;
  background: rgba(255,255,255,.54);
  color: #334138;
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(28,42,32,.06);
}

.hero-media {
  position: relative;
  min-height: 100%;
  isolation: isolate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251,250,246,.86), rgba(251,250,246,.04) 38%, rgba(33,57,40,.06));
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card,
.glass-panel {
  border: 1px solid rgba(255, 255, 255, .72);
  background: linear-gradient(140deg, rgba(255,255,255,.78), rgba(255,255,255,.46));
  backdrop-filter: blur(24px) saturate(130%);
  box-shadow: 0 20px 70px rgba(22, 31, 24, .14);
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: min(290px, calc(100% - 40px));
  padding: 14px;
  border-radius: 18px;
}

.floating-card p { margin: 6px 0 0; font-size: 13px; }
.availability-card { left: 28px; bottom: 34px; }
.privacy-card { right: 28px; top: 34px; }
.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: #5c8f62;
  box-shadow: 0 0 0 7px rgba(92,143,98,.12);
}

.section {
  width: min(var(--site-max), calc(100% - 36px));
  margin: 96px auto;
}

.motion-ready .site-header,
.motion-ready .hero-copy > *,
.motion-ready .hero-media,
.motion-ready .floating-card {
  opacity: 0;
  transform: translateY(24px) scale(.985);
}

.motion-ready body.is-loaded .site-header,
.motion-ready body.is-loaded .hero-copy > *,
.motion-ready body.is-loaded .hero-media,
.motion-ready body.is-loaded .floating-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 1.7s cubic-bezier(.22, 1, .36, 1),
    transform 1.95s cubic-bezier(.22, 1, .36, 1),
    box-shadow .48s ease,
    background .48s ease;
  transition-delay: var(--motion-delay, 0ms);
}

.motion-ready body.is-loaded .site-header { --motion-delay: 120ms; }
.motion-ready body.is-loaded .hero-copy .eyebrow { --motion-delay: 260ms; }
.motion-ready body.is-loaded .hero-copy h1 { --motion-delay: 420ms; }
.motion-ready body.is-loaded .hero-lede { --motion-delay: 590ms; }
.motion-ready body.is-loaded .hero-actions { --motion-delay: 760ms; }
.motion-ready body.is-loaded .trust-row { --motion-delay: 930ms; }
.motion-ready body.is-loaded .hero-media { --motion-delay: 460ms; }
.motion-ready body.is-loaded .availability-card { --motion-delay: 1120ms; }
.motion-ready body.is-loaded .privacy-card { --motion-delay: 1260ms; }

.motion-ready .motion-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(.985);
  transition:
    opacity 1.65s cubic-bezier(.22, 1, .36, 1),
    transform 1.85s cubic-bezier(.22, 1, .36, 1),
    box-shadow .48s ease,
    background .48s ease,
    border-color .48s ease;
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-ready .motion-reveal.motion-soft {
  transform: translate3d(0, 22px, 0);
}

.motion-ready .motion-reveal.motion-left {
  transform: translate3d(-28px, 0, 0) scale(.985);
}

.motion-ready .motion-reveal.motion-right {
  transform: translate3d(28px, 0, 0) scale(.985);
}

.motion-ready .motion-reveal.motion-left.is-visible,
.motion-ready .motion-reveal.motion-right.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-ready .motion-card {
  transition:
    opacity 1.45s cubic-bezier(.22, 1, .36, 1),
    transform 1.65s cubic-bezier(.22, 1, .36, 1),
    box-shadow .48s ease,
    background .48s ease,
    border-color .48s ease;
}

.motion-ready .recommendation-panel.is-refreshing {
  animation: recommendationRefresh 1.15s cubic-bezier(.22, 1, .36, 1);
}

@keyframes recommendationRefresh {
  from { opacity: .68; transform: translateY(8px) scale(.995); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

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

  .motion-ready .site-header,
  .motion-ready .hero-copy > *,
  .motion-ready .hero-media,
  .motion-ready .floating-card,
  .motion-ready .motion-reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .site-loader,
  .page-transition {
    transition-duration: .01ms !important;
  }

  .loader-mark span {
    animation: none !important;
  }
}

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

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

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

.selection-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px auto 0;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #3d4a40;
  font-size: 14px;
  white-space: nowrap;
}

.selection-note span {
  color: var(--forest);
  font-weight: 800;
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.need-card {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(37,54,42,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.64);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(28,42,32,.06);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.need-card::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: .55;
  transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.need-card:hover,
.need-card.active {
  transform: translateY(-2px);
  border-color: rgba(49,83,59,.32);
  background: rgba(255,255,255,.92);
}

.need-card.active { color: var(--forest-dark); box-shadow: var(--soft-shadow); }
.need-card.active::before {
  border-color: var(--forest);
  background: radial-gradient(circle at center, var(--forest) 0 34%, transparent 38%);
  box-shadow: 0 0 0 8px rgba(49, 83, 59, .08);
}

.recommendation-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .74fr);
  gap: 28px;
  margin-top: 22px;
  padding: clamp(22px, 4vw, 40px);
  border-radius: 24px;
  height: 360px;
  overflow: hidden;
}

.recommendation-panel > div {
  min-height: 0;
  overflow: auto;
  scrollbar-width: thin;
}

.recommendation-panel h3 {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
}

.recommendation-meta {
  display: grid;
  gap: 14px;
  min-height: 0;
}

.recommendation-meta div {
  height: 148px;
  overflow: auto;
  scrollbar-width: thin;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.56);
}

.recommendation-meta span {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.flow-grid,
.service-grid,
.team-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

.flow-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.team-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.faq-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.flow-grid article,
.service-card,
.team-card,
.faq-grid details {
  border: 1px solid rgba(37,54,42,.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,.68);
  box-shadow: 0 12px 38px rgba(28,42,32,.06);
}

.flow-grid article {
  padding: 24px;
}

.flow-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: white;
  background: var(--forest);
}

.split {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 44px;
  align-items: start;
}

.service-card {
  min-height: 210px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card h3 { margin-bottom: 10px; }
.service-card p { flex: 1; }

.text-link {
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0;
  background: transparent;
  color: var(--forest);
  font-weight: 800;
  cursor: pointer;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--ink);
  cursor: pointer;
}

.filter.active {
  color: white;
  background: var(--forest);
}

.team-card {
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}

.team-card:hover,
.team-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--soft-shadow);
}

.team-card:focus-visible {
  outline: 3px solid rgba(49, 83, 59, .22);
  outline-offset: 3px;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 2.7;
  object-fit: cover;
  object-position: center center;
  background: var(--warm);
}

.team-body { padding: 14px 16px 15px; }
.team-body h3 { margin-bottom: 4px; }
.role { margin: 0 0 8px; color: var(--forest); font-size: 13px; font-weight: 800; line-height: 1.28; }
.team-body p { font-size: 14px; line-height: 1.42; }
.team-body p:not(.role) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.tags span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef1eb;
  color: #425043;
  font-size: 11px;
  font-weight: 700;
}

.team-more {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.editorial-band {
  display: grid;
  grid-template-columns: .92fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 18px;
  border-radius: 28px;
  background: #eef1eb;
  box-shadow: var(--soft-shadow);
}

.editorial-band img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 22px;
}

.editorial-band > div { padding: clamp(12px, 3vw, 42px); }
.mini-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.mini-list span {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.72);
  font-weight: 700;
  font-size: 13px;
}

.section-more {
  margin-top: 24px;
}

.reservation {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 40px;
  align-items: start;
}

.booking {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: #39443d;
  font-size: 13px;
  font-weight: 800;
}

.field-label {
  margin: 0 0 8px;
  color: #39443d;
  font-size: 13px;
  font-weight: 800;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.8);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  border-color: rgba(49,83,59,.45);
  box-shadow: 0 0 0 4px rgba(49,83,59,.08);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

.time-grid button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.72);
  cursor: pointer;
}

.time-grid .selected {
  color: white;
  background: var(--forest);
}

.form-status { margin: 0; min-height: 22px; font-size: 14px; font-weight: 700; color: var(--forest); }
.form-status[data-type="error"] { color: #9d3e36; }
.form-status[data-type="success"] { color: var(--forest-dark); }
.form-status[data-type="loading"] { color: var(--blue); }
.form-note { margin: 0; font-size: 13px; }

.faq-grid details {
  padding: 20px;
}

summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.portal-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 28px;
  color: white;
  background: linear-gradient(135deg, #24402e, #58705b);
  box-shadow: var(--shadow);
}

.portal-cta .eyebrow,
.portal-cta p { color: rgba(255,255,255,.78); }
.portal-cta h2 { max-width: 850px; }

.portal-button {
  min-width: 170px;
  min-height: 54px;
  color: var(--forest-dark);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(236,241,234,.9));
  border-color: rgba(255,255,255,.55);
  box-shadow: 0 16px 40px rgba(9, 20, 13, .18);
}

.portal-button::after {
  content: "→";
  font-size: 18px;
  transition: transform .2s ease;
}

.portal-button:hover::after { transform: translateX(3px); }

.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  padding: clamp(14px, 3vw, 34px);
}

.modal-shell.open {
  display: grid;
  place-items: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 28, 22, .38);
  backdrop-filter: blur(14px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(780px, calc(100svh - 28px));
  display: grid;
  grid-template-columns: .95fr 1.2fr;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 34px 110px rgba(15, 24, 18, .28);
  animation: modalIn .28s ease both;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(.98) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 50%;
  background: rgba(255,255,255,.78);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--soft-shadow);
}

.modal-media {
  min-height: 100%;
  background: var(--warm);
}

.modal-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.modal-content {
  overflow: auto;
  padding: clamp(28px, 5vw, 58px);
}

.modal-content h2 {
  margin-bottom: 20px;
}

.modal-content h3 {
  margin: 24px 0 8px;
}

.modal-content p,
.modal-content li {
  color: #536058;
  font-size: 16px;
}

.modal-content ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.modal-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
}

.professional-modal .modal-card {
  width: min(980px, 100%);
  grid-template-columns: .92fr 1.08fr;
}

.professional-modal .modal-media img {
  min-height: 560px;
  object-position: center center;
}

.professional-modal .modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4.8vw, 56px);
}

.modal-role {
  margin: -8px 0 18px;
  color: var(--forest);
  font-weight: 800;
}

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.modal-tags span {
  padding: 7px 11px;
  border-radius: 999px;
  background: #eef1eb;
  color: #425043;
  font-size: 12px;
  font-weight: 800;
}

.modal-action {
  align-self: flex-start;
  margin-top: 28px;
}

.footer {
  width: min(var(--site-max), calc(100% - 36px));
  margin: 80px auto 24px;
  display: grid;
  grid-template-columns: 1.2fr 1.1fr .7fr 1fr;
  gap: 28px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 28px;
  background: rgba(255,255,255,.62);
}

.footer img { width: 130px; margin-bottom: 16px; }
.footer h3 { margin-bottom: 10px; font-size: 15px; }
.footer a { display: block; color: var(--forest-dark); margin-bottom: 8px; }
.footer .button { display: inline-flex; margin-top: 8px; }

@media (max-width: 980px) {
  .desktop-nav, .portal-link { display: none; }
  .menu-toggle { display: inline-block; }
  .mobile-nav.open { display: block; }
  .site-header { grid-template-columns: auto 1fr; }
  .header-actions { justify-content: end; }
  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
  }
  .hero-media { min-height: 420px; }
  .hero-media::after { background: linear-gradient(180deg, rgba(251,250,246,.06), rgba(251,250,246,.86)); }
  .trust-row, .need-grid, .flow-grid, .service-grid, .team-grid, .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split, .reservation, .editorial-band, .recommendation-panel {
    grid-template-columns: 1fr;
  }
  .footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    min-height: 64px;
    padding: 10px 10px 10px 14px;
  }
  .brand img { width: 104px; }
  .header-actions .button { display: none; }
  .hero {
    width: calc(100% - 24px);
    margin-top: 14px;
    border-radius: 22px;
  }
  .hero-copy { padding: 28px 20px 30px; }
  .hero-media { min-height: 310px; }
  h1 { font-size: clamp(41px, 12vw, 56px); }
  h2 { font-size: clamp(32px, 10vw, 44px); }
  .hero-actions .button { width: 100%; }
  .needs {
    margin-top: 54px;
  }
  .needs .section-heading {
    margin-bottom: 14px;
  }
  .needs .section-heading h2 {
    margin-bottom: 0;
  }
  .flow-grid, .service-grid, .faq-grid, .form-row, .time-grid {
    grid-template-columns: 1fr;
  }
  .trust-row {
    display: flex;
    grid-template-columns: none;
    gap: 7px;
    overflow-x: auto;
    margin-top: 18px;
    padding: 0 4px 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .trust-row span {
    flex: 0 0 min(76%, 280px);
    min-height: 34px;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 10px;
    font-size: 12px;
    text-align: center;
    scroll-snap-align: start;
    box-shadow: 0 6px 18px rgba(28,42,32,.045);
  }
  .need-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-inline: 0;
    padding: 2px 10px 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .need-card {
    flex: 0 0 min(82%, 310px);
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    text-align: left;
    scroll-snap-align: start;
  }
  .need-card::before {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    margin: 0;
  }
  .need-card span {
    min-width: 0;
    font-size: 15px;
    line-height: 1.15;
  }
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-inline: 0;
    padding: 0 10px 12px;
    -webkit-overflow-scrolling: touch;
  }
  .filter {
    flex: 0 0 auto;
    min-height: 38px;
    padding-inline: 16px;
  }
  .team-grid {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    margin-inline: 0;
    padding: 0 10px 14px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .team-card {
    flex: 0 0 min(86%, 340px);
    scroll-snap-align: start;
    border-radius: 16px;
  }
  .team-more {
    display: none;
  }
  .team-body {
    padding: 14px;
  }
  .team-body h3 {
    font-size: 23px;
  }
  .team-body p {
    font-size: 14px;
  }
  .tags {
    overflow-x: auto;
    flex-wrap: nowrap;
    margin-top: 9px;
    padding-bottom: 2px;
  }
  .tags span {
    flex: 0 0 auto;
  }
  .floating-card {
    left: 50%;
    right: auto;
    top: 50%;
    bottom: auto;
    width: min(320px, calc(100% - 48px));
    margin: 0;
    padding: 14px 16px;
    transform: translate(-50%, -50%);
    text-align: left;
  }
  .motion-ready .floating-card,
  .motion-ready body.is-loaded .floating-card {
    transform: translate(-50%, -50%);
  }
  .floating-card strong {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
  }
  .status-dot {
    vertical-align: middle;
    margin-right: 10px;
  }
  .privacy-card { display: none; }
  .section {
    width: calc(100% - 28px);
    margin: 70px auto;
  }
  .booking,
  .recommendation-panel,
  .portal-cta {
    width: 100%;
    max-width: 100%;
  }
  .flow-grid article {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    align-items: center;
    padding: 18px;
    min-height: 142px;
  }
  .flow-grid span {
    width: 48px;
    height: 48px;
    margin: 0;
    grid-row: span 2;
  }
  .flow-grid article h3 {
    align-self: end;
    margin: 0 0 4px;
    font-size: 21px;
  }
  .flow-grid article p {
    align-self: start;
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
  }
  .section-heading.centered { text-align: left; }
  .selection-note {
    width: 100%;
    justify-content: flex-start;
    gap: 6px;
    margin-top: 12px;
    margin-bottom: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 11.5px;
    line-height: 1.2;
  }
  .selection-note span {
    white-space: nowrap;
  }
  .recommendation-panel {
    height: auto;
    min-height: auto;
    margin-top: 8px;
    padding: 18px;
    border-radius: 20px;
  }
  .recommendation-panel h3 {
    font-size: clamp(26px, 8vw, 34px);
  }
  .recommendation-meta {
    gap: 10px;
  }
  .recommendation-meta div {
    height: 128px;
    padding: 14px;
  }
  .recommendation-panel > div {
    overflow: visible;
  }
  .faq-grid details:not([open]) {
    min-height: 64px;
  }
  .faq-grid details:not([open]) p {
    display: none;
  }
  .editorial-band { padding: 10px; }
  .editorial-band img { min-height: 280px; }
  .portal-cta {
    display: grid;
    width: calc(100% - 36px);
    padding: 24px;
    border-radius: 24px;
  }
  .portal-cta h2 {
    font-size: clamp(38px, 11vw, 50px);
  }
  .portal-cta p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.45;
  }
  .portal-button {
    width: 100%;
  }
  .footer {
    width: calc(100% - 16px);
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .modal-card {
    grid-template-columns: 1fr;
    max-height: calc(100svh - 20px);
    border-radius: 22px;
  }
  .modal-media img {
    min-height: 220px;
    max-height: 280px;
  }
  .modal-content {
    padding: 24px;
  }
  .professional-modal .modal-card {
    grid-template-columns: 1fr;
  }
  .professional-modal .modal-media img {
    min-height: 280px;
    max-height: 340px;
  }
  .professional-modal .modal-content {
    justify-content: flex-start;
    padding: 24px;
  }
  .modal-action {
    width: 100%;
  }
  .modal-gallery {
    grid-template-columns: 1fr;
  }
}
