:root {
  --green: #0C513F;
  --green-dark: #073B2E;
  --green-light: #E4F7EC;
  --green-bright: #00B978;
  
  --mint-pastel: #D2F2DD;
  --blue-pastel: #D5E7FD;
  --pink-pastel: #FCD8E3;
  --yellow-pastel: #FFF2B2;
  --cream: #FAF6EB;
  --paper: #FFFDF6;
  --dark-bg: #0A0F0D;
  --dark-card: #131B18;
  
  --yellow: #FFC928;
  --orange: #FF5E3A;
  --ink: #111111;
  --ink-soft: #383834;
  --muted: #6E6D66;
  
  --border: 2px solid #0C513F;
  --border-subtle: 1.5px solid rgba(12, 81, 63, 0.14);
  --border-dark: 2px solid #111111;
  
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 34px;
  --radius-pill: 9999px;
  
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Space Grotesk', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.page-noise {
  position: fixed;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  z-index: 10;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* ==========================================================================
   CHOWDECK FLOATING ISLAND NAVBAR
   ========================================================================== */
.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 0;
  right: 0;
  pointer-events: none;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-island {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Left Island: Brand + Country/Campus Pill */
.nav-island-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-pill {
  background: var(--green);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 6px 20px rgba(12, 81, 63, 0.22);
  transition: transform 0.2s ease, background 0.2s ease;
}

.brand-pill:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
}

.brand-chat-icon {
  color: var(--yellow);
  display: flex;
  align-items: center;
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.brand-accent {
  color: var(--yellow);
}

.campus-pill {
  background: #FFFFFF;
  border: var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  cursor: default;
}

.flag {
  font-size: 14px;
  line-height: 1;
}

.campus-name {
  font-weight: 800;
}

.pill-badge-code {
  background: var(--green-light);
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: var(--radius-pill);
  margin-left: 2px;
}

.chevron-down {
  color: var(--muted);
  margin-left: 2px;
}

/* Center Island: Nav Links Pill */
.nav-island-center {
  background: #FFFFFF;
  border: var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 10px 28px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-island-center a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-island-center a:hover {
  color: var(--green);
}

/* Right Island: Waitlist CTA & Cart Button */
.nav-island-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-pill-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: var(--border-subtle);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, background 0.2s ease;
}

.cart-pill-button:hover {
  transform: translateY(-2px);
  background: var(--green-light);
}

.menu-toggle {
  display: none;
  background: #FFFFFF;
  border: var(--border-subtle);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 76px;
  left: 20px;
  right: 20px;
  background: #FFFFFF;
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  flex-direction: column;
  gap: 18px;
  pointer-events: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
}

.mobile-menu .button {
  margin-top: 6px;
  width: 100%;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 13px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.button-green {
  background: var(--green);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(12, 81, 63, 0.2);
}

.button-green:hover {
  background: var(--green-dark);
}

.button-dark {
  background: var(--ink);
  color: #FFFFFF;
}

.button-dark:hover {
  background: #252522;
}

.button-light {
  background: #FFFFFF;
  color: var(--green);
  border: var(--border);
}

.button-light:hover {
  background: var(--green-light);
}

.text-link {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.text-link:hover {
  color: var(--green);
  border-color: var(--green);
}

.light-link {
  color: var(--yellow-pastel);
  border-color: var(--yellow-pastel);
}

.light-link:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

/* ==========================================================================
   HERO SECTION (Matches Chowdeck Image 2)
   ========================================================================== */
.hero-section,
.hero {
  background: var(--cream);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding-top: 150px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  border-bottom: var(--border);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 20px;
  padding-bottom: 24px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--green);
  background: rgba(12, 81, 63, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(46px, 5.8vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin: 0;
  color: var(--ink);
}

.hero h1 em {
  font-style: normal;
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 6px;
  text-underline-offset: 4px;
}

.hero-text {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 24px 0 26px;
}

/* Chowdeck Address Search Bar */
.hero-address-bar {
  background: #FFFFFF;
  border: var(--border-subtle);
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 36px rgba(12, 81, 63, 0.09);
  padding: 6px 8px 6px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 520px;
  margin: 26px 0 22px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-address-bar:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(12, 81, 63, 0.14);
}

.search-pin-icon {
  color: var(--green);
  display: flex;
  align-items: center;
}

.hero-search-input {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  cursor: pointer;
  outline: none;
}

.hero-search-input::placeholder {
  color: #71716A;
}

.hero-search-btn {
  padding: 12px 22px;
  font-size: 14px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.hero-note {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 24px;
}

.hero-note span {
  color: var(--orange);
  font-size: 16px;
}

/* Hero Art Illustration */
.hero-art {
  height: 520px;
  position: relative;
  isolation: isolate;
  filter: drop-shadow(0 15px 25px rgba(12, 81, 63, 0.1));
}

.sunburst {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: var(--yellow);
  top: 30px;
  right: 40px;
  z-index: -1;
}

.sunburst::after {
  content: '';
  position: absolute;
  inset: 22px;
  border: 2px dashed rgba(17, 17, 17, 0.2);
  border-radius: 50%;
}

.art-label {
  position: absolute;
  z-index: 4;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  line-height: 1.1;
  text-transform: uppercase;
  background: #FFFFFF;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  box-shadow: 4px 4px 0 var(--ink);
}

.art-label strong {
  color: var(--orange);
  font-size: 15px;
}

.label-top {
  top: 50px;
  right: 25px;
  transform: rotate(6deg);
}

.label-bottom {
  bottom: 65px;
  left: 10px;
  transform: rotate(-6deg);
}

.doodle {
  position: absolute;
  font-size: 32px;
  z-index: 4;
}

.doodle-star {
  left: 20px;
  top: 130px;
  color: var(--green);
}

.doodle-spark {
  right: 30px;
  bottom: 110px;
  color: var(--orange);
}

.food-bowl {
  position: absolute;
  z-index: 3;
  left: 35px;
  bottom: 80px;
  width: 155px;
  height: 115px;
  background: var(--orange);
  border: 3px solid var(--ink);
  border-radius: 16px 16px 75px 75px;
  transform: rotate(-10deg);
  box-shadow: 8px 12px 0 rgba(12, 81, 63, 0.15);
}

.bowl-rim {
  position: absolute;
  top: -10px;
  left: -4px;
  width: 158px;
  height: 30px;
  border-radius: 50%;
  background: var(--cream);
  border: 5px solid var(--green);
}

.bowl-food {
  font-size: 64px;
  position: absolute;
  z-index: 1;
  top: -34px;
  left: 35px;
  transform: rotate(10deg);
}

.takeaway {
  position: absolute;
  right: 35px;
  bottom: 85px;
  width: 150px;
  height: 150px;
  z-index: 3;
  transform: rotate(6deg);
}

.takeaway-body {
  height: 120px;
  margin-top: 24px;
  background: var(--green);
  border: 3px solid var(--ink);
  border-radius: 8px 8px 28px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 65px;
  box-shadow: 8px 10px 0 rgba(17, 17, 17, 0.15);
}

.takeaway-lid {
  height: 26px;
  position: absolute;
  z-index: 1;
  top: 12px;
  left: -6px;
  width: 162px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--green-bright);
}

.takeaway-handle {
  position: absolute;
  width: 70px;
  height: 36px;
  border: 6px solid var(--green);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  top: -18px;
  left: 40px;
}

.phone {
  position: absolute;
  z-index: 4;
  left: 200px;
  top: 40px;
  width: 180px;
  height: 360px;
  background: var(--ink);
  border: 6px solid #222;
  border-radius: 32px;
  transform: rotate(8deg);
  box-shadow: 14px 18px 0 rgba(12, 81, 63, 0.2);
}

.phone-speaker {
  width: 48px;
  height: 6px;
  border-radius: 6px;
  background: #555;
  position: absolute;
  top: 10px;
  left: 60px;
}

.phone-screen {
  position: absolute;
  inset: 26px 8px 8px;
  background: var(--cream);
  border-radius: 24px;
  padding: 24px 14px;
}

.screen-pin {
  display: inline-flex;
  width: 30px;
  height: 30px;
  background: var(--orange);
  color: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}

.phone-screen small {
  display: block;
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin-top: 14px;
  text-transform: uppercase;
}

.phone-screen small strong {
  font-size: 15px;
  letter-spacing: -0.02em;
  display: block;
}

.screen-route {
  height: 42px;
  border-left: 2.5px dotted var(--green);
  margin: 14px 0 6px 14px;
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.screen-route b {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
}

.screen-route b:last-child {
  background: var(--orange);
}

.screen-emoji {
  font-size: 48px;
  position: absolute;
  bottom: 24px;
  left: 36px;
}

.rider {
  position: absolute;
  z-index: 5;
  right: 100px;
  top: 250px;
  width: 120px;
  height: 165px;
}

.rider-head {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #6F4030;
  position: absolute;
  top: 0;
  left: 35px;
  border: 8px solid var(--ink);
}

.rider-body {
  position: absolute;
  top: 42px;
  left: 30px;
  width: 60px;
  height: 82px;
  background: var(--orange);
  border: 3px solid var(--ink);
  border-radius: 24px 24px 10px 10px;
}

.rider-body::before {
  content: '';
  position: absolute;
  background: var(--green);
  height: 12px;
  width: 68px;
  top: 26px;
  left: -6px;
}

.rider-wheel {
  position: absolute;
  bottom: 2px;
  width: 32px;
  height: 32px;
  border: 6px solid var(--ink);
  border-radius: 50%;
  background: #fff;
}

.wheel-one { left: 8px; }
.wheel-two { right: 0; }

.rider-bag {
  position: absolute;
  top: 54px;
  right: -12px;
  background: var(--yellow);
  color: var(--green);
  padding: 10px 8px;
  border: 3px solid var(--ink);
  border-radius: 6px;
  transform: rotate(12deg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
}

/* Chowdeck Architectural Campus Skyline along bottom */
.hero-skyline {
  position: relative;
  width: 100%;
  height: 230px;
  background-image: url('hero-campus.svg');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  margin-top: -110px;
  margin-bottom: -8px;
  z-index: 1;
}

/* ==========================================================================
   TICKER
   ========================================================================== */
.ticker {
  overflow: hidden;
  background: var(--green);
  color: var(--cream);
  padding: 18px 0;
  border-top: var(--border);
  border-bottom: var(--border);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  gap: 32px;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker b {
  color: var(--yellow);
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section-pad {
  padding-top: 100px;
  padding-bottom: 110px;
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin: 0;
  color: var(--ink);
}

.section-heading h2 em {
  font-style: normal;
  color: var(--green);
}

.centered {
  text-align: center;
}

/* ==========================================================================
   SECTION 02: THE CAMPUS FOOD PROBLEM (Bento Cards)
   ========================================================================== */
.problem-section {
  background: var(--yellow-pastel);
  border-bottom: var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.problem-card {
  min-height: 340px;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 0 var(--green);
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 0 var(--green);
}

.card-coral { background: #FFDDD6; }
.card-yellow { background: #FFF6C7; }
.card-green { background: var(--mint-pastel); }
.card-cream { background: #FFFFFF; }

.card-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--green);
  background: rgba(12, 81, 63, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}

.card-icon {
  font-family: var(--font-accent);
  font-size: 70px;
  line-height: 1;
  margin: 36px 0 12px;
  color: var(--ink);
}

.problem-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin: 0 0 10px;
  color: var(--ink);
}

.problem-card p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  color: var(--ink-soft);
}

/* ==========================================================================
   SECTION 03: OFFER SECTION (Chowdeck Market/Pharmacy bento style, Image 1)
   ========================================================================== */
.offer-section {
  background: var(--paper);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.offer-card {
  min-height: 420px;
  padding: 30px 24px;
  position: relative;
  border-radius: var(--radius-xl);
  border: var(--border);
  box-shadow: 0 8px 0 var(--green);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 0 var(--green);
}

.offer-meals { background: var(--mint-pastel); }
.offer-delivery { background: var(--blue-pastel); }
.offer-snacks { background: var(--pink-pastel); }
.offer-vendors { background: var(--yellow-pastel); }

.offer-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--green);
  background: rgba(12, 81, 63, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}

.offer-visual {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.meal-visual .plate {
  font-size: 110px;
  transform: rotate(-6deg);
  filter: drop-shadow(6px 8px 0 rgba(12, 81, 63, 0.12));
}

.meal-visual .leaf {
  position: absolute;
  top: 30px;
  right: 20px;
  font-size: 28px;
  color: var(--orange);
  font-style: normal;
}

.delivery-visual span {
  font-size: 105px;
  transform: rotate(-8deg);
  filter: drop-shadow(6px 8px 0 rgba(17, 17, 17, 0.12));
}

.delivery-visual i {
  position: absolute;
  top: 25px;
  right: 15px;
  background: var(--yellow);
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  padding: 8px 10px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  font-style: normal;
}

.snack-visual span {
  font-size: 85px;
  filter: drop-shadow(5px 6px 0 rgba(17, 17, 17, 0.12));
  transform: rotate(-6deg);
}

.snack-visual span + span {
  font-size: 75px;
  transform: rotate(10deg);
  margin-left: -15px;
}

.vendor-visual span {
  font-size: 110px;
  filter: drop-shadow(6px 8px 0 rgba(17, 17, 17, 0.12));
}

.vendor-visual i {
  position: absolute;
  top: 25px;
  right: 20px;
  font-size: 30px;
  color: var(--orange);
  font-style: normal;
}

.offer-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.04em;
  margin: 0 0 8px;
  color: var(--ink);
}

.offer-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
  max-width: 210px;
}

.card-arrow-btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: var(--border);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 2px 2px 0 var(--green);
  transition: transform 0.2s ease, background 0.2s ease;
}

.card-arrow-btn:hover {
  transform: translateY(-2px);
  background: var(--green-light);
}

/* ==========================================================================
   SECTION 04: HOW IT WORKS (Chowdeck "Get started in 3" Forest Green, Image 3)
   ========================================================================== */
.steps-section {
  background: var(--green);
  color: #FFFFFF;
  border-top: var(--border);
  border-bottom: var(--border);
}

.steps-section .section-heading h2 {
  color: #FFFFFF;
}

.steps-section .section-heading h2 em {
  color: var(--yellow);
}

.steps-section .eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: var(--yellow);
}

.steps-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.steps-aside {
  max-width: 280px;
  line-height: 1.6;
  font-size: 15px;
  color: #D4EDDF;
  margin: 0 0 10px 0;
}

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

.step-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.25s ease, background 0.25s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.step-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--yellow);
  background: rgba(255, 201, 40, 0.15);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
}

.step-art {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 80px;
  color: var(--yellow);
  position: relative;
}

.step-art i {
  font-style: normal;
  font-size: 48px;
  position: absolute;
  filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.2));
}

.step-search i { right: 24%; top: 40px; }
.step-order i { right: 25%; top: 25px; color: var(--orange); font-size: 32px; }
.step-chow i { right: 26%; top: 32px; }

.step-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.035em;
  margin: 0 0 10px;
  color: #FFFFFF;
}

.step-card p {
  font-size: 15px;
  line-height: 1.55;
  color: #D4EDDF;
  margin: 0;
}

/* ==========================================================================
   SECTION 05: CAMPUS LIFE & APP DOWNLOAD (Chowdeck Dark Bento, Image 4)
   ========================================================================== */
.campus-download-wrapper {
  background: var(--dark-bg);
  color: #FFFFFF;
}

.campus-download-bento {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

/* Left Bento: Forest Green with App Store Pills */
.bento-card-green {
  background: var(--green);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.eyebrow-light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--yellow-pastel);
}

.bento-card-green h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 18px 0;
  color: #FFFFFF;
}

.bento-card-green h2 em {
  font-style: normal;
  color: var(--yellow);
}

.bento-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #D4EDDF;
  margin: 0 0 36px;
  max-width: 440px;
}

