/* ============================================================
   HEAVEN 7 HOTEL — MAIN STYLESHEET
   Warm Earthy Luxury | Cormorant Garamond + Jost
   ============================================================ */

:root {
  --cream:       #F9F4EE;
  --cream-dark:  #EDE4D8;
  --sand:        #D4BC9A;
  --sand-light:  #E8D9C4;
  --terracotta:  #B5724A;
  --terracotta-d:#8C4F2D;
  --bark:        #6B4226;
  --forest:      #4A5940;
  --charcoal:    #2C2420;
  --text:        #3D2E26;
  --text-light:  #7A6259;
  --white:       #FFFFFF;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 2px 12px rgba(44,36,32,.08);
  --shadow-md:  0 8px 32px rgba(44,36,32,.14);
  --shadow-lg:  0 20px 60px rgba(44,36,32,.18);

  --transition: .35s cubic-bezier(.4,0,.2,1);
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--cream);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 3px; }

/* ─── SECTION BASE ─── */
section {
  padding: 100px 5vw;
}
section:nth-child(even) {
  background: var(--cream-dark);
}

/* ─── TYPOGRAPHY ─── */
.section-label {
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.section-title em {
  font-style: italic;
  color: var(--terracotta);
}
.section-desc {
  color: var(--text-light);
  max-width: 580px;
}
.section-header.centered {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header.centered .section-desc {
  margin: 0 auto;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  padding: .85rem 2.2rem;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--terracotta-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(181,114,74,.35);
}
.btn-primary.full-width { width: 100%; text-align: center; }
.btn-primary.btn-large { padding: 1.1rem 2.5rem; font-size: .9rem; }

.btn-ghost {
  display: inline-block;
  padding: .85rem 2.2rem;
  border: 1.5px solid rgba(255,255,255,.55);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.12);
}

.btn-outline {
  display: inline-block;
  padding: .7rem 1.8rem;
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta);
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover {
  background: var(--terracotta);
  color: var(--white);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
#header.scrolled {
  background: var(--cream);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.logo img {
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(44,36,32,.2));
  transition: transform var(--transition);
}
.logo:hover img { transform: scale(1.03); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--transition);
  position: relative;
}
#header:not(.scrolled) .nav-links a { color: var(--white); }

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--terracotta);
  transition: width var(--transition);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  padding: .55rem 1.5rem !important;
  background: var(--terracotta);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--terracotta-d) !important; }
.nav-cta::after { display: none !important; }

.header-solid { background: var(--cream) !important; box-shadow: var(--shadow-sm); }
.header-solid .nav-links a { color: var(--charcoal) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 2px;
}
#header:not(.scrolled) .nav-toggle span { background: var(--white); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease, transform 8s ease;
  transform: scale(1.06);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44,36,32,.25) 0%,
    rgba(44,36,32,.5) 50%,
    rgba(44,36,32,.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  padding: 0 5vw;
  animation: heroFadeUp .9s .3s both;
}
.hero-eyebrow {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: .75rem;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.01em;
  margin-bottom: .75rem;
}
.hero-title span {
  color: var(--sand);
  font-style: italic;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  opacity: .85;
  margin-bottom: 2.5rem;
  font-family: var(--ff-display);
  font-style: italic;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  z-index: 10;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: background var(--transition), transform var(--transition);
}
.dot.active {
  background: var(--sand);
  transform: scale(1.3);
}
.hero-scroll-hint {
  position: absolute;
  right: 3rem;
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 10;
  color: rgba(255,255,255,.55);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.15); }
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  max-width: 1400px;
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  width: 110px; height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.badge-num {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
}
.badge-text {
  font-size: .6rem;
  text-align: center;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
  line-height: 1.3;
}
.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
}
.about-text .btn-primary { margin-top: 1.5rem; }

/* ============================================================
   EVENT HALLS
   ============================================================ */
.halls-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.hall-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.hall-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.hall-card.large {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
}
.hall-card.large .hall-media { border-radius: var(--radius-md) 0 0 var(--radius-md); }

