
/* BiteSpaces Premium Design System - Senior Designer Standards */
/* Following $50k+ website design principles: psychology, conversion, premium feel */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Clean Professional Color Palette - Senior Designer Standards */
  --primary-navy: #1E293B;
  --primary-blue: #3B82F6;
  --accent-orange: #FF6B35; /* Reserved for buttons only - highest CTR color */
  --accent-warm: #F59E0B; /* Warmer amber for highlights */
  --accent-coral: #FE7A36; /* Coral variant for non-button elements */
  --success-green: #10B981;
  --error-red: #EF4444;

  /* Advanced Neutral Scale - Perfect Contrast */
  --white: #FFFFFF;
  --neutral-50: #F8FAFC;
  --neutral-100: #F1F5F9;
  --neutral-200: #E2E8F0;
  --neutral-300: #CBD5E1;
  --neutral-400: #94A3B8;
  --neutral-500: #64748B;
  --neutral-600: #475569;
  --neutral-700: #334155;
  --neutral-800: #1E293B;
  --neutral-900: #0F172A;

  /* Premium Typography Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  --text-8xl: 6rem;

  /* Professional Spacing - 4px Grid */
  --space-px: 1px;
  --space-0-5: 0.125rem;
  --space-1: 0.25rem;
  --space-1-5: 0.375rem;
  --space-2: 0.5rem;
  --space-2-5: 0.625rem;
  --space-3: 0.75rem;
  --space-3-5: 0.875rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 1.75rem;
  --space-8: 2rem;
  --space-9: 2.25rem;
  --space-10: 2.5rem;
  --space-11: 2.75rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-28: 7rem;
  --space-32: 8rem;
  --space-36: 9rem;
  --space-40: 10rem;
  --space-44: 11rem;
  --space-48: 12rem;
  --space-52: 13rem;
  --space-56: 14rem;
  --space-60: 15rem;
  --space-64: 16rem;
  --space-72: 18rem;
  --space-80: 20rem;
  --space-96: 24rem;

  /* Premium Border Radius */
  --radius-none: 0px;
  --radius-sm: 0.125rem;
  --radius: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;

  /* Advanced Shadow System */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  --shadow-premium: 0 32px 64px -12px rgba(0, 0, 0, 0.25);

  /* No gradients - clean solid colors only */

  /* Animation - Premium Easing */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-premium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Premium Breakpoints */
  --screen-sm: 640px;
  --screen-md: 768px;
  --screen-lg: 1024px;
  --screen-xl: 1280px;
  --screen-2xl: 1536px;
}

/* Global Reset - Premium Foundation */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: var(--neutral-200);
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-feature-settings: normal;
  font-variation-settings: normal;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  line-height: inherit;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--neutral-900);
  background-color: var(--neutral-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

/* Premium Typography Hierarchy */
.display-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.25;
  color: var(--neutral-900);
  letter-spacing: -0.025em;
}

h1 { 
  font-size: var(--text-5xl); 
  font-weight: 800; 
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h2 { 
  font-size: var(--text-4xl); 
  font-weight: 700; 
  line-height: 1.2;
}
h3 { 
  font-size: var(--text-3xl); 
  font-weight: 600; 
}
h4 { 
  font-size: var(--text-2xl); 
  font-weight: 600; 
}
h5 { 
  font-size: var(--text-xl); 
  font-weight: 500; 
}
h6 { 
  font-size: var(--text-lg); 
  font-weight: 500; 
}

p {
  margin: 0 0 var(--space-4) 0;
  color: var(--neutral-700);
  line-height: 1.7;
}

.lead {
  font-size: var(--text-xl);
  font-weight: 300;
  line-height: 1.6;
  color: var(--neutral-600);
}

/* Premium Navigation */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--neutral-200);
  z-index: 1000;
  transition: all var(--transition-base);
}

.sticky-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--primary-navy);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.nav-logo:hover {
  color: var(--primary-blue);
  transform: translateY(-1px);
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: var(--space-8);
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--neutral-700);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: var(--primary-blue);
  background-color: var(--neutral-100);
}

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

.auth-buttons {
  display: flex;
  gap: var(--space-3);
  align-items: center;
}