.app-store-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
  max-width: 320px;
}

.store-pill {
  background: #FFFFFF;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius-pill);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, background 0.2s ease;
}

.store-pill:hover {
  transform: translateY(-3px);
  background: #F4F4F0;
}

.store-icon {
  flex-shrink: 0;
}

/* Right Bento: App UI & Campus Mosaic */
.bento-card-phone {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.phone-mockup-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.phone-rating-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.back-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-badge strong {
  font-size: 26px;
  font-family: var(--font-display);
  font-weight: 800;
  color: #FFFFFF;
}

.stars {
  color: var(--yellow);
  font-size: 16px;
  letter-spacing: 2px;
}

.rating-badge small {
  color: #999;
  font-size: 12px;
}

.campus-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mosaic-card {
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--ink);
  transition: transform 0.25s ease;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.mosaic-card:hover {
  transform: translateY(-4px);
}

.mosaic-card span {
  font-size: 32px;
  margin-bottom: 12px;
}

.mosaic-card strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.mosaic-card small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 8px;
  font-weight: 700;
  color: var(--ink-soft);
}

.mosaic-lecture { background: var(--pink-pastel); }
.mosaic-hostel { background: var(--yellow-pastel); }
.mosaic-study { background: var(--mint-pastel); }
.mosaic-weekend { background: var(--blue-pastel); }

