/* ============================================================
   JK POULTRIES — style.css
   Design: Luxury Editorial · Farm-warm palette · Playfair type
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --cream:     #FFFBEB;
  --cream-mid: #FEF3C7;
  --yellow:    #FDE68A;
  --gold:      #F59E0B;
  --gold-dark: #B45309;
  --brown:     #78350F;
  --green:     #16A34A;
  --green-dk:  #14532D;
  --white:     #ffffff;
  --ink:       #1C1408;
  --ink-soft:  #4B3A1A;
  --muted:     #92400E;
  --border:    rgba(180,83,9,0.15);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-italic:  'Cormorant Garamond', Georgia, serif;

  --nav-h: 72px;
  --radius: 20px;
  --shadow: 0 8px 40px rgba(120,53,15,0.12);
  --shadow-lg: 0 24px 80px rgba(120,53,15,0.18);
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---------- LOADER ---------- */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
}

.loader-content { text-align: center; }

.loader-egg-anim {
  width: 90px; height: 110px; margin: 0 auto 20px;
  animation: loaderBob 1s ease-in-out infinite alternate;
}
.loader-egg-svg { width: 100%; height: 100%; }

@keyframes loaderBob {
  from { transform: translateY(0); }
  to   { transform: translateY(-12px); }
}

.loader-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.loader-bar {
  width: 160px; height: 3px;
  background: var(--yellow);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-bar-fill {
  height: 100%;
  background: var(--gold-dark);
  width: 0;
  animation: loaderFill 1.8s ease forwards;
}
@keyframes loaderFill {
  to { width: 100%; }
}

/* ---------- CUSTOM CURSOR ---------- */
#cursor-dot, #cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
#cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold-dark);
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  transition: transform 0.15s ease, width 0.3s var(--transition), height 0.3s var(--transition);
}
body.cursor-hover #cursor-ring {
  width: 54px; height: 54px;
  border-color: var(--gold-dark);
  background: rgba(245,158,11,0.06);
}

/* ---------- NAVBAR ---------- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(255,251,235,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.02em;
}
.brand-egg { width: 30px; height: 36px; }
.brand span { color: var(--ink); }
.brand strong { color: var(--gold-dark); }

.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 99px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--gold-dark); background: var(--cream-mid); }

.nav-order-btn {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 99px !important;
}
.nav-order-btn:hover { background: var(--brown) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; padding: 4px;
}
.hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 800;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { text-align: center; }
.mobile-nav li { margin: 16px 0; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700;
  color: var(--ink);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold-dark); }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: linear-gradient(160deg, var(--cream) 0%, #FEF9E7 50%, #FFF3CD 100%);
}

.hero-bg-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(253,230,138,0.45) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(22,163,74,0.1) 0%, transparent 70%);
  bottom: -100px; left: -80px;
}

.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.6;
}

/* Egg stage — absolutely positioned, large and central */
.hero-egg-stage {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: min(420px, 45vw);
  z-index: 2;
}
#heroEgg {
  width: 100%; height: auto;
  transform-origin: center bottom;
  filter: drop-shadow(0 30px 60px rgba(180,83,9,0.2));
}

/* Hero text — left side */
.hero-text {
  position: relative; z-index: 3;
  max-width: 580px;
  padding: 60px 0 60px 8%;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(22,163,74,0.1);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.ht-line { display: block; }
.ht-line.golden { color: var(--gold-dark); font-style: italic; }

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 440px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-dark);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 99px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(180,83,9,0.25);
}
.btn-primary:hover {
  background: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(120,53,15,0.3);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--gold-dark);
  color: var(--gold-dark);
  padding: 14px 28px;
  border-radius: 99px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero badges */
