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

:root {
  --forest: #0d2a1a;
  --forest-deep: #05110a;
  --green: #1a4d32;
  --lime: #b8ff3d;
  --lime-glow: #d4ff80;
  --cream: #f9f8f3;
  --mist: #f0f4f0;
  --ink: #0a110d;
  --muted: #5c6b60;
  --line: rgba(13, 42, 26, 0.08);
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.04);
  --shadow-float: 0 24px 64px rgba(7, 20, 15, 0.12);
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --nav-height: 102px;
  --nav-height-scrolled: 78px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  --nav-progress: 0;
  position: fixed;
  top: 16px;
  left: clamp(24px, 5vw, 80px);
  right: clamp(24px, 5vw, 80px);
  z-index: 2001;
  height: clamp(60px, 8vw, 70px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(24px, 4vw, 50px);
  color: #fff;
  
  /* VisionOS Style Hyper-Realistic Glass */
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 35%, rgba(0, 0, 0, 0.15) 100%);
  backdrop-filter: blur(36px) saturate(1.8);
  -webkit-backdrop-filter: blur(36px) saturate(1.8);
  border-radius: 999px;
  border: none;
  
  /* Multiple shadow layers for thickness, 3D rim lighting, and depth */
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.6),        /* Ultra-sharp top light catch */
    inset 0 -1px 2px rgba(0, 0, 0, 0.3),             /* Glass volume shadow at bottom */
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),       /* Crisp 1px outline */
    0 30px 60px -12px rgba(0, 0, 0, 0.4),            /* Deep, soft drop shadow */
    0 10px 20px -5px rgba(0, 0, 0, 0.2);             /* Core ambient shadow */
    
  transform: 
    translateY(calc(-10px * (1 - var(--nav-progress)))) 
    scale(calc(0.965 + (0.035 * var(--nav-progress))));
  transition: all 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.site-header:hover {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 35%, rgba(0, 0, 0, 0.1) 100%);
  box-shadow: 
    inset 0 1px 1.5px rgba(255, 255, 255, 0.8), 
    inset 0 -1px 2px rgba(0, 0, 0, 0.2), 
    inset 0 0 0 1px rgba(255, 255, 255, 0.18), 
    0 35px 70px -10px rgba(0, 0, 0, 0.5),
    0 15px 25px -5px rgba(0, 0, 0, 0.3);
}

.site-header.is-scrolled {
  height: 60px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(36px) saturate(1.8);
  -webkit-backdrop-filter: blur(36px) saturate(1.8);
  color: var(--forest);
  box-shadow: 
    inset 0 1px 1px #fff,
    inset 0 -1px 1px rgba(0, 0, 0, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5),
    0 15px 40px -10px rgba(0, 0, 0, 0.12),
    0 5px 15px -5px rgba(0, 0, 0, 0.05);
}

.site-header.is-scrolled:hover {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.75) 100%);
  box-shadow: 
    inset 0 1px 2px #fff,
    inset 0 -1px 1px rgba(0, 0, 0, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8),
    0 20px 50px -10px rgba(0, 0, 0, 0.15),
    0 8px 20px -5px rgba(0, 0, 0, 0.08);
}

.site-header::before {
  display: none;
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 clamp(18px, 3vw, 44px);
  padding: 4px;
  border-radius: 50%;
  background: #fffef8;
  box-shadow: 0 10px 24px rgba(7, 20, 15, 0.14);
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.2, 1);
}

.brand:hover {
  transform: translateY(-2px) scale(1.04);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  filter: none;
  transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
}

.site-header.is-scrolled .brand-logo {
  filter: none;
}

.nav-links {
  display: flex;
  gap: clamp(20px, 3vw, 50px);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  align-items: center;
  line-height: 1;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.nav-links:hover a {
  opacity: 0.4; /* Sibling fade effect */
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  color: inherit;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
}

.site-header.is-scrolled .nav-links a {
  color: var(--forest);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
  transform: translateX(-50%);
  opacity: 0;
}

.nav-links a:hover::after {
  width: 100%;
  opacity: 1;
}

a.nav-cta {
  position: relative;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  padding: 0 24px;
  background: var(--lime);
  color: var(--forest);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid var(--lime);
  transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
  opacity: 1 !important; /* Prevent hover opacity drops from parent */
  overflow: hidden; /* For shine effect */
}

a.nav-cta::before {
  content: "";
  position: absolute;
  top: 0; 
  left: -150%;
  width: 100%; 
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-25deg);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  z-index: 1;
}

