/* =========================================================
   The Corner — Venezuelan Food Truck
   Mobile-first stylesheet
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Color — palette inspired by Venezuelan street food
     - masa cream / corn yellow (arepa)
     - tomato / rust (sofrito, paprika)
     - avocado / cilantro (guasacaca)
     - charcoal (the griddle, the night) */
  --color-bg: #FBF6EC;            /* masa cream */
  --color-surface: #FFFFFF;
  --color-surface-warm: #F4ECDA;  /* toasted corn */
  --color-ink: #1F1A15;           /* charcoal */
  --color-ink-soft: #4A4035;
  --color-muted: #786A58;
  --color-faint: #BAA98A;
  --color-rule: #E5DBC4;

  --color-corn: #F2B544;          /* hero accent — golden masa */
  --color-corn-deep: #D9921C;
  --color-tomato: #C0432A;        /* primary CTA — sofrito red */
  --color-tomato-deep: #8E2C18;
  --color-avocado: #4F7A38;       /* fresh herb green */
  --color-avocado-deep: #2F4F1F;
  --color-rust: #A14B22;

  /* Type */
  --font-display: 'Clash Grotesk', 'Gambarino', system-ui, sans-serif;
  --font-body: 'Switzer', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-italic: 'Gambarino', Georgia, serif;

  /* Sizes — fluid */
  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.84rem + 0.18vw, 0.9375rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.08rem + 0.25vw, 1.25rem);
  --text-xl: clamp(1.375rem, 1.25rem + 0.6vw, 1.625rem);
  --text-2xl: clamp(1.75rem, 1.4rem + 1.6vw, 2.5rem);
  --text-3xl: clamp(2.25rem, 1.6rem + 2.8vw, 3.5rem);
  --text-hero: clamp(2.75rem, 1.8rem + 5vw, 5.5rem);

  /* Space */
  --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;

  /* Section padding (responsive) */
  --section-y: clamp(3rem, 8vw, 6.5rem);

  /* Layout */
  --container: 1200px;
  --container-narrow: 920px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(31,26,21,0.06);
  --shadow: 0 8px 24px -8px rgba(31,26,21,0.18), 0 2px 4px rgba(31,26,21,0.04);
  --shadow-lg: 0 24px 48px -12px rgba(31,26,21,0.22);

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --flag-gradient:
    linear-gradient(
      115deg,
      rgba(255, 204, 41, 0.24) 0%,
      rgba(251, 246, 236, 0.92) 34%,
      rgba(0, 71, 171, 0.14) 62%,
      rgba(207, 20, 43, 0.16) 100%
    );
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
:focus-visible {
  outline: 2px solid var(--color-tomato);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection { background: var(--color-corn); color: var(--color-ink); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-tomato-deep);
  margin: 0 0 var(--space-5);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-tomato);
  box-shadow: 0 0 0 4px rgba(192,67,42,0.18);
}

.section-kicker {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-tomato-deep);
  margin-bottom: var(--space-4);
}
.section-kicker--light { color: var(--color-corn); }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-3xl);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-5);
  color: var(--color-ink);
}
.section-title--light { color: #FFF8EA; }
.section-title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--color-tomato);
}

.section-lede {
  font-size: var(--text-lg);
  color: var(--color-ink-soft);
  max-width: 60ch;
  margin: 0 0 var(--space-10);
}
.section-lede--light { color: rgba(255, 248, 234, 0.78); }

.section-head { margin-bottom: var(--space-12); }
.section-head--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-head--center .section-lede { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease),
              border-color 0.18s var(--ease), color 0.18s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-tomato);
  color: #FFF8EA;
}
.btn--primary:hover { background: var(--color-tomato-deep); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-ink);
}
.btn--ghost:hover {
  background: var(--color-ink);
  color: var(--color-bg);
}
.btn--lg { padding: 1rem 1.75rem; font-size: var(--text-base); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    radial-gradient(circle at 88% 45%, rgba(255, 204, 41, 0.34), rgba(255, 204, 41, 0) 48%),
    linear-gradient(90deg, rgba(255, 245, 209, 0.94), rgba(255, 235, 155, 0.88)),
    rgba(255, 241, 186, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--color-rule);
  background:
    radial-gradient(circle at 88% 45%, rgba(255, 204, 41, 0.3), rgba(255, 204, 41, 0) 48%),
    linear-gradient(90deg, rgba(255, 245, 209, 0.96), rgba(255, 235, 155, 0.92)),
    rgba(255, 241, 186, 0.94);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-3);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-ink);
}
.brand__logo {
  display: block;
  width: clamp(112px, 18vw, 154px);
  height: auto;
  border-radius: 0;
}
.brand__mark { width: 40px; height: 40px; color: var(--color-ink); flex-shrink: 0; }
.brand__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.brand__line1 {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-muted);
  font-family: var(--font-body);
}
.brand__line2 { font-size: 1.4rem; }

