:root {
  color-scheme: only light;
  --forest: #17332b;
  --forest-deep: #0d211c;
  --forest-soft: #315349;
  --cream: #f5f0e6;
  --paper: #fffdf8;
  --sand: #dfd3bb;
  --coral: #e7573e;
  --coral-dark: #ca432e;
  --ink: #17201d;
  --muted: #66726d;
  --white: #ffffff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(16, 35, 29, 0.16);
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  max-width: 100%;
  overflow-x: hidden;
  background-color: var(--paper);
}

html.language-changing {
  scroll-behavior: auto;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  overflow-anchor: none;
}

body.dialog-open {
  overflow: hidden;
}

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

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

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

.section {
  padding: 124px 0;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--forest);
  border-radius: 6px;
  transform: translateY(-150%);
}

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

.eyebrow {
  margin: 0 0 20px;
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #f7b09e;
}

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

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

h2 {
  margin-bottom: 32px;
  font-size: clamp(2.75rem, 5.4vw, 5.2rem);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
.gallery-item:focus-visible,
.menu-toggle:focus-visible,
.map-link:focus-visible {
  outline: 3px solid #ffb19f;
  outline-offset: 4px;
}

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

.button-primary:hover {
  background: var(--coral-dark);
}

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

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

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

.button-small {
  min-height: 42px;
  padding-inline: 20px;
  font-size: 0.76rem;
}

.button-tour-nav {
  gap: 8px;
  padding-inline: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.58);
  white-space: nowrap;
}

.button-tour-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
}

.tour-button-icon {
  font-size: 0.68em;
  line-height: 1;
}

.tour-label-short {
  display: none;
}

.roomtour-floating {
  display: none;
}

.button-large {
  min-width: 174px;
  min-height: 58px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  transition: height 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(15, 34, 29, 0.96);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.9rem;
  font-weight: 720;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  font-size: 1rem;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.language-switcher {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 2px;
  padding: 3px 4px 3px 8px;
  background: rgba(8, 28, 21, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.language-icon {
  width: 17px;
  height: 17px;
  margin-right: 2px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  opacity: 0.74;
}

.language-button {
  display: grid;
  width: 34px;
  height: 30px;
  place-items: center;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.language-button:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.language-button.is-active {
  color: var(--forest-deep);
  background: var(--white);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.language-button:focus-visible {
  outline: 3px solid #ffb19f;
  outline-offset: 3px;
}

.site-nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-decoration: none;
}

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

.site-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 820px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.018);
  animation: hero-settle 1.4s cubic-bezier(.2,.7,.2,1) forwards;
}

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

.hero-shade {
  background: linear-gradient(90deg, rgba(5, 20, 16, 0.82) 0%, rgba(5, 20, 16, 0.54) 43%, rgba(5, 20, 16, 0.12) 75%),
              linear-gradient(0deg, rgba(6, 24, 18, 0.42), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding-top: 70px;
}

.hero-eyebrow {
  color: #ffd0c1;
}

.hero h1 {
  display: flex;
  width: 100%;
  max-width: 1120px;
  height: clamp(270px, 27vw, 390px);
  flex: 0 0 clamp(270px, 27vw, 390px);
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 0 30px;
  font-size: clamp(4.8rem, 7.8vw, 7rem);
  line-height: 1.08;
  text-wrap: balance;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.heading-line {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 54px;
}

.hero-facts {
  display: flex;
  gap: 56px;
  margin: 0;
}

.hero-facts div {
  position: relative;
}

.hero-facts div + div::before {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: -28px;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
  content: "";
}

.hero-facts dt {
  font-family: var(--serif);
  font-size: 1.72rem;
  line-height: 1.1;
}

.hero-facts dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 42px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: right center;
}

.scroll-line {
  width: 58px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.45);
}

.scroll-line::after {
  display: block;
  width: 50%;
  height: 100%;
  background: var(--white);
  content: "";
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  from { transform: translateX(-110%); }
  to { transform: translateX(210%); }
}

.intro {
  display: flex;
  min-height: 650px;
  align-items: center;
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 100px;
  align-items: start;
}

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

.intro .section-heading h2 {
  font-size: clamp(3rem, 4.1vw, 3.7rem);
  line-height: 1.02;
}

.intro-copy {
  padding-top: 39px;
  color: var(--muted);
  font-size: 1rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.intro-copy .lead-copy {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.6;
}

.feature-strip {
  padding: 68px 0;
  color: var(--white);
  background: var(--forest);
}

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

.feature {
  display: flex;
  min-height: 188px;
  align-items: flex-start;
  flex-direction: column;
  padding: 0 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.feature:first-child {
  padding-left: 0;
  border-left: 0;
}

.feature-number {
  display: block;
  margin-bottom: 37px;
  color: #e6a394;
  font-family: var(--serif);
  font-size: 0.78rem;
}

.feature h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  white-space: nowrap;
}

.feature p {
  min-height: 4.95em;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.86rem;
  line-height: 1.65;
}

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

.gallery-heading {
  display: grid;
  min-height: 175px;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: end;
  margin-bottom: 52px;
}

.gallery-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(3.2rem, 5vw, 4.6rem);
  line-height: 1;
}

.gallery-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 278px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

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

.gallery-item-large {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(4, 18, 14, 0.7));
  content: "";
  opacity: 0.7;
  transition: opacity 240ms ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.65,.2,1);
}

