*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {

  /* =====================================================================
     🎨 BRAND — PRIMARY
     Change these two to retheme the entire nav, step numbers,
     active nav links, buttons (btn-apply, btn-primary), form focus rings,
     and card hover borders.
  ====================================================================== */
  --primary: #d33737;   /* BG: nav bar, step number dots, btn-apply/btn-primary */
  /* FONT: active nav links (via white text on this bg)   */
  --primary2:         #f3bf32;   /* FONT: eyebrow labels, value card headings, job/team  */
  /*       badges, blog tags, social icons (default tint)  */
  /* BG: btn-apply hover state                             */

  /* =====================================================================
     🌿 PRIMARY SCALE — GREEN GRADIENTS
     Used for all large section backgrounds and gradient fills.
     Changing these recolours: hero, page-hero, stats section,
     chef section, about-stats strip, join-card, and footer nav (mobile).
  ====================================================================== */
  --primary-light:    #FFE5D9;   /* BG: gradient START — hero, page-hero, about-stats,   */
  /*     join-card, pillar/testi/job/team hover shadows    */
  --primary-mid:      #E76F51;   /* BG: gradient END — hero, stats, join-card            */
  /*     also: join-form select option background          */

  /* =====================================================================
     🍊 ACCENT — WARM PEACH / ORANGE
     CTAs, highlights, prices, stat numbers, store badge icons.
     Changing --accent instantly recolours all primary call-to-action
     buttons, star ratings, badge numbers, and footer logo text.
  ====================================================================== */
  --accent:           #F4A261;   /* BG: btn-accent, nav logo icon, footer logo icon       */
  /* FONT: hero highlight text, stat numbers, badge nums,  */
  /*       footer link hover, testi stars, accent eyebrow  */
  /* SHADOW: btn-accent glow, phone-mock bottom glow       */
  --accent2:          #E76F51;   /* BG: btn-accent hover, nav CTA hover                  */
  /* FONT: eyebrow-accent labels                           */

  /* =====================================================================
     🖼️  SURFACES — BACKGROUNDS & BORDERS
     Controls page-level backgrounds, card fills, and dividers.
  ====================================================================== */
  --white:            #FFFFFF;   /* BG: how-section, testimonials, value/job/team/blog    */
  /*     cards, contact form, join-section, feature items  */
  --off:              #F2FAF6;   /* BG: body default, step cards, testi cards             */
  --light:            #DCEEE6;   /* BG: step icons, feature icons, team card image area,  */
  /*     job/team/blog tag pills, social icon default bg,  */
  /*     contact icon boxes, blog card image placeholder   */
  --border:           #C3DDD0;   /* BORDER: all cards, form inputs, dividers              */
  /* FONT: value card large number (default / un-hovered)  */

  /* =====================================================================
     🌑 DARKS — TEXT & DEEP BACKGROUNDS
     Changing --dark recolours the footer, phone mock, dl-btn,
     all card headings and the about/contact section titles.
  ====================================================================== */
  --dark:             #1B4332;   /* BG: footer, phone-mock, dl-btn, stats gradient END   */
  /* FONT: all section titles, card h3/h4, testi names,   */
  /*       download h2, form labels                       */
  --dark-deep:        #0D2818;   /* BG: chef section gradient END                        */
  --text:             #2D4A3E;   /* FONT: body default text, testi body text, form text  */
  --muted:            #6B9080;   /* FONT: section descriptions, card body copy, meta     */
  /*       text, form labels (secondary), blog meta,      */
  /*       contact links, social-connect heading           */

  /* =====================================================================
     💬 SPECIAL — THIRD-PARTY BRAND COLOR
  ====================================================================== */
  --whatsapp:         #25D366;   /* BG: floating WhatsApp button                         */

  /* =====================================================================
     📦 DOWNLOAD STRIP
     Isolated warm-tinted section at the bottom of the home page.
     Change all three together to retheme that strip as a unit.
  ====================================================================== */
  --download-bg1:     #FFF3E8;   /* BG: download section gradient START                  */
  --download-bg2:     #FFF9F4;   /* BG: download section gradient END                    */
  --download-border:  #FDDCBB;   /* BORDER: download section top border line             */

}

