:root {
  --forest: #465139;
  --leaf: #5f6a42;
  --moss: #7d875b;
  --clay: #b89568;
  --sun: #d8c59c;
  --bark: #3a2b20;
  --paper: #fbfaf4;
  --linen: #f1eee3;
  --mist: #e4e2d6;
  --ink: #2c2a23;
  --muted: #6e6f61;
  --line: rgba(70, 81, 57, 0.22);
  --shadow: 0 24px 70px rgba(58, 43, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(216, 197, 156, .22), transparent 32rem),
    linear-gradient(180deg, #fbfaf4, #f1eee3 44%, #fbfaf4);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: var(--forest);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  z-index: 20;
  background: var(--forest);
  color: #fff;
  padding: .6rem .9rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 78px;
  padding: .55rem clamp(1rem, 4vw, 3rem);
  background: rgba(251, 250, 244, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header.simple {
  position: static;
}

.brand {
  display: block;
  width: min(116px, 34vw);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(58, 43, 32, .12);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}

.language-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 250, 244, .78);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: .78rem;
  font-weight: 900;
  min-width: 38px;
  padding: .45rem .55rem;
}

.language-button.is-active,
.language-button:hover,
.language-button:focus-visible {
  background: var(--forest);
  color: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.site-nav a {
  border-radius: 999px;
  color: var(--ink);
  font-weight: 700;
  padding: .6rem .85rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--linen);
  color: var(--forest);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 250, 244, .92);
  color: var(--forest);
  font: inherit;
  font-weight: 700;
  padding: .65rem .85rem;
}

.hero {
  position: relative;
  min-height: clamp(580px, 88vh, 820px);
  isolation: isolate;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(15, 37, 33, .78), rgba(15, 37, 33, .22) 54%, rgba(15, 37, 33, .32)),
    url("img/eifel-rursee.jpg") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 26%;
  content: "";
  background: linear-gradient(0deg, var(--paper), rgba(251, 250, 244, 0));
}

.hero-copy {
  width: min(820px, calc(100% - 2rem));
  margin: 0 0 clamp(4.5rem, 13vh, 8.5rem) clamp(1rem, 6vw, 5rem);
  color: #fffdf7;
}

.eyebrow {
  margin: 0 0 .65rem;
  color: var(--clay);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #f0c37b;
}

.apartments .eyebrow {
  color: var(--clay);
}

h1,
h2,
h3 {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  margin: 0;
}

h1 {
  color: #fffdf7;
  font-size: clamp(3rem, 8vw, 6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.55rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 42rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  margin: 1rem 0 0;
}

.hero-actions,
.booking-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.6rem;
}

.button,
.booking-tab {
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .72rem 1.1rem;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

.button.primary,
.booking-tab.is-active {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 12px 30px rgba(31, 77, 69, .25);
}

.button.secondary {
  background: rgba(251, 250, 244, .9);
  color: var(--forest);
  border-color: rgba(255, 253, 247, .5);
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 3rem);
}

.section:nth-of-type(odd) {
  background: rgba(246, 243, 234, .72);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 1.2rem;
}

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.quick-facts span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 250, 244, .84);
  color: var(--forest);
  font-size: .9rem;
  font-weight: 800;
  padding: .5rem .75rem;
}

.host-welcome {
  background: var(--paper);
}

.host-welcome-inner {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.host-portrait {
  margin: 0;
}

.host-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  object-position: 50% 26%;
  box-shadow: var(--shadow);
}

.host-copy {
  display: grid;
  gap: 1rem;
}

.host-copy h2 {
  max-width: 760px;
}

.host-copy p:not(.eyebrow) {
  max-width: 760px;
  font-size: 1.06rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

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

.apartment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.1rem, 3vw, 2rem);
}

.apartment-card {
  background: rgba(251, 250, 244, .88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.apartment-gallery {
  padding: .55rem;
}

.gallery-open {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  background: var(--forest);
}

.gallery-open img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform .28s ease, filter .28s ease;
}

.gallery-open::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(13, 32, 29, .72));
}

