/*
 * ============================================================
 *  styles.css — 1:1 by Karan Ravani
 *  Elite Fitness & Wellness — Mumbai
 * ============================================================
 *
 *  TABLE OF CONTENTS
 *  ---------------------------------------------------------
 *  01. CSS Custom Properties (Design Tokens)
 *  02. CSS Reset & Base
 *  03. Particles
 *  04. Navigation
 *  05. Mobile Menu
 *  06. Section Utilities
 *  07. Reveal Animation
 *  08. Glass Card
 *  09. Buttons
 *  10. Hero Section
 *  11. Why Us Section
 *  12. Services Section
 *  13. Chef Meals Section
 *  14. Founder / About Preview Section
 *  15. Values Section
 *  16. Book Assessment Section
 *  17. Footer
 *  18. WhatsApp Float Button
 *  19. About Page — Page Hero
 *  20. About Page — Intro
 *  21. About Page — Mission & Vision
 *  22. About Page — Founder
 *  23. About Page — Values
 *  24. About Page — CTA
 *  25. Sitemap Page
 *  26. Responsive — 1024px
 *  27. Responsive — 768px
 *  28. Responsive — 480px
 * ============================================================
 */


/* ============================================================
   01. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */

:root {
  /* Colour Palette */
  --navy: #040d1f;
  --navy2: #061228;
  --blue-deep: #0a1f44;
  --blue-mid: #1a3a6b;
  --blue-accent: #2563eb;
  --blue-glow: #3b82f6;
  --blue-light: #60a5fa;
  --neon: #4fc3f7;
  --neon2: #38bdf8;
  --white: #f0f6ff;
  --muted: #94a3b8;
  --success: #10b981;

  /* Glass / Surface */
  --glass-bg: rgba(10, 30, 70, 0.40);
  --glass-border: rgba(96, 165, 250, 0.20);

  /* Typography */
  --font-display: 'Inter', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-ui: 'Space Grotesk', sans-serif;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --radius-sm: 0.6rem;
  --radius-md: 0.8rem;
  --radius-lg: 1.2rem;
  --radius-xl: 1.5rem;
  --radius-pill: 3rem;

  /* Transitions */
  --ease-default: 0.3s ease;
  --ease-reveal: 0.8s ease;
}


/* ============================================================
   02. CSS RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

svg {
  display: block;
  flex-shrink: 0;
}


/* ============================================================
   03. PARTICLES
   ============================================================ */

#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--neon);
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.2;
  }

  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(0.3);
  }
}

/* ──
 Founder Reveal — CSS Variables 
── */
#founder-reveal,
.hero-founder-wrapper {
  --fr-delay: 1000ms;
  /* delay before card slides in     */
  --fr-duration: 550ms;
  /* slide/fade animation speed       */
  --fr-countdown: 6;
  /* seconds before auto-dismiss      */
  --fr-navy: #040d1f;
  --fr-glass: rgba(8, 22, 55, 0.72);
  --fr-border: rgba(96, 165, 250, 0.22);
  --fr-blue: #2563eb;
  --fr-neon: #4fc3f7;
  --fr-light: #60a5fa;
  --fr-white: #f0f6ff;
  --fr-muted: #94a3b8;
  --fr-font-d: 'Inter', serif;
  --fr-font-ui: 'Space Grotesk', sans-serif;
  --fr-font-b: 'DM Sans', sans-serif;
}

/* ── Wrapper (fixed layer, above everything) ── */
#founder-reveal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  /* card slides up from bottom   */
  justify-content: center;
  padding: 0 1rem 2.5rem;
  pointer-events: none;

  /* disabled until card appears  */
}

#founder-reveal.fr-visible {
  pointer-events: all;
}

/* ── Backdrop ── */
.fr-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 13, 31, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity var(--fr-duration) ease;
  cursor: pointer;
}

#founder-reveal.fr-visible .fr-backdrop {
  opacity: 1;
}

/* ── Card ── */
.fr-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--fr-glass);
  border: 1px solid var(--fr-border);
  border-radius: 1.4rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 2rem 1.8rem 1.4rem;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(4, 13, 31, 0.7),
    0 0 0 1px rgba(96, 165, 250, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  /* Start state — off-screen below + invisible */
  transform: translateY(120%) scale(0.96);
  opacity: 0;
  transition:
    transform var(--fr-duration) cubic-bezier(0.22, 1, 0.36, 1),
    opacity var(--fr-duration) ease;
}

