:root {
  color-scheme: light;
  --forest: #123d31;
  --forest-strong: #082820;
  --forest-soft: #e3eee8;
  --orange: #b7672a;
  --orange-soft: #f4dfcf;
  --river: #286f82;
  --river-soft: #dcecf0;
  --warm: #fbf7ef;
  --warm-deep: #f2eadc;
  --charcoal: #1d211f;
  --muted: #68706b;
  --line: rgba(18, 61, 49, 0.14);
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 26px 70px rgba(18, 61, 49, 0.15);
  --shadow-soft: 0 16px 42px rgba(18, 61, 49, 0.11);
  --radius-sm: 8px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 78px;
  --ui-font: "Segoe UI Variable", "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="dark"] {
  color-scheme: dark;
  --forest: #8cc5a7;
  --forest-strong: #e8f5ed;
  --forest-soft: #17372d;
  --orange: #f0a066;
  --orange-soft: #462916;
  --river: #8dc8d5;
  --river-soft: #173943;
  --warm: #101613;
  --warm-deep: #17211d;
  --charcoal: #f7f1e8;
  --muted: #bec7bf;
  --line: rgba(247, 241, 232, 0.14);
  --glass: rgba(16, 22, 19, 0.72);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 16px 42px rgba(0, 0, 0, 0.24);
}

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

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background: var(--warm);
  color: var(--charcoal);
  font-family: var(--ui-font);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button {
  cursor: pointer;
}

::selection {
  background: var(--orange);
  color: #fff;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 2000;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--warm);
  padding: 0.7rem 1rem;
  transition: transform 180ms ease;
}

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background: var(--forest-strong);
  color: var(--warm);
  transition: opacity 420ms var(--ease), visibility 420ms var(--ease);
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  display: grid;
  gap: 1rem;
  place-items: center;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.loader-ring {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 850ms linear infinite;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1800;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--river));
  box-shadow: 0 0 24px rgba(183, 103, 42, 0.45);
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2500;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 160ms ease, width 220ms var(--ease), height 220ms var(--ease);
}

.custom-cursor.is-active {
  opacity: 1;
}

.custom-cursor.is-hovering {
  width: 44px;
  height: 44px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 40px, 820px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1600;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(251, 247, 239, 0.78);
  backdrop-filter: blur(24px);
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

[data-theme="dark"] .site-header {
  background: rgba(16, 22, 19, 0.78);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 12px 34px rgba(18, 61, 49, 0.09);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  min-width: max-content;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background:
    #fff
    url("images/icon-192.png")
    center / contain
    no-repeat;
  color: transparent;
  font-size: 0;
  box-shadow: 0 12px 26px rgba(183, 103, 42, 0.26);
  overflow: hidden;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  transition: color 180ms ease, background 180ms ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.icon-button,
.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--glass);
  color: var(--charcoal);
  transition: transform 180ms var(--ease), background 180ms ease, border-color 180ms ease;
}

[data-theme-toggle] {
  width: auto;
  min-width: 54px;
  border-radius: 999px;
  padding: 0 0.75rem;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.icon-button:hover,
.menu-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(183, 103, 42, 0.38);
}

.menu-toggle {
  display: none;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 200ms var(--ease), opacity 200ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-lines::before {
  transform: translateY(-6px);
}

.menu-lines::after {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.52rem;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.82rem 1.16rem;
  font-family: var(--ui-font);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.05;
  letter-spacing: 0.01em;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn .lucide,
.float-button .lucide,
.mobile-sticky-cta .lucide {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  stroke-width: 2.15;
}

.btn .lucide {
  margin-left: -0.1rem;
}

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

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 32px rgba(183, 103, 42, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(183, 103, 42, 0.34);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(16px);
}

.btn-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--forest-strong);
}

.btn-outline:hover {
  background: var(--forest-soft);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: clip;
  isolation: isolate;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 900ms var(--ease);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 24, 19, 0.82), rgba(5, 24, 19, 0.48) 42%, rgba(5, 24, 19, 0.16) 78%),
    linear-gradient(0deg, rgba(8, 40, 32, 0.34), rgba(8, 40, 32, 0));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.42fr);
  align-items: end;
  gap: 2rem;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(5rem, 9vw, 9rem) 0 clamp(2rem, 5vw, 4rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1,
.page-hero h1 {
  max-width: 930px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.14);
  padding: 1.25rem;
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.hero-panel strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.hero-panel p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.trust-pills span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.42rem 0.72rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
}

.booking-ribbon {
  position: relative;
  z-index: 10;
  margin-top: -42px;
}