.gallery-open span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  border-radius: 999px;
  background: rgba(251, 250, 244, .92);
  color: var(--forest);
  font-weight: 900;
  padding: .65rem .9rem;
  box-shadow: 0 10px 28px rgba(13, 32, 29, .28);
}

.gallery-open:hover img,
.gallery-open:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.04);
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: clamp(.75rem, 3vw, 2rem);
}

.gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 23, .78);
  backdrop-filter: blur(14px);
}

.gallery-dialog {
  position: relative;
  z-index: 1;
  width: min(1180px, 92vw);
  min-height: 85vh;
  max-height: 92vh;
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr);
  gap: .9rem;
  border: 1px solid rgba(255, 253, 247, .18);
  border-radius: 8px;
  background: rgba(251, 250, 244, .97);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
  padding: clamp(.7rem, 2vw, 1.2rem);
  overflow: auto;
}

.gallery-close,
.gallery-nav {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  color: var(--forest);
  background: rgba(251, 250, 244, .92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
}

.gallery-close {
  position: absolute;
  top: .8rem;
  right: .8rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 1;
}

.gallery-view {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  border-radius: 6px;
  overflow: hidden;
  background: #10221f;
}

.gallery-view img {
  width: 100%;
  max-height: min(42vh, 440px);
  object-fit: cover;
}

.detail-media img {
  aspect-ratio: 16 / 8;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  color: #fff;
  background: rgba(31, 77, 69, .84);
  font-size: 2.4rem;
  transform: translateY(-50%);
}

.gallery-nav.previous {
  left: .75rem;
}

.gallery-nav.next {
  right: .75rem;
}

.gallery-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

.gallery-caption h2 {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.gallery-caption p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  text-align: right;
}

.gallery-modal-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .45rem;
}

.gallery-modal-thumb {
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  background: var(--linen);
}

.gallery-modal-thumb img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.gallery-modal-thumb.is-active {
  border-color: var(--clay);
}

.detail-content {
  display: grid;
  gap: 1rem;
  min-height: 0;
}

.detail-description {
  margin: 0;
  border: 1px solid rgba(184, 149, 104, .38);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, .94), rgba(246, 243, 234, .88));
  color: var(--bark);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 760;
  line-height: 1.55;
  padding: clamp(1rem, 3vw, 1.35rem);
}

.detail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.detail-stats span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(246, 243, 234, .9);
  color: var(--forest);
  font-size: .9rem;
  font-weight: 900;
  padding: .45rem .7rem;
}

.detail-calendar,
.detail-inquiry {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, .74);
  padding: .9rem;
}

.detail-calendar h3,
.detail-inquiry h3 {
  margin-bottom: .65rem;
  color: var(--forest);
  font-size: 1.05rem;
}

.detail-inquiry {
  display: grid;
  gap: .75rem;
}

.detail-inquiry p {
  margin: 0;
}

.detail-inquiry .button {
  justify-self: start;
}

.detail-calendar p {
  margin: 0 0 .85rem;
}

.detail-calendar .button {
  margin-bottom: 1rem;
}

.detail-calendar iframe {
  width: 100%;
  height: min(56vh, 540px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.detail-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}

.detail-sections section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, .72);
  padding: .9rem;
}

.detail-sections h3 {
  margin-bottom: .45rem;
  color: var(--forest);
  font-size: 1.02rem;
}

.detail-map-link {
  display: inline-flex;
  margin-bottom: .55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(246, 243, 234, .9);
  color: var(--forest);
  font-size: .86rem;
  font-weight: 900;
  padding: .34rem .65rem;
  text-decoration: none;
}

.detail-sections ul {
  display: grid;
  gap: .25rem;
  margin: 0;
  padding-left: 1.1rem;
}

.detail-sections .travel-line {
  display: grid;
  grid-template-columns: 2.45rem 1fr;
  gap: .55rem;
  align-items: start;
  list-style: none;
}

