/* ===================================================
   LUXURY HOTEL TEMPLATE V2 — Editorial Premium
   =================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --gold: #c9a961;
  --gold-light: #e6cc8f;
  --gold-dark: #a08542;
  --ink: #1c1917;
  --charcoal: #2a2724;
  --warm-white: #faf6f1;
  --cream: #f4ede2;
  --stone: #a8a29e;
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.65, 0.05, 0.36, 1);
}

body {
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.7;
  background: var(--warm-white);
  overflow-x: hidden;
  font-weight: 300;
  letter-spacing: 0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--gold); color: white; }

/* ====================== SCROLL ANIMATIONS ====================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

.reveal-img {
  overflow: hidden;
  position: relative;
}
.reveal-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--warm-white);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1.4s var(--ease);
  z-index: 2;
}
.reveal-img.in-view::after { transform: scaleX(0); }
.reveal-img img {
  transform: scale(1.15);
  transition: transform 2s var(--ease);
}
.reveal-img.in-view img { transform: scale(1); }

/* ====================== NAVIGATION ====================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s var(--ease);
  mix-blend-mode: difference;
}
.navbar.solid {
  mix-blend-mode: normal;
  background: rgba(250, 246, 241, 0.95);
  backdrop-filter: blur(20px);
  padding: 18px 50px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.nav-logo {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.4em;
  color: white;
  font-weight: 400;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 200px;
}

@media (max-width: 768px) {
  .nav-logo {
    font-size: 22px;
    letter-spacing: 0.2em;
    max-width: 140px;
  }
}

@media (max-width: 640px) {
  .nav-logo {
    font-size: 19px;
    letter-spacing: 0.1em;
    max-width: 110px;
  }
}
.navbar.solid .nav-logo { color: var(--ink); }

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

.nav-links a {
  color: white;
  font-size: 11px;
  letter-spacing: 0.3em;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.navbar.solid .nav-links a { color: var(--ink); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-book-btn {
  padding: 11px 24px;
  border: 1px solid white;
  font-size: 11px;
  letter-spacing: 0.25em;
  border-radius: 100px;
  background: transparent;
  color: white;
  font-weight: 500;
  transition: all 0.4s var(--ease);
}
.navbar.solid .nav-book-btn { border-color: var(--ink); color: var(--ink); }
.nav-book-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

/* ===== Hamburger toggle — pure CSS, no icon font dependency ===== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 102;
  padding: 0;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.navbar.solid .nav-toggle span { background: var(--ink); }

.nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ====================== HERO ====================== */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s var(--ease) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 90px;
  z-index: 2;
  color: white;
  max-width: 1100px;
}

.hero-mark {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.4s var(--ease) forwards;
}

.hero h1 {
  font-family: var(--display);
  font-size: 72px;
  line-height: 1.2;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s 0.6s var(--ease) forwards;
  letter-spacing: -0.02em;
  word-spacing: -0.1em;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 20px;
    line-height: 1;
    word-spacing: -0.5em;
    letter-spacing: -0.05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 18px;
    word-spacing: -0.6em;
    letter-spacing: -0.06em;
  }
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.hero p {
  font-size: 17px;
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1.2s 0.9s var(--ease) forwards;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1.2s 1.1s var(--ease) forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 10px;
  letter-spacing: 0.3em;
  opacity: 0;
  animation: fadeUp 1s 1.4s var(--ease) forwards;
}
.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 50px;
  background: white;
  animation: scrollDot 2s ease-in-out infinite;
  transform-origin: top;
}
@media (max-width: 768px) {
  .scroll-indicator { display: none; }
}
@keyframes scrollDot {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ====================== PAGE HERO (inner pages) ====================== */
.page-hero {
  height: 70vh;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 80px;
  color: white;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.page-hero-mark {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 22px;
  opacity: 0.85;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 90px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }

/* ====================== BUTTONS ====================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-size: 11px;
  letter-spacing: 0.3em;
  font-weight: 500;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: white;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  border-radius: 100px;
  font-family: var(--sans);
  cursor: pointer;
}
.btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}
.btn i { transition: transform 0.4s var(--ease); }
.btn:hover i { transform: translateX(4px); }

.btn-outline { background: transparent; border-color: white; color: white; }
.btn-outline:hover { background: white; color: var(--ink); }

.btn-dark { background: var(--ink); border-color: var(--ink); }
.btn-dark:hover { background: var(--charcoal); border-color: var(--charcoal); }

.btn-text {
  background: transparent;
  border: none;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}
.btn-text:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: none;
}

/* ====================== SECTION SHELL ====================== */
.section { padding: 140px 60px; position: relative; }
.section-cream { background: var(--cream); }
.section-warm { background: var(--warm-white); }
.section-ink { background: var(--ink); color: var(--warm-white); }

.section-no-pad-bottom { padding-bottom: 0; }

.container { max-width: 1280px; margin: 0 auto; }
.container-narrow { max-width: 980px; margin: 0 auto; }

/* Section number style — editorial */
.section-num {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-num::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--gold-dark); }

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

.section-subtitle {
  color: var(--stone);
  font-size: 17px;
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

/* Editorial 2-column intro */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ====================== ABOUT (asymmetric image) ====================== */
.about-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.about-image-wrap {
  position: relative;
  height: 500px;
  border-radius: 0px;
  overflow: hidden;
}

.room-row-image {
  border-radius: 0px;
}

.room-row-image img {
  border-radius: 0px;
}


.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-decor {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}

.about-text p {
  color: var(--charcoal);
  font-size: 16px;
  margin-bottom: 22px;
  line-height: 1.85;
  font-weight: 300;
}
.about-text p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 64px;
  float: left;
  line-height: 0.85;
  margin: 8px 12px 0 0;
  color: var(--gold);
  font-weight: 400;
}

.signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}
.signature small {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--stone);
  font-style: normal;
  margin-top: 6px;
  text-transform: uppercase;
}

