@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-cyrillic-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #17352d;
  --ink-deep: #0e2b24;
  --forest: #17483c;
  --forest-bright: #1e5b4b;
  --mineral: #77b6aa;
  --mineral-light: #cfe5df;
  --ivory: #f5f1e9;
  --paper: #fbfaf6;
  --sand: #e8dfd1;
  --clay: #b56f4d;
  --muted: #62736d;
  --line: rgba(23, 53, 45, 0.17);
  --white-line: rgba(255, 255, 255, 0.22);
  --shadow: 0 24px 70px rgba(14, 43, 36, 0.12);
  --radius-small: 0.35rem;
  --wrap: min(1280px, calc(100% - 64px));
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.assistant-open {
  overflow: hidden;
}

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

img {
  height: auto;
  background: var(--sand);
}

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

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

button,
select {
  cursor: pointer;
}

address {
  font-style: normal;
}

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

h1,
h2,
h3 {
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.35rem, 6.2vw, 7rem);
}

h2 {
  font-size: clamp(2.15rem, 4vw, 4.3rem);
}

h3 {
  font-size: 1.35rem;
}

::selection {
  background: var(--mineral-light);
  color: var(--ink-deep);
}

:focus-visible {
  outline: 3px solid #d98a61;
  outline-offset: 4px;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(76px, 9vw, 144px);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: white;
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(18px);
}

.header-shell {
  display: flex;
  width: var(--wrap);
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 11px;
  color: var(--forest);
}

.brand-mark {
  width: 190px;
  height: auto;
  flex: none;
  background: transparent;
  object-fit: contain;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong {
  font-size: 0.97rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
}

.desktop-nav a {
  position: relative;
  padding-block: 31px;
  color: #344e47;
  font-size: 0.83rem;
  font-weight: 620;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--forest);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

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

.locale-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  gap: 2px;
}

.locale-switch a {
  display: inline-flex;
  min-width: 34px;
  min-height: 29px;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.locale-switch a[aria-current="true"] {
  background: var(--forest);
  color: white;
}

.mobile-locale {
  display: none;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 650;
  white-space: nowrap;
}

.header-phone .icon {
  width: 17px;
}

.menu-toggle,
.mobile-menu,
.mobile-actions {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 23px;
  border: 1px solid var(--forest);
  border-radius: var(--radius-small);
  background: var(--forest);
  color: white;
  font-size: 0.84rem;
  font-weight: 720;
  line-height: 1.15;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--forest-bright);
  background: var(--forest-bright);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.73rem;
}

.button-light {
  border-color: white;
  background: white;
  color: var(--forest);
}

.button-light:hover {
  border-color: var(--ivory);
  background: var(--ivory);
}

.button-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--forest);
  background: var(--forest);
  color: white;
}

.button-full {
  width: 100%;
}

.button .icon {
  width: 18px;
  height: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 700;
}

.text-link .icon {
  width: 17px;
  transition: transform 180ms ease;
}

.text-link:hover .icon {
  transform: translateX(4px);
}

.text-link-light {
  color: white;
}

.icon {
  width: 22px;
  height: 22px;
  flex: none;
}

.kicker {
  display: block;
  margin-bottom: 20px;
  color: var(--forest-bright);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.kicker-light {
  color: #b7d9d0;
}

.lead {
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-weight: 470;
  letter-spacing: -0.027em;
  line-height: 1.45;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  margin-bottom: 24px;
}

.section-heading p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

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

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

.section-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 54px;
  gap: 36px;
}

.section-row .section-heading h2 {
  margin-bottom: 0;
}

.section-row .section-heading p {
  margin-top: 20px;
}

/* Home */
.home-hero {
  display: grid;
  min-height: min(790px, calc(100svh - var(--header-height)));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--ivory);
}

.hero-copy {
  display: flex;
  min-width: 0;
  width: 100%;
  max-width: none;
  flex-direction: column;
  align-self: center;
  padding: 64px clamp(38px, 3.75vw, 72px) 58px max(32px, calc((100vw - 1280px) / 2));
}

.hero-copy h1 {
  margin-bottom: 30px;
  font-size: clamp(3.2rem, 4.7vw, 5.25rem);
}

.hero-copy h1 span,
.hero-copy h1 em {
  display: block;
}

