/* =========================================================
   N. PONCE APARTMENT — Design Tokens
   Formerly Doña Aurora Condotel
   ========================================================= */
:root {
  /* Color */
  --color-bg:          #0b0908;
  --color-bg-alt:       #17130f;
  --color-gold:         #c6a15b;
  --color-gold-bright:  #e8cd8f;
  --color-cream:        #f3ead9;
  --color-muted:        rgba(243, 234, 217, 0.68);
  --color-overlay:      rgba(7, 5, 4, 0.5);

  /* Type */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-utility: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --header-height: 88px;
  --max-width: 1320px;
  --edge: clamp(1.5rem, 5vw, 4rem);

  /* Motion */
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-cream);
  font-family: var(--font-utility);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; margin: 0; padding: 0; }

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--color-gold);
  color: var(--color-bg);
  padding: 0.75rem 1.25rem;
  font-family: var(--font-utility);
  font-weight: 500;
  z-index: 1000;
  border-radius: 2px;
  transition: top 0.25s var(--ease-lux);
}
.skip-link:focus {
  top: 1rem;
}

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

/* =========================================================
   Sticky Navigation
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-height);
  z-index: 100;
  background: transparent;
  transition: background 0.4s var(--ease-lux), height 0.4s var(--ease-lux),
              box-shadow 0.4s var(--ease-lux), border-color 0.4s var(--ease-lux);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(11, 9, 8, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(198, 161, 91, 0.18);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.6);
}

.nav-wrap {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--edge);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-cream);
}

.brand-sub {
  font-family: var(--font-utility);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 0.15rem;
}

/* Primary nav (desktop) */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.primary-nav ul {
  display: flex;
  gap: 2.25rem;
}

.nav-link {
  position: relative;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-cream);
  padding-bottom: 0.4rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.35s var(--ease-lux);
}

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

.nav-link.is-active {
  color: var(--color-gold-bright);
}

.nav-cta {
  border: 1px solid var(--color-gold);
  color: var(--color-gold-bright);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border-radius: 2px;
  transition: background 0.3s var(--ease-lux), color 0.3s var(--ease-lux);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--color-gold);
  color: var(--color-bg);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  width: 34px;
  height: 34px;
  z-index: 110;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-cream);
  transition: transform 0.35s var(--ease-lux), opacity 0.35s var(--ease-lux), width 0.35s var(--ease-lux);
}

.nav-toggle-bar:nth-child(2) { width: 70%; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bar {
  background: var(--color-gold-bright);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 100%;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 100%;
}

/* =========================================================
   Hero Section
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 2rem) var(--edge) 4rem;
}

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

.hero-image {
  position: absolute;
  inset: -4% -4%;
  background-image: url('../images/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--color-bg-alt); /* fallback tone while the photo loads */
  animation: heroKenBurns 24s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,5,4,0.55) 0%, rgba(7,5,4,0.35) 40%, rgba(7,5,4,0.75) 100%),
    linear-gradient(90deg, rgba(7,5,4,0.55) 0%, rgba(7,5,4,0.15) 45%, rgba(7,5,4,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.25rem;
}

.hero-logo-main {
  font-family: var(--font-utility);
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--color-cream);
}

.hero-logo-rule {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--color-gold);
  margin: 0.9rem 0;
}

.hero-logo-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--color-gold-bright);
  letter-spacing: 0.02em;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 1.08;
  color: var(--color-cream);
  margin: 0 0 1.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--color-gold-bright);
  font-weight: 400;
}

.hero-text {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 300;
  color: var(--color-muted);
  max-width: 560px;
  margin: 0 0 2.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  justify-content: center;
}

.btn {
  font-family: var(--font-utility);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background 0.35s var(--ease-lux), color 0.35s var(--ease-lux),
              border-color 0.35s var(--ease-lux), transform 0.35s var(--ease-lux);
}

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

.btn-primary:hover {
  background: var(--color-gold-bright);
  border-color: var(--color-gold-bright);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-cream);
  border-color: rgba(243, 234, 217, 0.4);
}

.btn-secondary:hover {
  border-color: var(--color-gold-bright);
  color: var(--color-gold-bright);
  transform: translateY(-2px);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2.25rem;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.scroll-cue-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--color-gold) 0%, transparent 100%);
  overflow: hidden;
  position: relative;
}

.scroll-cue-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-gold-bright);
  animation: scrollDrip 2.2s ease-in-out infinite;
}

.scroll-cue-text {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* =========================================================
   Reveal-on-load animation
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: revealUp 1s var(--ease-lux) forwards;
  animation-delay: var(--delay, 0s);
}

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

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

@keyframes scrollDrip {
  0%   { top: -100%; }
  60%  { top: 100%; }
  100% { top: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; animation: none; }
  .hero-image { animation: none; }
  .scroll-cue-line::after { animation: none; }
}

/* =========================================================
   Mobile navigation
   ========================================================= */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 105;
    background: rgba(11, 9, 8, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.4s var(--ease-lux), transform 0.4s var(--ease-lux), visibility 0.4s;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .nav-link {
    font-size: 1.1rem;
  }

  .nav-cta {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
  .btn { width: 100%; text-align: center; }
}

/* =========================================================
   Shared Section Layout
   ========================================================= */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--edge);
}

section {
  position: relative;
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-utility);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.15;
  color: var(--color-cream);
  margin: 0 0 1.25rem;
}

.lead-text {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-muted);
  max-width: 620px;
}

.section-intro {
  max-width: 720px;
  margin: 0 0 3.5rem;
}

.btn-small {
  padding: 0.75rem 1.6rem;
  font-size: 0.75rem;
}