a.nav-cta span {
  position: relative;
  z-index: 2;
}

a.nav-cta:hover {
  background: #fff;
  color: var(--forest);
  border-color: #fff;
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(184, 255, 61, 0.3);
}

a.nav-cta:hover::before {
  left: 150%;
  transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
}

.site-header.is-scrolled a.nav-cta {
  height: 28px;
  background: var(--forest);
  color: var(--lime);
  border-color: var(--forest);
}

.site-header.is-scrolled a.nav-cta:hover {
  background: var(--lime);
  color: var(--forest);
  border-color: var(--lime);
}

@media (max-width: 1100px) {
  .nav-left {
    margin-right: 30px;
  }

  .nav-right {
    margin-left: 30px;
  }
}

@media (max-width: 1024px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header {
    grid-template-columns: 1fr auto 1fr;
    padding: 0 30px;
  }
}

.menu-toggle {
  justify-self: end;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.site-header.is-scrolled .menu-toggle {
  border-color: rgba(13, 42, 26, 0.1);
  color: var(--forest);
  background: rgba(13, 42, 26, 0.03);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.08);
}

.site-header.is-scrolled .menu-toggle:hover {
  background: rgba(13, 42, 26, 0.08);
}

.menu-toggle span {
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}

body.menu-open .menu-toggle span:first-child {
  -webkit-transform: translateY(3.75px) rotate(45deg);
  transform: translateY(3.75px) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  -webkit-transform: translateY(-3.75px) rotate(-45deg);
  transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--forest);
  padding: 140px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-panel.is-open {
  transform: translateY(0);
}

.mobile-panel a {
  font-family: var(--serif);
  font-size: 48px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  line-height: 1;
}

.mobile-panel a:hover {
  color: var(--lime);
  transform: translateX(10px);
}

.mobile-reserve {
  margin-top: auto;
  background: var(--lime);
  color: var(--forest);
  padding: 20px;
  border-radius: 100px;
  font-size: 14px !important;
  font-family: var(--sans) !important;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.1em;
}

.mobile-panel a {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
}

.mobile-reserve {
  margin-top: auto;
  font-family: var(--sans) !important;
  font-size: 11px !important;
  background: var(--lime);
  color: var(--forest);
  border-color: var(--lime);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: var(--forest-deep);
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.08) translate(-1%, -0.5%);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(7, 20, 15, 0.18) 0%, rgba(7, 20, 15, 0.28) 56%, rgba(7, 20, 15, 0.5) 100%);
}

.hero-fg {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 30px;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 7.6vw, 112px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.hero-line-1 {
  display: block;
  animation: heroTextUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-line-2 {
  display: block;
  color: #fff;
  animation: heroTextUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

@keyframes heroTextUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-sub {
  max-width: 570px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--sans);
  font-size: clamp(16px, 1.45vw, 19px);
  font-style: normal;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.01em;
  animation: heroTextUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
  animation: heroTextUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 160px;
  padding: 0 32px;
  background: var(--lime);
  color: var(--forest);
  border: 1px solid var(--lime);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 20px rgba(184, 255, 61, 0.2);
}

.hero-btn-primary:hover {
  background: #fff;
  color: var(--forest);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 160px;
  padding: 0 32px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
}

.hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-3px);
}

.hero-mist-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 128px;
  z-index: 4;
  background: linear-gradient(to top, var(--cream) 0%, rgba(249, 248, 243, 0.68) 18%, rgba(249, 248, 243, 0.16) 62%, transparent 100%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: fit-content;
  padding: 0 28px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 260ms ease, border-color 260ms ease, color 260ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.button-lime {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--forest);
}

.room-detail-copy .button-lime {
  align-self: flex-start;
  min-width: 188px;
  min-height: 54px;
  padding: 0 24px 0 30px;
  background: var(--forest);
  border-color: var(--forest);
  color: #fffef8;
  box-shadow: 0 18px 38px rgba(7, 20, 15, 0.16);
}