.booking-ribbon .ribbon-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(150px, 0.6fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
  box-shadow: var(--shadow);
}

.ribbon-item {
  background: var(--glass);
  padding: 1.2rem;
  backdrop-filter: blur(18px);
}

.ribbon-item span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ribbon-item strong {
  display: block;
  margin-top: 0.2rem;
  color: var(--forest-strong);
  font-size: 1rem;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.section-stack {
  margin-top: clamp(1.5rem, 4vw, 3rem);
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.section-title {
  margin: 0;
  color: var(--forest-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 1;
}

.section-text,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.lead {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 0.86fr);
}

.split.reverse .split-copy {
  order: 2;
}

.split-copy h2 {
  margin: 0;
  color: var(--forest-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1;
}

.split-copy p {
  color: var(--muted);
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--forest-soft);
  box-shadow: var(--shadow-soft);
}

.image-frame img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.image-frame:hover img {
  transform: scale(1.045);
}

.image-frame.tall img {
  min-height: 560px;
}

.caption-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 280px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 1rem;
  color: var(--charcoal);
  backdrop-filter: blur(18px);
}

.caption-card strong {
  display: block;
  color: var(--forest-strong);
}

.caption-card span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.feature-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--charcoal);
}

.feature-list li::before {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

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

.card,
.story-card,
.stay-card,
.experience-card,
.attraction-card,
.faq-item,
.contact-card,
.capacity-card,
.tariff-card,
.policy-card,
.review-card,
.seo-link-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-soft);
}

[data-theme="dark"] .card,
[data-theme="dark"] .story-card,
[data-theme="dark"] .stay-card,
[data-theme="dark"] .experience-card,
[data-theme="dark"] .attraction-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .contact-card,
[data-theme="dark"] .capacity-card,
[data-theme="dark"] .tariff-card,
[data-theme="dark"] .policy-card,
[data-theme="dark"] .review-card,
[data-theme="dark"] .seo-link-card {
  background: rgba(255, 255, 255, 0.04);
}

.card {
  padding: 1.35rem;
}

.card h3,
.story-card h3,
.stay-card h3,
.experience-card h3,
.attraction-card h3,
.contact-card h3,
.capacity-card h3,
.tariff-card h3,
.policy-card h3,
.review-card h3,
.seo-link-card h3 {
  margin: 0 0 0.55rem;
  color: var(--forest-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.15;
}

.card p,
.story-card p,
.stay-card p,
.experience-card p,
.attraction-card p,
.contact-card p,
.capacity-card p,
.tariff-card p,
.policy-card p,
.review-card p,
.seo-link-card p {
  margin: 0;
  color: var(--muted);
}

.story-card {
  padding: 1.4rem;
}

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

.capacity-grid,
.tariff-grid,
.policy-grid,
.review-grid,
.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.capacity-grid,
.policy-grid,
.review-grid,
.seo-link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.capacity-card,
.tariff-card,
.policy-card,
.review-card,
.seo-link-card {
  padding: 1.25rem;
}

.capacity-card strong,
.tariff-card strong,
.policy-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  display: block;
  margin: 0.1rem 0 0.55rem;
  color: var(--forest-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-family: inherit;
  font-size: 0.92rem;
}

.detail-list,
.amenity-check-grid {
  display: grid;
  gap: 0.75rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

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

.detail-list li,
.amenity-check-grid li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--charcoal);
  font-weight: 720;
}

.detail-list li::before,
.amenity-check-grid li::before {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 0.22rem;
  border-radius: 50%;
  background: var(--forest-soft);
  color: var(--forest-strong);
  content: "";
  box-shadow: inset 0 0 0 5px var(--orange);
}

.review-card {
  display: grid;
  align-content: space-between;
  position: relative;
  min-height: 240px;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38)),
    var(--glass);
}

[data-theme="dark"] .review-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--glass);
}

.review-card::after {
  position: absolute;
  top: -36px;
  right: 18px;
  color: rgba(183, 103, 42, 0.16);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8rem;
  line-height: 1;
  content: "\"";
}

.review-card-featured {
  background:
    linear-gradient(135deg, rgba(8, 40, 32, 0.95), rgba(18, 61, 49, 0.86)),
    url("images/gallery-2.jpg") center / cover;
}

.review-card-featured blockquote,
.review-card-featured figcaption,
.review-card-featured .stars {
  color: #fff;
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 1.6vw, 1.38rem);
  line-height: 1.34;
}

.review-card figcaption {
  position: relative;
  z-index: 1;
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 780;
}

