/* ==========================================================================
   Ramen Hall — B2B Website
   Target: University dining directors, Aramark, Chartwells, Sodexo
   ========================================================================== */

:root {
  /* Brand Colors — from Ramen Hall Brand Guidelines (April 2026) */
  --bg: #FAF8F3;
  --bg-warm: #FAF8F3;
  --bg-dark: #295477;
  --bg-card: #FFFFFF;
  --border: rgba(41, 84, 119, 0.25);
  --border-strong: rgba(41, 84, 119, 0.4);

  --brand: #0972BA;
  --brand-dark: #295477;
  --brand-light: #3A9DE0;
  --bg-blue: #0972BA;
  --bg-footer: #295477;
  --cream: #FFFAEF;
  --gold: #F5B840;
  --gold-light: #F8CC6A;

  --text: #1A2E3D;
  --text-muted: #4A6070;
  --text-dim: #7A94A5;
  --text-on-dark: #FFFAEF;
  --text-on-dark-muted: rgba(255, 250, 239, 0.7);

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.15);
}

/* Custom Fonts */
@font-face {
  font-family: 'No Vibes Display';
  src: url('assets/fonts/NovibesDisplay.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow';
  src: url('assets/fonts/Barlow-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Reset */
*, *::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: 'Barlow', 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Layout */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

/* Typography */
h1, h2, h3, h4 { font-family: 'No Vibes Display', 'DM Sans', sans-serif; line-height: 1.15; font-weight: 400; letter-spacing: 0.01em; }

h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(32px, 4vw, 48px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: 18px; }

p { color: var(--text-muted); font-size: 17px; }
p.large { font-size: 19px; line-height: 1.7; }

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

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 16px;
}

.section-subtitle {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-text {
  font-family: 'No Vibes Display', 'DM Sans', sans-serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--text);
}

.nav-logo .logo-icon {
  width: 32px;
  height: 32px;
  background: var(--brand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 12px 24px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: #1A2E3D;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(240, 152, 0, 0.3);
}

.btn-primary:link, .btn-primary:visited {
  color: #1A2E3D;
}

.btn-primary:hover {
  background: #E08A00;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(240, 152, 0, 0.4);
}

.btn-outline {
  background: var(--bg-warm);
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--text);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
  border-radius: 14px;
}

.btn-xl {
  padding: 20px 40px;
  font-size: 18px;
  border-radius: 16px;
}

.btn-on-dark {
  background: var(--gold);
  color: #1A2E3D;
  font-weight: 700;
}

.btn-on-dark:hover {
  background: #E08A00;
  transform: translateY(-1px);
}

/* ---- HERO ---- */
.hero {
  padding: 140px 0 100px;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}


.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--cream);
  border: 1px solid var(--gold-light);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 24px;
}

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

.hero-headline h1 {
  margin: 0;
  line-height: 1.0;
}

.hero-headline .hero-line2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.2;
}

.hero-headline .hero-line3 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--brand);
  margin: 0;
  line-height: 1.4;
}

.hero h1 {
  max-width: 800px;
  margin: 0 auto 24px;
}

h1 .highlight {
  color: var(--brand);
}

.hero-punch {
  max-width: 600px;
  margin: 0 auto 16px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-muted);
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

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