/* ==========================================================================
   SECTION 06: VENDORS
   ========================================================================== */
.vendor-section {
  background: var(--yellow-pastel);
  color: var(--ink);
  border-top: var(--border);
  border-bottom: var(--border);
}

.vendor-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

.vendor-copy h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin: 0;
}

.vendor-copy h2 em {
  font-style: normal;
  color: var(--green);
}

.vendor-copy p {
  font-size: 16px;
  line-height: 1.6;
  margin: 24px 0 30px;
  max-width: 480px;
}

.vendor-list {
  background: #FFFFFF;
  border: var(--border);
  border-radius: var(--radius-xl);
  padding: 30px 36px;
  box-shadow: 0 8px 0 var(--green);
}

.vendor-list div {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1.5px solid rgba(12, 81, 63, 0.12);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.vendor-list div:last-child {
  border-bottom: 0;
}

.vendor-list b {
  font-size: 12px;
  color: var(--green);
  background: var(--green-light);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   SECTION 07: COMMUNITY
   ========================================================================== */
.community-section {
  background: var(--paper);
}

.community-card {
  background: var(--mint-pastel);
  border: var(--border);
  border-radius: var(--radius-xl);
  min-height: 440px;
  padding: 64px 70px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 0 var(--green);
}

.community-copy {
  position: relative;
  z-index: 2;
  max-width: 480px;
}

.community-copy h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin: 0;
}

.community-copy h2 em {
  font-style: normal;
  color: var(--green);
}

.community-copy p {
  font-size: 16px;
  line-height: 1.6;
  margin: 24px 0 32px;
}

.community-stack {
  position: absolute;
  right: 80px;
  top: 50px;
  width: 260px;
  height: 340px;
}

.stack-note {
  position: absolute;
  width: 190px;
  height: 140px;
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  box-shadow: 6px 6px 0 var(--ink);
}

.stack-note strong {
  font-size: 28px;
  display: block;
  margin-top: 6px;
}

.note-one {
  background: var(--cream);
  transform: rotate(-10deg);
  top: 15px;
  left: 15px;
}

.note-two {
  background: var(--orange);
  color: #fff;
  top: 85px;
  right: 0;
  transform: rotate(8deg);
}

.note-three {
  background: var(--green);
  color: #fff;
  bottom: 10px;
  left: 10px;
  transform: rotate(-4deg);
}

.doodle-left {
  position: absolute;
  left: 30px;
  top: 30px;
  font-size: 36px;
  color: var(--green);
}

/* ==========================================================================
   SECTION 08: FAQ
   ========================================================================== */
.faq-section-wrapper {
  background: var(--paper);
}

.faq-grid,
.faq-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  background: var(--paper);
}

