@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --forest: #10291f;
  --forest-deep: #07140f;
  --green: #244f37;
  --lime: #b8ff3d;
  --lime-soft: #e4ff9a;
  --cream: #f7f6ee;
  --mist: #e9eee0;
  --ink: #111915;
  --muted: #69746a;
  --line: rgba(16, 41, 31, 0.14);
  --shadow: 0 24px 80px rgba(7, 20, 15, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  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 {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 44px;
  color: var(--forest);
  background: rgba(247, 246, 238, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(7, 20, 15, 0.08);
  backdrop-filter: blur(18px);
  transition: height 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled {
  height: 74px;
  color: var(--forest);
  background: rgba(247, 246, 238, 0.98);
  box-shadow: 0 10px 32px rgba(7, 20, 15, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: auto;
  min-width: 216px;
  min-height: 46px;
  padding: 0;
  background: transparent;
  border: 0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 220ms ease;
}

.brand-logo {
  display: block;
  width: 126px;
  height: auto;
  object-fit: contain;
  filter: none;
}

.brand::after {
  content: "Sanjivani Hills";
  max-width: 92px;
  color: var(--forest);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0.18em;
}

.brand-mark {
  width: 28px;
  height: 22px;
  position: relative;
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 18px;
  height: 16px;
  background: linear-gradient(160deg, var(--lime), #5faa5f);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.brand-mark::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 18px;
  height: 20px;
  background: linear-gradient(160deg, #3d8a5e, var(--green));
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.site-header.is-scrolled .brand-mark::before {
  background: linear-gradient(160deg, var(--lime), #4a9a4a);
}

.site-header.is-scrolled .brand-mark::after {
  background: linear-gradient(160deg, #2d7a4e, var(--green));
}

.brand strong,
.brand em {
  display: block;
  font-style: normal;
  font-size: 13px;
  line-height: 1.15;
}

.brand em {
  opacity: 0.72;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a {
  opacity: 0.76;
  transition: color 200ms ease, opacity 200ms ease;
}

.nav-links a:hover {
  color: var(--green);
  opacity: 1;
}

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

.nav-cta,
.nav-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 30px;
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: none;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
  z-index: 1;
}

.nav-cta:hover,
.nav-action:hover {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}

.site-header.is-scrolled .nav-cta,
.site-header.is-scrolled .nav-action {
  color: var(--forest);
  border-color: var(--forest);
  background: transparent;
}

.mobile-reserve,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
}

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(420px, 100%);
  z-index: 19;
  padding: 120px 34px 34px;
  background: var(--forest);
  color: #fff;
  transform: translateX(100%);
  transition: transform 280ms ease;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.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.28) 0%, rgba(7,20,15,0.28) 48%, rgba(7,20,15,0.66) 100%),
    radial-gradient(ellipse 70% 52% at 50% 50%, rgba(7,20,15,0.08), rgba(7,20,15,0.46));
}

.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(76px, 9vw, 128px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
}

.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: 620px;
  margin: 22px auto 0;
  color: rgba(255,255,255,0.82);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.45;
  font-weight: 400;
  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: 44px;
  min-width: 138px;
  padding: 0 26px;
  background: var(--lime);
  color: var(--forest);
  border: 1px solid var(--lime);
  border-radius: 0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: none;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.hero-btn-primary:hover {
  background: var(--lime-soft);
  color: var(--forest);
  border-color: var(--lime-soft);
}

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 138px;
  padding: 0 26px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

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

.hero-mist-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  z-index: 4;
  background: linear-gradient(to top, var(--cream) 0%, rgba(247,246,238,0.6) 40%, 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-lime {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--forest);
}

.room-detail-copy .button-lime {
  align-self: flex-start;
  width: auto;
  min-width: 168px;
  max-width: 220px;
  padding-inline: 30px;
}

.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-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 {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr auto;
  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:hover {
  background: rgba(16, 41, 31, 0.035);
}

.booking-form > div:nth-child(3n) {
  border-right: 1px solid rgba(16, 41, 31, 0.12);
}

.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);
  font-size: 20px;
  padding: 4px 0;
}

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

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

.booking-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  background: var(--forest);
  border-top: 0;
}

.booking-submit button {
  min-width: 190px;
  min-height: 52px;
  border: 0;
  border-radius: 0;
  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: none;
  transition: background 220ms ease;
}

.booking-submit button:hover {
  background: #c8ff6e;
}

.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.052);
  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);
}

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

.dining-card h2 {
  color: var(--forest);
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.94;
}

.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;
  width: 188px;
  margin-bottom: 8px;
}

.footer-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.22));
}

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

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

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

@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 {
  min-height: 380px;
  padding: 0;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.editorial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(7,20,15,0.12);
}

.editorial-card .editorial-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.editorial-card .editorial-card-img img {
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}

.editorial-card:hover .editorial-card-img img {
  transform: scale(1.08);
}

.editorial-card .editorial-card-body {
  padding: 28px 30px;
}

.editorial-card .editorial-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(184,255,61,0.12);
  color: var(--green);
  font-size: 20px;
  margin-bottom: 16px;
}

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

.editorial-card p,
.wide-copy p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
  margin: 0;
}

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

.wide-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 500;
  line-height: 0.95;
}

.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 {
    padding: 0 22px;
  }

  .brand {
    min-width: 170px;
    padding: 8px 10px;
    gap: 10px;
  }

  .brand-logo {
    width: 100px;
  }

  .brand::after {
    max-width: 72px;
    font-size: 8px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    padding: 0 18px;
    min-height: 40px;
    font-size: 10px;
  }

  .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(3n) {
    border-right: 1px solid rgba(16, 41, 31, 0.12);
  }

  .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;
  }

  .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) {

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

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

  .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: 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;
  }
}
