/* ═══════════════════════════════════════════
   PRPD — style.css
   ═══════════════════════════════════════════ */

/* ── Fonts ── */
@font-face {
  font-family: 'Cathez';
  src: url('fonts/Cathez.otf') format('opentype'),
       url('fonts/Cathez.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --green:       #1E2E1E;
  --green-mid:   #2d422d;
  --cream:       #ECE7DF;
  --cream-dark:  #DDD8CE;
  --sage:        #7FA882;
  --sage-light:  #A8C4AB;
  --text:        #1E2E1E;
  --text-muted:  #4a5e4a;
  --white:       #FDFAF6;
  --banner-h:    36px;

  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   28px;
  --radius-xl:   40px;
  --radius-pill: 100px;

  --shadow-sm:   0 2px 12px rgba(30,46,30,0.07);
  --shadow-md:   0 6px 32px rgba(30,46,30,0.11);
  --shadow-lg:   0 16px 60px rgba(30,46,30,0.16);
  --shadow-xl:   0 28px 80px rgba(30,46,30,0.20);

  --font-body:   'DM Sans', sans-serif;
  --font-brand:  'Cathez', serif;
}

[hidden] { display: none !important; }

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent 0px,
      transparent 46px,
      rgba(30, 46, 30, 0.065) 46px,
      rgba(30, 46, 30, 0.065) 48px
    ),
    repeating-linear-gradient(
      45deg,
      transparent 0px,
      transparent 46px,
      rgba(30, 46, 30, 0.038) 46px,
      rgba(30, 46, 30, 0.038) 48px
    );
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.45;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

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

/* ── Typography ── */
h1, h2, h3 { line-height: 1.12; letter-spacing: -0.025em; }

.section-title {
  font-size: clamp(2.3rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

.section-label {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(127,168,130,0.13);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 4px 22px rgba(30,46,30,0.28);
}
.btn--primary:hover {
  background: var(--green-mid);
  box-shadow: 0 8px 32px rgba(30,46,30,0.38);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--green);
  border: 2px solid rgba(30,46,30,0.22);
}
.btn--outline:hover {
  background: rgba(30,46,30,0.06);
  border-color: rgba(30,46,30,0.4);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--green);
  border: 1.5px solid rgba(30,46,30,0.18);
}
.btn--ghost:hover {
  background: rgba(30,46,30,0.06);
}

.btn--cream {
  background: var(--cream);
  color: var(--green);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn--cream:hover {
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   SERVICE AREA BANNER
══════════════════════════════════════ */
.service-banner {
  background: var(--green);
  color: rgba(236,231,223,0.72);
  text-align: center;
  padding: 0 20px;
  height: var(--banner-h);
  font-size: 0.77rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  line-height: 1;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 110;
}
.service-banner strong { color: var(--cream); font-weight: 600; }
.service-banner svg { opacity: 0.65; flex-shrink: 0; }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav {
  position: fixed;
  top: var(--banner-h); left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(236,231,223,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30,46,30,0.07);
  transition: padding 0.3s ease, background 0.3s ease;
}
.nav.scrolled {
  padding: 12px 48px;
  background: rgba(236,231,223,0.97);
}

.nav__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.logo-mark {
  font-family: var(--font-brand);
  font-size: 1.65rem;
  color: var(--green);
  letter-spacing: 0.12em;
  line-height: 1;
}
.logo-mark--sm { font-size: 1.35rem; }

.logo-sub {
  font-size: 0.54rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  line-height: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: all 0.18s ease;
}
.nav__link:hover {
  color: var(--green);
  background: rgba(30,46,30,0.06);
}

.nav__cta {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--cream);
  background: var(--green);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  margin-left: 8px;
}
.nav__cta:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(30,46,30,0.25);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: calc(130px + var(--banner-h)) 80px 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(127,168,130,0.1) 0%, transparent 65%);
  pointer-events: none;
}

/* Left col — force vertical stack so badge always sits above logo */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(127,168,130,0.12);
  border: 1px solid rgba(127,168,130,0.3);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.logo-full {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
}

.logo-full__text {
  font-family: var(--font-brand);
  font-size: clamp(4rem, 8vw, 8rem);
  color: var(--green);
  letter-spacing: 0.12em;
  font-weight: normal;
  line-height: 1;
  white-space: nowrap;
}

.logo-full__diamond {
  color: var(--sage);
  font-size: 0.55rem;
  margin: 4px 0;
}

.logo-full__tagline {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
}

.hero__sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  max-width: 420px;
  font-weight: 400;
  line-height: 1.6;
}

.hero__desc {
  font-size: 0.97rem;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 36px;
  opacity: 0.8;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero__schedule {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px 16px;
  margin: -26px 0 28px;
  color: var(--text-muted);
  font-size: 0.78rem;
}
.hero__schedule strong { color: var(--green); }
.hero__schedule span { position: relative; padding-left: 16px; }
.hero__schedule span::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--sage);
  font-size: 0.55rem;
}