.site-nav { display: none; }
.site-nav ul { display: flex; gap: var(--space-6); align-items: center; }
.site-nav a {
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-ink);
  position: relative;
  padding: var(--space-2) 0;
  transition: color 0.18s var(--ease);
}
.site-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0.2rem;
  height: 2px;
  background: var(--color-tomato);
  transition: right 0.3s var(--ease);
}
.site-nav a:not(.nav-cta):hover::after { right: 0; }
.site-nav .nav-cta {
  background: var(--color-ink);
  color: var(--color-bg);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
}
.site-nav .nav-cta:hover { background: var(--color-tomato); }

/* mobile nav toggle */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--color-rule);
  border-radius: 10px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-ink);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  border-top: 1px solid var(--color-rule);
  background: var(--color-bg);
}
.mobile-nav ul {
  padding: var(--space-4) clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.mobile-nav a {
  display: block;
  padding: var(--space-3) 0;
  text-decoration: none;
  color: var(--color-ink);
  font-size: var(--text-base);
  font-weight: 500;
  border-bottom: 1px solid var(--color-rule);
}
.mobile-nav a:last-child { border-bottom: none; }

@media (min-width: 768px) {
  .site-nav { display: block; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 9vw, 7rem) clamp(3rem, 8vw, 6rem);
  background:
    linear-gradient(
      180deg,
      rgba(251, 246, 236, 0) 0%,
      rgba(251, 246, 236, 0) 52%,
      rgba(255, 238, 178, 0.58) 78%,
      var(--color-surface-warm) 100%
    ),
    var(--flag-gradient),
    var(--color-bg);
  background-size: 100% 760px;
  background-position: center -128px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.blob--corn {
  width: 480px; height: 480px;
  background: #FFCC29;
  top: -160px; right: -120px;
  opacity: 0.45;
}
.blob--tomato {
  width: 360px; height: 360px;
  background: #CF142B;
  bottom: -120px; left: -80px;
  opacity: 0.22;
}
.blob--avocado {
  width: 260px; height: 260px;
  background: #0047AB;
  top: 25%; left: 58%;
  opacity: 0.12;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-hero);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 var(--space-6);
  color: var(--color-ink);
}
.hero__title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--color-tomato);
}
.hero__lede {
  font-size: var(--text-lg);
  max-width: 56ch;
  color: var(--color-ink-soft);
  margin: 0 0 var(--space-8);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-12);
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6) var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-rule);
  font-size: var(--text-sm);
  color: var(--color-ink-soft);
}
.hero__meta li::before {
  content: '·';
  margin-right: var(--space-2);
  color: var(--color-tomato);
  font-weight: 700;
}
.hero__meta strong { color: var(--color-ink); font-weight: 600; }

.hero__pattern {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 40px;
  color: var(--color-corn-deep);
  z-index: 1;
  opacity: 0.5;
}

/* ---------- Story / Image+Description Cards ---------- */
.story {
  padding-block: var(--section-y);
  background: var(--color-surface-warm);
  position: relative;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 640px) {
  .story-grid { grid-template-columns: 1fr 1fr; gap: var(--space-10); }
}
@media (min-width: 1024px) {
  .story-grid { gap: var(--space-12); }
}

.story-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.story-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--color-faint);
}
.story-card__body h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-2);
}
.story-card__body p {
  margin: 0 0 var(--space-3);
  color: var(--color-ink-soft);
}
.story-card__caption {
  font-size: var(--text-xs);
  color: var(--color-faint);
  font-style: italic;
  margin: var(--space-2) 0 0 !important;
}