.room-detail-copy .button-lime::after {
  content: "->";
  margin-left: 14px;
  color: var(--lime);
  font-size: 14px;
  letter-spacing: 0;
  transition: transform 260ms ease;
}

.room-detail-copy .button-lime:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(7, 20, 15, 0.18);
}

.room-detail-copy .button-lime:hover::after {
  color: var(--forest);
  transform: translateX(4px);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

.button-ghost:hover {
  background: #fff;
  color: var(--forest);
}

/* ── Booking ── */
.booking-band {
  position: relative;
  z-index: 2;
  padding: clamp(44px, 6vw, 78px) clamp(24px, 6vw, 96px);
  background: var(--cream);
}

.booking-band::before {
  content: none;
}

.booking-heading {
  text-align: center;
  margin-bottom: 30px;
}

.booking-heading p.eyebrow {
  color: var(--green);
}

.booking-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 500;
  line-height: 1;
  color: var(--forest);
}

.booking-intro {
  max-width: 620px;
  margin: 16px auto 0;
  color: rgba(16, 41, 31, 0.68);
  font-size: 15px;
  line-height: 1.65;
}

.booking-card {
  max-width: 1100px;
  margin: 0 auto;
  background: #fffef8;
  border: 1px solid rgba(16, 41, 31, 0.18);
  border-radius: 0;
  box-shadow: 0 24px 70px rgba(7, 20, 15, 0.1);
  overflow: hidden;
}

.booking-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.booking-form>div {
  padding: 24px 30px;
  border-bottom: 0;
  border-right: 1px solid rgba(16, 41, 31, 0.12);
  transition: background 200ms ease;
}

.booking-form>div:not(.booking-submit):hover {
  background: rgba(16, 41, 31, 0.035);
}

.booking-form>div:nth-child(4n) {
  border-right: 0;
}

.booking-form>div:last-child {
  border-right: 0;
}

.booking-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--forest);
  font-family: var(--serif);
  min-width: 0;
  font-size: clamp(16px, 1.4vw, 20px);
  padding: 4px 0;
}

.booking-form input::placeholder {
  color: rgba(16, 41, 31, 0.4);
}

.booking-form select option {
  color: var(--forest);
}

.booking-submit {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 20px 22px;
  background: var(--forest);
  border-top: 1px solid rgba(16, 41, 31, 0.12);
}

.booking-submit button {
  min-width: 190px;
  min-height: 52px;
  border: 0;
  border-radius: 100px;
  color: var(--forest);
  background: var(--lime);
  cursor: pointer;
  text-align: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(184, 255, 61, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-submit button:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.booking-submit button:disabled,
.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.booking-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  border: 0 !important;
}

.story-immersive {
  min-height: 112vh;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--forest-deep);
  color: #fff;
}

.story-immersive>img {
  position: absolute;
  inset: 0;
  z-index: -2;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.05);
  animation: imageDrift 18s ease-in-out infinite alternate;
}

.story-immersive::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 20, 15, 0.82), rgba(7, 20, 15, 0.18) 58%, rgba(7, 20, 15, 0.52)),
    linear-gradient(0deg, rgba(7, 20, 15, 0.55), rgba(7, 20, 15, 0.05));
}

