:root {
  --bg: #f5f1e9;
  --ink: #1f2a27;
  --muted: #526460;
  --forest: #0d6a5e;
  --forest-deep: #084d44;
  --accent: #d4a95f;
  --line: #d9d2c3;
  --paper: #ffffff;
  --shadow: 0 14px 32px rgba(30, 50, 47, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  color: var(--ink);
  font-family: "Georgia", "Times New Roman", serif;
  background:
    radial-gradient(circle at 6% 0%, rgba(13, 106, 94, 0.16), transparent 36%),
    radial-gradient(circle at 100% 15%, rgba(212, 169, 95, 0.24), transparent 32%),
    var(--bg);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  z-index: 40;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.nav-toggle {
  display: none;
  width: auto;
  height: auto;
  border-radius: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 6px 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--forest-deep);
  display: block;
}

.nav-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.93rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--forest-deep);
  border-bottom-color: var(--forest);
}

.nav-booking-link {
  white-space: nowrap;
}

.language-switcher {
  display: inline-grid;
  gap: 4px;
  margin-left: auto;
}

.language-switch-label {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.language-switch-track {
  display: inline-flex;
  border: 1px solid rgba(17, 82, 74, 0.14);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(17, 82, 74, 0.08);
}

.language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 8px 12px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.language-link:hover,
.language-link.is-active {
  color: var(--forest-deep);
  background: var(--teal-soft);
}

.language-link + .language-link {
  border-left: 1px solid rgba(17, 82, 74, 0.1);
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4px 20px 48px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.1;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.lead {
  margin: 12px 0 0;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 980px;
}

.hero {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-media {
  display: block;
}

.hero-image {
  width: 100%;
  height: min(66vh, 560px);
  object-fit: cover;
  display: block;
}

.hero-content {
  padding: 26px;
  text-align: center;
}

.hero-actions,
.stack-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 18px;
  text-decoration: none;
  font-size: 0.94rem;
.stays-section {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(248, 244, 236, 0.94)),
    var(--paper);
}
.stays-switcher {
  margin: 18px auto 0;
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border: 1px solid rgba(17, 82, 74, 0.14);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(17, 82, 74, 0.08);
}
.stay-switch {
  appearance: none;
  border: 0;
  border-right: 1px solid rgba(17, 82, 74, 0.1);
  background: transparent;
  color: var(--muted);
  padding: 10px 18px;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}
.stay-switch:last-child {
  border-right: 0;
}
.stay-switch:hover,
.stay-switch.is-active {
  color: var(--paper);
  background: var(--forest-deep);
}
.stay-panel {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: stretch;
}
.stay-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 8px 18px 2px;
}
.stay-kicker {
  margin: 0 0 10px;
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stay-copy h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}
.stay-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 56ch;
}
.stay-media-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(150px, 1fr));
  gap: 10px;
  min-height: 380px;
}
.stay-media-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 20px rgba(30, 50, 47, 0.08);
}
.stay-media-grid img:first-child {
  grid-row: 1 / span 2;
}
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  .stays-switcher {
    width: 100%;
    border-radius: 18px;
  }
  .stay-switch {
    flex: 1 1 33.33%;
    min-width: 96px;
    padding: 12px 10px;
  }
  .stay-panel {
    grid-template-columns: 1fr;
  }
  .stay-copy {
    padding: 4px 0 0;
  }
  .stay-media-grid {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 140px;
  }
  color: #fff;
  background: linear-gradient(120deg, var(--forest), var(--forest-deep));
}

.btn-alt {
  color: var(--forest-deep);
  border-color: rgba(13, 106, 94, 0.35);
  background: rgba(255, 255, 255, 0.88);
}

.section {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  padding: 22px;
  box-shadow: 0 6px 14px rgba(20, 35, 33, 0.05);
}

.home-intro-band {
  background: #fff;
}

.section-sub {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}

.contact-mini {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
  text-align: center;
}

.contact-mini a {
  color: inherit;
  text-decoration: none;
}

.contact-mini a:hover {
  text-decoration: underline;
}

.section > h1,
.section > h2,
.section > .lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.whatsapp-band {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.wa-chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #0a5e50;
  font-weight: 700;
  text-decoration: none;
}

.btn-wa {
  color: #fff;
  background: linear-gradient(120deg, #26c05f, #0f9954);
  padding: 24px 32px;
  font-size: 1.08rem;
}

.wa-icon {
  width: 26px;
  height: 26px;
}

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

.preview-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 12px;
}

.card-body p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.review-layout {
  margin-top: 14px;
  display: grid;
  gap: 12px;
  grid-template-columns: 2fr 1fr;
}

.review-quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 16px 42px;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.review-quote small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.review-stack {
  display: grid;
  gap: 12px;
}

.review-stack .review-quote {
  padding-bottom: 16px;
}

.platform-list {
  display: grid;
  gap: 10px;
}

.platform-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 14px;
}

.platform-card h4 {
  font-size: 1rem;
}

.platform-logo {
  width: 56px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0;
}

.platform-content {
  min-width: 0;
}

.platform-card p {
  margin: 4px 0 0;
  color: var(--muted);
}

