/* ==========================================================================
   Arise Apartments — Global Styles (UPDATED)
   Day/Night theming via CSS variables on <html data-theme="">
   ========================================================================== */

:root {
  --gold: #C9A96E;
  --gold-dark: #8B7355;
  --green: #2D5A3D;
  --ivory: #FAF8F5;
  --charcoal: #1A1A1A;
  --transition-theme: background-color .6s ease, color .6s ease, border-color .6s ease, box-shadow .6s ease;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-subheading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[data-theme="day"] {
  --bg: #FAF8F5;
  --bg-alt: #F3EFE8;
  --bg-card: #FFFFFF;
  --text: #0D0D0D;
  --text-2: #6B6B6B;
  --heading: #0D0D0D;
  --border: rgba(13, 13, 13, .09);
  --shadow: 0 4px 24px rgba(13, 13, 13, .07);
  --shadow-lift: 0 16px 40px rgba(13, 13, 13, .14);
  --header-bg: rgba(250, 248, 245, .9);
  --gold-glow: none;
  --skeleton-a: #E8E6E3;
  --skeleton-b: #F4F2EF;
}

html[data-theme="night"] {
  --bg: #1A1A1A;
  --bg-alt: #211F1C;
  --bg-card: #242220;
  --text: #FAF8F5;
  --text-2: #ABA49A;
  --heading: #FAF8F5;
  --border: rgba(250, 248, 245, .12);
  --shadow: 0 4px 24px rgba(0, 0, 0, .45);
  --shadow-lift: 0 16px 40px rgba(0, 0, 0, .6);
  --header-bg: rgba(26, 26, 26, .9);
  --gold-glow: 0 0 18px rgba(201, 169, 110, .35);
  --skeleton-a: #333333;
  --skeleton-b: #3E3C39;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  transition: background-color .6s ease, color .6s ease;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  transition: var(--transition-theme);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
h1, h2, h3 { font-family: var(--font-heading); color: var(--heading); font-weight: 500; line-height: 1.2; }

.container { width: min(1200px, 92%); margin-inline: auto; }
section { padding: clamp(64px, 9vw, 110px) 0; }

.section-heading { text-align: center; font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 12px; }
.section-subtext {
  text-align: center;
  font-family: var(--font-subheading);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  color: var(--text-2);
  margin-bottom: clamp(36px, 5vw, 56px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .4px;
  border: 1.5px solid transparent;
  transition: background-color .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease, transform .2s ease;
}

.btn-gold { background: var(--gold); color: #0D0D0D; box-shadow: var(--gold-glow); }
.btn-gold:hover { background: var(--gold-dark); color: #FAF8F5; }
.btn-outline { background: transparent; border-color: var(--gold); color: var(--text); }
.btn-outline:hover { background: var(--gold); color: #0D0D0D; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}

.site-header.scrolled {
  padding: 8px 0;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(13, 13, 13, .08);
}
html[data-theme="night"] .site-header.scrolled { box-shadow: 0 4px 20px rgba(0, 0, 0, .4); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 46px; width: auto; transition: filter .5s ease, height .3s ease; }
.site-header.scrolled .logo img { height: 38px; }

.site-header:not(.scrolled) .logo img,
html[data-theme="night"] .logo img {
  filter: brightness(0) invert(78%) sepia(24%) saturate(680%) hue-rotate(357deg);
}

.main-nav { display: flex; gap: clamp(14px, 2vw, 28px); }
.main-nav a {
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .5px;
  padding: 10px 2px;
  position: relative;
  color: var(--text);
  transition: color .3s ease;
}
.site-header:not(.scrolled) .main-nav a { color: #FAF8F5; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.main-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.theme-toggle {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background-color .3s ease, transform .4s ease;
}
.theme-toggle:hover { background: rgba(201, 169, 110, .15); transform: rotate(18deg); }
.theme-toggle svg { width: 20px; height: 20px; }
html[data-theme="day"] .icon-sun { display: none; }
html[data-theme="night"] .icon-moon { display: none; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--gold);
  transition: transform .3s ease, opacity .3s ease;
}

/* Mobile drawer */
.drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: min(320px, 85vw);
  background: var(--bg-card);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .35s ease;
  padding: 84px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-lift);
}
.drawer.open { transform: translateX(0); }
.drawer a { padding: 13px 4px; font-size: 1.05rem; border-bottom: 1px solid var(--border); min-height: 44px; display: flex; align-items: center; }
.drawer .drawer-contact { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }
.drawer-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: transparent; border: none;
  font-size: 1.6rem; color: var(--text);
}
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.drawer-overlay.visible { opacity: 1; pointer-events: auto; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 96px 0 46px;
  overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; overflow: hidden; }
.hero-slides::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(10, 9, 8, .82) 0%, rgba(10, 9, 8, .52) 45%, rgba(10, 9, 8, .55) 100%);
}

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity, transform;
}
.hero-slide.active { opacity: 1; animation: kenburns 9s ease-out forwards; }
.hero-slide.kb-alt.active { animation-name: kenburnsAlt; }

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08) translate(-1.2%, .8%); }
}
@keyframes kenburnsAlt {
  from { transform: scale(1.08) translate(1%, -.6%); }
  to { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.active, .hero-slide.kb-alt.active { animation: none; }
}

.hero-dots {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 2px;
}
.hero-dot {
  width: 28px; height: 28px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.hero-dot::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(250, 248, 245, .6);
  transition: background-color .3s ease, transform .3s ease;
}
.hero-dot.active::before { background: var(--gold); transform: scale(1.3); }
.hero-dot:hover::before { background: #FAF8F5; }

.hero-slides { animation: fadeIn .8s ease-out both; }
.hero-title { animation: fadeSlideDown .6s ease-out .3s both; }
.hero-tagline { animation: fadeIn .5s ease-out .6s both; }
.booking-widget { animation: fadeInUp .6s ease-out .9s both; }
.trust-badges { animation: fadeIn .4s ease-out 1.2s both; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-24px); }
  to { opacity: 1; transform: none; }
}