.hero-stat .number {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.hero-stat .label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---- VALUE PROPS (Trust Bar) ---- */
.value-bar {
  padding: 80px 0;
  background: var(--bg-blue);
  border: none;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-item {
  text-align: center;
  padding: 24px 16px;
  background: rgba(7, 90, 148, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 10;
}

.value-item:hover {
  transform: translateY(-3px);
  background: rgba(7, 90, 148, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  color: var(--cream);
}

.value-item h4 {
  margin-bottom: 8px;
  font-size: 16px;
  color: var(--text-on-dark);
}

.value-item p {
  font-size: 14px;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  background: var(--bg);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.step {
  position: relative;
  z-index: 10;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.step-number {
  width: 48px;
  height: 48px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  line-height: 1.6;
}

/* ---- WHAT'S INCLUDED ---- */
.whats-included {
  background: var(--bg-blue);
  color: var(--text-on-dark);
}

.whats-included .section-label { color: var(--cream); }
.whats-included .section-subtitle { color: var(--text-on-dark-muted); }

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.package-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.package-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.package-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.package-item-icon svg {
  width: 24px;
  height: 24px;
  color: var(--cream);
}

.package-item h4 {
  color: var(--text-on-dark);
  margin-bottom: 8px;
  font-size: 18px;
}

.package-item p {
  color: var(--text-on-dark-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---- NUMBERS / SOCIAL PROOF ---- */
.numbers {
  background: var(--bg);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.number-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  z-index: 10;
}

.number-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.number-card .big-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}

.number-card .number-label {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---- TESTIMONIALS / LOGOS ---- */
.partners {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  flex-wrap: wrap;
  opacity: 0.6;
}

.partner-logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: -0.01em;
}

/* ---- WHY RAMEN ---- */
.why-ramen {
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 64px;
}

.why-content h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.why-content p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.7;
}

.why-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

.why-list li .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(59, 107, 142, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-list li .check svg {
  width: 14px;
  height: 14px;
  color: var(--brand);
}

.why-visual {
  background: none;
  border-radius: 0;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  border: none;
}

.why-visual-inner {
  text-align: center;
  color: var(--text-dim);
}

.why-visual-inner .emoji {
  font-size: 64px;
  margin-bottom: 16px;
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: var(--brand);
  color: white;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto 32px;
}

.cta-section .btn-on-dark {
  font-size: 17px;
  padding: 18px 36px;
}

/* ---- FOOTER ---- */
footer {
  background: var(--bg-footer);
  color: var(--text-on-dark);
  padding: 60px 0 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .nav-logo {
  color: white;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-on-dark-muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-on-dark-muted);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-on-dark-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-on-dark-muted);
  text-decoration: none;
}

.footer-bottom-links a:hover { color: white; }

/* ---- NAV LOGO IMAGE ---- */
.nav-logo-img {
  height: 44px;
  width: auto;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  opacity: 0.9;
}

/* ---- BTN SM ---- */
.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
  border-radius: 10px;
}

/* ---- MOBILE MENU ---- */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- HERO DECORATIVE ILLUSTRATIONS ---- */
.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.decor {
  position: absolute;
  opacity: 0.12;
  filter: saturate(0.6);
}

.decor-1 { top: 15%; left: 3%; width: 120px; transform: rotate(-15deg); }
.decor-2 { top: 25%; right: 5%; width: 80px; transform: rotate(10deg); }
.decor-3 { bottom: 20%; left: 6%; width: 70px; transform: rotate(-20deg); }
.decor-4 { bottom: 25%; right: 8%; width: 65px; transform: rotate(15deg); }

/* ---- THE KIT SECTION ---- */
.the-kit {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 10;
}

.kit-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

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

.kit-lid-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kit-lid {
  width: 100%;
  max-width: 380px;
  border-radius: 50%;
  box-shadow: var(--shadow-xl);
  display: block;
  margin: 0 auto;
}

.kit-content .section-label { margin-bottom: 12px; }

.kit-content h2 {
  margin-bottom: 20px;
}

.kit-contents-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.kit-contents-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 16px;
  border-left: 3px solid var(--brand);
}

.kit-item-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}

.kit-item-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.kit-price {
  margin-top: 32px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.kit-price-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}

.kit-price-label {
  font-size: 15px;
  color: var(--text-muted);
}

/* ---- CAMPUS GRID ---- */
.campuses {
  background: var(--bg-blue);
  color: var(--text-on-dark);
}

.campuses h2 {
  margin-bottom: 48px;
  color: var(--text-on-dark);
}

.campuses .section-label {
  color: var(--cream);
}

.campus-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}

.campus-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(7, 90, 148, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-on-dark);
  transition: all 0.3s;
  position: relative;
  z-index: 10;
}

.campus-tag:hover {
  background: rgba(7, 90, 148, 1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.campus-tag .coming {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  background: rgba(59, 107, 142, 0.1);
  padding: 2px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- FOR OPERATORS / WHY RAMEN (overrides) ---- */
.for-operators {
  background: var(--bg);
}

.for-operators .why-grid {
  margin-top: 0;
}

.for-operators .why-content h2 {
  margin-bottom: 20px;
}

.why-visual {
  background: none;
}

.why-visual-img {
  width: 100%;
  max-width: 360px;
  border-radius: 50%;
  box-shadow: var(--shadow-xl);
  display: block;
  margin: 0 auto;
}

/* ---- FOR OPERATORS CTA ---- */
.for-operators-cta {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.operator-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.op-highlight {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  z-index: 10;
  transition: all 0.3s ease;
}

.op-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--brand);
}

.op-highlight strong {
  font-size: 16px;
  color: var(--text);
}

.op-highlight span {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ---- CTA NOTE ---- */
.cta-note {
  margin-top: 16px;
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

.cta-note strong {
  color: rgba(255, 255, 255, 0.85);
}

/* ---- ACTIVE NAV LINK ---- */
.nav-links a.active {
  color: var(--brand);
  font-weight: 700;
}

/* ---- NAV SCROLLED ---- */
nav.scrolled {
  box-shadow: var(--shadow-sm);
}

/* ---- FLOATING TOPPINGS (site-wide) ---- */
.floating-toppings {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9;
  overflow: hidden;
}

.float {
  position: absolute;
  opacity: 0.35;
  filter: saturate(0.6);
  mix-blend-mode: multiply;
  animation: floatDrift 20s ease-in-out infinite;
}

.float-1 { top: 5%; left: 8%; width: 110px; transform: rotate(-12deg); animation-delay: 0s; }
.float-2 { top: 15%; right: 12%; width: 90px; transform: rotate(18deg); animation-delay: -3s; }
.float-3 { top: 30%; left: 30%; width: 75px; transform: rotate(-25deg); animation-delay: -6s; }
.float-4 { top: 42%; right: 20%; width: 85px; transform: rotate(8deg); animation-delay: -9s; }
.float-5 { top: 55%; left: 15%; width: 95px; transform: rotate(15deg); animation-delay: -12s; }
.float-6 { top: 68%; right: 8%; width: 80px; transform: rotate(-10deg); animation-delay: -15s; }
.float-7 { top: 80%; left: 40%; width: 90px; transform: rotate(22deg); animation-delay: -18s; }
.float-8 { top: 25%; left: 55%; width: 120px; transform: rotate(-5deg); animation-delay: -4s; }

@keyframes floatDrift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(3deg); }
  50% { transform: translateY(-8px) rotate(-2deg); }
  75% { transform: translateY(-20px) rotate(4deg); }
}

/* ---- ABOUT PAGE ---- */
.about-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--bg);
  position: relative;
}

.about-hero h1 {
  max-width: 800px;
  margin: 0 auto 24px;
}

.about-hero .hero-sub {
  max-width: 500px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Story sections */
.story-section {
  padding: 80px 0;
  background: var(--bg);
}

.story-block {
  max-width: 680px;
  margin: 0 auto 64px;
}

.story-block:last-child {
  margin-bottom: 0;
}

.story-block h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 24px;
  color: var(--text);
}

.story-block p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.story-block p:last-child {
  margin-bottom: 0;
}

.story-highlight {
  font-size: 24px !important;
  font-weight: 700;
  color: var(--brand) !important;
  font-style: italic;
  padding: 24px 0;
  border-left: 4px solid var(--brand);
  padding-left: 24px;
  margin: 32px 0 !important;
}

.story-block em {
  color: var(--text);
  font-style: italic;
}

.story-block strong {
  color: var(--text);
}

.story-block-final {
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.story-block-final h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--brand);
}