/* ====================== ROOMS - Asymmetric Editorial ====================== */
.rooms-editorial {
  display: flex;
  flex-direction: column;
  gap: 140px;
}

.room-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.room-row:nth-child(even) .room-row-image { order: 2; }
.room-row:nth-child(even) .room-row-content { order: 1; padding-left: 40px; }
.room-row:nth-child(odd) .room-row-content { padding-right: 40px; }

.room-row-image {
  position: relative;
  height: 580px;
  overflow: hidden;
  border-radius: 8px;
}
.room-row:nth-child(odd) .room-row-image {
  border-radius: 280px 8px 8px 280px;
}
.room-row:nth-child(even) .room-row-image {
  border-radius: 8px 280px 280px 8px;
}
.room-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease);
}
.room-row:hover .room-row-image img { transform: scale(1.05); }

.room-num {
  font-family: var(--display);
  font-size: 90px;
  font-weight: 200;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  font-style: italic;
}

.room-name {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--ink);
  line-height: 1.05;
}

.room-desc {
  color: var(--charcoal);
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.85;
  max-width: 460px;
  font-weight: 300;
}

.room-meta {
  display: flex;
  gap: 36px;
  margin-bottom: 32px;
  padding: 22px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.room-meta-item { }
.room-meta-item small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--stone);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 500;
}
.room-meta-item strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
}

.room-price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}
.room-price-line .price {
  font-family: var(--display);
  font-size: 38px;
  color: var(--gold-dark);
  font-weight: 300;
}
.room-price-line .price small {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--stone);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  margin-left: 6px;
}

/* Compact room cards (homepage) */
.rooms-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.room-card-compact {
  position: relative;
  cursor: pointer;
}
.room-card-compact-img {
  height: 480px;
  overflow: hidden;
  border-radius: 200px 200px 8px 8px;
  position: relative;
}
.room-card-compact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.room-card-compact:hover .room-card-compact-img img { transform: scale(1.08); }

.room-card-compact-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
}

.room-card-compact-meta {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  color: white;
  z-index: 2;
}
.room-card-compact-meta h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 6px;
}
.room-card-compact-meta .price {
  font-size: 12px;
  letter-spacing: 0.2em;
  opacity: 0.95;
}

/* ====================== AMENITIES ====================== */
.amenities-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.section-ink .amenities-row {
  border-color: rgba(255,255,255,0.1);
}
.amenity {
  padding: 50px 28px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.08);
  transition: background 0.4s var(--ease);
}
.section-ink .amenity { border-color: rgba(255,255,255,0.1); }
.amenity:last-child { border-right: none; }
.amenity:hover { background: rgba(201,169,97,0.06); }

.amenity-icon {
  font-size: 38px;
  color: var(--gold);
  margin-bottom: 18px;
}
.amenity-name {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}
.amenity-desc {
  font-size: 13px;
  color: var(--stone);
  font-weight: 300;
}

/* ====================== STATS ====================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--display);
  font-size: 72px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.stat .num em { font-style: italic; }
.stat .label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ====================== GALLERY (masonry) ====================== */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.gallery-item:hover img { transform: scale(1.1); }