.faq-list details {
  background: #FFFFFF;
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 14px;
  transition: all 0.25s ease;
}

.faq-list details[open] {
  border-color: var(--green);
  background: var(--green-light);
}

summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  font-size: 24px;
  font-weight: 400;
  color: var(--green);
  transition: transform 0.25s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 15px;
  margin: 14px 0 0;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta {
  background: var(--green);
  color: #FFFFFF;
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: var(--border);
}

.final-inner {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
}

.final-inner .eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: var(--yellow);
}

.final-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin: 18px 0;
  color: #FFFFFF;
}

.final-inner h2 em {
  font-style: normal;
  color: var(--yellow);
}

.final-inner p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.6;
  color: #D4EDDF;
  margin: 0 auto 36px;
  max-width: 440px;
}

.final-inner .button {
  background: #FFFFFF;
  color: var(--green);
  font-size: 16px;
  padding: 16px 32px;
}

.final-inner .button:hover {
  background: var(--yellow);
  color: var(--ink);
}

.final-scribble {
  position: absolute;
  color: var(--yellow);
}

.scribble-one {
  left: 12%;
  top: 20%;
  font-size: 50px;
}

.scribble-two {
  right: 14%;
  bottom: 25%;
  font-size: 80px;
  transform: rotate(-12deg);
}