/* Reveal-on-scroll (reuses hero's fade/rise keyframes) */
.reveal-onscroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-lux), transform 0.9s var(--ease-lux);
}
.reveal-onscroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-onscroll { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   About Section
   ========================================================= */
.about {
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 420px;
}

.about-media-frame {
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.6);
}

.about-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-media-main {
  width: 82%;
  aspect-ratio: 4 / 5;
}

.about-media-accent {
  position: absolute;
  right: 0;
  bottom: -8%;
  width: 52%;
  aspect-ratio: 4 / 3;
  border: 6px solid var(--color-bg);
  outline: 1px solid rgba(198,161,91,0.35);
}

.about-copy p {
  color: var(--color-muted);
  font-weight: 300;
  margin: 0 0 1.25rem;
  max-width: 560px;
}

.about-features {
  list-style: none;
  margin: 1.75rem 0 2.25rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--color-cream);
  font-size: 0.95rem;
}

.feature-mark {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}

/* =========================================================
   Rooms Section
   ========================================================= */
.rooms {
  background: var(--color-bg-alt);
}

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

.room-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(198,161,91,0.14);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.35s var(--ease-lux), transform 0.35s var(--ease-lux);
}

.room-card:hover {
  border-color: rgba(198,161,91,0.4);
  transform: translateY(-4px);
}

.room-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-bg);
}

.room-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s var(--ease-lux);
}

.room-media-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(7,5,4,0.55);
  color: var(--color-cream);
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease-lux), background 0.3s var(--ease-lux);
}

.room-card-media:hover .room-media-nav,
.room-media-nav:focus-visible {
  opacity: 1;
}

.room-media-nav:hover { background: rgba(198,161,91,0.85); color: var(--color-bg); }
.room-media-prev { left: 0.75rem; }
.room-media-next { right: 0.75rem; }

.room-media-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
}

.room-media-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(243,234,217,0.4);
  transition: background 0.3s var(--ease-lux), transform 0.3s var(--ease-lux);
}

.room-media-dots span.is-active {
  background: var(--color-gold-bright);
  transform: scale(1.3);
}

.room-card-body {
  padding: 1.75rem;
}

.room-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-cream);
  margin: 0 0 0.6rem;
}

.room-desc {
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 300;
  margin: 0 0 1.1rem;
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  margin-bottom: 1.4rem;
}

.room-meta span {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-gold-bright);
}

/* =========================================================
   Amenities Section
   ========================================================= */
.amenities {
  background: var(--color-bg);
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.amenities-intro { margin: 0; }

.amenity-list {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 1.5rem;
}

.amenity-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

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

.amenity-icon svg { width: 100%; height: 100%; }

.amenity-item h3 {
  font-family: var(--font-utility);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-cream);
  margin: 0 0 0.3rem;
}

.amenity-item p {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 300;
  margin: 0;
}

.amenities-media {
  position: relative;
  min-height: 460px;
}

.amenities-media-frame {
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.6);
}

.amenities-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.amenities-media-a {
  width: 80%;
  aspect-ratio: 3 / 4;
}

.amenities-media-b {
  position: absolute;
  right: 0;
  bottom: -6%;
  width: 52%;
  aspect-ratio: 4 / 3;
  border: 6px solid var(--color-bg);
  outline: 1px solid rgba(198,161,91,0.35);
}

/* =========================================================
   Gallery Section
   ========================================================= */
.gallery {
  background: var(--color-bg-alt);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  padding: 0;
}

.gallery-item:nth-child(4n+1) { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-lux), filter 0.6s var(--ease-lux);
  filter: saturate(0.9);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.07);
  filter: saturate(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7,5,4,0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-lux);
}

.gallery-item:hover::after { opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(7,5,4,0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 2px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(243,234,217,0.3);
  color: var(--color-cream);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s var(--ease-lux), color 0.3s var(--ease-lux);
}

.lightbox-close:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-bright);
}

/* =========================================================
   Contact Section
   ========================================================= */
.contact {
  background: var(--color-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.contact-details {
  margin: 2rem 0 2.25rem;
  display: grid;
  gap: 1.25rem;
}

.contact-row dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.35rem;
}

.contact-row dd {
  margin: 0;
  color: var(--color-cream);
  font-weight: 300;
}

.contact-map {
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.6);
  aspect-ratio: 4 / 3;
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--color-bg-alt);
  border-top: 1px solid rgba(198,161,91,0.16);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand .brand-main,
.footer-brand .brand-sub {
  display: block;
}

.footer-tagline {
  margin-top: 1rem;
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 300;
  max-width: 320px;
}

.footer-nav h3,
.footer-contact h3 {
  font-family: var(--font-utility);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 1.1rem;
}

.footer-nav ul { list-style: none; padding: 0; display: grid; gap: 0.65rem; }

.footer-nav a {
  color: var(--color-muted);
  font-size: 0.92rem;
  transition: color 0.3s var(--ease-lux);
}
.footer-nav a:hover { color: var(--color-gold-bright); }

.footer-contact p {
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(243,234,217,0.08);
  padding: 1.5rem var(--edge);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(243,234,217,0.45);
}

/* =========================================================
   Responsive — Sections
   ========================================================= */
@media (max-width: 900px) {
  .about-grid,
  .amenities-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-media { min-height: 340px; margin-bottom: 2rem; }
  .amenities-media { min-height: 320px; order: -1; margin-bottom: 1rem; }

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

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item:nth-child(4n+1) { grid-row: span 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .about-media-accent,
  .amenities-media-b { width: 62%; }
}