.gallery-item-large img {
  object-position: 54% center;
}

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

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

.gallery-item span {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  z-index: 1;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: left;
  text-transform: uppercase;
}

.sunset-story {
  position: relative;
  height: min(720px, 50vw);
  min-height: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.sunset-story > img,
.sunset-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sunset-story > img {
  width: 160%;
  max-width: none;
  object-fit: cover;
  object-position: left 47%;
}

.sunset-overlay {
  background: linear-gradient(90deg, rgba(8, 24, 18, 0.78), rgba(8, 24, 18, 0.04) 70%), linear-gradient(0deg, rgba(8, 24, 18, 0.35), transparent);
}

.sunset-content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(99.6px, calc(60px + 4.41vw), 132px);
}

.sunset-content .eyebrow {
  color: #ffd0c1;
}

.sunset-content blockquote {
  max-width: 1000px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.75rem, 4.9vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.rhythm-line {
  display: block;
  white-space: nowrap;
}

.rhythm-line + .rhythm-line {
  margin-top: 20px;
}

.comfort {
  display: flex;
  min-height: 1054px;
  align-items: center;
  background: var(--paper);
}

.comfort-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 100px;
  align-items: center;
}

.comfort-visual {
  position: relative;
}

.comfort-visual img {
  width: 100%;
  min-height: 650px;
  object-fit: cover;
}

.image-note {
  position: absolute;
  right: -42px;
  bottom: 34px;
  max-width: 205px;
  padding: 18px 22px;
  color: var(--white);
  background: var(--forest);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.5;
}

.comfort-copy h2 {
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
}

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

.check-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid #e2ded5;
}

.check {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
  font-size: 0.72rem;
}

.check-list strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
}

.check-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.host-section {
  display: flex;
  min-height: 739px;
  align-items: center;
  color: var(--white);
  background: var(--forest-deep);
}

.host-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.host-copy h2 {
  min-height: 3.05em;
  font-size: clamp(3.2rem, 4.6vw, 4rem);
  line-height: 1;
}

.host-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
}

.host-copy blockquote {
  margin: 34px 0 0;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.92);
  border-left: 2px solid var(--coral);
  font-family: var(--serif);
  font-size: 1.23rem;
  font-style: italic;
  line-height: 1.55;
}

.host-photo {
  position: relative;
  height: auto;
  aspect-ratio: 1.22 / 1;
  overflow: hidden;
  margin: 0;
}

.host-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.host-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
}

.terms {
  display: flex;
  min-height: 865px;
  align-items: center;
  background: var(--cream);
}

.terms-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: end;
  margin-bottom: 52px;
}

.terms-heading .eyebrow {
  margin-bottom: 10px;
}

.terms-heading h2 {
  font-size: clamp(2.8rem, 4.3vw, 4.1rem);
  white-space: nowrap;
}

.terms-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
}

.price-card,
.term-card {
  min-height: 245px;
  padding: 34px;
}

.price-card {
  grid-row: span 2;
  color: var(--white);
  background: var(--coral);
}

.price-card > p:first-child {
  margin-bottom: 55px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  margin-bottom: 26px;
}

.price span,
.price small {
  display: block;
}

