@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@600;700&display=swap");

:root {
  --cream: #f7f4ec;
  --paper: #fffdf8;
  --forest: #173b2b;
  --forest-2: #0f261b;
  --sage: #60745a;
  --olive: #344f33;
  --terracotta: #9b593e;
  --gold: #c7a15b;
  --water: #4d8f92;
  --ink: #17231b;
  --muted: #657064;
  --line: rgba(23, 59, 43, 0.16);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 22px 70px rgba(23, 35, 27, 0.14);
  --radius: 8px;
  --container: 1180px;
  --header: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: clip;
}

body,
button,
input,
textarea {
  font: 400 1rem/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

img {
  height: auto;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 880px;
  font-size: 2.75rem;
}

h2 {
  max-width: 860px;
  font-size: 2.18rem;
}

h3 {
  font-size: 1.45rem;
}

p,
li,
a,
span,
label,
input,
textarea,
button {
  overflow-wrap: anywhere;
}

.icon {
  width: 1.12rem;
  height: 1.12rem;
  flex: 0 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.78rem 1rem;
  color: #fff;
  background: var(--forest);
  border-radius: var(--radius);
  font-weight: 800;
}

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  color: #fff;
  background: linear-gradient(180deg, rgba(15, 38, 27, 0.54), rgba(15, 38, 27, 0.08));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled,
.site-header:focus-within {
  background: rgba(15, 38, 27, 0.94);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 38px rgba(15, 38, 27, 0.18);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(var(--container), calc(100% - 32px));
  min-height: var(--header);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-grid;
  gap: 0.18rem;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}

.brand small {
  color: var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
}

.nav-toggle .icon-close,
.nav-toggle.is-open .icon-menu {
  display: none;
}

.nav-toggle.is-open .icon-close {
  display: block;
}

.nav-links {
  position: fixed;
  inset: var(--header) 0 auto 0;
  display: none;
  padding: 0.8rem 1rem 1rem;
  color: var(--forest);
  background: rgba(255, 253, 248, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.nav-links.is-open {
  display: grid;
  gap: 0.2rem;
}

.nav-links a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  padding: 0.72rem 0.65rem;
  border-radius: var(--radius);
  color: var(--forest);
  font-size: 0.96rem;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--terracotta);
  background: rgba(199, 161, 91, 0.14);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  padding: 0.82rem 1.08rem;
  color: var(--forest);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: #227447;
  box-shadow: 0 16px 32px rgba(34, 116, 71, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #1b633b;
}

.btn-light {
  color: var(--forest);
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.btn-outline {
  color: var(--forest);
  border-color: rgba(23, 59, 43, 0.22);
  background: #fffdf8;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: rgba(155, 89, 62, 0.38);
  background: rgba(155, 89, 62, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--forest);
  font-weight: 900;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--terracotta);
}

.hero,
.image-cta,
.banner-section {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: clip;
  color: #fff;
  background: var(--forest-2);
}

.page-hero {
  min-height: 560px;
}

.hero-image,
.banner-image,
.cta-image {
  position: absolute;
  inset: 0;
}

.hero-image img,
.banner-image img,
.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}

.hero::after,
.banner-section::after,
.image-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 21, 14, 0.88), rgba(9, 21, 14, 0.56) 48%, rgba(9, 21, 14, 0.22)),
    linear-gradient(180deg, rgba(9, 21, 14, 0.18), rgba(9, 21, 14, 0.62));
}

