/* Tannenhof am Ammersee — local, tracking-free design system */
:root {
  --forest-950: #102820;
  --forest-900: #17392f;
  --forest-800: #21483c;
  --forest-700: #315d4d;
  --sage-500: #96aa99;
  --sage-300: #c6d0c4;
  --sage-100: #e8ede7;
  --clay-700: #974640;
  --clay-600: #b3534d;
  --clay-100: #f5e8e5;
  --sand-300: #dfd1bf;
  --sand-200: #ede3d5;
  --sand-100: #f6f0e7;
  --cream: #fcfaf5;
  --white: #fff;
  --ink: #1c2a25;
  --muted: #64716b;
  --line: rgba(23, 57, 47, 0.14);
  --shadow-sm: 0 12px 36px rgba(16, 40, 32, 0.09);
  --shadow-lg: 0 35px 90px rgba(16, 40, 32, 0.18);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --container: min(1280px, calc(100vw - 64px));
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  background: var(--cream);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  color: var(--forest-950);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.7rem, 5vw, 5.4rem);
}

h1 em,
h2 em {
  color: var(--clay-600);
  font-weight: 400;
}

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

.section {
  position: relative;
  padding-block: clamp(90px, 10vw, 150px);
}

.lead {
  font-size: clamp(1.12rem, 1.7vw, 1.38rem);
  line-height: 1.65;
}

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

.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;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 14px;
  left: 14px;
  padding: 12px 18px;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--white);
  color: var(--forest-950);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease;
}

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

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--clay-600);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  display: block;
  width: 38px;
  height: 1px;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.91rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button .icon {
  width: 19px;
  transition: transform 220ms ease;
}

.button:hover .icon {
  transform: translateX(3px);
}

.button--primary {
  background: var(--forest-900);
  color: var(--white);
}

.button--primary:hover {
  background: var(--forest-700);
}

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

.button--light:hover {
  background: var(--sand-100);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.button--text {
  min-height: auto;
  padding: 8px 0;
  border-radius: 0;
  border-bottom: 1px solid currentColor;
  color: var(--forest-900);
}

/* Header */
.utility-bar {
  position: absolute;
  z-index: 101;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.82);
}

.utility-bar__inner {
  display: flex;
  width: var(--container);
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  font-size: 0.73rem;
  letter-spacing: 0.03em;
}

.utility-bar a,
.utility-bar__inner > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.utility-bar a {
  gap: 8px;
}

.utility-bar .icon {
  width: 15px;
  height: 15px;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 38px;
  left: 0;
  width: 100%;
  color: var(--white);
  transition: color 250ms ease, background 250ms ease, transform 250ms ease, box-shadow 250ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  top: 0;
  background: rgba(252, 250, 245, 0.95);
  color: var(--forest-950);
  box-shadow: 0 10px 40px rgba(16, 40, 32, 0.1);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: grid;
  width: var(--container);
  min-height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(16, 40, 32, 0.16);
}

.brand > span {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.74;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 32px);
}

.desktop-nav a {
  position: relative;
  padding-block: 30px;
  font-size: 0.84rem;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: currentColor;
  content: "";
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.header-book {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled .header-book {
  border-color: var(--forest-900);
  background: var(--forest-900);
  color: var(--white);
}

.header-book:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--forest-950);
}

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

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

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--forest-950);
  color: var(--white);
}

.hero--home {
  min-height: max(760px, 94svh);
}

.hero__media,
.hero__media img,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-position: center 48%;
  animation: hero-settle 2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes hero-settle {
  from { transform: scale(1.055); }
  to { transform: scale(1); }
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(10, 30, 23, 0.84) 0%, rgba(10, 30, 23, 0.5) 46%, rgba(10, 30, 23, 0.15) 78%),
    linear-gradient(0deg, rgba(10, 30, 23, 0.64) 0%, transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
  padding-top: clamp(205px, 24vh, 290px);
  padding-bottom: 170px;
}

.hero__content .eyebrow {
  color: var(--sand-200);
}

.hero__content h1 {
  max-width: 800px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(4rem, 7.5vw, 7.7rem);
  line-height: 0.83;
}

.hero__content h1 em {
  color: var(--sand-200);
  font-style: italic;
}

.hero__content > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__actions .button--primary {
  background: var(--clay-600);
}

.hero__facts {
  position: absolute;
  z-index: 2;
  right: max(32px, calc((100vw - 1280px) / 2));
  bottom: 52px;
  display: flex;
  gap: clamp(25px, 4vw, 65px);
}

.hero__facts span {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__facts strong {
  margin-bottom: 3px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  bottom: 42px;
  left: max(32px, calc((100vw - 1280px) / 2));
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__scroll span {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.hero__scroll span::after {
  position: absolute;
  top: 9px;
  left: 15px;
  width: 3px;
  height: 8px;
  border-right: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  content: "";
  transform: rotate(45deg);
}

/* Booking strip */
.booking-strip-wrap {
  position: relative;
  z-index: 10;
  width: var(--container);
  margin: -25px auto 0;
}

.booking-strip {
  display: grid;
  min-height: 120px;
  grid-template-columns: 1.35fr repeat(4, 1fr) auto;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
}

.booking-strip__heading,
.booking-strip label,
.booking-strip > button {
  display: flex;
  justify-content: center;
  padding: 22px;
}

.booking-strip__heading {
  align-items: center;
  gap: 14px;
  border-radius: 19px 0 0 19px;
  background: var(--forest-900);
  color: var(--white);
}

.booking-strip__heading .icon {
  width: 26px;
  height: 26px;
}

.booking-strip__heading span {
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.15;
}

.booking-strip__heading small {
  margin-bottom: 5px;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.7;
  text-transform: uppercase;
}

.booking-strip label {
  position: relative;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.booking-strip label > span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.booking-strip input,
.booking-strip select {
  width: 100%;
  min-width: 0;
  padding: 3px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--forest-950);
  font-weight: 650;
}

.booking-strip > button {
  min-width: 150px;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 0 19px 19px 0;
  background: var(--clay-600);
  color: var(--white);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 750;
  transition: background 200ms ease;
}

.booking-strip > button:hover {
  background: var(--clay-700);
}

.booking-estimate {
  position: absolute;
  right: 174px;
  bottom: 7px;
  margin: 0;
  color: var(--muted);
  font-size: 0.62rem;
}

.booking-strip-wrap--sub {
  margin-top: -34px;
}

.booking-strip--compact {
  min-height: 110px;
}

/* Shared section heading */
.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: clamp(40px, 8vw, 130px);
  margin-bottom: 58px;
}

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

.section-heading > p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 1.02rem;
}

/* Home intro */
.intro {
  padding-top: clamp(120px, 14vw, 190px);
}

.intro__grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: clamp(60px, 9vw, 145px);
}

.intro__copy p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
}

.intro__copy .lead {
  color: var(--ink) !important;
}

.intro__copy .button {
  margin-top: 18px;
}

.intro__visual {
  position: relative;
  min-height: 680px;
}

.intro__image-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  height: 78%;
  overflow: hidden;
  border-radius: 4px 80px 4px 4px;
  box-shadow: var(--shadow-lg);
}

.intro__image-small {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 45%;
  height: 47%;
  overflow: hidden;
  border: 10px solid var(--cream);
  border-radius: 50% 50% 8px 8px;
  box-shadow: var(--shadow-sm);
}

.intro__seal {
  position: absolute;
  z-index: 3;
  right: 3%;
  bottom: 10%;
  display: flex;
  width: 132px;
  height: 132px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sand-300);
  border-radius: 50%;
  background: var(--sand-100);
  color: var(--forest-900);
  text-align: center;
  transform: rotate(4deg);
}

.intro__seal strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.intro__seal span {
  max-width: 80px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Rooms */
.rooms-preview {
  background: var(--sand-100);
}

.room-showcase {
  display: grid;
  grid-template-columns: 1.55fr 0.95fr;
  gap: 20px;
}

.room-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 6px 6px 46px 6px;
  background: var(--forest-900);
}

.room-card--large {
  min-height: 640px;
}

.room-card__image,
.room-card__image img {
  width: 100%;
  height: 100%;
}

.room-card__image img {
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.room-card:hover .room-card__image img {
  transform: scale(1.035);
}

.room-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 28, 22, 0.86) 0%, rgba(10, 28, 22, 0.06) 62%);
  content: "";
}

.room-card__overlay {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 30px;
  left: 32px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
}

.room-card__overlay span:first-child {
  color: var(--sand-200);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.room-card__overlay h3 {
  margin: 7px 0 5px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.6vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
}

.room-card__overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.room-card__price {
  display: flex;
  min-width: 104px;
  flex-direction: column;
  text-align: right;
}

.room-card__price small,
.room-card__price span {
  font-size: 0.63rem !important;
  letter-spacing: 0.02em !important;
  opacity: 0.68;
  text-transform: none !important;
}

.room-card__price strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
}

.room-card > a {
  position: absolute;
  z-index: 3;
  top: 24px;
  right: 24px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--white);
  backdrop-filter: blur(10px);
  transition: background 220ms ease, color 220ms ease;
}

.room-card > a:hover {
  background: var(--white);
  color: var(--forest-950);
}

.price-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: right;
}

/* Experience */
.experience-band {
  overflow: hidden;
  background: var(--forest-900);
  color: var(--white);
}

.experience-band::before {
  position: absolute;
  top: -220px;
  left: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.experience-band__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(70px, 10vw, 160px);
}

.experience-band h2 {
  color: var(--white);
}

.experience-band h2 em {
  color: var(--sand-200);
}

.experience-band .eyebrow {
  color: var(--sand-300);
}

.experience-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding-block: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.experience-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.experience-list > article > .icon {
  width: 42px;
  height: 42px;
  color: var(--sand-300);
}

.experience-list article div {
  display: grid;
  grid-template-columns: 50px 1fr;
  column-gap: 16px;
}

.experience-list article span {
  color: var(--sage-500);
  font-family: var(--serif);
}

.experience-list h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.experience-list p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

