/* ─── Design tokens ─── */
:root {
  --navy: #001747;
  --navy-deep: #000f2e;
  --navy-mid: #002663;
  --gold: #c9a962;
  --gold-light: #e4d4a8;
  --cream: #f8f6f1;
  --white: #ffffff;
  --text: #2a2a32;
  --text-muted: #5c5c68;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  --header-h: 5rem;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 24px 48px -12px rgba(0, 23, 71, 0.18);
  --shadow-lg: 0 40px 80px -24px rgba(0, 23, 71, 0.28);
  --radius: 2px;
  --radius-lg: 4px;
}

/* ─── Reset & base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-loaded .hero-animate {
  opacity: 1;
  transform: translateY(0);
}

body.nav-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 500;
  border-radius: var(--radius);
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, 72rem);
  margin-inline: auto;
}

/* ─── Typography ─── */
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-label-light {
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-title-light {
  color: var(--white);
}

.section-lead,
.section-desc {
  color: var(--text-muted);
  max-width: 36rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-desc {
  margin-inline: auto;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.25s var(--ease);
}

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

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 0.9375rem;
}

.btn .icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

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

.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.35);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* Mobile menu backdrop (hidden on desktop) */
.nav-backdrop {
  display: none;
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(100% - 2.5rem, 72rem);
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--white);
  text-decoration: none;
}

/* ─── Logo image (header — full Endless Love mark) ─── */
.logo-image {
  display: block;
  width: min(11.5rem, 46vw);
  height: auto;
  max-height: 3.35rem;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  transition: opacity 0.35s ease;
}

.logo:not(.logo-footer):hover .logo-image,
.logo:not(.logo-footer):focus-visible .logo-image {
  transform: none;
  box-shadow: none;
  opacity: 0.92;
}

.logo:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
  border-radius: 8px;
}

.logo-footer .logo-image {
  width: min(17.5rem, 88vw);
  height: auto;
  max-height: none;
  border-radius: 0;
  box-shadow: none;
}

.logo-footer:hover .logo-image,
.logo-footer:focus-visible .logo-image {
  transform: none;
  box-shadow: none;
}

/* ─── Fallback text logo (hidden when image renders, shown if image fails) ─── */
.logo-text {
  display: none;
  align-items: baseline;
  gap: 0.35em;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.8vw, 1.65rem);
  line-height: 1;
  white-space: nowrap;
}

.logo-name {
  font-weight: 600;
  font-size: 1.08em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow:
    0 0 24px rgba(201, 169, 98, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.25);
}

.logo-place {
  font-style: italic;
  font-weight: 400;
  font-size: 0.78em;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.88);
}

.logo-footer .logo-text {
  font-size: 1.5rem;
}

.logo-footer .logo-name {
  text-shadow: 0 0 20px rgba(201, 169, 98, 0.35);
}

/* If the image fails to load, .logo gets .has-text-fallback (added by main.js)
   which hides the image and reveals the text logo. */
.logo.has-text-fallback .logo-image {
  display: none;
}

.logo.has-text-fallback .logo-text {
  display: inline-flex;
}

@media (max-width: 640px) {
  .logo-image {
    width: min(9.5rem, 52vw);
    max-height: 2.85rem;
  }
  .logo-footer .logo-image {
    width: min(14rem, 92vw);
    max-height: none;
  }
}

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-list a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-list a:hover {
  color: var(--white);
}

.nav-list a:hover::after,
.nav-list a.is-active::after {
  width: 100%;
}

.nav-list a.is-active {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
}

.lang-btn {
  padding: 0.4rem 0.65rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-btn.active {
  background: var(--gold);
  color: var(--navy);
}

.lang-btn:hover:not(.active) {
  color: var(--white);
}

.btn-header {
  padding: 0.6rem 1rem;
}

.btn-header span {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
}

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

.hero-overlay,
.hero-vignette {
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(0, 15, 46, 0.55) 0%,
    rgba(0, 23, 71, 0.75) 45%,
    rgba(0, 23, 71, 0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--header-h);
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 14ch;
}

.hero-lead {
  font-size: 1.0625rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  padding: 1rem;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.7);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ─── Placeholder images ─── */
.placeholder-img {
  position: relative;
  background-color: var(--navy-mid);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.placeholder-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(255, 255, 255, 0.03) 12px,
    rgba(255, 255, 255, 0.03) 24px
  );
}

.placeholder-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  z-index: 1;
}

.has-image::before,
.has-image .placeholder-label {
  display: none;
}

/* Fade-in once lazy-loaded image has decoded */
.placeholder-img.img-loaded {
  animation: imgFadeIn 0.45s ease-out;
}

