/* ==========================================================================
   CHEVAL DO'R - PRIVATE VENUE HIRE | HOXTON SQUARE, LONDON
   Vintage Luxury Speakeasy & Private Club Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Vintage Color Palette */
  --bg-deep-noir: #090b0c;
  --bg-subtle-charcoal: #111416;
  --bg-card-noir: #161a1d;
  --bg-card-hover: #1d2226;
  --bg-emerald-tint: #0e1e17;
  
  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-antique: #c5a059;
  --gold-deep: #997a2d;
  --brass-accent: #e6ca85;
  --gold-gradient: linear-gradient(135deg, #f5e2a3 0%, #d4af37 40%, #aa8222 100%);
  --gold-gradient-glow: linear-gradient(135deg, rgba(245, 226, 163, 0.25) 0%, rgba(212, 175, 55, 0.15) 100%);
  
  --text-primary: #f5f0e6;
  --text-secondary: #c9c2b3;
  --text-muted: #8e887d;
  --text-highlight: #eed89f;
  
  --border-gold: rgba(212, 175, 55, 0.35);
  --border-gold-subtle: rgba(212, 175, 55, 0.15);
  --border-gold-solid: #c5a059;
  
  --shadow-gold: 0 10px 30px -5px rgba(212, 175, 55, 0.18);
  --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 25px rgba(212, 175, 55, 0.3);
  
  /* Fonts */
  --font-display: 'Cinzel Decorative', Georgia, serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* --------------------------------------------------------------------------
   Reset & Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-deep-noir);
  color: var(--text-primary);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  background-color: var(--bg-deep-noir);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 10% 40%, rgba(14, 30, 23, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 90% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Ambient Vintage Grain Overlay */
.vintage-grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Typography Defaults */
h1, h2, h3, h4, .brand-font {
  font-family: var(--font-heading);
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

p {
  color: var(--text-secondary);
}

a {
  color: var(--gold-antique);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --------------------------------------------------------------------------
   Vintage Header & Navigation
   -------------------------------------------------------------------------- */
.top-notice-bar {
  background: linear-gradient(90deg, #111516 0%, #17221c 50%, #111516 100%);
  border-bottom: 1px solid var(--border-gold-subtle);
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
  text-align: center;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-notice-bar a {
  color: var(--gold-primary);
  font-weight: 600;
  margin-left: 0.5rem;
}

.top-notice-bar .top-contact-pills {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.top-notice-bar .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-primary);
}

.top-notice-bar .contact-link:hover {
  color: var(--gold-primary);
}

/* Main Site Navbar */
.site-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(9, 11, 12, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-gold);
  transition: var(--transition-smooth);
}

.site-navbar.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
  border-bottom-color: rgba(212, 175, 55, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

/* Brand Emblem & Typography */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-crest-svg {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
  transition: transform 0.4s ease;
}

.brand-logo:hover .brand-crest-svg {
  transform: rotate(-5deg) scale(1.06);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.brand-subtext {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

/* Nav Links */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.8rem;
  align-items: center;
}

.nav-link {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--gold-gradient);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Audio Atmosphere Button */
.btn-sound-toggle {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-sound-toggle:hover {
  background: rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-glow);
  transform: scale(1.08);
}

.btn-sound-toggle.playing {
  color: #fff;
  border-color: var(--gold-light);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0.1) 100%);
  animation: pulse-gold 2s infinite;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* --------------------------------------------------------------------------
   Vintage Buttons & Gilded Components
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0b0d0e;
  border: 1px solid var(--gold-light);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.55);
}

.btn-vintage-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold-antique);
}

.btn-vintage-outline:hover {
  background: rgba(212, 175, 55, 0.12);
  color: #fff;
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Vintage Filigree Dividers */
.vintage-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 1.5rem 0;
  color: var(--gold-antique);
}

.vintage-divider .line {
  flex: 1;
  max-width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-antique), transparent);
}

.vintage-divider .ornament {
  font-size: 1.2rem;
  line-height: 1;
  color: var(--gold-primary);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  letter-spacing: 0.15em;
  color: var(--gold-antique);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 1rem auto 0;
  color: var(--text-secondary);
  font-weight: 300;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 6rem;
  background: 
    linear-gradient(180deg, rgba(9, 11, 12, 0.55) 0%, rgba(9, 11, 12, 0.88) 75%, var(--bg-deep-noir) 100%),
    radial-gradient(circle at center, rgba(14, 30, 23, 0.4) 0%, transparent 70%),
    url('../assets/images/speakeasy_vault.jpg') center/cover no-repeat;
  border-bottom: 1px solid var(--border-gold-subtle);
  overflow: hidden;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.9);
  pointer-events: none;
}