.nav-cta {
  background: var(--accent-orange) !important;
  color: white !important;
  padding: var(--space-3) var(--space-6) !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600;
  font-size: var(--text-sm);
  transition: all var(--transition-premium);
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.nav-cta:hover {
  background: #E55A2B !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.nav-cta:hover::before {
  left: 100%;
}

/* Premium Hero Section */
.hero-landscape {
  min-height: 100vh;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  padding: var(--space-32) var(--space-6) var(--space-20);
  position: relative;
  overflow: hidden;
}

.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('attached_assets/Community Fun and Food Festival_1754994444108.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.08;
  z-index: 0;
}

.hero-landscape::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  z-index: 1;
}

.hero-content-overlay-sky {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  z-index: 2;
  position: relative;
}

.hero-content-center {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero-title-landscape {
  font-family: 'Playfair Display', serif;
  font-size: clamp(var(--text-4xl), 6vw, var(--text-7xl));
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: var(--space-6);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle-landscape {
  font-size: var(--text-xl);
  color: var(--neutral-600);
  margin-bottom: var(--space-12);
  line-height: 1.6;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Premium Search Interface */
.airbnb-search-container {
  background: var(--white);
  border-radius: var(--radius-3xl);
  padding: var(--space-3);
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--neutral-200);
  max-width: 1000px;
  margin: var(--space-12) auto 0;
  position: relative;
}

.airbnb-search-container::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-3xl);
  padding: 1px;
  background: linear-gradient(135deg, var(--primary-blue), var(--success-green));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.3;
}

.search-form-airbnb {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 2px;
  background: var(--neutral-100);
  border-radius: var(--radius-2xl);
}

.search-field {
  background: var(--white);
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  transition: all var(--transition-premium);
  cursor: pointer;
}

.search-field:first-child {
  border-radius: var(--radius-2xl) 0 0 var(--radius-2xl);
}

.search-field:nth-child(4) {
  border-radius: 0 var(--radius-2xl) var(--radius-2xl) 0;
}

.search-field:hover {
  background: var(--neutral-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.search-field label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--neutral-900);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-1);
}

.search-field input,
.search-field select {
  border: none;
  outline: none;
  background: transparent;
  font-size: var(--text-base);
  color: var(--neutral-900);
  font-weight: 500;
  width: 100%;
}

.search-field input::placeholder {
  color: var(--neutral-400);
  font-weight: 400;
}

.search-button-airbnb {
  background: var(--accent-orange);
  color: white;
  border: none;
  border-radius: var(--radius-2xl);
  padding: var(--space-5) var(--space-8);
  font-weight: 700;
  font-size: var(--text-base);
  cursor: pointer;
  transition: all var(--transition-premium);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  position: relative;
  overflow: hidden;
}

.search-button-airbnb::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.search-button-airbnb:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.search-button-airbnb:hover::before {
  left: 100%;
}

/* Premium Button System */
.btn, .hero-cta, .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-base);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-premium);
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}

.btn-primary, .hero-cta:not(.secondary), .cta-button {
  background: var(--accent-orange);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary::before, .hero-cta:not(.secondary)::before, .cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.btn-primary:hover, .hero-cta:not(.secondary):hover, .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-primary:hover::before, .hero-cta:not(.secondary):hover::before, .cta-button:hover::before {
  left: 100%;
}

.btn-secondary, .hero-cta.secondary {
  background: var(--white);
  color: var(--accent-orange);
  border: 2px solid var(--accent-orange);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover, .hero-cta.secondary:hover {
  background: var(--accent-orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-large {
  padding: var(--space-5) var(--space-12);
  font-size: var(--text-lg);
  font-weight: 700;
}

/* Premium Card System */
.card, .bento-card, .featured-space-card {
  background: var(--white);
  border-radius: var(--radius-3xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-200);
  transition: all var(--transition-premium);
  position: relative;
  overflow: hidden;
}

.card::before, .bento-card::before, .featured-space-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--neutral-700);
  transform: scaleX(0);
  transition: transform var(--transition-premium);
  transform-origin: left;
}

.card:hover, .bento-card:hover, .featured-space-card:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-8px);
  border-color: var(--neutral-300);
}