.stars {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seo-link-card {
  display: grid;
  gap: 0.6rem;
  min-height: 180px;
}

.seo-link-card a {
  align-self: end;
  color: var(--orange);
  font-weight: 900;
}

.form-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.btn-whatsapp {
  background: #1f9d62;
  color: #fff;
  box-shadow: 0 14px 32px rgba(31, 157, 98, 0.25);
}

.whatsapp-tip,
.fine-print {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.counter {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  line-height: 1;
}

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

.stay-card,
.experience-card {
  overflow: hidden;
}

.stay-card img,
.experience-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body {
  padding: 1.2rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.9rem 0 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  background: var(--forest-soft);
  padding: 0.3rem 0.7rem;
  color: var(--forest-strong);
  font-size: 0.78rem;
  font-weight: 850;
}

.gallery-preview,
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 260px;
  gap: 1rem;
}

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

.gallery-rich {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
}

.gallery-link {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--forest-soft);
  padding: 0;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.gallery-link:first-child {
  grid-row: span 2;
}

.gallery-rich .gallery-link:nth-child(1),
.gallery-rich .gallery-link:nth-child(6),
.gallery-rich .gallery-link:nth-child(11) {
  grid-row: span 2;
}

.gallery-rich .gallery-link:nth-child(3),
.gallery-rich .gallery-link:nth-child(8) {
  grid-column: span 2;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.gallery-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease), filter 220ms ease;
}

.gallery-link:hover img,
.gallery-link:focus-visible img {
  transform: scale(1.05);
  filter: brightness(0.82);
}

.gallery-link span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  border-radius: 999px;
  background: rgba(8, 40, 32, 0.68);
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

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

.amenity-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.amenity-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.amenity-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 24, 19, 0.78), rgba(5, 24, 19, 0.1));
  content: "";
}

.amenity-card:hover img {
  transform: scale(1.05);
}

.amenity-card .card-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
}

.amenity-card h3 {
  color: #fff;
}

.amenity-card p {
  color: rgba(255, 255, 255, 0.82);
}

.attraction-card {
  padding: 1.25rem;
}

.distance {
  display: inline-flex;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: var(--river-soft);
  padding: 0.35rem 0.65rem;
  color: var(--river);
  font-size: 0.75rem;
  font-weight: 900;
}

.testimonial-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--forest-strong);
  color: #fff;
  box-shadow: var(--shadow);
}

.testimonial-track {
  display: flex;
  transition: transform 500ms var(--ease);
}

.testimonial {
  flex: 0 0 100%;
  padding: clamp(1.6rem, 4vw, 3rem);
}

.testimonial blockquote {
  margin: 0;
  max-width: 880px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.testimonial figcaption {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.carousel-actions {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 0.5rem;
}

.carousel-actions button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
  box-shadow: none;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  padding: 1.15rem 1.25rem;
  color: var(--forest-strong);
  font-weight: 850;
  text-align: left;
}

.faq-question span:last-child {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--forest-soft);
  color: var(--forest-strong);
  display: grid;
  place-items: center;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 250ms var(--ease);
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-question span:last-child {
  background: var(--orange);
  color: #fff;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(8, 40, 32, 0.92), rgba(18, 61, 49, 0.82)),
    url("images/hero-bg.jpg") center / cover;
  padding: clamp(2rem, 6vw, 4.5rem);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 1;
}

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

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.page-hero {
  position: relative;
  min-height: 62svh;
  overflow: clip;
  isolation: isolate;
  display: grid;
  align-items: end;
  color: #fff;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5, 24, 19, 0.82), rgba(5, 24, 19, 0.36));
  content: "";
}

.page-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .container {
  padding: clamp(5rem, 12vw, 9rem) 0 clamp(2.5rem, 6vw, 5rem);
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  list-style: none;
  font-size: 0.83rem;
  font-weight: 800;
}

.breadcrumb a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.45rem;
  opacity: 0.6;
}

.two-column {
  columns: 2;
  column-gap: 3rem;
}

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

.package-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}

.package-card h3 {
  margin: 0 0 0.45rem;
  color: var(--forest-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.package-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.package-card li::before {
  color: var(--orange);
  content: "- ";
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.contact-card {
  padding: 1.25rem;
}

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

.contact-list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.75rem;
  color: var(--forest-strong);
  font-weight: 800;
}

.form-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--glass);
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

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

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--forest-strong);
  font-size: 0.84rem;
  font-weight: 850;
}

.form-field label .fine-print {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.74);
  padding: 0.86rem 0.92rem;
  color: var(--charcoal);
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

[data-theme="dark"] .form-field input,
[data-theme="dark"] .form-field select,
[data-theme="dark"] .form-field textarea {
  background: rgba(255, 255, 255, 0.06);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(183, 103, 42, 0.68);
  box-shadow: 0 0 0 4px rgba(183, 103, 42, 0.12);
}