.hero-frame-card {
  position: relative;
  z-index: 2;
  max-width: 980px;
  background: rgba(14, 18, 20, 0.88);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 3.5rem 2.5rem;
  box-shadow: var(--shadow-dark), 0 0 40px rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Vintage Corner Ornaments */
.corner-ornament {
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: var(--gold-antique);
  border-style: solid;
  pointer-events: none;
}
.corner-top-left { top: 8px; left: 8px; border-width: 2px 0 0 2px; }
.corner-top-right { top: 8px; right: 8px; border-width: 2px 2px 0 0; }
.corner-bottom-left { bottom: 8px; left: 8px; border-width: 0 0 2px 2px; }
.corner-bottom-right { bottom: 8px; right: 8px; border-width: 0 2px 2px 0; }

.hero-crest-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.25rem;
}

.hero-crest-svg {
  width: 76px;
  height: 76px;
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
}

.hero-location-tag {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-top: 0.5rem;
  font-weight: 600;
}

.hero-main-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 15px rgba(212, 175, 55, 0.3));
}

.hero-sub-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.8vw, 1.85rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  letter-spacing: 0.03em;
}

.hero-quote-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-style: italic;
  color: var(--gold-light);
  max-width: 780px;
  margin: 0 auto 1.75rem;
  line-height: 1.5;
}

.hero-description-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Quick Perks Strip */
.hero-perks-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-gold-subtle);
}

.hero-perk-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: left;
}

.perk-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.perk-text-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.perk-text-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   The Story & Narrative Section
   -------------------------------------------------------------------------- */
.story-section {
  padding: 6.5rem 0;
  position: relative;
  background: var(--bg-subtle-charcoal);
  border-bottom: 1px solid var(--border-gold-subtle);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.story-content {
  position: relative;
}

.story-lead-quote {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--gold-light);
  border-left: 3px solid var(--gold-antique);
  padding-left: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.story-paragraphs p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.story-highlights-list {
  list-style: none;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.story-highlights-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.story-highlights-list li svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* Picture Frame Vintage Styling */
.vintage-frame-wrapper {
  position: relative;
  padding: 14px;
  background: #181d1e;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-dark), 0 10px 30px rgba(0, 0, 0, 0.8);
}

.vintage-frame-wrapper::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(212, 175, 55, 0.4);
  pointer-events: none;
}

.frame-image {
  border-radius: var(--radius-sm);
  width: 100%;
  height: 440px;
  object-fit: cover;
  filter: contrast(105%) brightness(95%);
  transition: transform 0.6s ease;
}

.vintage-frame-wrapper:hover .frame-image {
  transform: scale(1.02);
}

.frame-seal {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: #111415;
  border: 2px solid var(--gold-antique);
  border-radius: 50%;
  width: 84px;
  height: 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
  z-index: 5;
}

.frame-seal .seal-year {
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
}

.frame-seal .seal-place {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   The Two Spaces Showcase
   -------------------------------------------------------------------------- */
.spaces-section {
  padding: 6.5rem 0;
  position: relative;
  background: var(--bg-deep-noir);
  border-bottom: 1px solid var(--border-gold-subtle);
}

.spaces-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.space-tab-btn {
  background: var(--bg-card-noir);
  border: 1px solid var(--border-gold-subtle);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.space-tab-btn:hover {
  color: var(--gold-light);
  border-color: var(--border-gold);
}

.space-tab-btn.active {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.space-pane {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.space-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.space-detail-card {
  background: var(--bg-card-noir);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.space-photo-showcase {
  position: relative;
  min-height: 480px;
}

.space-photo-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.space-badge-floating {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(9, 11, 12, 0.88);
  border: 1px solid var(--border-gold);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
}

.space-info-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.space-room-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
}

.space-room-subtitle {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.space-room-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.space-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: rgba(9, 11, 12, 0.6);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-sm);
}

.spec-item {
  text-align: center;
}

.spec-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-primary);
  display: block;
}

.spec-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.space-features-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.2rem;
}

.feature-tag {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--text-primary);
  font-size: 0.8rem;
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
}

/* --------------------------------------------------------------------------
   Private Venue Hire Inclusions (The 7 Pillars)
   -------------------------------------------------------------------------- */
.inclusions-section {
  padding: 6.5rem 0;
  position: relative;
  background: var(--bg-subtle-charcoal);
  border-bottom: 1px solid var(--border-gold-subtle);
}

.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.inclusion-card {
  background: var(--bg-card-noir);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition-smooth);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.inclusion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.inclusion-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-dark), 0 10px 25px rgba(212, 175, 55, 0.15);
}

.inclusion-card:hover::before {
  opacity: 1;
}

.inclusion-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.inclusion-card:hover .inclusion-icon-wrapper {
  background: var(--gold-gradient);
  color: #0b0d0e;
  transform: rotate(4deg) scale(1.08);
}

.inclusion-title {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  color: var(--gold-light);
}

.inclusion-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex-grow: 1;
}

.inclusion-bullet-list {
  list-style: none;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px dashed rgba(212, 175, 55, 0.15);
}

.inclusion-bullet-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.inclusion-bullet-list li::before {
  content: '♦';
  color: var(--gold-primary);
  font-size: 0.65rem;
}

/* --------------------------------------------------------------------------
   Atmosphere & Gallery Showcase
   -------------------------------------------------------------------------- */