@keyframes imgFadeIn {
  from { opacity: 0.4; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .placeholder-img.img-loaded { animation: none; }
}

/* ─── Sections ─── */
.section {
  padding: 6rem 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

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

/* ─── About ─── */
.about {
  background: var(--white);
}

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

.about-visual {
  position: relative;
  overflow: hidden;
}

.about-image {
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 28rem;
  margin-left: auto;
}

.about-accent {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 40%;
  height: 40%;
  border: 1px solid var(--gold);
  z-index: -1;
}

.about-text .section-lead {
  margin-bottom: 1rem;
}

.about-text p + p {
  margin-top: 1rem;
  color: var(--text-muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 3vw, 2rem);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 23, 71, 0.1);
}

.stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  text-align: center;
}

.stats strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  max-width: 100%;
}

.stats strong.stats-value--word {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  letter-spacing: 0.02em;
}

.stats span {
  font-size: clamp(0.68rem, 1.8vw, 0.8125rem);
  line-height: 1.35;
  color: var(--text-muted);
  max-width: 100%;
  padding-inline: 0.15rem;
}

/* ─── Rooms ─── */
.rooms {
  background: var(--cream);
}

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

.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 56px -16px rgba(0, 23, 71, 0.22);
}

.room-image {
  aspect-ratio: 4 / 3;
  width: 100%;
}

.room-body {
  padding: 1.5rem;
}

.room-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.room-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.room-features li {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.65rem;
  background: var(--cream);
  color: var(--navy);
  border-radius: 2px;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ─── Amenities ─── */
.amenities {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.amenities-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 100%, rgba(201, 169, 98, 0.12), transparent),
    radial-gradient(ellipse 60% 50% at 90% 0%, rgba(0, 38, 99, 0.8), transparent);
}

.amenities .container {
  position: relative;
  z-index: 1;
}

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

@media (min-width: 1100px) {
  .amenity-grid--five {
    grid-template-columns: repeat(5, 1fr);
  }
}

.amenity-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.amenity-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 169, 98, 0.4);
  transform: translateY(-4px);
}

.amenity-icon {
  display: block;
  font-size: 0.875rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.amenity-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.amenity-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ─── Gallery ─── */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 0.85rem;
}

.gallery-item {
  min-height: 100%;
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease);
}

.gallery-item:hover {
  transform: scale(1.02);
  z-index: 1;
}

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

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

/* ─── Contact ─── */
.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-list {
  margin: 2rem 0;
}

.contact-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 23, 71, 0.08);
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-key {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.contact-list a {
  color: var(--navy);
  transition: color 0.2s;
}

.contact-list a:hover {
  color: var(--gold);
}

.map-placeholder {
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder p {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ─── Footer ─── */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-copy {
  font-size: 0.8125rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

/* ─── WhatsApp float ─── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition:
    bottom 0.35s var(--ease-out),
    transform 0.25s var(--ease),
    background 0.25s,
    box-shadow 0.25s;
}

.whatsapp-float svg {
  width: 1.65rem;
  height: 1.65rem;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background: var(--whatsapp-dark);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

/* ─── Responsive ─── */
@media (min-width: 768px) {
  .btn-header span {
    display: inline;
  }
}

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }

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

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 4.25rem;
  }

  body.nav-open .site-header {
    z-index: 1202;
    background: var(--navy);
    backdrop-filter: none;
    box-shadow: none;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(0, 15, 46, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.35s var(--ease),
      visibility 0.35s var(--ease);
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1202;
  }

  .header-actions {
    position: relative;
    z-index: 1202;
  }

  .logo {
    position: relative;
    z-index: 1202;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(100%, 22rem);
    height: 100%;
    height: 100dvh;
    z-index: 1201;
    margin: 0;
    padding: calc(var(--header-h) + 1.5rem) 2rem 2rem;
    background: linear-gradient(
      180deg,
      var(--navy) 0%,
      var(--navy-deep) 100%
    );
    border-left: 1px solid rgba(201, 169, 98, 0.15);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.35);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
  }

  body.nav-open .nav {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list a {
    display: block;
    font-size: 1.125rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
  }

  .nav-list a.is-active {
    color: var(--gold-light);
  }

  .btn-header {
    display: none;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image {
    margin-inline: auto;
  }

  .stats {
    gap: 1rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

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

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

  .section {
    padding: 4rem 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

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

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

  .hero-scroll-line {
    animation: none;
  }

  .btn:hover,
  .room-card:hover,
  .amenity-card:hover,
  .gallery-item:hover,
  .whatsapp-float:hover {
    transform: none;
  }
}