#founder-reveal.fr-visible .fr-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Dismiss — slides back down */
#founder-reveal.fr-dismiss .fr-card {
  transform: translateY(130%) scale(0.94);
  opacity: 0;
  transition:
    transform 400ms cubic-bezier(0.55, 0, 1, 0.45),
    opacity 350ms ease;
}

#founder-reveal.fr-dismiss .fr-backdrop {
  opacity: 0;
  transition: opacity 350ms ease;
}

/* ── Animated top-border sweep ── */
.fr-border-sweep {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--fr-blue) 30%,
      var(--fr-neon) 50%,
      var(--fr-blue) 70%,
      transparent 100%);
  background-size: 200% 100%;
  animation: frSweep 2.5s ease infinite;
  animation-play-state: paused;
}

#founder-reveal.fr-visible .fr-border-sweep {
  animation-play-state: running;
}

@keyframes frSweep {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ── Glow orb behind avatar ── */
.fr-orb {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

/* ── Close button ── */
.fr-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--fr-border);
  background: rgba(96, 165, 250, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  z-index: 2;
}

.fr-close svg {
  width: 14px;
  height: 14px;
  stroke: var(--fr-muted);
  transition: stroke 0.2s;
}

.fr-close:hover {
  background: rgba(79, 195, 247, 0.12);
  border-color: var(--fr-neon);
}

.fr-close:hover svg {
  stroke: var(--fr-neon);
}

/* ── Avatar wrap ── */
.fr-avatar-wrap {
  position: relative;
  width: fit-content;
  margin: 0 auto 1.4rem;
}

/* Rotating dashed ring */
.fr-avatar-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(79, 195, 247, 0.35);
  animation: frSpin 36s linear infinite;
}

@keyframes frSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Avatar circle */
.fr-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a3a6b, #2563eb);
  border: 2px solid rgba(96, 165, 250, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fr-font-d);
  font-size: 2.4rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.4);
  overflow: hidden;
  /* clips photo if you use <img> */
  position: relative;
  z-index: 1;
}

/* If using a photo */
.fr-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Online indicator dot */
/* .fr-online-dot {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid var(--fr-navy);
  z-index: 2;
  animation: frPulse 2s ease-in-out infinite;
} */

@keyframes frPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
  }
}

/* ── Text content ── */
.fr-content {
  text-align: center;
  margin-bottom: 1.4rem;
}

.fr-eyebrow {
  font-family: var(--fr-font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fr-neon);
  display: block;
  margin-bottom: 0.5rem;
}

.fr-name {
  font-family: var(--fr-font-d);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--fr-white);
  margin-bottom: 0.2rem;
  letter-spacing: 0.01em;
}

.fr-title {
  font-family: var(--fr-font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fr-muted);
  margin-bottom: 1rem;
}

.fr-tagline {
  font-family: var(--fr-font-d);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(240, 246, 255, 0.65);
  line-height: 1.5;
  margin-bottom: 1.1rem;
  padding: 0 0.5rem;
}

/* ── Credential pills ── */
.fr-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.fr-pill {
  font-family: var(--fr-font-ui);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 2rem;
  border: 1px solid rgba(96, 165, 250, 0.2);
  color: var(--fr-light);
  background: rgba(37, 99, 235, 0.08);
  transition: all 0.2s;
}

.fr-pill:hover {
  border-color: var(--fr-neon);
  color: var(--fr-neon);
  background: rgba(79, 195, 247, 0.08);
}

/* ── CTA buttons ── */
.fr-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.fr-btn-primary {
  font-family: var(--fr-font-ui);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1rem;
  background: var(--fr-blue);
  color: #fff;
  border: none;
  border-radius: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

/* shimmer sweep */
.fr-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.45s;
}

.fr-btn-primary:hover::before {
  transform: translateX(100%);
}

.fr-btn-primary:hover {
  box-shadow: 0 0 22px rgba(37, 99, 235, 0.55);
  transform: translateY(-1px);
}

.fr-btn-ghost {
  font-family: var(--fr-font-ui);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1rem;
  background: transparent;
  color: var(--fr-light);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
}