.story-cta {
  margin-top: 40px;
}

/* Story mission (reuses mission-quote styling) */
.story-mission {
  padding: 80px 0;
  background: var(--bg-blue);
}

.story-mission blockquote {
  max-width: 700px;
  margin: 0 auto;
}

.story-mission blockquote p {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--cream);
  font-style: italic;
  letter-spacing: -0.01em;
}

/* ---- TIMELINE (How It Works — 3 steps) ---- */
.timeline {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.timeline-step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.timeline-number {
  width: 64px;
  height: 64px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow', sans-serif !important;
  font-weight: 700;
  font-size: 28px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(59, 107, 142, 0.3);
}

.timeline-connector {
  position: absolute;
  top: 32px;
  left: calc(50% + 32px);
  width: calc(100% - 64px);
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  z-index: 1;
  border-radius: 2px;
}

.timeline-step:last-child .timeline-connector {
  display: none;
}

.timeline-step h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.timeline-step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ---- RECIPE CARDS (Student Cooking Experience) ---- */
.student-experience-v2 {
  background: var(--brand);
  color: white;
  overflow: hidden;
}

.student-experience-v2 .section-label {
  color: var(--gold-light);
}

.student-experience-v2 h2 {
  color: white;
}

.student-experience-v2 .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.recipe-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  position: relative;
  z-index: 10;
  backdrop-filter: blur(4px);
  transition: transform 0.3s, background 0.3s;
}