.gallery-item:nth-child(1) { grid-row: span 2; grid-column: span 2; }
.gallery-item:nth-child(4) { grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item:nth-child(8) { grid-column: span 2; }

/* ====================== TESTIMONIALS ====================== */
.testimonial-stage {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.quote-mark {
  font-family: var(--display);
  font-size: 140px;
  color: var(--gold);
  line-height: 0.5;
  opacity: 0.4;
  margin-bottom: 20px;
}
.quote-text {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  line-height: 1.4;
  font-style: italic;
  color: var(--warm-white);
  margin-bottom: 36px;
}
.quote-author {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.quote-stars {
  margin-top: 18px;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 4px;
}

.quote-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
}
.quote-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all 0.3s;
}
.quote-dot.active {
  background: var(--gold);
  width: 30px;
  border-radius: 4px;
}

/* ====================== CONTACT ====================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-block {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.contact-info-block:last-child { border-bottom: none; }

.contact-info-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}
.contact-info-value {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.4;
}

.form-block {
  background: white;
  padding: 48px;
  border-radius: 8px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.1);
}

.field-group { margin-bottom: 24px; }
.field-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
  font-weight: 600;
}
.field-input {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  font-family: var(--sans);
  font-size: 15px;
  background: transparent;
  font-weight: 300;
  transition: border-color 0.3s;
}
.field-input:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
textarea.field-input { resize: vertical; min-height: 100px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.map-frame {
  width: 100%;
  height: 480px;
  border: none;
  margin-top: 80px;
  border-radius: 8px;
}

/* ====================== CTA Banner ====================== */
.cta-banner {
  position: relative;
  padding: 160px 60px;
  text-align: center;
  color: white;
  overflow: hidden;
}
.cta-banner-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h2 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.cta-banner h2 em { font-style: italic; color: var(--gold-light); }
.cta-banner p {
  font-size: 17px;
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 300;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ====================== FOOTER ====================== */
.footer {
  background: var(--ink);
  color: var(--stone);
  padding: 100px 60px 30px;
  position: relative;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto 70px;
}
.footer-logo {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.3em;
  color: white;
  margin-bottom: 22px;
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 320px;
}

.footer h4 {
  color: white;
  font-size: 11px;
  letter-spacing: 0.3em;
  margin-bottom: 24px;
  font-weight: 500;
  text-transform: uppercase;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; }
.footer a {
  color: var(--stone);
  font-size: 14px;
  font-weight: 300;
  transition: color 0.3s;
}
.footer a:hover { color: var(--gold); }

.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.4s var(--ease);
}
.social-row a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  max-width: 1280px;
  margin: 0 auto;
  letter-spacing: 0.05em;
}

/* ====================== RESPONSIVE ====================== */

/* Tablets — room rows stack, etc. */
@media (max-width: 1024px) {
  .room-row { grid-template-columns: 1fr; gap: 40px; }
  .room-row:nth-child(even) .room-row-image { order: 0; }
  .room-row:nth-child(even) .room-row-content,
  .room-row:nth-child(odd) .room-row-content { padding: 0; }
  .room-row-image { height: 420px; border-radius: 8px !important; }
  .about-section { grid-template-columns: 1fr; gap: 50px; }
  .about-image-wrap { height: 480px; border-radius: 200px 200px 8px 8px; }
  .rooms-compact { grid-template-columns: 1fr 1fr; }
  .amenities-row { grid-template-columns: 1fr 1fr; }
  .amenity:nth-child(2n) { border-right: none; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2n) { border-right: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item:nth-child(n) { grid-row: auto; grid-column: auto; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
}

/* ===== MOBILE / TABLET NAV — hamburger now shows up to 1024px ===== */
@media (max-width: 1024px) {
  .navbar { padding: 18px 22px; }
  .navbar.solid { padding: 14px 22px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    display: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 101;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--ink) !important; }
  .nav-book-btn {
    display: inline-flex;
    border-color: var(--ink) !important;
    color: var(--ink) !important;
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .hero-content { padding: 0 24px 60px; }
  .page-hero { padding: 0 24px 60px; }

  .section { padding: 80px 22px; }
  .rooms-compact { grid-template-columns: 1fr; }
  .amenities-row { grid-template-columns: 1fr; }
  .amenity { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat .num { font-size: 52px; }
  .room-meta { flex-wrap: wrap; gap: 20px; }
  .field-row { grid-template-columns: 1fr; }
  .form-block { padding: 28px; }

  .footer { padding: 70px 24px 25px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .cta-banner { padding: 90px 22px; }

  .gallery-masonry { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item:nth-child(n) { grid-column: auto; }

  .room-num { font-size: 64px; }
  .room-name { font-size: 36px; }
}