/* ============================================================
   FreshVibeSalad — style.css
   Mobile-first, responsive, premium design
   ============================================================ */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500&display=swap');

/* ---------- DESIGN TOKENS ---------- */
:root {
  --green-deep: #1e4d14;
  --green-mid: #3a7d28;
  --green-light: #6ab84e;
  --green-pale: #eef6e8;
  --cream: #faf8f3;
  --warm-white: #ffffff;
  --ink: #111a0e;
  --muted: #6b7a65;
  --red: #c94535;
  --orange: #d97b2a;
  --shadow-card: 0 20px 48px rgba(30, 77, 20, 0.10);
  --shadow-sm: 0 4px 16px rgba(30, 77, 20, 0.06);
  --radius-card: 20px;
  --radius-btn: 100px;
  --transition: 0.25s ease;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 56px;
  background: rgba(250, 248, 243, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(106, 184, 78, 0.2);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--green-deep);
  letter-spacing: -0.5px;
}

.nav-logo em {
  font-style: italic;
  font-weight: 400;
  color: var(--green-mid);
}

/* Hamburger (hidden on desktop) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--green-deep);
}

.nav-cta {
  background: var(--green-deep);
  color: #fff;
  border: none;
  padding: 10px 26px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: var(--radius-btn);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--green-mid);
  transform: scale(1.03);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.hero-left {
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--green-mid);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-light);
  animation: pulseDot 2s ease-in-out infinite;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 900;
  line-height: 0.92;
  color: var(--ink);
  margin-bottom: 8px;
}

.hero-h1 em {
  font-style: italic;
  color: var(--green-mid);
}

.hero-h1-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 400;
  font-style: italic;
  line-height: 0.92;
  color: var(--green-light);
  margin-bottom: 36px;
}

.hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 48px;
}

.hero-attrs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.attr {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink);
}

.attr-line {
  width: 28px;
  height: 1px;
  background: var(--green-light);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green-deep);
  color: #fff;
  padding: 16px 36px;
  border: none;
  border-radius: var(--radius-btn);
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}

.btn-ghost:hover {
  color: var(--green-deep);
}

/* ---------- HERO RIGHT — 3D Scene ---------- */
.hero-right {
  position: relative;
  background: linear-gradient(180deg, #e8f5e0 0%, #d4edba 50%, #c8e6b8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 420px;
  perspective: 1000px;
}

.hero-bg-text {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 900;
  font-style: italic;
  color: rgba(106, 184, 78, 0.08);
  line-height: 1;
  user-select: none;
  white-space: nowrap;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* 3D Scene Container */
.bowl-scene {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  z-index: 10;
}

/* 3D Glow Ring */
.bowl-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 184, 78, 0.25) 0%, rgba(106, 184, 78, 0.1) 40%, transparent 70%);
  box-shadow: 
    0 0 80px 30px rgba(106, 184, 78, 0.2),
    inset 0 0 60px rgba(106, 184, 78, 0.15);
  animation: glowRing 4s ease-in-out infinite;
  z-index: 5;
}

@keyframes glowRing {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1) rotateX(0deg);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08) rotateX(10deg);
    opacity: 1;
  }
}

/* Central Salad Bowl - 3D Effect */
.bowl-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateY(0deg);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 
    0 20px 60px rgba(30, 77, 20, 0.3),
    0 0 0 3px rgba(106, 184, 78, 0.3),
    inset 0 -20px 40px rgba(0, 0, 0, 0.1);
  z-index: 20;
  animation: bowlRotate 12s ease-in-out infinite, bowlBounce 3s ease-in-out infinite;
}

@keyframes bowlRotate {
  0%, 100% { transform: translate(-50%, -50%) rotateY(0deg) rotateX(5deg); }
  25% { transform: translate(-50%, -50%) rotateY(5deg) rotateX(0deg); }
  50% { transform: translate(-50%, -50%) rotateY(0deg) rotateX(-5deg); }
  75% { transform: translate(-50%, -50%) rotateY(-5deg) rotateX(0deg); }
}

@keyframes bowlBounce {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-12px); }
}

/* 3D Plate Shadow */
.bowl-plate {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) rotateX(90deg);
  width: 200px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(30, 77, 20, 0.25) 0%, rgba(30, 77, 20, 0.1) 40%, transparent 70%);
  border-radius: 50%;
  animation: plateShadow 3s ease-in-out infinite;
  z-index: 3;
}