.recipe-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.15);
}

.recipe-card:nth-child(1) { transform: translateY(12px); }
.recipe-card:nth-child(3) { transform: translateY(18px); }
.recipe-card:nth-child(5) { transform: translateY(10px); }
.recipe-card:nth-child(1):hover { transform: translateY(8px); }
.recipe-card:nth-child(3):hover { transform: translateY(14px); }
.recipe-card:nth-child(5):hover { transform: translateY(6px); }

.recipe-card-num {
  position: absolute;
  top: -14px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--bg-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 20px;
  transform: rotate(-4deg);
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.recipe-card.card-cream .recipe-card-num {
  transform: rotate(4deg);
  background: var(--cream);
}

.recipe-card h3 {
  font-size: 20px;
  color: white;
  margin-bottom: 8px;
  margin-top: 8px;
}

.recipe-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* ---- REQUIREMENTS V2 (Minimal Strip) ---- */
.requirements-v2 {
  background: var(--bg);
  color: var(--text);
  padding: 80px 0;
}

.requirements-v2 .section-label {
  color: var(--bg-blue);
}

.requirements-v2 h2 {
  color: var(--text);
  margin-bottom: 48px;
}

.req-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.req-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background 0.3s;
}

.req-item:hover {
  background: var(--bg-warm);
}

.req-item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(9, 114, 186, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-blue);
}

.req-item strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  margin-bottom: 2px;
}

.req-item span {
  font-size: 13px;
  color: rgba(26, 46, 61, 0.6);
  line-height: 1.4;
}

.requirements-v2 .req-note {
  color: var(--text);
  margin-top: 32px;
}

/* ---- WHATS INCLUDED V2 (Bold Checklist) ---- */
.whats-included-v2 {
  background: var(--bg-blue);
  color: var(--text-on-dark);
  padding: 100px 0;
}

.included-list {
  max-width: 680px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.included-check {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(59, 107, 142, 0.3);
  border: 2px solid var(--brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}

.included-text h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--text-on-dark);
  margin-bottom: 4px;
}

.included-text p {
  color: var(--text-on-dark-muted);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

/* ---- PACKAGES COMPARISON PAGE ---- */
.packages-compare {
  padding: 80px 0 100px;
  background: var(--bg);
}

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

.pkg-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 36px 40px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.pkg-card-featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, rgba(59, 107, 142, 0.04), var(--bg-card));
  box-shadow: var(--shadow-md);
}

.pkg-badge {
  display: inline-block;
  background: var(--brand);
  color: white;
  font-family: 'No Vibes Display', sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.pkg-badge-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-dark);
}

.pkg-card h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 12px;
}

.pkg-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.pkg-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pkg-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.pkg-list svg {
  flex-shrink: 0;
  color: var(--brand);
}

.pkg-card-featured .pkg-list svg {
  color: var(--gold);
}

.btn-full {
  width: 100%;
  text-align: center;
}