.hero-badges {
  position: absolute;
  bottom: 48px; left: 8%;
  display: flex; gap: 12px; flex-wrap: wrap;
  z-index: 3;
}
.h-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.hb-icon { font-size: 1.1rem; }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 48px; right: 8%;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 3;
}
.sc-text {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.sc-line {
  width: 1.5px; height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  border-radius: 1px;
  position: relative; overflow: hidden;
}
.sc-dot {
  position: absolute; top: 0;
  width: 1.5px; height: 18px;
  background: var(--gold-dark);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { top: -18px; }
  100% { top: 100%; }
}

/* ============================================================
   MARQUEE BAND
   ============================================================ */
.marquee-band {
  background: var(--gold-dark);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex; gap: 0;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-inner span {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 36px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT THE FARM
   ============================================================ */
#about {
  padding: 120px 0;
  overflow: hidden;
}

.about-layout {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-wrap {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.farm-scene { width: 100%; height: 100%; }
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(120,53,15,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.about-float-card {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--white);
  border-radius: 18px;
  padding: 20px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--border);
}
.afc-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 900;
  color: var(--gold-dark);
  line-height: 1;
}
.afc-label {
  display: block;
  font-size: 0.75rem; font-weight: 500;
  color: var(--muted);
  margin-top: 4px;
  max-width: 110px;
  line-height: 1.4;
}

/* Text copy */
.section-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green);
  background: rgba(22,163,74,0.1);
  padding: 5px 12px; border-radius: 99px;
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  color: var(--gold-dark);
  font-family: var(--font-italic);
  font-weight: 300;
  font-size: 110%;
}

.about-para {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.about-pillars {
  display: flex; flex-direction: column; gap: 14px;
  margin: 32px 0;
}
.pillar {
  display: flex; align-items: flex-start; gap: 14px;
}
.pillar-icon { font-size: 1.6rem; margin-top: 2px; flex-shrink: 0; }
.pillar strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--ink); }
.pillar p { font-size: 0.85rem; color: var(--ink-soft); margin-top: 2px; }

/* ============================================================
   OUR EGGS — PRODUCTS
   ============================================================ */
#eggs {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--cream-mid) 0%, var(--cream) 100%);
}

.section-head {
  text-align: center;
  max-width: 620px; margin: 0 auto 64px;
  padding: 0 32px;
}
.section-sub {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-top: 12px;
}

.products-grid {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  cursor: none;
}
.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
.product-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(245,158,11,0.2), var(--shadow);
}

.pc-visual {
  background: linear-gradient(135deg, var(--cream-mid) 0%, #FFF9E6 100%);
  padding: 36px 0 16px;
  display: flex; justify-content: center; align-items: center;
  position: relative;
  min-height: 200px;
}
.pc-egg-svg {
  width: 110px; height: auto;
  filter: drop-shadow(0 12px 24px rgba(180,83,9,0.15));
  transition: transform var(--transition);
}
.product-card:hover .pc-egg-svg {
  transform: translateY(-8px) scale(1.06);
}

.pc-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold-dark); color: var(--white);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 99px;
}
.pc-badge.premium { background: var(--brown); }
.pc-badge.organic { background: var(--green); }
.pc-badge.jumbo   { background: #7C3AED; }

.pc-info { padding: 20px 22px 24px; }
.pc-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 8px;
}
.pc-info p { font-size: 0.85rem; line-height: 1.6; color: var(--ink-soft); }

.pc-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin: 16px 0 18px;
}
.pc-weight { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.pc-price {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--gold-dark);
}
.pc-price small { font-size: 0.75rem; color: var(--muted); font-family: var(--font-body); font-weight: 400; }

.pc-btn {
  display: block; text-align: center;
  background: var(--cream-mid);
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
  padding: 11px 0;
  border-radius: 12px;
  font-size: 0.88rem; font-weight: 600;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.pc-btn:hover {
  background: var(--gold-dark);
  color: var(--white);
  border-color: var(--gold-dark);
}

/* ============================================================
   QUALITY & NUTRITION
   ============================================================ */
#quality {
  padding: 120px 0;
  overflow: hidden;
}

