:root {
  --bg-dark: #0e0e10;
  --bg-dark-2: #16161a;
  --bg-cream: #f3f0ea;
  --bg-card: #ffffff;
  --gold: #c2a161;
  --gold-soft: #d8bd88;
  --ink: #17170f;
  --text-light: #f5f2ec;
  --text-muted-light: #9c968c;
  --text-dark: #2a2925;
  --text-muted-dark: #6f6a61;
  --line-light: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(0, 0, 0, 0.10);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --max: 1440px;
  --gutter: clamp(20px, 5vw, 64px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.display {
  font-family: var(--font-display);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.02;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1.1em 1.9em;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn svg {
  width: 1.15em;
  height: 1.15em;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

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

.btn-dark {
  background: var(--ink);
  color: var(--text-light);
}

.btn-dark:hover {
  background: #000;
}

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

.btn-ghost:hover {
  background: var(--gold);
  color: var(--ink);
}

/* Real images; the gradient shows through until the file exists */
.img {
  display: block;
  width: 100%;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(194, 161, 97, 0.10), rgba(0, 0, 0, 0.35)),
    linear-gradient(315deg, #24242a, #101013);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: rgba(245, 242, 236, 0.35);
}

/* ============ HEADER / NAV ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 14, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-light);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  color: var(--gold);
  margin-top: 0.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--gold);
  border-color: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang {
  position: relative;
}

.lang-toggle {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--text-muted-light);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.lang-toggle:hover {
  color: var(--text-light);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.9rem);
  right: 0;
  min-width: 150px;
  background: var(--bg-dark);
  border: 1px solid var(--line-light);
  list-style: none;
  display: none;
  z-index: 60;
}

.lang.is-open .lang-menu {
  display: block;
}

.lang-menu a {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-muted-light);
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-menu a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.03);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--text-light);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: min(82vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: linear-gradient(315deg, #24242a, #101013);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right,
    var(--bg-dark) 0%,
    rgba(14, 14, 16, 0.88) 20%,
    rgba(14, 14, 16, 0.45) 42%,
    rgba(14, 14, 16, 0) 68%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.8rem;
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

.hero-title span {
  display: block;
  color: var(--gold);
}

.hero-rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
}

.hero-body {
  color: var(--text-muted-light);
  font-weight: 300;
  max-width: 40ch;
}

/* ============ FEATURES (USP) ============ */
.features {
  background: var(--bg-dark-2);
  border-top: 1px solid var(--line-light);
}

.features-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.2rem var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 1.8rem;
  border-left: 1px solid var(--line-light);
}

.feature:first-child {
  border-left: none;
  padding-left: 0;
}

.feature svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
  flex-shrink: 0;
}

.feature-title {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.feature-text {
  font-size: 0.82rem;
  color: var(--text-muted-light);
  font-weight: 300;
}

/* ============ SUITES ============ */
.suites {
  background: var(--bg-cream);
  color: var(--text-dark);
}

.suites-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) var(--gutter);
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.suites-intro {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  position: sticky;
  top: 120px;
}

.suites-heading {
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--text-dark);
}

.suites-intro p {
  color: var(--text-muted-dark);
  font-weight: 300;
}

.suites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.suite-card {
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.suite-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.suite-card .img {
  aspect-ratio: 4 / 3;
}

.suite-body {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.suite-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.suite-name {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-dark);
}

.suite-head svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.suite-floor {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.suite-meta {
  font-size: 0.82rem;
  color: var(--text-muted-dark);
}

.suite-meta span {
  margin: 0 0.5rem;
  color: var(--gold);
}

/* ============ AMENITIES ============ */
.amenities {
  background: var(--bg-dark);
}

.amenities-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) var(--gutter);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  max-width: 560px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.amenity-group h3 {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  padding-bottom: 0.9rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--line-light);
}

.amenity-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.amenity-group li {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  font-weight: 300;
}

/* ============ ABOUT (light) ============ */
.about {
  background: var(--bg-cream);
  color: var(--text-dark);
}

.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) var(--gutter) clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-media .img {
  aspect-ratio: 5 / 4;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 46ch;
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--text-dark);
}

.about-text p {
  color: var(--text-muted-dark);
  font-weight: 300;
}

/* ============ GOOD TO KNOW (inside About) ============ */
.good-to-know-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(3.5rem, 8vw, 6rem);
}

.good-to-know {
  border-top: 1px solid var(--line-dark);
  padding-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.good-to-know-head h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-dark);
  margin-top: 0.8rem;
}

.good-to-know-list {
  display: flex;
  flex-direction: column;
}

.good-to-know-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.good-to-know-row:first-child {
  border-top: 1px solid var(--line-dark);
}