html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--off); color: var(--text); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1,h2,h3,h4,h5 { line-height: 1.2; }

.page { display: none; animation: fadeIn .35s ease; }
.page.active { display: block; }
@keyframes fadeIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

/* ── NAV ──────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--primary);
  box-shadow: 0 2px 20px rgb(from var(--primary-mid) r g b / 0.25);
  height: 70px; display: flex; align-items: center; justify-content: space-between; padding: 0 5vw;
}
.nav-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.nav-logo-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; box-shadow: 0 2px 10px rgba(0,0,0,.2); flex-shrink: 0; }
.nav-logo-text .line1 { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: rgba(255,255,255,.85); letter-spacing: .08em; }
.nav-logo-text .line2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: #fff; letter-spacing: .06em; }
.nav-logo-text .line3 { font-size: .55rem; letter-spacing: .18em; color: rgba(255,255,255,.65); font-weight: 700; }
.nav-logo-text .line3 span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links li a, .nav-links li button { background: none; border: none; cursor: pointer; font-family: 'Nunito', sans-serif; padding: 8px 16px; border-radius: 8px; font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.88); transition: background .2s, color .2s; display: block; }
.nav-links li a:hover, .nav-links li button:hover, .nav-links li a.active, .nav-links li button.active { background: rgba(255,255,255,.18); color: #fff; }
.nav-links .nav-cta button { background: var(--accent); color: #fff !important; font-weight: 800; border-radius: 100px; }
.nav-links .nav-cta button:hover { background: var(--accent2); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; }

/* ── WHATSAPP FLOAT ───────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--whatsapp);
  padding: 14px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.whatsapp-float img { width: 28px; height: 28px; }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero { min-height: 100vh; background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-mid) 100%); display: flex; align-items: center; padding: 100px 5vw 60px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 55% at 85% 50%, rgb(from var(--accent) r g b / 0.22) 0%, transparent 70%), radial-gradient(ellipse 30% 30% at 10% 85%, rgba(255,255,255,.07) 0%, transparent 60%); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 150px; align-items: center; max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.2); border: 1.5px solid rgba(255,255,255,.45); padding: 6px 16px; border-radius: 100px; margin-bottom: 20px; font-size: .8rem; font-weight: 800; color: #fff; letter-spacing: .05em; }
.hero h1 { font-family: 'DM Serif Display', sans-serif; font-size: clamp(3rem, 6vw, 5.5rem); color: #fff; letter-spacing: .03em; line-height: 1; margin-bottom: 10px; }
.hero h1 .cross { text-decoration: line-through; opacity: .45; }
.hero h1 .highlight { color: var(--accent); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.85); line-height: 1.75; margin-bottom: 36px; max-width: 420px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-accent { background: var(--accent); color: #fff; padding: 14px 30px; border-radius: 100px; font-weight: 800; font-size: .95rem; transition: transform .2s, background .2s; border: none; cursor: pointer; font-family: 'Nunito', sans-serif; box-shadow: 0 4px 16px rgb(from var(--accent) r g b / 0.4); }
.btn-accent:hover { background: var(--accent2); transform: translateY(-2px); }
.btn-outline { background: rgba(255,255,255,.15); color: #fff; border: 2px solid rgba(255,255,255,.45); padding: 14px 28px; border-radius: 100px; font-weight: 700; font-size: .9rem; transition: background .2s; cursor: pointer; font-family: 'Nunito', sans-serif; }
.btn-outline:hover { background: rgba(255,255,255,.25); }
.store-row { display: flex; gap: 12px; margin-top: 28px; }
.store-btn { display: flex; align-items: center; gap: 10px; background: rgba(0,0,0,.25); border: 1.5px solid rgba(255,255,255,.25); padding: 10px 20px; border-radius: 12px; color: #fff; font-size: .82rem; font-weight: 600; transition: background .2s; }
.store-btn:hover { background: rgba(0,0,0,.45); }
.store-btn svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }
.store-btn-text small { display: block; font-size: .62rem; opacity: .75; }
.hero-visual { display: flex; align-items: stretch; }
.single-image { width: 100%; border-radius: 28px; overflow: hidden; min-height: 480px; }
.single-image img { width: 100%; height: 100%; object-fit: contain; display: block; }
.food-card { border-radius: 22px; overflow: hidden; position: relative; background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.2); }
.food-card:first-child { grid-column: 1/3; }
.food-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.food-card:hover img { transform: scale(1.06); }
.food-card-label { position: absolute; bottom: 12px; left: 12px; background: rgb(from var(--dark) r g b / 0.75); backdrop-filter: blur(6px); color: #fff; padding: 5px 14px; border-radius: 100px; font-size: .75rem; font-weight: 700; }

/* ── SECTIONS ─────────────────────────────────────────────────── */
.section { padding: 90px 5vw; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.eyebrow { font-size: .75rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--primary2); margin-bottom: 10px; }
.eyebrow-accent { color: var(--accent2); }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: .04em; color: var(--dark); margin-bottom: 16px; }
.section-title-white { color: #fff; }
.section-desc { color: var(--muted); font-size: .95rem; line-height: 1.75; max-width: 540px; }
.divider { border: none; border-top: 2px solid var(--border); margin: 0; }

/* ── HOW IT WORKS ─────────────────────────────────────────────── */
.how { background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.step-card { background: var(--off); border: 1.5px solid var(--border); border-radius: 24px; padding: 36px 22px; text-align: center; position: relative; transition: transform .25s, box-shadow .25s; }
.step-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgb(from var(--primary-light) r g b / 0.15); }
.step-num { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); width: 28px; height: 28px; border-radius: 50%; background: var(--primary); color: #fff; font-size: .75rem; font-weight: 900; display: flex; align-items: center; justify-content: center; }
.step-icon { font-size: 2.4rem; width: 72px; height: 72px; background: var(--light); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.step-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; color: var(--dark); }
.step-card p { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ── FEATURES ─────────────────────────────────────────────────── */
.features { background: var(--off); }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.feature-item { display: flex; gap: 18px; align-items: flex-start; padding: 20px 22px; background: var(--white); border-radius: 18px; border: 1.5px solid var(--border); transition: box-shadow .2s, border-color .2s; }
.feature-item:hover { box-shadow: 0 8px 30px rgb(from var(--primary-light) r g b / 0.12); border-color: var(--primary); }
.feature-icon { font-size: 1.8rem; width: 52px; height: 52px; background: var(--light); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-item h4 { font-size: .95rem; font-weight: 800; margin-bottom: 4px; color: var(--dark); }
.feature-item p { font-size: .83rem; color: var(--muted); line-height: 1.6; }
.feature-img { border-radius: 28px; overflow: hidden; position: relative; aspect-ratio: 4/5; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-img-badge { position: absolute; bottom: 20px; left: 20px; right: 20px; background: rgb(from var(--dark) r g b / 0.85); backdrop-filter: blur(8px); border-radius: 16px; padding: 16px; color: #fff; }
.feature-img-badge .badge-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: var(--accent); line-height: 1; }
.feature-img-badge .badge-label { font-size: .8rem; opacity: .85; }

/* ── STATS ────────────────────────────────────────────────────── */
.stats { background: linear-gradient(135deg, var(--primary-mid) 0%, var(--dark) 100%); padding: 80px 5vw; text-align: center; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 800px; margin: 0 auto; }
.stat-card { padding: 40px 20px; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 4rem; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.stat-label { color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 600; }
.stat-icon { font-size: 2rem; margin-bottom: 12px; }

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.testimonials { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.testi-card { background: var(--off); border: 1.5px solid var(--border); border-radius: 22px; padding: 28px; transition: transform .25s, box-shadow .25s; }
.testi-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgb(from var(--primary-light) r g b / 0.12); }
.testi-stars { color: var(--accent); font-size: .9rem; margin-bottom: 14px; }
.testi-text { font-size: .9rem; color: var(--text); line-height: 1.75; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border); }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .9rem; color: #fff; flex-shrink: 0; }
.testi-name { font-weight: 800; font-size: .9rem; color: var(--dark); }
.testi-loc { font-size: .75rem; color: var(--muted); }

/* ── CHEF SECTION ─────────────────────────────────────────────── */
.chef-section { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-deep) 100%); padding: 100px 5vw; }
.chef-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1100px; margin: 0 auto; }
.chef-desc { color: rgba(255,255,255,.78); line-height: 1.8; margin-bottom: 32px; font-size: .95rem; }
.chef-perks { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.chef-perk { display: flex; gap: 14px; align-items: center; padding: 14px 18px; border-radius: 14px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); }
.chef-perk-icon { font-size: 1.4rem; }
.chef-perk p { color: rgba(255,255,255,.88); font-size: .88rem; }
.chef-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.chef-photo { border-radius: 20px; overflow: hidden; position: relative; background: rgba(255,255,255,.08); }
.chef-photo:first-child { grid-column: 1/3; aspect-ratio: 16/7; }
.chef-photo:not(:first-child) { aspect-ratio: 4/5; }
.chef-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.chef-photo:hover img { transform: scale(1.05); }
.chef-photo-tag { position: absolute; bottom: 10px; left: 10px; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); color: #fff; font-size: .7rem; font-weight: 700; padding: 4px 12px; border-radius: 100px; }

/* ── DOWNLOAD ─────────────────────────────────────────────────── */
.download { background: linear-gradient(135deg, var(--download-bg1) 0%, var(--download-bg2) 100%); border-top: 2px solid var(--download-border); padding: 90px 5vw; }
.download-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1100px; margin: 0 auto; }
.download h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 4vw, 3.4rem); letter-spacing: .04em; color: var(--dark); margin-bottom: 16px; }
.download p { color: var(--muted); line-height: 1.75; margin-bottom: 32px; font-size: .95rem; }
.dl-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.dl-btn { display: flex; align-items: center; gap: 10px; background: var(--dark); color: #fff; padding: 12px 22px; border-radius: 14px; font-size: .85rem; font-weight: 700; transition: opacity .2s, transform .2s; }
.dl-btn:hover { opacity: .88; transform: translateY(-2px); }
.dl-btn svg { width: 22px; height: 22px; fill: #fff; }
.dl-btn-text small { display: block; font-size: .62rem; opacity: .7; }
.phone-visual { display: flex; justify-content: center; }
.phone-mock { width: 200px; height: 360px; background: var(--dark); border-radius: 36px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; font-size: 3.5rem; border: 4px solid rgba(255,255,255,.1); box-shadow: 0 40px 80px rgb(from var(--dark) r g b / 0.2), 0 -10px 30px rgb(from var(--accent) r g b / 0.2); position: relative; }
.phone-mock::before { content: ''; position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 50px; height: 5px; background: rgba(255,255,255,.2); border-radius: 3px; }

/* ── PAGE HERO ────────────────────────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-mid) 100%); padding: 120px 5vw 60px; text-align: center; }
.page-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem, 6vw, 5rem); color: #fff; letter-spacing: .05em; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1rem; margin-top: 12px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* ── ABOUT ────────────────────────────────────────────────────── */
.about-story { display: block; max-width: 720px; margin: 0 auto; text-align: center; }
.about-story h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--dark); margin-bottom: 16px; letter-spacing: .04em; }
.about-story p { color: var(--muted); line-height: 1.8; margin-bottom: 14px; font-size: .95rem; }
.about-story h6 { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--primary2); margin: 20px 0 6px; }
.about-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.pillar-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 24px; padding: 36px 26px; text-align: center; transition: transform .25s, box-shadow .25s; }
.pillar-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgb(from var(--primary-light) r g b / 0.15); }
.pillar-icon { font-size: 2.6rem; margin-bottom: 16px; }
.pillar-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; color: var(--dark); }
.pillar-card p { font-size: .85rem; color: var(--muted); line-height: 1.65; }
.about-stats { background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-mid) 100%); border-radius: 28px; padding: 50px; margin-top: 60px; }
.about-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.about-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: var(--accent); line-height: 1; }
.about-stat-label { color: rgba(255,255,255,.85); font-size: .85rem; font-weight: 600; margin-top: 4px; }