/* Massage feature */
.massage-feature {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 820px;
  padding: 0;
}

.massage-feature__media {
  position: relative;
  min-height: 720px;
}

.massage-feature__media picture,
.massage-feature__media img {
  width: 100%;
  height: 100%;
}

.massage-feature__badge {
  position: absolute;
  right: -72px;
  bottom: 70px;
  display: flex;
  width: 150px;
  height: 150px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 10px solid var(--cream);
  border-radius: 50%;
  background: var(--clay-600);
  color: var(--white);
  text-align: center;
}

.massage-feature__badge .icon {
  margin-bottom: 7px;
}

.massage-feature__badge span {
  font-size: 0.67rem;
  font-weight: 700;
  line-height: 1.45;
}

.massage-feature__copy {
  display: flex;
  max-width: 680px;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: clamp(80px, 9vw, 150px);
}

.massage-feature__copy p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li,
.room-features li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-list .icon,
.room-features .icon {
  width: 19px;
  color: var(--clay-600);
}

/* Breakfast */
.breakfast-story {
  background: var(--sand-100);
}

.breakfast-story__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(70px, 10vw, 160px);
}

.breakfast-story__copy > p:not(.eyebrow) {
  color: var(--muted);
}

.breakfast-price {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.breakfast-price strong {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
}

.breakfast-price span {
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.4;
}

.breakfast-story__images {
  position: relative;
  min-height: 620px;
}

.breakfast-story__main {
  position: absolute;
  inset: 0 0 0 8%;
  overflow: hidden;
  border-radius: 70px 4px 4px 4px;
}

.breakfast-story__side {
  position: absolute;
  z-index: 2;
  bottom: -50px;
  left: -3%;
  width: 39%;
  height: 46%;
  overflow: hidden;
  border: 9px solid var(--sand-100);
  border-radius: 4px 4px 45px 4px;
  box-shadow: var(--shadow-lg);
}

/* Region teaser */
.region-teaser {
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.region-teaser__backdrop,
.region-teaser__backdrop picture,
.region-teaser__backdrop img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.region-teaser__backdrop::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 34, 26, 0.9), rgba(12, 34, 26, 0.48) 57%, rgba(12, 34, 26, 0.15));
  content: "";
}

.region-teaser__content {
  position: relative;
  max-width: 760px;
  margin-left: max(32px, calc((100vw - 1280px) / 2));
}

.region-teaser h2 {
  color: var(--white);
}

.region-teaser h2 em,
.region-teaser .eyebrow {
  color: var(--sand-200);
}

.region-teaser__content > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
}

.region-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 36px;
  margin: 38px 0;
}

.region-facts span {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.67rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.region-facts strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.review-section {
  text-align: center;
}

.review-section__inner {
  max-width: 940px;
}

.review-stars {
  margin-bottom: 24px;
  color: #b28a45;
  font-size: 1rem;
  letter-spacing: 0.35em;
}

.review-section blockquote {
  margin-bottom: 24px;
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
  line-height: 1.08;
}

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

.review-section a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--forest-900);
  color: var(--forest-900);
  font-size: 0.82rem;
  font-weight: 700;
}

.review-section a .icon {
  width: 15px;
}

/* Sub page hero */
.subhero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--forest-950);
  color: var(--white);
}

.subhero__media,
.subhero__media picture,
.subhero__media img,
.subhero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.subhero__media img {
  object-position: center;
}

.subhero__veil {
  background: linear-gradient(0deg, rgba(10, 30, 23, 0.84), rgba(10, 30, 23, 0.07) 80%), linear-gradient(90deg, rgba(10, 30, 23, 0.58), transparent 70%);
}

.subhero__content {
  position: relative;
  z-index: 2;
  padding: 220px 0 105px;
}

.subhero__content .eyebrow {
  color: var(--sand-200);
}

.subhero__content h1 {
  max-width: 970px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(3.8rem, 7vw, 7rem);
}

.subhero__content h1 em {
  color: var(--sand-200);
}

.subhero__content > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

.subhero__number {
  position: absolute;
  z-index: 1;
  right: 4vw;
  bottom: -0.22em;
  color: rgba(255, 255, 255, 0.07);
  font-family: var(--serif);
  font-size: 28rem;
  line-height: 1;
}

/* Pension */
.story-split__grid,
.massage-intro__grid,
.region-intro__grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(60px, 9vw, 150px);
}

.story-split__copy p:not(.eyebrow) {
  color: var(--muted);
}

.story-split__copy .lead {
  color: var(--ink) !important;
}

.story-signature {
  margin-top: 32px;
  color: var(--clay-600);
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
}

.story-split__image {
  position: relative;
  height: 650px;
}

.story-split__image picture {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px 70px 4px 4px;
}

.fact-card {
  position: absolute;
  bottom: 25px;
  left: -50px;
  display: flex;
  min-width: 210px;
  flex-direction: column;
  padding: 25px 30px;
  border: 8px solid var(--cream);
  border-radius: 4px 30px 4px 4px;
  background: var(--clay-600);
  color: var(--white);
}

.fact-card strong {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.fact-card span {
  font-size: 0.71rem;
  opacity: 0.75;
}

.amenities {
  background: var(--forest-900);
  color: var(--white);
}

.amenities h2,
.amenities h3 {
  color: var(--white);
}

.amenities h2 em,
.amenities .eyebrow {
  color: var(--sand-200);
}

.amenities .section-heading > p {
  color: rgba(255, 255, 255, 0.64);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.amenity-grid article {
  min-height: 260px;
  padding: 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.amenity-grid .icon {
  width: 38px;
  height: 38px;
  margin-bottom: 48px;
  color: var(--sand-300);
}

.amenity-grid h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.amenity-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.gallery-section {
  overflow: hidden;
  background: var(--sand-100);
}

.gallery-grid {
  display: grid;
  width: calc(100% - 36px);
  max-width: 1700px;
  grid-auto-rows: 280px;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-inline: auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--sage-100);
  cursor: zoom-in;
}

.gallery-item picture,
.gallery-item img {
  width: 100%;
  height: 100%;
}

.gallery-item img {
  transition: transform 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(17, 39, 32, 0.78);
  color: var(--white);
  font-size: 0.68rem;
  opacity: 0;
  backdrop-filter: blur(8px);
  transition: opacity 180ms ease;
}

.gallery-item:hover span {
  opacity: 1;
}

.gallery-item span .icon {
  width: 15px;
  height: 15px;
}

.gallery-item--1 { grid-column: span 5; grid-row: span 2; }
.gallery-item--2 { grid-column: span 3; }
.gallery-item--3 { grid-column: span 4; }
.gallery-item--4 { grid-column: span 4; }
.gallery-item--5 { grid-column: span 3; }
.gallery-item--6 { grid-column: span 5; }

.quiet-cta {
  background: var(--cream);
}

.quiet-cta__inner {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: end;
  gap: clamp(50px, 9vw, 150px);
  padding: clamp(48px, 7vw, 95px);
  border: 1px solid var(--line);
  border-radius: 4px 60px 4px 4px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.quiet-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
}

.quiet-cta__inner > div:last-child p {
  color: var(--muted);
}

.quiet-cta .button {
  margin-top: 14px;
}

/* Room details */
.room-detail-section {
  padding-bottom: 40px;
}

.room-detail {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  margin-bottom: 80px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.room-detail--reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

.room-detail--reverse .room-detail__media {
  order: 2;
}

.room-detail__media {
  position: relative;
  min-height: 630px;
}

.room-detail__media picture,
.room-detail__media img {
  width: 100%;
  height: 100%;
}

.room-detail__media > span {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--forest-950);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.room-detail__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(45px, 7vw, 90px);
}

.room-detail__copy h2 {
  font-size: clamp(2.6rem, 4.3vw, 4.4rem);
}

.room-detail__copy > p {
  color: var(--muted);
}

.room-features {
  display: grid;
  gap: 11px;
  margin: 16px 0 34px;
  padding: 0;
  list-style: none;
}

.room-detail__book {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.room-detail__book > div {
  display: flex;
  flex-direction: column;
}

.room-detail__book small {
  color: var(--muted);
  font-size: 0.65rem;
}

.room-detail__book strong {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
}

.price-section {
  background: var(--sand-100);
}

.price-table {
  border-top: 1px solid var(--forest-900);
}

.price-row {
  display: grid;
  grid-template-columns: 1.35fr 0.4fr 0.8fr;
  align-items: center;
  gap: 24px;
  padding: 24px 8px;
  border-bottom: 1px solid var(--line);
}

.price-row--head {
  padding-block: 13px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.price-row:not(.price-row--head) > span:first-child {
  font-family: var(--serif);
  font-size: 1.28rem;
}

.price-row strong {
  color: var(--forest-900);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.price-row > span:last-child {
  color: var(--muted);
  font-size: 0.85rem;
}

.price-disclaimer,
.source-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(60px, 10vw, 150px);
}

.faq-title p:not(.eyebrow) {
  color: var(--muted);
}

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

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

.faq-list summary {
  position: relative;
  padding: 27px 50px 27px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.35rem;
  list-style: none;
}

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

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 3px;
  width: 18px;
  height: 1px;
  background: var(--forest-900);
  content: "";
}

.faq-list summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 720px;
  padding: 0 40px 24px 0;
  color: var(--muted);
}

/* Massage page */
.massage-intro__grid,
.region-intro__grid {
  align-items: start;
}

.massage-intro__grid > div:last-child,
.region-intro__grid > div:last-child {
  padding-top: 28px;
}

.massage-intro p,
.region-intro p {
  color: var(--muted);
}

.massage-intro .lead,
.region-intro .lead {
  color: var(--ink);
}

.massage-intro .button {
  margin-top: 18px;
}

.treatment-section {
  padding-top: 20px;
  background: var(--sand-100);
}

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

.treatment-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.treatment-card__image {
  position: relative;
  height: 330px;
  overflow: hidden;
}

.treatment-card__image picture,
.treatment-card__image img {
  width: 100%;
  height: 100%;
}

.treatment-card__image img {
  transition: transform 500ms ease;
}

.treatment-card:hover .treatment-card__image img {
  transform: scale(1.035);
}

.treatment-card__image > span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--clay-600);
  color: var(--white);
  font-family: var(--serif);
}