.field-error {
  min-height: 1.1rem;
  color: #b42318;
  font-size: 0.78rem;
  font-weight: 800;
}

[data-theme="dark"] .field-error {
  color: #ffb4a9;
}

.form-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--forest-strong);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(150px, 0.5fr));
  gap: 2rem;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.15rem 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 1400;
  display: grid;
  gap: 0.65rem;
}

.float-button {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--forest-strong);
  color: #fff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
  transition: transform 180ms var(--ease);
}

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

.float-button.whatsapp {
  background: #1f9d62;
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1400;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(20px);
}

.mobile-sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 58px;
  color: var(--forest-strong);
  font-size: 0.78rem;
  font-weight: 900;
}

.cookie-consent {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 1500;
  width: min(420px, calc(100% - 36px));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  padding: 1rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 300ms var(--ease), opacity 300ms ease;
}

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

.cookie-consent p {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2400;
  display: none;
  place-items: center;
  padding: 1.25rem;
  background: rgba(5, 24, 19, 0.72);
  backdrop-filter: blur(12px);
}

.modal.is-open,
.lightbox.is-open {
  display: grid;
}

.modal-card {
  width: min(100%, 500px);
  border-radius: var(--radius-lg);
  background: var(--warm);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.modal-card h2 {
  margin: 0 0 0.6rem;
  color: var(--forest-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 500;
}

.modal-card p {
  color: var(--muted);
}

.lightbox-content {
  position: relative;
  width: min(100%, 1060px);
}

.lightbox img {
  width: 100%;
  max-height: 82svh;
  border-radius: var(--radius);
  object-fit: contain;
  background: #000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.44);
}

.lightbox-caption {
  margin-top: 0.8rem;
  color: #fff;
  font-weight: 850;
  text-align: center;
}

.close-lightbox,
.close-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.close-modal {
  position: static;
  margin: 1rem auto 0;
  background: var(--forest-strong);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

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

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1040px) {
  .menu-toggle {
    display: inline-grid;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 20px;
    right: 20px;
    z-index: 1700;
    display: grid;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--warm);
    padding: 0.6rem;
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms var(--ease), opacity 220ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    justify-content: center;
  }

  .hero-grid,
  .section-head,
  .split,
  .split.reverse,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-copy {
    order: initial;
  }

  .booking-ribbon {
    margin-top: 0;
    padding-top: 1rem;
  }

  .booking-ribbon .ribbon-grid,
  .story-grid,
  .values-grid,
  .package-grid,
  .capacity-grid,
  .tariff-grid,
  .policy-grid,
  .review-grid,
  .seo-link-grid,
  .amenity-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid,
  .stay-grid,
  .experience-grid,
  .amenity-grid,
  .attraction-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  .container,
  .narrow {
    width: min(100% - 28px, var(--container));
  }

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

  .brand-tagline,
  .nav-actions .btn {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.8rem, 17vw, 4.2rem);
  }

  .hero-grid {
    align-items: end;
    min-height: 78svh;
  }

  .hero-panel {
    display: none;
  }

  .booking-ribbon .ribbon-grid,
  .story-grid,
  .card-grid,
  .stay-grid,
  .experience-grid,
  .amenity-grid,
  .attraction-grid,
  .gallery-preview,
    .gallery-grid,
    .values-grid,
    .package-grid,
    .capacity-grid,
    .tariff-grid,
    .policy-grid,
    .review-grid,
    .seo-link-grid,
    .amenity-check-grid,
    .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-preview,
  .gallery-grid {
    grid-auto-rows: 250px;
  }

  .gallery-link:first-child {
    grid-row: span 1;
  }

  .gallery-rich .gallery-link:nth-child(1),
  .gallery-rich .gallery-link:nth-child(3),
  .gallery-rich .gallery-link:nth-child(6),
  .gallery-rich .gallery-link:nth-child(8),
  .gallery-rich .gallery-link:nth-child(11) {
    grid-column: auto;
    grid-row: span 1;
  }

  .two-column {
    columns: 1;
  }

  .image-frame img,
  .image-frame.tall img {
    min-height: 330px;
  }

  .caption-card {
    position: static;
    max-width: none;
    border-radius: 0;
  }

  .footer-bottom {
    display: grid;
  }

  .floating-actions {
    right: 12px;
    bottom: 74px;
  }

  .mobile-sticky-cta {
    display: grid;
  }

  .cookie-consent {
    bottom: 68px;
  }

  .custom-cursor {
    display: none;
  }
}

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