/* ═══════════════════════════════════════════════════════════
   OBLIVION ROOMS — Shared Styles
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg:           #0d0905;
  --bg-soft:      #14100a;
  --bg-card:      #1a1208;
  --gold:         #c9a870;
  --gold-bright:  #e8c98a;
  --gold-dim:     rgba(201, 168, 112, 0.45);
  --gold-faint:   rgba(201, 168, 112, 0.18);
  --gold-bg:      rgba(201, 168, 112, 0.055);
  --text:         #f5eed8;
  --text-dim:     rgba(245, 238, 216, 0.68);
  --text-faint:   rgba(245, 238, 216, 0.4);
  --blue-accent:  #7ecce8;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Raleway', 'Helvetica Neue', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: clip;     /* clip = no horizontal scroll, keeps position:sticky working on iOS Safari */
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-bright); }

/* ─── Typography ─── */
.brand-display {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.05;
  color: var(--text);
  text-shadow: 0 0 80px rgba(201, 168, 112, 0.25);
}
.eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1.15;
  font-size: clamp(1.8rem, 4.2vw, 3.2rem);
}
.section-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-top: 0.4rem;
}
.body-text {
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  color: var(--text-dim);
  line-height: 1.7;
}
.gold-em { color: var(--gold); font-weight: 500; }
.italic { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; }

/* ─── Divider ─── */
.divider {
  width: 70px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.2rem auto;
}
.ornament {
  font-size: 1rem;
  letter-spacing: 0.8em;
  color: var(--gold-dim);
  text-align: center;
  margin: 0.8rem 0;
}

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.section-tight { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.text-center { text-align: center; }

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(13, 9, 5, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-faint);
  transition: background 0.3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-size: 1.15rem;
  text-transform: uppercase;
}
.nav-brand:hover { color: var(--gold-bright); }
.nav-brand small {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  color: var(--gold-dim);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Raleway', sans-serif;
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  padding: 0.3rem 0;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.3rem;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 7rem 2rem 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: contrast(1.05) saturate(0.85);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(13, 9, 5, 0.55) 0%, rgba(13, 9, 5, 0.92) 70%, var(--bg) 100%),
    linear-gradient(180deg, rgba(13, 9, 5, 0.6) 0%, rgba(13, 9, 5, 0.85) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero h1 { font-size: clamp(2.6rem, 8vw, 6rem); margin: 1rem 0; }
.hero .eyebrow { font-size: clamp(0.75rem, 1.4vw, 1rem); display: block; margin: 1rem 0; }
.hero-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--text-dim);
  max-width: 560px;
  margin: 1.5rem auto 0;
  line-height: 1.6;
}
.hero-est {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  color: var(--gold-dim);
  letter-spacing: 0.55em;
  text-transform: uppercase;
  margin-top: 2.5rem;
}