.card:hover::before, .bento-card:hover::before, .featured-space-card:hover::before {
  transform: scaleX(1);
}

/* Featured Spaces Enhancement */
.featured-space-card {
  cursor: pointer;
  background: var(--white);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-200);
  transition: all var(--transition-premium);
}

.featured-space-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

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

.featured-space-card:hover .featured-space-image img {
  transform: scale(1.05);
}

.featured-space-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: rgba(255, 255, 255, 0.95);
  color: var(--neutral-900);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.featured-space-content {
  padding: var(--space-6);
}

.featured-space-content h4 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.featured-space-content .location,
.featured-space-content .event {
  color: var(--neutral-600);
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.space-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--neutral-200);
}

.space-footer .price {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--accent-warm);
}

.space-footer .attendees {
  font-size: var(--text-sm);
  color: var(--neutral-500);
  font-weight: 500;
}

/* Grid Systems */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.bento-grid, .featured-spaces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: var(--space-8);
  margin: var(--space-16) 0;
}

/* Premium Story Sections */
.story-section {
  padding: var(--space-32) var(--space-8);
  background: var(--white);
  margin: var(--space-24) 0;
  position: relative;
}

.story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--primary-navy);
}

.story-half-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.story-half-half.reverse {
  direction: rtl;
}

.story-half-half.reverse > * {
  direction: ltr;
}

.story-content h2 {
  text-align: left;
  margin-bottom: var(--space-8);
  font-family: 'Playfair Display', serif;
  font-size: var(--text-4xl);
  line-height: 1.2;
}

.story-content p {
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.story-image {
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  position: relative;
}

.story-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-3xl);
  padding: 2px;
  background: linear-gradient(135deg, var(--primary-blue), var(--success-green));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.6;
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-premium);
}

.story-image:hover img {
  transform: scale(1.02);
}

/* Premium Statistics */
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.stat {
  text-align: center;
  padding: var(--space-8);
  background: var(--gradient-light);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--neutral-200);
  transition: all var(--transition-premium);
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #B45309;
  transform: scaleX(0);
  transition: transform var(--transition-premium);
}

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

.stat:hover::before {
  transform: scaleX(1);
}

.stat-number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--accent-warm);
  margin-bottom: var(--space-2);
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--neutral-600);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Premium Footer */
footer {
  background: var(--primary-navy);
  color: var(--neutral-300);
  padding: var(--space-24) var(--space-8) var(--space-16);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--neutral-600);
}

footer a {
  color: var(--neutral-300);
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
}

footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-blue);
  transition: width var(--transition-fast);
}

footer a:hover {
  color: var(--white);
}

footer a:hover::after {
  width: 100%;
}

/* Mobile Optimization */
.hamburger {
  display: none;
  flex-direction: column;
  gap: var(--space-1);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--neutral-700);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Profile Management */
.profile-container {
  position: relative;
}

.nav-profile {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--accent-orange);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  transition: all var(--transition-premium);
  border: 2px solid transparent;
}

.nav-profile:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.profile-dropdown {
  position: absolute;
  top: calc(100% + var(--space-3));
  right: 0;
  min-width: 300px;
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--neutral-200);
  padding: var(--space-6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-premium);
  z-index: 1000;
}

.profile-container:hover .profile-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Form Elements */
input, select, textarea {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  border: 2px solid var(--neutral-300);
  border-radius: var(--radius-xl);
  font-size: var(--text-base);
  font-family: inherit;
  transition: all var(--transition-fast);
  background: var(--white);
  font-weight: 400;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
  transform: translateY(-1px);
}

/* Loading States */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--neutral-200);
  border-top: 4px solid var(--primary-blue);
  border-radius: var(--radius-full);
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Empty States */
.empty-state {
  text-align: center;
  padding: var(--space-24);
  background: var(--white);
  border-radius: var(--radius-3xl);
  border: 2px dashed var(--neutral-300);
  margin: var(--space-16) 0;
  transition: all var(--transition-fast);
}

.empty-state:hover {
  border-color: var(--primary-blue);
  background: var(--neutral-50);
}

