/* ============================================
   First Birthday Chicago - Design System
   Style: Clean & Modern
   Fonts: Outfit (display) + DM Sans (body)
   ============================================ */

/* --- Font Faces (Self-hosted WOFF2) --- */
@font-face {
  font-family: 'Outfit';
  src: url('/fonts/outfit-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dm-sans-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dm-sans-variable-italic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* --- Design Tokens --- */
:root {
  /* Colors */
  --coral: #E17055;
  --coral-light: #FDEDEA;
  --coral-dark: #C0523A;
  --mint: #00B894;
  --mint-light: #E6F9F4;
  --mint-dark: #009B7D;
  --charcoal: #2D3436;
  --charcoal-light: #636E72;
  --slate: #B2BEC3;
  --cream: #F8F6F3;
  --white: #FFFFFF;
  --warm-white: #FDFCFB;
  --gold: #D4A574;
  --gold-light: #FFF3E8;

  /* Semantic */
  --color-primary: var(--coral);
  --color-primary-light: var(--coral-light);
  --color-secondary: var(--mint);
  --color-secondary-light: var(--mint-light);
  --color-text: var(--charcoal);
  --color-text-muted: var(--charcoal-light);
  --color-border: #E8E4E0;
  --color-bg: var(--warm-white);
  --color-bg-alt: var(--cream);
  --color-sponsor: var(--gold);
  --color-sponsor-light: var(--gold-light);

  /* Typography */
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --nav-height: 72px;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 20px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(45, 52, 54, 0.06);
  --shadow-md: 0 4px 16px rgba(45, 52, 54, 0.08);
  --shadow-lg: 0 8px 32px rgba(45, 52, 54, 0.1);
  --shadow-xl: 0 16px 48px rgba(45, 52, 54, 0.12);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-base: 0.3s var(--ease-out);
  --transition-slow: 0.5s var(--ease-out);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--coral-dark);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
}

.heading-xl {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.heading-lg {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

.heading-md {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
}

.heading-sm {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.7;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.5;
}

.text-muted {
  color: var(--color-text-muted);
}

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

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark .text-muted {
  color: var(--slate);
}

.section-coral {
  background: var(--coral);
  color: var(--white);
}

.section-coral h2,
.section-coral h3 {
  color: var(--white);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 var(--space-md);
  transition: background var(--transition-base), backdrop-filter var(--transition-base), box-shadow var(--transition-base);
}

.nav.scrolled {
  background: rgba(253, 252, 251, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-brand:hover {
  color: var(--coral);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.01em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width var(--transition-base);
}

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

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

.nav-links a.active {
  color: var(--coral);
}

.nav-saved {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--coral-light);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--coral) !important;
}

.nav-saved::after {
  display: none !important;
}

.nav-saved:hover {
  background: var(--coral);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--coral-dark);
  color: var(--white);
  border-color: var(--coral-dark);
}

.btn-primary:hover {
  background: #A8402B;
  border-color: #A8402B;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border: 1px solid var(--color-border);
}

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

.card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.04);
}

.card-body {
  padding: var(--space-md);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--charcoal);
}

.card-title a {
  color: inherit;
  text-decoration: none;
}

.card-title a:hover {
  color: var(--coral);
}

.card-text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* --- Vendor Card Specific --- */
.vendor-card {
  position: relative;
}

.vendor-card .card-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.vendor-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-premiere {
  background: var(--gold-light);
  color: #8B6508;
}

.badge-featured {
  background: var(--coral-light);
  color: var(--coral-dark);
}

.badge-sponsored {
  background: var(--mint-light);
  color: var(--mint-dark);
}

.vendor-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--space-xs);
}

.vendor-services span {
  font-size: 0.75rem;
  padding: 3px 10px;
  background: var(--cream);
  border-radius: 100px;
  color: var(--color-text-muted);
}

.vendor-heart {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  z-index: 2;
  border: none;
  font-size: 1rem;
}

.vendor-heart:hover,
.vendor-heart.saved {
  background: var(--coral);
  color: var(--white);
  transform: scale(1.1);
}