.hero-content,
.banner-content,
.cta-content {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.hero-content {
  padding: 7.5rem 0 2.1rem;
}

.hero-copy {
  max-width: 830px;
  display: grid;
  gap: 1.1rem;
}

.hero h1,
.page-hero h1,
.image-cta h2,
.banner-section h2 {
  color: #fff;
}

.overline {
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .overline,
.page-hero .overline,
.image-cta .overline,
.banner-section .overline {
  color: var(--gold);
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
}

.hero .lead,
.page-hero .lead,
.image-cta .lead,
.banner-section .lead {
  color: rgba(255, 255, 255, 0.9);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero .actions,
.cta-content .actions,
.editorial-copy .actions,
.contact-panel .actions {
  margin-top: 0.45rem;
}

.hero-facts,
.feature-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 1.1rem 0 0;
  list-style: none;
}

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

.fact,
.feature-pill {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  padding: 0.7rem 0.78rem;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.25;
}

.fact {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.feature-pill {
  color: var(--forest);
  background: rgba(199, 161, 91, 0.16);
  border: 1px solid rgba(199, 161, 91, 0.22);
}

.section {
  padding: 5.5rem 0;
}

.section.alt {
  background: var(--paper);
}

.section.deep {
  color: #fff;
  background: var(--forest-2);
}

.section.deep h2,
.section.deep h3 {
  color: #fff;
}

.section.deep .lead {
  color: rgba(255, 255, 255, 0.78);
}

.section-head {
  display: grid;
  gap: 0.95rem;
  margin-bottom: 2.4rem;
}

.section-head.center {
  justify-items: center;
  text-align: center;
}

.section-head.center .lead {
  margin-inline: auto;
}

.editorial,
.split,
.destination-item,
.contact-layout,
.accommodation-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.editorial-copy,
.destination-copy,
.contact-panel {
  display: grid;
  gap: 1rem;
}

.media-frame {
  position: relative;
  overflow: clip;
  min-height: 300px;
  aspect-ratio: 4 / 3;
  background: #d8d2c4;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-frame.tall {
  aspect-ratio: 4 / 5;
}

.media-frame.wide {
  aspect-ratio: 16 / 10;
}

.media-frame img,
.card-media img,
.gallery-card img,
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-frame:hover img,
.card:hover .card-media img,
.gallery-card:hover img,
.gallery-tile:hover img {
  transform: scale(1.035);
}

.pos-top {
  object-position: center top;
}

.pos-bottom {
  object-position: center bottom;
}

.pos-left {
  object-position: left center;
}

.rooms-feature {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.4rem;
}

.room-link {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  transition: color 0.2s ease, transform 0.2s ease;
}

.room-link:hover,
.room-link:focus-visible {
  color: var(--terracotta);
  transform: translateX(5px);
}

.room-link strong {
  color: inherit;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.12;
}

.room-link span {
  color: var(--muted);
  font-weight: 500;
}

.grid {
  display: grid;
  gap: 1.1rem;
}

.cards-2,
.cards-3,
.cards-4 {
  grid-template-columns: 1fr;
}

.card,
.featured-room,
.testimonial,
.sticky-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.card,
.featured-room,
.testimonial,
.contact-card {
  overflow: clip;
  box-shadow: 0 14px 40px rgba(23, 35, 27, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover,
.featured-room:hover,
.testimonial:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 68px rgba(23, 35, 27, 0.12);
}

.card-media {
  aspect-ratio: 4 / 3;
  overflow: clip;
  background: #d8d2c4;
}

.card-body {
  display: grid;
  gap: 0.82rem;
  padding: 1.22rem;
}

.card-body .btn,
.featured-room .btn {
  width: fit-content;
}

.featured-room {
  display: grid;
}

.featured-room .card-media {
  min-height: 320px;
  aspect-ratio: 16 / 11;
}

.featured-room .card-body {
  align-content: center;
  padding: 1.45rem;
}

.structure-showcase {
  display: grid;
  gap: 1.2rem;
}

.structure-card {
  display: grid;
  overflow: clip;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.structure-card .card-media {
  min-height: 260px;
}

.structure-card .card-body {
  align-content: center;
}

.banner-section {
  min-height: 620px;
  align-items: center;
}

.banner-content {
  display: grid;
  gap: 1rem;
  padding: 5rem 0;
}

.gallery-editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.gallery-tile {
  position: relative;
  overflow: clip;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: #d8d2c4;
}

.gallery-tile.large {
  aspect-ratio: 4 / 5;
}

.gallery-tile.wide {
  aspect-ratio: 16 / 10;
}

.gallery-tile figcaption,
.gallery-card figcaption {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  max-width: calc(100% - 1.5rem);
  padding: 0.5rem 0.62rem;
  color: #fff;
  background: rgba(15, 38, 27, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

figure {
  margin: 0;
}

.testimonial {
  display: grid;
  gap: 0.8rem;
  padding: 1.35rem;
}

.stars {
  display: flex;
  gap: 0.18rem;
  color: var(--gold);
}

.stars .icon {
  width: 1rem;
  height: 1rem;
}

.image-cta {
  min-height: 560px;
  align-items: center;
}

.cta-content {
  display: grid;
  gap: 1rem;
  padding: 5rem 0;
}

.cta-content p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
}

.list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  display: flex;
  align-items: flex-start;
  gap: 0.62rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
}

.list .icon {
  margin-top: 0.22rem;
  color: var(--terracotta);
}

.carousel-wrap {
  position: relative;
}

.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 82%);
  gap: 1rem;
  overflow-x: auto;
  padding: 0 0 0.4rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel > * {
  scroll-snap-align: start;
}

.gallery-card {
  position: relative;
  overflow: clip;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: #d8d2c4;
  box-shadow: 0 14px 34px rgba(23, 35, 27, 0.08);
}

.carousel-controls {
  display: flex;
  gap: 0.55rem;
  margin-top: 1rem;
}

.icon-btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  color: #fff;
  background: var(--forest);
  transform: translateY(-2px);
}

.accommodation-layout {
  align-items: start;
}

.sticky-panel {
  display: grid;
  gap: 1.15rem;
  padding: 1.2rem;
  box-shadow: 0 18px 52px rgba(23, 35, 27, 0.08);
}

.related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.related a {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.58rem 0.68rem;
  color: var(--forest);
  background: rgba(199, 161, 91, 0.12);
  border: 1px solid rgba(199, 161, 91, 0.22);
  border-radius: var(--radius);
  font-weight: 850;
}

.related a:hover,
.related a:focus-visible {
  color: var(--terracotta);
}

.destination-list {
  display: grid;
  gap: 2.4rem;
}

.contact-layout {
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.25rem;
}

.form {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 52px rgba(23, 35, 27, 0.08);
}

.form label {
  display: grid;
  gap: 0.35rem;
  color: var(--forest);
  font-weight: 850;
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.9rem 0.95rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form input:focus,
.form textarea:focus {
  border-color: rgba(34, 116, 71, 0.55);
  box-shadow: 0 0 0 4px rgba(34, 116, 71, 0.1);
}

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

.map {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  filter: saturate(0.9);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(155, 89, 62, 0.12), transparent 38%),
    #0f261b;
}

.footer-main {
  display: grid;
  gap: 2rem;
  padding: 4rem 0 2rem;
}

.footer-brand {
  display: grid;
  gap: 0.9rem;
}

.footer-logo {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.05;
}

.footer-logo small {
  display: block;
  margin-top: 0.25rem;
  color: var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-main h2,
.footer-main h3 {
  color: #fff;
}

.footer-main h3 {
  font-size: 1.18rem;
}

.footer-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0.8rem 0 0;
  list-style: none;
}

.footer-list li,
.footer-list a {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-list .icon {
  margin-top: 0.22rem;
  color: var(--gold);
}

.site-footer a {
  transition: color 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: space-between;
  padding: 1.1rem 0 6rem;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-credit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  color: #fff;
  background: #227447;
  box-shadow: 0 18px 42px rgba(34, 116, 71, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

body.has-scrolled .whatsapp-float {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-image img,
  .banner-image img,
  .cta-image img {
    animation: heroZoom 1.4s ease both;
  }
}

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

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

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

@media (min-width: 640px) {
  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 2.85rem;
  }

  h3 {
    font-size: 1.65rem;
  }

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

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

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

  .carousel {
    grid-auto-columns: minmax(300px, 48%);
  }
}

@media (min-width: 900px) {
  h1 {
    font-size: 5.05rem;
  }

  h2 {
    font-size: 3.85rem;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-links a {
    min-height: 42px;
    color: #fff;
    padding: 0.55rem 0.3rem;
    font-size: 0.92rem;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a[aria-current="page"] {
    color: var(--gold);
    background: transparent;
  }

  .nav-links .btn {
    color: #fff;
    padding-inline: 0.9rem;
  }

  .hero-content {
    padding-bottom: 3rem;
  }

  .hero-facts {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .section {
    padding: 7.4rem 0;
  }

  .editorial,
  .destination-item {
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.82fr);
    gap: 4rem;
  }

  .editorial.reverse,
  .destination-item:nth-child(even) {
    grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.1fr);
  }

  .editorial.reverse > :first-child,
  .destination-item:nth-child(even) > :first-child {
    order: 2;
  }

  .split,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 4rem;
  }

  .accommodation-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 2.5rem;
  }

  .sticky-panel {
    position: sticky;
    top: calc(var(--header) + 24px);
  }

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

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

  .featured-room {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  }

  .featured-room:nth-child(even) {
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.08fr);
  }

  .featured-room:nth-child(even) .card-media {
    order: 2;
  }

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

  .gallery-editorial {
    grid-template-columns: 1.15fr 0.85fr 1fr;
    grid-auto-flow: dense;
  }

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

  .carousel {
    grid-auto-columns: calc((100% - 2rem) / 3);
  }

  .footer-main {
    grid-template-columns: 1.15fr 0.75fr 0.95fr 0.9fr;
  }
}

@media (min-width: 1180px) {
  h1 {
    font-size: 5.75rem;
  }

  h2 {
    font-size: 4.35rem;
  }
}

@media (max-width: 620px) {
  :root {
    --header: 76px;
  }

  .nav {
    min-height: var(--header);
  }

  .brand {
    font-size: 1.08rem;
  }

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

  .hero,
  .page-hero {
    min-height: 620px;
  }

  .hero::after,
  .banner-section::after,
  .image-cta::after {
    background:
      linear-gradient(180deg, rgba(9, 21, 14, 0.5), rgba(9, 21, 14, 0.92)),
      linear-gradient(90deg, rgba(9, 21, 14, 0.35), rgba(9, 21, 14, 0.2));
  }

  .hero-content {
    padding: 6.4rem 0 1.5rem;
  }

  .actions .btn,
  .form .btn {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: 44px;
  }

  .section {
    padding: 4.2rem 0;
  }

  .media-frame {
    min-height: 260px;
  }

  .card-body .btn,
  .featured-room .btn {
    width: 100%;
  }

  .whatsapp-float {
    left: 16px;
    right: 16px;
  }
}

/* Compatibility for pages that use direct image backgrounds and inline SVG icons. */
.hero-bg,
.band-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}

.cta-band {
  position: relative;
  overflow: clip;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(155, 89, 62, 0.18), transparent 42%),
    var(--forest-2);
}

.cta-band .cta-content {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 5rem 0;
}

.cta-band h2 {
  color: #fff;
}

.cta-band .lead {
  color: rgba(255, 255, 255, 0.86);
}

.eyebrow {
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow,
.page-hero .eyebrow,
.image-cta .eyebrow,
.banner-section .eyebrow,
.cta-band .eyebrow {
  color: var(--gold);
}

.hero-facts > li:not(.fact),
.feature-strip li {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  padding: 0.7rem 0.78rem;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.25;
}

.hero-facts > li:not(.fact) {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.feature-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 0.45rem 0 0;
  list-style: none;
}

.feature-strip li {
  color: var(--forest);
  background: rgba(199, 161, 91, 0.16);
  border: 1px solid rgba(199, 161, 91, 0.22);
}

.icon-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-box {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: rgba(199, 161, 91, 0.16);
  border: 1px solid rgba(199, 161, 91, 0.22);
  border-radius: var(--radius);
}

.icon-box svg,
.btn > svg:not(.icon),
.icon-btn > svg:not(.icon),
.hero-facts svg:not(.icon),
.feature-strip svg:not(.icon),
.list li > svg:not(.icon),
.footer-list li > svg:not(.icon) {
  width: 1.12rem;
  height: 1.12rem;
  flex: 0 0 auto;
}

.list li > svg:not(.icon),
.footer-list li > svg:not(.icon) {
  margin-top: 0.22rem;
  color: var(--terracotta);
}

.footer-list li > svg:not(.icon) {
  color: var(--gold);
}

.amenity-card {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: 1.22rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 40px rgba(23, 35, 27, 0.07);
}

.photo {
  position: relative;
  overflow: clip;
  min-height: 300px;
  aspect-ratio: 4 / 3;
  background: #d8d2c4;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo.tall {
  aspect-ratio: 4 / 5;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (min-width: 900px) {
  .gallery-editorial {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: row;
  }
}

.container,
.nav,
.hero-content,
.banner-content,
.cta-content,
.cta-band .cta-content {
  width: min(var(--container), calc(100vw - 32px));
}

@media (max-width: 620px) {
  .container,
  .nav,
  .hero-content,
  .banner-content,
  .cta-content,
  .cta-band .cta-content {
    width: calc(100dvw - 32px);
    max-width: calc(100dvw - 32px);
  }

  .editorial > *,
  .split > *,
  .destination-item > *,
  .contact-layout > *,
  .accommodation-layout > *,
  .hero-copy,
  .section-head,
  .lead {
    min-width: 0;
    max-width: 100%;
  }
}