.empty-state h3 {
  color: var(--neutral-600);
  margin-bottom: var(--space-4);
  font-size: var(--text-2xl);
}

.empty-state p {
  color: var(--neutral-500);
  margin-bottom: var(--space-8);
  font-size: var(--text-lg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-8);
    box-shadow: var(--shadow-2xl);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-premium);
    border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hero-landscape {
    padding: var(--space-24) var(--space-6);
    text-align: center;
  }

  .search-form-airbnb {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .search-field {
    border-radius: var(--radius-xl) !important;
  }

  .story-half-half {
    grid-template-columns: 1fr;
    gap: var(--space-16);
  }

  .story-stats {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .bento-grid, .featured-spaces-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .container {
    padding: 0 var(--space-6);
  }
}

/* Animation Keyframes */
@keyframes fadeIn {
  from { 
    opacity: 0; 
    transform: translateY(30px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes slideIn {
  from { 
    opacity: 0; 
    transform: translateX(-30px); 
  }
  to { 
    opacity: 1; 
    transform: translateX(0); 
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.slide-in {
  animation: slideIn 0.6s ease-out forwards;
}

/* High Performance Optimizations */
.will-change-transform {
  will-change: transform;
}

.will-change-opacity {
  will-change: opacity;
}

/* ============================================
   ACCESSIBILITY FOUNDATIONS
   ============================================ */

/* Skip-to-content link */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--primary-blue);
  color: white;
  padding: var(--space-4) var(--space-8);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  font-weight: 600;
  font-size: var(--text-base);
  z-index: 10000;
  transition: top 0.2s ease;
  text-decoration: none;
}

.skip-to-content:focus {
  top: 0;
  outline: 3px solid var(--accent-orange);
  outline-offset: 2px;
}

/* Focus-visible outlines - accessible keyboard navigation */
*:focus-visible {
  outline: 3px solid var(--primary-blue);
  outline-offset: 3px;
  border-radius: var(--radius-md);
}

.btn:focus-visible,
.nav-cta:focus-visible,
.search-button-airbnb:focus-visible,
.cta-button:focus-visible {
  outline: 3px solid var(--primary-navy);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.25);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--primary-blue);
  outline-offset: 0;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

/* Minimum 44px touch targets (WCAG 2.1 AAA) */
.nav-links a,
.btn,
.nav-cta,
.cta-button,
.hero-cta,
details summary {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
}

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

/* High contrast */
@media (prefers-contrast: high) {
  :root {
    --neutral-100: #ffffff;
    --neutral-900: #000000;
    --accent-orange: #FF4500;
    --primary-blue: #0066CC;
  }
  .card, .bento-card, .featured-space-card, .how-it-works-card {
    border-width: 2px;
    border-color: var(--neutral-900);
  }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.19s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.26s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.33s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.40s; }

.stagger-children.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* How It Works Section Styles */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: var(--space-8);
  margin: var(--space-16) 0;
}

.how-it-works-card {
  background: var(--white);
  border-radius: var(--radius-3xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-200);
  transition: all var(--transition-premium);
  position: relative;
  overflow: hidden;
}

.how-it-works-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--neutral-700);
  transform: scaleX(0);
  transition: transform var(--transition-premium);
  transform-origin: left;
}

.how-it-works-card:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-8px);
  border-color: var(--neutral-300);
}

.how-it-works-card:hover::before {
  transform: scaleX(1);
}

.how-it-works-wide {
  grid-column: span 2;
}

.step-number {
  position: absolute;
  top: -15px;
  right: 15px;
  width: 50px;
  height: 50px;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-xl);
  box-shadow: var(--shadow-md);
}

.benefits-grid {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

.benefit-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: var(--space-4);
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
}

/* Mobile Optimization for How It Works */
@media (max-width: 768px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .how-it-works-wide {
    grid-column: span 1;
  }
  
  .how-it-works-card {
    padding: var(--space-6);
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: var(--text-lg);
    top: -12px;
    right: 12px;
  }
  
  .benefits-grid {
    flex-direction: column;
    gap: var(--space-3);
  }
  
  .benefit-item {
    min-width: auto;
    padding: var(--space-3);
  }
  
  .how-it-works-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
  }
  
  .how-it-works-card p {
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
  }
}

