/* ============================================
   VEGAN AMAZING — Design Tokens
   ============================================ */
:root,
[data-theme='light'] {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(2.75rem, 1rem + 6vw, 6.5rem);

  /* Spacing (4px system) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Surfaces — warm cream (brand) */
  --color-bg: #fffdf6;
  --color-surface: #ffffff;
  --color-surface-2: #fdfbf1;
  --color-surface-offset: #f6f1e2;
  --color-surface-offset-2: #efe8d3;
  --color-surface-dynamic: #e8dfc3;
  --color-divider: #e6dfc9;
  --color-border: #dcd2ae;

  /* Text — olive/sage */
  --color-text: #16240f;
  --color-text-muted: #5c6b52;
  --color-text-faint: #97a186;
  --color-text-inverse: #fffdf6;

  /* Primary — forest green (brand) */
  --color-primary: #166b33;
  --color-primary-hover: #0f5226;
  --color-primary-active: #0b3d1c;
  --color-primary-highlight: #d9ead0;

  /* Gold/orange — sunburst accent (brand) */
  --color-gold: #e2870f;
  --color-gold-hover: #c5730b;
  --color-gold-active: #a35f08;
  --color-gold-highlight: #fce6c0;

  /* Warm yellow — badge accent (brand) */
  --color-yellow: #eab000;
  --color-yellow-hover: #cc9900;
  --color-yellow-highlight: #fff2c9;

  /* Semantic (minimal use) */
  --color-success: #166b33;
  --color-success-highlight: #d9ead0;
  --color-error: #a13a2c;
  --color-error-highlight: #f1dcd6;

  /* Radius — friendly, rounded (brand personality) */
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --radius-full: 9999px;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 2px oklch(0.2 0.04 130 / 0.07);
  --shadow-md: 0 6px 18px oklch(0.2 0.04 130 / 0.1);
  --shadow-lg: 0 16px 40px oklch(0.2 0.04 130 / 0.16);

  --content-narrow: 640px;
  --content-default: 1000px;
  --content-wide: 1220px;
  --content-full: 100%;

  --font-display: 'Nunito', 'Segoe UI', sans-serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
}

[data-theme='dark'] {
  --color-bg: #10160c;
  --color-surface: #151d0f;
  --color-surface-2: #182210;
  --color-surface-offset: #1a2513;
  --color-surface-offset-2: #202d17;
  --color-surface-dynamic: #29381c;
  --color-divider: #263219;
  --color-border: #35461f;

  --color-text: #eee9d8;
  --color-text-muted: #a7ae95;
  --color-text-faint: #707a5f;
  --color-text-inverse: #16240f;

  --color-primary: #4fb371;
  --color-primary-hover: #6bc789;
  --color-primary-active: #85d49f;
  --color-primary-highlight: #223a29;

  --color-gold: #f2a83e;
  --color-gold-hover: #f6bc65;
  --color-gold-active: #f8cb87;
  --color-gold-highlight: #40331a;

  --color-yellow: #f2c542;
  --color-yellow-hover: #f5d268;
  --color-yellow-highlight: #423a1c;

  --color-success: #6bc789;
  --color-success-highlight: #223a29;
  --color-error: #d47a68;
  --color-error-highlight: #3c2621;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
  --shadow-md: 0 6px 18px oklch(0 0 0 / 0.35);
  --shadow-lg: 0 16px 40px oklch(0 0 0 / 0.45);
}

/* ============================================
   Base typography
   ============================================ */