/* Image placeholders — gradient blocks evoking each food */
.img-placeholder {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-5);
  color: rgba(255, 255, 255, 0.92);
  background: var(--color-faint);
  box-shadow: var(--shadow);
  isolation: isolate;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(0,0,0,0.12), transparent 50%);
  z-index: -1;
}
.img-placeholder::after {
  /* subtle dot texture */
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.45;
  z-index: -1;
}
.img-placeholder--arepa {
  background: linear-gradient(135deg, #F2B544 0%, #D9921C 60%, #A06410 100%);
}
.img-placeholder--cachapa {
  background: linear-gradient(135deg, #FFD167 0%, #E8A22B 55%, #B86A1B 100%);
}
.img-placeholder--tequeno {
  background: linear-gradient(135deg, #E89A4A 0%, #C0432A 70%, #7A2412 100%);
}
.img-placeholder--sauce {
  background: linear-gradient(135deg, #7CA84F 0%, #4F7A38 60%, #2F4F1F 100%);
}
.img-placeholder--burger {
  background: linear-gradient(135deg, #B56A2A 0%, #7A3A19 52%, #2A1710 100%);
}
.ph-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.32);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: var(--space-2);
}
.ph-hint { font-size: var(--text-sm); opacity: 0.92; }

/* ---------- Menu ---------- */
.schedule {
  padding-block: var(--section-y);
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 204, 41, 0.2), transparent 34%),
    linear-gradient(180deg, #FFF1BA 0%, var(--color-bg) 100%);
}
.schedule-shell {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 980px) {
  .schedule-shell {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: var(--space-12);
  }
}
.schedule-copy .section-head,
.schedule-copy .section-lede {
  margin-bottom: 0;
}
.schedule-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-7);
}
.calendar-card {
  position: relative;
  overflow: hidden;
  padding: clamp(0.6rem, 1.6vw, 1rem);
  border: 1px solid rgba(31, 26, 21, 0.12);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 248, 234, 0.94), rgba(255, 232, 151, 0.48)),
    var(--color-card);
  box-shadow: var(--shadow-lg);
}
.calendar-card::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}
.calendar-card iframe {
  display: block;
  width: 100%;
  height: min(620px, 72vh);
  min-height: 430px;
  border: 0;
  border-radius: calc(var(--radius-xl) - 0.6rem);
  background: #fff;
}

.menu {
  padding-block: var(--section-y);
  background: var(--color-bg);
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 768px) {
  .menu-grid { grid-template-columns: 1fr 1fr; gap: var(--space-10); }
}
.menu-category {
  background: var(--color-surface);
  border: 1px solid var(--color-rule);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) {
  .menu-category { padding: var(--space-8); }
}
.menu-category__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-rule);
}
.menu-category__head h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}
.menu-category__hint {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-faint);
}
.menu-list { display: flex; flex-direction: column; gap: var(--space-2); }
.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  border-bottom: 1px dashed var(--color-rule);
}
.menu-row:last-child { border-bottom: none; }
.menu-row__main { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.menu-row__name {
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-ink);
}
.menu-row__desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
}
.menu-row__price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--color-tomato-deep);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.menu-row--placeholder .menu-row__name,
.menu-row--placeholder .menu-row__desc,
.menu-row--placeholder .menu-row__price {
  color: var(--color-faint);
  font-style: italic;
}
.menu-footnote {
  margin-top: var(--space-10);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-muted);
}
.menu-footnote a {
  color: var(--color-tomato-deep);
  font-weight: 600;
  text-decoration-color: var(--color-corn);
  text-underline-offset: 3px;
}

/* ---------- Contact ---------- */
.contact {
  padding-block: var(--section-y);
  background: var(--color-surface-warm);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 600px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: var(--space-5); }
}
@media (min-width: 980px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
}
.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-rule);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-corn);
  color: var(--color-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
}
.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  margin: 0;
  letter-spacing: -0.01em;
}
.contact-card__value {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-ink);
  margin: 0;
}
.contact-card__hint {
  font-size: var(--text-xs);
  color: var(--color-muted);
  margin: 0;
}

/* ---------- Order Section ---------- */
.order {
  padding-block: var(--section-y);
  background: var(--color-ink);
  color: #FFF8EA;
  position: relative;
  overflow: hidden;
}
.order::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(242,181,68,0.12), transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(192,67,42,0.18), transparent 40%);
  pointer-events: none;
}
.order__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}
@media (min-width: 920px) {
  .order__inner { grid-template-columns: 1fr 1.3fr; gap: var(--space-16); align-items: start; }
}
.order__intro .section-title { color: #FFF8EA; }
.order__bullets {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-6);
}
.order__bullets li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(255, 248, 234, 0.78);
  font-size: var(--text-sm);
}
.order__bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 8px; height: 8px;
  background: var(--color-corn);
  border-radius: 50%;
}