@media (max-width: 480px) {
  .how-it-works-card {
    padding: var(--space-4);
  }
  
  .how-it-works-card h3 svg {
    width: 20px;
    height: 20px;
  }
  
  .benefit-item svg {
    width: 28px;
    height: 28px;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: var(--text-base);
    top: -10px;
    right: 10px;
  }
}

/* Print Styles */
@media print {
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
  
  .nav, .hero, .search-form-airbnb {
    display: none;
  }
}

/* Page-Specific Enhancements */
.dashboard-page {
  background: var(--neutral-50);
  min-height: 100vh;
}

.search-results-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-6);
  margin-top: 80px;
}

.search-header {
  background: var(--white);
  padding: var(--space-20);
  border-radius: var(--radius-3xl);
  margin-bottom: var(--space-16);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-200);
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}

.listing-card {
  background: var(--white);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-200);
  transition: all var(--transition-premium);
  cursor: pointer;
}

.listing-card:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-8px);
  border-color: var(--neutral-300);
}

.listing-image {
  height: 240px;
  overflow: hidden;
}

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

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

.listing-info {
  padding: var(--space-8);
}

.listing-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.listing-location {
  color: var(--neutral-600);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.listing-price {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--accent-warm);
  margin-bottom: var(--space-2);
}

/* Dashboard Enhancements */
.admin-stats, .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
  margin: var(--space-12) 0;
}

.stat-card {
  background: var(--white);
  padding: var(--space-10);
  border-radius: var(--radius-3xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-200);
  transition: all var(--transition-premium);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--neutral-700);
  transform: scaleX(0);
  transition: transform var(--transition-premium);
}

.stat-card:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-6px);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.data-table {
  background: var(--white);
  border-radius: var(--radius-3xl);
  padding: var(--space-10);
  margin: var(--space-12) 0;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-200);
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

th, td {
  padding: var(--space-4) var(--space-6);
  text-align: left;
  border-bottom: 1px solid var(--neutral-200);
}

th {
  font-weight: 700;
  color: var(--neutral-700);
  background: var(--neutral-50);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: var(--text-xs);
}

tr:hover {
  background: var(--neutral-50);
}

/* Form Page Enhancements */
.form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-8);
  margin-top: 100px;
}

.form-section {
  background: var(--white);
  border-radius: var(--radius-3xl);
  padding: var(--space-10);
  margin-bottom: var(--space-8);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-200);
}

.form-section h3 {
  color: var(--neutral-900);
  margin-bottom: var(--space-6);
  font-size: var(--text-2xl);
  font-weight: 700;
}

.form-group {
  margin-bottom: var(--space-6);
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
}

/* Success/Error States */
.success-message {
  background: var(--success-green);
  color: white;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-6);
  font-weight: 500;
}

.error-message {
  background: var(--error-red);
  color: white;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-6);
  font-weight: 500;
}

/* Premium Notification System */
.notification {
  position: fixed;
  top: 100px;
  right: var(--space-6);
  background: var(--white);
  color: var(--neutral-900);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--neutral-200);
  z-index: 10000;
  transform: translateX(400px);
  transition: all var(--transition-premium);
  max-width: 350px;
  font-weight: 500;
  font-size: var(--text-sm);
}

.notification.success {
  border-left: 4px solid var(--success-green);
}

.notification.error {
  border-left: 4px solid var(--error-red);
}

.notification.info {
  border-left: 4px solid var(--primary-blue);
}

.notification.show {
  transform: translateX(0);
}

/* ============================================
   IMPROVED SUB-PAGE HERO
   ============================================ */
.hero {
  background: var(--primary-navy);
  color: white;
  padding: var(--space-40) var(--space-8) var(--space-20);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 60%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--neutral-50), transparent);
  z-index: 1;
}

.hero h1 {
  color: white;
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-xl);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* ============================================
   IMPROVED FAQ ACCORDION
   ============================================ */
details.faq-item {
  background: var(--white);
  padding: 0;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--neutral-200);
  overflow: hidden;
  transition: all var(--transition-premium);
  box-shadow: var(--shadow-sm);
}