.gallery-section {
  padding: 6.5rem 0;
  position: relative;
  background: var(--bg-deep-noir);
  border-bottom: 1px solid var(--border-gold-subtle);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold-subtle);
  background: var(--bg-card-noir);
  box-shadow: var(--shadow-dark);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.9) contrast(1.05);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.02) contrast(1.1);
}

.gallery-overlay-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 11, 12, 0.92) 100%);
  display: flex;
  flex-direction: column;
  transform: translateY(10px);
  opacity: 0.9;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-cap-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--gold-light);
}

.gallery-cap-sub {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.gallery-col-7 { grid-column: span 7; min-height: 380px; }
.gallery-col-5 { grid-column: span 5; min-height: 380px; }
.gallery-col-4 { grid-column: span 4; min-height: 320px; }
.gallery-col-8 { grid-column: span 8; min-height: 320px; }

/* --------------------------------------------------------------------------
   Interactive Event Estimator & Booking Concierge
   -------------------------------------------------------------------------- */
.concierge-section {
  padding: 6.5rem 0;
  position: relative;
  background: 
    radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg-subtle-charcoal) 0%, #0d1214 100%);
  border-bottom: 1px solid var(--border-gold-subtle);
}

.concierge-card-container {
  background: var(--bg-card-noir);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark), 0 0 50px rgba(0, 0, 0, 0.9);
  padding: 3.5rem;
  position: relative;
}

.concierge-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
}

/* Left Form Area */
.booking-form-wrap {
  position: relative;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  background: #0d1012;
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
  background: #111518;
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

/* Slider Style */
.guest-slider-wrap {
  margin-top: 0.5rem;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.slider-count-badge {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
  padding: 0.2rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold-subtle);
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: #252b30;
  border-radius: 3px;
  border: 1px solid var(--border-gold-subtle);
}

input[type=range]::-webkit-slider-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: var(--gold-primary);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
  border: 2px solid #000;
}

/* Right Concierge Summary Box */
.concierge-summary-box {
  background: linear-gradient(145deg, #111518 0%, #0d1011 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.concierge-summary-header {
  border-bottom: 1px solid var(--border-gold-subtle);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.summary-tag {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gold-antique);
  text-transform: uppercase;
}

.summary-title {
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-top: 0.3rem;
}

.recommended-space-badge {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.rec-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rec-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-top: 0.4rem;
}

/* Direct Contact Hotline Strip */
.direct-hotline-card {
  background: #090c0d;
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-top: 1.5rem;
}

.hotline-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.hotline-item:last-child {
  margin-bottom: 0;
}

.hotline-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.hotline-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.hotline-val {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hotline-val a {
  color: var(--gold-light);
}

.hotline-val a:hover {
  color: #fff;
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Location & Heritage Map Section
   -------------------------------------------------------------------------- */
.location-section {
  padding: 6.5rem 0;
  position: relative;
  background: var(--bg-deep-noir);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.location-address-card {
  background: var(--bg-card-noir);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-dark);
}

.address-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.address-place {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.transit-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.transit-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.transit-badge {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold-subtle);
  color: var(--gold-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  min-width: 90px;
  text-align: center;
}

/* Map Mockup & Interactive Link */
.map-visual-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-dark);
  background: #151a1d;
  min-height: 420px;
}

.map-visual-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: contrast(1.1) brightness(0.85) sepia(0.15);
}

.map-pin-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(9, 11, 12, 0.95);
  border: 2px solid var(--gold-primary);
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9), var(--shadow-glow);
  backdrop-filter: blur(8px);
}

.pin-badge-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-primary);
}

.pin-badge-sub {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   Vintage Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #060809;
  border-top: 1px solid var(--border-gold);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.footer-brand-summary p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1rem;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom-bar a {
  color: var(--gold-antique);
}

/* --------------------------------------------------------------------------
   Toast Feedback Notification
   -------------------------------------------------------------------------- */
.toast-notice {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(14, 18, 20, 0.96);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.6rem;
  color: var(--text-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), var(--shadow-glow);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.toast-notice.show {
  transform: translateY(0);
}

.toast-icon {
  font-size: 1.5rem;
  color: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   Keyframe Animations
   -------------------------------------------------------------------------- */
@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .story-grid,
  .space-detail-card,
  .concierge-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .space-photo-showcase {
    min-height: 360px;
  }

  .gallery-col-7,
  .gallery-col-5,
  .gallery-col-4,
  .gallery-col-8 {
    grid-column: span 6;
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .top-notice-bar {
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.75rem;
  }
  
  .top-contact-pills {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-menu {
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    background: rgba(9, 11, 12, 0.98);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-gold);
    transform: translateY(-150%);
    transition: transform 0.4s ease;
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .hero-frame-card {
    padding: 2.5rem 1.25rem;
  }

  .hero-perks-strip {
    grid-template-columns: 1fr;
  }

  .gallery-col-7,
  .gallery-col-5,
  .gallery-col-4,
  .gallery-col-8 {
    grid-column: span 12;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .concierge-card-container {
    padding: 2rem 1.25rem;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
  }
}