.hero-copy h1 em {
  color: var(--forest-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-copy > p {
  max-width: 560px;
  margin-bottom: 34px;
  color: #4d615b;
  font-size: clamp(1.02rem, 1.4vw, 1.23rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.hero-facts {
  display: grid;
  margin: clamp(54px, 7vh, 84px) 0 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-facts li {
  padding: 22px 14px 0 0;
  border-right: 1px solid var(--line);
}

.hero-facts li + li {
  padding-left: 18px;
}

.hero-facts li:last-child {
  border-right: 0;
}

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

.hero-facts strong {
  font-size: 0.88rem;
  font-weight: 760;
}

.hero-facts span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.69rem;
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 660px;
  overflow: hidden;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(9, 35, 29, 0.48));
  content: "";
  pointer-events: none;
}

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

.hero-image-label {
  position: absolute;
  z-index: 1;
  right: 38px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  color: white;
  text-align: right;
}

.hero-image-label span {
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-image-label strong {
  margin-top: 4px;
  font-size: 0.86rem;
}

.intro-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(50px, 10vw, 150px);
}

.intro-title h2 {
  margin-bottom: 0;
}

.intro-copy > p:not(.lead) {
  color: var(--muted);
}

.intro-copy .text-link {
  margin-top: 18px;
}

.proof-strip {
  border-block: 1px solid var(--line);
}

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

.proof-grid > div {
  min-height: 210px;
  padding: 38px 30px;
  border-right: 1px solid var(--line);
}

.proof-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.proof-icon,
.direction-number {
  color: var(--clay);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.proof-grid h3 {
  margin: 38px 0 10px;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.proof-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.room-teasers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.room-teaser {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: 37px;
  border-right: 1px solid var(--line);
}

.room-teaser:last-child {
  border-right: 0;
}

.room-teaser-top > span {
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-teaser h3 {
  margin: 32px 0 15px;
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
}

.room-teaser p {
  color: var(--muted);
  font-size: 0.87rem;
}

.room-teaser-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.room-teaser-bottom > span {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 0.68rem;
}

.room-teaser-bottom strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.circle-link {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background 180ms ease, color 180ms ease;
}

.circle-link:hover {
  background: var(--forest);
  color: white;
}

.circle-link .icon {
  width: 18px;
}

.source-note {
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: right;
}

.included-home {
  background: var(--ivory);
}

.included-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(50px, 8vw, 116px);
}

.included-photo {
  position: relative;
}

.included-photo::before {
  position: absolute;
  z-index: 1;
  top: -25px;
  right: -25px;
  width: 42%;
  height: 42%;
  border-top: 1px solid var(--clay);
  border-right: 1px solid var(--clay);
  content: "";
}

.included-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.included-photo > span,
.facility-image > span {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 14px;
  padding: 7px 10px;
  background: rgba(14, 43, 36, 0.78);
  color: white;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.included-content .section-heading {
  margin-bottom: 34px;
}

.included-list {
  margin-bottom: 35px;
  border-top: 1px solid var(--line);
}

.included-list a {
  display: grid;
  min-height: 83px;
  align-items: center;
  grid-template-columns: 110px 1fr auto;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}

.included-list a > span {
  color: var(--muted);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.included-list a > strong {
  font-size: 0.93rem;
  font-weight: 650;
}

.included-list .icon {
  width: 17px;
}

.directions-home .section-heading {
  margin-bottom: 58px;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.direction-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 31px 28px;
  border-right: 1px solid var(--line);
}

.direction-card:last-child {
  border-right: 0;
}

.direction-card h3 {
  margin: 68px 0 17px;
  font-size: 1.45rem;
}

.direction-card p {
  color: var(--muted);
  font-size: 0.84rem;
}

.direction-note {
  display: block;
  margin-top: auto;
  color: var(--forest-bright);
  font-size: 0.62rem;
  font-weight: 740;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.center-action {
  margin-top: 38px;
  text-align: center;
}

.video-section {
  padding-bottom: clamp(76px, 9vw, 144px);
}

.video-tour {
  display: grid;
  min-height: 660px;
  align-items: center;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  overflow: hidden;
  background: var(--ink-deep);
  color: white;
}

.video-device {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  background: #081e18;
}

.video-device video {
  width: 100%;
  height: 100%;
  max-height: 720px;
  object-fit: cover;
}

.video-duration {
  position: absolute;
  right: 16px;
  bottom: 14px;
  padding: 5px 8px;
  border: 1px solid var(--white-line);
  background: rgba(0, 0, 0, 0.55);
  color: white;
  font-size: 0.65rem;
  line-height: 1;
}

.video-copy {
  max-width: 670px;
  padding: clamp(45px, 8vw, 110px);
}

.video-copy h2 {
  margin-bottom: 28px;
}

.video-copy p {
  color: #d8e5e1;
  font-size: 1.05rem;
}

.video-copy small {
  display: block;
  max-width: 520px;
  margin: 31px 0;
  padding-left: 17px;
  border-left: 1px solid var(--mineral);
  color: #95ada6;
  font-size: 0.7rem;
  line-height: 1.6;
}

.editorial-gallery {
  display: grid;
  height: min(760px, 65vw);
  min-height: 560px;
  grid-template-areas: "tall wide" "tall small";
  grid-template-columns: 0.82fr 1.18fr;
  grid-template-rows: 1.12fr 0.88fr;
  gap: 16px;
}

.editorial-gallery figure,
.grounds-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.editorial-gallery img,
.grounds-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.editorial-gallery figure:hover img,
.grounds-grid figure:hover img {
  transform: scale(1.025);
}

.editorial-gallery figure::after,
.grounds-grid figure::after {
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(8, 29, 24, 0.65));
  content: "";
  pointer-events: none;
}

.gallery-tall { grid-area: tall; }
.gallery-wide { grid-area: wide; }
.gallery-small { grid-area: small; }

.editorial-gallery figcaption,
.grounds-grid figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 21px;
  left: 24px;
  color: white;
  font-size: 0.86rem;
  font-weight: 650;
}

.editorial-gallery figcaption small,
.grounds-grid figcaption small {
  display: block;
  margin-top: 3px;
  color: #d1dfdb;
  font-size: 0.58rem;
  font-weight: 550;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stay-flow {
  background: var(--ivory);
}

.stay-flow .section-heading {
  margin-bottom: 70px;
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  list-style: none;
}

.steps li {
  position: relative;
  padding: 34px 26px 0 0;
}

.steps li::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--clay);
  content: "";
}

.steps span {
  color: var(--clay);
  font-size: 0.65rem;
  font-weight: 740;
}

.steps h3 {
  margin: 37px 0 11px;
  font-size: 1rem;
}

.steps p {
  color: var(--muted);
  font-size: 0.77rem;
}

.faq-home {
  background: #edf3ef;
}

.faq-home-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(55px, 9vw, 135px);
}

.faq-home-copy .text-link {
  margin-top: 34px;
}

.faq-home .faq-list {
  border-top-color: rgba(23, 53, 45, 0.28);
}

.reviews-heading {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 10vw, 150px);
}

.review-cards {
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-card {
  display: flex;
  min-width: 0;
  min-height: 285px;
  padding: 28px;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.review-card:last-child {
  border-right: 0;
}

.review-card-top {
  display: grid;
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
}

.review-avatar {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mineral-light);
  color: var(--forest);
  font-size: 0.65rem;
  font-weight: 760;
}

.review-card-top > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.review-card-top strong {
  overflow: hidden;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-card-top div span,
.review-card > small {
  color: var(--muted);
  font-size: 0.58rem;
}

.review-stars {
  color: #e99b31;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.review-card blockquote {
  margin: 42px 0 25px;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 520;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.review-card > a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  gap: 7px;
  color: var(--forest-bright);
  font-size: 0.67rem;
  font-weight: 730;
}

.review-card > a .icon {
  width: 14px;
}

.review-themes {
  max-width: 880px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.review-score {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 54px;
  border: 1px solid var(--line);
  text-align: center;
}

.google-word {
  color: #4285f4;
  font-size: 1rem;
  font-weight: 750;
}

.review-score > strong {
  margin: 17px 0 7px;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 450;
  letter-spacing: -0.07em;
  line-height: 1;
}

.stars {
  color: #e99b31;
  letter-spacing: 0.08em;
}

.stars span {
  color: #d6d3cc;
}

.review-score p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.review-copy h2 {
  margin-bottom: 25px;
}

.review-copy p {
  color: var(--muted);
}

.review-copy .button {
  margin-top: 17px;
}

.review-copy > small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.65rem;
}

.home-contact {
  background: var(--ivory);
}

.home-contact-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 9vw, 130px);
}

.home-contact address {
  display: flex;
  margin: 33px 0;
  flex-direction: column;
  font-size: 1.02rem;
}

.contact-links {
  display: grid;
  margin-bottom: 35px;
  grid-template-columns: 1fr 1fr;
  border-block: 1px solid var(--line);
}

.contact-links a {
  display: flex;
  padding: 21px 20px 21px 0;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.contact-links a + a {
  padding-left: 20px;
  border-right: 0;
}

.contact-links small {
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-links strong {
  margin-top: 6px;
  font-size: 0.9rem;
}

.home-contact-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* Shared inner pages */
.inner-hero {
  display: grid;
  min-height: min(680px, calc(100svh - var(--header-height)));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--ivory);
}

.inner-hero-copy {
  display: flex;
  min-width: 0;
  width: 100%;
  max-width: none;
  flex-direction: column;
  justify-content: center;
  padding: 64px clamp(38px, 3.75vw, 72px) 58px max(32px, calc((100vw - 1280px) / 2));
}

.inner-hero-copy h1 {
  margin-bottom: 30px;
  font-size: clamp(3.2rem, 4.4vw, 5.25rem);
}

.inner-hero-copy p {
  max-width: 550px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.inner-hero-image {
  min-height: 500px;
  min-width: 0;
  overflow: hidden;
}

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

/* Rooms */
.price-anchor {
  display: grid;
  align-items: end;
  padding-block: 58px;
  grid-template-columns: 0.8fr 1.2fr;
  border-bottom: 1px solid var(--line);
  gap: 70px;
}

.price-anchor > div > strong {
  display: block;
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  font-weight: 470;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price-anchor > div > p {
  max-width: 370px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.price-anchor nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 11px;
}

.price-anchor nav a {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 650;
}

.price-anchor nav a:hover {
  border-color: var(--forest);
  background: var(--forest);
  color: white;
}

.room-proof {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 7vw, 100px);
}

.verification-badge {
  display: inline-block;
  margin-top: 28px;
  padding: 8px 12px;
  border: 1px solid #c9987f;
  color: #8d5035;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.room-proof-gallery figure {
  margin: 0;
  overflow: hidden;
}

.room-proof-gallery figure:nth-child(2) {
  transform: translateY(30px);
}

.room-proof-gallery img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.room-catalogue {
  padding-bottom: clamp(80px, 10vw, 150px);
}

.room-detail {
  display: grid;
  padding-block: clamp(60px, 7vw, 100px);
  grid-template-columns: 80px minmax(0, 1fr) minmax(310px, 0.75fr);
  border-top: 1px solid var(--line);
  gap: clamp(35px, 6vw, 90px);
}

.room-detail:last-child {
  border-bottom: 1px solid var(--line);
}

.room-index {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 750;
}

.room-main h2 {
  margin: 0 0 22px;
  font-size: clamp(2.5rem, 4.2vw, 4.6rem);
}

.room-main > p {
  max-width: 550px;
  color: var(--muted);
}

.room-specs {
  display: grid;
  margin: 38px 0 30px;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.room-specs div {
  padding: 17px 14px 17px 0;
  border-right: 1px solid var(--line);
}

.room-specs div + div {
  padding-left: 14px;
}

.room-specs div:last-child {
  border-right: 0;
}

.room-specs dt {
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.room-specs dd {
  margin: 6px 0 0;
  font-size: 0.76rem;
  font-weight: 650;
}

.amenity-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 20px;
  list-style: none;
}

.amenity-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #435c55;
  font-size: 0.76rem;
}

.amenity-list .icon {
  width: 15px;
  color: var(--forest-bright);
}

.room-pricing {
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.price-label {
  display: block;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
  border-top: 1px solid var(--line);
  gap: 20px;
}

.price-row > div,
.price-row > span {
  display: flex;
  flex-direction: column;
}

.price-row > div strong {
  font-size: 0.76rem;
  font-weight: 650;
}

.price-row small {
  color: var(--muted);
  font-size: 0.59rem;
  line-height: 1.4;
}

.price-row > span {
  align-items: end;
  flex: none;
}

.price-row > span b {
  font-size: 1.2rem;
  font-weight: 620;
}

.room-pricing > p {
  margin: 20px 0;
  color: var(--muted);
  font-size: 0.67rem;
}

.children-pricing {
  background: var(--ivory);
}

.children-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.2fr 0.6fr 0.6fr;
  gap: 50px;
}

.child-price {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.child-price span,
.child-price small,
.child-price strong {
  display: block;
}

.child-price span {
  color: var(--muted);
  font-size: 0.72rem;
}

.child-price strong {
  margin-top: 14px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 520;
  letter-spacing: -0.05em;
}

.child-price small {
  color: var(--muted);
  font-size: 0.62rem;
}

.notice {
  margin: 45px 0 0;
  padding: 19px 22px;
  border-left: 3px solid var(--clay);
  background: #f1e5da;
  color: #755342;
  font-size: 0.74rem;
}

.enquiry-panel > .section-heading {
  margin-bottom: 45px;
}

/* Forms */
.booking-form {
  padding: clamp(28px, 5vw, 55px);
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px 18px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-grid label > span {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 680;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid select {
  width: 100%;
  height: 51px;
  padding: 0 13px;
  border: 0;
  border-bottom: 1px solid #9eaaa6;
  border-radius: 0;
  background: transparent;
  font-size: 0.83rem;
}

.form-grid input:focus,
.form-grid select:focus {
  border-bottom-color: var(--forest);
  outline: 0;
  box-shadow: 0 2px 0 var(--forest);
}

.field-wide {
  grid-column: span 2;
}

.form-actions {
  display: flex;
  align-items: center;
  margin-top: 34px;
  gap: 24px;
}

.form-note,
.form-status {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.64rem;
}

.form-status:not(:empty) {
  color: #923d2f;
  font-weight: 650;
}

/* Treatment */
.medical-principle {
  padding-block: 58px;
  background: var(--forest);
  color: white;
}

.principle-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 90px 0.9fr 1.1fr;
  gap: 42px;
}

.principle-mark {
  display: flex;
  width: 78px;
  height: 78px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white-line);
  border-radius: 50%;
  color: var(--mineral-light);
  font-family: Georgia, serif;
  font-size: 2.2rem;
}

.principle-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
}

.principle-grid p {
  margin: 0;
  color: #d3dfdc;
  font-size: 0.87rem;
}

.treatment-directions .section-heading {
  margin-bottom: 58px;
}

.treatment-list {
  border-top: 1px solid var(--line);
}

.treatment-direction {
  display: grid;
  min-height: 220px;
  align-items: start;
  padding-block: 37px;
  grid-template-columns: 100px minmax(0, 1fr) 190px;
  border-bottom: 1px solid var(--line);
  gap: 30px;
}

.treatment-direction h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.treatment-direction p {
  max-width: 660px;
  color: var(--muted);
  font-size: 0.84rem;
}

.treatment-direction ul {
  display: flex;
  margin: 22px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.treatment-direction li {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: #4d635d;
  font-size: 0.63rem;
}

.treatment-direction > .direction-note {
  margin-top: 6px;
  text-align: right;
}

.mineral-story {
  background: var(--ivory);
}

.mineral-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(55px, 10vw, 150px);
}

.mineral-grid img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.mineral-grid > div:last-child {
  max-width: 690px;
}

.mineral-grid > div:last-child > p:not(.lead) {
  color: var(--muted);
}

.mineral-grid .text-link {
  margin-top: 25px;
}

.included-detail .section-heading {
  margin-bottom: 55px;
}

.accordion-list {
  border-top: 1px solid var(--line);
}

.inclusion-details {
  border-bottom: 1px solid var(--line);
}

.inclusion-details summary,
.faq-list summary {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  gap: 30px;
}

.inclusion-details summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}

.inclusion-details summary span:first-child {
  display: grid;
  align-items: center;
  grid-template-columns: 180px 1fr;
  gap: 35px;
}

.inclusion-details summary small {
  color: var(--clay);
  font-size: 0.62rem;
  font-weight: 720;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.inclusion-details summary strong {
  font-size: 1.3rem;
  font-weight: 570;
  letter-spacing: -0.03em;
}

.details-plus {
  position: relative;
  width: 24px;
  height: 24px;
  flex: none;
}

.details-plus::before,
.details-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.details-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

details[open] .details-plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.details-body {
  display: grid;
  padding: 0 60px 38px 215px;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
}

.details-body > p {
  color: var(--muted);
  font-size: 0.77rem;
}

.details-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.details-body li {
  display: flex;
  padding: 10px 0;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}

.details-body li > span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.details-body li .icon {
  width: 15px;
  color: var(--forest-bright);
}

.details-body li small {
  margin: 5px 0 0 24px;
  color: var(--clay);
  font-size: 0.62rem;
}

.medical-note {
  display: grid;
  margin-bottom: clamp(80px, 10vw, 145px);
  padding: clamp(38px, 6vw, 74px);
  grid-template-columns: 0.8fr 1.2fr;
  background: var(--ink-deep);
  color: white;
  gap: 65px;
}

.medical-note h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.medical-note p {
  position: relative;
  margin-bottom: 15px;
  padding: 0 0 15px 27px;
  border-bottom: 1px solid var(--white-line);
  color: #d0ded9;
  font-size: 0.78rem;
}

.medical-note p::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mineral);
  content: "";
}

.medical-note p strong {
  color: white;
  font-weight: 680;
}

/* Experience */
.experience-lead {
  display: block;
}

.experience-lead .section-heading {
  max-width: 780px;
}

.facility-feature {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 10vw, 150px);
}

.facility-feature-reverse {
  grid-template-columns: 1.2fr 0.8fr;
}

.facility-feature-reverse .facility-image {
  grid-column: 2;
}

.facility-feature-reverse .facility-copy {
  grid-row: 1;
  grid-column: 1;
}

.facility-image {
  position: relative;
}

.facility-image-portrait img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}

.facility-copy {
  max-width: 650px;
}

.facility-copy h2 {
  margin-bottom: 28px;
}

.facility-copy > p:not(.lead) {
  color: var(--muted);
}

.simple-list {
  display: grid;
  margin: 32px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  list-style: none;
}

.simple-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: #466058;
  font-size: 0.75rem;
}