@keyframes plateShadow {
  0%, 100% { transform: translateX(-50%) rotateX(90deg) scale(1); opacity: 0.6; }
  50% { transform: translateX(-50%) rotateX(90deg) scale(0.9); opacity: 0.3; }
}

/* 3D Floating Vegetables */
.float-img {
  position: absolute;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 
    0 12px 30px rgba(30, 77, 20, 0.25),
    0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 15;
  transform-style: preserve-3d;
}

/* Orbit Animation Container */
.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px dashed rgba(106, 184, 78, 0.2);
  animation: orbitSpin 20s linear infinite;
  z-index: 8;
}

@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Vegetable Positions - 3D Orbit */
.fi-1 {
  width: 90px;
  height: 90px;
  top: -45px;
  left: 50%;
  transform: translateX(-50%) rotateY(20deg);
  border-radius: 50% 40% 60% 50%;
  animation: vegFloat1 5s ease-in-out infinite;
  box-shadow: 0 15px 35px rgba(30, 77, 20, 0.3);
}

.fi-2 {
  width: 75px;
  height: 75px;
  top: 20px;
  right: -40px;
  transform: rotateY(-30deg) rotateZ(15deg);
  border-radius: 50% 60% 40% 55%;
  animation: vegFloat2 4.5s ease-in-out infinite 0.5s;
  box-shadow: 0 12px 30px rgba(30, 77, 20, 0.25);
}

.fi-3 {
  width: 80px;
  height: 80px;
  top: 140px;
  right: -20px;
  transform: rotateY(10deg) rotateX(-20deg);
  border-radius: 50%;
  animation: vegFloat3 5.5s ease-in-out infinite 1s;
  box-shadow: 0 15px 35px rgba(30, 77, 20, 0.3);
}

.fi-4 {
  width: 70px;
  height: 70px;
  bottom: 40px;
  right: 20px;
  transform: rotateY(-15deg) rotateZ(-10deg);
  border-radius: 45% 55% 50% 50%;
  animation: vegFloat4 4s ease-in-out infinite 1.5s;
  box-shadow: 0 10px 25px rgba(30, 77, 20, 0.25);
}

.fi-5 {
  width: 72px;
  height: 72px;
  bottom: 40px;
  left: 20px;
  transform: rotateY(25deg) rotateZ(5deg);
  border-radius: 50% 45% 55% 50%;
  animation: vegFloat5 4.8s ease-in-out infinite 0.8s;
  box-shadow: 0 12px 28px rgba(30, 77, 20, 0.25);
}

.fi-6 {
  width: 78px;
  height: 78px;
  top: 140px;
  left: -20px;
  transform: rotateY(-10deg) rotateX(15deg);
  border-radius: 55% 45% 50% 55%;
  animation: vegFloat6 5.2s ease-in-out infinite 1.2s;
  box-shadow: 0 14px 32px rgba(30, 77, 20, 0.28);
}

.fi-7 {
  width: 70px;
  height: 70px;
  top: 20px;
  left: -40px;
  transform: rotateY(35deg) rotateZ(-20deg);
  border-radius: 48% 52% 45% 55%;
  animation: vegFloat7 4.3s ease-in-out infinite 0.3s;
  box-shadow: 0 11px 26px rgba(30, 77, 20, 0.25);
}

.fi-8 {
  width: 60px;
  height: 60px;
  top: 70px;
  left: 50%;
  transform: translateX(-50%) rotateY(0deg);
  border-radius: 50% 45% 55% 48%;
  animation: vegFloat8 3.8s ease-in-out infinite 1.8s;
  box-shadow: 0 10px 24px rgba(30, 77, 20, 0.22);
}

/* Individual 3D Float Animations */
@keyframes vegFloat1 {
  0%, 100% { transform: translateX(-50%) translateY(0) rotateY(20deg) rotateX(0deg); }
  50% { transform: translateX(-50%) translateY(-20px) rotateY(30deg) rotateX(10deg); }
}

@keyframes vegFloat2 {
  0%, 100% { transform: rotateY(-30deg) rotateZ(15deg) translateY(0) scale(1); }
  50% { transform: rotateY(-20deg) rotateZ(20deg) translateY(-18px) scale(1.05); }
}

@keyframes vegFloat3 {
  0%, 100% { transform: rotateY(10deg) rotateX(-20deg) translateY(0) rotateZ(0deg); }
  50% { transform: rotateY(15deg) rotateX(-15deg) translateY(-15px) rotateZ(8deg); }
}