.travel-icon {
  display: inline-grid;
  place-items: center;
  min-width: 2rem;
  min-height: 2rem;
  border-radius: 999px;
  background: rgba(70, 81, 57, .1);
  color: var(--forest);
  font-size: .74rem;
  font-weight: 900;
  line-height: 1;
}

.detail-content > .detail-calendar {
  margin-bottom: clamp(.7rem, 2vw, 1.2rem);
}

.apartment-body {
  padding: clamp(1rem, 3vw, 1.7rem);
}

.feature-list {
  display: grid;
  gap: .35rem;
  padding-left: 1.1rem;
}

.text-link {
  display: inline-flex;
  margin-top: .4rem;
  font-weight: 800;
}

.booking-panel,
.contact-form {
  background: rgba(251, 250, 244, .92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(1rem, 3vw, 1.5rem);
}

.booking-tab {
  background: rgba(246, 243, 234, .9);
  color: var(--forest);
}

.lodgify-frame-wrap {
  position: relative;
  min-height: 560px;
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(246, 243, 234, .96), rgba(220, 232, 228, .96)),
    url("img/eifel-nationalpark-wide.jpg") center / cover no-repeat;
}

.lodgify-frame-wrap iframe {
  width: 100%;
  height: 560px;
  border: 0;
}

.lodgify-direct {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: .8rem;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(246, 243, 234, .96), rgba(220, 232, 228, .96));
}

.lodgify-direct[hidden] {
  display: none;
}

.lodgify-direct h3,
.lodgify-direct p {
  max-width: 560px;
  margin: 0 auto;
}

.external-consent {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: .8rem;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(246, 243, 234, .96), rgba(220, 232, 228, .96));
}

.external-consent[hidden] {
  display: none;
}

.external-consent h3,
.external-consent p {
  max-width: 580px;
  margin: 0 auto;
}

.contact-layout address {
  margin-top: 1.5rem;
  font-style: normal;
}

.form-note {
  border-left: 4px solid var(--clay);
  background: rgba(231, 184, 104, .14);
  color: var(--bark);
  padding: .8rem 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-card h3,
.contact-card p {
  margin: 0;
}

.contact-details {
  display: grid;
  gap: .85rem;
  margin: .35rem 0;
}

.contact-details div {
  border-top: 1px solid var(--line);
  padding-top: .85rem;
}

.contact-details dt {
  color: var(--forest);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: .25rem 0 0;
}

.contact-form label {
  display: grid;
  gap: .35rem;
  color: var(--forest);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: .75rem .8rem;
}

.contact-form .hidden-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--forest);
  outline: 3px solid rgba(76, 123, 91, .22);
}

.check-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--ink);
  font-weight: 400;
}

.check-row input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: .28rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  background: var(--forest);
  color: #fff;
}

.thanks-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(31, 77, 69, .74), rgba(31, 77, 69, .44)),
    url("img/eifel-panorama.jpg") center / cover no-repeat;
  color: #fff;
}

.thanks-page img {
  width: min(360px, 82vw);
  background: rgba(251, 250, 244, .9);
  border-radius: 8px;
  padding: .3rem;
}

.thanks-page h1 {
  color: #fff;
}

.construction-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(16, 34, 31, .68), rgba(16, 34, 31, .48)),
    url("img/eifel-rursee.jpg") center / cover no-repeat;
  color: #fff;
}

.construction-preview {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: rgba(251, 250, 244, .96);
  color: var(--forest);
  font-weight: 800;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
}

.construction-preview:hover,
.construction-preview:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.construction-shell {
  width: min(680px, 100%);
  display: grid;
  justify-items: start;
  gap: 1rem;
  border: 1px solid rgba(255, 253, 247, .26);
  border-radius: 8px;
  background: rgba(251, 250, 244, .94);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
  color: var(--ink);
  padding: clamp(1.5rem, 5vw, 2.5rem);
}