.hero-top {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: clamp(24px, 9vh, 110px);
}

.hero-bottom {
  position: relative;
  z-index: 2;
  width: min(1080px, 92%);
  margin-top: auto;
  text-align: center;
}

.hero-title {
  font-size: clamp(42px, 7vw, 72px);
  color: #FAF8F5;
  font-weight: 500;
}
.hero-tagline {
  font-family: var(--font-subheading);
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  letter-spacing: 2px;
  color: #FAF8F5;
  margin-top: 10px;
}

/* Booking widget */
.booking-widget {
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: var(--shadow-lift);
  padding: 22px;
  text-align: left;
  transition: var(--transition-theme);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.field label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-2);
  margin-bottom: 6px;
}
.field input, .field select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  transition: border-color .3s ease, var(--transition-theme);
}
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); }

.booking-form .btn { min-height: 48px; white-space: nowrap; }

.booking-form .btn-gold { animation: ctaPulse 4s ease-out infinite; }
@keyframes ctaPulse {
  0%, 30%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0); }
  10% { box-shadow: 0 0 0 10px rgba(201, 169, 110, .22); }
  20% { box-shadow: 0 0 0 16px rgba(201, 169, 110, 0); }
}

/* Availability results */
.availability-results { margin-top: 4px; }
.availability-results .results-inner {
  padding-top: 20px;
  display: grid;
  gap: 14px;
  max-height: min(320px, 36vh);
  overflow-y: auto;
}
.availability-message {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: .92rem;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-2);
}
.availability-message.error { border-color: rgba(180, 60, 60, .35); }
.availability-message.success { border-color: var(--green); color: var(--text); }

.result-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
  animation: fadeInUp .5s ease-out both;
}
.result-card img { width: 120px; height: 96px; object-fit: cover; }
.result-card .result-info h4 { font-family: var(--font-heading); font-size: 1.05rem; color: var(--heading); }
.result-card .result-info p { font-size: .85rem; color: var(--text-2); }
.result-card .result-price { text-align: right; padding-right: 16px; }
.result-card .result-price .from { color: var(--gold); font-weight: 700; }
.result-card .result-price .total { display: block; font-size: .8rem; color: var(--text-2); }
.result-card .result-price .btn { margin-top: 8px; min-height: 44px; padding: 8px 18px; font-size: .85rem; }