.kinetic-tag {
  position: absolute;
  top: 110px;
  right: 6vw;
  z-index: 1;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.floating-copy {
  position: absolute;
  right: clamp(24px, 7vw, 112px);
  bottom: clamp(52px, 10vw, 128px);
  z-index: 1;
  width: min(320px, calc(100% - 48px));
  padding-top: 22px;
  border-top: 2px solid var(--lime);
  text-align: right;
}

.floating-copy h2,
.dining-card h2,
.scroll-step h2,
.site-footer h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

.floating-copy h2 {
  font-size: clamp(54px, 6vw, 84px);
  line-height: 0.88;
}

.floating-copy p:not(.eyebrow) {
  max-width: 260px;
  margin: 16px 0 0 auto;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.8;
}

.form-status {
  min-height: 0;
  width: min(1100px, 100%);
  margin: 18px auto 0;
  padding: 0;
  color: var(--green);
  font-size: 13px;
  text-align: center;
}

.form-status.has-message {
  padding: 16px 20px;
  border: 1px solid rgba(16, 41, 31, 0.14);
  background: #fffef8;
}

.form-status.is-success {
  border-color: rgba(36, 79, 55, 0.28);
  color: var(--forest);
}

.form-status.is-error {
  border-color: rgba(130, 54, 36, 0.28);
  color: #823624;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
  padding: clamp(84px, 12vw, 150px) clamp(24px, 6vw, 96px);
}

.section-grid.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.section-copy h2,
.section-heading h2,
.gallery-copy h2,
.contact-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 86px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow),
.gallery-copy p,
.contact-panel p {
  margin: 28px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.feature-image {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-image::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(184, 255, 61, 0.48);
  pointer-events: none;
}

.feature-image img {
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  transition: transform 900ms ease;
}

.feature-image:hover img {
  transform: scale(1.04);
}

.featured-rooms,
.rooms,
.experiences,
.gallery {
  padding: clamp(84px, 12vw, 150px) clamp(24px, 6vw, 96px);
  border-top: 1px solid var(--line);
}

.featured-rooms {
  overflow: hidden;
  background: var(--cream);
}

.room-strip-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}

.room-strip-heading h2 {
  margin: 0;
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 104px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
}

.room-outline {
  color: var(--forest);
  background: transparent;
}

.room-outline:hover {
  background: var(--forest);
  color: #fff;
}

.room-rail {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  padding: 0 0 18px;
  margin: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--green) transparent;
}

.featured-room-card {
  min-width: min(450px, 82vw);
  scroll-snap-align: start;
}

.featured-room-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--forest);
  box-shadow: var(--shadow);
}

.featured-room-image img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) grayscale(12%);
  transition: filter 600ms ease, transform 1000ms ease;
}

.featured-room-card:hover img {
  filter: saturate(1.05) grayscale(0);
  transform: scale(1.08);
}

.featured-room-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-top: 26px;
}

.featured-room-meta span,
.room-detail-copy .eyebrow {
  color: var(--green);
}

.featured-room-meta span {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.featured-room-meta h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}

.featured-room-meta p {
  max-width: 190px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  text-align: right;
}

.dining-scene {
  position: relative;
  min-height: 108vh;
  padding: clamp(92px, 10vw, 142px) clamp(24px, 6vw, 96px);
  display: block;
  background: var(--cream);
  overflow: hidden;
}

.dining-scene::before {
  content: "Sanjivani Dining";
  position: absolute;
  right: clamp(18px, 4vw, 70px);
  top: clamp(28px, 4vw, 54px);
  z-index: 0;
  color: rgba(16, 41, 31, 0.035);
  font-family: var(--serif);
  font-size: clamp(74px, 12vw, 168px);
  line-height: 0.82;
  white-space: nowrap;
  pointer-events: none;
}

.dining-image {
  position: relative;
  z-index: 1;
  width: min(74vw, 1040px);
  height: min(74vh, 760px);
  min-height: 620px;
  margin-top: clamp(34px, 4vw, 58px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.dining-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1000ms ease;
}

.dining-scene:hover .dining-image img {
  transform: scale(1.08);
}

.dining-card {
  position: absolute;
  left: min(54vw, 1040px);
  right: auto;
  bottom: clamp(72px, 8vw, 124px);
  z-index: 2;
  width: min(480px, calc(100% - 48px));
  padding: clamp(30px, 4vw, 56px);
  background: rgba(247, 246, 238, 0.76);
  border: 1px solid rgba(16, 41, 31, 0.14);
  box-shadow: 0 26px 86px rgba(7, 20, 15, 0.18);
  backdrop-filter: blur(24px) saturate(1.15);
  container-type: inline-size;
}

.dining-card::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 32px;
  bottom: 32px;
  width: 3px;
  background: var(--lime);
}

.dining-card h2 {
  color: var(--forest);
  max-width: 100%;
  font-size: clamp(34px, 16cqw, 62px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
  overflow-wrap: normal;
}

.dining-card p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 52px;
}

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

.room-card {
  background: #fffef8;
  overflow: hidden;
}