body {
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.eyebrow {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.lede {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 60ch;
}

/* ============================================
   Layout helpers
   ============================================ */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.container--narrow {
  max-width: var(--content-narrow);
}
.section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}
.section--tight {
  padding-block: clamp(var(--space-8), 5vw, var(--space-16));
}

.stack {
  display: flex;
  flex-direction: column;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-sm);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  white-space: nowrap;
  min-height: 44px;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn-primary:active {
  background: var(--color-primary-active);
  transform: translateY(0);
}
.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-highlight);
}
.btn-gold {
  background: var(--color-gold);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover {
  background: var(--color-gold-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn-block {
  width: 100%;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(from var(--color-bg) l c h / 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.08);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.header--hidden {
  transform: translateY(-100%);
}
.header--scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-3);
}
.brand-icon {
  height: clamp(38px, 4.4vw, 50px);
  width: auto;
}
.brand-logo-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
}
.brand-wordmark {
  font-family: var(--font-display, 'Nunito', sans-serif);
  font-weight: 900;
  font-size: clamp(1.1rem, 1.1vw + 0.9rem, 1.4rem);
  color: var(--color-text);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav {
  display: none;
  align-items: center;
  gap: var(--space-6);
}
.nav a {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
}
.nav a:hover {
  color: var(--color-primary);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.theme-toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
}
.theme-toggle:hover {
  background: var(--color-surface-offset);
  color: var(--color-text);
}
.mobile-nav-toggle {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text);
}
.mobile-nav-toggle:hover {
  background: var(--color-surface-offset);
}
.header-cta {
  display: none;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }
  .header-cta {
    display: inline-flex;
  }
  .mobile-nav-toggle {
    display: none;
  }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4) var(--space-5) var(--space-6);
  border-top: 1px solid var(--color-divider);
}
.mobile-nav.is-open {
  display: flex;
}
.mobile-nav a {
  padding: var(--space-3) var(--space-2);
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-md);
}
.mobile-nav a:hover {
  background: var(--color-surface-offset);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(var(--space-12), 9vw, var(--space-24));
}
.hero::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 70%;
  background: radial-gradient(
    circle at 30% 20%,
    oklch(from var(--color-gold) l c h / 0.16),
    transparent 60%
  );
  pointer-events: none;
}
.hero-grid {
  display: grid;
  gap: var(--space-10);
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: var(--space-16);
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  font-weight: 800;
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}
.hero h1 {
  font-size: clamp(2.25rem, 1.5rem + 3.2vw, 3.75rem);
  line-height: 1.08;
  margin-bottom: var(--space-5);
}
.hero h1 .accent {
  color: var(--color-primary);
}
.hero-lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 46ch;
  margin-bottom: var(--space-8);
  font-weight: 500;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 700;
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.hero-meta svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.hero-media {
  position: relative;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--color-surface);
}
.hero-ribbon {
  position: absolute;
  top: var(--space-4);
  right: -var(--space-2);
  right: calc(-1 * var(--space-3));
  background: var(--color-gold);
  color: var(--color-text-inverse);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transform: rotate(4deg);
  line-height: 1.25;
  text-align: center;
}
.hero-ribbon small {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  opacity: 0.9;
}

.hero-signup {
  margin-bottom: var(--space-6);
  max-width: 34rem;
}
.hero-signup-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
@media (min-width: 560px) {
  .hero-signup-form {
    flex-direction: row;
  }
}
.hero-signup-input {
  flex: 1;
}
.hero-signup-submit {
  white-space: nowrap;
}
.hero-signup-note {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-3);
}
.hero-signup-note a {
  color: var(--color-primary);
  font-weight: 700;
}
.hero-signup .signup-success {
  margin-top: var(--space-3);
}

/* ============================================
   Trust bar
   ============================================ */
.trust-bar {
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  background: var(--color-surface-offset);
}
.trust-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(2, 1fr);
  padding-block: var(--space-8);
  text-align: center;
}
@media (min-width: 700px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.trust-item svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}
.trust-item span {
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--color-text);
}

/* ============================================
   Section headers
   ============================================ */
.section-head {
  max-width: 640px;
  margin-bottom: var(--space-12);
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head h2 {
  font-size: var(--text-2xl);
  margin-top: var(--space-3);
}
.section-head p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  margin-top: var(--space-3);
}

/* ============================================
   How it works
   ============================================ */
.steps {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 700px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
.step-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
}
.step-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.step-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* ============================================
   Menu preview
   ============================================ */