/* Trust badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 48px);
  margin-top: 28px;
  flex-wrap: wrap;
}
.trust-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FAF8F5;
  font-size: .9rem;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.trust-badges svg { width: 20px; height: 20px; color: #7FBF95; flex-shrink: 0; }

/* Room cards */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.room-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease, background-color .6s ease;
  display: flex;
  flex-direction: column;
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }

.room-card .card-media { display: block; overflow: hidden; aspect-ratio: 4 / 3; }
.room-card .card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.room-card:hover .card-media img { transform: scale(1.05); }

.room-card .card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; text-align: left; }
.room-card h3 { font-size: 1.5rem; }
.room-card .price { font-weight: 700; color: var(--gold); font-size: 1.02rem; }
.room-card .guests { display: flex; align-items: center; gap: 7px; font-size: .85rem; color: var(--text-2); }
.room-card .guests svg { width: 16px; height: 16px; color: var(--gold); }
.room-card .desc {
  font-size: .9rem;
  color: var(--text-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.room-card .btn { margin-top: auto; align-self: flex-start; }

/* Skeletons */
.skeleton-card { border-radius: 12px; overflow: hidden; background: var(--bg-card); box-shadow: var(--shadow); }
.skeleton {
  background: linear-gradient(90deg, var(--skeleton-a) 25%, var(--skeleton-b) 50%, var(--skeleton-a) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
.skeleton-card .sk-img { aspect-ratio: 4/3; }
.skeleton-card .sk-line { height: 14px; border-radius: 6px; margin: 14px 22px; }
.skeleton-card .sk-line.short { width: 45%; }
.skeleton-card .sk-line:last-child { margin-bottom: 26px; }

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Amenities */
.amenities-section { background: var(--bg-alt); transition: var(--transition-theme); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 3vw, 36px);
}

.amenity {
  position: relative;
  text-align: center;
  padding: 26px 12px;
  border-radius: 12px;
  transition: background-color .3s ease;
}
.amenity:hover { background: var(--bg-card); box-shadow: var(--shadow); }
.amenity svg {
  width: 34px; height: 34px;
  color: var(--gold);
  margin-inline: auto;
  margin-bottom: 12px;
  stroke-width: 1.4;
  transition: transform .3s ease, color .3s ease;
}
html[data-theme="night"] .amenity svg { color: var(--ivory); filter: drop-shadow(0 0 6px rgba(201,169,110,.35)); }
.amenity:hover svg, .amenity:focus-within svg { color: var(--gold); transform: scale(1.1); }
.amenity > span:not(.tooltip) {
  display: block;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color .3s ease;
}
.amenity:hover > span:not(.tooltip), .amenity:focus-within > span:not(.tooltip) { color: var(--text); }

.amenity .tooltip {
  position: absolute;
  left: 50%; bottom: calc(100% - 6px);
  transform: translateX(-50%) translateY(4px);
  background: var(--charcoal);
  color: var(--ivory);
  font-size: .78rem;
  line-height: 1.45;
  padding: 9px 13px;
  border-radius: 8px;
  width: max-content;
  max-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 5;
}
.amenity:hover .tooltip, .amenity:focus-within .tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* Reviews */
.reviews-carousel { position: relative; }
.reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 4px 24px;
}
.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 min(380px, 86vw);
  scroll-snap-align: start;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition-theme);
}
.review-head { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: #0D0D0D;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.review-head .who strong { display: block; font-size: .95rem; }
.review-head .who span { font-size: .8rem; color: var(--text-2); }
.review-stars { color: var(--gold); letter-spacing: 3px; font-size: .95rem; }
.review-quote {
  font-family: var(--font-subheading);
  font-style: italic;
  font-size: 1.13rem;
  line-height: 1.55;
  flex: 1;
}
.review-date { font-size: .78rem; color: var(--text-2); }

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}
.carousel-nav button {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 1.1rem;
  transition: background-color .3s ease, color .3s ease;
}
.carousel-nav button:hover { background: var(--gold); color: #0D0D0D; }

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
  position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }
html[data-theme="night"] .map-wrap iframe { filter: invert(90%) hue-rotate(180deg) contrast(.9); }

.map-directions-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: var(--gold);
  color: #0D0D0D;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  transition: background-color .3s ease, transform .2s ease;
}
.map-directions-btn:hover { background: var(--gold-dark); color: #FAF8F5; transform: translateX(-50%) translateY(-2px); }

.attractions { display: grid; grid-template-columns: 1fr; gap: 16px; }
.attraction {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 14px;
  box-shadow: var(--shadow);
  transition: transform .3s ease, var(--transition-theme);
}
.attraction:hover { transform: translateX(6px); }
.attraction .thumb {
  width: 74px; height: 74px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  color: var(--gold);
}
.attraction .thumb svg { width: 32px; height: 32px; stroke-width: 1.4; }
.attraction h3 { font-size: 1.1rem; }
.attraction p { font-size: .85rem; color: var(--text-2); }

.contact-strip {
  margin-top: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: clamp(30px, 4vw, 44px);
}
.contact-strip .item strong {
  display: block;
  font-family: var(--font-subheading);
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-strip .item span, .contact-strip .item a { font-size: .9rem; color: var(--text-2); display: block; }
.contact-strip .item a:hover { color: var(--gold); }

/* Footer (UPDATED — shorter + single-column lists) */
.site-footer {
  background: #121110;
  color: #D8D3CB;
  padding: clamp(36px, 5vw, 56px) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr 1.1fr 1.1fr;
  gap: clamp(20px, 3vw, 32px);
  padding-bottom: 32px;
}

.footer-grid h4 {
  font-family: var(--font-subheading);
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 600;
  letter-spacing: .5px;
}

.footer-about img {
  height: 48px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(78%) sepia(24%) saturate(680%) hue-rotate(357deg);
}
.footer-about p { font-size: .9rem; line-height: 1.75; color: #A9A39A; max-width: 320px; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-links li { margin: 0; }
.footer-links a {
  font-size: .9rem;
  color: #A9A39A;
  transition: color .3s ease;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 2px 0;
  white-space: nowrap;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .88rem;
  color: #A9A39A;
  margin: 0;
  line-height: 1.55;
}
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: #A9A39A; transition: color .3s ease; }
.footer-contact a:hover { color: var(--gold); }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  min-height: 44px;
  padding: 9px 20px;
  font-size: .88rem;
  border-radius: 8px;
}
.btn-whatsapp:hover { background: #1EBE59; color: #fff; }

.newsletter-form { display: flex; gap: 0; margin-top: 4px; }
.newsletter-form input {
  flex: 1;
  min-height: 48px;
  min-width: 0;
  padding: 10px 14px;
  border: 1.5px solid rgba(250, 248, 245, .18);
  border-right: none;
  border-radius: 8px 0 0 8px;
  background: rgba(250, 248, 245, .06);
  color: #FAF8F5;
}
.newsletter-form input::placeholder { color: #7E7973; }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form .btn { border-radius: 0 8px 8px 0; padding: 12px 20px; }
.newsletter-note { font-size: .8rem; margin-top: 10px; color: #A9A39A; min-height: 1.2em; }
.newsletter-note.success { color: #7FBF95; }

.footer-bottom {
  border-top: 1px solid rgba(250, 248, 245, .1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: #7E7973;
}
.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(250, 248, 245, .18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #D8D3CB;
  transition: border-color .3s ease, color .3s ease, background-color .3s ease, transform .2s ease;
}
.social-icons a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.social-icons svg { width: 18px; height: 18px; }

/* Global widgets */
.whatsapp-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
  animation: floatPulse 2.6s ease-in-out infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; color: #fff; }
.whatsapp-float .float-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  color: var(--text);
  font-size: .8rem;
  padding: 9px 13px;
  border-radius: 8px;
  box-shadow: var(--shadow-lift);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.whatsapp-float:hover .float-tip { opacity: 1; }

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,.28), 0 0 0 0 rgba(37, 211, 102, .45); }
  50% { box-shadow: 0 8px 24px rgba(0,0,0,.28), 0 0 0 14px rgba(37, 211, 102, 0); }
}

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease-out, transform .7s ease-out; }
.reveal.in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slides, .hero-title, .hero-tagline, .booking-widget, .trust-badges,
  .booking-form .btn-gold, .whatsapp-float { animation: none; }
  html { scroll-behavior: auto; }
}

/* Responsive */
@media (max-width: 1024px) {
  .booking-form { grid-template-columns: repeat(3, 1fr); }
  .booking-form .btn { grid-column: 1 / -1; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-actions .btn-book { display: none; }
  .booking-form { grid-template-columns: 1fr; }
  .booking-widget { padding: 18px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .result-card { grid-template-columns: 96px 1fr; }
  .result-card .result-price { grid-column: 1 / -1; text-align: left; padding: 0 16px 14px; }
}

@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* Subpages */
body.subpage .site-header {
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(13, 13, 13, .06);
}
body.subpage .site-header:not(.scrolled) .main-nav a { color: var(--text); text-shadow: none; }
body.subpage .site-header:not(.scrolled) .logo img { filter: none; }
html[data-theme="night"] body.subpage .site-header:not(.scrolled) .logo img {
  filter: brightness(0) invert(78%) sepia(24%) saturate(680%) hue-rotate(357deg);
}

.page-hero { padding: 160px 0 24px; text-align: center; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.4rem); }
.page-hero .lead {
  font-family: var(--font-subheading);
  font-size: clamp(1.1rem, 2.3vw, 1.4rem);
  color: var(--text-2);
  margin-top: 10px;
}

/* Gallery */
.gallery-section { padding: 80px 0; }
.gallery-section + .gallery-section { padding-top: 0; }

.gallery-label {
  font-family: var(--font-subheading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 22px;
}

.gallery-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 16px;
  scrollbar-width: thin;
}
.gallery-item {
  flex: 0 0 min(300px, 74vw);
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  border: none;
  padding: 0;
  background: var(--bg-card);
  transition: box-shadow .35s ease;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover { box-shadow: var(--shadow-lift); }
.gallery-item:hover img { transform: scale(1.03); }

.lightbox {
  position: fixed; inset: 0;
  z-index: 300;
  background: rgba(8, 7, 6, .93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 92vw;
  max-height: 84vh;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .6);
}
.lightbox .lb-arrow, .lightbox .lb-close {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: rgba(26, 26, 26, .6);
  color: var(--gold);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .3s ease, color .3s ease;
}
.lightbox .lb-arrow:hover, .lightbox .lb-close:hover { background: var(--gold); color: #0D0D0D; }
.lightbox .lb-prev { left: clamp(8px, 3vw, 40px); }
.lightbox .lb-next { right: clamp(8px, 3vw, 40px); }
.lightbox .lb-close { top: 20px; right: 20px; }
.lightbox .lb-count {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  color: #D8D3CB;
  font-size: .85rem;
  letter-spacing: 1px;
}

/* About */
.about-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding: 140px 0 70px;
}
.about-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 9, 8, .75), rgba(10, 9, 8, .45));
}
.about-hero h1 {
  position: relative;
  z-index: 2;
  color: #FAF8F5;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold);
}
.stat span { font-size: .9rem; color: var(--text-2); letter-spacing: .5px; }

.story { max-width: 760px; margin-inline: auto; text-align: center; }
.story p { color: var(--text-2); margin-bottom: 18px; font-size: 1.02rem; }

.choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
  max-width: 900px;
  margin-inline: auto;
}
.choose-card {
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 40px 34px;
  text-align: center;
  transition: transform .35s ease, box-shadow .35s ease, var(--transition-theme);
}
.choose-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.choose-card svg { width: 40px; height: 40px; color: var(--gold); margin-inline: auto; margin-bottom: 16px; stroke-width: 1.4; }
.choose-card h3 { font-size: 1.45rem; margin-bottom: 10px; }
.choose-card p { font-size: .93rem; color: var(--text-2); }