.grounds-gallery {
  background: var(--ivory);
}

.grounds-gallery .section-heading {
  margin-bottom: 55px;
}

.grounds-grid {
  display: grid;
  height: 610px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 15px;
}

.evidence-list > .section-heading {
  margin-bottom: 50px;
}

.evidence-list > div:last-child {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.evidence-list article {
  min-height: 245px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.evidence-list article:nth-child(4n) {
  border-right: 0;
}

.evidence-list article > span .icon {
  width: 17px;
  color: var(--clay);
}

.evidence-list h3 {
  margin: 48px 0 12px;
  font-size: 1.12rem;
}

.evidence-list p {
  color: var(--muted);
  font-size: 0.75rem;
}

.evidence-list small {
  color: var(--forest-bright);
  font-size: 0.58rem;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.additional-services {
  background: #edf3ef;
}

.service-price-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-price-card {
  display: flex;
  min-height: 175px;
  padding: 25px 21px;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  border-right: 1px solid var(--line);
}

.service-price-card:last-child {
  border-right: 0;
}

.service-price-card > span {
  color: var(--clay);
  font-size: 0.57rem;
  font-weight: 740;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-price-card h3 {
  margin: 0;
  font-size: 1.02rem;
}

.additional-services .source-note {
  max-width: 780px;
  margin: 24px 0 0;
}

.catalogue-disclosure {
  margin-top: 42px;
  border-top: 1px solid var(--forest);
  border-bottom: 1px solid var(--forest);
}

.catalogue-disclosure > summary,
.catalogue-group > summary {
  display: grid;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.catalogue-disclosure > summary::-webkit-details-marker,
.catalogue-group > summary::-webkit-details-marker {
  display: none;
}

.catalogue-disclosure > summary {
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 24px;
  min-height: 112px;
}

.catalogue-disclosure > summary > span:first-child {
  display: grid;
  gap: 7px;
}

.catalogue-disclosure > summary small,
.catalogue-group > summary small {
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 680;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.catalogue-disclosure > summary strong {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 520;
}

.catalogue-plus {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
}

.catalogue-plus::before,
.catalogue-plus::after {
  position: absolute;
  top: 10px;
  left: 3px;
  width: 16px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.catalogue-plus::after {
  transform: rotate(90deg);
}

.catalogue-disclosure[open] > summary > .catalogue-plus::after,
.catalogue-group[open] > summary > .catalogue-plus::after {
  transform: rotate(0);
}

.catalogue-body {
  padding: 4px 0 38px;
}

.catalogue-groups {
  margin-bottom: 28px;
  border-top: 1px solid var(--line);
}

.catalogue-group {
  border-bottom: 1px solid var(--line);
}

.catalogue-group > summary {
  grid-template-columns: minmax(0, 1fr) auto 24px;
  gap: 20px;
  min-height: 76px;
}

.catalogue-group > summary > span:first-child {
  font-size: 0.88rem;
  font-weight: 650;
}

.catalogue-list {
  display: grid;
  padding: 0 0 18px;
  grid-template-columns: repeat(auto-fill, minmax(min(330px, 100%), 1fr));
}

.catalogue-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 13px 24px;
  border-top: 1px solid rgba(18, 60, 51, 0.09);
  background: rgba(255, 255, 255, 0.35);
}

.catalogue-row strong {
  font-size: 0.72rem;
  font-weight: 560;
}

.catalogue-row small {
  color: var(--muted);
  font-size: 0.59rem;
}

/* About */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.about-intro h2 {
  margin-bottom: 0;
}

.about-intro > div:last-child > p:not(.lead) {
  color: var(--muted);
}

.about-photo-story {
  display: grid;
  align-items: end;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 16px;
}

.about-photo-story figure {
  margin: 0;
}

.about-photo-main img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.about-photo-side img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-photo-story figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.62rem;
}

.about-values {
  background: var(--forest);
  color: white;
}

.value-statement {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 70px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--white-line);
}

.display-number {
  color: var(--mineral);
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 280;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.value-statement h2 {
  margin-bottom: 0;
  text-align: right;
}

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

.value-grid article {
  min-height: 220px;
  padding-right: 30px;
  border-right: 1px solid var(--white-line);
}

.value-grid article + article {
  padding-left: 30px;
}

.value-grid article:last-child {
  border-right: 0;
}

.value-grid article > span {
  color: var(--mineral);
  font-size: 0.65rem;
}

.value-grid h3 {
  margin: 65px 0 14px;
  font-size: 1.2rem;
}

.value-grid p {
  color: #bdcfca;
  font-size: 0.77rem;
}

.day-flow {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  list-style: none;
}

.day-flow li {
  min-height: 200px;
  padding: 35px;
  border-right: 1px solid var(--line);
}

.day-flow li:last-child {
  border-right: 0;
}

.day-flow span {
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 730;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.day-flow p {
  max-width: 270px;
  margin: 56px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

/* Contact */
.contact-hero {
  padding-block: clamp(90px, 12vw, 170px);
  background: var(--forest);
  color: white;
}

.contact-hero h1 {
  margin-bottom: 32px;
}

.contact-hero p {
  max-width: 580px;
  margin-bottom: 0;
  color: #ccddd8;
  font-size: 1.1rem;
}

.contact-page {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 10vw, 145px);
}

.contact-block {
  padding-block: 25px;
  border-bottom: 1px solid var(--line);
}

.contact-block:first-child {
  border-top: 1px solid var(--line);
}

.contact-block > span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-block > a:not(.text-link) {
  font-size: clamp(1.4rem, 2.6vw, 2.35rem);
  font-weight: 520;
  letter-spacing: -0.04em;
}

.contact-block address {
  margin-bottom: 18px;
  font-size: 1.04rem;
}

.contact-block p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.contact-visual {
  position: relative;
}

.contact-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.contact-visual > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  padding: 15px 17px;
  gap: 8px;
  background: rgba(14, 43, 36, 0.9);
  color: white;
  font-size: 0.72rem;
}

.contact-visual .icon {
  width: 17px;
}

.enquiry-section {
  background: var(--ivory);
}

.enquiry-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(50px, 8vw, 115px);
}

.privacy-note {
  margin-top: 40px;
  padding-left: 18px;
  border-left: 2px solid var(--mineral);
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.9;
}

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

.faq-section .section-heading {
  margin-bottom: 50px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  font-size: 1rem;
  font-weight: 610;
}

.faq-list details > p {
  max-width: 800px;
  margin: -6px 50px 30px 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.faq-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(90px, 12vw, 170px);
  background: var(--forest);
  color: white;
}

.faq-hero::after {
  position: absolute;
  right: max(30px, calc((100vw - 1280px) / 2));
  bottom: -0.36em;
  color: rgba(255, 255, 255, 0.055);
  content: "?";
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15rem, 31vw, 33rem);
  line-height: 1;
  pointer-events: none;
}

.faq-hero .wrap {
  position: relative;
  z-index: 1;
}

.faq-hero h1 {
  max-width: 900px;
  margin-bottom: 31px;
}

.faq-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: #ccddd8;
  font-size: 1.05rem;
}

.faq-directory {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(240px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(55px, 9vw, 140px);
}

.faq-index {
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.faq-index nav {
  border-top: 1px solid var(--line);
}

.faq-index nav a {
  display: grid;
  min-height: 84px;
  align-items: center;
  padding-block: 14px;
  grid-template-columns: minmax(0, 1fr) auto;
  border-bottom: 1px solid var(--line);
  gap: 13px;
}

.faq-index nav span,
.faq-index nav strong {
  display: block;
  grid-column: 1;
}

.faq-index nav span {
  align-self: end;
  color: var(--clay);
  font-size: 0.58rem;
  font-weight: 720;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.faq-index nav strong {
  align-self: start;
  font-size: 0.78rem;
  font-weight: 650;
}

.faq-index nav .icon {
  width: 16px;
  grid-column: 2;
  grid-row: 1 / 3;
}

.faq-index-contact {
  margin-top: 34px;
}

.faq-index-contact p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.75rem;
}

.faq-group + .faq-group {
  margin-top: clamp(78px, 9vw, 125px);
}

.faq-group-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.faq-group-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
}

.faq-group-heading p {
  margin: 0;
  color: var(--muted);
}

/* Site assistant */
.assistant-home-actions {
  display: flex;
  align-items: center;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 24px;
}

.assistant-home-actions .button .icon {
  width: 19px;
}

.faq-home-copy .assistant-home-actions .text-link {
  margin-top: 0;
}

.assistant-home-preview {
  padding-block: 8px;
  border-top: 1px solid rgba(23, 53, 45, 0.28);
  border-bottom: 1px solid rgba(23, 53, 45, 0.28);
}

.assistant-home-bubble {
  display: flex;
  align-items: start;
  padding: 24px 8px 25px;
  gap: 15px;
}

.assistant-home-bubble small {
  display: block;
  margin-bottom: 5px;
  color: var(--forest-bright);
  font-size: 0.62rem;
  font-weight: 740;
}

.assistant-home-bubble p {
  margin: 0;
  font-size: 1rem;
  font-weight: 570;
}

.assistant-avatar {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex: none;
  border-radius: 50%;
  background: var(--mineral-light);
  color: var(--forest);
}

.assistant-avatar .icon {
  width: 20px;
  height: 20px;
}

.assistant-home-preview nav {
  border-top: 1px solid var(--line);
}

.assistant-home-preview nav a {
  display: grid;
  min-height: 59px;
  align-items: center;
  padding: 12px 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  border-bottom: 1px solid var(--line);
  gap: 16px;
  font-size: 0.8rem;
  font-weight: 650;
}

.assistant-home-preview nav a:hover {
  color: var(--forest-bright);
}

.assistant-home-preview nav .icon {
  width: 16px;
  transition: transform 180ms ease;
}

.assistant-home-preview nav a:hover .icon {
  transform: translateX(4px);
}

.assistant-home-preview > p {
  margin: 18px 8px 12px;
  color: var(--muted);
  font-size: 0.67rem;
}

.assistant-launcher {
  position: fixed;
  z-index: 95;
  right: 24px;
  bottom: 24px;
  display: flex;
  min-height: 64px;
  align-items: center;
  padding: 10px 18px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: var(--forest);
  box-shadow: 0 18px 50px rgba(14, 43, 36, 0.27);
  color: white;
  gap: 12px;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.assistant-launcher:hover {
  background: var(--forest-bright);
  box-shadow: 0 22px 55px rgba(14, 43, 36, 0.33);
  transform: translateY(-2px);
}

.assistant-launcher-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--mineral-light);
  color: var(--forest);
}

.assistant-launcher-icon .icon {
  width: 21px;
}

.assistant-launcher span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.assistant-launcher small {
  color: #bed8d1;
  font-size: 0.59rem;
  font-weight: 620;
}

.assistant-launcher strong {
  font-size: 0.75rem;
  font-weight: 730;
}

.assistant-dialog {
  position: fixed;
  inset: auto 24px 24px auto;
  width: min(430px, calc(100vw - 48px));
  max-width: none;
  max-height: none;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 30px 90px rgba(7, 28, 23, 0.32);
  color: var(--ink);
  overflow: visible;
}

.assistant-dialog::backdrop {
  background: rgba(9, 31, 26, 0.32);
  backdrop-filter: blur(2px);
}

.assistant-panel {
  display: grid;
  width: 100%;
  height: min(720px, calc(100dvh - 48px));
  min-height: min(570px, calc(100dvh - 48px));
  grid-template-rows: auto minmax(0, 1fr) auto auto auto;
  border: 1px solid rgba(23, 53, 45, 0.12);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
}

.assistant-header {
  display: grid;
  min-height: 78px;
  align-items: center;
  padding: 14px 14px 14px 18px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  background: var(--forest);
  color: white;
  gap: 13px;
}

.assistant-header .assistant-avatar {
  width: 42px;
  height: 42px;
}

.assistant-header strong,
.assistant-header span {
  display: block;
}

.assistant-header strong {
  font-size: 0.82rem;
  font-weight: 720;
}

.assistant-header div > span {
  margin-top: 2px;
  color: #b9d1cb;
  font-size: 0.6rem;
}

.assistant-close {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
}

.assistant-close:hover {
  background: rgba(255, 255, 255, 0.08);
}

.assistant-close .icon {
  width: 20px;
}

.assistant-messages {
  display: flex;
  padding: 22px 18px;
  flex-direction: column;
  overflow-y: auto;
  background: #f3f1e9;
  gap: 14px;
  overscroll-behavior: contain;
  scrollbar-color: rgba(23, 53, 45, 0.25) transparent;
}

.assistant-message {
  width: fit-content;
  max-width: 91%;
  padding: 13px 15px;
  border-radius: 4px;
  font-size: 0.76rem;
  line-height: 1.55;
}

.assistant-message p {
  margin: 0;
  white-space: pre-line;
}

.assistant-message small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.58rem;
  line-height: 1.45;
}

.assistant-message-bot {
  align-self: flex-start;
  border-left: 3px solid var(--mineral);
  background: white;
  box-shadow: 0 9px 25px rgba(14, 43, 36, 0.06);
}

.assistant-message-user {
  align-self: flex-end;
  background: var(--forest);
  color: white;
}

.assistant-message-typing {
  display: flex;
  align-items: center;
  padding: 16px 15px;
  gap: 5px;
}

.assistant-message-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mineral);
  animation: assistant-typing 1.25s ease-in-out infinite;
}

