/* ============================================
   Extended Stay America Phoenix – Metro Center
   Clean minimalist · Burgundy + Blush
   ============================================ */

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

:root {
  --burgundy: #7B2D3B;
  --burgundy-deep: #5C1F2B;
  --burgundy-light: #9A3D4E;
  --blush: #F5E6E0;
  --blush-light: #FAF3F0;
  --blush-mid: #F0D8CF;
  --cream: #FDF9F7;
  --white: #FFFFFF;
  --text-dark: #1A1416;
  --text-mid: #4A3F42;
  --text-light: #7A6E71;
  --text-muted: #A89A9D;
  --line: rgba(123, 45, 59, 0.12);
  --line-strong: rgba(123, 45, 59, 0.25);
  --shadow-sm: 0 1px 3px rgba(26, 20, 22, 0.04);
  --shadow-md: 0 4px 20px rgba(26, 20, 22, 0.06);
  --shadow-lg: 0 12px 40px rgba(26, 20, 22, 0.08);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--burgundy);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-size: 0.875rem;
  transition: top var(--transition);
}

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

/* ── Typography ── */
.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1rem;
}

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.section-dek {
  font-size: 1.0625rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.75;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--burgundy);
  color: var(--white);
  border: 1px solid var(--burgundy);
}

.btn--primary:hover {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

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

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

.btn--ghost:hover {
  border-color: var(--burgundy);
  background: rgba(123, 45, 59, 0.04);
}

.btn--light {
  background: var(--white);
  color: var(--burgundy);
  border: 1px solid var(--white);
}

.btn--light:hover {
  background: var(--blush);
  border-color: var(--blush);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

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

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 1rem 1.5rem;
}

.btn--large {
  padding: 1.125rem 2.25rem;
  font-size: 0.9375rem;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-dark);
}

.logo--footer {
  color: var(--white);
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--burgundy);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  border-radius: var(--radius-sm);
}

.logo--footer .logo-mark {
  background: var(--blush);
  color: var(--burgundy);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.main-nav a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-mid);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.main-nav a:hover {
  color: var(--burgundy);
  background: rgba(123, 45, 59, 0.04);
}

/* Nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ── Hero ── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero-content {
  padding-right: 1rem;
}

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

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
  letter-spacing: -0.015em;
}

.hero-headline em {
  font-style: italic;
  color: var(--burgundy);
}

.hero-dek {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

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

.hero-stats {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1;
}

.stat-label {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-light);
  line-height: 1.4;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--line-strong);
}

/* Hero image stack */
.hero-image-stack {
  position: relative;
  height: 720px;
}

.hero-img {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img--main {
  width: 380px;
  height: 520px;
  top: 0;
  right: 0;
  z-index: 2;
}

.hero-img--accent {
  width: 260px;
  height: 195px;
  bottom: 180px;
  right: 40px;
  z-index: 3;
  border: 4px solid var(--cream);
}

.hero-img--detail {
  width: 200px;
  height: 150px;
  bottom: 40px;
  right: 200px;
  z-index: 1;
}

/* Hero decorative line */
.hero-line {
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: var(--line);
}

/* ── Philosophy ── */
.philosophy {
  padding: 8rem 0;
  background: var(--white);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.philosophy-left .section-headline {
  margin-bottom: 0;
}

.philosophy-right p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.philosophy-right p strong {
  color: var(--text-dark);
  font-weight: 500;
}

.philosophy-divider {
  width: 48px;
  height: 1px;
  background: var(--burgundy);
  margin: 2.5rem 0;
}

.philosophy-values {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.value-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 1rem;
}

.value-number {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--burgundy);
  padding-top: 0.25rem;
}

.value-item h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.375rem;
}

.value-item p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

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

.rooms .section-header {
  margin-bottom: 4rem;
}

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

.room-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.room-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 600 / 420;
}

.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover .room-card-img img {
  transform: scale(1.04);
}

.room-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
}

.room-tag.pet {
  background: var(--text-dark);
}

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