/* Stats row */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 22px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(30,46,30,0.08);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.hero__stat-val {
  font-family: var(--font-brand);
  font-size: 1.6rem;
  color: var(--green);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 3px;
}

.hero__stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__stat-div {
  width: 1px;
  height: 36px;
  background: rgba(30,46,30,0.1);
}

/* Social follow block */
.hero__follow {
  margin-top: 28px;
}
.hero__follow-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.hero__follow-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.follow-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(30,46,30,0.15);
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--green);
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.follow-pill:hover {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.follow-pill svg { flex-shrink: 0; }

/* Right col — visual cluster */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__cluster {
  position: relative;
  width: 480px;
  height: 480px;
  transform: translate3d(var(--hero-shift-x, 0), var(--hero-shift-y, 0), 0);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
  background: var(--green);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
}

.hero__circle img,
.menu-card__img img,
.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Brighten hero food photos in the intro cluster */
.hero__circle img { filter: brightness(1.12) saturate(1.06); }

/* Halal cart chicken is naturally darker — boost it wherever it appears */
img[src*="halal-cart-chicken"] { filter: brightness(1.28) saturate(1.1) contrast(1.03); }

.hero__circle img[hidden],
.menu-card__img img[hidden],
.about__img img[hidden] {
  display: none !important;
}

.hero__circle img:not([hidden]) + .hero__img-ph,
.menu-card__img img:not([hidden]) + .menu-card__img-ph,
.about__img img:not([hidden]) + .about__img-ph {
  display: none;
}

.hero__circle--lg {
  width: 300px; height: 300px;
  top: 50px; left: 80px;
  animation: heroDriftLarge 9s ease-in-out infinite;
}

.hero__circle--md {
  width: 190px; height: 190px;
  top: 20px; right: 20px;
  background: #2a3e2a;
  animation: heroDriftMedium 7.5s ease-in-out infinite;
}

.hero__circle--sm {
  width: 130px; height: 130px;
  bottom: 50px; left: 30px;
  background: var(--sage);
  animation: heroDriftSmall 8.5s ease-in-out infinite;
}

@keyframes heroDriftLarge {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(-5px, -8px, 0) rotate(-0.8deg); }
}

@keyframes heroDriftMedium {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(7px, -5px, 0); }
}

@keyframes heroDriftSmall {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-4px, 7px, 0); }
}

.hero__img-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(236,231,223,0.35);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}
.hero__img-ph span { font-size: 2rem; opacity: 0.5; }

/* Floating badges */
.hero__float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(30,46,30,0.08);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: floatBob 4s ease-in-out infinite;
}

.hero__float--protein {
  padding: 10px 18px;
  bottom: 120px;
  right: 0;
  flex-direction: column;
  gap: 2px;
  border-radius: var(--radius-md);
  animation-delay: 0s;
}

.hero__float--halal {
  padding: 8px 16px;
  top: 10px;
  left: 20px;
  animation-delay: 1.3s;
}

.hero__float--fresh {
  padding: 8px 16px;
  bottom: 30px;
  right: 20px;
  animation-delay: 0.7s;
}

.float-num {
  font-family: var(--font-brand);
  font-size: 1.8rem;
  color: var(--green);
  line-height: 1;
  letter-spacing: 0.05em;
}

.float-lbl {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.float-icon {
  color: var(--sage);
  font-size: 0.9rem;
}

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

/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.marquee {
  background: var(--green);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  will-change: transform;
  animation: marqueeScroll 36s linear infinite;
}

.marquee__track span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(236,231,223,0.55);
  white-space: nowrap;
}