.platform-card a {
  color: var(--forest-deep);
  display: inline-block;
  margin-top: 6px;
}

.video-wrap {
  margin-top: 14px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.video-wrap video {
  width: 100%;
  display: block;
}

.masonry {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
}

.section-gallery-grid {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin-left: -20px;
  margin-right: -20px;
}

.section-gallery-grid .masonry {
  margin-top: 0;
}

.masonry-column {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.masonry-item {
  break-inside: avoid;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 0;
  background: #e5ece8 url('./assets/gallery-placeholder.svg') center/cover no-repeat;
  position: relative;
}

.masonry-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transition: opacity 180ms ease;
}

.masonry-item img.is-loaded {
  opacity: 1;
}

.masonry-item.is-loaded {
  background: #fff;
}

.masonry-link:focus-visible {
  outline: 3px solid rgba(10, 126, 122, 0.5);
  outline-offset: -3px;
}

@media (hover: hover) and (pointer: fine) {
  .masonry-link[href] {
    cursor: zoom-in;
  }
}

.contact-layout {
  margin-top: 14px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1.1fr 1fr;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 13px;
  font: inherit;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
}

.map-frame {
  width: 100%;
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.contact-location {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 16px;
}

.contact-location h2 {
  font-size: 1.15rem;
}

.contact-location address,
.contact-location p {
  margin: 10px 0 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.contact-location .btn {
  margin-top: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 14px;
  display: none;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 760px) {
  .site-header {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 12px 0;
  }

  .main-nav {
    display: block;
    position: relative;
    width: auto;
  }

  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .language-switcher {
    width: auto;
    justify-items: end;
    margin-left: 0;
    align-self: center;
  }

  .language-switch-label {
    display: none;
  }

  .main-nav.is-open {
    width: auto;
  }

  .main-nav.is-open .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: min(260px, calc(100vw - 24px));
    padding: 10px 0;
    border: 1px solid rgba(13, 106, 94, 0.16);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 28px rgba(17, 82, 74, 0.14);
    z-index: 120;
  }

  .main-nav.is-open .nav-menu a {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    text-align: left;
  }

  .main-nav.is-open .nav-menu a + a {
    border-top: 1px solid rgba(13, 106, 94, 0.08);
  }
}

.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 30px;
  color: var(--muted);
}

.site-footer a {
  color: var(--forest-deep);
  background: rgba(13, 106, 94, 0.12);
}

.language-link.is-active {
  color: var(--paper);
  background: var(--forest-deep);
  box-shadow: inset 0 0 0 1px rgba(8, 77, 68, 0.85);
}

.booking-band {
  background: linear-gradient(135deg, rgba(13, 106, 94, 0.16), rgba(212, 169, 95, 0.2));
}

.reviews-intro-card {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
}

.reviews-intro-card p {
  margin: 0;
  color: var(--ink);
  line-height: 1.65;
}

.home-intro-band {
  margin-top: 20px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(248, 244, 236, 0.94)),
    var(--paper) !important;
}

h1.home-intro-title {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  text-align: center;
}

.home-intro-copy {
  margin: 14px auto 0;
  max-width: 980px;
}

.home-intro-copy p {
  margin: 0 0 10px;
  color: var(--ink);
  line-height: 1.6;
  text-align: left;
}

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

.btn-book {
  color: #fff;
  background: linear-gradient(120deg, #0a7e7a, #06686b);
  font-size: 1.4rem;
  padding: 20px 48px;
  box-shadow: 0 10px 22px rgba(7, 94, 90, 0.28);
  white-space: nowrap;
}

.stays-section {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(248, 244, 236, 0.94));
}

.stays-switcher {
  margin: 18px auto 0;
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border: 1px solid rgba(17, 82, 74, 0.14);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(17, 82, 74, 0.08);
}

.stay-switch {
  appearance: none;
  border: 0;
  border-right: 1px solid rgba(17, 82, 74, 0.1);
  background: transparent;
  color: var(--muted);
  padding: 10px 18px;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.stay-switch:last-child {
  border-right: 0;
}

.stay-switch:hover,
.stay-switch.is-active {
  color: var(--paper);
  background: var(--forest-deep);
}

.stay-panel {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.stay-panel[hidden] {
  display: none;
}

.stay-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 8px 18px 2px;
}

.stay-kicker {
  margin: 0 0 10px;
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stay-copy h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.stay-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 56ch;
}

.stay-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(88px, 1fr));
  gap: 10px;
}

.stay-media-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 20px rgba(30, 50, 47, 0.08);
}

.booking-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.booking-band-text {
  flex: 1;
  min-width: 200px;
}

.stack-center {
  justify-content: center;
}