.room-card img {
  height: 460px;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 900ms ease, filter 500ms ease;
}

.room-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.05);
}

.room-card div {
  padding: 34px;
}

.room-card span,
.amenity span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.room-card h3 {
  margin: 12px 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.room-card p,
.amenity p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  margin-top: 34px;
  border-bottom: 1px solid var(--forest);
  padding-bottom: 8px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.experiences {
  background: var(--mist);
}

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

.amenity {
  min-height: 280px;
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 350ms ease, box-shadow 350ms ease, background 350ms ease, color 350ms ease;
  position: relative;
  overflow: hidden;
}

.amenity::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(184, 255, 61, 0.1), transparent 70%);
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 0;
}

.amenity:hover::after {
  opacity: 1;
  transform: scale(2);
}

.amenity strong {
  display: block;
  margin: auto 0 18px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
}

.amenity:hover {
  background: var(--forest);
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(7, 20, 15, 0.18);
  border-color: transparent;
}

.amenity:hover p,
.amenity:hover span {
  color: var(--lime-soft);
}

.scroll-gallery {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: start;
  gap: clamp(34px, 6vw, 88px);
  padding: clamp(84px, 12vw, 150px) clamp(24px, 6vw, 96px);
  background: var(--forest-deep);
  color: #fff;
}

.scroll-visual {
  position: sticky;
  top: 96px;
  align-self: start;
  z-index: 1;
  height: calc(100vh - 128px);
  overflow: hidden;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
}

.scroll-visual::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(184, 255, 61, 0.42);
}

.scroll-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: transform 900ms ease, filter 420ms ease;
  transform: scale(1.04);
  will-change: transform, filter;
}

.scroll-copy {
  position: relative;
  align-self: start;
  z-index: 2;
  display: grid;
  gap: 18vh;
  margin-left: 0;
  padding: 8vh 0 12vh;
}