.assistant-message-typing span:nth-child(2) {
  animation-delay: 0.16s;
}

.assistant-message-typing span:nth-child(3) {
  animation-delay: 0.32s;
}

/* Rest state is the full-opacity dot, so the reduced-motion rule below can
   flatten this to three static dots without leaving them dimmed. */
@keyframes assistant-typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

.assistant-message-action {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  margin-top: 9px;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  color: var(--forest-bright);
  font-size: 0.66rem;
  font-weight: 720;
}

.assistant-quick {
  display: flex;
  align-items: stretch;
  margin-top: 2px;
  flex-direction: column;
  gap: 7px;
}

.assistant-quick[hidden] {
  display: none;
}

.assistant-quick > span {
  margin: 5px 0 2px;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 680;
}

.assistant-quick button {
  min-height: 43px;
  padding: 9px 12px;
  border: 1px solid rgba(23, 53, 45, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.69rem;
  font-weight: 650;
  line-height: 1.35;
  text-align: left;
}

.assistant-quick button:hover {
  border-color: var(--forest-bright);
  background: white;
}

.assistant-handoff {
  display: flex;
  min-height: 45px;
  align-items: center;
  padding: 8px 18px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 7px 14px;
  background: white;
  font-size: 0.62rem;
}

.assistant-handoff > span {
  margin-right: auto;
  color: var(--muted);
}

.assistant-handoff a {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  color: var(--forest-bright);
  font-weight: 720;
  gap: 5px;
}

.assistant-handoff .icon {
  width: 14px;
  height: 14px;
}

.assistant-form {
  display: grid;
  align-items: center;
  padding: 11px 13px 8px;
  grid-template-columns: minmax(0, 1fr) 45px;
  background: white;
  gap: 8px;
}

.assistant-form input {
  width: 100%;
  min-height: 45px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  font-size: 0.74rem;
}

.assistant-form input::placeholder {
  color: #798983;
}

.assistant-form button {
  display: inline-flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--forest);
  border-radius: 4px;
  background: var(--forest);
  color: white;
}