.construction-shell img {
  width: min(150px, 42vw);
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(58, 43, 32, .15);
}

.construction-shell h1 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(2.2rem, 7vw, 4rem);
  line-height: 1.05;
}

.construction-shell p {
  max-width: 48rem;
  margin: 0;
}

.construction-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: .35rem;
}

.site-footer div,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.site-footer a {
  color: #fff;
}

.legal-page {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5rem) 0;
}

.legal-page h1 {
  color: var(--forest);
  font-size: clamp(2.3rem, 6vw, 4.2rem);
}

.legal-page h2 {
  margin-top: 2rem;
  font-size: 1.55rem;
}

.activities-hero {
  min-height: 420px;
  display: grid;
  align-items: end;
  padding: clamp(5rem, 12vw, 9rem) clamp(1rem, 4vw, 3rem) clamp(2rem, 6vw, 4rem);
  background:
    linear-gradient(180deg, rgba(16, 34, 31, .36), rgba(16, 34, 31, .76)),
    url("img/eifel-rursee.jpg") center / cover no-repeat;
  color: #fff;
}

.activities-hero .section-inner {
  display: grid;
  gap: 1rem;
}

.activities-hero h1,
.activities-hero p {
  max-width: 780px;
  margin: 0;
  color: #fff;
}

.activities-hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
}

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

.activity-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(251, 250, 244, .9);
  box-shadow: var(--shadow);
}

.activity-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.activity-card div {
  padding: 1rem;
}

.activity-card h2 {
  margin-bottom: .45rem;
  color: var(--forest);
  font-size: 1.45rem;
}

.activity-tips {
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, .78);
  padding: clamp(1rem, 3vw, 1.5rem);
}

.activity-tips ul {
  display: grid;
  gap: .45rem;
  margin-bottom: 0;
  padding-left: 1.1rem;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-header {
    gap: .75rem;
    flex-wrap: wrap;
    padding-inline: 1rem;
  }

  .language-switcher {
    order: 2;
    max-width: calc(100vw - 9rem);
    overflow-x: auto;
  }

  .nav-toggle {
    order: 3;
  }

  .site-nav {
    order: 4;
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-header.simple .site-nav {
    display: flex;
  }

  .two-column,
  .apartment-grid,
  .host-welcome-inner,
  .activity-grid {
    grid-template-columns: 1fr;
  }

  .host-portrait {
    width: min(420px, 100%);
  }

  .hero-copy {
    margin-left: 1rem;
  }

  .hero-copy h1,
  .section-heading h2,
  .intro h2 {
    overflow-wrap: anywhere;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .brand {
    width: 84px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-copy {
    width: calc(100% - 2rem);
    margin: 0 1rem 2.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .section {
    padding-inline: 1rem;
  }

  .language-button {
    min-width: 34px;
    padding: .4rem .48rem;
  }

  .hero-actions,
  .booking-tabs {
    flex-direction: column;
  }

  .button,
  .booking-tab {
    width: 100%;
  }

  .quick-facts {
    align-items: stretch;
  }

  .quick-facts span {
    justify-content: center;
    text-align: center;
  }

  .lodgify-frame-wrap,
  .lodgify-frame-wrap iframe {
    min-height: 520px;
    height: 520px;
  }

  .detail-calendar iframe {
    height: 500px;
  }

  .lodgify-direct {
    padding: 1.2rem;
  }

  .contact-details dd {
    overflow-wrap: anywhere;
  }

  .gallery-modal {
    padding: .45rem;
  }

  .gallery-dialog {
    width: calc(100vw - .9rem);
    min-height: 85svh;
    max-height: 96vh;
  }

  .gallery-caption {
    display: grid;
    gap: .25rem;
  }

  .gallery-caption p {
    text-align: left;
  }

  .gallery-modal-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-media img {
    aspect-ratio: 4 / 3;
  }

  .detail-sections {
    grid-template-columns: 1fr;
  }
}