.final-food {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  font-size: 90px;
  letter-spacing: 50px;
  opacity: 0.25;
  pointer-events: none;
}

/* ==========================================================================
   WAITLIST MODAL
   ========================================================================== */
.waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.waitlist-modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 13, 0.65);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  z-index: 2;
  width: min(600px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  animation: modal-in 0.25s ease;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: none; }
}

.form-card {
  background: #FFFFFF;
  border: var(--border);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  position: relative;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  border: 0;
  background: var(--green-light);
  color: var(--green);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--green);
  color: #FFFFFF;
}

.form-header {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: var(--border-subtle);
  padding-bottom: 24px;
  margin-bottom: 26px;
}

.form-stamp {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10px;
  line-height: 1.1;
  transform: rotate(-10deg);
  background: var(--green-light);
}

.form-header h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--ink);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

input, select {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 2px solid #D5D5CE;
  padding: 10px 0 8px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s ease;
}

input:focus, select:focus {
  border-color: var(--green);
}

.optional {
  text-transform: none;
  font-weight: 400;
  color: var(--muted);
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.form-cancel {
  width: 100%;
  background: #FFFFFF;
  color: var(--ink);
  border: 2px solid rgba(12, 81, 63, 0.2);
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  order: 1;
}

.form-cancel:hover {
  background: #FFF5F2;
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.form-submit {
  width: 100%;
  margin-top: 0;
  padding: 16px 24px;
  font-size: 15px;
  justify-content: space-between;
  order: 2;
}

.modal-done-btn {
  padding: 14px 28px;
}

.form-footnote {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin: 16px 0 0;
}

.success-state {
  display: none;
  text-align: center;
  padding: 20px;
}

.success-state.visible {
  display: block;
}

.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-bright);
  color: #FFFFFF;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-state h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.04em;
  color: var(--green);
  margin: 0 0 10px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--green-dark);
  color: var(--cream);
  padding: 80px 0 30px;
  border-top: var(--border);
}