.assistant-form button:hover {
  background: var(--forest-bright);
}

.assistant-form button .icon {
  width: 18px;
}

.assistant-privacy {
  margin: 0;
  padding: 0 17px 12px;
  background: white;
  color: var(--muted);
  font-size: 0.54rem;
  line-height: 1.45;
}

/* Footer */
.contact-band {
  padding-block: clamp(65px, 8vw, 110px);
  background: var(--forest-bright);
  color: white;
}

.contact-band-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.contact-band h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.contact-band p {
  max-width: 580px;
  margin: 22px 0 0;
  color: #d1e1dd;
}

.contact-band-actions {
  display: flex;
  min-width: max-content;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.site-footer {
  padding: 75px 0 30px;
  background: var(--ink-deep);
  color: white;
}

.footer-lead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 66px;
  border-bottom: 1px solid var(--white-line);
  gap: 50px;
}

.footer-lead h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.footer-lead-actions {
  display: flex;
  min-width: max-content;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.footer-grid {
  display: grid;
  padding-block: 65px;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 80px;
}

.brand-footer {
  color: white;
}

.brand-footer .brand-mark {
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.16));
}

.brand-footer small {
  color: #9fb5ae;
}

.footer-brand p {
  max-width: 330px;
  margin-top: 22px;
  color: #92aaa3;
  font-size: 0.75rem;
}