.treatment-card__copy {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 30px;
}

.treatment-card h3 {
  margin-bottom: 14px;
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.1;
}

.treatment-card p {
  flex: 1;
  color: var(--muted);
}

.treatment-card__copy > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.treatment-card__copy > div span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.75rem;
}

.treatment-card__copy > div .icon {
  width: 16px;
}

.treatment-card__copy > div strong {
  color: var(--clay-600);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.massage-process__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(65px, 10vw, 150px);
  align-items: center;
}

.massage-process__image {
  position: relative;
  height: 690px;
}

.massage-process__image picture {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px 80px 4px 4px;
}

.massage-process__quote {
  position: absolute;
  right: -50px;
  bottom: 35px;
  max-width: 270px;
  padding: 30px;
  border: 8px solid var(--cream);
  background: var(--forest-900);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
}

.massage-process ol {
  margin: 25px 0 35px;
  padding: 0;
  list-style: none;
}

.massage-process li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-top: 1px solid var(--line);
}

.massage-process li:last-child {
  border-bottom: 1px solid var(--line);
}

.massage-process li > span {
  color: var(--clay-600);
  font-family: var(--serif);
}

.massage-process li h3 {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.massage-process li p {
  margin: 0;
  color: var(--muted);
}

.health-note {
  padding-block: 55px;
  background: var(--sage-100);
}

.health-note__inner {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 26px;
  max-width: 1050px;
}

.health-note__inner > .icon {
  width: 42px;
  height: 42px;
  color: var(--forest-700);
}

.health-note h2 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
}

.health-note p {
  margin: 0;
  color: var(--muted);
}

/* Region */
.discovery-grid-section {
  padding-top: 20px;
  background: var(--sand-100);
}

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

.discovery-card {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.discovery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.discovery-card--wide {
  grid-column: span 2;
  min-height: 440px;
  background: var(--sage-100);
}

.discovery-card--dark {
  background: var(--forest-900);
  color: var(--white);
}

.discovery-card__number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--clay-600);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.discovery-card h2 {
  margin-bottom: 15px;
  font-size: clamp(2.5rem, 4.5vw, 4.7rem);
}

.discovery-card p {
  max-width: 600px;
  color: var(--muted);
}

.discovery-card--dark h2 {
  color: var(--white);
}

.discovery-card--dark p {
  color: rgba(255, 255, 255, 0.65);
}

.discovery-card a,
.discovery-card > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--forest-700);
  font-size: 0.76rem;
  font-weight: 750;
}

.discovery-card--dark > span {
  color: var(--sand-200);
}

.discovery-card a .icon {
  width: 15px;
}

.host-tip__inner {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
}

.host-tip__portrait {
  position: relative;
  height: 570px;
}

.host-tip__portrait picture {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50% 50% 4px 4px;
}

.host-tip__portrait > span {
  position: absolute;
  right: -30px;
  bottom: 35px;
  padding: 18px 24px;
  border: 8px solid var(--cream);
  border-radius: 50%;
  background: var(--clay-600);
  color: var(--white);
  font-family: var(--serif);
  font-style: italic;
}

.host-tip blockquote {
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.7vw, 4.8rem);
  line-height: 1.08;
}

.host-tip__copy > p:not(.eyebrow) {
  color: var(--muted);
}

.location-facts {
  background: var(--forest-900);
  color: var(--white);
}

.location-facts h2 {
  color: var(--white);
}

.location-facts h2 em,
.location-facts .eyebrow {
  color: var(--sand-200);
}

.location-facts .section-heading > p,
.location-facts .source-note {
  color: rgba(255, 255, 255, 0.6);
}

.location-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.location-facts__grid article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.location-facts__grid strong {
  color: var(--sand-200);
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
}

.location-facts__grid span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

/* About */
.about-story__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: clamp(65px, 10vw, 150px);
}

.about-story__portrait {
  position: relative;
  height: 720px;
}

.about-story__portrait picture {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 250px 250px 4px 4px;
}

.about-story__monogram {
  position: absolute;
  right: -38px;
  bottom: 20px;
  display: grid;
  width: 115px;
  height: 115px;
  place-items: center;
  border: 8px solid var(--cream);
  border-radius: 50%;
  background: var(--forest-900);
  color: var(--sand-200);
  font-family: var(--serif);
  font-size: 2.2rem;
}

.about-story__copy p:not(.eyebrow) {
  color: var(--muted);
}

.about-story__copy .lead {
  color: var(--ink) !important;
}

.values-section {
  background: var(--sand-100);
}

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

.values-grid article {
  position: relative;
  min-height: 390px;
  padding: 38px;
  background: var(--white);
}

.values-grid article > span {
  position: absolute;
  top: 22px;
  right: 25px;
  color: var(--sage-500);
  font-family: var(--serif);
}

.values-grid .icon {
  width: 42px;
  height: 42px;
  margin: 75px 0 30px;
  color: var(--clay-600);
}

.values-grid h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.values-grid p {
  color: var(--muted);
}

.about-gallery {
  padding-block: 22px;
  overflow: hidden;
}

.about-gallery__track {
  display: grid;
  width: calc(100% - 44px);
  max-width: 1800px;
  grid-template-columns: 0.8fr 0.65fr 1.1fr 0.8fr;
  gap: 12px;
  margin-inline: auto;
}

.about-gallery picture {
  height: 480px;
  overflow: hidden;
}

.about-gallery picture:nth-child(2),
.about-gallery picture:nth-child(4) {
  margin-top: 70px;
}

.quote-banner {
  text-align: center;
}

.quote-banner .container {
  max-width: 1000px;
}

.quote-banner blockquote {
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.07;
}

.quote-banner p {
  color: var(--clay-600);
  font-family: var(--serif);
  font-style: italic;
}

/* Contact */
.contact-hero {
  padding-top: 170px;
  background: var(--forest-900);
  color: var(--white);
}

.contact-hero__grid {
  display: grid;
  min-height: 650px;
  grid-template-columns: 0.93fr 1.07fr;
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.contact-hero .eyebrow,
.contact-hero h1 em {
  color: var(--sand-200);
}

.contact-hero h1 {
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(4rem, 7vw, 7rem);
}

.contact-hero__copy > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin-top: 38px;
}

.contact-direct a {
  display: flex;
  align-items: center;
  gap: 13px;
}

.contact-direct a > .icon {
  width: 27px;
  height: 27px;
  color: var(--sand-200);
}

.contact-direct span {
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.contact-direct small {
  font-family: var(--sans);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.62;
  text-transform: uppercase;
}

.contact-hero__image {
  height: 650px;
  overflow: hidden;
  border-radius: 100px 0 0 0;
}

.request-section {
  background: var(--sand-100);
}

.request-grid {
  display: grid;
  grid-template-columns: 1.32fr 0.68fr;
  align-items: start;
  gap: 24px;
}

.request-form {
  padding: clamp(38px, 6vw, 76px);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.request-form__heading {
  margin-bottom: 40px;
}

.request-form__heading h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.6rem);
}

.request-form__heading > p:not(.eyebrow) {
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
  margin-bottom: 32px;
}

.form-grid label:not(.checkbox) {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-grid label > span:first-child {
  color: var(--forest-900);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-grid textarea {
  min-height: 135px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--forest-700);
  box-shadow: 0 0 0 3px rgba(49, 93, 77, 0.12);
  outline: 0;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.checkbox {
  display: grid;
  grid-template-columns: 19px 1fr;
  align-items: start;
  gap: 12px;
  color: var(--muted);
  font-size: 0.78rem;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.checkbox a {
  border-bottom: 1px solid currentColor;
  color: var(--forest-700);
}

.form-status {
  margin: 14px 0 0;
  color: var(--forest-700);
  font-size: 0.82rem;
  font-weight: 650;
}

.request-aside {
  display: grid;
  gap: 20px;
}

.request-aside__card {
  padding: 38px;
  background: var(--forest-900);
  color: var(--white);
}

.request-aside__card > span {
  color: var(--sand-200);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.request-aside__card h2,
.request-aside__card h3 {
  margin: 12px 0 18px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 500;
}

.request-aside__card p {
  color: rgba(255, 255, 255, 0.65);
}

.request-aside__card > a:not(.button) {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.83rem;
}

.request-aside__card > a .icon {
  width: 17px;
}

.request-aside__card--massage {
  background: var(--clay-600);
}

.request-aside__card--massage > .icon {
  width: 42px;
  height: 42px;
}

.request-aside__card--massage .button {
  margin-top: 10px;
}

.map-section {
  background: var(--cream);
}

.address-block {
  display: flex;
  flex-direction: column;
  color: var(--muted);
}

.address-block strong {
  color: var(--forest-900);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.address-block a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 11px;
  color: var(--clay-600);
  font-size: 0.78rem;
  font-weight: 750;
}

.address-block a .icon {
  width: 15px;
}

.map-consent {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  overflow: hidden;
  background: #dfe6dc;
}

.map-consent__art {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.8) 0 3px, transparent 4px),
    linear-gradient(145deg, #e8ece4, #cdd9ca);
}

.map-consent__art::before,
.map-consent__art::after {
  position: absolute;
  width: 500px;
  height: 200px;
  border: 18px solid rgba(255, 255, 255, 0.8);
  border-radius: 48%;
  content: "";
  transform: rotate(-24deg);
}

.map-consent__art::before {
  top: 30px;
  left: -90px;
}

.map-consent__art::after {
  right: -120px;
  bottom: 20px;
  transform: rotate(34deg);
}

.map-road {
  position: absolute;
  z-index: 1;
  display: block;
  height: 7px;
  border-radius: 999px;
  background: rgba(163, 180, 159, 0.85);
}

.map-road--1 { top: 22%; left: 10%; width: 70%; transform: rotate(18deg); }
.map-road--2 { top: 57%; left: 16%; width: 85%; transform: rotate(-15deg); }
.map-road--3 { top: 41%; left: 42%; width: 55%; transform: rotate(78deg); }

.map-pin {
  position: absolute;
  z-index: 3;
  top: 42%;
  left: 49%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--clay-600);
  transform: translate(-50%, -50%);
}

.map-pin .icon {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 8px 14px rgba(79, 45, 39, 0.22));
}

.map-pin span {
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--white);
  color: var(--forest-900);
  box-shadow: var(--shadow-sm);
  font-size: 0.72rem;
  font-weight: 750;
}