.footer-brand {
  margin-bottom: 16px;
}

.footer p {
  color: #B2D8C6;
  font-size: 15px;
  line-height: 1.5;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
}

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

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links b {
  font-size: 11px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.footer-links a {
  font-size: 14px;
  color: #D4EDDF;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: #92C0AC;
  font-size: 12px;
}

/* ==========================================================================
   ANIMATIONS & REVEALS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: 0.15s;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (Mobile, Tablet, Desktop)
   ========================================================================== */

/* --- Tablets & Smaller Laptops (<= 1024px) --- */
@media (max-width: 1024px) {
  .nav-island-center {
    display: none;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }
  
  .hero-copy {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero-address-bar {
    margin: 24px auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-art {
    margin: 0 auto;
    transform: scale(0.85);
    transform-origin: center top;
    height: 450px;
    max-width: 100%;
  }
  
  .problem-grid, .offer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .campus-download-bento {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  
  .vendor-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .faq-grid,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-skyline {
    height: 180px;
    margin-top: -60px;
  }
}

/* --- Standard Tablets & Mobile Landscape (<= 768px) --- */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  .menu-toggle {
    display: flex;
  }
  
  .nav-cta {
    display: none;
  }
  
  .shell {
    width: calc(100% - 32px);
  }
  
  .section-pad {
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2 {
    font-size: clamp(32px, 6.5vw, 48px);
  }

  .hero-section,
  .hero {
    padding-top: 115px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .hero h1 {
    font-size: clamp(38px, 8vw, 54px);
    letter-spacing: -0.04em;
  }

  .hero-text {
    font-size: 16px;
    margin: 18px 0 22px;
  }

  .hero-address-bar {
    width: 100%;
    max-width: 100%;
    margin: 22px auto 18px;
  }

  .hero-search-input {
    min-width: 0;
  }

  .hero-art {
    transform: scale(0.68);
    transform-origin: center top;
    height: 350px;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-skyline {
    height: 140px;
    margin-top: -35px;
  }
  
  .problem-grid, .offer-grid, .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .problem-card {
    min-height: auto;
    padding: 24px 20px;
  }

  .problem-card .card-icon {
    font-size: 52px;
    margin: 22px 0 8px;
  }

  .offer-card {
    min-height: auto;
    padding: 26px 20px 32px;
  }

  .offer-visual {
    height: 150px;
  }

  .steps-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }

  .steps-aside {
    max-width: 100%;
  }

  .bento-card-green {
    padding: 40px 24px;
  }

  .bento-card-green h2 {
    font-size: 34px;
  }

  .bento-card-phone {
    padding: 28px 20px;
  }

  .vendor-list {
    padding: 24px 20px;
  }

  .community-stack {
    display: none;
  }
  
  .community-card {
    padding: 44px 24px;
    min-height: auto;
  }

  .final-cta {
    padding: 85px 0 75px;
  }

  .final-food {
    font-size: 48px;
    letter-spacing: 16px;
    bottom: -10px;
  }

  .final-scribble {
    display: none;
  }

  /* Modal Form */
  .waitlist-modal {
    padding: 14px;
  }

  .modal-panel {
    max-height: 94vh;
  }

  .form-card {
    padding: 32px 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .form-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .form-cancel,
  .form-submit {
    width: 100%;
    min-height: 48px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 36px;
  }
  
  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* --- Standard Mobile Phones (<= 480px) --- */
@media (max-width: 480px) {
  .shell {
    width: calc(100% - 24px);
  }

  .site-header {
    top: 10px;
  }

  .nav-container {
    gap: 8px;
  }

  .brand-pill {
    padding: 8px 14px;
    gap: 7px;
  }

  .brand-pill .brand-title {
    font-size: 15px;
  }

  .campus-pill {
    padding: 7px 10px;
    font-size: 12px;
    gap: 4px;
  }

  .campus-pill .chevron-down {
    display: none;
  }

  .cart-pill-button {
    width: 40px;
    height: 40px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .mobile-menu {
    top: 64px;
    left: 12px;
    right: 12px;
    padding: 20px 16px;
    gap: 14px;
  }

  .hero-section,
  .hero {
    padding-top: 100px;
  }

  .hero h1 {
    font-size: 34px !important;
    line-height: 1.05;
    letter-spacing: -0.035em;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.5;
    margin: 14px 0 20px;
  }

  .hero-address-bar {
    padding: 5px 6px 5px 14px;
    gap: 8px;
  }

  .hero-search-input {
    font-size: 14px;
    min-width: 0;
  }

  .hero-search-btn {
    padding: 10px 16px;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-art {
    transform: scale(0.56);
    transform-origin: center top;
    height: 280px;
    max-width: 100%;
    margin-top: 10px;
  }

  .hero-skyline {
    height: 105px;
    margin-top: -20px;
  }

  .section-pad {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .section-heading h2 {
    font-size: 28px !important;
    line-height: 1.08;
  }

  .step-card {
    padding: 22px 16px;
  }

  .step-art {
    height: 100px;
    font-size: 60px;
  }

  .step-card h3 {
    font-size: 21px;
  }

  .bento-card-green {
    padding: 30px 18px;
  }

  .bento-card-green h2 {
    font-size: 28px !important;
  }

  .app-store-actions {
    max-width: 100%;
  }

  .store-pill {
    padding: 12px 18px;
    font-size: 13px;
  }

  .bento-card-phone {
    padding: 22px 16px;
  }

  .mosaic-card {
    padding: 14px 12px;
  }

  .mosaic-card span {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .mosaic-card strong {
    font-size: 16px;
  }

  .community-card {
    padding: 34px 18px;
  }

  .community-copy h2 {
    font-size: 28px !important;
  }

  .faq-list details {
    padding: 16px 16px;
  }

  summary {
    font-size: 15px;
  }

  .final-cta {
    padding: 70px 0 60px;
  }

  .final-inner h2 {
    font-size: 30px !important;
  }

  .final-food {
    font-size: 36px;
    letter-spacing: 8px;
  }

  /* Modal Form */
  .waitlist-modal {
    padding: 8px;
  }

  .form-card {
    padding: 24px 16px;
  }

  .form-header {
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 18px;
  }

  .form-stamp {
    width: 44px;
    height: 44px;
    font-size: 8px;
  }

  .form-header h3 {
    font-size: 20px;
  }

  .modal-close {
    width: 32px;
    height: 32px;
    font-size: 20px;
    top: 14px;
    right: 14px;
  }

  .form-footnote {
    font-size: 11px;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* --- Tiny Mobile Screens (<= 360px - e.g. iPhone SE 1st gen, Galaxy A01) --- */
@media (max-width: 360px) {
  .campus-pill .pill-badge-code {
    display: none;
  }

  .brand-pill {
    padding: 7px 10px;
  }

  .brand-pill .brand-title {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 29px !important;
  }

  .hero-art {
    transform: scale(0.48);
    height: 240px;
  }

  .hero-skyline {
    height: 85px;
    margin-top: -10px;
  }

  .hero-search-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}