/* ── VALUES ───────────────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 50px; }
.value-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 22px; padding: 30px 28px; display: flex; gap: 20px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.value-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgb(from var(--primary-light) r g b / 0.12); border-color: var(--primary); }
.value-num { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--border); letter-spacing: .05em; line-height: 1; flex-shrink: 0; width: 50px; transition: color .25s; }
.value-card:hover .value-num { color: var(--accent); }
.value-body h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; color: var(--primary2); }
.value-body p { font-size: .85rem; color: var(--muted); line-height: 1.7; }

/* ── JOBS / TEAM ──────────────────────────────────────────────── */
.jobs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.job-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 22px; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.job-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgb(from var(--primary-light) r g b / 0.15); }
.job-card-img { aspect-ratio: 16/10; overflow: hidden; }
.job-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.job-card:hover .job-card-img img { transform: scale(1.05); }
.job-card-body { padding: 22px 24px; }
.job-badge { display: inline-block; background: var(--light); color: var(--primary2); font-size: .7rem; font-weight: 800; padding: 3px 10px; border-radius: 100px; margin-bottom: 10px; letter-spacing: .05em; }
.job-card h3 { font-size: .95rem; font-weight: 800; margin-bottom: 6px; color: var(--dark); }
.job-card p { font-size: .8rem; color: var(--muted); margin-bottom: 16px; }
.btn-apply { background: var(--primary); color: #fff; padding: 9px 20px; border-radius: 100px; font-size: .8rem; font-weight: 800; font-family: 'Nunito', sans-serif; border: none; cursor: pointer; transition: background .2s; display: inline-block; }
.btn-apply:hover { background: var(--primary2); }
.team-section { background: var(--off); padding: 80px 5vw; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.team-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 22px; overflow: hidden; text-align: center; transition: transform .25s, box-shadow .25s; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgb(from var(--primary-light) r g b / 0.15); }
.team-card-img { aspect-ratio: 1; overflow: hidden; background: var(--light); }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.team-card:hover .team-card-img img { transform: scale(1.07); }
.team-card-info { padding: 18px 16px; }
.team-card h4 { font-size: .9rem; font-weight: 800; margin-bottom: 4px; color: var(--dark); }
.team-card p { font-size: .76rem; color: var(--muted); font-weight: 600; }
.team-role-badge { display: inline-block; background: var(--light); color: var(--primary2); font-size: .65rem; font-weight: 800; padding: 2px 10px; border-radius: 100px; margin-top: 6px; letter-spacing: .04em; }

/* ── JOIN FORM ────────────────────────────────────────────────── */
.join-section { background: var(--white); padding: 80px 5vw; }
.join-card { background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-mid) 100%); border-radius: 32px; padding: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1000px; margin: 0 auto; }
.join-card h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: #fff; letter-spacing: .04em; margin-bottom: 12px; }
.join-card p { color: rgba(255,255,255,.78); line-height: 1.7; font-size: .9rem; }
.join-form { display: flex; flex-direction: column; gap: 14px; }
.join-form input, .join-form select { padding: 13px 18px; border-radius: 12px; background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.3); color: #fff; font-size: .88rem; font-family: 'Nunito', sans-serif; outline: none; transition: border-color .2s; }
.join-form input::placeholder { color: rgba(255,255,255,.55); }
.join-form input:focus, .join-form select:focus { border-color: var(--accent); }
.join-form select option { background: var(--primary-mid); color: #fff; }

/* ── CONTACT ──────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; padding: 24px; background: var(--white); border: 1.5px solid var(--border); border-radius: 20px; transition: border-color .2s, box-shadow .2s; }
.contact-item:hover { border-color: var(--primary); box-shadow: 0 8px 24px rgb(from var(--primary-light) r g b / 0.1); }
.contact-item-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--light); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.contact-item h4 { font-weight: 800; margin-bottom: 4px; font-size: .9rem; color: var(--dark); }
.contact-item a, .contact-item p { font-size: .88rem; color: var(--muted); }
.contact-item a:hover { color: var(--primary2); }
.contact-form { background: var(--white); border: 1.5px solid var(--border); border-radius: 28px; padding: 40px; }
.contact-form h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: .04em; margin-bottom: 28px; color: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .8rem; font-weight: 800; margin-bottom: 6px; color: var(--text); letter-spacing: .04em; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; border-radius: 12px; border: 1.5px solid var(--border); background: var(--off); font-size: .88rem; font-family: 'Nunito', sans-serif; outline: none; color: var(--dark); transition: border-color .2s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-primary { background: var(--primary); color: #fff; border: none; cursor: pointer; padding: 14px 32px; border-radius: 100px; font-weight: 800; font-size: .95rem; font-family: 'Nunito', sans-serif; transition: background .2s, transform .2s; box-shadow: 0 4px 16px rgb(from var(--primary-light) r g b / 0.3); }
.btn-primary:hover { background: var(--primary2); transform: translateY(-2px); }
.social-connect { margin-top: 28px; }
.social-connect h4 { font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.social-icons { display: flex; gap: 10px; }
.social-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--light); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: background .2s, transform .2s, color .2s; color: var(--primary2); }
.social-icon:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* ── BLOG ─────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.blog-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 24px; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgb(from var(--primary-light) r g b / 0.15); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--light); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 24px; }
.blog-tag { display: inline-block; background: var(--light); color: var(--primary2); font-size: .68rem; font-weight: 800; padding: 3px 12px; border-radius: 100px; margin-bottom: 12px; letter-spacing: .05em; }
.blog-card h3 { font-size: .95rem; font-weight: 800; margin-bottom: 10px; line-height: 1.4; color: var(--dark); }
.blog-card p { font-size: .83rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.blog-meta { display: flex; gap: 12px; align-items: center; font-size: .75rem; color: var(--muted); font-weight: 600; }

/* ── FOOTER ───────────────────────────────────────────────────── */
footer { background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-mid) 100%); color: rgb(from var(--dark) r g b / 0.65); padding: 70px 5vw 30px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 220px; margin-top: 14px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.footer-logo-text .l1 { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: var(--dark); letter-spacing: .08em; }
.footer-logo-text .l2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--dark); letter-spacing: .06em; }
.footer-logo-text .l3 { font-size: .5rem; letter-spacing: .15em; color: rgb(from var(--dark) r g b / 0.55); font-weight: 700; }
.footer-logo-text .l3 span { color: var(--dark); }
.footer-col h4 { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--dark); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a, .footer-col ul li button { background: none; border: none; cursor: pointer; font-family: 'Nunito', sans-serif; font-size: .85rem; color: rgb(from var(--dark) r g b / 0.6); transition: color .2s; padding: 0; }
.footer-col ul li a:hover, .footer-col ul li button:hover { color: var(--dark); }
.footer-store { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.footer-store-btn { display: flex; align-items: center; gap: 8px; background: rgb(from var(--dark) r g b / 0.1); border: 1px solid rgb(from var(--dark) r g b / 0.2); padding: 9px 14px; border-radius: 10px; color: rgb(from var(--dark) r g b / 0.75); font-size: .78rem; font-weight: 600; transition: background .2s; }
.footer-store-btn:hover { background: rgb(from var(--dark) r g b / 0.2); color: var(--dark); }
.footer-store-btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgb(from var(--dark) r g b / 0.2); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; }
.foot-socials { display: flex; gap: 10px; }
.foot-social { width: 36px; height: 36px; border-radius: 10px; background: rgb(from var(--dark) r g b / 0.1); display: flex; align-items: center; justify-content: center; color: rgb(from var(--dark) r g b / 0.65); font-size: .8rem; transition: background .2s, color .2s; cursor: pointer; }
.foot-social:hover { background: var(--dark); color: #fff; }
.error{
  color:red;
  font-size:12px;
}

.progress-container{
  width:100%;
  height:6px;
  background:#eee;
  margin-top:10px;
  display:none;
  border-radius:4px;
}

#progressBar{
  height:100%;
  width:0%;
  background:#4CAF50;
  transition:width .3s ease;
}

#successMessage{
  display:none;
  color:green;
  margin-top:10px;
}
/* ── ANIMATIONS ───────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--primary); padding: 16px; gap: 6px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-grid, .features-grid, .chef-inner, .download-inner, .about-story, .contact-grid, .join-card { grid-template-columns: 1fr; }
  .chef-photos { display: none; }
  .hero-visual { display: flex; }
  .single-image { min-height: 270px; }
  .steps-grid, .about-pillars, .jobs-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid, .team-grid, .values-grid, .blog-grid { grid-template-columns: 1fr; }
  .stats-grid, .about-stats-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}