/* ═══════════════════════════════════════════════════════════════
   CelebrityParis.com — Global Stylesheet
   The Living Archive of Celebrity Culture in Paris
   ═══════════════════════════════════════════════════════════════ */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #fafaf8;
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Utility ───────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.content-narrow { max-width: 800px; margin: 0 auto; }
.visually-hidden, .sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.gold { color: #d4af37; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

/* ── Header / Navigation ──────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.main-nav.container { padding: 0.75rem 1.5rem; }

/* Logo variants */
.logo, .site-logo, .nav-logo, .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}
.logo .gold, .logo span, .logo-accent, .site-logo .logo-dot {
  color: #d4af37;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
}
.logo-text em, .logo-text strong, .logo-text i {
  color: #d4af37;
  font-style: normal;
}
.logo-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-left: 0.75rem;
}

.nav-container, .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

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

.nav-menu a, .nav-list a, .nav-links a, .nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 0.85rem;
  border-radius: 4px;
  transition: color 0.3s, background 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.nav-menu a:hover, .nav-list a:hover, .nav-links a:hover,
.nav-menu a.active, .nav-list a.active, .nav-links a.active {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.08);
}

/* Nav search */
.nav-search {
  position: relative;
  flex: 0 1 280px;
  margin: 0 1.5rem;
}
.nav-search input {
  width: 100%;
  padding: 0.45rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  color: #fff;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.nav-search input::placeholder { color: rgba(255,255,255,0.4); }
.nav-search input:focus {
  border-color: rgba(212,175,55,0.5);
  background: rgba(255,255,255,0.12);
}
.search-autocomplete {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  z-index: 300;
  max-height: 320px;
  overflow-y: auto;
}
.search-autocomplete.active { display: block; }
.search-autocomplete-item {
  padding: 0.65rem 1rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: #1a1a2e;
  border-bottom: 1px solid #f0ebe0;
  transition: background 0.2s;
}
.search-autocomplete-item:hover { background: #f8f6f0; }
.search-autocomplete-item:last-child { border-bottom: none; }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 201;
}
.nav-toggle span, .nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Dark mode toggle */
.dark-mode-toggle {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 0.35rem 0.6rem;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-left: 0.5rem;
  transition: border-color 0.3s, color 0.3s;
}
.dark-mode-toggle:hover { border-color: #d4af37; color: #d4af37; }
.icon-sun { display: inline; }
.icon-moon { display: none; }

/* ── Hero Section ──────────────────────────────────────────── */
.hero-section, .hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}
.hero--compact { min-height: 50vh; padding: 5rem 1.5rem 3rem; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(212,175,55,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(15,52,96,0.3) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; width: 100%; }
.hero-heading, .hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.hero-subheading, .hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 2rem;
  font-style: italic;
}

/* Hero search */
.hero-search, .search-wrapper { max-width: 560px; margin: 0 auto 1.5rem; position: relative; }
.hero-search-input, .search-input, .cta-search-input {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50px;
  color: #fff;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.hero-search-input::placeholder, .search-input::placeholder, .cta-search-input::placeholder {
  color: rgba(255,255,255,0.45);
}
.hero-search-input:focus, .search-input:focus, .cta-search-input:focus {
  border-color: #d4af37;
  background: rgba(255,255,255,0.12);
}

.search-input-group {
  position: relative;
  display: flex;
  align-items: center;
}
.search-icon {
  position: absolute;
  left: 1.25rem;
  color: rgba(255,255,255,0.45);
  pointer-events: none;
}
.search-input-group .search-input { padding-left: 3rem; }

.search-results, .hero-search-autocomplete, .cta-search-autocomplete {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  z-index: 300;
  max-height: 320px;
  overflow-y: auto;
}
.search-results[hidden] { display: none; }
.search-results:not([hidden]) { display: block; }

/* Hero stats */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stat {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}
.hero-stat-divider { color: rgba(255,255,255,0.2); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounceDown 2s infinite;
}
.scroll-arrow {
  font-size: 1.5rem;
  color: rgba(212,175,55,0.5);
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb ol {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: #d4af37; }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 0.5rem; color: rgba(255,255,255,0.3); }

/* ── Sections ──────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section:nth-child(even) { background: #fff; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}
.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: #888;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}
.section-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-align: center;
  line-height: 1.7;
}
.section-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}
.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 0.75rem;
}

.lead-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #1a1a2e;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.emphasis-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #d4af37;
  font-style: italic;
  text-align: center;
  margin-top: 2rem;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  letter-spacing: 0.03em;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #d4af37, #c9a84c);
  color: #1a1a2e;
}
.btn-primary:hover { box-shadow: 0 8px 24px rgba(212,175,55,0.3); }
.btn-secondary {
  background: transparent;
  color: #d4af37;
  border: 1px solid #d4af37;
}
.btn-secondary:hover { background: rgba(212,175,55,0.08); }
.link-button {
  background: none;
  border: none;
  color: #d4af37;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

/* ── Celebrity Cards ───────────────────────────────────────── */
.celebrity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.celebrity-card {
  background: #fff;
  border: 1px solid #e8e0d0;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.celebrity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.celebrity-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.avatar-initials {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.avatar-initials--large { font-size: 1.8rem; }
.celebrity-info { flex: 1; min-width: 0; }
.celebrity-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #1a1a2e;
  margin-bottom: 0.25rem;
}
.celebrity-era {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 0.5rem;
}
.celebrity-categories { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.5rem; }
.celebrity-connections {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #d4af37;
  font-weight: 600;
}

/* Badges */
.badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-film { background: #e8f0fe; color: #1a56db; }
.badge-fashion { background: #fce8f3; color: #c026d3; }
.badge-music { background: #fef3c7; color: #b45309; }
.badge-art { background: #ecfdf5; color: #059669; }
.badge-literature { background: #f3e8ff; color: #7c3aed; }
.badge-royalty-politics { background: #fef2f2; color: #dc2626; }

/* ── Filter Section ────────────────────────────────────────── */
.filter-section {
  background: #f8f6f0;
  border-bottom: 1px solid #e8e0d0;
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 90;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.filter-group { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.filter-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.filter-pills { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.filter-pill {
  padding: 0.4rem 0.85rem;
  border: 1px solid #d4cfc2;
  border-radius: 20px;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #555;
  cursor: pointer;
  transition: all 0.25s;
}
.filter-pill:hover, .filter-pill.active {
  background: #1a1a2e;
  color: #d4af37;
  border-color: #1a1a2e;
}
.filter-dropdowns { display: flex; gap: 0.75rem; }
.filter-select {
  padding: 0.4rem 0.75rem;
  border: 1px solid #d4cfc2;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  background: #fff;
  color: #333;
  cursor: pointer;
  outline: none;
}
.filter-select:focus { border-color: #d4af37; }
.filter-status { margin-top: 0.75rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.results-count {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #888;
}
.active-filters { display: flex; gap: 0.35rem; flex-wrap: wrap; }

/* ── Venue Cards ───────────────────────────────────────────── */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.venue-card {
  background: #fff;
  border: 1px solid #e8e0d0;
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.venue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ── Modal ─────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay:not([hidden]) { display: flex; }
.modal-overlay[hidden] { display: none; }
.modal-content {
  background: #fff;
  border-radius: 16px;
  max-width: 700px;
  width: 92%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: #888;
  line-height: 1;
  transition: color 0.3s;
}
.modal-close:hover { color: #1a1a2e; }

/* Profile */
.profile-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.profile-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.profile-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #1a1a2e;
  margin-bottom: 0.25rem;
}
.profile-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.5rem;
}
.profile-badges { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.profile-quote {
  border-left: 3px solid #d4af37;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: #f8f6f0;
  border-radius: 0 8px 8px 0;
}
.profile-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #555;
}
.profile-quote cite {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.5rem;
  font-style: normal;
}

/* Connections list */
.connections-list { list-style: none; padding: 0; }
.connection-item {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0ebe0;
}
.connection-item:last-child { border-bottom: none; }
.connection-year {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #d4af37;
  flex-shrink: 0;
  width: 50px;
}
.connection-venue {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #1a1a2e;
}
.connection-description {
  font-size: 0.85rem;
  color: #555;
  margin-top: 0.25rem;
}
.connection-source {
  font-size: 0.75rem;
  color: #aaa;
  font-style: italic;
  margin-top: 0.25rem;
  display: block;
}
.profile-map-container { height: 200px; border-radius: 8px; margin-top: 1rem; background: #e8e0d0; }

/* ── Map Styles ────────────────────────────────────────────── */
.home-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8e0d0;
}
.map-description {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: #888;
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
}

/* Map page layout */
.map-page .site-header { position: fixed; width: 100%; }
.map-layout {
  display: flex;
  height: calc(100vh - 60px);
  margin-top: 60px;
  position: relative;
}
.map-sidebar {
  width: 320px;
  background: #fff;
  border-right: 1px solid #e8e0d0;
  overflow-y: auto;
  flex-shrink: 0;
  z-index: 50;
}
.map-controls { padding: 1.25rem; }
.map-controls h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
}
.map-controls input[type="search"] {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid #d4cfc2;
  border-radius: 8px;
  font-size: 0.85rem;
  outline: none;
  margin-bottom: 1rem;
}
.map-controls input[type="search"]:focus { border-color: #d4af37; }
.map-filters { margin-bottom: 1.25rem; }
.map-filters h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin-bottom: 0.5rem;
}
.map-filters label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #555;
  padding: 0.25rem 0;
  cursor: pointer;
}
.map-filters input[type="checkbox"] { margin-right: 0.5rem; accent-color: #d4af37; }
.map-legend h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin-bottom: 0.5rem;
}
.map-venue-detail { padding: 1.25rem; border-top: 1px solid #e8e0d0; }
.map-main { flex: 1; position: relative; }
.full-map { width: 100%; height: 100%; }
.map-sidebar-toggle {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: #1a1a2e;
  color: #d4af37;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ── Highlight Cards ───────────────────────────────────────── */
.highlight-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.highlight-card {
  background: #fff;
  border: 1px solid #e8e0d0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.highlight-card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.highlight-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}
.highlight-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* ── Featured sections ─────────────────────────────────────── */
.featured-celebrities, .featured-venues, .map-preview,
.fashion-highlight, .film-highlight, .timeline-preview,
.search-cta-section, .newsletter-section {
  padding: 5rem 0;
}
.featured-celebrities { background: #fff; }
.featured-venues { background: #f8f6f0; }
.map-preview { background: #fff; }
.fashion-highlight { background: #f8f6f0; }
.film-highlight { background: #fff; }
.timeline-preview { background: #f8f6f0; }
.search-cta-section { background: linear-gradient(135deg, #1a1a2e, #16213e); color: #fff; }
.search-cta-section .section-title { color: #fff; }
.search-cta-section .section-text { color: rgba(255,255,255,0.7); }
.cta-search { max-width: 520px; margin: 0 auto; position: relative; }

/* Timeline preview scroll */
.timeline-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
  scrollbar-width: thin;
  scrollbar-color: #d4af37 #e8e0d0;
}
.timeline-scroll::-webkit-scrollbar { height: 6px; }
.timeline-scroll::-webkit-scrollbar-track { background: #e8e0d0; border-radius: 3px; }
.timeline-scroll::-webkit-scrollbar-thumb { background: #d4af37; border-radius: 3px; }
.timeline-decade {
  flex-shrink: 0;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid #e8e0d0;
  border-radius: 8px;
  text-align: center;
  min-width: 140px;
  transition: transform 0.3s, border-color 0.3s;
}
.timeline-decade:hover {
  transform: translateY(-3px);
  border-color: #d4af37;
}
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #d4af37;
  display: block;
}
.timeline-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #888;
  margin-top: 0.35rem;
}

/* ── Stats ─────────────────────────────────────────────────── */
.stats-section { padding: 4rem 0; background: #f8f6f0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.stat-card {
  background: #fff;
  border: 1px solid #e8e0d0;
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
}
.stat-card--highlight { border-color: #d4af37; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 0.25rem;
}
.stat-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #555;
  font-weight: 600;
}
.stat-detail {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #aaa;
  margin-top: 0.25rem;
}
.stat-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d4af37;
  margin-bottom: 0.5rem;
}

/* ── Card grids (film, fashion, festival) ──────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.card-grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.film-card, .festival-card {
  background: #fff;
  border: 1px solid #e8e0d0;
  border-radius: 12px;
  padding: 1.75rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.film-card:hover, .festival-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.film-card-body h3, .festival-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}
.film-title { margin-bottom: 0.35rem; }
.film-year { color: #d4af37; font-weight: 400; }
.film-director, .film-cast, .film-locations {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 0.35rem;
  line-height: 1.5;
}

/* Content columns */
.content-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}
.content-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}
.content-block p {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
}

/* Styled list */
.styled-list {
  list-style: none;
  padding: 0;
}
.styled-list li {
  padding: 0.6rem 0 0.6rem 1.25rem;
  border-left: 2px solid #d4af37;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.venue-list { list-style: none; padding: 0; }
.venue-list li {
  padding: 0.5rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  border-bottom: 1px solid #f0ebe0;
}
.venue-list li:last-child { border-bottom: none; }

/* Locations map placeholder */
.locations-map {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8e0d0;
  background: #e8e0d0;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-section { padding: 4rem 0; }
.faq-accordion, .faq-grid, .faq-list { max-width: 800px; margin: 2rem auto 0; }
.faq-item {
  border-bottom: 1px solid #e8e0d0;
}
.faq-item summary, .faq-question {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron { transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 0 1.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
}
.faq-answer p { margin-bottom: 0.75rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ── Newsletter ────────────────────────────────────────────── */
.newsletter-section { background: #f8f6f0; padding: 4rem 0; text-align: center; }
.newsletter-form { max-width: 480px; margin: 1.5rem auto 0; }
.newsletter-input-group { display: flex; gap: 0.5rem; }
.newsletter-input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: 1px solid #d4cfc2;
  border-radius: 50px;
  font-size: 0.9rem;
  outline: none;
  background: #fff;
}
.newsletter-input:focus { border-color: #d4af37; }
.newsletter-btn { flex-shrink: 0; }
.privacy-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #aaa;
  margin-top: 0.75rem;
}

/* ── About page ────────────────────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  color: #fff;
}
.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.about-hero .hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}
.about-mission, .about-document, .about-ethics, .about-sources,
.about-categories, .about-advantage, .about-contact {
  padding: 4rem 0;
}
.about-mission p, .about-document p, .about-sources p, .about-advantage p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-document { background: #f8f6f0; }

/* Ethics grid */
.ethics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.ethics-card {
  background: #fff;
  border: 1px solid #e8e0d0;
  border-radius: 8px;
  padding: 1.75rem;
}
.ethics-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}
.ethics-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}

/* Category grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.category-card {
  background: #fff;
  border: 1px solid #e8e0d0;
  border-radius: 8px;
  padding: 1.75rem;
  transition: transform 0.3s;
}
.category-card:hover { transform: translateY(-3px); }
.category-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}
.category-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}

/* Contact form */
.contact-form { max-width: 500px; margin: 2rem auto 0; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 0.35rem;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d4cfc2;
  border-radius: 8px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus { border-color: #d4af37; }

/* ── No Results ────────────────────────────────────────────── */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: #888;
}
.no-results[hidden] { display: none; }
.no-results svg { margin: 0 auto 1rem; color: #d4cfc2; }
.no-results h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 0.5rem;
}
.no-results p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand h3, .footer-brand .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.footer-brand .gold, .footer-brand em, .footer-brand strong { color: #d4af37; font-style: normal; }
.footer-tagline, .footer-brand p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.footer-nav h4, .footer-categories h4, .footer-about h4,
.footer-links h4, .footer-info h3, .footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d4af37;
  margin-bottom: 1rem;
}
.footer-nav ul, .footer-categories ul, .footer-about ul,
.footer-links ul, .footer-info ul {
  list-style: none;
}
.footer-nav li, .footer-categories li, .footer-about li,
.footer-links li, .footer-info li { margin-bottom: 0.5rem; }
.footer-nav a, .footer-categories a, .footer-about a,
.footer-links a, .footer-info a {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.footer-nav a:hover, .footer-categories a:hover, .footer-about a:hover,
.footer-links a:hover, .footer-info a:hover { color: #d4af37; }
.footer-info p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 3rem;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.footer-note {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.footer-legal a:hover { color: #d4af37; }

/* Footer alternate layout (inner) */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-links-grid, .footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d4af37;
  margin-bottom: 1rem;
}

/* ── Back to Top ───────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: #1a1a2e;
  color: #d4af37;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50%;
  font-size: 1.25rem;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: opacity 0.3s, transform 0.3s;
  text-decoration: none;
  cursor: pointer;
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { transform: translateY(-3px); background: #d4af37; color: #1a1a2e; }

/* ── Scroll Animations ─────────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .map-layout { flex-direction: column; height: auto; margin-top: 60px; }
  .map-sidebar { width: 100%; max-height: 40vh; border-right: none; border-bottom: 1px solid #e8e0d0; }
  .map-main { height: 60vh; }
  .map-sidebar-toggle { display: block; }
  .map-sidebar.collapsed { display: none; }
  .nav-search { flex: 0 1 200px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu, .nav-list, .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: #1a1a2e;
    padding: 1rem;
    border-top: 1px solid rgba(212,175,55,0.15);
  }
  .nav-menu.open, .nav-list.open, .nav-links.open { display: flex; }
  .nav-search { display: none; }
  .dark-mode-toggle { display: none; }

  .hero-section, .hero { min-height: 60vh; padding: 5rem 1rem 3rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .highlight-cards { grid-template-columns: 1fr; }
  .celebrity-grid { grid-template-columns: 1fr; }
  .venue-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .ethics-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .newsletter-input-group { flex-direction: column; }
  .filter-bar { flex-direction: column; align-items: flex-start; }
  .filter-dropdowns { flex-direction: column; width: 100%; }
  .filter-select { width: 100%; }
  .content-columns { grid-template-columns: 1fr; }
  .profile-header { flex-direction: column; text-align: center; }

  .map-sidebar { width: 100%; position: relative; max-height: none; }
  .map-main { height: 50vh; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 0.35rem; }
  .hero-stat-divider { display: none; }
}