.good-to-know-row dt {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.good-to-know-row dd {
  color: var(--text-muted-dark);
  font-size: 0.92rem;
  font-weight: 300;
}

/* ============ CONTACT ============ */
.contact {
  background: var(--bg-dark);
  border-top: 1px solid var(--line-light);
}

.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.contact-text h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 1.2rem;
}

.contact-text p {
  color: var(--text-muted-light);
  font-weight: 300;
  max-width: 44ch;
  margin-bottom: 2rem;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.contact-list svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ============ FOOTER ============ */
.footer {
  background: #0a0a0c;
  border-top: 1px solid var(--line-light);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem var(--gutter) 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}

.footer h4 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-bottom: 1.3rem;
  font-weight: 500;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer li a,
.footer li {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  font-weight: 300;
}

.footer li a:hover {
  color: var(--gold);
}

.footer-brand p {
  color: var(--text-muted-light);
  font-weight: 300;
  max-width: 34ch;
  margin-top: 1.2rem;
  font-size: 0.9rem;
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.6rem var(--gutter);
  border-top: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-muted-light);
}

/* ============ LOCATION ============ */
.location {
  background: var(--bg-dark-2);
  border-top: 1px solid var(--line-light);
}

.location-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) var(--gutter);
}

.location-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 620px;
  margin-bottom: 2.6rem;
}

.location-head h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
}

.location-head p {
  color: var(--text-muted-light);
  font-weight: 300;
}

.map-illustration {
  width: 100%;
  border: 1px solid var(--line-light);
}

.distance-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.distance {
  border-left: 1px solid var(--line-light);
  padding-left: 1.1rem;
}

.distance .name {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.distance .meta {
  font-size: 0.82rem;
  color: var(--text-muted-light);
  font-weight: 300;
}

/* ============ SUITE DETAIL PAGE ============ */
.suite-hero {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--line-light);
}

.suite-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) var(--gutter) clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.suite-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted-light);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.suite-back:hover {
  color: var(--gold);
}

.suite-back svg {
  width: 1.1em;
  height: 1.1em;
}

.suite-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.suite-specs {
  color: var(--text-muted-light);
  font-weight: 300;
}

/* ---------- Gallery ---------- */
.gallery {
  background: var(--bg-dark);
}

.gallery-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.gallery-item {
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
}

.gallery-item .img {
  aspect-ratio: 4 / 3;
  transition: transform 0.4s ease;
}

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

/* ---------- Content + booking ---------- */
.suite-content {
  background: var(--bg-dark-2);
}

.suite-content-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.suite-main {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.suite-block h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.2rem;
}

.suite-block p {
  color: var(--text-muted-light);
  font-weight: 300;
  margin-bottom: 1rem;
  max-width: 60ch;
}

.suite-amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2.5rem;
}

/* ---------- Booking (mock) ---------- */
.booking {
  position: sticky;
  top: 100px;
}

.booking-card {
  background: var(--bg-card);
  color: var(--text-dark);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-heading {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.booking-field label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  font-weight: 500;
}

.booking-field input,
.booking-field select {
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line-dark);
  background: #fff;
  color: var(--text-dark);
  border-radius: 0;
}

.booking-field input:focus,
.booking-field select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.booking-hint {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  font-weight: 300;
}

.booking-summary {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
}

.booking-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.booking-total {
  font-weight: 600;
  font-size: 1.05rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--line-dark);
}

.booking-submit {
  justify-content: center;
  width: 100%;
}

.booking-note {
  font-size: 0.74rem;
  color: var(--text-muted-dark);
  font-weight: 300;
  text-align: center;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
}

.lightbox-close svg {
  width: 28px;
  height: 28px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-light);
  color: var(--text-light);
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lightbox-nav:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-right .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav.is-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--line-light);
    padding: 1rem var(--gutter) 1.5rem;
  }

  .nav.is-open .nav-links a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line-light);
  }

  .hero::before {
    background:
      linear-gradient(to bottom, rgba(14, 14, 16, 0.35), rgba(14, 14, 16, 0.55)),
      linear-gradient(to right, var(--bg-dark) 0%, rgba(14, 14, 16, 0.35) 60%, rgba(14, 14, 16, 0.15) 100%);
  }

  .features-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .feature {
    border-left: none;
    padding: 0.6rem 0;
  }

  .suites-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .suites-intro {
    position: static;
  }

  .good-to-know {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .good-to-know-row {
    grid-template-columns: 200px 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .suite-content-inner {
    grid-template-columns: 1fr;
  }

  .booking {
    position: static;
  }
}

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .suite-amenities {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .suites-grid,
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .features-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .good-to-know-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .distance-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .distance {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .distance-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
    transition: none;
  }
}