.scroll-step {
  min-height: 54vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  opacity: 0.36;
  transform: translateX(18px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.scroll-step:last-child {
  margin-bottom: 0;
}

.scroll-step.is-active {
  opacity: 1;
  transform: translateX(0);
}

.scroll-step .eyebrow.dark {
  color: var(--lime);
}

.scroll-step h2 {
  max-width: 560px;
  color: #fff;
  font-size: clamp(46px, 6vw, 88px);
  line-height: 0.94;
}

.scroll-step p:not(.eyebrow) {
  max-width: 420px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.7;
}

.contact {
  padding: clamp(84px, 11vw, 140px) clamp(24px, 6vw, 96px);
  background:
    linear-gradient(rgba(7, 20, 15, 0.72), rgba(7, 20, 15, 0.72)),
    url("/assets/images/himalayan-hills.jpg") center/cover;
  color: #fff;
}

.contact-panel {
  max-width: 840px;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.contact-lines a,
.contact-lines span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 14px 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-footer {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 0;
  background: var(--cream);
  color: #fff;
}

.footer-hills-scene {
  position: relative;
  width: 100%;
  height: clamp(320px, 38vw, 560px);
  overflow: hidden;
  isolation: isolate;
  --footer-light-x: 54%;
  --footer-light-y: 34%;
  background:
    linear-gradient(180deg, rgba(247, 246, 238, 0.94) 0%, rgba(247, 246, 238, 0.2) 20%, rgba(7, 26, 18, 0.08) 48%, rgba(8, 34, 22, 0.94) 100%),
    linear-gradient(90deg, rgba(7, 26, 18, 0.15) 0%, transparent 34%, rgba(149, 255, 48, 0.08) 58%, rgba(7, 26, 18, 0.3) 100%),
    url("/assets/images/footer-hills-red-light.png") center 50% / cover no-repeat;
  box-shadow: inset 0 -160px 150px rgba(8, 34, 22, 0.9);
}

.footer-hills-scene::before,
.footer-hills-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-hills-scene::before {
  z-index: 1;
  background: url("/assets/images/footer-hills-red-light.png") center 50% / cover no-repeat;
  filter: saturate(1.18) contrast(1.08) brightness(1.08);
  opacity: 0.34;
  mix-blend-mode: screen;
  animation: footerPhotoBreath 9s ease-in-out infinite alternate;
}

.footer-hills-scene::after {
  z-index: 2;
  background:
    radial-gradient(ellipse at var(--footer-light-x) var(--footer-light-y), rgba(255, 170, 74, 0.62) 0%, rgba(255, 145, 48, 0.28) 18%, rgba(149, 255, 48, 0.12) 30%, transparent 54%),
    linear-gradient(108deg, transparent 0%, rgba(255, 179, 76, 0.1) 34%, rgba(255, 208, 116, 0.28) 48%, rgba(154, 255, 48, 0.1) 60%, transparent 78%);
  mix-blend-mode: soft-light;
  opacity: 0.9;
  transform: translate3d(0, -8%, 0);
  animation: footerLightFall 7.5s ease-in-out infinite alternate;
}

.footer-hill-layer {
  position: absolute;
  bottom: 0;
  left: -2%;
  width: 104%;
  transition: none;
  display: none;
}

.footer-hill-layer svg {
  display: block;
  width: 100%;
  height: auto;
}

.footer-hill-layer.layer-1 {
  z-index: 1;
  opacity: 0.68;
}

.footer-hill-layer.layer-2 {
  z-index: 2;
  opacity: 0.76;
  transform: translateY(28px);
}

.footer-hill-layer.layer-3 {
  z-index: 3;
  transform: translateY(62px);
}

.footer-mist {
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(to bottom, rgba(247, 246, 238, 0.98) 0%, rgba(247, 246, 238, 0.42) 18%, transparent 36%),
    linear-gradient(to top, #082216 0%, rgba(8, 34, 22, 0.72) 30%, transparent 62%);
  pointer-events: none;
}

.footer-body {
  position: relative;
  z-index: 6;
  background: linear-gradient(180deg, #082216 0%, #05150e 100%);
  padding: clamp(60px, 8vw, 110px) clamp(24px, 6vw, 96px) clamp(30px, 4vw, 50px);
  margin-top: -2px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  margin-bottom: 64px;
}

.footer-brand-col p.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.7;
  margin: 20px 0 0;
  max-width: 320px;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.footer-col-title {
  display: block;
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 500;
  transition: color 200ms ease, padding-left 200ms ease;
}

.footer-nav a:hover {
  color: var(--lime);
  padding-left: 6px;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 18px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  overflow: hidden;
  transition: border-color 200ms ease;
}

.footer-newsletter-form:focus-within {
  border-color: var(--lime);
}

.footer-newsletter-form input {
  flex: 1;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 14px 18px;
  font-size: 13px;
  outline: 0;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-newsletter-form button {
  border: 0;
  background: var(--lime);
  color: var(--forest);
  padding: 14px 20px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms ease;
}

.footer-newsletter-form button:hover {
  background: var(--lime-soft);
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0 0 28px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  transition: color 200ms ease;
}

.footer-bottom-links a:hover {
  color: var(--lime);
}

.site-footer .footer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 118px;
  padding: 8px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #fffef8;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
}

.footer-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  filter: none;
}

.site-footer::after {
  content: "";
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

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

@keyframes imageDrift {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes footerLightFall {
  0% {
    opacity: 0.58;
    transform: translate3d(-7%, -16%, 0) rotate(-1deg);
  }

  48% {
    opacity: 0.95;
  }

  100% {
    opacity: 0.74;
    transform: translate3d(8%, 12%, 0) rotate(1deg);
  }
}

@keyframes footerPhotoBreath {
  0% {
    opacity: 0.2;
    filter: saturate(1.08) contrast(1.04) brightness(1.02);
  }

  100% {
    opacity: 0.42;
    filter: saturate(1.24) contrast(1.1) brightness(1.1);
  }
}

.page-hero {
  min-height: 72vh;
  position: relative;
  display: flex;
  align-items: end;
  padding: 130px clamp(24px, 6vw, 96px) clamp(54px, 8vw, 96px);
  overflow: hidden;
  color: #fff;
  background: var(--forest-deep);
}

.page-hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 20, 15, 0.78), rgba(7, 20, 15, 0.18)), linear-gradient(0deg, rgba(7, 20, 15, 0.7), transparent 55%);
}

.page-hero>div {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
}

.page-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(70px, 11vw, 148px);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.page-section {
  padding: clamp(78px, 11vw, 140px) clamp(24px, 6vw, 96px);
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  background: transparent;
}

.editorial-card {
  position: relative;
  min-height: 520px;
  padding: 0;
  background: var(--forest-deep);
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  isolation: isolate;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.editorial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 255, 61, 0.35);
  box-shadow: 0 24px 50px rgba(7, 20, 15, 0.4);
}

.editorial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 17, 10, 0) 0%, rgba(5, 17, 10, 0.1) 40%, rgba(5, 17, 10, 0.85) 100%);
  transition: opacity 0.6s ease, background 0.6s ease;
  opacity: 0.9;
}