.footer-grid nav,
.footer-contact {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 6px;
}

.footer-grid nav a,
.footer-contact > a {
  display: flex;
  min-height: 25px;
  align-items: center;
  color: #cad8d4;
  font-size: 0.75rem;
}

.footer-contact address {
  margin-top: 13px;
  color: #92aaa3;
  font-size: 0.69rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid var(--white-line);
  gap: 30px;
  color: #7f9992;
  font-size: 0.6rem;
}

.not-found {
  display: flex;
  min-height: 70vh;
  align-items: start;
  justify-content: center;
  padding-block: 120px;
  flex-direction: column;
}

.not-found .display-number {
  margin-bottom: 40px;
}

.not-found h1 {
  margin-bottom: 20px;
}

.not-found p {
  color: var(--muted);
}

.not-found .button {
  margin-top: 20px;
}

@media (max-width: 1540px) {
  .header-shell { gap: 18px; }
  .desktop-nav { gap: 16px; }
  .header-phone span { display: none; }
  .header-phone { min-width: 44px; min-height: 44px; justify-content: center; }
}

@media (max-width: 1380px) {
  :root { --wrap: min(100% - 48px, 1080px); }
  .desktop-nav { display: none; }
  .header-phone span { display: none; }
  .menu-toggle {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 8px 0 8px 10px;
    border: 0;
    background: transparent;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 700;
  }
  .menu-toggle .icon { width: 19px; }
  .mobile-menu {
    position: absolute;
    z-index: 99;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    min-height: calc(100svh - var(--header-height));
    padding: 35px max(24px, calc((100vw - 1080px) / 2));
    flex-direction: column;
    overflow-y: auto;
    background: var(--paper);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu > a {
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
    font-size: clamp(1.35rem, 4vw, 2rem);
    font-weight: 540;
    letter-spacing: -0.035em;
  }
  .mobile-menu > a[aria-current="page"] { color: var(--forest-bright); }
  .mobile-menu .mobile-menu-contact {
    display: flex;
    align-items: center;
    margin-top: 22px;
    gap: 10px;
    color: var(--forest-bright);
    font-size: 0.9rem;
  }
  .mobile-locale {
    display: block;
    margin-top: 26px;
  }
  body.menu-open .header-actions > .locale-switch { display: none; }
  .mobile-locale .locale-switch {
    width: fit-content;
  }
  .service-price-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-price-card:nth-child(3) { border-right: 0; }
  .service-price-card:nth-child(n + 4) { border-top: 1px solid var(--line); }
  .direction-grid { grid-template-columns: repeat(2, 1fr); }
  .direction-card:nth-child(2) { border-right: 0; }
  .direction-card:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .evidence-list > div:last-child { grid-template-columns: repeat(3, 1fr); }
  .evidence-list article:nth-child(4n) { border-right: 1px solid var(--line); }
  .evidence-list article:nth-child(3n) { border-right: 0; }
}

@media (max-width: 840px) {
  :root {
    --wrap: calc(100% - 36px);
    --header-height: 72px;
  }
  .section-pad { padding-block: 76px; }
  h1 { font-size: clamp(2.8rem, 13vw, 5rem); }
  h2 { font-size: clamp(2rem, 9.5vw, 3.3rem); }
  .header-shell { gap: 12px; }
  .brand-mark { width: 150px; }
  .brand strong { font-size: 0.84rem; }
  .brand small { font-size: 0.57rem; }
  .header-phone { display: none; }
  .header-actions .button { display: none; }
  .home-hero,
  .inner-hero {
    grid-template-columns: minmax(0, 1fr);
    overflow: clip;
  }
  .hero-copy,
  .inner-hero-copy {
    max-width: none;
    justify-self: stretch;
    padding: 58px 18px 50px;
  }
  .hero-copy h1,
  .inner-hero-copy h1 { font-size: clamp(2.85rem, 11.8vw, 5.2rem); }
  .hero-copy h1 br { display: none; }
  .hero-visual { min-height: 57svh; }
  .inner-hero-image { min-height: 50svh; }
  .hero-image-label { right: 18px; bottom: 17px; }
  .intro-section,
  .included-layout,
  .reviews-heading,
  .faq-home-grid,
  .home-contact-grid,
  .room-proof,
  .mineral-grid,
  .medical-note,
  .experience-lead,
  .facility-feature,
  .facility-feature-reverse,
  .about-intro,
  .contact-page,
  .enquiry-grid,
  .faq-directory {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .review-cards { grid-template-columns: 1fr; }
  .review-card { min-height: 235px; border-right: 0; border-bottom: 1px solid var(--line); }
  .review-card:last-child { border-bottom: 0; }
  .service-price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-price-card,
  .service-price-card:nth-child(3) { border-right: 1px solid var(--line); }
  .service-price-card:nth-child(2n) { border-right: 0; }
  .service-price-card:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .faq-index { position: static; }
  .faq-index nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-index nav a:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--line); }
  .faq-index nav a:nth-child(even) { padding-left: 24px; }
  .faq-index-contact { max-width: 380px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid > div:nth-child(2) { border-right: 0; }
  .proof-grid > div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .proof-grid > div:nth-child(3) { border-left: 1px solid var(--line); }
  .room-teasers { grid-template-columns: 1fr; }
  .room-teaser { min-height: 270px; border-right: 0; border-bottom: 1px solid var(--line); }
  .room-teaser:last-child { border-bottom: 0; }
  .included-photo { max-width: 650px; }
  .included-photo img { aspect-ratio: 4 / 3; }
  .video-tour { grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr); }
  .video-copy { padding: 40px; }
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 35px; }
  .price-anchor { grid-template-columns: 1fr; gap: 35px; }
  .price-anchor nav { justify-content: flex-start; }
  .room-proof-gallery { order: -1; }
  .room-detail { grid-template-columns: 48px minmax(0, 1fr); }
  .room-pricing { grid-column: 2; }
  .children-grid { grid-template-columns: 1fr 1fr; }
  .children-grid > div:first-child { grid-column: 1 / -1; }
  .principle-grid { grid-template-columns: 70px 1fr; }
  .principle-mark { width: 62px; height: 62px; }
  .principle-grid > p { grid-column: 2; }
  .treatment-direction { grid-template-columns: 60px minmax(0, 1fr); }
  .treatment-direction > .direction-note { grid-column: 2; text-align: left; }
  .details-body { padding-left: 0; grid-template-columns: 1fr; gap: 15px; }
  .medical-note { gap: 35px; }
  .facility-feature-reverse .facility-image,
  .facility-feature-reverse .facility-copy { grid-column: 1; }
  .facility-feature-reverse .facility-image { grid-row: 1; }
  .facility-feature-reverse .facility-copy { grid-row: 2; }
  .grounds-grid { height: auto; grid-template-columns: 1fr 1fr; }
  .grounds-grid figure { min-height: 380px; }
  .grounds-grid figure:first-child { grid-column: 1 / -1; }
  .evidence-list > div:last-child { grid-template-columns: repeat(2, 1fr); }
  .evidence-list article:nth-child(3n) { border-right: 1px solid var(--line); }
  .evidence-list article:nth-child(2n) { border-right: 0; }
  .about-photo-story { grid-template-columns: 1fr; }
  .about-photo-side { width: 62%; justify-self: end; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid article { border-bottom: 1px solid var(--white-line); }
  .value-grid article:nth-child(2) { border-right: 0; }
  .value-grid article:nth-child(n + 3) { padding-top: 30px; border-bottom: 0; }
  .value-grid article:nth-child(3) { padding-left: 0; }
  .day-flow { grid-template-columns: 1fr; }
  .day-flow li { min-height: 150px; border-right: 0; border-bottom: 1px solid var(--line); }
  .day-flow li:last-child { border-bottom: 0; }
  .day-flow p { margin-top: 30px; }
  .contact-visual { order: -1; }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .assistant-dialog { right: 18px; bottom: 18px; width: min(430px, calc(100vw - 36px)); }
  .assistant-launcher { padding: 10px; }
  .assistant-launcher > span:last-child { display: none; }
}