.pkg-note {
  margin-top: 48px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.pkg-note a {
  color: var(--brand);
  font-weight: 600;
}

/* ---- FADE IN ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.15s; }
.fade-in:nth-child(6) { transition-delay: 0.2s; }

/* ---- MISSION QUOTE ---- */
.mission-quote {
  padding: 80px 0;
  background: var(--bg);
}

.mission-quote blockquote {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.mission-quote blockquote p {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--brand);
  font-style: italic;
  letter-spacing: -0.01em;
}

/* ---- STUDENT EXPERIENCE (Cooking Steps) ---- */
.student-experience {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cook-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.cook-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.cook-step-number {
  width: 40px;
  height: 40px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto 16px;
}

.cook-step h4 {
  margin-bottom: 8px;
  font-size: 17px;
}

.cook-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.spice {
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 6px;
  font-size: 13px;
  display: inline-block;
}

.spice-red {
  color: #FFFFFF;
  background: #A32E47;
}

.spice-blue {
  color: #FFFFFF;
  background: #295477;
}

.spice-yellow {
  color: #1A2E3D;
  background: var(--gold);
}

/* ---- FLEXIBLE PACKAGES ---- */
.flexible-packages {
  background: var(--bg);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.package-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(59, 107, 142, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.package-card-icon svg {
  color: var(--brand);
}

.package-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.package-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ---- REQUIREMENTS ---- */
.requirements {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.req-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.req-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.req-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.req-icon {
  width: 56px;
  height: 56px;
  background: rgba(59, 107, 142, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.req-icon svg {
  color: var(--brand);
}

.req-card h4 {
  margin-bottom: 8px;
  font-size: 17px;
}

.req-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.req-note {
  margin-top: 32px;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand);
}

/* ---- COMMITMENT ---- */
.commitment {
  background: var(--bg-blue);
  color: var(--text-on-dark);
}

.commitment .section-label {
  color: var(--cream);
}

.commitment h2 {
  color: var(--text-on-dark);
  margin-bottom: 16px;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.commitment-card {
  background: rgba(7, 90, 148, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.commitment-card:hover {
  background: rgba(7, 90, 148, 1);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.commitment-card h4 {
  color: var(--text-on-dark);
  margin-bottom: 12px;
  font-size: 18px;
}

.commitment-card p {
  color: var(--text-on-dark-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---- CONTACT DETAILS ---- */
.contact-details {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-details a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-details a:hover {
  color: white;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .pkg-grid { grid-template-columns: 1fr; max-width: 480px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .kit-layout { grid-template-columns: 1fr; }
  .hero-stats { gap: 32px; }
  .footer-inner { flex-direction: column; }
  .footer-links { gap: 40px; }
  .decor { display: none; }
  .operator-highlights { grid-template-columns: 1fr; }
  .float { opacity: 0.15; }
  .float-7, .float-8 { display: none; }
  .cook-steps { grid-template-columns: repeat(2, 1fr); }
  .req-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { flex-direction: column; align-items: center; gap: 32px; }
  .timeline-connector { display: none; }
  .timeline-step { max-width: 100%; }
  .recipe-grid { grid-template-columns: repeat(2, 1fr); }
  .recipe-card:nth-child(1),
  .recipe-card:nth-child(3),
  .recipe-card:nth-child(5) { transform: none; }
  .req-strip { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .commitment-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 16px;
  }
  .nav-links.open a { font-size: 16px; }
  .steps { grid-template-columns: 1fr; }
  .cook-steps { grid-template-columns: 1fr; }
  .req-grid { grid-template-columns: 1fr; }
  .req-strip { grid-template-columns: 1fr; }
  .recipe-grid { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 72px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .hero-stat { min-width: 120px; }
  .partner-logos { gap: 32px; }
  .kit-layout { gap: 40px; }
  .kit-visual { order: -1; }
  .kit-lid { max-width: 280px; }
}

@media (max-width: 480px) {
  .container, .container-narrow { padding: 0 16px; }
  h1 { font-size: clamp(28px, 8vw, 40px); }
  .hero-headline .hero-line2,
  .hero-headline .hero-line3 { font-size: 16px; }
  .hero-sub { font-size: 16px; }
  .value-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .campus-tag { font-size: 13px; padding: 10px 18px; }
  .floating-toppings { display: none; }
  .story-highlight { font-size: 20px !important; }
}