.menu-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.dish-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-interactive), transform var(--transition-interactive);
}
.dish-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.dish-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-surface-offset);
}
.dish-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dish-tag {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: oklch(from var(--color-bg) l c h / 0.92);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 800;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}
.dish-body {
  padding: var(--space-5);
}
.dish-body h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}
.dish-body p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}
.dish-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-weight: 800;
  font-size: var(--text-sm);
}
.dish-price .sub-price {
  color: var(--color-primary);
}
.dish-price .one-time {
  color: var(--color-text-faint);
  font-weight: 600;
  text-decoration: line-through;
}
.menu-note {
  margin-top: var(--space-8);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 700;
}

/* ============================================
   Service area
   ============================================ */
.service-section {
  background: var(--color-surface-offset);
}
.service-grid {
  display: grid;
  gap: var(--space-10);
  align-items: center;
}
@media (min-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.service-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}
.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-2);
}
.zone-chip {
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  font-weight: 800;
  font-size: var(--text-xs);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
}
.schedule-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding-block: var(--space-3);
  border-top: 1px solid var(--color-divider);
}
.schedule-row:first-of-type {
  border-top: none;
}
.schedule-row svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.schedule-row strong {
  display: block;
  font-size: var(--text-sm);
}
.schedule-row span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================
   Offer / signup
   ============================================ */
.offer-section {
  position: relative;
  overflow: hidden;
}
.offer-card {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-active) 100%
  );
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 6vw, var(--space-16));
  color: var(--color-text-inverse);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.offer-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, oklch(0.9 0.15 90 / 0.18), transparent 55%);
  pointer-events: none;
}
.offer-inner {
  position: relative;
  display: grid;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 900px) {
  .offer-inner {
    grid-template-columns: 1.1fr 1fr;
  }
}
.offer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: oklch(1 0 0 / 0.16);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}
.offer-card h2 {
  color: var(--color-text-inverse);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}
.offer-card p {
  color: oklch(1 0 0 / 0.85);
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}
.offer-fine {
  font-size: var(--text-xs);
  color: oklch(1 0 0 / 0.7);
  margin-top: var(--space-4);
}
.signup-panel {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  color: var(--color-text);
  box-shadow: var(--shadow-md);
}
.signup-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.field-label {
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.field-input {
  width: 100%;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  font-size: var(--text-base);
  min-height: 44px;
}
.field-input:focus-visible {
  border-color: var(--color-primary);
}
.field-error {
  font-size: var(--text-xs);
  color: var(--color-error);
  min-height: 1em;
}
.signup-success {
  display: none;
  align-items: flex-start;
  gap: var(--space-3);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  font-weight: 700;
  font-size: var(--text-sm);
}
.signup-success.is-visible {
  display: flex;
}
.signup-success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.signup-form.is-hidden,
.hero-signup-form.is-hidden {
  display: none;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: var(--content-narrow);
  margin-inline: auto;
}
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5);
  font-weight: 800;
  font-size: var(--text-base);
  text-align: left;
  color: var(--color-text);
}
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-primary);
  transition: transform var(--transition-interactive);
}
.faq-item[data-open='true'] .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer p {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-text);
  color: oklch(1 0 0 / 0.82);
  padding-block: var(--space-16) var(--space-8);
}
[data-theme='dark'] .footer {
  background: #0a0f07;
}
.footer-grid {
  display: grid;
  gap: var(--space-10);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-10);
}
@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}
.footer-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.footer-icon {
  height: 40px;
  width: auto;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: #fffdf6;
  letter-spacing: -0.01em;
}
.footer p {
  font-size: var(--text-sm);
  color: oklch(1 0 0 / 0.65);
  max-width: 40ch;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: oklch(1 0 0 / 0.9);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-4);
}
.footer ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer a {
  font-size: var(--text-sm);
  color: oklch(1 0 0 / 0.7);
  text-decoration: none;
}
.footer a:hover {
  color: var(--color-yellow);
}
.footer-bottom {
  border-top: 1px solid oklch(1 0 0 / 0.12);
  padding-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: space-between;
  font-size: var(--text-xs);
  color: oklch(1 0 0 / 0.55);
}

/* ============================================
   Utility
   ============================================ */
.gradient-divider {
  height: 6px;
  background: linear-gradient(90deg, #166b33, #2e9e45, #8cc63f, #ffc93c);
}
