/* Book My Event Hub — Landing Page (Light / Dark) */

:root,
[data-theme="light"] {
  color-scheme: light;

  --purple: #0f3d4c;
  --magenta: #0f766e;
  --magenta-hover: #0d9488;
  --orange: #c9a227;
  --yellow: #e4c15a;

  --bg-body: #f4f7f8;
  --bg-surface: #ffffff;
  --bg-elevated: #eef4f5;
  --bg-accent: #e8f2f1;
  --bg-hero-tint: rgba(244, 247, 248, 0.9);
  --bg-cta: linear-gradient(135deg, rgba(15, 61, 76, 0.08) 0%, rgba(15, 118, 110, 0.07) 50%, rgba(201, 162, 39, 0.06) 100%);

  --text-primary: #0b1f3a;
  --text-secondary: #3d5566;
  --text-tertiary: #6b8294;
  --text-on-accent: #ffffff;

  --border: rgba(11, 31, 58, 0.1);
  --border-strong: rgba(11, 31, 58, 0.16);
  --shadow-sm: 0 4px 20px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 12px 40px rgba(11, 31, 58, 0.1);
  --shadow-lg: 0 24px 60px rgba(11, 31, 58, 0.12);

  --header-bg: transparent;
  --header-bg-scrolled: rgba(255, 255, 255, 0.94);
  --header-border: rgba(11, 31, 58, 0.08);

  --search-bg: #ffffff;
  --search-border: rgba(11, 31, 58, 0.12);
  --input-bg: transparent;

  --hero-gradient: linear-gradient(
    to bottom,
    rgba(244, 247, 248, 0.72) 0%,
    rgba(244, 247, 248, 0.92) 55%,
    var(--bg-body) 100%
  );

  --collection-overlay: linear-gradient(to top, rgba(11, 31, 58, 0.78) 0%, transparent 55%);
  --footer-bg: #ffffff;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

[data-theme="dark"] {
  color-scheme: dark;

  --purple: #1a6b7a;
  --magenta: #14b8a6;
  --magenta-hover: #2dd4bf;
  --orange: #e4c15a;
  --yellow: #f0d78c;

  --bg-body: #070b10;
  --bg-surface: #101820;
  --bg-elevated: #0c131a;
  --bg-accent: #132029;
  --bg-hero-tint: rgba(7, 11, 16, 0.55);
  --bg-cta: #101820;

  --text-primary: #ffffff;
  --text-secondary: #a8b8c4;
  --text-tertiary: #6f8394;
  --text-on-accent: #ffffff;

  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.45);

  --header-bg: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
  --header-bg-scrolled: rgba(7, 11, 16, 0.95);
  --header-border: rgba(255, 255, 255, 0.08);

  --search-bg: rgba(16, 24, 32, 0.9);
  --search-border: rgba(255, 255, 255, 0.08);
  --input-bg: transparent;

  --hero-gradient: linear-gradient(
    to bottom,
    rgba(7, 11, 16, 0.55) 0%,
    rgba(7, 11, 16, 0.75) 60%,
    var(--bg-body) 100%
  );

  --collection-overlay: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  --footer-bg: #05080c;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: var(--header-bg);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  background: var(--header-bg-scrolled);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--header-border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 1rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  border-radius: 10px;
  padding: 0.15rem 0;
  transition: opacity 0.2s, transform 0.2s;
}

.brand-link:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.brand-link:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 4px;
}

.brand-logo-full {
  width: 52px;
  height: 52px;
  max-width: 52px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  background: #000 !important;
  display: block;
  mix-blend-mode: normal;
  box-shadow: 0 4px 18px rgba(15, 118, 110, 0.28);
}

.brand-wordmark {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  line-height: 1;
}

[data-theme="dark"] .brand-logo-full {
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35));
}

.footer-brand .brand-logo-full {
  width: 72px;
  height: 72px;
  max-width: 72px;
  margin-bottom: 1.25rem;
}

.footer-brand .brand-link:hover {
  transform: none;
  opacity: 1;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

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

.nav-links {
  margin: 0 auto;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

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

.sign-in {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.sign-in:hover {
  color: var(--text-primary);
}

/* Theme toggle */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.theme-toggle:hover {
  color: var(--text-primary);
  border-color: rgba(233, 30, 140, 0.35);
  box-shadow: var(--shadow-sm);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 2px;
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
}

.theme-toggle-icon--moon svg {
  fill: currentColor;
  stroke: none;
}

.theme-toggle--mobile {
  display: none;
}

[data-theme="dark"] .theme-toggle-icon--sun,
[data-theme="light"] .theme-toggle-icon--moon {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--magenta) 55%, var(--orange) 100%);
  color: var(--text-on-accent);
  box-shadow: 0 4px 16px rgba(233, 30, 140, 0.25);
}

.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(233, 30, 140, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--magenta);
  background: rgba(233, 30, 140, 0.06);
}

[data-theme="dark"] .btn-outline {
  color: var(--text-on-accent);
  border-color: rgba(255, 255, 255, 0.35);
}

[data-theme="dark"] .btn-outline:hover {
  border-color: var(--text-on-accent);
  background: rgba(255, 255, 255, 0.05);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 0 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/ballroom_hero.jpg') center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-gradient);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 0 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--orange));
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--purple), var(--magenta), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.hero-web-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 auto 1.75rem;
}