.fr-btn-ghost:hover {
  border-color: var(--fr-neon);
  color: var(--fr-neon);
  box-shadow: 0 0 16px rgba(79, 195, 247, 0.15);
}

/* ── Progress bar ── */
.fr-progress-wrap {
  width: 100%;
  height: 2px;
  background: rgba(96, 165, 250, 0.1);
  border-radius: 1px;
  margin-bottom: 0.45rem;
  overflow: hidden;
}

.fr-progress-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--fr-blue), var(--fr-neon));
  border-radius: 1px;
  transform-origin: left;
  transform: scaleX(1);
  /* JS sets transition dynamically */
}

/* ── Countdown label ── */
.fr-progress-label {
  font-family: var(--fr-font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: rgba(148, 163, 184, 0.5);
  text-align: center;
  text-transform: uppercase;
}

/* ── Hidden state (after fully dismissed) ── */
#founder-reveal.fr-gone {
  display: none;
}

/* ── Hide on Desktop ── */
@media (min-width: 920px) {
  #founder-reveal {
    display: none !important;
  }
}

/* ── Mobile tweaks ── */
@media (max-width: 480px) {
  #founder-reveal {
    padding: 0 0.75rem 1.5rem;
    align-items: flex-end;
  }

  .fr-card {
    border-radius: 1.2rem 1.2rem 0.8rem 0.8rem;
  }

  .fr-name {
    font-size: 1.9rem;
  }

  .fr-actions {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   04. NAVIGATION
   ============================================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(4, 13, 31, 0.70);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--ease-default);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  filter: brightness(1.5);
}

.nav-logo img {
  height: 70px;
  width: auto;
  filter: brightness(1.2);
}

/* Links */
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color var(--ease-default);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--neon);
  transition: width var(--ease-default);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  width: 100%;
}

/* CTA Pill */
.nav-cta {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.55rem 1.5rem;
  border: 1px solid var(--blue-glow);
  border-radius: var(--radius-pill);
  color: var(--blue-light);
  background: rgba(59, 130, 246, 0.08);
  transition: all var(--ease-default);
}

.nav-cta:hover {
  background: var(--blue-accent);
  color: #fff;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.40);
}

/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease-default);
}


/* ============================================================
   05. MOBILE MENU
   ============================================================ */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(4, 13, 31, 0.97);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--ease-default);
}

.mobile-menu a:hover {
  color: var(--neon);
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--ease-default);
}

.mobile-close:hover {
  color: var(--neon);
}


/* ============================================================
   06. SECTION UTILITIES
   ============================================================ */

section {
  position: relative;
  z-index: 1;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 4vw;
}

/* Eyebrow tag */
.section-tag {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 1rem;
  display: block;
}

/* Section heading */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--white);
}

.section-title em {
  font-style: italic;
  color: var(--neon);
}

/* Section body text */
.section-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin-top: 0.5rem;
  line-height: 1.8;
}


/* ============================================================
   07. REVEAL ANIMATION (scroll-triggered)
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--ease-reveal), transform var(--ease-reveal);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   08. GLASS CARD
   ============================================================ */

.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
}


/* ============================================================
   09. BUTTONS
   ============================================================ */

/* Primary — solid blue */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  background: var(--blue-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--ease-default);
}

/* Light-sweep shimmer on hover */
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.60);
  transform: translateY(-2px);
}

/* Ghost — outline style */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--blue-light);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--ease-default);
}

.btn-ghost:hover {
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: 0 0 20px rgba(79, 195, 247, 0.20);
}

/* Full-width variant (used inside form) */
.btn-full {
  width: 100%;
  justify-content: center;
}


/* ============================================================
   10. HERO SECTION
   ============================================================ */

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(37, 99, 235, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(79, 195, 247, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, #040d1f 0%, #061228 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Glowing orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbPulse 4s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.15);
  top: -10%;
  right: 5%;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(79, 195, 247, 0.10);
  bottom: 20%;
  left: -5%;
  animation-delay: 3s;
}

@keyframes orbPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  will-change: transform, opacity;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}


