/* ============================================================
   HOTEL SILVER PEARL — Main Stylesheet
   Color Palette: Silver, Pearl White, Champagne Gold, Deep Charcoal
   ============================================================ */

:root {
  --silver: #9ca3af;
  --silver-light: #d1d5db;
  --silver-dark: #6b7280;
  --pearl: #f8f6f1;
  --pearl-dark: #ede9e0;
  --gold: #b8976a;
  --gold-light: #d4b896;
  --gold-dark: #8a6e4a;
  --charcoal: #1c1917;
  --charcoal-mid: #292524;
  --charcoal-light: #44403c;
  --white: #ffffff;
  --text: #3a3631;
  --text-muted: #6b6560;
  --shadow: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-heavy: 0 20px 60px rgba(0,0,0,0.2);
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* PRELOADER */
.preloader { position: fixed; inset: 0; background: var(--charcoal); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity 0.6s, visibility 0.6s; }
.preloader.gone { opacity: 0; visibility: hidden; }
.pre-inner { text-align: center; }
.pre-logo { width: 180px; margin: 0 auto 30px; filter: brightness(1.2); animation: prePulse 1.5s ease-in-out infinite; }
@keyframes prePulse { 0%,100%{opacity:0.6;transform:scale(0.97)} 50%{opacity:1;transform:scale(1)} }
.pre-bar { width: 200px; height: 2px; background: rgba(255,255,255,0.15); border-radius: 2px; overflow: hidden; }
.pre-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); animation: preLoad 1.8s ease-in-out forwards; }
@keyframes preLoad { to { width: 100%; } }

/* TOPBAR */
.topbar { background: var(--charcoal); color: rgba(255,255,255,0.65); padding: 8px 40px; display: flex; justify-content: space-between; align-items: center; font-size: 0.72rem; letter-spacing: 0.04em; gap: 10px; flex-wrap: wrap; }
.tb-left { display: flex; gap: 24px; align-items: center; }
.tb-left span { display: flex; align-items: center; gap: 7px; }
.tb-left i { color: var(--gold); font-size: 0.78rem; }
.tb-right { display: flex; gap: 12px; }
.tb-right a { color: rgba(255,255,255,0.55); font-size: 0.78rem; transition: var(--transition); }
.tb-right a:hover { color: var(--gold); }

/* HEADER */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0; transition: var(--transition); }
header.scrolled { background: rgba(28,25,23,0.97); backdrop-filter: blur(12px); box-shadow: 0 2px 30px rgba(0,0,0,0.3); }
.header-inner { max-width: 1300px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo-wrap { display: flex; align-items: center; }
.logo-img { height: 62px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); transition: var(--transition); }
.logo-img:hover { transform: scale(1.03); }

/* NAV */
.nav-list { display: flex; list-style: none; gap: 4px; }
.nav-list li a { display: block; padding: 8px 14px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.85); border-radius: 3px; transition: var(--transition); position: relative; }
.nav-list li a::after { content: ''; position: absolute; bottom: 0; left: 50%; right: 50%; height: 1px; background: var(--gold); transition: var(--transition); }
.nav-list li a:hover::after, .nav-list li a.active::after { left: 14px; right: 14px; }
.nav-list li a:hover, .nav-list li a.active { color: var(--gold-light); }
.nav-close { display: none; position: absolute; top: 20px; right: 20px; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; }