/* ─── Page Header (smaller hero for inner pages) ─── */
.page-head {
  padding: 9rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--gold-faint);
}
.page-head h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.page-head .eyebrow {
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  display: block;
  margin-bottom: 1rem;
}
.page-head p { color: var(--text-dim); margin-top: 1rem; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ─── Cards ─── */
.card {
  background: var(--gold-bg);
  border: 1px solid var(--gold-faint);
  border-radius: 6px;
  padding: 1.4rem 1.5rem;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.card:hover {
  border-color: var(--gold-dim);
  background: rgba(201, 168, 112, 0.08);
  transform: translateY(-2px);
}
.card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 0.55rem;
  font-weight: 600;
}
.card-body { color: var(--text-dim); font-size: 0.93rem; line-height: 1.6; }

/* ─── Grids ─── */
.grid { display: grid; gap: 1.2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ─── Link cards (home page big tiles) ─── */
.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  padding: 1.6rem;
  border: 1px solid var(--gold-faint);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-soft);
  transition: transform 0.3s, border-color 0.3s;
  text-decoration: none;
}
.tile:hover { transform: translateY(-3px); border-color: var(--gold-dim); }
.tile-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tile-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 0.4s, transform 0.6s;
}
.tile:hover .tile-bg img { opacity: 0.7; transform: scale(1.03); }
.tile-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 9, 5, 0.1) 0%, rgba(13, 9, 5, 0.5) 50%, rgba(13, 9, 5, 0.95) 100%);
}
.tile-content {
  position: relative;
  z-index: 1;
}
.tile-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.4rem;
}
.tile-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.tile-desc {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.55;
}
.tile-arrow {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ─── Item list (used on Split/Rooms pages) ─── */
.item-list { display: flex; flex-direction: column; }
.item {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(201, 168, 112, 0.09);
}
.item:last-child { border-bottom: none; }
.item-icon {
  font-size: 0.95rem;
  color: var(--gold);
  min-width: 2.4rem;
  text-align: center;
  margin-top: 5px;
  flex-shrink: 0;
}
.item-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.item-desc { color: var(--text-dim); font-size: 0.92rem; line-height: 1.6; }

/* ─── Rule rows (house rules / info) ─── */
.rule-list { display: flex; flex-direction: column; max-width: 760px; margin: 0 auto; }
.rule-row {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 168, 112, 0.09);
  align-items: flex-start;
}
.rule-icon { font-size: 1rem; min-width: 2.4rem; text-align: center; flex-shrink: 0; color: var(--gold); padding-top: 2px; }
.rule-text { color: var(--text-dim); font-size: 0.97rem; line-height: 1.6; }
.rule-text strong { color: var(--gold); font-weight: 500; }

/* ─── Hero entrance (home page) ─── */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero .ornament       { animation: hero-rise 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both; }
.hero .eyebrow        { animation: hero-rise 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both; }
.hero .brand-display  { animation: hero-rise 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both; }
.hero > .hero-content > .divider { animation: hero-rise 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.85s both; }
.hero .hero-tagline   { animation: hero-rise 1.1s cubic-bezier(0.16, 1, 0.3, 1) 1.05s both; }
.hero .hero-est       { animation: hero-rise 1.1s cubic-bezier(0.16, 1, 0.3, 1) 1.35s both; }

@media (prefers-reduced-motion: reduce) {
  .hero * { animation: none !important; }
}

/* ─── Subtle reveal-on-scroll ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ─── Leaflet map (custom dark theme) ─── */
.leaflet-map {
  height: 460px; width: 100%;
  border: 1px solid var(--gold-faint);
  border-radius: 6px;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  background: var(--bg-soft);
}
.pm-oblivion {
  width: 22px; height: 22px;
  background: var(--gold);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(201, 168, 112, 0.35), 0 2px 8px rgba(0,0,0,0.6);
}
.pm-parking {
  width: 30px; height: 30px;
  background: rgba(13, 9, 5, 0.94);
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.leaflet-popup-content-wrapper {
  background: rgba(13, 9, 5, 0.96);
  color: var(--text-dim);
  border: 1px solid var(--gold-faint);
  border-radius: 4px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.5);
}
.leaflet-popup-tip { background: rgba(13, 9, 5, 0.96); }
.leaflet-popup-content {
  margin: 12px 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  line-height: 1.55;
}
.leaflet-popup-content strong {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.leaflet-popup-content a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 112, 0.4);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.leaflet-container a.leaflet-popup-close-button { color: var(--gold-dim); }
.leaflet-container a.leaflet-popup-close-button:hover { color: var(--gold); }
.leaflet-control-attribution { background: rgba(13, 9, 5, 0.7) !important; color: var(--text-faint) !important; font-size: 10px !important; }
.leaflet-control-attribution a { color: var(--gold-dim) !important; }
.pm-legend {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-dim);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin: 1.4rem 0 1.6rem;
}
.pm-legend .swatch {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 0.4rem 0 1.2rem;
}
.pm-legend .swatch.gold { background: var(--gold); border: 2px solid #fff; }
.pm-legend .swatch.parking { background: rgba(13, 9, 5, 0.94); border: 2px solid var(--gold); }

/* ─── Sticky sub-navigation (used on long single pages) ─── */
.subnav {
  position: sticky;
  top: 76px;
  z-index: 50;
  background: rgba(13, 9, 5, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-faint);
  padding: 0.55rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.subnav::-webkit-scrollbar { display: none; }
.subnav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 2rem;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  white-space: nowrap;
}
.subnav a {
  color: var(--text-dim);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0.45rem 0.6rem;
  position: relative;
  flex: 0 0 auto;
}
.subnav a:hover { color: var(--gold); }
.subnav a.active { color: var(--gold); }
.subnav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: var(--gold);
}