.price span {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.price small {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-note {
  max-width: 280px;
  margin-bottom: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.87rem;
}

.fx-reference {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.fx-reference span {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.02em;
}

.fx-note {
  max-width: 320px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.64rem;
  line-height: 1.45;
}

.fx-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin-top: 9px;
}

.fx-sources a {
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.fx-sources a:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

.term-card {
  display: flex;
  gap: 22px;
  background: var(--paper);
}

.term-card:last-child {
  grid-column: span 2;
}

.term-icon {
  display: grid;
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  place-items: center;
  color: var(--coral);
  border: 1px solid var(--sand);
  border-radius: 50%;
}

.term-card h3 {
  margin: 8px 0 12px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.term-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.location {
  display: flex;
  min-height: 840px;
  align-items: center;
  background: var(--paper);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 86px;
  align-items: center;
}

.location-mobile-label {
  display: none;
}

.location-map {
  position: relative;
  height: 520px;
  box-shadow: var(--shadow);
}

.location-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 8px 11px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
  font-weight: 700;
}

.map-region {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 12px 16px;
  color: var(--white);
  background: rgba(23, 51, 43, 0.94);
  font-size: 0.74rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(14, 34, 28, 0.18);
}

.location-copy h2 {
  font-size: clamp(2.9rem, 5vw, 5rem);
}

.location-copy > p:not(.eyebrow):not(.coordinates) {
  margin-bottom: 32px;
  color: var(--muted);
}

.map-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  color: var(--forest);
  border-top: 1px solid #d8d4cb;
  border-bottom: 1px solid #d8d4cb;
  font-size: 0.87rem;
  font-weight: 750;
  text-decoration: none;
}

.map-link span:last-child {
  color: var(--coral);
  font-size: 1.3rem;
  transition: transform 180ms ease;
}

.map-link:hover span:last-child {
  transform: translate(3px, -3px);
}

.coordinates {
  margin: 13px 0 0;
  color: #919b96;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.cta-section {
  position: relative;
  min-height: 650px;
  color: var(--white);
  background: var(--forest-deep);
}

.cta-section > img,
.cta-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cta-section > img {
  object-fit: cover;
}

.cta-overlay {
  background: rgba(7, 25, 19, 0.7);
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 650px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding-right: 120px;
  text-align: center;
}

.cta-content h2 {
  max-width: 850px;
  min-height: 3em;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 6vw, 5.6rem);
  line-height: 0.98;
}

.cta-content > p:not(.eyebrow) {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  position: relative;
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.62);
  background: var(--forest-deep);
  border-top: 0;
  box-shadow: 0 -2px 0 var(--forest-deep);
  font-size: 0.73rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-inner p {
  margin: 0;
}

.footer-inner p span {
  margin-inline: 6px;
  color: var(--coral);
}

dialog {
  border: 0;
}

dialog::backdrop {
  background: rgba(6, 18, 15, 0.87);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.dialog-close-dark {
  color: var(--ink);
  background: transparent;
  border-color: #d8d4cb;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 30px 96px;
  color: var(--white);
  background: rgba(8, 22, 17, 0.96);
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 50px;
  align-items: center;
  gap: 20px;
}

.lightbox figure {
  display: flex;
  min-width: 0;
  height: calc(100vh - 60px);
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: 0;
}

.lightbox figure img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
}

.contact-dialog {
  width: min(520px, calc(100vw - 32px));
  padding: 54px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-dialog h2 {
  margin-bottom: 22px;
  font-size: 3.2rem;
}

.contact-dialog > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--muted);
}

