/* ═══════════════════════════════════════════
   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;
}

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;
}

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

.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;
}

.hero__circle--md {
  width: 190px; height: 190px;
  top: 20px; right: 20px;
  background: #2a3e2a;
}

.hero__circle--sm {
  width: 130px; height: 130px;
  bottom: 50px; left: 30px;
  background: var(--sage);
}

.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%); }
}

/* ══════════════════════════════════════
   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__img--2 { width: 190px; height: 190px; bottom: 20px; right: 10px; background: var(--cream-dark); }
.about__img--2 img { object-position: center 62%; transform: scale(1.45); transform-origin: center 62%; }

.about__handwritten {
  position: absolute;
  font-family: 'Brush Script MT', cursive;
  color: var(--sage);
  pointer-events: none;
  font-style: italic;
  z-index: 20;
}
.about__handwritten--1 {
  /* Positioned below the large circle (ends at y≈280) and left of the small sage circle (on the right) */
  top: 300px; left: 15px;
  font-size: 1.2rem;
  transform: rotate(-4deg);
  color: var(--sage);
}
.about__handwritten--2 {
  top: 100px; right: 0;
  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
══════════════════════════════════════ */
.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-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);
}

.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: 33.33%;
}
.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; }

.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 {
  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__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; }

  .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__img--1 { width: 210px; height: 210px; }
  .about__img--2 { width: 160px; height: 160px; }

  .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__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; }

  /* Hide handwritten overlays on narrow phones — two face photos leave no safe zone */
  .about__handwritten--1,
  .about__handwritten--2 {
    display: none;
  }

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

  .values, .how, .menu, .about, .spin { padding: 72px 0; }
  .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-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;
  }
}