.marquee__dot {
  color: var(--sage) !important;
  font-size: 0.45rem !important;
  letter-spacing: 0 !important;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* ══════════════════════════════════════
   WEEKLY ORDER PATH
══════════════════════════════════════ */
.weekly-order {
  padding: 70px 0;
  background: var(--green);
  color: var(--cream);
}
.weekly-order__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 34px 64px;
  align-items: center;
}
.weekly-order .section-label {
  color: var(--sage-light);
  background: rgba(127,168,130,0.14);
}
.weekly-order h2 {
  margin: 16px 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: 0;
}
.weekly-order__copy p {
  max-width: 620px;
  color: rgba(236,231,223,0.68);
  font-size: 1rem;
  line-height: 1.75;
}
.weekly-order__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(236,231,223,0.16);
  border-left: 1px solid rgba(236,231,223,0.16);
}
.weekly-order__details div {
  min-height: 96px;
  padding: 20px;
  border-right: 1px solid rgba(236,231,223,0.16);
  border-bottom: 1px solid rgba(236,231,223,0.16);
}
.weekly-order__details span,
.weekly-order__details strong { display: block; }
.weekly-order__details span {
  margin-bottom: 6px;
  color: var(--sage-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.weekly-order__details strong {
  color: var(--cream);
  font-size: 0.9rem;
  line-height: 1.4;
}
.weekly-order__cta {
  grid-column: 1 / -1;
  justify-self: start;
}

/* ══════════════════════════════════════
   VALUES
══════════════════════════════════════ */
.values {
  background: var(--green);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.values::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(127,168,130,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.values .section-label {
  color: var(--sage-light);
  background: rgba(127,168,130,0.14);
}
.values .section-title { color: var(--cream); }

/* Top row: heading left, intro text right */
.values__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}

.values__intro {
  font-size: 1.05rem;
  color: rgba(236,231,223,0.55);
  line-height: 1.8;
  padding-bottom: 6px;
}

/* Feature columns — open grid, no card borders */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.value-feat {
  padding: 52px 40px 52px 0;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
  transition: all 0.3s ease;
}
.value-feat:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 40px;
}
.value-feat--center {
  padding-left: 40px;
}
.value-feat:hover { opacity: 0.92; }

/* Large muted number in background */
.value-feat__num {
  font-family: var(--font-brand);
  font-size: 5rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  position: absolute;
  top: 36px; right: 24px;
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
}
.value-feat:last-child .value-feat__num { right: 0; }

/* Icon */
.value-feat__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(127,168,130,0.12);
  border: 1px solid rgba(127,168,130,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--sage-light);
  transition: all 0.25s ease;
}
.value-feat__icon svg { width: 30px; height: 30px; }
.value-feat:hover .value-feat__icon {
  background: rgba(127,168,130,0.2);
  transform: scale(1.05);
}

.value-feat__pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}

.value-feat h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.2;
}

.value-feat p {
  font-size: 0.97rem;
  color: rgba(236,231,223,0.55);
  line-height: 1.75;
}

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.how {
  padding: 110px 0;
}

.how__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.how__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 18px;
  max-width: 340px;
  line-height: 1.75;
}

.how__cta {
  margin-top: 32px;
}

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

.step {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 26px 30px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(30,46,30,0.07);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}
.step:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.step__num {
  font-family: var(--font-brand);
  font-size: 2.2rem;
  color: var(--sage);
  opacity: 0.65;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
  letter-spacing: 0.05em;
}

.step__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 7px;
}
.step__body p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.step__connector {
  display: flex;
  justify-content: center;
  padding: 4px 0;
  margin-left: 56px;
}

/* ══════════════════════════════════════
   MENU
══════════════════════════════════════ */
.menu {
  padding: 110px 0;
  background: var(--green);
  position: relative;
}

.menu .section-label {
  color: var(--sage-light);
  background: rgba(127,168,130,0.14);
}
.menu .section-title { color: var(--cream); }

.menu__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 24px;
  flex-wrap: wrap;
}

.menu__sub {
  color: rgba(236,231,223,0.6);
  font-size: 1rem;
  margin-top: 10px;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.menu-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
}
.menu-card--featured {
  background: rgba(127,168,130,0.09);
  border-color: rgba(127,168,130,0.2);
}

.menu-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.04);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.menu-card__img-ph { font-size: 2.5rem; opacity: 0.28; }

.menu-card__body { padding: 24px; }

.menu-card__badges {
  display: flex;
  gap: 8px;
  margin-bottom: 13px;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
}
.badge--halal  { background: rgba(127,168,130,0.2); color: var(--sage-light); border: 1px solid rgba(127,168,130,0.3); }
.badge--clean  { background: rgba(255,255,255,0.06); color: rgba(236,231,223,0.7); border: 1px solid rgba(255,255,255,0.1); }
.badge--dessert  { background: rgba(200,170,130,0.15); color: rgba(220,190,150,0.9); border: 1px solid rgba(200,170,130,0.2); }
.badge--breakfast{ background: rgba(230,180,100,0.15); color: rgba(240,195,120,0.9); border: 1px solid rgba(230,180,100,0.2); }

.menu-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 7px;
}
.menu-card__desc {
  font-size: 0.92rem;
  color: rgba(236,231,223,0.55);
  margin-bottom: 18px;
  line-height: 1.55;
}