/* offset anchored sections for sticky nav + subnav */
[data-spy] { scroll-margin-top: 140px; }

/* ─── Dish card (photo above text) ─── */
.dish-card {
  background: var(--gold-bg);
  border: 1px solid var(--gold-faint);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s;
}
.dish-card:hover { transform: translateY(-2px); border-color: var(--gold-dim); }
.dish-photo {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
  cursor: pointer;
}
.dish-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dish-photo::after {
  content: '↗  TasteAtlas';
  position: absolute;
  top: 10px; right: 12px;
  color: var(--gold);
  background: rgba(13, 9, 5, 0.78);
  padding: 4px 9px;
  border-radius: 3px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 2;
}
.dish-card:hover .dish-photo::after { opacity: 1; }
.dish-card:hover .dish-photo img { transform: scale(1.05); }
.dish-body {
  padding: 1.1rem 1.3rem 1.3rem;
  flex: 1;
}
.dish-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.dish-body p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ─── Photo Gallery ─── */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-top: 1.8rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: var(--bg-soft);
  border: 1px solid var(--gold-faint);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.04); opacity: 0.92; }
.gallery-item::after {
  content: '⛶';
  position: absolute;
  top: 8px; right: 10px;
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s;
  background: rgba(13, 9, 5, 0.6);
  padding: 2px 6px;
  border-radius: 3px;
}
.gallery-item:hover::after { opacity: 1; }

/* ─── Lightbox ─── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 3, 1, 0.96);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 60px rgba(201, 168, 112, 0.2);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(201, 168, 112, 0.1);
  border: 1px solid var(--gold-faint);
  color: var(--gold);
  font-size: 1.2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
  display: flex; align-items: center; justify-content: center;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(201, 168, 112, 0.25);
  border-color: var(--gold);
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: var(--gold-dim);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ─── Room block ─── */
.room-block {
  margin-top: 2.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--gold-faint);
}
.room-block:first-of-type { border-top: none; padding-top: 0; }
.room-name-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.6rem;
}
.room-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.room-desc {
  max-width: 720px;
  margin: 1.4rem auto 0;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: var(--text-dim);
  line-height: 1.65;
}
.room-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.4rem;
  margin: 2rem auto 0;
  max-width: 720px;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.room-features span { display: inline-flex; align-items: center; gap: 0.5rem; }
.room-features .ico { color: var(--gold); font-size: 1.05rem; }

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 2px;
}
.btn:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--gold-faint);
  background: var(--bg-soft);
  padding: 3rem 1.5rem 2rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--text-dim);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}
.footer-h {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.5rem; }
.footer a, .footer p { color: var(--text-dim); font-size: 0.9rem; }
.footer a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-faint);
  text-align: center;
  color: var(--text-faint);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(13, 9, 5, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gold-faint);
    padding: 1rem 0;
    transform: translateY(-120%);
    visibility: hidden;            /* belt + braces — keep drawer hidden even if transform glitches */
    pointer-events: none;
    transition: transform 0.3s ease, visibility 0s linear 0.3s;
  }
  .nav-links.open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.3s ease, visibility 0s linear 0s;
  }
  .nav-links a {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(201, 168, 112, 0.08);
    font-size: 0.85rem;
  }
  .nav-links a.active::after { display: none; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }
  .hero { min-height: 90vh; padding: 6rem 1.5rem 3rem; }
  .page-head { padding: 7rem 1.5rem 3rem; }
  .lightbox { padding: 1rem; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1rem; }
  .lightbox-prev { left: 0.6rem; }
  .lightbox-next { right: 0.6rem; }
  .lightbox-close { top: 0.8rem; right: 0.8rem; width: 40px; height: 40px; }
}