.room-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.room-desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.room-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.room-features li {
  font-size: 0.8125rem;
  color: var(--text-mid);
  padding-left: 1.25rem;
  position: relative;
}

.room-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 6px;
  height: 1px;
  background: var(--burgundy);
}

/* ── Amenities ── */
.amenities {
  padding: 8rem 0;
  background: var(--white);
}

.amenities-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.amenities-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 560 / 700;
}

.amenities-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenities-content .section-dek {
  margin-bottom: 3rem;
}

.amenities-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.amenity-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.amenity-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.amenity-icon {
  display: flex;
  align-items: start;
  padding-top: 0.125rem;
  color: var(--burgundy);
}

.amenity-row h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.375rem;
}

.amenity-row p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── Location ── */
.location {
  padding: 8rem 0;
  background: var(--blush-light);
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.location-dek {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.location-detail {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
}

.location-detail-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 0.2em;
}

.location-detail-value {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.location-detail a:hover {
  color: var(--burgundy);
}

.location-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 600 / 500;
}

.location-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.map-pin {
  flex-shrink: 0;
}

.map-overlay p {
  font-size: 0.8125rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ── Rates ── */
.rates {
  padding: 8rem 0;
  background: var(--cream);
}

.rates-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.rates-dek {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.rates-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.rates-highlights li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: var(--text-mid);
}

.rates-highlights svg {
  color: var(--burgundy);
  flex-shrink: 0;
}

.rates-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rates-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.rates-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 500 / 640;
}

.rates-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rates-visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(26, 20, 22, 0.6));
  color: var(--white);
}

.rates-visual-caption p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.4;
}

/* ── Contact ── */
.contact {
  padding: 8rem 0;
  background: var(--white);
}

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

.contact-dek {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 0.2em;
}

.contact-detail-value {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition);
}

.contact-detail-value:hover {
  color: var(--burgundy);
}

/* Form */
.contact-form-wrap {
  background: var(--blush-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  text-align: center;
  padding: 3rem 2rem;
}

.form-success svg {
  margin: 0 auto 1.25rem;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.form-success p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.form-success a {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Footer ── */
.site-footer {
  background: var(--text-dark);
  color: var(--blush);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 230, 224, 0.1);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(245, 230, 224, 0.6);
  line-height: 1.6;
}

.footer-contact a {
  color: rgba(245, 230, 224, 0.6);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-note {
  font-size: 0.75rem;
  color: rgba(245, 230, 224, 0.35);
  line-height: 1.7;
  max-width: 320px;
}

.footer-bottom {
  padding-top: 2rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(245, 230, 224, 0.3);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-image-stack {
    height: 480px;
    order: -1;
  }

  .hero-img--main {
    width: 280px;
    height: 380px;
  }

  .hero-img--accent {
    width: 180px;
    height: 135px;
    right: 20px;
  }

  .hero-img--detail {
    width: 150px;
    height: 112px;
    right: 140px;
  }

  .hero-content {
    padding-right: 0;
  }

  .philosophy-grid,
  .amenities-layout,
  .location-layout,
  .rates-inner,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .footer-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--cream);
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

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

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .main-nav a {
    display: block;
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }

  .main-nav .btn--outline {
    text-align: center;
    margin-top: 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-grid {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero-image-stack {
    height: 360px;
  }

  .hero-img--main {
    width: 220px;
    height: 300px;
  }

  .hero-img--accent {
    width: 140px;
    height: 105px;
    right: 10px;
    bottom: 120px;
  }

  .hero-img--detail {
    width: 120px;
    height: 90px;
    right: 100px;
    bottom: 20px;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .stat-number {
    font-size: 1.375rem;
  }

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

  .location-detail,
  .contact-detail {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

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

  .philosophy,
  .rooms,
  .amenities,
  .location,
  .rates,
  .contact {
    padding: 5rem 0;
  }

  .contact-form-wrap {
    padding: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero-image-stack {
    display: none;
  }

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

  .hero-actions .btn {
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }
}

/* ── Animations ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
}