.editorial-card:hover::after {
  opacity: 1;
  background: linear-gradient(180deg, rgba(5, 17, 10, 0) 0%, rgba(5, 17, 10, 0.3) 30%, rgba(5, 17, 10, 0.95) 100%);
}

.editorial-card .editorial-card-img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.editorial-card .editorial-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.85);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s ease;
  transform: scale(1.05);
}

.editorial-card:hover .editorial-card-img img {
  transform: scale(1.1);
  filter: saturate(1.1) brightness(1);
}

.editorial-card .editorial-card-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.editorial-card .editorial-card-body::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-bottom: 24px;
  background: var(--lime);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.6s ease;
}

.editorial-card:hover .editorial-card-body::before {
  width: 80px;
  background: #fff;
}

.editorial-card h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
}

.editorial-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  font-size: 15px;
  margin: 0;
  transition: color 0.6s ease;
}

.editorial-card:hover p {
  color: rgba(255, 255, 255, 0.95);
}

@media (hover: hover) {
  .editorial-card .editorial-card-body::before,
  .editorial-card h2,
  .editorial-card p {
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .editorial-card p {
    opacity: 0;
  }
  
  .editorial-card:hover .editorial-card-body::before,
  .editorial-card:hover h2,
  .editorial-card:hover p {
    transform: translateY(0);
  }
  
  .editorial-card:hover p {
    opacity: 1;
  }
}

.wide-copy p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 15px;
  margin: 0;
}

.wide-copy {
  max-width: 900px;
}

.wide-copy .eyebrow {
  margin-bottom: 24px;
}

.wide-copy h2 {
  max-width: 820px;
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(46px, 6.5vw, 84px);
  font-weight: 500;
  line-height: 1.04;
}

.wide-copy p:not(.eyebrow) {
  max-width: 780px;
  font-size: 16px;
  line-height: 1.75;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1px;
  background: var(--line);
}

.contact-page-grid>* {
  background: #fffef8;
  padding: clamp(32px, 5vw, 64px);
}

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

.contact-form label {
  display: grid;
  gap: 9px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  outline: 0;
}

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

.contact-form button {
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: var(--forest);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.simple-page-footer {
  padding: 28px clamp(24px, 6vw, 96px);
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rooms-hero {
  min-height: 78vh;
}

.room-detail-list {
  background: var(--cream);
}

.room-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 680px;
  border-bottom: 1px solid var(--line);
}

.room-detail.is-reverse .room-detail-copy {
  order: 2;
}

.room-detail.is-reverse .room-detail-image {
  order: 1;
}

.room-detail-copy {
  padding: clamp(44px, 7vw, 92px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-detail-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 108px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
}

.room-detail-copy>p:not(.eyebrow) {
  max-width: 500px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.room-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 42px 0 30px;
  background: var(--line);
  border: 1px solid var(--line);
}

.room-specs div {
  padding: 22px;
  background: #fffef8;
}

.room-specs span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.room-specs strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.room-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.room-tags span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(184, 255, 61, 0.22);
}

.room-detail-image {
  position: relative;
  overflow: hidden;
  background: var(--forest);
}

.room-detail-image::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(184, 255, 61, 0.38);
  pointer-events: none;
}

.room-detail-image img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) grayscale(10%);
  transition: transform 1000ms ease, filter 600ms ease;
}

.room-detail:hover .room-detail-image img {
  transform: scale(1.05);
  filter: saturate(1.05) grayscale(0);
}

.gallery-hero {
  min-height: 86vh;
}