.map-consent__panel {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 45px;
  background: var(--white);
}

.map-consent__panel h3 {
  margin-bottom: 12px;
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.map-consent__panel p {
  color: var(--muted);
  font-size: 0.85rem;
}

.map-consent__panel > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 17px;
  border-bottom: 1px solid currentColor;
  color: var(--forest-700);
  font-size: 0.72rem;
  font-weight: 700;
}

.map-consent__panel > a .icon {
  width: 14px;
}

.map-consent iframe {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.arrival-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.arrival-grid article {
  min-height: 230px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

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

.arrival-grid .icon {
  width: 34px;
  height: 34px;
  margin-bottom: 25px;
  color: var(--clay-600);
}

.arrival-grid h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

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

/* Legal */
.legal-hero {
  padding: 240px 0 110px;
  overflow: hidden;
  background: var(--forest-900);
  color: var(--white);
}

.legal-hero .eyebrow {
  color: var(--sand-200);
}

.legal-hero h1 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(4rem, 7vw, 7rem);
}

.legal-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
}

.legal-layout aside {
  position: sticky;
  top: 120px;
}

.legal-layout aside nav {
  display: grid;
  border-top: 1px solid var(--line);
}

.legal-layout aside a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  transition: color 180ms ease;
}

.legal-layout aside a:hover {
  color: var(--clay-600);
}

.legal-copy {
  max-width: 860px;
}

.legal-copy section {
  margin-bottom: 55px;
  scroll-margin-top: 120px;
}

.legal-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  line-height: 1.1;
}

.legal-copy h3 {
  margin: 30px 0 12px;
  color: var(--forest-900);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.legal-copy a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid currentColor;
  color: var(--forest-700);
}

.legal-copy a .icon {
  width: 15px;
}

.transparency-section {
  background: var(--sand-100);
}

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

