/* ═══════════════════════════════════════════════
   RAGHAVA INN — SUBPAGES CSS
   ═══════════════════════════════════════════════ */

/* ── INNER HERO ── */
.inner-hero {
  position: relative;
  height: 58vh;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 0 8% 60px;
  background-size: cover;
  background-position: center;
  margin-top: 72px;
}
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.88) 0%, rgba(13,13,13,0.25) 100%);
}
.inner-hero-content {
  position: relative;
  z-index: 2;
}
.inner-hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin: 8px 0 12px;
}
.inner-hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); opacity: 0.5; }

/* ── INTRO BAND ── */
.intro-band {
  background: var(--dark2);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 28px 8%;
}
.intro-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.intro-band p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  max-width: 680px;
}

/* ── PAGE CONTAINER ── */
.page-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 8%;
}
.page-section {
  padding: 90px 0;
}
.page-section.alt {
  background: var(--dark2);
}

/* ── GOLD RULE ── */
.gold-rule {
  width: 50px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

/* ── ROOM TAB BAR ── */
.room-tab-bar {
  background: var(--dark3);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 0 8%;
  display: flex;
  gap: 0;
  position: sticky;
  top: 72px;
  z-index: 100;
}
.rtab {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 28px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}
.rtab:hover { color: var(--gold); }
.rtab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ── ROOM SECTIONS ── */
.room-section { padding: 80px 0; }
.room-section.alt { background: var(--dark2); }
.room-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 8%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: start;
}
.room-section-inner.reverse {
  grid-template-columns: 1fr 1.1fr;
}
.room-section-inner.reverse .room-images-col { order: 2; }
.room-section-inner.reverse .room-info-col  { order: 1; }

.room-main-img { position: relative; }
.room-main-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.room-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--dark);
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(201,168,76,0.2);
}
.room-badge.gold   { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.room-badge.luxury { background: var(--gold-dark); color: var(--white); border-color: var(--gold-dark); }

.room-thumbs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 6px;
  margin-top: 6px;
}
.room-thumbs img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: opacity 0.3s;
}
.room-thumbs img:hover { opacity: 0.8; }

.room-info-col { padding-top: 10px; }
.room-info-col h2 {
  font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 300;
  color: var(--white);
  margin: 8px 0 1rem;
}
.room-intro {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 0.95rem;
  margin: 1.4rem 0 1.8rem;
}

.amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 2.2rem;
}
.am-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.am-ico { font-size: 1rem; flex-shrink: 0; }

.room-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── FACILITIES STRIP ── */
.fac-strip-section {
  padding: 70px 0;
  background: var(--dark3);
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.fac-strip-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.fac-strip-item {
  text-align: center;
  padding: 20px 10px;
}
.fac-strip-item span { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.fac-strip-item p { font-size: 0.8rem; color: var(--text-muted); }

/* ── TESTIMONIALS (subpage) ── */
.testi-section {
  padding: 90px 0;
  background: var(--dark2);
}
.testi-section .page-container { padding: 0 8%; }
.testi-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testi-card {
  background: var(--dark3);
  padding: 36px 30px;
  border: 1px solid rgba(201,168,76,0.1);
}
.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 16px; }
.testi-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 22px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--dark); font-weight: 600; flex-shrink: 0;
}
.testi-name  { font-size: 0.88rem; font-weight: 500; color: var(--white); }
.testi-role  { font-size: 0.75rem; color: var(--text-muted); }

/* ── CTA SECTION ── */
.cta-section {
  padding: 100px 8%;
  background: var(--dark3);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-size: clamp(2rem,4vw,3.4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-content h2 em { font-style: italic; color: var(--gold-light); }
.cta-content p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── TWO COL LAYOUT (corporate) ── */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.text-col h2 { font-size: clamp(1.9rem,3vw,2.8rem); font-weight: 300; color: var(--white); margin: 8px 0; }
.text-col h2 em { font-style: italic; color: var(--gold-light); }
.text-col p { color: var(--text-muted); line-height: 1.9; font-size: 0.95rem; }

.corp-key-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.kstat { }
.kstat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.kstat-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

.stacked-images { position: relative; }
.img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.img-float {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 48%;
  height: 200px;
  object-fit: cover;
  border: 4px solid var(--dark2);
}

/* ── EVENT CARDS (corporate) ── */
.event-cards-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5px;
  margin-top: 3rem;
}
.event-card { background: var(--dark3); overflow: hidden; }
.event-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.event-card:hover .event-img img { transform: scale(1.05); }
.event-card-body { padding: 28px; }
.event-icon { font-size: 1.8rem; margin-bottom: 12px; }
.event-card-body h3 {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.event-card-body p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── FEATURES LAYOUT ── */
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
  margin-top: 3rem;
}
.feat-list-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201,168,76,0.06);
}
.feat-list-item:last-child { border-bottom: none; }
.feat-check {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.feat-list-item strong {
  font-size: 0.92rem;
  color: var(--white);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}
.feat-list-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.features-images-col img {
  width: 100%;
  object-fit: cover;
  display: block;
  height: 280px;
}
.features-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 6px;
}
.features-img-row img { height: 160px; }