.venue-card-link {
  color: inherit;
  text-decoration: none;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-download-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 420px;
  line-height: 1.6;
}

.play-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 190px;
  padding: 0.65rem 1.15rem 0.65rem 0.9rem;
  border-radius: 10px;
  background: #111;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.play-store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  filter: brightness(1.05);
}

.play-store-badge-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.play-store-badge-icon svg {
  width: 26px;
  height: 26px;
}

.play-store-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  text-align: left;
}

.play-store-eyebrow {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

.play-store-name {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.play-store-badge--footer {
  margin-top: 1.25rem;
}

.search-bar {
  display: flex;
  align-items: stretch;
  max-width: 780px;
  margin: 0 auto;
  background: var(--search-bg);
  border: 1px solid var(--search-border);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.search-field {
  flex: 1;
  padding: 1.1rem 1.5rem;
  text-align: left;
  border-right: 1px solid var(--border);
}

.search-field:last-of-type {
  border-right: none;
}

.search-field label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 0.25rem;
}

.search-field input,
.search-field select {
  width: 100%;
  background: var(--input-bg);
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text-primary);
}

.search-field input::placeholder {
  color: var(--text-tertiary);
}

.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  min-width: 64px;
  background: linear-gradient(135deg, var(--magenta), var(--orange));
  border: none;
  cursor: pointer;
  transition: filter 0.2s;
}

.search-btn:hover {
  filter: brightness(1.08);
}

.search-btn svg {
  width: 22px;
  height: 22px;
  fill: white;
}

/* ── Section common ── */
section {
  padding: 5rem 0;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-primary);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.view-all {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
  white-space: nowrap;
}

.view-all:hover {
  color: var(--magenta);
}

/* ── Venues ── */
.venues {
  background: var(--bg-body);
}

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

.empty-state {
  grid-column: 1 / -1;
  color: var(--text-secondary);
  text-align: center;
  padding: 2rem;
}

.venue-card {
  background: var(--bg-surface);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}

.venue-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.venue-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.venue-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.venue-card:hover .venue-img-wrap img {
  transform: scale(1.05);
}

.venue-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(123, 45, 142, 0.15), rgba(233, 30, 140, 0.08));
  color: var(--text-tertiary);
}

.venue-img-placeholder svg {
  width: 3rem;
  height: 3rem;
  fill: currentColor;
}

.venue-media-count {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(26, 15, 46, 0.72);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.venue-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

[data-theme="dark"] .venue-tag {
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

.venue-info {
  padding: 1.25rem 1.5rem 1.5rem;
}

.venue-info h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.venue-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--yellow);
}

.rating svg {
  width: 14px;
  height: 14px;
  fill: var(--yellow);
}

.price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--magenta);
}

/* ── Hub Standard ── */
.hub-standard {
  background: var(--bg-accent);
  text-align: center;
}

.hub-standard .section-title {
  margin-bottom: 1rem;
}

.standard-desc {
  max-width: 560px;
  margin: 0 auto 3.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}

.feature-card {
  padding: 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  border-color: rgba(233, 30, 140, 0.3);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(123, 45, 142, 0.12), rgba(233, 30, 140, 0.08));
  border-radius: 10px;
  margin-bottom: 1.25rem;
  color: var(--magenta);
}

[data-theme="dark"] .feature-icon {
  background: var(--bg-accent);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.feature-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Collections ── */
.collections {
  background: var(--bg-body);
}

.collections .section-title {
  margin-bottom: 2.5rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.collection-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
}

.collection-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.collection-card:hover img {
  transform: scale(1.06);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: var(--collection-overlay);
}

.collection-text {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: #fff;
}

.collection-text h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.collection-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

/* ── Testimonial ── */
.testimonial {
  background: var(--bg-accent);
  text-align: center;
  padding: 6rem 0;
}

.quote-icon {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

.testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 2rem;
  color: var(--text-primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--magenta);
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}

.author-info span {
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── CTA ── */
.cta {
  background: var(--bg-body);
  padding-bottom: 6rem;
}

.cta-box {
  background: var(--bg-cta);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .cta-box {
  background: var(--bg-accent);
}

.cta-box h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.cta-box p {
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

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

.footer-brand .brand-link {
  margin-bottom: 0.25rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.65rem;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-contact li {
  margin-bottom: 1rem;
}

.footer-contact-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 0.35rem;
}

.footer-contact address {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 240px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--magenta);
}

/* ── Mobile menu toggle ── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.25rem;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 15, 46, 0.4);
  z-index: 90;
}

[data-theme="dark"] .nav-backdrop {
  background: rgba(0, 0, 0, 0.55);
}

.nav-backdrop.visible {
  display: block;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .venue-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .brand-logo-full {
    height: 48px;
    max-width: min(140px, 48vw);
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    gap: 0;
    padding: 1.25rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 110;
  }

  .nav.open .nav-menu {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1rem;
  }

  .nav-actions {
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
  }

  .nav-actions .sign-in {
    text-align: center;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
  }

  .nav-actions .btn {
    width: 100%;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .theme-toggle--mobile {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-actions .theme-toggle {
    display: none;
  }

  .search-bar {
    flex-direction: column;
  }

  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .search-btn {
    width: 100%;
    padding: 1rem;
  }

  .venue-grid,
  .features-grid,
  .collection-grid {
    grid-template-columns: 1fr;
  }

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

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