/* HEADER CTA */
.header-cta { display: flex; align-items: center; gap: 16px; }
.btn-book { background: var(--gold); color: #fff; padding: 10px 26px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; border-radius: 2px; transition: var(--transition); }
.btn-book:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184,151,106,0.4); }
.hamburger { display: none; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; padding: 4px; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: #fff; padding: 13px 32px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; border-radius: 2px; transition: var(--transition); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,151,106,0.4); }
.btn-primary.light { background: transparent; border: 2px solid var(--gold-light); color: var(--gold-light); }
.btn-primary.light:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; border: 2px solid rgba(255,255,255,0.55); color: #fff; padding: 11px 30px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; border-radius: 2px; transition: var(--transition); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; border: 2px solid var(--gold); color: var(--gold); padding: 11px 30px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; border-radius: 2px; transition: var(--transition); }
.btn-outline:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.btn-sm { display: inline-block; background: var(--charcoal); color: #fff; padding: 8px 20px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 2px; transition: var(--transition); }
.btn-sm:hover { background: var(--gold); }
.btn-sm.gold { background: var(--gold); color: #fff; }
.btn-sm.gold:hover { background: var(--gold-dark); }
.center-btn { text-align: center; margin-top: 44px; }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 680px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-slides { position: absolute; inset: 0; }
.h-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease; }
.h-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(20,16,14,0.6) 0%, rgba(20,16,14,0.3) 50%, rgba(20,16,14,0.75) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; max-width: 780px; padding: 0 24px; }
.hero-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; opacity: 0; animation: fadeUp 0.8s 0.3s forwards; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 300; line-height: 1.1; margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.4); opacity: 0; animation: fadeUp 0.8s 0.5s forwards; }
.hero-title em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.hero-sub { font-size: 0.9rem; opacity: 0.8; margin-bottom: 36px; letter-spacing: 0.08em; opacity: 0; animation: fadeUp 0.8s 0.7s forwards; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s 0.9s forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } from { opacity: 0; transform: translateY(20px); } }
.hero-dots { position: absolute; bottom: 140px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.h-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.35); border: none; cursor: pointer; transition: var(--transition); }
.h-dot.active { background: var(--gold); width: 24px; border-radius: 3px; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(8px); color: #fff; width: 52px; height: 52px; border-radius: 50%; font-size: 0.9rem; cursor: pointer; z-index: 3; transition: var(--transition); }
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); }
.hero-arrow.left { left: 30px; }
.hero-arrow.right { right: 30px; }

