:root {
  --ink: #16211e;
  --muted: #6d746f;
  --paper: #fbfaf6;
  --soft: #eef3ee;
  --gold: #b68a42;
  --gold-dark: #8b6731;
  --river: #2f6f78;
  --pine: #213b33;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(17, 31, 27, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

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

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

main img,
main video {
  cursor: zoom-in;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: rgba(18, 28, 25, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.navbar {
  min-height: 78px;
  padding: 0;
}

.navbar-brand img {
  width: 190px;
  height: auto;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(182, 138, 66, 0.35);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.92%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 14px;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--white);
}

.nav-link--accent {
  color: var(--ink);
  background: var(--gold);
  border-radius: 4px;
}

.nav-link--accent:hover,
.nav-link--accent:focus {
  color: var(--ink);
  background: #d0aa63;
}

.hero {
  position: relative;
  min-height: 92vh;
  color: var(--white);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 160px 0 116px;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

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

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(13, 24, 20, 0.86) 0%, rgba(13, 24, 20, 0.58) 48%, rgba(13, 24, 20, 0.22) 100%),
    linear-gradient(0deg, rgba(13, 24, 20, 0.6), rgba(13, 24, 20, 0.05));
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-left: max(16px, calc((100vw - 1180px) / 2));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  line-height: 1.04;
  font-weight: 800;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 780;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.2;
  font-weight: 760;
}

.hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1;
}

.btn-gold {
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--gold);
}

.btn-gold:hover,
.btn-gold:focus {
  color: var(--ink);
  background: #d0aa63;
  border-color: #d0aa63;
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.54);
}

.btn-ghost:hover,
.btn-ghost:focus {
  color: var(--ink);
  background: var(--white);
}

.hero__facts {
  position: absolute;
  right: 32px;
  bottom: 26px;
  left: 32px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1040px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.18);
}

.hero__facts span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px;
  background: rgba(18, 28, 25, 0.74);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  text-align: center;
}

.booking-strip {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding: 42px 0;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(22, 33, 30, 0.1);
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 8px;
  margin: 0;
}

.booking-form span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-form input {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(22, 33, 30, 0.16);
  border-radius: 4px;
  font: inherit;
}

.booking-form input:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 0.15rem rgba(182, 138, 66, 0.2);
}

.section {
  padding: 104px 0;
}

.intro__grid,
.virtual-tour__grid,
.split__grid,
.village__grid,
.location__grid,
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.intro p,
.virtual-tour p,
.split p,
.village p,
.location p,
.contact p,
.section-heading p {
  max-width: 680px;
  color: var(--muted);
  margin: 0;
}

.virtual-tour {
  padding-top: 78px;
  background: var(--paper);
}

.tour-frame {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(22, 33, 30, 0.1);
  box-shadow: var(--shadow);
  background: var(--ink);
}

.tour-frame iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}

.image-pair {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 18px;
  align-items: end;
}

.living-pano-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.image-pair img,
.living-pano-gallery img,
.split__media img,
.feature-card img,
.room-card img {
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-pair img:first-child {
  height: 520px;
}

.image-pair img:last-child {
  height: 380px;
}

.living-pano-gallery img {
  height: 340px;
}

.split {
  background: var(--soft);
}

.split__grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.split__media img {
  height: 580px;
}

.wellness-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.wellness-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-band {
  background: var(--pine);
  color: var(--white);
}

.feature-band .section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.feature-band .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-grid,
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.feature-card img {
  height: 300px;
  box-shadow: none;
}

.feature-card h3,
.feature-card p {
  padding: 0 22px;
}

.feature-card h3 {
  margin-top: 22px;
}

.feature-card p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
}

.village {
  background: var(--paper);
}

.village__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(22, 33, 30, 0.12);
  background: var(--white);
  box-shadow: var(--shadow);
}

.village__stats div {
  min-height: 156px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 18px;
  text-align: center;
  border-right: 1px solid rgba(22, 33, 30, 0.1);
}

.village__stats div:last-child {
  border-right: 0;
}

.village__stats strong {
  color: var(--river);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.village__stats span {
  color: var(--muted);
  font-weight: 700;
}

.rooms {
  background: var(--white);
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading--center {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center p {
  margin: 0 auto;
}

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

.room-card {
  position: relative;
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--pine);
  box-shadow: var(--shadow);
}

.room-card img {
  height: 100%;
  min-height: 420px;
  box-shadow: none;
  transition: transform 0.35s ease;
}

.room-card:hover img {
  transform: scale(1.04);
}

.room-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 16, 0.05), rgba(11, 18, 16, 0.74));
}