.contact-form-home {
  margin-top: 12px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.contact-actions {
  margin-top: 18px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
}

.contact-actions-secondary {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1;
}

.contact-submit-btn,
.contact-action-link {
  min-width: 180px;
  min-height: 72px;
  padding: 16px 22px;
  text-align: center;
}

.contact-submit-btn {
  align-self: flex-start;
  font-size: 1.08rem;
}

.contact-action-link {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.contact-action-link small {
  font-size: 0.82rem;
  line-height: 1.25;
  opacity: 0.85;
}

.contact-submit-btn.is-sending {
  animation: contact-submit-blink 0.9s ease-in-out infinite;
}

.contact-submit-btn.is-sent,
.contact-submit-btn:disabled {
  cursor: default;
}

@keyframes contact-submit-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
  100% {
    opacity: 1;
  }
}

.review-carousel {
  position: relative;
  min-height: 220px;
}

.review-carousel-stacked {
  min-height: 0;
  display: grid;
  gap: 12px;
  padding-bottom: 42px;
}

.review-slide {
  display: none;
}

.review-slide.is-active {
  display: block;
}

.review-carousel-stacked .review-slide.is-active {
  display: none;
}

.review-carousel-stacked .review-slide.is-visible {
  display: block;
}

.review-carousel-stacked .review-slide.is-stack-outer {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(248, 244, 236, 0.94));
}

.review-carousel-stacked .review-slide.is-stack-highlight {
  background: linear-gradient(120deg, #0a7e7a, #06686b);
  border-color: rgba(7, 94, 90, 0.3);
  box-shadow: 0 10px 22px rgba(7, 94, 90, 0.2);
  color: #fff;
}

.review-carousel-stacked .review-slide.is-stack-highlight small {
  color: rgba(255, 255, 255, 0.86);
}

.review-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.review-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(8, 77, 68, 0.25);
  cursor: pointer;
}

.review-dot.is-active {
  background: var(--forest-deep);
}

@media (max-width: 1020px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stay-panel {
    grid-template-columns: 1fr;
  }

  .review-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .contact-actions-secondary {
    justify-content: stretch;
  }

  .contact-submit-btn,
  .contact-action-link {
    width: 100%;
  }

  .masonry {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
  }

  main {
    padding-left: 0;
    padding-right: 0;
  }

  .hero,
  .section,
  .video-wrap,
  .map-frame,
  .contact-location {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .section {
    padding-left: 0;
    padding-right: 0;
  }

  .home-page .section {
    margin-top: 0;
  }

  .hero {
    margin-top: 0;
  }

  .video-wrap {
    margin-top: 0;
    border-top: 0;
    border-bottom: 0;
  }

  .gallery-video-section {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    background: transparent;
    box-shadow: none;
  }

  .escapes-list-section + .booking-band {
    margin-top: 0;
  }

  .hero-content,
  .section > h1,
  .section > h2,
  .section > .lead,
  .section-sub,
  .home-intro-copy,
  .stack-actions,
  .contact-mini,
  .stays-switcher,
  .stay-copy,
  .contact-layout,
  .contact-actions,
  .contact-form,
  .contact-location,
  .reviews-intro-card {
    padding-left: 12px;
    padding-right: 12px;
  }

  .preview-grid,
  .cards,
  .review-layout,
  .stay-media-grid,
  .masonry,
  .section-gallery-grid {
    gap: 0;
  }

  .preview-grid img,
  .card,
  .review-quote,
  .platform-card,
  .stay-media-grid img,
  .masonry-item,
  .masonry-item img {
    border-radius: 0;
  }

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

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

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .stays-switcher {
    width: 100%;
    border-radius: 0;
  }

  .stays-section {
    padding-bottom: 24px;
  }

  .stay-panel {
    gap: 16px;
    margin-bottom: 20px;
  }

  .stay-switch {
    flex: 1 1 33.33%;
    min-width: 110px;
    padding: 12px 10px;
    border-radius: 0;
  }

  .stay-copy {
    padding: 8px 24px 0;
  }

  .stay-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 120px;
    gap: 8px;
    padding: 0 12px 24px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0;
  }

  .home-escapes-section .cards {
    gap: 0;
  }

  .cards .card {
    overflow: hidden;
  }

  .card-body {
    padding: 10px 12px;
  }

  .card-body p {
    margin-top: 6px;
  }

  .review-layout {
    gap: 8px;
    padding: 0;
  }

  .review-stack,
  .platform-list {
    gap: 8px;
  }

  .reviews-page-section .platform-list {
    gap: 0;
  }

  .review-quote {
    padding: 12px 12px 14px;
    line-height: 1.6;
  }

  .platform-card {
    gap: 10px;
    padding: 10px 12px;
  }

  .contact-layout,
  .contact-form,
  .contact-location,
  .contact-page-actions {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-layout {
    gap: 0;
    margin-top: 0;
  }

  .contact-form {
    padding: 0 16px 12px;
  }

  .contact-page .section > h1,
  .contact-page .section > .lead,
  .contact-page .stack-actions,
  .contact-page .form-status {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-page .contact-form .btn {
    justify-self: start;
    width: auto;
    min-width: 132px;
  }

  .home-question-section > h2,
  .home-question-section > .section-sub,
  .home-question-section .contact-form-home,
  .home-question-section .contact-actions,
  .home-question-section .form-status {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 560px) {
  .preview-grid,
  .cards {
    grid-template-columns: 1fr;
  }

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

@media (min-width: 900px) {
  .hero-content .lead {
    white-space: nowrap;
    font-size: 1.03rem;
  }
}