/* --- Category Cards --- */
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
  text-decoration: none;
  color: var(--charcoal);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--coral);
  color: var(--charcoal);
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  transition: background var(--transition-fast);
}

.category-card:hover .category-icon {
  background: var(--coral);
  color: var(--white);
}

.category-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-2xs);
}

.category-card p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* --- Location Cards --- */
.location-card {
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
}

.location-card:hover {
  border-color: var(--coral);
  box-shadow: var(--shadow-md);
}

.location-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.location-card h3 a {
  color: var(--charcoal);
  text-decoration: none;
}

.location-card h3 a:hover {
  color: var(--coral);
}

.location-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.location-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.location-highlights span {
  font-size: 0.75rem;
  padding: 3px 10px;
  background: var(--mint-light);
  color: var(--mint-dark);
  border-radius: 100px;
}

/* --- Hero --- */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
  margin-bottom: var(--space-sm);
}

.hero h1 {
  margin-bottom: var(--space-md);
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  z-index: 1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/hero-smash-cake.webp') center/cover no-repeat;
  opacity: 0.85;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to right, var(--color-bg), transparent);
  z-index: 1;
}

/* --- Stats Bar --- */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  padding: var(--space-lg) 0;
  flex-wrap: wrap;
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: var(--space-2xs);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* --- Grid Layouts --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.grid-vendors {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-md);
}

.grid-locations {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  padding-top: calc(var(--nav-height) + var(--space-lg));
}

.breadcrumbs a {
  color: var(--color-text-muted);
}

.breadcrumbs a:hover {
  color: var(--coral);
}

.breadcrumbs .separator {
  color: var(--slate);
}

/* --- Vendor Detail --- */
.vendor-detail-header {
  padding-top: calc(var(--nav-height) + var(--space-lg));
  padding-bottom: var(--space-lg);
}

.vendor-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.vendor-detail-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-md));
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.sidebar-card h3 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-border);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.9rem;
}

.contact-list a {
  color: var(--charcoal);
  word-break: break-all;
}

.contact-list a:hover {
  color: var(--coral);
}