.quality-layout {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.quality-visual {
  display: flex; justify-content: center; align-items: center;
}

.cracking-egg-wrap {
  position: relative;
  text-align: center;
}
.crack-svg {
  width: 300px; height: auto;
  filter: drop-shadow(0 24px 48px rgba(180,83,9,0.2));
}
.crack-cta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 16px;
  font-style: italic;
  opacity: 0.7;
  transition: opacity 0.3s;
}

/* Nutrition */
.section-sub-sm {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 32px;
}

.nutrition-bars { margin-bottom: 32px; }
.n-bar-row { margin-bottom: 20px; }
.n-label {
  display: flex; justify-content: space-between;
  font-size: 0.88rem; font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink-soft);
}
.n-val { font-weight: 600; color: var(--ink); }
.n-track {
  height: 8px;
  background: var(--cream-mid);
  border-radius: 99px;
  overflow: hidden;
}
.n-fill {
  height: 100%;
  width: 0; /* animated by GSAP */
  border-radius: 99px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.quality-badges-row {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.q-badge {
  background: rgba(22,163,74,0.08);
  color: var(--green-dk);
  border: 1px solid rgba(22,163,74,0.2);
  padding: 7px 14px;
  border-radius: 99px;
  font-size: 0.82rem; font-weight: 500;
}

/* ============================================================
   FARM PROCESS TIMELINE
   ============================================================ */
#process {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-mid) 100%);
  overflow: hidden;
}

.process-timeline {
  max-width: 820px; margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

.process-line {
  position: absolute;
  left: 62px; top: 0; bottom: 0;
  width: 2px;
  background: var(--yellow);
  border-radius: 1px;
}
.process-line-fill {
  width: 100%; height: 0%;
  background: linear-gradient(to bottom, var(--gold-dark), var(--gold));
  border-radius: 1px;
  transition: height 0.1s;
}

.process-step {
  display: flex; gap: 28px;
  padding: 12px 0 48px;
  position: relative;
  z-index: 1;
}

.ps-icon-wrap {
  flex-shrink: 0;
  width: 64px; height: 64px;
  background: var(--white);
  border: 2px solid var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(180,83,9,0.1);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.process-step.active .ps-icon-wrap {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(245,158,11,0.15), 0 4px 16px rgba(180,83,9,0.15);
  transform: scale(1.1);
}
.ps-icon { font-size: 1.8rem; }

.ps-content {
  padding-top: 12px;
  opacity: 0.5;
  transform: translateX(20px);
  transition: opacity var(--transition), transform var(--transition);
}
.process-step.active .ps-content {
  opacity: 1;
  transform: translateX(0);
}
.ps-content h4 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 8px;
}
.ps-content p {
  font-size: 0.9rem; line-height: 1.7;
  color: var(--ink-soft);
}

/* ============================================================
   CUSTOMER REVIEWS
   ============================================================ */
#reviews {
  padding: 120px 0;
  overflow: hidden;
}

.reviews-slider-wrap {
  max-width: 1100px; margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.rc-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.rc-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 24px;
  font-family: var(--font-italic);
  font-size: 1.05rem;
}

.rc-author { display: flex; align-items: center; gap: 12px; }
.rc-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem;
  color: var(--ink);
  flex-shrink: 0;
}
.rc-author strong { display: block; font-size: 0.9rem; font-weight: 600; }
.rc-author span { font-size: 0.78rem; color: var(--muted); }

.reviews-controls {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 40px;
}

.rc-prev, .rc-next {
  width: 44px; height: 44px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: none;
}
.rc-prev:hover, .rc-next:hover {
  background: var(--gold-dark);
  color: var(--white);
  border-color: var(--gold-dark);
}

.rc-dots { display: flex; gap: 8px; align-items: center; }
.rc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  cursor: none;
  transition: background 0.2s, transform 0.2s;
}
.rc-dot.active {
  background: var(--gold-dark);
  transform: scale(1.3);
}

/* ============================================================
   ORDER / CONTACT
   ============================================================ */