@keyframes vegFloat4 {
  0%, 100% { transform: rotateY(-15deg) rotateZ(-10deg) translateY(0); }
  50% { transform: rotateY(-25deg) rotateZ(-15deg) translateY(-22px); }
}

@keyframes vegFloat5 {
  0%, 100% { transform: rotateY(25deg) rotateZ(5deg) translateY(0) scale(1); }
  50% { transform: rotateY(15deg) rotateZ(10deg) translateY(-16px) scale(1.03); }
}

@keyframes vegFloat6 {
  0%, 100% { transform: rotateY(-10deg) rotateX(15deg) translateY(0) rotateZ(0deg); }
  50% { transform: rotateY(-20deg) rotateX(25deg) translateY(-19px) rotateZ(-6deg); }
}

@keyframes vegFloat7 {
  0%, 100% { transform: rotateY(35deg) rotateZ(-20deg) translateY(0); }
  50% { transform: rotateY(25deg) rotateZ(-25deg) translateY(-17px); }
}

@keyframes vegFloat8 {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50% { transform: translateX(-50%) translateY(-24px) scale(1.08); }
}

/* 3D Particle Effects */
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  z-index: 6;
}

.particle-1 {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #6ab84e, #3a7d28);
  top: 15%;
  left: 20%;
  animation: particleFloat1 6s ease-in-out infinite;
}

.particle-2 {
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #c94535, #a33d2d);
  top: 30%;
  right: 15%;
  animation: particleFloat2 5s ease-in-out infinite 0.5s;
}

.particle-3 {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #d97b2a, #c46a20);
  bottom: 25%;
  left: 10%;
  animation: particleFloat3 7s ease-in-out infinite 1s;
}

.particle-4 {
  width: 5px;
  height: 5px;
  background: linear-gradient(135deg, #6ab84e, #4a9d35);
  bottom: 35%;
  right: 20%;
  animation: particleFloat4 4.5s ease-in-out infinite 1.5s;
}

.particle-5 {
  width: 7px;
  height: 7px;
  background: linear-gradient(135deg, #8bc34a, #6ab84e);
  top: 50%;
  left: 8%;
  animation: particleFloat5 5.5s ease-in-out infinite 0.8s;
}

.particle-6 {
  width: 4px;
  height: 4px;
  background: linear-gradient(135deg, #c94535, #d45746);
  top: 20%;
  left: 35%;
  animation: particleFloat6 4s ease-in-out infinite 2s;
}

@keyframes particleFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(15px, -20px) scale(1.3); opacity: 1; }
}

@keyframes particleFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(-12px, -18px) scale(1.2); opacity: 0.9; }
}

@keyframes particleFloat3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.7; }
  50% { transform: translate(20px, -15px) rotate(180deg); opacity: 1; }
}

@keyframes particleFloat4 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(-15px, -22px) scale(1.4); opacity: 0.8; }
}

@keyframes particleFloat5 {
  0%, 100% { transform: translate(0, 0); opacity: 0.6; }
  50% { transform: translate(18px, -12px); opacity: 1; }
}

@keyframes particleFloat6 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50% { transform: translate(10px, -25px) scale(1.5); opacity: 0.9; }
}

/* 3D Ring Effect */
.ring-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px solid rgba(106, 184, 78, 0.15);
  animation: ringPulse 3s ease-in-out infinite;
  z-index: 4;
}

@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.1; }
}

/* ============================================================
   SCROLL INDICATOR
   ============================================================ */
.scroll-ind {
  text-align: center;
  padding: 20px;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  background: var(--warm-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.scroll-arrow {
  display: inline-block;
  margin-left: 6px;
  animation: bounceDown 1.4s ease-in-out infinite;
}

@keyframes bounceDown {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(5px)
  }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section {
  padding: 96px 56px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--green-mid);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--green-light);
}

.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}

.section-h2 em {
  font-style: italic;
  color: var(--green-mid);
}

.section-p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 56px;
}

/* ============================================================
   MENU — TABS
   ============================================================ */
.menu-section {
  background: var(--warm-white);
}

.menu-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 2px solid rgba(106, 184, 78, 0.15);
}

.menu-tab-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 12px 28px;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 0.3px;
}

.menu-tab-btn:hover {
  color: var(--green-deep);
}

.menu-tab-btn.active {
  color: var(--green-deep);
  border-bottom-color: var(--green-mid);
}