details.faq-item:hover {
  border-color: var(--neutral-300);
  box-shadow: var(--shadow-md);
}

details.faq-item[open] {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 1px var(--primary-blue), var(--shadow-md);
}

details.faq-item summary {
  padding: var(--space-6) var(--space-8);
  color: var(--neutral-800);
  font-weight: 600;
  cursor: pointer;
  font-size: var(--text-base);
  line-height: 1.5;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  transition: background var(--transition-fast);
  min-height: 60px;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary::after {
  content: '+';
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--neutral-400);
  transition: transform var(--transition-base), color var(--transition-base);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--neutral-100);
}

details.faq-item[open] summary::after {
  content: '\2212';
  transform: rotate(180deg);
  background: var(--primary-blue);
  color: white;
}

details.faq-item summary:hover {
  background: var(--neutral-50);
}

details.faq-item .faq-answer {
  padding: 0 var(--space-8) var(--space-8);
  color: var(--neutral-600);
  line-height: 1.8;
  font-size: var(--text-base);
  border-top: 1px solid var(--neutral-100);
  margin-top: 0;
  animation: faqExpand 0.3s ease-out;
}

@keyframes faqExpand {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   SECTION DIVIDERS
   ============================================ */
.section-divider {
  width: 60px;
  height: 4px;
  background: var(--primary-blue);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-8);
}

.section-divider-left {
  width: 60px;
  height: 4px;
  background: var(--primary-blue);
  border-radius: var(--radius-full);
  margin: 0 0 var(--space-8);
}

/* ============================================
   GLASSMORPHISM CARDS
   ============================================ */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-3xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-premium);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-2xl);
  transform: translateY(-4px);
}

/* ============================================
   IMPROVED SPACING UTILITIES
   ============================================ */
.section-spacing {
  padding: var(--space-24) 0;
}

.section-spacing-lg {
  padding: var(--space-32) 0;
}

.content-gap {
  margin-bottom: var(--space-8);
}

.content-gap-lg {
  margin-bottom: var(--space-16);
}

/* Better readability for long-form content */
.readable-width {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Accessible spacing between interactive elements */
.button-group {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  align-items: center;
}

/* Form label to input spacing */
.form-group label {
  margin-bottom: var(--space-3);
}

.form-group {
  margin-bottom: var(--space-8);
}

/* ============================================
   GRADIENT TEXT UTILITY
   ============================================ */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   BADGE / TAG SYSTEM
   ============================================ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1-5) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.tag-blue {
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-blue);
}

.tag-orange {
  background: rgba(255, 107, 53, 0.1);
  color: var(--accent-orange);
}

.tag-green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success-green);
}

/* ============================================
   FLOATING DOTS PATTERN (DECORATIVE)
   ============================================ */
.dot-pattern {
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, var(--neutral-300) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

/* ============================================
   MOBILE SPACING IMPROVEMENTS
   ============================================ */
@media (max-width: 768px) {
  .hero {
    padding: var(--space-32) var(--space-6) var(--space-16);
  }

  .hero h1 {
    font-size: var(--text-3xl);
  }

  .hero p {
    font-size: var(--text-lg);
  }

  .story-section {
    padding: var(--space-20) var(--space-6);
    margin: var(--space-16) 0;
  }

  footer {
    padding: var(--space-16) var(--space-6) var(--space-12);
  }

  .section-spacing {
    padding: var(--space-16) 0;
  }

  .section-spacing-lg {
    padding: var(--space-20) 0;
  }

  details.faq-item summary {
    padding: var(--space-5) var(--space-6);
    font-size: var(--text-sm);
  }

  details.faq-item .faq-answer {
    padding: 0 var(--space-6) var(--space-6);
    font-size: var(--text-sm);
  }

  .form-container {
    padding: var(--space-6);
    margin-top: 90px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: var(--space-28) var(--space-5) var(--space-12);
  }

  .container {
    padding: 0 var(--space-5);
  }

  .story-section {
    padding: var(--space-16) var(--space-5);
  }

  footer {
    padding: var(--space-12) var(--space-5) var(--space-10);
  }
}