#order {
  padding: 120px 0;
  background: linear-gradient(135deg, #1C1408 0%, #3B1F0A 100%);
  position: relative;
  overflow: hidden;
}
#order::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,158,11,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.order-layout {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Order copy */
.order-copy .section-tag {
  color: var(--gold);
  background: rgba(245,158,11,0.15);
}
.order-copy .section-title { color: var(--white); }
.order-copy .section-title em { color: var(--gold); }
.order-copy > p {
  color: rgba(255,251,235,0.7);
  font-size: 1rem; line-height: 1.7;
  margin-bottom: 32px;
}

.order-perks { margin-bottom: 36px; }
.perk {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,251,235,0.8);
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.perk:last-child { border-bottom: none; }
.perk span { font-size: 1.1rem; }

.contact-direct { display: flex; flex-direction: column; gap: 10px; }
.contact-link {
  color: rgba(255,251,235,0.8);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--gold); }
.contact-link.wa { color: #4ADE80; }

/* Form */
.order-form-wrap {
  position: relative; z-index: 1;
}

.order-form {
  background: var(--white);
  border-radius: 28px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--ink);
  margin-bottom: 28px;
}

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

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.82rem; font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(180,83,9,0.15);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
  background: var(--white);
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--gold-dark);
  color: var(--white);
  border-radius: 14px;
  font-size: 1rem; font-weight: 600;
  letter-spacing: 0.02em;
  cursor: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(180,83,9,0.3);
  margin-top: 6px;
}
.form-submit-btn:hover {
  background: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(120,53,15,0.35);
}

.form-success {
  text-align: center;
  padding: 24px;
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: 12px;
  margin-top: 16px;
}
.form-success span { font-size: 2rem; display: block; margin-bottom: 8px; }
.form-success strong { display: block; font-size: 1rem; color: var(--green); margin-bottom: 4px; }
.form-success p { font-size: 0.85rem; color: var(--ink-soft); }

.form-error {
  padding: 14px 18px;
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.2);
  border-radius: 10px;
  font-size: 0.85rem;
  color: #DC2626;
  margin-top: 12px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #0F0A03;
  padding: 80px 0 0;
}

.footer-grid {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.fb-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.fb-logo span {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--white);
}

.footer-brand > p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,251,235,0.5);
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background 0.2s;
}
.footer-social a:hover { background: rgba(245,158,11,0.2); }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a {
  font-size: 0.85rem;
  color: rgba(255,251,235,0.5);
  line-height: 1.6;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 20px 32px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,251,235,0.3);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--gold-dark);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(180,83,9,0.3);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 500;
  cursor: none;
}
.back-to-top.show {
  opacity: 1; pointer-events: all;
}
.back-to-top:hover { transform: translateY(-3px); }

/* ============================================================
   UTILITY ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(40px); }
.fade-left { opacity: 0; transform: translateX(-50px); }
.fade-right { opacity: 0; transform: translateX(50px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-egg-stage { width: 35vw; }
}

@media (max-width: 1024px) {
  .about-layout,
  .quality-layout,
  .order-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-float-card { bottom: -16px; right: -8px; }
  .hero-egg-stage { display: none; } /* hide egg on tablet/mobile — shown differently */
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  body { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none; }
  .form-submit-btn, .pc-btn, button { cursor: pointer; }

  #hero { min-height: 100svh; padding: 0 24px; justify-content: flex-start; }
  .hero-text { padding: 120px 0 80px; }
  .hero-badges { display: none; }
  .scroll-cue { display: none; }

  .products-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 20px; }

  .quality-layout { padding: 0 20px; }
  .crack-svg { width: 200px; }

  .process-timeline { padding: 0 20px; }
  .process-line { left: 42px; }

  .reviews-track { gap: 16px; }
  .review-card { flex: 0 0 min(320px, 80vw); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }

  .order-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .about-layout { padding: 0 20px; }
  .section-head { padding: 0 20px; }
  .order-layout { padding: 0 20px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.8rem; }
  .section-title { font-size: 2rem; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  #navbar, .mobile-nav, #loader, #cursor-dot, #cursor-ring,
  .back-to-top, .scroll-cue, .marquee-band { display: none; }
}