/* Form */
.order-form {
  background: rgba(255, 248, 234, 0.06);
  border: 1px solid rgba(255, 248, 234, 0.15);
  border-radius: var(--radius-xl);
  padding: clamp(1.25rem, 4vw, 2.25rem);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .field--full { grid-column: 1 / -1; }
}
.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-corn);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: var(--text-base);
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 248, 234, 0.04);
  border: 1px solid rgba(255, 248, 234, 0.18);
  border-radius: var(--radius);
  color: #FFF8EA;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 248, 234, 0.4); }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: rgba(255, 248, 234, 0.35); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-corn);
  background: rgba(255, 248, 234, 0.08);
}
.field textarea { resize: vertical; min-height: 96px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23F2B544' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.field select option { background: var(--color-ink); color: #FFF8EA; }

.form-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-6);
  align-items: flex-start;
}
.form-actions .btn--primary { background: var(--color-corn); color: var(--color-ink); }
.form-actions .btn--primary:hover { background: #FFC962; }
.form-note {
  font-size: var(--text-xs);
  color: rgba(255, 248, 234, 0.65);
  background: rgba(242, 181, 68, 0.08);
  border-left: 2px solid var(--color-corn);
  padding: var(--space-3) var(--space-4);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 0;
  max-width: 60ch;
}
.form-note strong { color: var(--color-corn); }

/* Meal prep checkout */
.meal-prep-status {
  margin-bottom: var(--space-5);
  padding: var(--space-3) var(--space-4);
  border: 1px solid rgba(242, 181, 68, 0.24);
  border-radius: var(--radius);
  background: rgba(242, 181, 68, 0.1);
  color: rgba(255, 248, 234, 0.78);
  font-size: var(--text-sm);
}
.meal-prep-status.is-ready {
  border-color: rgba(242, 181, 68, 0.4);
  color: #FFF8EA;
}
.meal-prep-status.is-error {
  border-color: rgba(207, 20, 43, 0.48);
  background: rgba(207, 20, 43, 0.12);
}
.meal-prep-block {
  margin-top: var(--space-7);
  padding-top: var(--space-7);
  border-top: 1px solid rgba(255, 248, 234, 0.14);
}
.meal-prep-block__head {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}
.meal-prep-block__head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: -0.02em;
  color: #FFF8EA;
}
.meal-prep-block__head p {
  margin: 0;
  color: rgba(255, 248, 234, 0.66);
  font-size: var(--text-sm);
}
.bundle-options,
.meal-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 680px) {
  .bundle-options { grid-template-columns: 1fr 1fr; }
}
.bundle-card,
.meal-card {
  border: 1px solid rgba(255, 248, 234, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 248, 234, 0.06);
}
.bundle-card {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.bundle-card:hover,
.bundle-card:has(input:checked) {
  border-color: var(--color-corn);
  background: rgba(242, 181, 68, 0.12);
}
.bundle-card input {
  accent-color: var(--color-corn);
}
.bundle-card span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bundle-card strong {
  color: #FFF8EA;
}
.bundle-card small {
  color: rgba(255, 248, 234, 0.64);
}
.meal-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-4);
}
.meal-card__category {
  display: inline-flex;
  margin-bottom: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-corn);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.meal-card h4 {
  margin: 0 0 var(--space-1);
  font-size: var(--text-base);
  color: #FFF8EA;
}
.meal-card p {
  margin: 0;
  color: rgba(255, 248, 234, 0.64);
  font-size: var(--text-sm);
  line-height: 1.45;
}
.meal-counter {
  display: grid;
  grid-template-columns: 36px 32px 36px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 234, 0.16);
  border-radius: 999px;
}
.meal-counter button {
  width: 36px;
  height: 36px;
  border: 0;
  background: rgba(255, 248, 234, 0.08);
  color: var(--color-corn);
  font: inherit;
  font-size: 1.15rem;
  cursor: pointer;
}
.meal-counter button:hover {
  background: rgba(242, 181, 68, 0.18);
}
.meal-counter output {
  text-align: center;
  color: #FFF8EA;
  font-weight: 700;
}
.meal-prep-summary {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  align-items: center;
  margin-top: var(--space-6);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: rgba(242, 181, 68, 0.12);
  color: #FFF8EA;
}
.meal-prep-summary span {
  color: rgba(255, 248, 234, 0.72);
}
.meal-prep-summary strong {
  color: var(--color-corn);
  font-size: var(--text-xl);
}
.meal-empty {
  margin: 0;
  color: rgba(255, 248, 234, 0.66);
}
.confirmation {
  min-height: 62vh;
  display: grid;
  align-items: center;
}
.confirmation__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-rule);
  padding-block: var(--space-12) var(--space-8);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}
@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.footer-brand__logo {
  display: block;
  width: clamp(96px, 18vw, 132px);
  height: auto;
  flex-shrink: 0;
}
.footer-brand .brand__mark { width: 48px; height: 48px; color: var(--color-ink); }
.footer-brand p { margin: 0; font-size: var(--text-sm); color: var(--color-ink-soft); }
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  justify-content: flex-start;
}
@media (min-width: 640px) {
  .footer-nav ul { justify-content: flex-end; }
}
.footer-nav a {
  font-size: var(--text-sm);
  text-decoration: none;
  color: var(--color-ink-soft);
  transition: color 0.18s var(--ease);
}
.footer-nav a:hover { color: var(--color-tomato); }
.footer-meta {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-rule);
  font-size: var(--text-xs);
  color: var(--color-muted);
}

/* ---------- 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-behavior: auto !important;
  }
}