/* ── SEATING GRID FULL ── */
.seating-grid-full {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5px;
  margin-top: 3rem;
}
.seat-config-card {
  background: var(--dark3);
  overflow: hidden;
}
.seat-config-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.seat-config-card:hover .seat-config-img img { transform: scale(1.04); }
.seat-config-icon {
  font-size: 1.6rem;
  display: block;
  padding: 20px 22px 0;
}
.seat-config-card h3 {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  padding: 14px 22px 6px;
}
.seat-config-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 22px 22px;
}

/* ── SUPPORT BANNER ── */
.support-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.support-text h2 {
  font-size: clamp(1.9rem,3vw,2.6rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}
.support-text h2 em { font-style: italic; color: var(--gold-light); }
.support-text p { color: var(--text-muted); line-height: 1.9; font-size: 0.95rem; }
.support-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.support-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.support-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--gold);
}
.support-images {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.support-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* ── QUICK ENQUIRY ── */
.quick-enquiry-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}
.qe-text h2 {
  font-size: clamp(1.8rem,3vw,2.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}
.qe-text h2 em { font-style: italic; color: var(--gold-light); }
.qe-text p { color: var(--text-muted); line-height: 1.9; font-size: 0.93rem; }
.contact-quick-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.cqd-item { display: flex; gap: 14px; align-items: flex-start; }
.cqd-item span { font-size: 1.1rem; }
.cqd-item strong { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 3px; }
.cqd-item p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

.qe-form { background: var(--dark3); padding: 36px; border: 1px solid rgba(201,168,76,0.1); }
.qe-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.qe-form .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.qe-form label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.qe-form input, .qe-form select, .qe-form textarea {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--white);
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s;
}
.qe-form input:focus, .qe-form select:focus, .qe-form textarea:focus { border-color: var(--gold); }
.qe-form select option { background: var(--dark2); }

/* ── GALLERY PAGE ── */
.gallery-filters {
  background: var(--dark2);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 0 8%;
  display: flex;
  gap: 0;
  position: sticky;
  top: 72px;
  z-index: 100;
}
.gf-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 24px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}
.gf-btn:hover { color: var(--gold); }
.gf-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

.gallery-page-section { padding: 50px 8% 90px; }
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 8px;
}
.gp-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gp-item.wide  { grid-column: span 2; }
.gp-item.tall  { grid-row: span 2; }
.gp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gp-item:hover img { transform: scale(1.06); }
.gp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: background 0.3s;
}
.gp-item:hover .gp-overlay { background: rgba(13,13,13,0.5); }
.gp-overlay span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}
.gp-item:hover .gp-overlay span { opacity: 1; transform: none; }

/* Lightbox (gallery page) */
.lb-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lb-backdrop.open { display: flex; }
.lb-stage { max-width: 88vw; text-align: center; }
.lb-stage img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  display: block;
}
.lb-stage p {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 12px;
}
.lb-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 1.6rem;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.3s;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: var(--gold); color: var(--dark); }

