/* ─────────────────────────────────────────────────────────────────
   LunchOnLine.us Landing Page Styles
   Professional, Modern, and Robust Design
   ───────────────────────────────────────────────────────────────── */

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

/* ─── CSS Variables ───────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --primary-50: #FFF8ED;
  --primary-100: #FFEDCC;
  --primary-200: #FEDD99;
  --primary-300: #FDC866;
  --primary-400: #FAB340;
  --primary-500: #F89D1A;
  --primary-600: #E08A0F;
  --primary-700: #B86D0A;
  --primary-800: #8F5408;
  --primary-900: #6B3F06;
  
  /* Secondary Colors */
  --secondary-50: #FAF5EF;
  --secondary-100: #F2E8D9;
  --secondary-200: #E5CEB2;
  --secondary-300: #D4AD84;
  --secondary-400: #C08D5E;
  --secondary-500: #8A5728;
  --secondary-600: #7A4D22;
  --secondary-700: #63401D;
  --secondary-800: #4D3118;
  --secondary-900: #3A2614;
  
  /* Neutral Colors */
  --neutral-50: #FDFBF8;
  --neutral-100: #FAF6F0;
  --neutral-200: #F5EDE0;
  --neutral-300: #E8DCCF;
  --neutral-400: #D4C4B0;
  --neutral-500: #B8A48E;
  --neutral-600: #9A8570;
  --neutral-700: #7A6A58;
  --neutral-800: #5C5044;
  --neutral-900: #3A322A;
  --neutral-950: #1F1B16;
  
  /* Background */
  --bg-light: #FDFCF8;
  --bg-cream: #FFF5E6;
  
  /* Text */
  --text-dark: #3A2A1F;
  --text-light: #FFFFFF;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(138, 87, 40, 0.08);
  --shadow: 0 4px 12px rgba(138, 87, 40, 0.10);
  --shadow-md: 0 6px 20px rgba(138, 87, 40, 0.12);
  --shadow-lg: 0 12px 32px rgba(138, 87, 40, 0.15);
  --shadow-xl: 0 20px 48px rgba(138, 87, 40, 0.18);
  --shadow-warm: 0 4px 20px rgba(248, 157, 26, 0.25);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Spacing */
  --container-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

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

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

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

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

/* ─── Container ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

/* ─── Hero Section ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #4d3118 0%, #8a5728 40%, #c08a10 80%, #f8b500 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.floating-food {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.15;
  filter: blur(0.5px);
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.food-1 { top: 10%; right: 15%; animation-delay: 0s; }
.food-2 { top: 20%; left: 10%; animation-delay: 1s; font-size: 2rem; }
.food-3 { bottom: 25%; right: 20%; animation-delay: 2s; }
.food-4 { bottom: 20%; left: 15%; animation-delay: 3s; font-size: 2rem; }
.food-5 { top: 40%; right: 8%; animation-delay: 4s; font-size: 1.75rem; }
.food-6 { bottom: 40%; left: 8%; animation-delay: 5s; font-size: 1.75rem; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 4rem 0;
  animation: fadeInUp 1s ease-out;
}

.logo-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.logo {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: logoPulse 3s ease-in-out infinite;
}

.logo svg,
.logo img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 24px rgba(248, 157, 26, 0.4));
}

.logo-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(248, 157, 26, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-title {
  margin-bottom: 1.5rem;
}

.brand-name {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #F8B500;
  text-shadow: 0 2px 20px rgba(248, 181, 0, 0.3);
  margin-bottom: 0.5rem;
}

.tagline {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 500;
  color: white;
  font-size: 0.9375rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px #22C55E;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  animation: bounce 2s ease-in-out infinite;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { top: 8px; opacity: 1; }
  50% { top: 20px; opacity: 0.3; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
}

.wave-bottom svg {
  width: 100%;
  height: 100%;
}

/* ─── Stats Bar ─────────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-light);
  padding: 2rem 0;
  border-bottom: 1px solid var(--neutral-200);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.stat-item {
  text-align: center;
  padding: 0.5rem;
}

.stat-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-600);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--neutral-600);
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--neutral-300);
}

@media (max-width: 768px) {
  .stat-divider {
    display: none;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .stat-item {
    padding: 0;
  }
}

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

.section-header.light {
  color: white;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-600);
  margin-bottom: 1rem;
}

.section-header.light .section-eyebrow {
  color: var(--primary-300);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--secondary-800);
  margin-bottom: 1rem;
}

.section-header.light .section-title {
  color: white;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--neutral-600);
  max-width: 600px;
  margin: 0 auto;
}

.section-header.light .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* ─── Features Section ────────────────────────────────────────── */
.features {
  padding: 6rem 0;
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 2px solid var(--neutral-200);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: var(--primary-300);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-card.featured {
  border-color: var(--primary-400);
  box-shadow: var(--shadow-warm);
}

.feature-card.featured:hover {
  border-color: var(--primary-500);
  box-shadow: var(--shadow-xl), var(--shadow-warm);
}

.feature-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 0.75rem;
  border-radius: 100px;
}