.transparency-grid article {
  min-height: 350px;
  padding: clamp(35px, 5vw, 60px);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.transparency-grid .icon {
  width: 44px;
  height: 44px;
  margin-bottom: 60px;
  color: var(--clay-600);
}

.transparency-grid h2 {
  margin-bottom: 15px;
  font-size: 2.3rem;
}

.transparency-grid p,
.access-note p {
  color: var(--muted);
}

.access-note {
  margin-top: 16px;
  padding: clamp(38px, 6vw, 75px);
  background: var(--sage-100);
}

.access-note h2 {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.access-note a:not(.button) {
  border-bottom: 1px solid currentColor;
  color: var(--forest-700);
}

/* Footer */
.site-footer {
  background: var(--forest-950);
  color: var(--white);
}

.site-footer__lead {
  display: grid;
  width: var(--container);
  grid-template-columns: 1.18fr 0.82fr;
  align-items: center;
  gap: 50px;
  margin-inline: auto;
  padding: 90px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__lead h2 {
  max-width: 790px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.7rem, 4.8vw, 5rem);
}

.site-footer .eyebrow {
  color: var(--sand-300);
}

.site-footer__lead-actions {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 22px;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-phone > .icon {
  width: 29px;
  height: 29px;
  color: var(--sand-300);
}

.footer-phone span {
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.footer-phone small {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.55;
  text-transform: uppercase;
}

.site-footer__grid {
  display: grid;
  width: var(--container);
  grid-template-columns: 1.4fr repeat(3, 0.72fr);
  gap: clamp(35px, 6vw, 95px);
  margin-inline: auto;
  padding: 80px 0;
}

.brand--footer img {
  width: 62px;
  height: 62px;
}

.footer-brand > p {
  max-width: 350px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.site-footer__grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}

.site-footer__grid h3 {
  margin-bottom: 15px;
  color: var(--sand-200);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer__grid a,
.site-footer__grid p {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.site-footer__grid a:hover {
  color: var(--white);
}

.site-footer__grid a .icon {
  width: 14px;
}

.site-footer__bottom {
  display: flex;
  width: var(--container);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-inline: auto;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.67rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.site-footer__bottom a:hover {
  color: var(--white);
}

.mobile-quick-book {
  display: none;
}

.back-to-top {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  transform: translateY(80px) rotate(-90deg);
  border: 0;
  border-radius: 50%;
  background: var(--forest-900);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.back-to-top.is-visible {
  transform: translateY(0) rotate(-90deg);
  opacity: 1;
}

.back-to-top .icon {
  width: 18px;
}

/* Lightbox */
.lightbox {
  width: min(1200px, calc(100vw - 40px));
  max-width: none;
  height: min(820px, calc(100svh - 60px));
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-sm);
  background: #091d17;
  color: var(--white);
}

.lightbox::backdrop {
  background: rgba(5, 18, 14, 0.88);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  height: calc(100% - 52px);
  object-fit: contain;
}

.lightbox > button {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(9, 29, 23, 0.72);
  color: var(--white);
  cursor: pointer;
}

.lightbox p {
  height: 52px;
  margin: 0;
  padding: 14px 20px;
  text-align: center;
}

/* Progressive reveal — content remains visible without JS */
.js .reveal {
  transform: translateY(32px);
  opacity: 0;
  transition: transform 750ms cubic-bezier(0.16, 1, 0.3, 1), opacity 750ms ease;
}

.js .reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* Tablet */
@media (max-width: 1120px) {
  :root {
    --container: min(100% - 42px, 1050px);
  }

  .utility-bar__inner > div > span {
    display: none;
  }

  .desktop-nav {
    gap: 17px;
  }

  .desktop-nav a {
    font-size: 0.75rem;
  }

  .header-book {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr;
  }

  .booking-strip {
    grid-template-columns: repeat(4, 1fr) auto;
  }

  .booking-strip__heading {
    display: none;
  }

  .booking-strip label:first-of-type {
    border-radius: 19px 0 0 19px;
  }

  .story-split__grid,
  .about-story__grid,
  .intro__grid {
    gap: 65px;
  }

  .intro__visual,
  .about-story__portrait {
    min-height: 610px;
  }

  .massage-feature__copy {
    padding: 90px 70px 90px 110px;
  }

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

  .site-footer__grid {
    grid-template-columns: 1.2fr repeat(3, 0.8fr);
    gap: 35px;
  }
}

/* Mobile navigation breakpoint */
@media (max-width: 920px) {
  :root {
    --container: calc(100% - 32px);
    --header-height: 72px;
  }

  .utility-bar {
    display: none;
  }

  .site-header,
  .site-header.is-scrolled {
    position: absolute;
    top: 0;
  }

  .site-header.is-scrolled {
    position: fixed;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 1.22rem;
  }

  .brand small {
    font-size: 0.51rem;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: transparent;
    color: currentColor;
    cursor: pointer;
  }

  .site-header.is-scrolled .menu-toggle {
    border-color: var(--line);
  }

  .menu-toggle .icon {
    position: absolute;
  }

  .menu-toggle .menu-close {
    transform: rotate(-45deg) scale(0.7);
    opacity: 0;
    transition: transform 220ms ease, opacity 180ms ease;
  }

  .menu-toggle .menu-open {
    transition: transform 220ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-open {
    transform: rotate(45deg) scale(0.7);
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-close {
    transform: rotate(0) scale(1);
    opacity: 1;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    height: 100svh;
    flex-direction: column;
    justify-content: center;
    padding: 110px max(25px, 8vw) 45px;
    transform: translateY(-100%);
    background: var(--forest-950);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), opacity 250ms ease, visibility 250ms ease;
  }

  .mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu > div {
    display: grid;
  }

  .mobile-menu > div a {
    padding: 10px 0;
    color: var(--white);
    font-family: var(--serif);
    font-size: clamp(2rem, 8vw, 3.8rem);
    line-height: 1.05;
  }

  .mobile-menu > div a[aria-current="page"] {
    color: var(--sand-300);
  }

  .mobile-menu__contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 26px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--sand-200);
    font-weight: 700;
  }

  .mobile-menu > a:last-child {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    font-size: 0.9rem;
  }

  .hero--home {
    min-height: 780px;
  }

  .hero__content {
    padding-top: 190px;
    padding-bottom: 200px;
  }

  .hero__content h1 {
    font-size: clamp(3.6rem, 12vw, 6.5rem);
  }

  .hero__facts {
    right: 16px;
    bottom: 44px;
    left: 16px;
    justify-content: flex-end;
  }

  .hero__facts span:first-child {
    display: none;
  }

  .hero__scroll {
    left: 16px;
  }

  .booking-strip-wrap {
    width: calc(100% - 24px);
    margin-top: -24px;
  }

  .booking-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px;
    border-radius: 18px;
  }

  .booking-strip label,
  .booking-strip label:first-of-type {
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .booking-strip label:nth-of-type(odd) {
    border-right: 1px solid var(--line);
  }

  .booking-strip > button {
    min-height: 56px;
    grid-column: 1 / -1;
    border-radius: 12px;
  }

  .booking-estimate {
    position: static;
    grid-column: 1 / -1;
    margin: 4px 0 0;
    text-align: center;
  }

  .intro__grid,
  .experience-band__grid,
  .breakfast-story__grid,
  .story-split__grid,
  .massage-intro__grid,
  .region-intro__grid,
  .about-story__grid,
  .contact-hero__grid,
  .request-grid,
  .massage-process__inner,
  .host-tip__inner,
  .faq-grid,
  .legal-layout,
  .site-footer__lead {
    grid-template-columns: 1fr;
  }

  .intro__copy {
    order: 1;
  }

  .intro__visual {
    min-height: 580px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .room-showcase {
    grid-template-columns: 1fr;
  }

  .room-card,
  .room-card--large {
    min-height: 570px;
  }

  .experience-band__grid {
    gap: 40px;
  }

  .massage-feature {
    grid-template-columns: 1fr;
  }

  .massage-feature__media {
    min-height: 620px;
  }

  .massage-feature__badge {
    right: 22px;
    bottom: -60px;
  }

  .massage-feature__copy {
    max-width: none;
    padding: 120px 32px 90px;
  }

  .breakfast-story__grid {
    gap: 60px;
  }

  .breakfast-story__images {
    min-height: 580px;
  }

  .subhero {
    min-height: 620px;
  }

  .subhero__content {
    padding: 180px 0 95px;
  }

  .story-split__grid,
  .about-story__grid {
    gap: 60px;
  }

  .story-split__image {
    height: 610px;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 330px;
  }

  .gallery-item {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item--1,
  .gallery-item--6 {
    grid-column: span 2;
  }

  .quiet-cta__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .room-detail,
  .room-detail--reverse {
    grid-template-columns: 1fr;
  }

  .room-detail--reverse .room-detail__media {
    order: 0;
  }

  .room-detail__media {
    min-height: 580px;
  }

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

  .discovery-card--wide {
    grid-column: span 2;
  }

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

  .about-story__portrait {
    width: min(100%, 580px);
    height: 720px;
    margin-inline: auto;
  }

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

  .about-gallery picture:nth-child(n) {
    height: 380px;
    margin-top: 0;
  }

  .contact-hero {
    padding-top: 130px;
  }

  .contact-hero__grid {
    gap: 50px;
  }

  .contact-hero__image {
    width: calc(100% + 16px);
    height: 550px;
    border-radius: 60px 0 0 0;
  }

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

  .map-consent {
    grid-template-columns: 1fr;
  }

  .map-consent__art {
    min-height: 390px;
  }

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

  .arrival-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .arrival-grid article:last-child {
    border-bottom: 0;
  }

  .legal-layout aside {
    position: static;
  }

  .legal-layout aside nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .legal-layout aside a {
    padding-right: 15px;
  }

  .site-footer__lead {
    gap: 35px;
  }

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

  .site-footer__bottom {
    align-items: start;
    flex-direction: column;
  }
}

/* Phones */
@media (max-width: 640px) {
  :root {
    --container: calc(100% - 28px);
  }

  body {
    font-size: 15.5px;
    padding-bottom: 64px;
  }

  .section {
    padding-block: 82px;
  }

  h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .brand small {
    display: none;
  }

  .hero--home {
    min-height: 760px;
  }

  .hero__media img {
    object-position: 62% center;
  }

  .hero__veil {
    background: linear-gradient(0deg, rgba(10, 30, 23, 0.89) 0%, rgba(10, 30, 23, 0.45) 70%, rgba(10, 30, 23, 0.2));
  }

  .hero__content {
    padding-top: 170px;
    padding-bottom: 220px;
  }

  .hero__content h1 {
    font-size: clamp(3.2rem, 16vw, 5.1rem);
    line-height: 0.88;
  }

  .hero__content > p:not(.eyebrow) {
    font-size: 0.96rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__facts {
    bottom: 36px;
    gap: 30px;
  }

  .hero__facts strong {
    font-size: 1.8rem;
  }

  .hero__scroll {
    display: none;
  }

  .booking-strip-wrap {
    width: calc(100% - 16px);
  }

  .booking-strip {
    box-shadow: 0 22px 50px rgba(16, 40, 32, 0.16);
  }

  .booking-strip label {
    padding: 12px 9px;
  }

  .booking-strip input,
  .booking-strip select {
    font-size: 0.84rem;
  }

  .intro {
    padding-top: 112px;
  }

  .intro__grid {
    gap: 45px;
  }

  .intro__visual {
    min-height: 470px;
  }

  .intro__image-main {
    width: 86%;
    height: 77%;
    border-radius: 4px 45px 4px 4px;
  }

  .intro__image-small {
    width: 48%;
    height: 44%;
    border-width: 7px;
  }

  .intro__seal {
    right: 0;
    bottom: 4%;
    width: 105px;
    height: 105px;
  }

  .intro__seal strong {
    font-size: 1.15rem;
  }

  .room-card,
  .room-card--large {
    min-height: 500px;
  }

  .room-card__overlay {
    right: 20px;
    bottom: 22px;
    left: 20px;
    align-items: start;
    flex-direction: column;
  }

  .room-card__overlay h3 {
    font-size: 2.6rem;
  }

  .room-card__price {
    text-align: left;
  }

  .experience-list article {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .experience-list > article > .icon {
    width: 31px;
    height: 31px;
  }

  .experience-list article div {
    grid-template-columns: 35px 1fr;
  }

  .massage-feature__media {
    min-height: 500px;
  }

  .massage-feature__copy {
    padding: 105px 20px 78px;
  }

  .massage-feature__badge {
    width: 125px;
    height: 125px;
    border-width: 7px;
  }

  .breakfast-story__images {
    min-height: 460px;
  }

  .breakfast-story__main {
    left: 0;
    border-radius: 40px 4px 4px 4px;
  }

  .breakfast-story__side {
    bottom: -30px;
    left: -4px;
    width: 48%;
    height: 42%;
    border-width: 6px;
  }

  .region-teaser {
    min-height: 740px;
  }

  .region-teaser__content {
    width: var(--container);
    margin-inline: auto;
  }

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

  .review-section blockquote {
    font-size: 2.3rem;
  }

  .subhero {
    min-height: 590px;
  }

  .subhero__content {
    padding: 170px 0 78px;
  }

  .subhero__content h1,
  .contact-hero h1,
  .legal-hero h1 {
    font-size: clamp(3.3rem, 15vw, 5.2rem);
  }

  .booking-strip-wrap--sub {
    margin-top: -24px;
  }

  .story-split__image {
    height: 500px;
  }

  .fact-card {
    bottom: -25px;
    left: 12px;
    min-width: 180px;
    border-width: 6px;
  }

  .amenity-grid,
  .gallery-grid,
  .treatment-grid,
  .discovery-grid,
  .values-grid,
  .transparency-grid,
  .request-aside,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .amenity-grid article {
    min-height: 225px;
    padding: 30px;
  }

  .amenity-grid .icon {
    margin-bottom: 34px;
  }

  .gallery-grid {
    width: calc(100% - 16px);
    grid-auto-rows: 300px;
  }

  .gallery-item,
  .gallery-item--1,
  .gallery-item--6 {
    grid-column: 1;
  }

  .gallery-item span {
    opacity: 1;
  }

  .quiet-cta__inner {
    padding: 34px 24px;
    border-radius: 4px 35px 4px 4px;
  }

  .room-detail {
    margin-bottom: 28px;
  }

  .room-detail__media {
    min-height: 440px;
  }

  .room-detail__copy {
    padding: 35px 24px 40px;
  }

  .room-detail__book {
    align-items: stretch;
    flex-direction: column;
  }

  .room-detail__book .button {
    width: 100%;
  }

  .price-row {
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
    padding: 20px 2px;
  }

  .price-row > span:last-child {
    grid-column: 1 / -1;
  }

  .price-row--head {
    display: none;
  }

  .treatment-card__image {
    height: 360px;
  }

  .treatment-card__copy {
    min-height: 280px;
  }

  .massage-process__image {
    height: 530px;
  }

  .massage-process__quote {
    right: 10px;
    bottom: -30px;
    max-width: 245px;
    border-width: 6px;
  }

  .massage-process__copy {
    padding-top: 38px;
  }

  .health-note__inner {
    grid-template-columns: 1fr;
  }

  .discovery-card--wide {
    grid-column: 1;
  }

  .discovery-card {
    min-height: 320px;
    padding: 30px;
  }

  .host-tip__portrait {
    width: calc(100% - 20px);
    height: 500px;
    margin-inline: auto;
  }

  .host-tip__portrait > span {
    right: -10px;
  }

  .host-tip blockquote {
    font-size: 2.4rem;
  }

  .location-facts__grid {
    grid-template-columns: 1fr;
  }

  .location-facts__grid article {
    min-height: 150px;
  }

  .about-story__portrait {
    height: 560px;
  }

  .about-story__monogram {
    right: -4px;
    width: 95px;
    height: 95px;
  }

  .values-grid article {
    min-height: 330px;
  }

  .about-gallery__track {
    width: calc(100% - 16px);
    grid-template-columns: 1fr;
  }

  .about-gallery picture:nth-child(n) {
    height: 420px;
  }

  .contact-hero__grid {
    min-height: 0;
  }

  .contact-hero__copy {
    padding: 50px 0 0;
  }

  .contact-direct {
    flex-direction: column;
  }

  .contact-hero__image {
    height: 430px;
  }

  .request-form {
    padding: 36px 20px;
  }

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

  .form-grid__wide {
    grid-column: 1;
  }

  .request-aside__card {
    padding: 30px 24px;
  }

  .map-consent__art {
    min-height: 330px;
  }

  .map-consent__panel {
    padding: 30px 22px;
  }

  .legal-hero {
    padding: 180px 0 80px;
  }

  .legal-layout aside nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .transparency-grid article {
    min-height: 310px;
  }

  .transparency-grid .icon {
    margin-bottom: 40px;
  }

  .site-footer__lead {
    padding: 70px 0;
  }

  .site-footer__grid {
    padding: 60px 0;
  }

  .site-footer__bottom div {
    display: grid;
    gap: 8px;
  }

  .mobile-quick-book {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--clay-600);
    color: var(--white);
    box-shadow: 0 -8px 28px rgba(16, 40, 32, 0.18);
    font-size: 0.84rem;
    font-weight: 750;
  }

  .mobile-quick-book .icon {
    width: 20px;
  }

  .back-to-top {
    right: 12px;
    bottom: 74px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    transform: none;
    opacity: 1;
  }
}

@media print {
  .utility-bar,
  .site-header,
  .site-footer,
  .mobile-quick-book,
  .back-to-top,
  .booking-strip-wrap {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .legal-hero {
    padding: 40px 0;
    background: #fff;
    color: #000;
  }

  .legal-hero h1,
  .legal-hero p,
  .legal-hero .eyebrow {
    color: #000;
  }
}

/* Version 2 — premium hero carousel */
.hero-slider,
.hero-slider__track,
.hero-slide,
.hero-slide__media,
.hero-slide__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  margin: 0;
  transform: scale(1.045);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 7600ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 1100ms linear;
}

.hero-slide.is-active {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.hero-slide__media img {
  object-fit: cover;
  object-position: center 48%;
}

.hero-slide:nth-child(2) .hero-slide__media img {
  object-position: center 55%;
}

.hero-slide:nth-child(3) .hero-slide__media img {
  object-position: center 58%;
}

.hero-slide figcaption {
  position: absolute;
  z-index: 4;
  top: 155px;
  right: max(32px, calc((100vw - 1280px) / 2));
  display: flex;
  min-width: 255px;
  align-items: center;
  gap: 15px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(10, 30, 23, 0.28);
  box-shadow: 0 16px 45px rgba(8, 24, 18, 0.16);
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px) saturate(125%);
}

.hero-slide figcaption span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-slide figcaption strong {
  font-size: 0.71rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-slider__controls {
  position: absolute;
  z-index: 6;
  right: max(32px, calc((100vw - 1280px) / 2));
  bottom: 132px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(9, 29, 23, 0.48);
  box-shadow: 0 18px 55px rgba(7, 24, 18, 0.22);
  backdrop-filter: blur(18px) saturate(135%);
}

.hero-slider__controls > button {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.hero-slider__controls > button:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

.hero-slider__controls > button .icon {
  width: 18px;
}

.hero-slider__dots {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-inline: 5px;
}

.hero-slider__dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 240ms ease, background 240ms ease;
}

.hero-slider__dots button[aria-selected="true"] {
  width: 28px;
  background: var(--sand-200);
}

.hero-slider__progress {
  position: absolute;
  z-index: 7;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.hero-slider__progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--sand-300), #f3dfb7);
}

.hero-slider__progress span.is-running {
  animation: slider-progress var(--slider-duration, 6500ms) linear forwards;
}

@keyframes slider-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Minimum-stay welcome dialog */
body.modal-open {
  overflow: hidden;
}

.min-stay-modal {
  width: min(990px, calc(100vw - 34px));
  max-width: none;
  max-height: min(720px, calc(100svh - 34px));
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 32px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 48px 140px rgba(7, 24, 18, 0.38);
}

.min-stay-modal[open] {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1.12fr);
  animation: modal-arrive 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.min-stay-modal::backdrop {
  background:
    radial-gradient(circle at 20% 10%, rgba(223, 209, 191, 0.18), transparent 35%),
    rgba(6, 22, 16, 0.78);
  backdrop-filter: blur(12px) saturate(115%);
}

@keyframes modal-arrive {
  from { transform: translateY(28px) scale(0.975); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.min-stay-modal__close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(23, 57, 47, 0.14);
  border-radius: 50%;
  background: rgba(252, 250, 245, 0.88);
  color: var(--forest-950);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.min-stay-modal__close .icon {
  width: 19px;
}

.min-stay-modal__media {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: var(--forest-900);
}

.min-stay-modal__media picture,
.min-stay-modal__media img {
  width: 100%;
  height: 100%;
}

.min-stay-modal__media img {
  object-fit: cover;
  object-position: center;
}

.min-stay-modal__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 28, 21, 0.72));
  content: "";
}

.min-stay-modal__media > span {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: end;
  gap: 10px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.min-stay-modal__media > span strong {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.min-stay-modal__content {
  align-self: center;
  padding: 70px clamp(38px, 5vw, 70px) 58px;
}

.min-stay-modal__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--clay-600);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.min-stay-modal__eyebrow .icon {
  width: 18px;
}

.min-stay-modal h2 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 4.5vw, 4.6rem);
}

.min-stay-modal h2 em {
  color: var(--clay-600);
}

.min-stay-modal__content > p:not(.min-stay-modal__eyebrow) {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1rem;
}

.min-stay-modal__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}

.min-stay-modal__benefits span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--forest-700);
  font-size: 0.69rem;
  font-weight: 700;
}

.min-stay-modal__benefits .icon {
  width: 14px;
}

.min-stay-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.button--ghost-dark {
  border-color: var(--line);
  background: transparent;
  color: var(--forest-900);
}

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

.min-stay-modal__content > small {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
}

/* Local intent content */
.local-service {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 5%, rgba(223, 209, 191, 0.14), transparent 32%),
    var(--forest-950);
  color: var(--white);
}

.local-service__inner {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: clamp(50px, 8vw, 115px);
}

.local-service .eyebrow {
  color: var(--sand-300);
}

.local-service h2 {
  color: var(--white);
}

.local-service h2 em {
  color: var(--sand-200);
}

.local-service__copy p {
  color: rgba(255, 255, 255, 0.67);
}

.local-service__copy .lead {
  color: rgba(255, 255, 255, 0.86);
}

.local-service__facts {
  display: flex;
  flex-direction: column;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 35px 85px rgba(4, 18, 13, 0.3);
  backdrop-filter: blur(18px);
}

.local-service__facts article {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 23px 25px;
  background: rgba(255, 255, 255, 0.035);
}

.local-service__facts article > .icon {
  width: 26px;
  height: 26px;
  color: var(--sand-300);
}

.local-service__facts article div {
  display: flex;
  flex-direction: column;
}

.local-service__facts article strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.local-service__facts article span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.local-service__facts .button {
  margin: 22px;
}

.massage-faq {
  background: var(--sage-100);
}

.lodging-guide {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.65), transparent 48%),
    var(--sage-100);
}

.lodging-guide__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.lodging-guide__grid article {
  min-height: 270px;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(23, 57, 47, 0.1);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 22px 55px rgba(16, 40, 32, 0.06);
}

.lodging-guide__grid article:first-child {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.lodging-guide__grid article:last-child {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.lodging-guide__grid article > span {
  display: block;
  margin-bottom: 45px;
  color: var(--clay-600);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.lodging-guide__grid h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.lodging-guide__grid p,
.lodging-guide__answer p {
  color: var(--muted);
}

.lodging-guide__answer {
  display: grid;
  grid-template-columns: 0.52fr 1fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 14px;
  padding: 28px 34px;
  border-radius: var(--radius-sm);
  background: var(--forest-900);
  color: var(--white);
}

.lodging-guide__answer strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
}

.lodging-guide__answer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.lodging-guide__answer .button--text {
  color: var(--sand-200);
}

/* Version 2 — editorial footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 5%, rgba(151, 70, 64, 0.2), transparent 28%),
    radial-gradient(circle at 5% 75%, rgba(198, 208, 196, 0.09), transparent 30%),
    var(--forest-950);
}

.site-footer__glow {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.site-footer__glow::before,
.site-footer__glow::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: inherit;
  content: "";
}

.site-footer__glow::before {
  inset: 65px;
}

.site-footer__glow::after {
  inset: 130px;
}

.footer-stay-note {
  position: relative;
  z-index: 2;
  display: flex;
  width: var(--container);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-inline: auto;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-stay-note > div {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 55px);
}

.footer-stay-note span,
.footer-stay-note a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-stay-note span {
  color: var(--sand-300);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-stay-note span .icon,
.footer-stay-note a .icon {
  width: 17px;
}

.footer-stay-note strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 550;
}

.footer-stay-note a {
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 750;
}

.site-footer__lead {
  position: relative;
  z-index: 2;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  padding: clamp(72px, 8vw, 120px) 0 75px;
  border: 0;
}

.site-footer__lead-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.site-footer__lead-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer__lead-actions {
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 25px;
}

.site-footer__lead-media {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 160px 24px 24px 24px;
  box-shadow: 0 36px 100px rgba(3, 17, 12, 0.3);
}

.site-footer__lead-media picture,
.site-footer__lead-media img {
  width: 100%;
  height: 100%;
}

.site-footer__lead-media img {
  object-fit: cover;
}

.site-footer__lead-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 27, 20, 0.65), transparent 60%);
  content: "";
}

.site-footer__media-card {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
}

.site-footer__media-card span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer__media-card strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  text-align: right;
}

.site-footer__facts {
  position: relative;
  z-index: 2;
  display: grid;
  width: var(--container);
  grid-template-columns: repeat(4, 1fr);
  margin-inline: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.site-footer__facts > div {
  display: flex;
  min-height: 124px;
  align-items: center;
  gap: 15px;
  padding: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.site-footer__facts > div:last-child {
  border-right: 0;
}

.site-footer__facts strong {
  flex: 0 0 auto;
  color: var(--sand-200);
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.site-footer__facts span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.69rem;
  letter-spacing: 0.04em;
}

.site-footer__grid {
  position: relative;
  z-index: 2;
  grid-template-columns: 1.3fr 0.72fr 0.88fr 1.08fr;
  padding: 70px 0;
}

.footer-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.68rem;
}

.footer-open .icon {
  width: 15px;
  color: var(--sand-300);
}

.site-footer__bottom {
  position: relative;
  z-index: 2;
}

@media (max-width: 1120px) {
  .hero-slide figcaption {
    right: 24px;
  }

  .hero-slider__controls {
    right: 24px;
  }

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

  .site-footer__facts > div:nth-child(2) {
    border-right: 0;
  }

  .site-footer__facts > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .lodging-guide__answer {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .lodging-guide__answer .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 920px) {
  .hero-slide figcaption {
    top: 132px;
    right: 16px;
    min-width: auto;
  }

  .hero-slider__controls {
    right: 16px;
    bottom: 126px;
  }

  .min-stay-modal[open] {
    grid-template-columns: 0.76fr 1.24fr;
  }

  .min-stay-modal__media {
    min-height: 570px;
  }

  .min-stay-modal__content {
    padding-inline: 34px;
  }

  .local-service__inner,
  .site-footer__lead {
    grid-template-columns: 1fr;
  }

  .local-service__facts {
    width: min(620px, 100%);
  }

  .lodging-guide__grid {
    grid-template-columns: 1fr;
  }

  .lodging-guide__grid article {
    min-height: 0;
    border-radius: var(--radius-sm) !important;
  }

  .lodging-guide__grid article > span {
    margin-bottom: 24px;
  }

  .site-footer__lead-media {
    min-height: 410px;
    border-radius: 110px 24px 24px;
  }

  .footer-stay-note > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

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

@media (max-width: 640px) {
  .hero-slide__media img,
  .hero-slide:nth-child(2) .hero-slide__media img,
  .hero-slide:nth-child(3) .hero-slide__media img {
    object-position: 60% center;
  }

  .hero-slide figcaption {
    top: 126px;
    right: 12px;
    padding: 8px 11px;
  }

  .hero-slide figcaption span {
    width: 28px;
    height: 28px;
  }

  .hero-slide figcaption strong {
    max-width: 120px;
    font-size: 0.6rem;
    line-height: 1.25;
  }

  .hero-slider__controls {
    right: 14px;
    bottom: 122px;
    gap: 5px;
    padding: 6px;
  }

  .hero-slider__controls > button {
    width: 35px;
    height: 35px;
  }

  .hero-slider__dots {
    gap: 5px;
    padding-inline: 2px;
  }

  .hero-slider__dots button {
    width: 6px;
    height: 6px;
  }

  .hero-slider__dots button[aria-selected="true"] {
    width: 20px;
  }

  .min-stay-modal {
    width: calc(100vw - 18px);
    max-height: calc(100svh - 18px);
    overflow-y: auto;
    border-radius: 23px;
  }

  .min-stay-modal[open] {
    display: block;
  }

  .min-stay-modal__close {
    top: 12px;
    right: 12px;
  }

  .min-stay-modal__media {
    min-height: 210px;
    height: 30svh;
    max-height: 260px;
  }

  .min-stay-modal__media > span {
    bottom: 18px;
    left: 20px;
  }

  .min-stay-modal__media > span strong {
    font-size: 3.2rem;
  }

  .min-stay-modal__content {
    padding: 31px 22px 27px;
  }

  .min-stay-modal__eyebrow {
    margin-bottom: 15px;
    font-size: 0.61rem;
  }

  .min-stay-modal h2 {
    margin-bottom: 15px;
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .min-stay-modal__content > p:not(.min-stay-modal__eyebrow) {
    margin-bottom: 19px;
    font-size: 0.91rem;
  }

  .min-stay-modal__benefits {
    margin-bottom: 21px;
  }

  .min-stay-modal__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .min-stay-modal__actions .button {
    width: 100%;
  }

  .local-service__inner {
    gap: 42px;
  }

  .local-service__facts article {
    padding: 19px;
  }

  .lodging-guide__answer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 25px;
  }

  .lodging-guide__answer .button {
    grid-column: 1;
  }

  .footer-stay-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    padding: 19px 0;
  }

  .footer-stay-note strong {
    line-height: 1.45;
  }

  .site-footer__lead {
    padding: 68px 0 52px;
  }

  .site-footer__lead h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .site-footer__lead-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__lead-media {
    min-height: 330px;
    border-radius: 76px 18px 18px;
  }

  .site-footer__facts {
    grid-template-columns: 1fr;
  }

  .site-footer__facts > div {
    min-height: 86px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .site-footer__facts > div:last-child {
    border-bottom: 0;
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transform: none;
  }

  .hero-slider__progress {
    display: none;
  }
}

@media print {
  .min-stay-modal,
  .hero-slider__controls,
  .hero-slider__progress {
    display: none !important;
  }
}

/* Version 3 — viewport-safe dialog and image focal-point system */
picture[data-image] {
  position: relative;
  overflow: hidden;
}

picture[data-image] > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

picture[data-image="tannenhof-aussen"] > img {
  object-position: center 56%;
}

picture[data-image="zimmer-doppel"] > img,
picture[data-image="zimmer-einzel"] > img,
picture[data-image="zimmer-komfort"] > img {
  object-position: center 52%;
}

picture[data-image="susanne-gatzen"] > img {
  object-position: center 28%;
}

picture[data-image="gastgeberin-gaeste"] > img,
picture[data-image="ankommen"] > img {
  object-position: center 32%;
}

picture[data-image="fruehstueck-terrasse"] > img,
picture[data-image="sonnenterrasse"] > img {
  object-position: center 48%;
}

picture[data-image="massage-aromaoel"] > img,
picture[data-image="massage-fussreflex"] > img,
picture[data-image="massage-gesicht"] > img,
picture[data-image="massage-hot-stone"] > img,
picture[data-image="massage-kopf"] > img,
picture[data-image="massage-ruecken"] > img {
  object-position: center 38%;
}

.hero-slide picture[data-image="tannenhof-aussen"] > img {
  object-position: center 55%;
}

.hero-slide picture[data-image="massage-ruecken"] > img {
  object-position: center 43%;
}

.hero-slide picture[data-image="sonnenterrasse"] > img {
  object-position: center 50%;
}

.hero-slide figcaption {
  max-width: min(390px, calc(100% - 32px));
}

.hero-slide figcaption strong,
.room-card__overlay,
.room-card__overlay > div,
.room-card__overlay p,
.massage-process__quote,
.fact-card,
.min-stay-modal__media > span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.room-card__price {
  flex: 0 0 auto;
}

.min-stay-modal__media > span {
  right: 24px;
  bottom: 28px;
  line-height: 1.25;
}

.min-stay-modal__media > span strong {
  flex: 0 0 auto;
  line-height: 0.9;
}

@media (min-width: 641px) {
  .min-stay-modal {
    height: min(744px, calc(100svh - 28px));
    max-height: none;
  }

  .min-stay-modal[open] {
    grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
    grid-template-rows: minmax(0, 1fr);
  }

  .min-stay-modal__media {
    height: 100%;
    min-height: 0;
  }

  .min-stay-modal__content {
    display: flex;
    min-width: 0;
    min-height: 0;
    max-height: 100%;
    align-self: stretch;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }

  .min-stay-modal__content > * {
    flex: 0 0 auto;
  }
}

@media (min-width: 641px) and (max-width: 920px) {
  .min-stay-modal[open] {
    grid-template-columns: minmax(230px, 0.75fr) minmax(0, 1.25fr);
  }
}

@media (min-width: 641px) and (max-height: 820px) {
  .min-stay-modal__content {
    padding: 42px clamp(30px, 4vw, 52px) 32px;
  }

  .min-stay-modal__eyebrow {
    margin-bottom: 16px;
  }

  .min-stay-modal h2 {
    margin-bottom: 17px;
    font-size: clamp(2.55rem, 4vw, 4rem);
  }

  .min-stay-modal__content > p:not(.min-stay-modal__eyebrow) {
    margin-bottom: 19px;
    line-height: 1.55;
  }

  .min-stay-modal__benefits {
    margin-bottom: 21px;
  }

  .min-stay-modal__actions {
    margin-bottom: 13px;
  }
}

@media (min-width: 641px) and (max-height: 680px) {
  .min-stay-modal__content {
    justify-content: flex-start;
    padding-top: 34px;
    padding-bottom: 26px;
  }

  .min-stay-modal h2 {
    font-size: clamp(2.25rem, 3.6vw, 3.35rem);
  }

  .min-stay-modal__benefits span {
    padding-block: 6px;
  }

  .min-stay-modal__actions .button {
    min-height: 48px;
  }
}

@media (max-width: 640px) {
  .hero-slide picture[data-image="tannenhof-aussen"] > img,
  .hero-slide picture[data-image="sonnenterrasse"] > img {
    object-position: 58% center;
  }

  .hero-slide picture[data-image="massage-ruecken"] > img {
    object-position: center 38%;
  }

  .min-stay-modal__media > span {
    right: 18px;
    bottom: 17px;
    left: 20px;
  }

  .min-stay-modal__media {
    min-height: 190px;
    height: 24svh;
    max-height: 220px;
  }

  .min-stay-modal__content {
    padding: 25px 22px 24px;
    overflow: visible;
  }

  .min-stay-modal__eyebrow {
    margin-bottom: 12px;
  }

  .min-stay-modal h2 {
    margin-bottom: 12px;
    font-size: clamp(2.05rem, 10vw, 2.8rem);
  }

  .min-stay-modal__content > p:not(.min-stay-modal__eyebrow) {
    margin-bottom: 15px;
    font-size: 0.87rem;
    line-height: 1.5;
  }

  .min-stay-modal__benefits {
    gap: 6px;
    margin-bottom: 17px;
  }

  .min-stay-modal__benefits span {
    padding: 7px 9px;
    font-size: 0.63rem;
  }

  .min-stay-modal__actions {
    gap: 8px;
    margin-bottom: 11px;
  }

  .min-stay-modal__actions .button {
    min-height: 50px;
  }

  .min-stay-modal__content > small {
    font-size: 0.66rem;
    line-height: 1.4;
  }

  .room-card__overlay {
    max-width: calc(100% - 40px);
  }

  .room-card__overlay p {
    max-width: 29ch;
  }

  .contact-hero__image {
    width: 100%;
  }
}

/* Version 4 — WordPress booking suite, consent center and HUGETEC credit */
.booking-journey {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(223, 209, 191, 0.13), transparent 34%),
    var(--forest-950);
  color: var(--white);
}

.booking-journey__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: var(--container);
  margin-inline: auto;
}

.booking-journey article {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 30px clamp(20px, 3vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.booking-journey article:last-child {
  border-right: 0;
}

.booking-journey article > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(223, 209, 191, 0.34);
  border-radius: 50%;
  color: var(--sand-300);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.booking-journey strong,
.booking-journey small {
  display: block;
}

.booking-journey strong {
  margin-bottom: 3px;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.booking-journey small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.request-section--premium {
  overflow: clip;
  background:
    radial-gradient(circle at 4% 5%, rgba(179, 83, 77, 0.08), transparent 30%),
    linear-gradient(180deg, #f8f3eb 0%, var(--sand-100) 100%);
}

.request-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(310px, 0.58fr);
  align-items: start;
  gap: clamp(24px, 3vw, 40px);
}

.booking-panel {
  overflow: hidden;
  border: 1px solid rgba(23, 57, 47, 0.1);
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(16, 40, 32, 0.13);
}

.booking-panel .request-form__heading {
  max-width: 760px;
}

.booking-panel .request-form__heading > p:last-child {
  max-width: 68ch;
}

.booking-notice {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: -6px 0 38px;
  padding: 18px 20px;
  border: 1px solid rgba(151, 70, 64, 0.15);
  border-radius: 16px;
  background: var(--clay-100);
  color: var(--clay-700);
}

.booking-notice > .icon {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
}

.booking-notice strong,
.booking-notice span {
  display: block;
}

.booking-notice strong {
  font-size: 0.85rem;
}

.booking-notice span {
  margin-top: 2px;
  color: #725b55;
  font-size: 0.72rem;
}

.booking-fieldset {
  min-width: 0;
  margin: 0 0 38px;
  padding: 0;
  border: 0;
}

.booking-fieldset legend {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 22px;
  padding: 0 0 15px;
  border-bottom: 1px solid var(--line);
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.booking-fieldset legend span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest-900);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.7rem;
}

.booking-panel .form-grid {
  margin-bottom: 0;
}

.booking-panel .form-grid input,
.booking-panel .form-grid select,
.booking-panel .form-grid textarea {
  min-height: 58px;
  padding: 15px 17px;
  border-radius: 13px;
  background-color: #fdfbf7;
}

.booking-panel .form-grid textarea {
  min-height: 145px;
}

.booking-panel .form-grid label > small {
  align-self: flex-end;
  color: var(--muted);
  font-size: 0.67rem;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.booking-submit-row {
  display: flex;
  align-items: center;
  gap: 22px;
}

.booking-submit-row .booking-submit {
  flex: 0 0 auto;
  min-width: 260px;
  border: 0;
  cursor: pointer;
}

.booking-submit[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.booking-submit-row > p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.45;
}

.booking-submit-row > p .icon {
  flex: 0 0 auto;
  width: 18px;
  color: var(--forest-700);
}

.form-status.is-error {
  padding: 12px 14px;
  border-radius: 10px;
  background: #fff1ef;
  color: #9a3028;
}

.form-status.is-success {
  color: var(--forest-700);
}

.booking-success {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(49, 93, 77, 0.18);
  border-radius: 24px;
  background: linear-gradient(145deg, #eff5ef, #fff);
}

.booking-success[hidden] {
  display: none;
}

.booking-success__icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest-900);
  color: var(--white);
}

.booking-success__icon .icon {
  width: 28px;
}

.booking-success small,
.booking-success strong {
  color: var(--forest-700);
}

.booking-success h3 {
  margin: 5px 0 10px;
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.booking-success p {
  margin-bottom: 10px;
  color: var(--muted);
}

.booking-panel.is-complete > :not(.booking-success):not(.form-status) {
  display: none;
}

.booking-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 20px;
}

.booking-summary {
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0, rgba(223, 209, 191, 0.16), transparent 38%),
    var(--forest-950);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.booking-summary__eyebrow {
  color: var(--sand-300);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.booking-summary h2 {
  margin: 10px 0 28px;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 2.9rem);
}

.booking-summary__dates {
  display: grid;
  grid-template-columns: 1fr 26px 1fr;
  align-items: center;
  gap: 9px;
  padding: 18px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.13);
}

.booking-summary__dates > span {
  color: var(--sand-300);
}

.booking-summary__dates small,
.booking-summary__dates strong {
  display: block;
}

.booking-summary__dates small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.booking-summary__dates strong {
  font-size: 0.82rem;
}

.booking-summary dl {
  margin: 18px 0;
}

.booking-summary dl > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-summary dt {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.7rem;
}

.booking-summary dd {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  text-align: right;
}

.booking-summary__status {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 13px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--sand-300);
  font-size: 0.7rem;
  font-weight: 700;
}

.booking-summary__status.is-valid {
  background: rgba(150, 170, 153, 0.18);
  color: #dce9dc;
}

.booking-summary__status .icon {
  width: 18px;
}

.booking-summary > p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.66rem;
  line-height: 1.55;
}