.menu-card__macros {
  display: flex;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.macro { display: flex; flex-direction: column; gap: 3px; }
.macro__val {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(236,231,223,0.82);
  line-height: 1;
}
.macro__label {
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(236,231,223,0.4);
}
.macro--highlight .macro__val  { color: var(--sage-light); }
.macro--highlight .macro__label{ color: var(--sage); }

.menu__note {
  text-align: center;
  font-size: 0.88rem;
  color: rgba(236,231,223,0.38);
  font-style: italic;
  letter-spacing: 0.03em;
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about {
  padding: 110px 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__images {
  position: relative;
  height: 440px;
}

.about__img {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
}
.about__img-ph { font-size: 2rem; opacity: 0.28; color: var(--cream); }

.about__img--1 { width: 260px; height: 260px; top: 20px; left: 20px; }
.about__img--1 img { object-position: center 25%; }
.about__images--rida .about__img--1 {
  width: 330px;
  height: 330px;
  top: 30px;
  left: 40px;
  animation: ridaPortraitFloat 8s ease-in-out infinite;
}

.about__rida-note {
  position: absolute;
  right: 4px;
  bottom: 70px;
  z-index: 22;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 15px 19px;
  border: 1px solid rgba(30,46,30,0.1);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--green);
  box-shadow: var(--shadow-md);
}
.about__rida-note span {
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about__rida-note strong { font-size: 0.88rem; }

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

.about__handwritten {
  display: block;
  font-family: 'Brush Script MT', cursive;
  color: var(--sage);
  pointer-events: none;
  font-style: italic;
  line-height: 1.2;
  white-space: nowrap;
}
.about__handwritten-strip {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.about__handwritten--1 {
  font-size: 1.2rem;
  transform: rotate(-4deg);
  color: var(--sage);
}
.about__handwritten--2 {
  font-size: 1rem;
  transform: rotate(3deg);
  color: var(--text-muted);
  opacity: 0.8;
}

.about__p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.about__tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(30,46,30,0.07);
  border: 1px solid rgba(30,46,30,0.12);
  padding: 7px 17px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════
   FORM SECTION
══════════════════════════════════════ */
.customer-proof {
  padding: 110px 0;
  color: var(--cream);
  background: var(--green);
}
.customer-proof__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 72px;
  align-items: center;
}
.customer-proof .section-label { color: var(--sage-light); background: rgba(127,168,130,.14); }
.customer-proof .section-title { margin-bottom: 22px; color: var(--cream); }
.customer-proof__copy > p { max-width: 590px; color: rgba(236,231,223,.72); font-size: 1.05rem; line-height: 1.8; }
.customer-proof__disclosure { display: block; margin: 0 0 28px; color: rgba(236,231,223,.52); font-size: .75rem; }
.customer-proof__media { margin: 0; padding: 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 30px; background: rgba(255,255,255,.07); box-shadow: var(--shadow-xl); }
.customer-proof__media video { display: block; width: 100%; max-height: 650px; aspect-ratio: 9 / 16; border-radius: 20px; background: #101c13; object-fit: cover; }
.customer-proof__media figcaption { padding: 12px 4px 2px; color: rgba(236,231,223,.62); font-size: .78rem; text-align: center; }

.form-section {
  padding: 110px 0 130px;
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(127,168,130,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.form-section .section-label {
  color: var(--sage-light);
  background: rgba(127,168,130,0.14);
}
.form-section .section-title { color: var(--cream); margin-bottom: 10px; }

.form-section__sub {
  color: rgba(236,231,223,0.6);
  font-size: 1.05rem;
}

.form-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.form-section__aside {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-menu-route {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(168,196,171,0.22);
  border-radius: var(--radius-lg);
  background: rgba(127,168,130,0.1);
}
.form-menu-route__eyebrow {
  display: block;
  margin-bottom: 5px;
  color: var(--sage-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-menu-route p {
  max-width: 690px;
  color: rgba(236,231,223,0.72);
  font-size: 0.94rem;
  line-height: 1.55;
}
.form-menu-route .btn { flex-shrink: 0; }

.form-aside-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  flex: 1 1 calc(50% - 8px);
  max-width: calc(50% - 8px);
}
.form-aside-card__icon {
  color: var(--sage-light);
  font-size: 1rem;
  margin-bottom: 8px;
}
.form-aside-card p {
  font-size: 0.9rem;
  color: rgba(236,231,223,0.75);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 8px;
}
.form-aside-card span {
  font-size: 0.74rem;
  color: rgba(236,231,223,0.38);
  letter-spacing: 0.05em;
}

.form-wrap {
  max-width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 52px 56px;
  backdrop-filter: blur(10px);
}

#intake-form { scroll-margin-top: calc(112px + var(--banner-h)); }

.form-privacy {
  color: rgba(236,231,223,0.58);
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Form area notice */
.form-area-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(236,231,223,0.62);
  margin-top: 6px;
  padding: 9px 13px;
  background: rgba(127,168,130,0.12);
  border-radius: var(--radius-sm);
  border-left: 2.5px solid rgba(127,168,130,0.45);
  line-height: 1.4;
}
.form-area-note svg { flex-shrink: 0; opacity: 0.75; }

/* Progress */
.form-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.progress-bar__fill {
  height: 100%;
  background: var(--sage-light);
  border-radius: var(--radius-pill);
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
  width: 25%;
}
.progress-bar__fill.step-1 { width: 25%; }
.progress-bar__fill.step-2 { width: 50%; }
.progress-bar__fill.step-3 { width: 75%; }
.progress-bar__fill.step-4 { width: 100%; }
.progress-label {
  font-size: 0.78rem;
  color: rgba(236,231,223,0.5);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Form steps */
.form-step { display: none; animation: fadeSlideIn 0.35s ease; }
.form-step.active { display: block; }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

.form-step__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}

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

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(236,231,223,0.75);
  margin-bottom: 9px;
  letter-spacing: 0.02em;
}
.req { color: var(--sage-light); }
.form-hint { font-size: 0.78rem; color: rgba(236,231,223,0.45); font-weight: 400; }
.optional-label { opacity: 0.5; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 17px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(236,231,223,0.28); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(236,231,223,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}
.form-group select option { background: #1E2E1E; color: var(--cream); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  background: rgba(255,255,255,0.1);
}
.form-group input.error { border-color: #e07070; }
.form-group textarea { resize: vertical; min-height: 105px; }

/* Choice pills */
.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.choice-group.validation-pulse {
  outline: 1.5px solid rgba(224,112,112,0.6);
  border-radius: 12px;
  padding: 6px;
}
.choice {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(236,231,223,0.75);
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s ease;
}
.choice:hover {
  border-color: rgba(127,168,130,0.5);
  color: var(--cream);
  background: rgba(127,168,130,0.08);
}
.choice.selected {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--green);
  font-weight: 700;
  box-shadow: 0 2px 14px rgba(127,168,130,0.32);
}

/* Multi-select chips (dietary restrictions) */
.choice.multi-selected {
  background: rgba(127,168,130,0.18);
  border-color: var(--sage);
  color: var(--cream);
  font-weight: 600;
}
.choice.multi-selected::before {
  content: '✓ ';
  font-size: 0.75rem;
}

/* Wider form grid for full-width layout */
.form-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.form-cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-nav {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.form-nav .btn--ghost {
  color: rgba(236,231,223,0.6);
  border-color: rgba(255,255,255,0.12);
}
.form-nav .btn--ghost:hover {
  color: var(--cream);
  background: rgba(255,255,255,0.06);
}
.btn--submit { flex: 1; }

/* Success */
.form-success {
  text-align: center;
  padding: 44px 20px;
  animation: fadeSlideIn 0.4s ease;
}
.form-success__icon {
  font-size: 2.5rem;
  color: var(--sage-light);
  margin-bottom: 20px;
  display: block;
}
.form-success h3 {
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 14px;
}
.form-success p {
  color: rgba(236,231,223,0.65);
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.65;
}
.form-success__sub a {
  color: var(--sage-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-success__socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.form-success__menu {
  margin: 18px auto 20px;
}

.form-success__socials .follow-pill {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: var(--cream);
  box-shadow: none;
}
.form-success__socials .follow-pill:hover {
  background: var(--sage-light);
  color: var(--green);
  border-color: var(--sage-light);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: #131e13;
  padding: 56px 0 40px;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__logo .logo-mark { color: var(--cream); }
.footer__logo .logo-sub  { color: var(--sage); }

.footer__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__nav-link {
  font-size: 0.9rem;
  color: rgba(236,231,223,0.5);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  transition: all 0.18s ease;
}
.footer__nav-link:hover { color: var(--cream); background: rgba(255,255,255,0.05); }

.footer__divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 28px;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__email {
  font-size: 0.85rem;
}

.footer__link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  color: rgba(236,231,223,0.55);
  transition: color 0.18s;
}
.footer__link:hover { color: var(--cream); }

.footer__sep { color: rgba(236,231,223,0.18); }

.footer__loc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: rgba(236,231,223,0.45);
}
.footer__copy {
  font-size: 0.8rem;
  color: rgba(236,231,223,0.22);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   360° SPIN VIEWER
══════════════════════════════════════ */
.spin {
  background: var(--green);
  padding: 100px 0;
  overflow: hidden;
}

.spin__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.spin__media {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spin__stage {
  width: 420px;
  height: 420px;
  position: relative;
  cursor: grab;
  user-select: none;
  background: radial-gradient(ellipse at center, rgba(127,168,130,0.14) 0%, transparent 65%);
  border-radius: 50%;
}
.spin__stage:active { cursor: grabbing; }

#spinCanvas {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 28px 50px rgba(0,0,0,0.65));
}

.spin__hint {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: rgba(236,231,223,0.4);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.7s ease;
}
.spin__hint.hidden { opacity: 0; pointer-events: none; }

.spin__info { flex: 1; color: var(--cream); }
.spin__info .section-label { color: var(--sage); }
.spin__info .section-title { color: var(--cream); margin-bottom: 18px; }

.spin__desc {
  font-size: 1rem;
  color: rgba(236,231,223,0.68);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 38px;
}

.spin__macros {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

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

.spin__macro-val {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
}

.spin__macro-label {
  font-size: 0.68rem;
  color: rgba(236,231,223,0.42);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 7px;
}

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (≤ 960px)
══════════════════════════════════════ */
@media (max-width: 960px) {
  .nav { padding: 16px 28px; }
  .nav.scrolled { padding: 11px 28px; }
  .nav__link { display: none; }

  .hero {
    grid-template-columns: 1fr;
    padding: calc(110px + var(--banner-h)) 28px 60px;
    text-align: center;
    gap: 48px;
  }
  .hero__content { order: 1; align-items: center; }
  .hero__visual  { order: 2; }
  .hero__sub  { margin: 0 auto 32px; }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__stats { margin: 0 auto; }
  .hero__follow-label { text-align: center; }
  .hero__follow-pills { justify-content: center; }
  .hero__schedule { justify-content: center; margin-left: auto; margin-right: auto; }

  .weekly-order__inner { grid-template-columns: 1fr; gap: 30px; }
  .weekly-order__copy { text-align: center; }
  .weekly-order__copy p { margin-left: auto; margin-right: auto; }
  .weekly-order__cta { justify-self: center; }

  .logo-full { align-items: center; }
  .logo-full__tagline { text-align: center; }

  .hero__cluster { width: 320px; height: 320px; }
  .hero__circle--lg { width: 200px; height: 200px; top: 30px; left: 50px; }
  .hero__circle--md { width: 130px; height: 130px; top: 10px; right: 10px; }
  .hero__circle--sm { width: 90px;  height: 90px;  bottom: 30px; left: 10px; }
  .hero__float--protein { right: 0; bottom: 80px; }
  .hero__float--halal   { top: 0; left: 0; }
  .hero__float--fresh   { bottom: 10px; right: 5px; }

  .values__top  { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .values__grid { grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,0.08); }
  .value-feat   { padding: 36px 24px 36px 0; border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
  .value-feat:last-child { border-right: none; padding-left: 0; padding-right: 0; grid-column: span 2; border-bottom: none; }
  .value-feat--center { padding-left: 24px; }
  .spin__stage  { width: 320px; height: 320px; }
  .spin__inner  { gap: 48px; }
  .menu__grid   { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .how__inner   { grid-template-columns: 1fr; gap: 48px; }
  .how__desc    { max-width: 100%; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__images { height: 340px; }
  .about__images--rida .about__img--1 { width: 270px; height: 270px; left: 50%; transform: translateX(-58%); }
  .about__images--rida .about__img--1 { animation: none; }
  .about__rida-note { right: 7%; bottom: 52px; }
  .customer-proof__inner { grid-template-columns: 1fr; gap: 40px; }
  .customer-proof__media { width: min(100%, 430px); }

  .form-section__header { align-items: flex-start; gap: 32px; }
  .form-section__aside { width: 100%; }
  .form-aside-card { max-width: calc(50% - 8px); flex: 1 1 280px; }
  .menu__header { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
══════════════════════════════════════ */
@media (max-width: 600px) {
  .nav { padding: 14px 18px; }
  .nav.scrolled { padding: 10px 18px; }
  .nav__cta {
    padding: 9px 16px;
    font-size: 0.86rem;
    margin-left: 0;
  }
  .logo-mark { font-size: 1.45rem; }
  .logo-sub { font-size: 0.48rem; }

  .hero { padding: calc(95px + var(--banner-h)) 18px 48px; gap: 36px; }
  .logo-full__text { font-size: 5rem; }
  .hero__badge {
    font-size: 0.66rem;
    padding: 6px 12px;
    white-space: normal;
    justify-content: center;
  }
  .hero__sub {
    font-size: 1.06rem;
    margin-bottom: 12px;
  }
  .hero__desc {
    font-size: 0.93rem;
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .hero__ctas {
    width: 100%;
    gap: 10px;
    margin-bottom: 34px;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .hero__schedule {
    justify-content: center;
    margin: -14px 0 24px;
    max-width: 330px;
    line-height: 1.5;
  }
  .hero__stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 18px 8px;
    border-radius: var(--radius-md);
  }
  .hero__stat-val  { font-size: 1.25rem; }
  .hero__stat      { padding: 0 6px; }
  .hero__stat-label { font-size: 0.58rem; }
  .hero__stat-div { display: none; }
  .hero__follow { margin-top: 22px; width: 100%; }
  .follow-pill {
    padding: 9px 14px;
    font-size: 0.82rem;
  }

  .hero__cluster { width: 280px; height: 280px; }
  .hero__circle--lg { width: 175px; height: 175px; top: 30px; left: 40px; }
  .hero__circle--md { width: 110px; height: 110px; top: 10px; right: 5px; }
  .hero__circle--sm { width: 80px;  height: 80px;  bottom: 20px; left: 5px; }

  .about__images { height: 410px; }
  .about__images--rida .about__img--1 {
    width: 240px;
    height: 240px;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
  }
  .about__rida-note {
    left: 50%;
    right: auto;
    bottom: 74px;
    width: max-content;
    max-width: calc(100% - 24px);
    transform: translateX(-50%);
    text-align: center;
  }
  .about__handwritten-strip {
    left: 0;
    right: 0;
    bottom: 8px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    text-align: center;
  }
  .about__handwritten--1 { font-size: 1.02rem; transform: rotate(-2deg); }
  .about__handwritten--2 { font-size: 0.92rem; transform: rotate(2deg); }

  .container { padding: 0 18px; }
  .section-title { font-size: clamp(2rem, 10vw, 2.55rem); }

  .values, .how, .menu, .about, .spin, .customer-proof { padding: 72px 0; }
  .customer-proof__inner { gap: 34px; }
  .customer-proof__media { width: 100%; }
  .weekly-order { padding: 58px 0; }
  .weekly-order__details { grid-template-columns: 1fr; }
  .weekly-order__details div { min-height: auto; padding: 17px 18px; }
  .weekly-order__cta { width: 100%; justify-content: center; }
  .spin__inner  {
    flex-direction: column;
    gap: 36px;
    text-align: center;
    align-items: center;
  }
  .spin__stage  { width: 270px; height: 270px; }
  .spin__desc   { margin: 0 auto 28px; }
  .spin__macros { justify-content: center; gap: 28px; }
  .spin__info .btn { width: 100%; justify-content: center; }
  .values__grid { grid-template-columns: 1fr; }
  .menu__grid   { grid-template-columns: 1fr; }
  .value-feat   { padding: 32px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .value-feat:last-child { grid-column: span 1; border-bottom: none; }
  .value-feat--center { padding-left: 0; }
  .form-section { padding: 80px 0 90px; }

  .form-section__header {
    margin-bottom: 34px;
  }
  .form-menu-route {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
    margin-bottom: 16px;
  }
  .form-menu-route .btn {
    width: 100%;
    justify-content: center;
  }
  .form-section__aside {
    flex-direction: column;
  }
  .form-aside-card {
    max-width: 100%;
    padding: 18px 20px;
  }
  .form-wrap { padding: 30px 20px; border-radius: var(--radius-lg); }
  .form-privacy {
    font-size: 0.84rem;
    padding: 12px 14px;
  }
  .form-row  { grid-template-columns: 1fr; }
  .form-progress {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .progress-bar { width: 100%; }
  .choice {
    min-height: 44px;
    padding: 10px 16px;
  }
  .form-nav {
    flex-direction: column-reverse;
  }
  .form-nav .btn,
  .form-step > .btn {
    width: 100%;
    justify-content: center;
  }
  .form-success {
    padding: 34px 4px;
  }
  .form-success h3 {
    font-size: 1.45rem;
  }

  .hero__float { font-size: 0.74rem; padding: 6px 12px; }
  .float-num   { font-size: 1.4rem; }

  .footer__top,
  .footer__bottom,
  .footer__socials,
  .footer__meta {
    align-items: flex-start;
  }
  .footer__nav {
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__circle,
  .hero__float,
  .about__images--rida .about__img--1,
  .hero__cluster,
  .marquee__track {
    animation: none !important;
  }
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   PRPD POLISHED HALO SYSTEM
═══════════════════════════════════════════════════════════ */
:root {
  --glass-light: rgba(253,250,246,.66);
  --glass-dark: rgba(255,255,255,.065);
  --halo-line: rgba(255,255,255,.64);
  --halo-shadow: 0 22px 58px rgba(30,46,30,.13);
}

body {
  background-image:
    radial-gradient(circle at 8% 10%, rgba(168,196,171,.22), transparent 25%),
    radial-gradient(circle at 92% 30%, rgba(255,255,255,.72), transparent 27%),
    repeating-linear-gradient(-45deg, transparent 0, transparent 46px, rgba(30,46,30,.05) 46px, rgba(30,46,30,.05) 48px),
    repeating-linear-gradient(45deg, transparent 0, transparent 46px, rgba(30,46,30,.03) 46px, rgba(30,46,30,.03) 48px);
}

.service-banner {
  background:
    radial-gradient(circle at 70% 0%, rgba(168,196,171,.17), transparent 34%),
    linear-gradient(100deg, #132819, #254530 56%, #18321f);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.08);
}

.nav {
  border-bottom-color: rgba(255,255,255,.68);
  background: rgba(236,231,223,.76);
  box-shadow: 0 12px 34px rgba(30,46,30,.07), inset 0 -1px 0 rgba(255,255,255,.5);
}
.nav.scrolled { background: rgba(246,242,235,.88); }

.section-label,
.hero__badge {
  border: 1px solid rgba(127,168,130,.3);
  background: linear-gradient(135deg, rgba(255,255,255,.55), rgba(127,168,130,.1));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 8px 22px rgba(30,46,30,.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn,
.nav__cta {
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 10px 25px rgba(30,46,30,.15);
}
.btn::after,
.nav__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  width: 72%;
  height: 48%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0));
  pointer-events: none;
}

.hero {
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 660px;
  height: 660px;
  left: -280px;
  bottom: -310px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127,168,130,.2), rgba(127,168,130,0) 68%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  padding: 38px;
  border: 1px solid var(--halo-line);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.67), rgba(253,250,246,.36));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), var(--halo-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hero__content::after {
  content: '';
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(127,168,130,.12);
  border-radius: 23px;
  pointer-events: none;
}
.hero__stats,
.follow-pill,
.hero__float {
  border-color: rgba(255,255,255,.78);
  background: linear-gradient(145deg, rgba(255,255,255,.78), rgba(253,250,246,.48));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 15px 34px rgba(30,46,30,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero__visual { position: relative; }
.hero__visual::before {
  content: '';
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,196,171,.27), rgba(168,196,171,.08) 38%, transparent 68%);
  filter: blur(2px);
  pointer-events: none;
}
.hero__circle {
  border: 1px solid rgba(255,255,255,.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24), 0 25px 70px rgba(30,46,30,.26), 0 0 0 10px rgba(255,255,255,.13);
}

.weekly-order,
.values,
.menu,
.form-section {
  background:
    radial-gradient(circle at 86% 5%, rgba(168,196,171,.16), transparent 25%),
    radial-gradient(circle at 8% 96%, rgba(127,168,130,.12), transparent 31%),
    linear-gradient(145deg, #14291a, #1e3a27 58%, #274733);
}
.weekly-order__inner {
  padding: 38px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 28px 70px rgba(4,17,8,.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.weekly-order__details {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}
.weekly-order__details div {
  border-color: rgba(255,255,255,.1);
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
}

.values__grid {
  gap: 18px;
  border: 0;
}
.value-feat {
  overflow: hidden;
  padding: 34px !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 5%, rgba(168,196,171,.13), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.018));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 20px 48px rgba(4,17,8,.15);
}
.value-feat:hover {
  opacity: 1;
  transform: translateY(-4px);
  border-color: rgba(168,196,171,.34) !important;
}
.value-feat__icon {
  background: linear-gradient(145deg, rgba(168,196,171,.18), rgba(127,168,130,.06));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.11), 0 10px 25px rgba(0,0,0,.13);
}

.how {
  position: relative;
  background:
    radial-gradient(circle at 100% 15%, rgba(168,196,171,.22), transparent 30%),
    transparent;
}
.step,
.about__inner {
  border-color: rgba(255,255,255,.76);
  background: linear-gradient(145deg, rgba(255,255,255,.76), rgba(253,250,246,.43));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 18px 46px rgba(30,46,30,.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.step { position: relative; overflow: hidden; }
.step::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  right: -55px;
  top: -65px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127,168,130,.2), transparent 70%);
  pointer-events: none;
}
.about__inner {
  padding: 48px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 36px;
}
.about__img {
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 28px 74px rgba(30,46,30,.25), 0 0 0 10px rgba(255,255,255,.16);
}
.about__rida-note,
.about__tag {
  border-color: rgba(255,255,255,.76);
  background: linear-gradient(145deg, rgba(255,255,255,.8), rgba(253,250,246,.5));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 12px 30px rgba(30,46,30,.1);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
}

.menu-card {
  position: relative;
  border-color: rgba(255,255,255,.13);
  background: linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.026));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 20px 48px rgba(4,17,8,.18);
}
.menu-card:hover { border-color: rgba(168,196,171,.36); }
.menu-card__img { overflow: hidden; }
.menu-card__img::after {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,20,11,.22), transparent 38%, rgba(7,20,11,.9) 100%);
  pointer-events: none;
}
.menu-card__img img { transition: transform .45s ease; }
.menu-card:hover .menu-card__img img { transform: scale(1.03); }
.menu-card__photo-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  padding: 22px;
  flex-direction: column;
  justify-content: space-between;
  color: var(--cream);
  pointer-events: none;
}
.menu-card__photo-brand {
  align-self: flex-start;
  font-family: var(--font-brand);
  font-size: 1.05rem;
  letter-spacing: .16em;
  opacity: .82;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.menu-card__photo-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}
.menu-card__photo-copy span {
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  background: rgba(14,36,21,.35);
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.menu-card__photo-copy strong {
  font-size: 1.08rem;
  line-height: 1.08;
  text-wrap: balance;
  text-shadow: 0 2px 16px rgba(0,0,0,.64);
}
.menu-card__name--sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.menu-card__body { background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.01)); }

.form-menu-route,
.form-aside-card,
.form-wrap {
  border-color: rgba(255,255,255,.13);
  background:
    radial-gradient(circle at 92% 0%, rgba(168,196,171,.11), transparent 26%),
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 22px 56px rgba(4,17,8,.17);
}

@media (max-width: 960px) {
  .hero__content { max-width: 720px; margin: 0 auto; }
  .values__grid { gap: 16px; }
  .value-feat:last-child { grid-column: span 2; }
  .about__inner { padding: 38px; }
}

@media (max-width: 600px) {
  .hero__content {
    width: 100%;
    padding: 28px 20px;
    border-radius: 26px;
  }
  .hero__content::after { inset: 9px; border-radius: 19px; }
  .hero__visual::before { width: 330px; height: 330px; }
  .weekly-order__inner { padding: 24px 20px; border-radius: 26px; }
  .values__grid { gap: 14px; }
  .value-feat,
  .value-feat:last-child { grid-column: span 1; padding: 28px !important; }
  .about__inner { padding: 26px 20px; border-radius: 28px; }
  .menu-card__photo-overlay { padding: 22px; }
}