.room-card div {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  color: var(--white);
}

.room-card span {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.room-card h3 {
  margin: 4px 0 0;
  font-size: 2rem;
}

.river {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.river__media,
.river__media::after {
  position: absolute;
  inset: 0;
}

.river__media::after {
  content: "";
  background: linear-gradient(90deg, rgba(16, 31, 29, 0.9), rgba(16, 31, 29, 0.52), rgba(16, 31, 29, 0.15));
}

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

.river__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 46px;
  align-items: center;
}

.river__text p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
}

.river__video {
  justify-self: end;
  width: min(100%, 340px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #09110f;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

.river__video video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--gold);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.location__grid {
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
}

.map-frame {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(22, 33, 30, 0.1);
  box-shadow: var(--shadow);
}

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

.contact {
  background: var(--soft);
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(22, 33, 30, 0.1);
  box-shadow: var(--shadow);
}

.contact-panel > a:not(.btn) {
  color: var(--river);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 800;
}

.contact-panel .btn {
  justify-self: start;
  margin-top: 8px;
}

.site-footer {
  background: #101916;
  color: rgba(255, 255, 255, 0.72);
  padding: 58px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 38px;
}

.footer__grid img {
  width: 210px;
  margin-bottom: 20px;
}

.footer__grid h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
}

.footer__grid a {
  display: block;
  margin-bottom: 8px;
}

.footer__grid a:hover,
.footer__grid a:focus {
  color: var(--gold);
}

.footer__bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__bottom p,
.site-footer p {
  margin: 0;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 72px 24px 36px;
  background: rgba(7, 13, 11, 0.92);
}

.media-lightbox.is-open {
  display: grid;
}

.media-lightbox__stage {
  display: grid;
  place-items: center;
  width: min(100%, 1180px);
  max-height: calc(100vh - 142px);
}

.media-lightbox__stage img,
.media-lightbox__stage video {
  max-width: 100%;
  max-height: calc(100vh - 142px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.48);
  cursor: default;
}

.media-lightbox__stage video {
  background: #000;
}

.media-lightbox__close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.media-lightbox__close:hover,
.media-lightbox__close:focus {
  background: rgba(255, 255, 255, 0.2);
}

.media-lightbox__caption {
  max-width: min(100%, 860px);
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .site-header {
    background: rgba(18, 28, 25, 0.94);
  }

  .navbar {
    padding: 10px 0;
  }

  .navbar-nav {
    align-items: stretch;
    padding: 18px 0 8px;
  }

  .nav-link {
    padding: 11px 0;
  }

  .nav-link--accent {
    display: inline-flex;
    justify-content: center;
    padding: 12px 16px;
  }

  .hero {
    min-height: 820px;
    padding-top: 132px;
  }

  .hero__content {
    margin: 0 auto;
  }

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

  .booking-strip {
    margin-top: 0;
    padding-top: 28px;
  }

  .intro__grid,
  .virtual-tour__grid,
  .split__grid,
  .village__grid,
  .location__grid,
  .contact__grid,
  .river__content {
    grid-template-columns: 1fr;
  }

  .split__media {
    order: 2;
  }

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

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

  .booking-form .btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767.98px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .navbar-brand img {
    width: 158px;
  }

  .hero {
    min-height: 760px;
    padding-bottom: 190px;
  }

  .hero__facts {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .hero__facts span {
    min-height: 54px;
    font-size: 0.85rem;
  }

  .booking-strip {
    padding-top: 24px;
  }

  .section {
    padding: 72px 0;
  }

  .image-pair,
  .living-pano-gallery,
  .booking-form,
  .feature-grid,
  .room-grid,
  .village__stats,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .image-pair img:first-child,
  .image-pair img:last-child,
  .living-pano-gallery img,
  .split__media img,
  .wellness-gallery img,
  .tour-frame,
  .tour-frame iframe,
  .feature-card img,
  .room-card,
  .room-card img {
    height: auto;
    min-height: 0;
  }

  .image-pair img,
  .living-pano-gallery img,
  .split__media img,
  .wellness-gallery img,
  .tour-frame iframe,
  .feature-card img,
  .room-card img {
    aspect-ratio: 4 / 3;
  }

  .village__stats div {
    min-height: 124px;
    border-right: 0;
    border-bottom: 1px solid rgba(22, 33, 30, 0.1);
  }

  .village__stats div:last-child {
    border-bottom: 0;
  }

  .river {
    min-height: 0;
    padding: 84px 0;
  }

  .river__video {
    justify-self: start;
    width: min(100%, 320px);
  }

  .contact-panel {
    padding: 24px;
  }
}