.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-title .line-accent {
  font-style: italic;
  background: linear-gradient(90deg, var(--blue-light), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

#pn1 {
  display: none;
}

/* Hero Desktop Layout */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.hero-founder-wrapper {
  display: none;
  /* Hidden on mobile/tablet */
  flex-shrink: 0;
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 10;
}

.hero-founder-card {
  transform: none !important;
  opacity: 1 !important;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(4, 13, 31, 0.8), 0 0 0 1px rgba(96, 165, 250, 0.15) !important;
}

/* Ensure animation sweep works */
.hero-founder-card .fr-border-sweep {
  animation-play-state: running;
}

@media (min-width: 921px) {
  .hero-founder-wrapper {
    display: block;
  }

  .hero-content {
    flex: 1;
    min-width: 0;
  }
}


/* Stat strip */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--glass-border);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--blue-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* Scroll Down Cue */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  z-index: 10;
  cursor: pointer;
  transition: opacity var(--ease-default);
}

.scroll-cue.reveal {
  transform: translate(-50%, 40px);
}

.scroll-cue.reveal.visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.scroll-cue:hover {
  opacity: 0.8;
}

.scroll-text {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  animation: fadePulse 2s infinite;
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1.5px solid var(--muted);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--blue-light);
  border-radius: 2px;
  margin-top: 5px;
  animation: scrollWheel 1.5s infinite;
}

@keyframes fadePulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}



/* ============================================================
   11. WHY US SECTION
   ============================================================ */

#why {
  padding: var(--space-2xl) 0 var(--space-xl);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.why-card {
  padding: 2.2rem 1.8rem;
  transition: transform var(--ease-default), box-shadow var(--ease-default);
  cursor: default;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.20), 0 0 0 1px rgba(96, 165, 250, 0.30);
}

.why-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.4rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.30), rgba(79, 195, 247, 0.10));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  color: var(--neon);
  stroke: currentColor;
  fill: none;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.why-bottom {
  margin-top: 3rem;
  display: flex;
}


/* ============================================================
   12. SERVICES SECTION
   ============================================================ */

#services {
  padding: var(--space-xl) 0;
  background: linear-gradient(180deg, transparent, rgba(6, 18, 40, 0.80), transparent);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

.service-card {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.10), transparent);
  opacity: 0;
  transition: opacity var(--ease-default);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.25), 0 0 0 1px rgba(96, 165, 250, 0.35);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(79, 195, 247, 0.08));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--neon);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
}

.service-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.service-tag {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon);
  border: 1px solid rgba(79, 195, 247, 0.30);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.7rem;
  width: fit-content;
}

.service-card ul {
  list-style: disc;
  margin-left: 1rem;
}

.service-card ul li {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   13. CHEF MEALS SECTION
   ============================================================ */

#meals {
  padding: 7rem 0;
}

.meals-header {
  text-align: center;
  margin-bottom: 4rem;
}

.meals-header .section-sub {
  margin: 1rem auto 0;
  text-align: center;
}

/* Chef tab switcher */
.chefs-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.chef-tab {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--ease-default);
}

.chef-tab.active {
  background: var(--blue-accent);
  color: #fff;
  border-color: var(--blue-accent);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.40);
}

.chef-tab:hover:not(.active) {
  border-color: var(--blue-glow);
  color: var(--blue-light);
}

/* Panel visibility */
.chef-panel {
  display: none;
}

.chef-panel.active {
  display: block;
}

/* Menu cards grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.menu-category {
  padding: 2rem 1.8rem;
}

.menu-category-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--blue-light);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.menu-category-title svg {
  width: 18px;
  height: 18px;
  stroke: var(--neon);
  fill: none;
  display: none;
}

.menu-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  margin-bottom: 1.2rem;
  opacity: 0.5;
  animation: linePulse 4s ease-in-out infinite;
}

@keyframes linePulse {
  0% {
    background: var(--neon);
  }

  50% {
    background: transparent;
  }

  100% {
    background: var(--neon);
  }

}

.menu-divider .menu-items {
  list-style: none;
}

.menu-items li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(96, 165, 250, 0.08);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-items li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--neon);
  opacity: 0.5;
  flex-shrink: 0;
}

.menu-items li:hover {
  color: var(--white);
}

.meals-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}


/* ============================================================
   14. FOUNDER / ABOUT PREVIEW SECTION
   ============================================================ */

#about-preview {
  padding: 7rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.founder-card {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-accent), var(--neon));
}