.menu-tab-panel {
  display: none;
}

.menu-tab-panel.active {
  display: block;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.menu-card {
  background: var(--cream);
  border: 1px solid rgba(106, 184, 78, 0.15);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  padding-top: 48px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--green-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(106, 184, 78, 0.4);
}

.menu-card:hover::before {
  transform: scaleX(1);
}

.menu-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 2px solid rgba(106, 184, 78, 0.2);
  /* Use picture element for responsive – or set via <picture> in HTML */
  background: var(--green-pale);
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: var(--radius-btn);
  text-transform: uppercase;
  z-index: 5;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-deep);
}

.card-order {
  background: none;
  border: 1px solid var(--green-mid);
  color: var(--green-mid);
  padding: 7px 16px;
  border-radius: var(--radius-btn);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.card-order:hover {
  background: var(--green-deep);
  color: #fff;
  border-color: var(--green-deep);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
  background: var(--green-deep);
  color: #fff;
}

.how-section .section-eyebrow {
  color: var(--green-light);
}

.how-section .section-eyebrow::before {
  background: var(--green-light);
}

.how-section .section-h2 {
  color: #fff;
}

.how-section .section-h2 em {
  color: var(--green-light);
}

.how-section .section-p {
  color: rgba(255, 255, 255, 0.6);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 36px 24px;
  position: relative;
  transition: background 0.2s;
}

.step:hover {
  background: rgba(255, 255, 255, 0.07);
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  font-style: italic;
  color: rgba(106, 184, 78, 0.25);
  line-height: 1;
  margin-bottom: 20px;
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(106, 184, 78, 0.15);
  border: 1px solid rgba(106, 184, 78, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.step-highlight {
  color: var(--green-light);
  font-weight: 500;
  font-size: 12px;
  margin-top: 10px;
}

/* ============================================================
   ORDER
   ============================================================ */
.order-section {
  background: var(--cream);
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.order-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
}

.order-left h2 em {
  font-style: italic;
  color: var(--green-mid);
}

.order-left p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.info-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
  margin-top: 6px;
}

.info-item-text strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 3px;
}

.info-item-text span {
  font-size: 13px;
  color: var(--muted);
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  border: 1px solid rgba(106, 184, 78, 0.3);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 13px;
  color: var(--green-deep);
  margin-top: 8px;
}

.pay-badge-icon {
  font-size: 18px;
}

.order-form {
  background: var(--warm-white);
  border: 1px solid rgba(106, 184, 78, 0.2);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
}

.form-h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(106, 184, 78, 0.15);
}

.field textarea {
  height: 100px;
  resize: none;
}

/* Jain Option Checkbox */
.jain-field {
  margin-bottom: 12px;
}

.field label.jain-label {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 0;
  text-transform: none;
  letter-spacing: normal;
}

.jain-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.jain-check-box {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--green-mid);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.jain-label input[type="checkbox"]:checked+.jain-check-box {
  background: var(--green-mid);
  border-color: var(--green-deep);
}

.jain-label input[type="checkbox"]:checked+.jain-check-box::after {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.jain-text {
  font-size: 13px;
  color: var(--green-deep);
}

.jain-sub {
  font-weight: 400;
  color: var(--green-deep);
}

.pay-note-form {
  background: var(--green-pale);
  border-left: 3px solid var(--green-light);
  border-radius: 0 10px 10px 0;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--green-deep);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ── Form Validation Styles ── */
.field.error input,
.field.error select,
.field.error textarea {
  border-color: var(--red);
  background: #fff5f4;
}

.field.error input:focus,
.field.error select:focus,
.field.error textarea:focus {
  box-shadow: 0 0 0 3px rgba(201, 69, 53, 0.15);
}

.field-error {
  display: none;
  color: var(--red);
  font-size: 12px;
  margin-top: 6px;
  font-weight: 400;
}

.field.error .field-error {
  display: block;
}

/* Success message */
.form-success {
  display: none;
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.form-success-text {
  font-size: 14px;
  color: var(--green-deep);
  font-weight: 500;
}

.form-success-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.submit-btn {
  width: 100%;
  background: var(--green-deep);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.submit-btn:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink);
  color: #fff;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 900;
}

.footer-logo em {
  font-style: italic;
  font-weight: 400;
  color: var(--green-light);
}

.footer-tag {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--green-light);
}