.booking-contact-card,
.request-aside__card--massage {
  border-radius: 24px;
}

.cookie-consent {
  position: fixed;
  z-index: 1200;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 3vw, 38px);
  width: min(1180px, calc(100vw - 48px));
  margin-inline: auto;
  padding: 24px clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 0, rgba(223, 209, 191, 0.12), transparent 38%),
    rgba(16, 40, 32, 0.985);
  box-shadow: 0 34px 100px rgba(4, 20, 15, 0.42);
  color: var(--white);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 280ms ease, transform 280ms ease;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-consent__mark {
  display: grid;
  width: 68px;
  height: 68px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: #c93b3f;
  box-shadow: 0 9px 28px rgba(0, 0, 0, 0.24);
}

.cookie-consent__mark img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.cookie-consent__eyebrow {
  color: var(--sand-300);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cookie-consent h2 {
  margin: 5px 0 7px;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.cookie-consent p {
  max-width: 76ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.73rem;
  line-height: 1.55;
}

.cookie-consent__links {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.cookie-consent__links a,
.cookie-consent__links button,
.footer-cookie-link {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-size: 0.68rem;
  cursor: pointer;
}

.cookie-consent__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  min-width: 190px;
}

.cookie-consent__actions .button {
  width: 100%;
  min-height: 47px;
  border: 0;
  cursor: pointer;
}

.cookie-consent__actions .button--ghost-dark {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.cookie-preferences {
  width: min(620px, calc(100vw - 28px));
  max-height: calc(100svh - 28px);
  padding: clamp(28px, 5vw, 52px);
  border: 0;
  border-radius: 28px;
  background: var(--cream);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

.cookie-preferences::backdrop {
  background: rgba(7, 22, 17, 0.72);
  backdrop-filter: blur(8px);
}

.cookie-preferences h2 {
  margin: 8px 36px 26px 0;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}

.cookie-preferences__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.cookie-preferences__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.cookie-preferences__row strong,
.cookie-preferences__row p {
  display: block;
}

.cookie-preferences__row p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.cookie-preferences__row > span {
  color: var(--forest-700);
  font-size: 0.68rem;
  font-weight: 750;
}

.cookie-preferences__row input {
  width: 44px;
  height: 24px;
  accent-color: var(--forest-700);
}

.cookie-preferences > .button {
  width: 100%;
  margin-top: 20px;
  border: 0;
  cursor: pointer;
}

.hugetec-promo {
  position: fixed;
  z-index: 1150;
  right: 24px;
  bottom: 24px;
  width: min(390px, calc(100vw - 32px));
  padding: 13px;
  border: 1px solid rgba(23, 57, 47, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 70px rgba(16, 40, 32, 0.24);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  pointer-events: none;
  transition: opacity 250ms ease, transform 250ms ease;
}

.hugetec-promo[hidden] {
  display: none;
}

.hugetec-promo.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hugetec-promo > button {
  position: absolute;
  z-index: 2;
  top: 8px;
  right: 8px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--forest-900);
  cursor: pointer;
}

.hugetec-promo > button .icon {
  width: 14px;
}

.hugetec-promo > a {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 14px;
  padding-right: 18px;
}

.hugetec-promo__mark {
  display: grid;
  width: 54px;
  height: 54px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(214, 164, 63, 0.42);
  border-radius: 50%;
  background: var(--forest-950);
  box-shadow: 0 7px 24px rgba(16, 40, 32, 0.2);
}

.hugetec-promo__mark img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.hugetec-promo small,
.hugetec-promo strong,
.hugetec-promo em {
  display: block;
}

.hugetec-promo small {
  color: var(--clay-600);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hugetec-promo strong {
  margin: 2px 0;
  color: var(--forest-950);
  font-size: 0.76rem;
  line-height: 1.35;
}

.hugetec-promo em {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--forest-700);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 700;
}

.hugetec-promo em .icon {
  width: 13px;
}

.hugetec-footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 4px;
  padding: 3px 9px 3px 3px;
  border: 1px solid rgba(223, 209, 191, 0.24);
  border-radius: 999px;
  color: var(--sand-200);
  font-weight: 750;
  vertical-align: middle;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.hugetec-footer-credit:hover {
  border-color: rgba(223, 209, 191, 0.52);
  background: rgba(255, 255, 255, 0.06);
}

.hugetec-footer-credit img {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.footer-cookie-link {
  color: rgba(255, 255, 255, 0.56);
}

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

  .booking-sidebar {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-summary {
    grid-row: span 2;
  }

  .cookie-consent {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .cookie-consent__mark {
    width: 58px;
    height: 58px;
  }

  .cookie-consent__actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .booking-journey__inner {
    grid-template-columns: 1fr;
  }

  .booking-journey article {
    padding: 18px 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .booking-journey article:last-child {
    border-bottom: 0;
  }

  .booking-panel {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .booking-panel .request-form__heading h2 {
    font-size: clamp(2.4rem, 12vw, 3.3rem);
  }

  .booking-notice {
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .booking-panel .form-grid {
    grid-template-columns: 1fr;
  }

  .booking-panel .form-grid__wide {
    grid-column: auto;
  }

  .booking-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-submit-row .booking-submit {
    width: 100%;
    min-width: 0;
  }

  .booking-sidebar {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    grid-row: auto;
  }

  .booking-success {
    grid-template-columns: 1fr;
  }

  .cookie-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: 1fr;
    gap: 13px;
    width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
    padding: 22px;
    overflow-y: auto;
    border-radius: 22px;
  }

  .cookie-consent__mark {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }

  .cookie-consent h2 {
    font-size: 1.5rem;
  }

  .cookie-consent__actions {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .cookie-preferences {
    padding: 30px 22px;
  }

  .cookie-preferences__row {
    gap: 12px;
  }

  .hugetec-promo {
    right: 12px;
    bottom: 84px;
    left: 12px;
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent,
  .hugetec-promo {
    transition: none;
  }
}