.cta-band {
  background: var(--bg-alt);
  text-align: center;
  transition: var(--transition-theme);
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 24px; }
.cta-band .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.contact-form {
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  gap: 16px;
  transition: var(--transition-theme);
}
.contact-form textarea {
  width: 100%;
  min-height: 130px;
  padding: 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  resize: vertical;
}
.contact-form textarea:focus { outline: none; border-color: var(--gold); }
.form-note { font-size: .88rem; color: var(--text-2); min-height: 1.3em; }
.form-note.success { color: var(--green); font-weight: 600; }

.contact-info { display: grid; gap: 18px; }
.contact-info .map-wrap { min-height: 280px; }
.contact-info .map-wrap iframe { min-height: 280px; }
.info-card {
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 20px 24px;
  transition: var(--transition-theme);
}
.info-card strong {
  display: block;
  font-family: var(--font-subheading);
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.info-card a, .info-card span { display: block; font-size: .92rem; color: var(--text-2); padding: 3px 0; }
.info-card a:hover { color: var(--gold); }

.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition-theme);
}
.faq-q {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  text-align: left;
}
.faq-q::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform .35s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a p { padding: 0 22px 18px; font-size: .93rem; color: var(--text-2); }

/* Room detail */
.room-page { padding-top: 118px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--text-2);
  font-size: .9rem;
  transition: color .3s ease;
}
.back-link:hover { color: var(--gold); }