.footer-copy {
  text-align: right;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   ANIMATIONS ON LOAD
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  nav {
    padding: 16px 24px;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 248, 243, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(106, 184, 78, 0.2);
    padding: 8px 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li a {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
  }

  .nav-cta {
    display: none;
  }

  /* Hero stacks vertically on tablet */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 60px 24px 40px;
    order: 1;
  }

  .hero-right {
    min-height: 340px;
    order: 2;
  }

  .section {
    padding: 64px 24px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .order-form {
    padding: 32px 24px;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
    gap: 24px;
  }

  .footer-copy {
    text-align: center;
  }

  /* Bowl scene scales down */
  .bowl-scene {
    width: 300px;
    height: 370px;
  }

  .bowl-center {
    width: 138px;
    height: 138px;
  }

  .bowl-glow {
    width: 178px;
    height: 178px;
  }

  .fi-1 {
    width: 80px;
    height: 80px;
  }

  .fi-2 {
    width: 68px;
    height: 68px;
  }

  .fi-3 {
    width: 72px;
    height: 72px;
    top: 165px;
  }

  .fi-4 {
    width: 64px;
    height: 64px;
  }

  .fi-5 {
    width: 66px;
    height: 66px;
  }

  .fi-6 {
    width: 70px;
    height: 70px;
    top: 165px;
  }

  .fi-7 {
    width: 64px;
    height: 64px;
  }

  .fi-8 {
    width: 54px;
    height: 54px;
    animation: floatFi8Sm 5.4s ease-in-out infinite 1.5s;
  }

  @keyframes floatFi8Sm {
    0% {
      transform: translateX(45px) translateY(0px) rotate(0deg);
    }

    35% {
      transform: translateX(45px) translateY(-12px) rotate(5deg);
    }

    65% {
      transform: translateX(45px) translateY(-6px) rotate(-3deg);
    }

    100% {
      transform: translateX(45px) translateY(0px) rotate(0deg);
    }
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  nav {
    padding: 14px 16px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 48px 16px 32px;
    order: 1;
  }

  .hero-right {
    order: 2;
    min-height: 300px;
    /* Always visible on mobile */
    display: flex !important;
  }

  .hero-h1,
  .hero-h1-sub {
    font-size: clamp(42px, 11vw, 56px);
  }

  .hero-desc {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .hero-attrs {
    margin-bottom: 32px;
  }

  /* Bowl scene scaled for mobile */
  .bowl-scene {
    width: 264px;
    height: 300px;
  }

  .bowl-center {
    width: 108px;
    height: 108px;
  }

  .bowl-glow {
    width: 140px;
    height: 140px;
  }

  .fi-1 {
    width: 64px;
    height: 64px;
    top: 8px;
  }

  .fi-2 {
    width: 54px;
    height: 54px;
    top: 44px;
    right: 22px;
  }

  .fi-3 {
    width: 58px;
    height: 58px;
    top: 135px;
    right: 10px;
  }

  .fi-4 {
    width: 52px;
    height: 52px;
    bottom: 30px;
    right: 38px;
  }

  .fi-5 {
    width: 54px;
    height: 54px;
    bottom: 30px;
    left: 38px;
  }

  .fi-6 {
    width: 56px;
    height: 56px;
    top: 135px;
    left: 10px;
  }

  .fi-7 {
    width: 52px;
    height: 52px;
    top: 44px;
    left: 22px;
  }

  .fi-8 {
    width: 44px;
    height: 44px;
    top: 68px;
    animation: floatFi8Xs 5.4s ease-in-out infinite 1.5s;
  }

  @keyframes floatFi8Xs {
    0% {
      transform: translateX(40px) translateY(0px) rotate(0deg);
    }

    35% {
      transform: translateX(40px) translateY(-10px) rotate(5deg);
    }

    65% {
      transform: translateX(40px) translateY(-5px) rotate(-3deg);
    }

    100% {
      transform: translateX(40px) translateY(0px) rotate(0deg);
    }
  }

  .bowl-plate {
    width: 140px;
    height: 18px;
    bottom: 18px;
  }

  .section {
    padding: 48px 16px;
  }

  .section-p {
    margin-bottom: 32px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .menu-card {
    padding: 24px 20px;
  }

  .menu-tab-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step {
    padding: 28px 20px;
  }

  .order-grid {
    gap: 36px;
  }

  .order-form {
    padding: 24px 16px;
  }

  footer {
    padding: 32px 16px;
    gap: 20px;
  }

  .footer-links {
    gap: 16px;
  }

  /* Hero actions stack */
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}