.hall-media {
  position: relative;
  overflow: hidden;
}
.hall-media img,
.hall-media video {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.hall-card.large .hall-media img { aspect-ratio: 16/9; }
.hall-card:hover .hall-media img { transform: scale(1.04); }

.hall-thumb-strip {
  position: absolute;
  bottom: .75rem;
  left: .75rem;
  display: flex;
  gap: .4rem;
}
.hall-thumb-strip .thumb {
  width: 52px; height: 38px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: .7;
  transition: opacity var(--transition), border-color var(--transition);
}
.hall-thumb-strip .thumb.active,
.hall-thumb-strip .thumb:hover {
  opacity: 1;
  border-color: var(--sand);
}

.hall-info {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hall-info h3 {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: .5rem;
  color: var(--charcoal);
}
.hall-capacity {
  font-size: .78rem;
  color: var(--terracotta);
  font-weight: 500;
  letter-spacing: .06em;
  margin-bottom: .8rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.cap-icon { font-size: .9rem; }
.hall-info p { color: var(--text-light); font-size: .9rem; flex: 1; }
.hall-info .btn-outline { margin-top: 1.2rem; align-self: flex-start; }

/* ============================================================
   ROOMS
   ============================================================ */
.rooms-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.room-image-wrap {
  position: relative;
  overflow: hidden;
}
.room-image-wrap img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform .6s ease;
}
.room-card:hover .room-image-wrap img { transform: scale(1.05); }

.room-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,36,32,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.room-card:hover .room-overlay { opacity: 1; }
.room-gallery-btn {
  padding: .6rem 1.4rem;
  border: 1.5px solid var(--white);
  color: var(--white);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.room-gallery-btn:hover { background: rgba(255,255,255,.2); }

.room-info {
  padding: 1.8rem;
}
.room-info h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: .7rem;
}
.room-info p { color: var(--text-light); font-size: .9rem; margin-bottom: 1.2rem; }

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities-tabs {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 3rem;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.amenity-tab {
  flex: 1;
  padding: .85rem .5rem;
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  border-right: 1.5px solid var(--sand);
  transition: background var(--transition), color var(--transition);
}
.amenity-tab:last-child { border-right: none; }
.amenity-tab:hover { background: var(--sand-light); color: var(--charcoal); }
.amenity-tab.active { background: var(--terracotta); color: var(--white); }

.amenity-panels { max-width: 1400px; margin: 0 auto; }
.amenity-panel { display: none; }
.amenity-panel.active {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
  animation: fadeIn .4s ease;
}
.amenity-images {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.am-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .6s ease;
}
.am-img:first-child { position: relative; aspect-ratio: 16/10; opacity: 1; }
.am-img.active:not(:first-child) { opacity: 1; }

.am-nav {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: .5rem;
}
.am-nav button {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(249,244,238,.85);
  color: var(--charcoal);
  font-size: .9rem;
  transition: background var(--transition), transform var(--transition);
  backdrop-filter: blur(4px);
}
.am-nav button:hover { background: var(--white); transform: scale(1.1); }

.amenity-desc h3 {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.amenity-desc p { color: var(--text-light); font-size: .95rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filter {
  display: flex;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.gf-btn {
  padding: .55rem 1.5rem;
  border: 1.5px solid var(--sand);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: all var(--transition);
}
.gf-btn:hover { border-color: var(--terracotta); color: var(--terracotta); }
.gf-btn.active { background: var(--terracotta); border-color: var(--terracotta); color: var(--white); }

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  columns: 4;
  gap: 1rem;
  column-gap: 1rem;
}
.g-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform var(--transition), opacity var(--transition);
  overflow: hidden;
}
.g-item:nth-child(1)  { height: 220px; }
.g-item:nth-child(2)  { height: 160px; }
.g-item:nth-child(3)  { height: 200px; }
.g-item:nth-child(4)  { height: 240px; }
.g-item:nth-child(5)  { height: 170px; }
.g-item:nth-child(6)  { height: 210px; }
.g-item:nth-child(7)  { height: 180px; }
.g-item:nth-child(8)  { height: 230px; }
.g-item:nth-child(9)  { height: 190px; }
.g-item:nth-child(10) { height: 160px; }
.g-item:nth-child(11) { height: 220px; }
.g-item:nth-child(12) { height: 200px; }
.g-item:nth-child(13) { height: 240px; }
.g-item:nth-child(14) { height: 170px; }
.g-item:nth-child(15) { height: 210px; }
.g-item:nth-child(16) { height: 180px; }
.g-item:nth-child(17) { height: 230px; }
.g-item:nth-child(18) { height: 160px; }
.g-item:nth-child(19) { height: 220px; }
.g-item:nth-child(20) { height: 190px; }
.g-item:nth-child(21) { height: 200px; }
.g-item:nth-child(22) { height: 240px; }
.g-item:nth-child(23) { height: 170px; }
.g-item:nth-child(24) { height: 210px; }
.g-item:nth-child(25) { height: 180px; }
.g-item:nth-child(26) { height: 230px; }
.g-item:nth-child(27) { height: 160px; }
.g-item:nth-child(28) { height: 220px; }
.g-item:nth-child(29) { height: 200px; }
.g-item:nth-child(30) { height: 190px; }
.g-item:nth-child(31) { height: 240px; }
.g-item:nth-child(32) { height: 170px; }
.g-item:nth-child(33) { height: 210px; }
.g-item:hover { transform: scale(.98); }
.g-item.hidden { display: none; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info .section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.4rem;
  align-items: flex-start;
}
.c-icon {
  color: var(--terracotta);
  font-size: 1rem;
  margin-top: .2rem;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-weight: 500; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; color: var(--charcoal); margin-bottom: .2rem; }
.contact-detail p { color: var(--text-light); font-size: .9rem; margin: 0; }

/* FORMS (shared) */
.contact-form, #bookingForm {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.form-group label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .8rem 1rem;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 300;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(181,114,74,.12);
}
.form-group textarea { resize: vertical; }

.form-status {
  margin-top: .5rem;
  padding: .8rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  display: none;
}
.form-status.success { background: #edf7ed; color: #2e7d32; display: block; }
.form-status.error   { background: #fdecea; color: #c62828; display: block; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,36,32,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  color: var(--white);
  font-size: 1.2rem;
  padding: 1rem;
  transition: opacity var(--transition);
}
.lb-close { top: 1.5rem; right: 1.5rem; font-size: 1.4rem; }
.lb-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lb-next { right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { opacity: .7; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 0;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 5vw 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-brand img {
  height: 55px;
  filter: brightness(0) invert(1);
  opacity: .85;
  margin-bottom: 1rem;
}
.footer-brand p { color: rgba(249,244,238,.55); font-size: .9rem; line-height: 1.8; }
.footer-links h4, .footer-contact h4 {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.2rem;
}
.footer-links ul li { margin-bottom: .6rem; }
.footer-links a {
  color: rgba(249,244,238,.55);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--sand); }
.footer-contact p {
  color: rgba(249,244,238,.55);
  font-size: .88rem;
  margin-bottom: .5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(249,244,238,.1);
  padding: 1.5rem 5vw;
  text-align: center;
  max-width: 100%;
}
.footer-bottom p { color: rgba(249,244,238,.3); font-size: .78rem; }

/* ============================================================
   ANIMATION UTILITY
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .halls-grid { grid-template-columns: 1fr 1fr; }
  .hall-card.large { grid-column: span 2; grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 3; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
  section { padding: 70px 5vw; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 1.5rem;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .8rem 5vw; color: var(--charcoal) !important; width: 100%; }
  .nav-links a::after { display: none !important; }
  .nav-cta { margin: .5rem 5vw 0 !important; text-align: center !important; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap img { aspect-ratio: 3/2; }
  .about-badge { width: 85px; height: 85px; bottom: -1rem; right: -0.5rem; }
  .badge-num { font-size: 2rem; }

  .halls-grid { grid-template-columns: 1fr; }
  .hall-card.large { grid-column: span 1; grid-template-columns: 1fr; }
  .hall-card.large .hall-media { border-radius: var(--radius-md) var(--radius-md) 0 0; }

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

  .amenity-panel.active { grid-template-columns: 1fr; gap: 2rem; }
  .amenities-tabs { flex-wrap: wrap; border-radius: var(--radius-sm); }
  .amenity-tab { flex: none; padding: .6rem 1rem; border-right: none; border-bottom: 1.5px solid var(--sand); }

  .gallery-grid { columns: 2; }

  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 3rem 5vw 2rem; }
}

@media (max-width: 500px) {
  .gallery-grid { columns: 1; }
  .hero-scroll-hint { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
}