.room-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 70vh;
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  margin-top: 14px;
  transition: var(--transition-theme);
}
.room-carousel .main-img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  transition: opacity .35s ease;
}
.room-carousel .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: rgba(26, 26, 26, .55);
  color: var(--gold);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .3s ease, color .3s ease;
}
.room-carousel .carousel-arrow:hover { background: var(--gold); color: #0D0D0D; }
.room-carousel .carousel-arrow.prev { left: 16px; }
.room-carousel .carousel-arrow.next { right: 16px; }

.thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 4px 6px;
  scrollbar-width: thin;
}
.thumbs img {
  width: 96px; height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: .55;
  border: 2px solid transparent;
  transition: opacity .3s ease, border-color .3s ease;
  flex-shrink: 0;
}
.thumbs img.active, .thumbs img:hover { opacity: 1; border-color: var(--gold); }

.room-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
  margin-top: clamp(28px, 4vw, 44px);
}

.room-main h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
.room-main .room-tagline {
  font-family: var(--font-subheading);
  font-size: 1.25rem;
  color: var(--text-2);
  margin: 4px 0 18px;
}
.room-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 26px; }
.room-meta span { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--text-2); }
.room-meta svg { width: 18px; height: 18px; color: var(--gold); }

.room-main h2 { font-size: 1.6rem; margin: 34px 0 14px; }
.room-main .room-desc { color: var(--text-2); line-height: 1.85; }

.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--gold);
  font-size: .85rem;
  color: var(--text);
}

.room-amenities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.room-amenities li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--text-2); }
.room-amenities svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

.tour-placeholder {
  aspect-ratio: 16 / 9;
  border: 2px dashed var(--gold);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-2);
  background: var(--bg-alt);
  text-align: center;
  padding: 20px;
  transition: var(--transition-theme);
}
.tour-placeholder svg { width: 44px; height: 44px; color: var(--gold); }