.founder-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: 1.5rem;
  border: 2px solid var(--glass-border);
  overflow: hidden;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
}

.founder-title {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 1.2rem;
}

.founder-bio {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.about-floating-tag {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.2rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--blue-light);
}


/* ============================================================
   15. VALUES SECTION (Homepage)
   ============================================================ */

.values-section-home {
  padding: 4rem 0 7rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}

.value-card {
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: transform var(--ease-default);
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(96, 165, 250, 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.value-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--blue-light);
  margin-bottom: 0.5rem;
}

.value-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.7;
}


/* ============================================================
   16. BOOK ASSESSMENT SECTION
   ============================================================ */

#book {
  padding: 7rem 0;
  background: linear-gradient(180deg, transparent, rgba(6, 18, 40, 0.60), transparent);
}

.book-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Info side */
.book-info {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--neon);
  fill: none;
  flex-shrink: 0;
}

/* Social row */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease-default);
  text-decoration: none;
}

.social-link svg {
  width: 18px;
  height: 18px;
  stroke: var(--muted);
  fill: none;
  transition: stroke var(--ease-default);
}

.social-link:hover {
  transform: translateY(-3px);
}

/* Default fallback for other social links */
.social-link:not([aria-label="Instagram"]):not([aria-label="LinkedIn"]):not([aria-label="WhatsApp"]):hover {
  border-color: var(--neon);
  background: rgba(79, 195, 247, 0.10);
  box-shadow: 0 0 20px rgba(79, 195, 247, 0.20);
}

.social-link:not([aria-label="Instagram"]):not([aria-label="LinkedIn"]):not([aria-label="WhatsApp"]) svg {
  stroke: var(--neon);
}

/* Instagram */
.social-link[aria-label="Instagram"] svg {
  stroke: #E1306C;
}

.social-link[aria-label="Instagram"]:hover {
  border-color: #E1306C;
  background: rgba(225, 48, 108, 0.10);
  box-shadow: 0 0 20px rgba(225, 48, 108, 0.30);
}

/* LinkedIn */
.social-link[aria-label="LinkedIn"] svg {
  stroke: #0077b5;
}

.social-link[aria-label="LinkedIn"]:hover {
  border-color: #0077b5;
  background: rgba(0, 119, 181, 0.10);
  box-shadow: 0 0 20px rgba(0, 119, 181, 0.30);
}

/* WhatsApp */
.social-link[aria-label="WhatsApp"] svg {
  stroke: #25D366;
}

.social-link[aria-label="WhatsApp"]:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.10);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.30);
}

/* Form card */
.book-form {
  padding: 2.5rem;
}

.form-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.form-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* Two-column row inside form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(6, 18, 40, 0.60);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--ease-default), box-shadow var(--ease-default);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(148, 163, 184, 0.50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-glow);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.10);
}

.form-group select option {
  background: var(--navy2);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}


/* ============================================================
   17. FOOTER
   ============================================================ */

footer {
  border-top: 1px solid var(--glass-border);
  padding: 3rem 0 2rem;
  background: var(--navy2);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo img {
  height: 70px;
  filter: brightness(1.5);
}

.footer-logo img:hover {
  filter: brightness(2);
  transition: all var(--ease-default);
}

.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.footer-nav a {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--ease-default);
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

/* Footer social icons (smaller version) */
.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social .social-link {
  width: 36px;
  height: 36px;
}

.footer-social .social-link svg {
  width: 15px;
  height: 15px;
}


/* ============================================================
   18. WHATSAPP FLOAT BUTTON
   ============================================================ */

.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.50);
  transition: all var(--ease-default);
  text-decoration: none;
  animation: waPulse 2s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.10);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.70);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.50);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.80), 0 0 0 8px rgba(37, 211, 102, 0.10);
  }
}


/* ============================================================
   19. ABOUT PAGE — PAGE HERO
   ============================================================ */

.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(37, 99, 235, 0.15), transparent),
    linear-gradient(180deg, #040d1f 0%, #061228 100%);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-hero-content .section-tag {
  text-align: center;
}

.page-hero-content .section-title {
  text-align: center;
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.page-hero-content .section-sub {
  text-align: center;
  margin: 1rem auto 0;
}


/* ============================================================
   20. ABOUT PAGE — INTRO
   ============================================================ */

.about-intro {
  padding: var(--space-xl) 0;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-intro-visual {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Stat cards within intro */
.about-stat-card {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.30), rgba(79, 195, 247, 0.10));
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--neon);
  fill: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--blue-light);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
}