/* BOOKING BAR */
.booking-bar { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); z-index: 5; background: rgba(28,25,23,0.95); backdrop-filter: blur(20px); border-top: 2px solid var(--gold); display: flex; align-items: stretch; width: 90%; max-width: 1100px; border-radius: 0; }
.bb-field { flex: 1; padding: 16px 20px; display: flex; flex-direction: column; gap: 4px; }
.bb-field label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); display: flex; align-items: center; gap: 6px; }
.bb-field input, .bb-field select { background: transparent; border: none; outline: none; color: #fff; font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 500; cursor: pointer; }
.bb-field select option { background: var(--charcoal); color: #fff; }
.bb-sep { width: 1px; background: rgba(255,255,255,0.1); margin: 12px 0; }
.bb-btn { background: var(--gold); color: #fff; border: none; padding: 0 36px; font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.bb-btn:hover { background: var(--gold-dark); }

/* SECTION HELPERS */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-tag { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 400; color: var(--charcoal); line-height: 1.2; margin-bottom: 16px; }
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light, .section-head.light .section-title { color: #fff; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-sub { font-size: 0.88rem; color: var(--text-muted); max-width: 540px; margin: 0 auto; line-height: 1.7; }
.gold-rule { width: 50px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin-bottom: 20px; }
.gold-rule.centered { margin: 0 auto 20px; }

/* INTRO */
.intro-section { padding: 100px 0; background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-img-stack { position: relative; }
.img-main { width: 100%; height: 480px; object-fit: cover; border-radius: 2px; }
.img-accent { position: absolute; bottom: -30px; right: -30px; width: 200px; height: 160px; object-fit: cover; border: 6px solid #fff; box-shadow: var(--shadow); border-radius: 2px; }
.since-badge { position: absolute; top: 30px; left: -20px; background: var(--gold); color: #fff; padding: 18px 20px; text-align: center; box-shadow: var(--shadow-heavy); }
.since-num { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.since-lbl { display: block; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.85; margin-top: 2px; }
.intro-text-col p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; }
.intro-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.feat-item { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; font-weight: 600; color: var(--charcoal); letter-spacing: 0.04em; }
.feat-item i { color: var(--gold); font-size: 1rem; width: 20px; }

/* STATS BAND */
.stats-band { background: var(--charcoal); padding: 50px 40px; display: flex; align-items: center; justify-content: center; gap: 0; max-width: 100%; }
.stat-item { flex: 1; text-align: center; padding: 20px; max-width: 280px; }
.stat-sep { width: 1px; height: 60px; background: rgba(255,255,255,0.1); }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 600; color: var(--gold-light); line-height: 1; }
.stat-lbl { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 8px; }

/* ROOMS */
.rooms-section { padding: 100px 0; background: var(--pearl); }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.room-card { background: #fff; border-radius: 2px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.07); transition: var(--transition); }
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-heavy); }
.room-card.featured { border: 2px solid var(--gold-light); }
.room-img-wrap { position: relative; height: 220px; overflow: hidden; }
.room-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.room-card:hover .room-img-wrap img { transform: scale(1.05); }
.room-tag { position: absolute; top: 16px; left: 0; background: var(--charcoal); color: #fff; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 14px 5px 12px; }
.room-tag.gold { background: var(--gold); }
.room-body { padding: 22px; }
.room-meta { display: flex; gap: 16px; font-size: 0.7rem; color: var(--text-muted); margin-bottom: 10px; }
.room-meta i { color: var(--gold); margin-right: 4px; }
.room-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.room-body p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.room-amenities { display: flex; gap: 10px; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--pearl-dark); }
.room-amenities span { width: 32px; height: 32px; background: var(--pearl); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; color: var(--gold); }
.room-footer { display: flex; justify-content: space-between; align-items: center; }
.room-price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--charcoal); }
.room-price small { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; color: var(--text-muted); font-weight: 400; }

/* EXPERIENCE STRIP */
.exp-strip { position: relative; padding: 120px 0; overflow: hidden; }
.exp-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.exp-overlay { position: absolute; inset: 0; background: rgba(20,16,14,0.72); }
.exp-content { position: relative; z-index: 2; max-width: 650px; }
.exp-content h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 300; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.exp-content h2 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.exp-content p { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.85; margin-bottom: 30px; }

/* AMENITIES */
.amenities-section { padding: 100px 0; background: var(--white); }
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.am-card { text-align: center; padding: 36px 20px; border: 1px solid var(--pearl-dark); border-radius: 2px; transition: var(--transition); }
.am-card:hover { border-color: var(--gold-light); background: var(--pearl); transform: translateY(-4px); box-shadow: var(--shadow); }
.am-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.4rem; color: #fff; }
.am-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--charcoal); margin-bottom: 8px; font-weight: 600; }
.am-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

/* DINING */
.dining-section { padding: 100px 0; background: var(--pearl); }
.dining-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.dining-text p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; }
.dining-imgs { position: relative; }
.d-img-main { width: 100%; height: 420px; object-fit: cover; border-radius: 2px; }
.d-img-sm { position: absolute; bottom: -24px; left: -24px; width: 180px; height: 140px; object-fit: cover; border: 5px solid #fff; box-shadow: var(--shadow); border-radius: 2px; }

/* GALLERY MOSAIC */
.gallery-preview { padding: 100px 0 60px; background: var(--white); }
.gallery-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 200px 200px; gap: 6px; margin-top: 40px; }
.gm-item { overflow: hidden; }
.gm-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gm-item:hover img { transform: scale(1.06); }
.gm-item.tall { grid-row: span 2; }
.gm-item.wide { grid-column: span 2; }