.feature-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.feature-icon {
  font-size: 3rem;
  display: block;
  position: relative;
  z-index: 2;
  transition: transform var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.icon-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(248, 157, 26, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover .icon-glow {
  opacity: 1;
}

.feature-title {
  font-size: 1.375rem;
  color: var(--secondary-800);
  margin-bottom: 1rem;
}

.feature-description {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  font-size: 0.9375rem;
  color: var(--neutral-700);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-500);
  font-weight: 700;
}

/* ─── How It Works Section ────────────────────────────────────── */
.how-it-works {
  padding: 6rem 0;
  background: linear-gradient(135deg, #4d3118 0%, #8a5728 50%, #6b4423 100%);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

.step {
  flex: 1;
  text-align: center;
  max-width: 280px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary-500);
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 4px rgba(248, 157, 26, 0.25), var(--shadow-warm);
}

.step-content {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 0.75rem;
}

.step-description {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-400), var(--primary-500));
  margin-top: 24px;
  opacity: 0.5;
  position: relative;
}

.step-connector::after {
  content: "→";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-400);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .step-connector {
    width: 2px;
    height: 40px;
    margin-top: 0;
    background: linear-gradient(180deg, var(--primary-400), var(--primary-500));
  }
  
  .step-connector::after {
    right: 50%;
    top: auto;
    bottom: -10px;
    transform: translateX(50%) rotate(90deg);
  }
}

/* ─── Waitlist Section ────────────────────────────────────────── */
.waitlist {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--bg-cream) 50%, var(--primary-100) 100%);
}

.waitlist-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  background: white;
  border-radius: var(--radius-2xl);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--neutral-200);
}

@media (min-width: 768px) {
  .waitlist-card {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 4rem;
  }
}

.waitlist-content {
  display: flex;
  flex-direction: column;
}

.waitlist-header {
  margin-bottom: 2rem;
}

.waitlist-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-600);
  margin-bottom: 0.75rem;
}

.waitlist-title {
  font-size: 2rem;
  color: var(--secondary-800);
  margin-bottom: 1rem;
}

.waitlist-description {
  font-size: 1.0625rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary-700);
}

.form-group input,
.form-group select {
  padding: 0.875rem 1rem;
  border: 2px solid var(--neutral-300);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--secondary-800);
  background: white;
  transition: all var(--transition);
}

.form-group input::placeholder {
  color: var(--neutral-500);
}

.form-group input:hover,
.form-group select:hover {
  border-color: var(--primary-300);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(248, 157, 26, 0.15);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239A8570' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 2.5rem;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: white;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  margin-top: 0.5rem;
  box-shadow: var(--shadow-warm);
  transition: all var(--transition);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(248, 157, 26, 0.35);
}

.submit-btn:active {
  transform: translateY(0);
}

.btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.submit-btn.loading .btn-text {
  display: none;
}

.submit-btn.loading .btn-loader {
  display: block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border-radius: var(--radius-lg);
  border: 2px solid #10b981;
}

.form-success.show {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: #10b981;
  color: white;
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.form-success h3 {
  font-size: 1.5rem;
  color: #065f46;
  margin-bottom: 0.75rem;
}

.form-success p {
  color: #047857;
  font-size: 1rem;
}

.waitlist-form.hidden {
  display: none;
}

.privacy-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--neutral-500);
  margin-top: auto;
}

.privacy-note svg {
  flex-shrink: 0;
}

.waitlist-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-card {
  background: linear-gradient(135deg, var(--secondary-800), var(--secondary-900));
  color: white;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 320px;
}

.visual-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: rocketFloat 3s ease-in-out infinite;
}

@keyframes rocketFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.visual-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--primary-300);
}

.visual-card ul {
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0;
}

.visual-card li {
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ─── Footer ────────────────────────────────────────────────────── */
.footer {
  background: var(--secondary-900);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .footer-brand {
    align-items: flex-start;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-logo svg,
.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: var(--neutral-400);
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--neutral-300);
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--primary-300);
}

.footer-link svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--neutral-500);
  margin: 0.5rem 0;
}

.made-in {
  color: var(--primary-400);
  font-weight: 500;
}

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