@media (max-width: 600px) {
  :root { --wrap: calc(100% - 32px); }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); font-size: 15px; }
  .section-pad { padding-block: 64px; }
  .kicker { margin-bottom: 15px; }
  .hero-copy { padding-top: 46px; }
  .header-shell > .brand .brand-mark { width: 132px; }
  .header-shell > .brand { min-width: 0; }
  .header-actions { gap: 7px; }
  .header-actions > .locale-switch a { min-width: 29px; min-height: 27px; padding-inline: 6px; font-size: 0.56rem; }
  .hero-copy > p { margin-bottom: 28px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-facts { margin-top: 45px; grid-template-columns: 1fr 1fr; }
  .hero-facts li:nth-child(2) { border-right: 0; }
  .hero-facts li:nth-child(3) { display: none; }
  .hero-visual { min-height: 420px; }
  .intro-section { gap: 34px; }
  .proof-grid { width: 100%; grid-template-columns: 1fr 1fr; }
  .proof-grid > div { min-height: 190px; padding: 27px 20px; }
  .proof-grid h3 { margin-top: 30px; }
  .section-row { align-items: start; margin-bottom: 38px; flex-direction: column; }
  .room-teaser { padding: 29px 24px; }
  .included-layout { width: 100%; }
  .included-content { width: var(--wrap); margin-inline: auto; }
  .included-photo::before { display: none; }
  .included-list a { grid-template-columns: 86px 1fr auto; gap: 12px; }
  .direction-grid { grid-template-columns: 1fr; }
  .direction-card { min-height: 275px; border-right: 0; border-bottom: 1px solid var(--line); }
  .direction-card:nth-child(3) { border-bottom: 1px solid var(--line); }
  .direction-card h3 { margin-top: 45px; }
  .video-section { width: 100%; padding-bottom: 64px; }
  .video-tour { grid-template-columns: 1fr; }
  .video-device { height: 72svh; min-height: 520px; max-height: 700px; }
  .video-copy { padding: 43px 24px 48px; }
  .video-copy small { font-size: 0.64rem; }
  .editorial-gallery { height: auto; min-height: 0; grid-template-areas: "tall small" "wide wide"; grid-template-columns: 1.15fr 0.85fr; grid-template-rows: 430px 260px; gap: 8px; }
  .editorial-gallery figcaption { right: 14px; bottom: 13px; left: 14px; }
  .steps { margin-left: 7px; grid-template-columns: 1fr; border-top: 0; border-left: 1px solid var(--line); row-gap: 0; }
  .steps li { min-height: 145px; padding: 0 0 30px 35px; }
  .steps li::before { top: 7px; left: -5px; }
  .steps h3 { margin: 20px 0 8px; }
  .review-score { padding: 38px 25px; }
  .review-cards { margin-top: 45px; }
  .review-card { padding: 25px 20px; }
  .review-card-top { grid-template-columns: auto minmax(0, 1fr); }
  .review-stars { grid-column: 2; }
  .review-card blockquote { margin-top: 28px; }
  .contact-links { grid-template-columns: 1fr; }
  .contact-links a { border-right: 0; }
  .contact-links a + a { padding-left: 0; border-top: 1px solid var(--line); }
  .inner-hero-copy { padding-top: 48px; }
  .inner-hero-image { min-height: 360px; }
  .price-anchor { width: 100%; padding-inline: 16px; }
  .price-anchor nav { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 7px; scrollbar-width: none; }
  .price-anchor nav::-webkit-scrollbar { display: none; }
  .price-anchor nav a { flex: none; }
  .room-proof { width: 100%; gap: 42px; }
  .room-proof-copy { width: var(--wrap); margin-inline: auto; }
  .room-proof-gallery { padding-left: 16px; overflow-x: auto; grid-template-columns: repeat(3, 66vw); scrollbar-width: none; }
  .room-proof-gallery figure:nth-child(2) { transform: none; }
  .room-proof-gallery::-webkit-scrollbar { display: none; }
  .room-detail { grid-template-columns: 34px minmax(0, 1fr); gap: 16px; }
  .room-pricing { padding: 22px 18px; }
  .room-specs { grid-template-columns: 1fr; }
  .room-specs div { padding: 13px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .room-specs div + div { padding-left: 0; }
  .room-specs div:last-child { border-bottom: 0; }
  .amenity-list { grid-template-columns: 1fr; }
  .children-grid { grid-template-columns: 1fr; gap: 30px; }
  .children-grid > div:first-child { grid-column: auto; }
  .child-price { padding: 20px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .form-grid,
  .enquiry-grid .form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .booking-form { padding: 27px 19px; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .text-link { align-self: flex-start; }
  .principle-grid { grid-template-columns: 50px 1fr; gap: 20px; }
  .principle-mark { width: 48px; height: 48px; font-size: 1.6rem; }
  .treatment-direction { grid-template-columns: 37px 1fr; gap: 13px; }
  .treatment-direction ul { display: grid; }
  .treatment-direction li { width: fit-content; }
  .mineral-grid > div:first-child { width: 72%; }
  .inclusion-details summary { min-height: 88px; }
  .inclusion-details summary span:first-child { display: flex; align-items: start; flex-direction: column; gap: 5px; }
  .inclusion-details summary strong { font-size: 1.05rem; }
  .details-body { padding-right: 0; }
  .medical-note { width: 100%; margin-bottom: 64px; padding: 48px 24px; }
  .service-price-grid { grid-template-columns: 1fr; }
  .service-price-card,
  .service-price-card:nth-child(2n),
  .service-price-card:nth-child(3) { min-height: 140px; border-right: 0; border-top: 1px solid var(--line); }
  .service-price-card:first-child { border-top: 0; }
  .catalogue-disclosure > summary {
    grid-template-columns: minmax(0, 1fr) 22px;
    gap: 14px;
    padding: 20px 0;
  }
  .catalogue-disclosure > summary > .catalogue-plus { grid-column: 2; grid-row: 1; }
  .catalogue-group > summary { gap: 12px; }
  .catalogue-group > summary small { text-align: right; }
  .catalogue-row { align-items: start; flex-direction: column; gap: 3px; padding-inline: 10px; }
  .facility-feature { gap: 40px; }
  .facility-image-portrait { width: 82%; }
  .facility-feature-reverse .facility-image { justify-self: end; }
  .grounds-grid { grid-template-columns: 1fr; gap: 8px; }
  .grounds-grid figure,
  .grounds-grid figure:first-child { min-height: 320px; grid-column: auto; }
  .evidence-list > div:last-child { grid-template-columns: 1fr; }
  .evidence-list article,
  .evidence-list article:nth-child(3n) { min-height: 205px; border-right: 0; }
  .about-intro { gap: 30px; }
  .about-photo-story { width: 100%; }
  .about-photo-side { width: 70%; margin-right: 16px; }
  .value-statement { align-items: start; flex-direction: column; gap: 45px; }
  .value-statement h2 { text-align: left; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article,
  .value-grid article + article,
  .value-grid article:nth-child(3) { min-height: 175px; padding: 27px 0; border-right: 0; border-bottom: 1px solid var(--white-line); }
  .value-grid article:last-child { border-bottom: 0; }
  .value-grid h3 { margin-top: 38px; }
  .contact-hero { padding-block: 80px; }
  .faq-hero { padding-block: 80px; }
  .faq-hero::after { right: -12px; bottom: -0.26em; }
  .contact-hero h1 br { display: none; }
  .contact-page { width: 100%; padding-top: 0; }
  .contact-details { width: var(--wrap); margin-inline: auto; }
  .contact-visual > span { font-size: 0.64rem; }
  .faq-list summary { min-height: 92px; font-size: 0.9rem; }
  .faq-home-grid { gap: 38px; }
  .faq-home-copy .text-link { margin-top: 25px; }
  .assistant-home-actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .assistant-home-actions .button { width: 100%; }
  .assistant-home-actions .text-link { align-self: flex-start; }
  .assistant-home-preview { padding-block: 0; }
  .assistant-home-bubble { padding-inline: 0; }
  .assistant-home-preview nav a { padding-inline: 0; }
  .assistant-home-preview > p { margin-inline: 0; }
  .faq-index nav { grid-template-columns: 1fr; }
  .faq-index nav a:nth-child(odd),
  .faq-index nav a:nth-child(even) { padding-inline: 0; border-right: 0; }
  .faq-index-contact { max-width: none; }
  .faq-group + .faq-group { margin-top: 72px; }
  .faq-group-heading { margin-bottom: 30px; }
  .contact-band-inner,
  .footer-lead { align-items: start; flex-direction: column; }
  .contact-band-actions,
  .footer-lead-actions { width: 100%; align-items: stretch; }
  .contact-band-actions .text-link,
  .footer-lead-actions .text-link { align-self: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px 25px; }
  .footer-bottom { flex-direction: column; }
  .mobile-actions {
    position: fixed;
    z-index: 110;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: calc(64px + env(safe-area-inset-bottom));
    padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
    grid-template-columns: 0.74fr 0.84fr 1.12fr;
    background: white;
    box-shadow: 0 -8px 30px rgba(14, 43, 36, 0.14);
  }
  .mobile-actions a {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 720;
  }
  .mobile-actions .mobile-primary { border-radius: 4px; background: var(--forest); color: white; }
  .mobile-actions .icon { width: 17px; }
  .assistant-launcher { display: none; }
  .assistant-dialog {
    inset: 0;
    width: 100%;
    height: 100dvh;
    max-width: none;
    max-height: none;
    margin: 0;
    border-radius: 0;
  }
  .assistant-panel {
    height: 100dvh;
    min-height: 0;
    border: 0;
    border-radius: 0;
  }
  .assistant-header { padding-top: calc(14px + env(safe-area-inset-top)); }
  .assistant-messages { padding: 20px 16px; }
  .assistant-message { max-width: 94%; }
  .assistant-privacy { padding-bottom: calc(11px + env(safe-area-inset-bottom)); }
  body.assistant-open .mobile-actions { display: none; }
}

@media (max-width: 360px) {
  :root { --wrap: calc(100% - 26px); }
  .header-shell > .brand .brand-mark { width: 116px; }
  .header-actions > .locale-switch a { min-width: 27px; padding-inline: 5px; }
  .menu-toggle { padding-left: 4px; }
  .hero-copy,
  .inner-hero-copy { padding-inline: 13px; }
  .hero-copy h1 { font-size: 2.65rem; }
  .inner-hero-copy h1 { font-size: 2.6rem; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid > div { min-height: 160px; border-right: 0; border-bottom: 1px solid var(--line); border-left: 0 !important; }
  .proof-grid h3 { margin-top: 22px; }
  .editorial-gallery { grid-template-areas: "tall" "small" "wide"; grid-template-columns: 1fr; grid-template-rows: 440px 330px 250px; }
  .room-detail { grid-template-columns: 1fr; }
  .room-index { margin-bottom: -8px; }
  .room-pricing { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .mobile-actions a { font-size: 0.62rem; }
  .mobile-actions .icon { width: 15px; }
}

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

@media print {
  .site-header,
  .site-footer,
  .mobile-actions,
  .assistant-launcher,
  .assistant-dialog,
  .contact-band,
  .button { display: none !important; }
  body { background: white; color: black; padding: 0; }
  .section-pad { padding-block: 35px; }
}