.contact-number {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 30px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 7vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.contact-number:hover {
  color: var(--coral);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-callback {
  flex: 1 0 100%;
}

.button-whatsapp {
  color: var(--white);
  background: #167f52;
}

.button-whatsapp:hover {
  background: #116640;
}

.roomtour-request-dialog {
  width: min(760px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  padding: 50px 54px 46px;
  overflow-y: auto;
  overflow-anchor: none;
  color: var(--ink);
  background: var(--paper);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.roomtour-request-dialog h2 {
  max-width: 610px;
  margin-bottom: 18px;
  padding-right: 34px;
  font-size: clamp(2.45rem, 5.2vw, 4.2rem);
  line-height: 0.98;
}

.lead-request-content[hidden],
.lead-success[hidden] {
  display: none;
}

.lead-success {
  min-height: clamp(300px, 55dvh, 520px);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 28px 0;
  text-align: center;
}

.lead-success-mark {
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
}

.roomtour-request-dialog .lead-success-message {
  max-width: 620px;
  padding: 0;
  margin: 0;
  color: var(--forest-deep);
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 1.04;
  text-wrap: balance;
}

.roomtour-intro {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
}

.roomtour-form {
  position: relative;
  display: grid;
  gap: 24px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field,
.contact-methods {
  min-width: 0;
}

.form-field label,
.contact-methods legend {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 780;
  letter-spacing: 0.04em;
}

.form-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cfcac0;
  border-radius: 9px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.form-field input::placeholder {
  color: #8b928e;
}

.form-field input:focus {
  border-color: var(--forest-soft);
  box-shadow: 0 0 0 4px rgba(49, 83, 73, 0.13);
}

.contact-methods {
  padding: 0;
  margin: 0;
  border: 0;
}

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

.method-option {
  position: relative;
  min-width: 0;
}

.method-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.method-option label {
  display: flex;
  min-height: 78px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 9px 5px;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  background: var(--white);
  border: 1px solid #d8d4cb;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.method-option label:hover {
  border-color: var(--forest-soft);
  transform: translateY(-1px);
}

.method-option input:focus-visible + label {
  outline: 3px solid #ffb19f;
  outline-offset: 2px;
}

.method-option input:checked + label {
  color: var(--forest-deep);
  background: #edf4ef;
  border-color: var(--forest);
  box-shadow: inset 0 0 0 1px var(--forest);
}

.method-icon {
  display: grid;
  min-width: 32px;
  height: 32px;
  place-items: center;
  padding-inline: 5px;
  color: var(--white);
  background: var(--forest-soft);
  border-radius: 9px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.method-whatsapp { background: #198754; }
.method-telegram { background: #2489c5; }
.method-email { color: var(--forest); background: #e8dfcd; }
.method-messenger { background: #1769e0; }
.method-instagram { background: linear-gradient(135deg, #7047eb, #e54576 55%, #f2a33a); }
.method-line { background: #18a755; }
.method-signal { background: #356be3; border-radius: 50%; }
.method-viber { background: #7360aa; border-radius: 50%; }
.field-hint,
.field-error {
  display: block;
  margin-top: 7px;
  font-size: 0.72rem;
  line-height: 1.45;
}

.field-hint {
  color: var(--muted);
}

.field-error {
  display: none;
  color: #b52e2e;
  font-weight: 720;
}

.form-field.is-invalid input {
  background: #fff8f7;
  border-color: #c83d36;
  box-shadow: 0 0 0 3px rgba(200, 61, 54, 0.11);
}

.contact-methods.is-invalid .method-grid {
  padding: 5px;
  margin: -5px;
  background: #fff8f7;
  border: 1px solid #c83d36;
  border-radius: 13px;
}

.form-field.is-invalid .field-error,
.contact-methods.is-invalid .field-error {
  display: block;
}

.roomtour-privacy,
.roomtour-send-note,
.roomtour-status {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
}

.roomtour-privacy,
.roomtour-send-note {
  color: var(--muted);
}

.roomtour-submit {
  width: fit-content;
}

.roomtour-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.roomtour-status {
  min-height: 1.5em;
  color: #116640;
  font-weight: 750;
}

.roomtour-status.is-error {
  color: #b52e2e;
}

.roomtour-status.is-success {
  color: #116640;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 750ms ease, transform 750ms cubic-bezier(.2,.65,.2,1);
}

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

@media (max-width: 1024px) {
  :root {
    --shell: min(calc(100% - 48px), 900px);
  }

  .section {
    padding: 104px 0;
  }

  .site-header {
    padding-inline: 24px;
  }

  .header-tools {
    gap: 12px;
  }

  .site-nav {
    gap: 18px;
  }

  .language-icon {
    display: none;
  }

  .language-switcher {
    padding-left: 4px;
  }

  .hero h1 {
    max-width: 740px;
  }

  .hero {
    height: 760px;
  }

  .hero-content {
    justify-content: flex-start;
    padding-top: 144px;
  }

  .intro {
    min-height: 712px;
  }

  .intro-grid,
  .comfort-grid,
  .host-grid,
  .location-grid {
    gap: 60px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 42px;
  }

  .feature:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .gallery-grid {
    grid-auto-rows: 240px;
  }

  .comfort-visual img {
    min-height: 570px;
  }

  .image-note {
    right: -20px;
  }

  .host-section {
    min-height: 782px;
  }

  .terms {
    min-height: 1110px;
  }

  .terms-grid {
    grid-template-columns: 1.25fr 1fr;
  }

  .price-card {
    grid-row: span 3;
  }

  .term-card:last-child {
    grid-column: auto;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .button-tour-nav {
    display: inline-flex;
    min-height: 42px;
    gap: 7px;
    padding-inline: 14px;
  }

  .roomtour-floating {
    display: none;
  }

  .button-tour-nav .tour-label-full {
    display: none;
  }

  .button-tour-nav .tour-label-short {
    display: inline;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(calc(100% - 40px), 760px);
  }

  .section {
    padding: 96px 0;
  }

  .shell,
  .intro-grid > *,
  .gallery-heading > *,
  .comfort-grid > *,
  .host-grid > *,
  .terms-grid > *,
  .location-grid > * {
    min-width: 0;
  }

  .gallery-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .gallery-heading > p {
    max-width: 100%;
  }

  .site-header,
  .site-header.is-scrolled {
    display: grid;
    height: 68px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 12px;
    padding-right: max(20px, env(safe-area-inset-right));
    padding-left: max(20px, env(safe-area-inset-left));
  }

  .hero {
    height: 100svh;
  }

  .brand {
    grid-column: 1;
  }

  .header-tools {
    grid-column: 3;
    margin-left: 0;
    gap: 10px;
  }

  .language-switcher {
    position: relative;
    z-index: 3;
    min-height: 42px;
  }

  .language-button {
    width: 34px;
    height: 34px;
    font-size: 0.64rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 7px;
    padding: 0;
    color: var(--white);
    background: rgba(8, 28, 21, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(8px);
  }

  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: max(20px, env(safe-area-inset-right));
    bottom: auto;
    left: auto;
    display: flex;
    width: max-content;
    visibility: hidden;
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-start;
    gap: 7px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: visibility 0s linear 220ms, opacity 220ms ease, transform 220ms ease;
  }

  .site-header.is-scrolled .site-nav {
    background: transparent;
    border-color: transparent;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav a {
    display: flex;
    min-height: 40px;
    align-items: center;
    width: max-content;
    padding: 0 14px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 0.76rem;
    font-weight: 720;
    letter-spacing: 0.02em;
    backdrop-filter: blur(6px);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .button {
    width: max-content;
    min-height: 40px;
    justify-content: flex-start;
    margin-top: 0;
    padding-inline: 14px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.58);
    font-size: 0.76rem;
    backdrop-filter: blur(6px);
  }

  .site-header.is-scrolled .site-nav a,
  .site-header.is-scrolled .site-nav .button {
    color: var(--forest-deep);
    background: rgba(224, 235, 229, 0.9);
    border-color: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(10px);
  }

  .button-tour-nav {
    display: inline-flex;
    grid-column: 2;
    justify-self: center;
    min-height: 42px;
    gap: 0;
    padding-inline: 17px;
  }

  .button-tour-nav .tour-button-icon {
    display: none;
  }

  .roomtour-floating {
    display: none;
  }

  .button-tour-nav .tour-label-full {
    display: none;
  }

  .button-tour-nav .tour-label-short {
    display: inline;
  }

  .intro-grid,
  .comfort-grid,
  .host-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .intro {
    min-height: 760px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .comfort {
    min-height: 0;
    align-items: flex-start;
  }

  .comfort-visual img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .comfort-visual {
    display: grid;
    aspect-ratio: auto;
    overflow: visible;
  }

  .image-note {
    position: static;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    padding: 7px 12px;
    overflow: hidden;
    font-size: clamp(0.61rem, 1.7vw, 0.72rem);
    line-height: 1.25;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .host-section {
    min-height: 0;
    align-items: flex-start;
  }

  .host-copy {
    display: contents;
  }

  .host-photo {
    grid-row: 2;
    aspect-ratio: auto;
    overflow: visible;
  }

  .host-photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .host-photo figcaption {
    position: static;
    width: 100%;
    padding: 7px 12px;
    overflow: hidden;
    color: var(--white);
    background: rgba(15, 34, 29, 0.92);
    font-size: clamp(0.61rem, 1.7vw, 0.72rem);
    line-height: 1.25;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .host-copy h2 {
    grid-row: 3;
    min-height: 0;
  }

  .host-copy .eyebrow {
    grid-row: 1;
    margin-bottom: 0;
  }

  .host-copy > p:not(.eyebrow) {
    grid-row: 4;
    margin-bottom: 0;
  }

  .host-copy blockquote {
    grid-row: 5;
  }

  .terms {
    min-height: 0;
    align-items: flex-start;
  }

  .term-card {
    min-height: 0;
    padding: 22px;
  }

  .location {
    min-height: 0;
    align-items: flex-start;
  }

  .location-map img {
    height: 100%;
    min-height: 0;
  }

  .location-map {
    height: auto;
    aspect-ratio: 1000 / 620;
  }

  .location-mobile-label {
    display: block;
    margin-bottom: -30px;
  }

  .location-copy .eyebrow,
  .map-region {
    display: none;
  }

  .cta-content {
    padding-right: 0;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .button-tour-nav {
    gap: 8px;
    padding-inline: 16px;
  }

  .button-tour-nav .tour-button-icon,
  .button-tour-nav .tour-label-full {
    display: inline;
  }

  .button-tour-nav .tour-label-short {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .section {
    padding: 78px 0;
  }

  h2 {
    font-size: clamp(2.45rem, 11.5vw, 4rem);
  }

  .site-header,
  .site-header.is-scrolled {
    height: 66px;
    padding-right: max(16px, env(safe-area-inset-right));
    padding-left: max(16px, env(safe-area-inset-left));
  }

  .site-nav {
    top: 72px;
    right: max(16px, env(safe-area-inset-right));
    width: max-content;
    max-width: calc(100vw - 32px);
  }

  .brand {
    font-size: 0.78rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .hero {
    min-height: 760px;
    height: 100svh;
  }

  .hero-image {
    /* The phone frame starts immediately after the dark-green pot on the terrace edge. */
    object-position: calc(43% - 43vw) center;
    inset: -2px auto auto -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    max-width: none;
    transform: none;
    animation: none;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(5, 20, 16, 0.8), rgba(5, 20, 16, 0.2)), linear-gradient(0deg, rgba(5, 20, 16, 0.79), transparent 72%);
  }

  .hero-content {
    justify-content: flex-start;
    padding-top: 138px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }

  .hero-eyebrow {
    min-height: 1.3em;
    margin-bottom: 16px;
  }

  .hero h1 {
    height: clamp(176px, 42vw, 220px);
    flex-basis: clamp(176px, 42vw, 220px);
    margin-bottom: 20px;
    font-size: clamp(2.15rem, 9vw, 3.3rem);
    line-height: 1.13;
  }

  .hero-lead {
    min-height: 4.86em;
    margin-bottom: 22px;
    font-size: 0.94rem;
  }

  .hero-actions {
    min-height: 52px;
    margin-bottom: 32px;
  }

  .hero-facts {
    min-height: 48px;
    gap: 34px;
  }

  .hero-facts div + div::before {
    left: -17px;
  }

  .hero-facts dt {
    font-size: 1.32rem;
  }

  .hero-scroll {
    display: none;
  }

  .intro-grid,
  .comfort-grid,
  .host-grid,
  .location-grid {
    gap: 26px;
  }

  .intro {
    min-height: 680px;
  }

  .intro .section-heading h2 {
    font-size: clamp(2.12rem, 8.9vw, 3rem);
  }

  .intro-copy .lead-copy {
    font-size: 1.06rem;
  }

  .feature-strip {
    display: flex;
    min-height: 840px;
    align-items: center;
    padding: 54px 0;
  }

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

  .feature,
  .feature:first-child,
  .feature:nth-child(3) {
    min-height: 0;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .feature:first-child {
    border-top: 0;
  }

  .feature-number {
    margin-bottom: 16px;
  }

  .feature h3 {
    font-size: 1.28rem;
  }

  .feature p {
    min-height: 0;
  }

  .gallery-heading {
    min-height: 175px;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 36px;
  }

  .gallery-section {
    min-height: 1860px;
  }

  .gallery-heading h2 {
    font-size: clamp(2.08rem, 8.8vw, 3rem);
  }

  .heading-line {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .gallery-grid {
    grid-auto-rows: clamp(220px, 66vw, 280px);
    grid-template-columns: 1fr;
  }

  .gallery-item-large {
    grid-row: auto;
  }

  .gallery-item-wide {
    grid-column: auto;
  }

  .sunset-story,
  .sunset-content {
    min-height: 600px;
  }

  .sunset-story > img {
    left: 0;
    width: 160%;
    height: 100%;
    object-position: left center;
  }

  .sunset-content blockquote {
    max-width: calc(100vw - 32px);
    font-size: clamp(1.15rem, 5.6vw, 2rem);
    line-height: 0.92;
  }

  .sunset-content .eyebrow {
    margin-bottom: 8px;
  }

  .rhythm-line + .rhythm-line {
    margin-top: 8px;
  }

  .sunset-content {
    padding-top: calc(94px - 6.335vw);
  }

  .comfort {
    min-height: 0;
  }

  .comfort.section,
  .host-section.section,
  .location.section {
    padding: 16px 0 20px;
  }

  .comfort-copy h2 {
    font-size: clamp(2.05rem, 9.2vw, 3.1rem);
  }

  .comfort-grid {
    row-gap: 16px;
  }

  .comfort-copy {
    display: contents;
  }

  .comfort-copy .eyebrow {
    grid-row: 1;
    margin: 0;
  }

  .comfort-visual {
    grid-row: 2;
    width: 100%;
  }

  .comfort-visual img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
  }

  .comfort-copy h2 {
    grid-row: 3;
    margin-top: 10px;
  }

  .comfort-copy .check-list {
    grid-row: 4;
    margin-top: 0;
  }

  .image-note,
  .host-photo figcaption {
    overflow: visible;
    font-size: clamp(0.61rem, 1.7vw, 0.72rem);
    text-overflow: clip;
  }

  .check-list {
    margin-top: 26px;
  }

  .check-list li {
    padding: 15px 0;
  }

  .comfort-copy h2,
  .location-copy h2 {
    font-size: clamp(2.4rem, 10.8vw, 4rem);
  }

  .host-section {
    min-height: 0;
  }

  .host-copy h2 {
    min-height: 0;
    font-size: clamp(2.2rem, 8.7vw, 3rem);
  }

  .host-copy blockquote {
    margin-top: 0;
  }

  .terms-heading {
    display: block;
  }

  .terms {
    min-height: 0;
  }

  .terms.section {
    padding: 56px 0;
  }

  .terms-heading .eyebrow {
    margin-bottom: 20px;
  }

  .terms-heading h2 {
    white-space: normal;
  }

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

  .price-card {
    grid-row: auto;
  }

  .price-card,
  .term-card {
    min-height: 0;
    padding: 20px;
  }

  .term-card {
    gap: 16px;
  }

  .term-card h3 {
    margin: 4px 0 7px;
  }

  .fx-reference {
    margin-top: 20px;
  }

  .price-card > p:first-child {
    margin-bottom: 42px;
  }

  .location {
    min-height: 0;
  }

  .location-copy {
    padding-top: 0;
  }

  .location-mobile-label {
    margin-bottom: -14px;
  }

  .location-copy h2 {
    font-size: clamp(2.05rem, 9.2vw, 3.15rem);
  }

  .cta-section,
  .cta-content {
    min-height: 600px;
  }

  .cta-content h2 {
    font-size: clamp(2.65rem, 10.5vw, 4rem);
  }

  .cta-section > img {
    inset: -2px auto auto -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    max-width: none;
    object-position: 40% center;
    transform: none;
  }

  .footer-inner {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    white-space: nowrap;
  }

  .site-footer {
    display: flex;
    min-height: 52px;
    align-items: center;
    padding: 0;
    margin-top: -1px;
    border-top: 0;
  }

  .site-footer .shell {
    width: calc(100% - 32px);
  }

  .footer-inner p:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lightbox {
    padding: 68px 10px 18px;
  }

  .lightbox[open] {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 4px;
  }

  .lightbox figure {
    height: calc(100dvh - 86px);
  }

  .lightbox-arrow {
    width: 42px;
    height: 42px;
  }

  .contact-dialog {
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
    padding: 46px 28px 34px;
    border-radius: 12px;
  }

  .contact-dialog h2 {
    font-size: 2.65rem;
  }

  .roomtour-request-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
    padding: 42px 18px 28px;
    border-radius: 12px;
  }

  .roomtour-request-dialog h2 {
    padding-right: 24px;
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .roomtour-intro {
    margin-bottom: 24px;
    font-size: 0.9rem;
  }

  .roomtour-form {
    gap: 20px;
  }

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

  .method-option label {
    min-height: 74px;
    font-size: 0.64rem;
  }

  .roomtour-submit {
    width: 100%;
  }

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

  .contact-actions .button {
    width: 100%;
  }
}

@media (min-width: 566px) and (max-width: 713px) {
  .sunset-content {
    padding-top: calc(8px + 8.865vw);
  }
}

@media (min-width: 714px) and (max-width: 760px) {
  .sunset-content {
    padding-top: calc(114.56px - 6.075vw);
  }
}

@media (max-width: 560px) {
  .brand-name {
    display: none;
  }
}

@media (max-width: 360px) {
  .site-header,
  .site-header.is-scrolled {
    padding-right: max(10px, env(safe-area-inset-right));
    padding-left: max(10px, env(safe-area-inset-left));
  }

  .header-tools {
    gap: 6px;
  }

  .site-nav {
    right: max(10px, env(safe-area-inset-right));
    max-width: calc(100vw - 20px);
  }

  .button-tour-nav {
    padding-inline: 10px;
    font-size: 0.66rem;
  }

  .language-switcher {
    min-height: 36px;
    padding-inline: 4px;
  }

  .language-button {
    width: 29px;
    height: 30px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .intro .section-heading h2,
  .gallery-heading h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 410px) {
  .hero {
    min-height: 820px;
    height: 100svh;
  }

  .hero-actions {
    min-height: 52px;
    align-items: center;
    flex-direction: row;
  }

  .hero-actions .button {
    width: auto;
  }

  .hero-facts {
    gap: 24px;
  }

  .hero-facts div + div::before {
    left: -12px;
  }

  .hero-facts dt {
    font-size: 1.12rem;
  }

  .hero-facts dd {
    font-size: 0.61rem;
  }

  .price-card,
  .term-card {
    padding: 25px;
  }

  .price span {
    font-size: 3rem;
  }

  .map-region {
    top: 12px;
    left: 12px;
  }

  .map-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: fit-content;
    max-width: calc(100% - 24px);
  }
}

/* Compact, language-stable section heights for responsive layouts. */
@media (max-width: 330px) {
  .intro { min-height: 740px; }
  .comfort { min-height: 975px; }
  .host-section { min-height: 912px; }
  .terms { min-height: 1282px; }
  .location { min-height: 655px; }
}

@media (min-width: 331px) and (max-width: 360px) {
  .intro { min-height: 695px; }
  .comfort { min-height: 920px; }
  .host-section { min-height: 886px; }
  .terms { min-height: 1200px; }
  .location { min-height: 665px; }
}

@media (min-width: 361px) and (max-width: 380px) {
  .comfort { min-height: 930px; }
  .host-section { min-height: 886px; }
  .terms { min-height: 1165px; }
  .location { min-height: 652px; }
}

@media (min-width: 381px) and (max-width: 400px) {
  .comfort { min-height: 945px; }
  .host-section { min-height: 853px; }
  .terms { min-height: 1141px; }
  .location { min-height: 645px; }
}

@media (min-width: 401px) and (max-width: 430px) {
  .comfort { min-height: 945px; }
  .host-section { min-height: 864px; }
  .terms { min-height: 1141px; }
  .location { min-height: 675px; }
}

@media (min-width: 431px) and (max-width: 480px) {
  .comfort { min-height: 955px; }
  .host-section { min-height: 910px; }
  .terms { min-height: 1045px; }
  .location { min-height: 680px; }
}

@media (min-width: 481px) and (max-width: 510px) {
  .comfort { min-height: 980px; }
  .host-section { min-height: 910px; }
  .terms { min-height: 1025px; }
  .location { min-height: 705px; }
}

@media (min-width: 511px) and (max-width: 530px) {
  .comfort { min-height: 980px; }
  .host-section { min-height: 910px; }
  .terms { min-height: 1022px; }
  .location { min-height: 730px; }
}

@media (min-width: 531px) and (max-width: 560px) {
  .comfort { min-height: 1007px; }
  .host-section { min-height: 940px; }
  .terms { min-height: 980px; }
  .location { min-height: 752px; }
}

@media (min-width: 561px) and (max-width: 620px) {
  .comfort { min-height: 1045px; }
  .host-section { min-height: 985px; }
  .terms { min-height: 980px; }
  .location { min-height: 780px; }
}

@media (min-width: 621px) and (max-width: 680px) {
  .comfort { min-height: 1090px; }
  .host-section { min-height: 1000px; }
  .terms { min-height: 956px; }
  .location { min-height: 810px; }
}

@media (min-width: 681px) and (max-width: 720px) {
  .comfort { min-height: 1090px; }
  .host-section { min-height: 1030px; }
  .terms { min-height: 933px; }
  .location { min-height: 825px; }
}

@media (min-width: 721px) and (max-width: 760px) {
  .comfort { min-height: 1070px; }
  .host-section { min-height: 1060px; }
  .terms { min-height: 933px; }
  .location { min-height: 850px; }
}

@media (min-width: 761px) and (max-width: 900px) {
  .comfort { min-height: 1220px; }
  .host-section { min-height: 1381px; }
  .terms { min-height: 683px; }
  .location { min-height: 1070px; }
}

@media (max-width: 900px) {
  .sunset-story {
    height: 50vw;
    min-height: 0;
  }

  .sunset-content {
    height: 100%;
    min-height: 0;
    padding-top: 5vw;
  }

  .sunset-story > img {
    object-position: left 47%;
  }

  .rhythm-line + .rhythm-line {
    margin-top: clamp(8px, 1.33vw, 12px);
  }

  .terms.section {
    padding: 20px 0;
  }
}

@media (hover: none) {
  .button:hover,
  .language-button:hover {
    transform: none;
  }
}

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