/* TESTIMONIALS */
.testi-section { position: relative; padding: 100px 0; }
.testi-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.testi-overlay { position: absolute; inset: 0; background: rgba(18,14,12,0.85); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 34px; border-radius: 2px; transition: var(--transition); }
.testi-card:hover { background: rgba(255,255,255,0.1); }
.testi-card.featured { background: rgba(184,151,106,0.15); border-color: rgba(184,151,106,0.4); }
.testi-stars { color: var(--gold-light); font-size: 1rem; letter-spacing: 3px; margin-bottom: 16px; }
.testi-card p { font-size: 0.84rem; color: rgba(255,255,255,0.78); line-height: 1.85; font-style: italic; margin-bottom: 20px; }
.testi-author strong { display: block; font-size: 0.8rem; color: var(--gold-light); font-weight: 600; margin-bottom: 3px; }
.testi-author span { font-size: 0.7rem; color: rgba(255,255,255,0.45); }
.section-head.light .section-tag { color: var(--gold-light); }

/* CTA */
.cta-section { padding: 100px 0; background: var(--pearl); text-align: center; }
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-logo { width: 120px; margin: 0 auto 28px; }
.cta-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 400; color: var(--charcoal); margin-bottom: 16px; line-height: 1.2; }
.cta-inner h2 em { font-style: italic; color: var(--gold); }
.cta-inner p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer { background: var(--charcoal); color: rgba(255,255,255,0.6); }
.footer-main { padding: 72px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; }
.footer-logo { height: 70px; width: auto; object-fit: contain; margin-bottom: 16px; filter: brightness(1.1); }
.footer-brand p { font-size: 0.78rem; line-height: 1.8; color: rgba(255,255,255,0.5); }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 22px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.78rem; color: rgba(255,255,255,0.5); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a::before { content: '—'; color: var(--gold); font-size: 0.6rem; }
.footer-col ul li a:hover { color: var(--gold-light); }
.contact-list { list-style: none; }
.contact-list li { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.contact-list li i { color: var(--gold); width: 14px; flex-shrink: 0; margin-top: 2px; }
.contact-list li a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.contact-list li a:hover { color: var(--gold-light); }
.footer-bottom { background: rgba(0,0,0,0.3); padding: 18px 40px; text-align: center; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.3); }

/* PAGE HERO (inner pages) */
.page-hero { height: 420px; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(20,16,14,0.7), rgba(20,16,14,0.5)); }
.page-hero-content { position: relative; z-index: 2; color: #fff; }
.breadcrumb { font-size: 0.72rem; letter-spacing: 0.16em; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.breadcrumb a { color: var(--gold-light); }
.page-hero-content h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 300; margin-bottom: 12px; }
.page-hero-content p { font-size: 0.88rem; color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto; }
.ph-rule { width: 50px; height: 2px; background: var(--gold); margin: 14px auto 0; }

/* RESPONSIVE */
@media(max-width: 1024px) {
  .intro-grid, .dining-grid { grid-template-columns: 1fr; gap: 50px; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .img-accent { display: none; }
  .d-img-sm { display: none; }
  .booking-bar { flex-wrap: wrap; width: 96%; }
  .bb-sep { display: none; }
}
@media(max-width: 768px) {
  .topbar { display: none; }
  .header-inner { padding: 0 20px; }
  #main-nav { display: none; position: fixed; inset: 0; background: var(--charcoal); z-index: 2000; flex-direction: column; align-items: center; justify-content: center; }
  #main-nav.open { display: flex; }
  .nav-close { display: block; }
  .nav-list { flex-direction: column; text-align: center; gap: 8px; }
  .nav-list li a { font-size: 1rem; padding: 12px 24px; color: #fff; }
  .hamburger { display: block; }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gm-item.tall { grid-row: auto; }
  .gm-item.wide { grid-column: auto; }
  .hero-btns { flex-direction: column; align-items: center; }
  .booking-bar { position: relative; width: 100%; border-radius: 0; }
  .container { padding: 0 20px; }
  .stats-band { flex-wrap: wrap; }
  .stat-sep { display: none; }
}