.booking-card {
  position: sticky;
  top: 96px;
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: var(--shadow-lift);
  padding: 26px;
  display: grid;
  gap: 14px;
  transition: var(--transition-theme);
}
.booking-card .price-line { display: flex; align-items: baseline; gap: 6px; }
.booking-card .price-line strong { font-size: 1.7rem; color: var(--gold); font-weight: 700; }
.booking-card .price-line span { color: var(--text-2); font-size: .9rem; }
.rate-rows { display: grid; gap: 8px; }
.rate-caption {
  font-family: var(--font-subheading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 6px;
}

.rate-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .25s ease, background-color .25s ease;
  background: var(--bg-alt);
}
.rate-check:hover { border-color: var(--gold); }
.rate-check:has(input:checked) {
  border-color: var(--gold);
  background: color-mix(in srgb, var(--gold) 12%, var(--bg-card));
}
.rate-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
  cursor: pointer;
}
.check-label {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: .9rem;
  color: var(--text);
}
.check-label .rate-name { font-weight: 600; }
.check-label .rate-price {
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

.booking-total {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0 4px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.booking-total > span {
  font-size: .9rem;
  color: var(--text-2);
}
.booking-total strong#total-price {
  display: block;
  font-size: 1.45rem;
  color: var(--gold);
  font-weight: 700;
  text-align: right;
}
.booking-total .total-note {
  font-size: .78rem;
  color: var(--text-2);
  text-align: right;
  margin-top: 2px;
  max-width: 180px;
  margin-left: auto;
}

.booking-actions {
  display: grid;
  gap: 10px;
}
.booking-actions .btn { width: 100%; justify-content: center; }

/* Blog page styles */
.blog-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding: 140px 0 60px;
}
.blog-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 9, 8, .78), rgba(10, 9, 8, .48));
}
.blog-hero h1 {
  position: relative;
  z-index: 2;
  color: #FAF8F5;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}
.blog-hero .lead {
  position: relative;
  z-index: 2;
  color: #D8D3CB;
  font-family: var(--font-subheading);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  margin-top: 10px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 36px);
}
.blog-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease, var(--transition-theme);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.blog-card .blog-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-thumb { transform: scale(1.04); }
.blog-card .blog-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-card .blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .78rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-card .blog-meta .cat { color: var(--gold); font-weight: 600; }
.blog-card h2 {
  font-size: 1.25rem;
  line-height: 1.35;
  transition: color .3s ease;
}
.blog-card:hover h2 { color: var(--gold); }
.blog-card .blog-excerpt {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.blog-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 4px;
  transition: gap .3s ease;
}
.blog-card .read-more:hover { gap: 10px; }

.blog-post-single {
  max-width: 760px;
  margin-inline: auto;
  padding: 40px 0 80px;
}
.blog-post-single .post-header { text-align: center; margin-bottom: 36px; }
.blog-post-single .post-meta {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: .85rem;
  color: var(--text-2);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-post-single .post-meta .cat { color: var(--gold); font-weight: 600; }
.blog-post-single h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 18px;
}
.blog-post-single .post-featured {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 36px;
  box-shadow: var(--shadow-lift);
}
.blog-post-single .post-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-2);
}
.blog-post-single .post-body h2 {
  font-size: 1.5rem;
  color: var(--heading);
  margin: 36px 0 14px;
}
.blog-post-single .post-body h3 {
  font-size: 1.2rem;
  color: var(--heading);
  margin: 28px 0 10px;
}
.blog-post-single .post-body p { margin-bottom: 18px; }
.blog-post-single .post-body img {
  border-radius: 12px;
  margin: 24px 0;
  box-shadow: var(--shadow);
}
.blog-post-single .post-body blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 24px 0;
  font-family: var(--font-subheading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--heading);
}
.blog-post-single .post-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 18px;
}
.blog-post-single .post-body li { margin-bottom: 8px; }
.blog-post-single .post-body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.blog-post-single .post-body a:hover { color: var(--gold-dark); }

.blog-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.blog-share span { font-size: .85rem; color: var(--text-2); font-weight: 600; }
.blog-share a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: border-color .3s ease, color .3s ease, transform .2s ease;
}
.blog-share a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* Subpage responsive */
@media (max-width: 900px) {
  .room-layout { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .choose-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .room-amenities { grid-template-columns: 1fr; }
  .page-hero { padding-top: 130px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-post-single { padding: 24px 0 60px; }
}