/* ============================================================
   21. ABOUT PAGE — MISSION & VISION
   ============================================================ */

.mv-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent, rgba(6, 18, 40, 0.50), transparent);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.mv-card {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--ease-default);
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-accent), var(--neon));
  opacity: 0;
  transition: opacity var(--ease-default);
}

.mv-card:hover::before {
  opacity: 1;
}

.mv-card:hover {
  transform: translateY(-5px);
}

.mv-label {
  font-family: var(--font-ui);
  font-size: 0.70rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 0.8rem;
}

.mv-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.mv-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
}


/* ============================================================
   22. ABOUT PAGE — FOUNDER
   ============================================================ */

.founder-section {
  padding: var(--space-xl) 0;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2.5rem;
}

/* Portrait card */
.founder-portrait {
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.founder-portrait::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-accent), var(--neon), var(--blue-accent));
}

.portrait-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.90);
  margin: 0 auto 1.5rem;
  border: 2px solid var(--glass-border);
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.30);
  overflow: hidden;
}

.portrait-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
}

.portrait-role {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--neon);
  margin: 0.5rem 0 1.5rem;
}

.portrait-socials {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

/* Bio text side */
.founder-bio-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

/* Expertise tag pills */
.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem;
}

.exp-tag {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border);
  color: var(--blue-light);
  background: rgba(37, 99, 235, 0.08);
}


/* ============================================================
   23. ABOUT PAGE — VALUES (extended version)
   ============================================================ */

.values-section {
  padding: 5rem 0 7rem;
}

/* Shared with homepage values-grid — see section 15 */

/* Icon variant (used on About page) */
.value-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.20), rgba(79, 195, 247, 0.05));
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.value-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--neon);
  fill: none;
}


/* ============================================================
   24. ABOUT PAGE — CTA SECTION
   ============================================================ */

.about-cta {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(6, 18, 40, 0.40), transparent);
}

.about-cta .section-title {
  text-align: center;
}

.about-cta .section-sub {
  text-align: center;
  margin: 1rem auto;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}


/* ============================================================
   25. SITEMAP PAGE
   ============================================================ */

.sitemap-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.sitemap-card {
  max-width: 600px;
  width: 100%;
  padding: 3rem;
}

.sitemap-card h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.sitemap-card .sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.sitemap-card h2 {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neon);
  margin: 1.5rem 0 0.8rem;
}

.sitemap-card ul {
  list-style: none;
}

.sitemap-card ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0;
  color: var(--blue-light);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(96, 165, 250, 0.08);
  transition: color 0.2s;
}

.sitemap-card ul li a:hover {
  color: var(--white);
}

.sitemap-card ul li a::before {
  content: '→';
  color: var(--neon);
  font-size: 0.85rem;
}

.sitemap-back {
  display: inline-block;
  margin-top: 2rem;
  font-family: var(--font-ui);
  font-size: 0.80rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--ease-default);
}

.sitemap-back:hover {
  color: var(--white);
}


/* ============================================================
   26. RESPONSIVE — ≤ 1024px
   ============================================================ */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ============================================================
   27. RESPONSIVE — ≤ 920px
   ============================================================ */

@media (max-width: 920px) {
  .hero-content {
    margin: 20px;
  }

  #pn1 {
    display: block;
  }

  #pn2 {
    display: none;
  }

  /* Nav */
  nav {
    padding: 1rem 5vw;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Grids → single column or 2-col */
  .why-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .book-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Hero */
  .hero-stats {
    gap: 1.5rem;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    position: relative;
    left: auto;
    transform: translateX(0%);
  }

  /* .footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
} */

  /* Floating tag on About preview */
  .about-floating-tag {
    position: static;
    margin-top: 1.2rem;
    display: inline-block;
  }
}


/* ============================================================
   28. RESPONSIVE — ≤ 480px
   ============================================================ */

@media (max-width: 480px) {

  .services-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns a {
    width: 100%;
    justify-content: center;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .cta-btns,
  .meals-cta {
    flex-direction: column;
    align-items: center;
  }

  .chefs-tabs {
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }
}