:root {
  --green-950: #062f25;
  --green-900: #08382c;
  --green-800: #0d4d38;
  --green-700: #12613f;
  --leaf: #7c9857;
  --river: #5da9b8;
  --sun: #e6b64a;
  --clay: #b86f46;
  --cream: #f6f1e7;
  --paper: #fffdf8;
  --mist: #e8eee8;
  --ink: #17201c;
  --muted: #5d6861;
  --line: rgba(6, 47, 37, 0.14);
  --shadow: 0 24px 80px rgba(6, 47, 37, 0.16);
  --soft-shadow: 0 12px 38px rgba(6, 47, 37, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: white;
  background: var(--green-950);
  border-radius: var(--radius);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 3vw, 2rem);
  color: white;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-solid,
.site-header.is-open,
.site-header.header-dark {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 8px 28px rgba(6, 47, 37, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
}

.brand span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.94rem;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  font-weight: 800;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-cta {
  padding: 0.76rem 1.05rem;
  color: var(--green-950);
  background: var(--sun);
  border-radius: var(--radius);
  box-shadow: 0 8px 26px rgba(230, 182, 74, 0.22);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  /* svh fallback for mobile UI compatibility */
  min-height: 64.4vh;
  min-height: 64.4svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--green-950);
}

.hero-detail {
  /* fallback for browsers that do not support svh */
  min-height: 72vh;
  min-height: 72svh;
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

/* Provide a stable aspect ratio to reduce layout shifting for large hero/gallery images */
.hero picture img,
.masonry-gallery img,
.gallery-item img {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-home picture img {
  object-position: center 42%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 22, 17, 0.84), rgba(3, 22, 17, 0.46) 52%, rgba(3, 22, 17, 0.18)),
    linear-gradient(0deg, rgba(3, 22, 17, 0.78), rgba(3, 22, 17, 0.08) 52%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10rem 0 7rem;
}

.hero-detail .hero-content {
  padding-bottom: 5rem;
}

.eyebrow,
.section-kicker,
.card-kicker {
  margin: 0 0 0.75rem;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.intro h2,
.page-section h2,
.detail-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(3.6rem, 9vw, 8.8rem);
}

.hero-detail h1 {
  max-width: 860px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
}

.hero-line {
  max-width: 790px;
  margin: 1rem 0 0;
  font-size: clamp(0.675rem, 1.5vw, 1.2rem);
  font-weight: 425;
  line-height: 1.22;
}

.hero-copy {
  max-width: 690px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

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

.hero-badges {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: 2rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero-badges span {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.08rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
.accommodation-card:hover,
.gallery-item:hover {
  transform: translateY(-3px);
}

.button.primary {
  color: var(--green-950);
  background: var(--sun);
  box-shadow: 0 12px 30px rgba(230, 182, 74, 0.25);
}

.button.secondary,
.button.glass {
  color: white;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.button.outline {
  color: var(--green-950);
  border-color: var(--line);
  background: white;
}

.section,
.section-band,
.page-section,
.detail-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-band {
  background: var(--cream);
}

.intro-grid,
.safety-grid,
.rates-grid,
.retreat-grid,
.experience-layout,
.detail-grid,
.contact-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.intro-grid,
.safety-grid,
.detail-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.rates-grid,
.experience-layout,
.retreat-grid,
.contact-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.intro h2,
.section h2,
.page-section h2,
.detail-section h2 {
  font-size: clamp(2.15rem, 5vw, 4.4rem);
}

.intro p,
.section-heading p,
.experience-copy p,
.rates-intro p,
.safety-copy p,
.retreat-copy p,
.detail-copy p,
.contact-card p,
.faq p {
  color: var(--muted);
  font-size: 1.03rem;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 3rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.stats-row div {
  padding: 1.25rem;
  background: var(--paper);
}

.stats-row strong,
.stats-row span {
  display: block;
}

.stats-row span {
  margin-top: 0.2rem;
  color: var(--muted);
}

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

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

.accommodation-card {
  min-width: 0;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--soft-shadow);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.accommodation-card:hover,
.accommodation-card:focus-visible {
  box-shadow: var(--shadow);
}

.accommodation-card img {
  display: block;
  width: 100%;
  height: clamp(190px, 19vw, 230px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.15rem;
}

.card-body h3 {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.18;
}

.card-body p:not(.card-kicker) {
  color: var(--muted);
}

.card-kicker {
  color: var(--green-700);
  font-size: 0.72rem;
}

.card-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.card-meta span {
  padding: 0.42rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-900);
  font-size: 0.78rem;
  font-weight: 850;
  background: var(--cream);
}

.card-action {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--green-800);
  font-weight: 900;
}

.image-led {
  color: white;
  background: var(--green-950);
}

.experience-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.experience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.experience-list span {
  padding: 0.58rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

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

.editorial-grid img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.editorial-grid img:first-child {
  grid-row: span 2;
  height: 596px;
}

.retreat-section,
.gallery-section,
.safety-section {
  background: var(--paper);
}

.retreat-visual img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-cards {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.mini-cards article {
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.mini-cards h3 {
  margin: 0 0 0.3rem;
}

.mini-cards p {
  margin: 0;
}

.gallery-category {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.gallery-heading {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1rem;
  align-items: end;
}

.gallery-heading h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.gallery-heading p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  color: white;
  background: var(--green-950);
  cursor: pointer;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

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

.gallery-item::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent);
  opacity: 0.9;
}

.gallery-item span {
  position: absolute;
  right: 1rem;
  bottom: 0.85rem;
  left: 1rem;
  z-index: 1;
  font-weight: 900;
  text-align: left;
}

.rates-band {
  background: linear-gradient(180deg, var(--cream), #edf3ef);
}

.rate-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.rate-table > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.8fr);
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-top: 1px solid var(--line);
}

.rate-table > div:first-child {
  border-top: 0;
}

.rate-head {
  color: white;
  background: var(--green-950);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rate-table span {
  color: var(--muted);
}

.rate-table strong {
  color: var(--green-950);
}

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

.safety-copy p {
  margin: 0;
  padding-left: 1rem;
  border-left: 3px solid var(--river);
}

.cta-section {
  background:
    linear-gradient(rgba(6, 47, 37, 0.73), rgba(6, 47, 37, 0.73)),
    url("Images/WhatsApp Image 2024-10-15 at 20.57.29 (1).webp") center / cover;
}

.cta-panel {
  max-width: 820px;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: white;
  background: rgba(6, 47, 37, 0.62);
  backdrop-filter: blur(12px);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  padding: 2rem 0;
  color: white;
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
}

.footer-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid > p {
  text-align: right;
}

.footer-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 0.7rem;
  border-radius: 50%;
  background: white;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 800;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(2, 12, 9, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 82vh;
  width: min(1100px, 100%);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
}

.lightbox p {
  max-width: 760px;
  margin: 1rem auto 0;
  color: white;
  text-align: center;
  font-size: 1.1rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

/* Detail pages */
.breadcrumb {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 850;
}

.detail-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: -3rem;
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.detail-summary div {
  padding: 1.2rem;
  background: white;
}

.detail-summary span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-summary strong {
  display: block;
  margin-top: 0.2rem;
}

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

.detail-copy p {
  margin: 0;
}

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

.amenity,
.faq,
.related-card,
.contact-card,
.form-card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--soft-shadow);
}

.amenity h3,
.faq h3,
.related-card h3 {
  margin: 0 0 0.35rem;
}

.amenity p,
.related-card p {
  margin: 0;
  color: var(--muted);
}

.detail-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  grid-auto-rows: 240px;
  gap: 0.75rem;
}

.detail-gallery button {
  min-height: 0;
}

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

.related-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  text-decoration: none;
}

.related-card img {
  width: calc(100% + 2.5rem);
  max-width: none;
  margin: -1.25rem -1.25rem 1rem;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.two-column-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  padding: 0;
  list-style: none;
}

.two-column-list li {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  font-weight: 800;
}

/* Contact page */
.contact-hero {
  min-height: 56svh;
}

.contact-card dl,
.payment-panel dl {
  display: grid;
  gap: 1rem;
  margin: 1.2rem 0 0;
}

.contact-card div,
.payment-panel div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.contact-card dt,
.payment-panel dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card dd,
.payment-panel dd {
  margin: 0.2rem 0 0;
  font-weight: 850;
}

.map-panel {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 2rem;
  border-radius: var(--radius);
  color: white;
  background:
    linear-gradient(rgba(6, 47, 37, 0.7), rgba(6, 47, 37, 0.7)),
    url("Images/Thiba River Camping 2.webp") center / cover;
  box-shadow: var(--shadow);
}

.map-panel div {
  max-width: 520px;
  text-align: center;
}

.form-card label {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
  color: var(--green-950);
  font-weight: 850;
}

.form-card input,
.form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem;
  color: var(--ink);
  background: var(--paper);
}

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

@media (max-width: 1120px) {
  .accommodation-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 0.85rem;
  }

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

  .nav-cta {
    text-align: center;
  }

  .hero-badges {
    display: none;
  }

  .intro-grid,
  .safety-grid,
  .rates-grid,
  .experience-layout,
  .retreat-grid,
  .detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-row,
  .detail-summary,
  .amenity-grid,
  .faq-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-heading {
    display: block;
  }

  .gallery-heading p {
    margin-top: 0.35rem;
  }

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

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

  .editorial-grid img:first-child {
    height: 420px;
  }

  .retreat-visual img {
    min-height: 360px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-grid > p {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .wrap,
  .hero-content {
    width: min(100% - 24px, 1180px);
  }

  .brand span {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero,
  .hero-detail {
    /* reduce vertical footprint on small screens */
    min-height: 70vh;
    min-height: 70svh;
  }

  .hero h1,
  .hero-detail h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

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

  .button {
    width: 100%;
  }

  .stats-row,
  .detail-summary,
  .accommodation-grid,
  .amenity-grid,
  .faq-grid,
  .related-grid,
  .masonry-gallery,
  .detail-gallery,
  .editorial-grid,
  .two-column-list {
    grid-template-columns: 1fr;
  }

  .accommodation-card {
    min-height: 440px;
  }

  .gallery-item.wide,
  .gallery-item.tall,
  .detail-gallery button:first-child {
    grid-column: auto;
    grid-row: auto;
  }

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

  .editorial-grid img,
  .editorial-grid img:first-child {
    height: 280px;
  }

  .rate-table > div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .lightbox {
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

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


/* Canon Wellness x Thiba River Camp integration */
.outline-dark { color: var(--green-950); border-color: rgba(6,47,37,.32); background: transparent; }
.outline-dark:hover { color: white; background: var(--green-950); }
.wellness-ecosystem { background: linear-gradient(180deg, var(--cream), var(--paper)); }
.wellness-feature { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(42px, 7vw, 90px); align-items: center; }
.wellness-visual { position: relative; min-height: 620px; }
.wellness-visual > img { width: 100%; height: 620px; object-fit: cover; border-radius: 180px 180px 28px 28px; box-shadow: var(--shadow); }
.wellness-signature { position: absolute; right: -24px; bottom: 28px; display: grid; grid-template-columns: auto 1fr; gap: 13px; align-items: center; max-width: 310px; padding: 15px 18px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,253,248,.96); box-shadow: var(--soft-shadow); }
.wellness-signature img { width: 48px; height: 48px; object-fit: contain; }
.wellness-signature span, .wellness-signature strong { display: block; }
.wellness-signature span { color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.wellness-signature strong { color: var(--green-950); font-size: .9rem; }
.wellness-copy h2 { max-width: 720px; }
.wellness-copy > p:not(.section-kicker) { color: var(--muted); font-size: 1.04rem; }
.wellness-benefits { display: flex; flex-wrap: wrap; gap: 9px; margin: 26px 0; }
.wellness-benefits span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--green-900); background: rgba(255,255,255,.72); font-size: .82rem; font-weight: 800; }
.wellness-actions { margin-top: 28px; }
.availability-note { margin-top: 16px !important; font-size: .8rem !important; }
.wellness-paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: clamp(44px, 7vw, 82px); }
.wellness-path { min-height: 330px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.82); box-shadow: var(--soft-shadow); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.wellness-path:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.wellness-path > span { margin-bottom: auto; color: var(--leaf); font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.wellness-path h3 { margin: 52px 0 12px; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.wellness-path p { color: var(--muted); }
.wellness-path strong { margin-top: auto; color: var(--green-900); }
.retreat-section .mini-cards { grid-template-columns: repeat(2,1fr); }
.detail-wellness-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: clamp(30px,5vw,56px); border-radius: 24px; color: white; background: linear-gradient(135deg, var(--green-950), var(--green-700)); box-shadow: var(--shadow); }
.detail-wellness-inner .section-kicker { color: var(--sun); }
.detail-wellness-inner h2 { margin-bottom: 12px; }
.detail-wellness-inner p:not(.section-kicker) { max-width: 720px; margin: 0; color: rgba(255,255,255,.76); }
.detail-wellness-inner .button { flex: 0 0 auto; color: var(--green-950); background: var(--sun); }
.wellness-page-hero .hero-overlay { background: linear-gradient(90deg, rgba(4,31,24,.88), rgba(4,31,24,.38) 58%, rgba(4,31,24,.28)); }
.wellness-package-section { background: var(--cream); }
.package-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.package-card { display: flex; flex-direction: column; padding: clamp(26px,4vw,44px); border: 1px solid var(--line); border-radius: 24px; background: var(--paper); box-shadow: var(--soft-shadow); }
.package-card.featured { color: white; background: linear-gradient(145deg, var(--green-950), var(--green-700)); }
.package-label { color: var(--leaf); font-size: .75rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.package-card.featured .package-label { color: var(--sun); }
.package-card h3 { margin: 18px 0 12px; font-size: clamp(2rem,4vw,3rem); }
.package-promise { color: var(--muted); font-size: 1.06rem; }
.package-card.featured .package-promise, .package-card.featured li { color: rgba(255,255,255,.78); }
.package-card ul { display: grid; gap: 10px; margin: 18px 0 30px; padding-left: 20px; }
.package-card .button { margin-top: auto; align-self: flex-start; }
.package-card.featured .button { color: var(--green-950); background: var(--sun); }
.wellness-journey-section { background: var(--green-950); color: white; }
.wellness-journey-section .section-kicker { color: var(--sun); }
.wellness-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.wellness-steps article { padding: 26px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.05); }
.wellness-steps article > span { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 42px; border-radius: 12px; color: var(--green-950); background: var(--sun); font-weight: 900; }
.wellness-steps h3 { margin-bottom: 10px; }
.wellness-steps p { margin: 0; color: rgba(255,255,255,.7); }
.wellness-proof-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px,7vw,90px); align-items: start; }
.wellness-proof-grid .mini-cards { grid-template-columns: 1fr; }
.form-card select { width: 100%; min-height: 52px; padding: .8rem .9rem; color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius); background: white; }
@media (max-width: 900px) {
  .wellness-feature, .wellness-proof-grid { grid-template-columns: 1fr; }
  .wellness-visual { min-height: 520px; }
  .wellness-visual > img { height: 520px; }
  .wellness-signature { right: 18px; }
  .wellness-paths { grid-template-columns: 1fr; }
  .wellness-path { min-height: 260px; }
  .package-grid { grid-template-columns: 1fr; }
  .wellness-steps { grid-template-columns: repeat(2,1fr); }
  .detail-wellness-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 620px) {
  .wellness-visual, .wellness-visual > img { min-height: 430px; height: 430px; }
  .wellness-signature { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .wellness-path { min-height: 230px; padding: 24px; }
  .wellness-path h3 { margin-top: 36px; }
  .retreat-section .mini-cards, .wellness-steps { grid-template-columns: 1fr; }
  .package-card .button { width: 100%; }
  .detail-wellness-inner .button { width: 100%; }
}