.gallery-intro {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: clamp(32px, 7vw, 110px);
  align-items: end;
  background: var(--mist);
}

.gallery-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
}

.gallery-intro p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 14px;
  padding: clamp(24px, 4vw, 64px);
  background: var(--forest-deep);
}

.masonry-gallery figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--forest);
}

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

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

.masonry-gallery img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 900ms ease, filter 500ms ease;
}

.masonry-gallery figure:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.masonry-gallery figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 11px;
  color: #fff;
  background: rgba(7, 20, 15, 0.62);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

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

@media (max-width: 980px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    padding: 0 22px;
  }

  .brand {
    width: 46px;
    height: 46px;
    min-width: 46px;
    padding: 4px;
  }

  .brand-logo {
    width: 100%;
    height: 100%;
  }

  .brand::after {
    content: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-content {
    margin: 0 auto;
    text-align: center;
  }

  .hero-scroll-hint {
    display: none;
  }

  .booking-form,
  .section-grid,
  .section-grid.reverse,
  .section-heading,
  .room-detail,
  .gallery-intro,
  .room-grid,
  .amenity-grid,
  .gallery,
  .scroll-gallery,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .booking-form {
    grid-template-columns: 1fr 1fr;
  }

  .booking-form>div:nth-child(2n) {
    border-right: 0;
  }

  .booking-submit {
    grid-column: 1 / -1;
    min-height: 96px;
  }

  .room-detail.is-reverse .room-detail-copy,
  .room-detail.is-reverse .room-detail-image {
    order: initial;
  }

  .room-detail-image {
    min-height: 520px;
  }

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

  .dining-image {
    width: 100%;
    height: 72vh;
    min-height: 560px;
  }

  .dining-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: -120px;
    margin-left: auto;
    width: min(480px, 100%);
  }

  .scroll-gallery {
    min-height: auto;
    gap: 30px;
  }

  .scroll-visual {
    position: sticky;
    top: 74px;
    height: 62vh;
  }

  .scroll-copy {
    margin-left: 0;
    padding: 0;
  }

  .scroll-step {
    margin: 0 0 22px;
  }

  .feature-image,
  .feature-image img {
    min-height: 460px;
  }

  .gallery-copy {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-hills-scene {
    height: 300px;
  }
}

@media (max-width: 640px) {

  .dining-scene::before {
    right: 24px;
    top: 24px;
    width: calc(100% - 48px);
    font-size: clamp(48px, 15vw, 86px);
    line-height: 0.84;
    white-space: normal;
    overflow-wrap: normal;
    text-align: right;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-btn-primary,
  .hero-btn-ghost {
    min-width: 118px;
    padding: 0 18px;
  }

  .hero-note {
    display: none;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-form>div {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(16, 41, 31, 0.12);
  }

  .booking-card {
    border-radius: 0;
  }

  .booking-submit {
    min-height: 96px;
    border-bottom: 0 !important;
  }

  .room-strip-heading {
    display: block;
  }

  .room-strip-heading .button {
    margin-top: 26px;
  }

  .section-copy h2,
  .section-heading h2,
  .gallery-copy h2,
  .contact-panel h2 {
    font-size: 44px;
  }

  .room-card img,
  .gallery-grid img,
  .gallery-grid .tall,
  .dining-image,
  .dining-image img {
    height: 340px;
    min-height: 340px;
  }

  .featured-room-meta {
    grid-template-columns: 1fr;
  }

  .featured-room-meta p {
    max-width: none;
    text-align: left;
  }

  .room-specs,
  .masonry-gallery {
    grid-template-columns: 1fr;
  }

  .room-detail-image {
    min-height: 360px;
  }

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

  .masonry-gallery figure.wide,
  .masonry-gallery figure.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .floating-copy {
    right: 24px;
    left: 24px;
    width: auto;
    padding-left: 0;
    text-align: left;
  }

  .floating-copy h2,
  .dining-card h2,
  .scroll-step h2 {
    font-size: clamp(34px, 16cqw, 44px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-hills-scene {
    height: 240px;
    background-position: center center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .simple-page-footer {
    flex-direction: column;
  }

  .amenity-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .amenity {
    min-height: 200px;
  }
}