/* ── CONTACT PAGE ── */
.contact-strip {
  background: var(--dark3);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 24px 8%;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.cs-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 180px;
  padding: 12px 20px;
}
.cs-icon { font-size: 1.4rem; margin-top: 2px; flex-shrink: 0; }
.cs-item strong {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.cs-item p { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.cs-div { width: 1px; height: 50px; background: rgba(201,168,76,0.15); flex-shrink: 0; }

.contact-main-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form-wrap h2 {
  font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-form-wrap h2 em { font-style: italic; color: var(--gold-light); }

.contact-form-full .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.contact-form-full .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.contact-form-full label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-form-full .req { color: var(--gold); }
.contact-form-full input,
.contact-form-full select,
.contact-form-full textarea {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--white);
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.contact-form-full input:focus,
.contact-form-full select:focus,
.contact-form-full textarea:focus { border-color: var(--gold); }
.contact-form-full select option { background: var(--dark2); }
.contact-form-full textarea { height: 130px; resize: none; }
.form-footer-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.form-note { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

.form-success {
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 50px 36px;
  text-align: center;
}
.fs-icon {
  width: 56px; height: 56px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}
.form-success h3 {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.form-success p { color: var(--text-muted); line-height: 1.8; }

.form-error {
  background: rgba(200,60,60,0.12);
  border: 1px solid rgba(200,60,60,0.3);
  color: #e07a7a;
  padding: 14px 18px;
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 28px 24px;
}
.sidebar-card h3 {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.sidebar-card h3 em { font-style: italic; color: var(--gold-light); }
.sc-details { display: flex; flex-direction: column; gap: 1rem; }
.sc-item { display: flex; gap: 14px; align-items: flex-start; font-size: 0.9rem; }
.sc-item span { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.sc-item strong {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 3px;
}
.sc-item p { color: var(--text-muted); margin: 0; font-size: 0.85rem; line-height: 1.5; }

.checkin-info { display: flex; flex-direction: column; gap: 0.7rem; }
.ci-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(201,168,76,0.07); }
.ci-row:last-child { border-bottom: none; }
.ci-lbl { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.05em; }
.ci-val { font-size: 0.88rem; color: var(--gold); font-weight: 500; }

.quick-links-sidebar { display: flex; flex-direction: column; gap: 0.6rem; }
.ql-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--dark3);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s;
  border-left: 2px solid transparent;
}
.ql-link:hover {
  color: var(--gold);
  border-left-color: var(--gold);
  background: var(--dark4);
}

/* Map */
.map-wrapper { width: 100%; }
.map-placeholder {
  height: 420px;
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.map-placeholder span { font-size: 3rem; }
.map-placeholder p { font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.map-placeholder small { font-size: 0.75rem; color: var(--mid); }
.map-wrapper iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(13,13,13,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  padding: 1.5rem 8%;
  gap: 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: none;
}
.mobile-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mm-book {
  margin-top: 1rem;
  background: var(--gold);
  color: var(--dark);
  text-align: center;
  padding: 14px;
  font-weight: 600;
  border-bottom: none;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Active nav link */
.nav-links a.active { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .seating-grid-full { grid-template-columns: repeat(2,1fr); }
  .gallery-full-grid { grid-template-columns: repeat(3,1fr); }
  .event-cards-grid  { grid-template-columns: repeat(2,1fr); }
  .fac-strip-grid    { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .inner-hero { height: 46vh; padding: 0 6% 40px; }
  .intro-band-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .room-section-inner,
  .room-section-inner.reverse { grid-template-columns: 1fr; gap: 36px; }
  .room-section-inner.reverse .room-images-col,
  .room-section-inner.reverse .room-info-col  { order: unset; }
  .room-main-img img { height: 300px; }
  .testi-row { grid-template-columns: 1fr; }
  .two-col-layout { grid-template-columns: 1fr; gap: 40px; }
  .img-float { display: none; }
  .event-cards-grid  { grid-template-columns: 1fr; }
  .features-layout   { grid-template-columns: 1fr; }
  .seating-grid-full { grid-template-columns: 1fr 1fr; }
  .support-banner    { grid-template-columns: 1fr; }
  .quick-enquiry-layout { grid-template-columns: 1fr; }
  .qe-form .form-row { grid-template-columns: 1fr; }
  .gallery-full-grid { grid-template-columns: repeat(2,1fr); }
  .gp-item.wide, .gp-item.tall { grid-column: auto; grid-row: auto; }
  .contact-main-layout { grid-template-columns: 1fr; }
  .contact-strip { flex-direction: column; }
  .cs-div { display: none; }
  .contact-form-full .form-row { grid-template-columns: 1fr; }
  .fac-strip-grid    { grid-template-columns: repeat(2,1fr); }
  .corp-key-stats    { flex-wrap: wrap; gap: 1.5rem; }
}
@media (max-width: 480px) {
  .amenity-grid { grid-template-columns: 1fr; }
  .room-thumbs  { grid-template-columns: 1fr 1fr; }
  .seating-grid-full { grid-template-columns: 1fr; }
  .gallery-full-grid { grid-template-columns: 1fr; }
}