/* --- Premiere Banner --- */
.premiere-banner {
  background: linear-gradient(135deg, var(--gold-light) 0%, #FFF8F0 100%);
  border: 2px solid var(--gold);
  border-radius: var(--border-radius);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.premiere-banner-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.premiere-banner h3 {
  font-size: 1rem;
  color: #B8860B;
  margin-bottom: 4px;
}

.premiere-banner p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* --- Forms --- */
.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
  color: var(--charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  background: var(--white);
  color: var(--charcoal);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px var(--coral-light);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.form-full {
  grid-column: 1 / -1;
}

/* --- Footer --- */
.footer {
  background: var(--charcoal);
  color: var(--slate);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
  max-width: 300px;
}

.footer h4,
.footer .footer-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-links a {
  color: var(--slate);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--coral);
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--slate);
}

.footer-bottom a:hover {
  color: var(--coral);
}

/* --- Start Here Page --- */
.start-here-step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content {
  flex: 1;
  min-width: 0;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: var(--space-md);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: var(--space-xs);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.info-box {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: var(--space-lg);
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-item strong {
  font-size: 0.95rem;
}

.info-item span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-hero .a1 { animation-delay: 0.1s; }
.anim-hero .a2 { animation-delay: 0.2s; }
.anim-hero .a3 { animation-delay: 0.35s; }
.anim-hero .a4 { animation-delay: 0.5s; }

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

.anim-hero > * {
  opacity: 0;
  animation: fadeInUp 0.7s var(--ease-out) forwards;
}

/* --- Page Header (Inner Pages) --- */
.page-header {
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-xl);
  background: var(--cream);
  text-align: center;
}

.page-header h1 {
  margin-bottom: var(--space-sm);
}

.page-header p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Sponsor CTA Section --- */
.sponsor-cta {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a2e 100%);
  padding: var(--space-xl) 0;
  text-align: center;
}

.sponsor-cta h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.sponsor-cta p {
  color: var(--slate);
  margin-bottom: var(--space-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Tags & Pills --- */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.tag-coral {
  background: var(--coral-light);
  color: #9A4530;
}

.tag-mint {
  background: var(--mint-light);
  color: var(--mint-dark);
}

.tag-gold {
  background: var(--gold-light);
  color: #8B6508;
}

/* --- Filter Bar --- */
.filter-bar {
  display: flex;
  align-items: flex-end;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.filter-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.filter-select {
  padding: 10px 36px 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23636E72'/%3E%3C/svg%3E") no-repeat right 12px center;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  min-width: 180px;
  transition: border-color var(--transition-fast);
}

.filter-select:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px var(--coral-light);
}

.filter-select:hover {
  border-color: var(--charcoal-light);
}

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

  .vendor-detail-grid {
    grid-template-columns: 1fr;
  }

  .vendor-detail-sidebar {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  :root {
    --space-2xl: 64px;
    --space-3xl: 80px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: var(--white);
    padding: var(--space-lg);
    gap: var(--space-md);
    align-items: flex-start;
  }

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

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: auto;
    padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
  }

  .hero-bg {
    display: none;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

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

  .stats-bar {
    gap: var(--space-lg);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }

  .premiere-banner {
    flex-direction: column;
    text-align: center;
  }

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-select {
    min-width: auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- Start Here Nav Pulse Animation --- */
@keyframes startHerePulse {
  0%, 100% { color: var(--coral); }
  50% { color: var(--charcoal); }
}

.nav-start-here {
  animation: startHerePulse 2s ease-in-out infinite;
  font-weight: 700 !important;
}

.nav-start-here:hover {
  animation: none;
  color: var(--coral) !important;
}

/* --- Guide Page Styles --- */
.guide-section {
  margin-bottom: var(--space-xl);
}

.guide-section h3 {
  margin-top: var(--space-md);
}

.guide-list {
  list-style: none;
  padding: 0;
}

.guide-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  line-height: 1.7;
}

.guide-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
}

.guide-cta {
  background: var(--coral);
  color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--border-radius);
  text-align: center;
  margin-top: var(--space-xl);
}

.guide-cta h2 {
  color: var(--white);
}

.guide-cta p {
  color: rgba(255, 255, 255, 0.9);
}

.guide-cta .btn-primary {
  background: var(--white);
  color: var(--coral);
}

.guide-cta .btn-primary:hover {
  background: var(--cream);
}

.guide-cta .btn-secondary {
  border-color: var(--white);
  color: var(--white);
}

.guide-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.tip-box {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  padding: var(--space-md);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* --- Planning Timeline Checklist --- */
.checklist {
  margin-top: var(--space-md);
}

.checklist-item {
  position: relative;
  padding: var(--space-sm) 0 var(--space-sm) 2.5rem;
  border-bottom: 1px solid var(--cream);
}

.checklist-item:last-child {
  border-bottom: none;
}

.checklist-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 20px;
  height: 20px;
  border: 2px solid var(--coral);
  border-radius: 4px;
  background: var(--white);
}

.checklist-item h3 {
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
  color: var(--charcoal);
}

.checklist-item p {
  margin: 0;
  color: var(--charcoal-light);
  font-size: 0.95rem;
}

/* --- Theme Ideas Page --- */
.theme-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.theme-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--coral);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
}

.theme-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.theme-detail-grid div {
  background: var(--cream);
  padding: var(--space-sm);
  border-radius: var(--border-radius);
}

.theme-detail-grid strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal-light);
  margin-bottom: 0.25rem;
}

.color-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.color-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

/* --- Budget Guide Table --- */
.budget-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.budget-table th,
.budget-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--cream);
}

.budget-table thead th {
  background: var(--charcoal);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.budget-table thead th:first-child {
  border-radius: var(--border-radius) 0 0 0;
}

.budget-table thead th:last-child {
  border-radius: 0 var(--border-radius) 0 0;
}

.budget-table tbody tr:nth-child(even) {
  background: var(--cream);
}

.budget-table .budget-total {
  background: var(--coral-light) !important;
}

.budget-table .budget-total td {
  border-top: 2px solid var(--coral);
  font-size: 1rem;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
