/* ======================================
   SUNFARM EGGS — style.css
   Dark Premium | Gold Accent | Syne + Cormorant
   ====================================== */

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

:root {
  --bg:       #0C0B09;
  --bg2:      #131109;
  --bg3:      #1A1710;
  --gold:     #F0C040;
  --gold-lt:  #F8D870;
  --gold-dim: rgba(240,192,64,0.12);
  --gold-glow:rgba(240,192,64,0.22);
  --cream:    #FDF5E4;
  --accent:   #E8603A;
  --text:     #E8E3D8;
  --text-mid: rgba(232,227,216,0.55);
  --text-dim: rgba(232,227,216,0.28);
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Syne', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9000;
  opacity: 0.038;
  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)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: rgba(240,192,64,0.4); }

/* ======================================
   LOADER
   ====================================== */
#loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 18px;
}

.loader-egg-wrap { margin-bottom: 8px; }

.loader-egg {
  width: 74px; height: 90px;
  position: relative;
}

.egg-shell {
  width: 100%; height: 100%;
  background: linear-gradient(140deg, var(--gold-lt) 0%, var(--gold) 45%, #b8880a 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: absolute;
  box-shadow: 0 0 50px var(--gold-glow), inset 0 -10px 20px rgba(0,0,0,0.2);
  transform: scale(0);
}

.egg-shine {
  width: 22px; height: 28px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  position: absolute;
  top: 14px; left: 14px;
  transform: rotate(-30deg) scale(0);
  filter: blur(4px);
}

.loader-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  opacity: 0;
}

.loader-brand em { font-style: italic; color: var(--cream); }

.loader-sub {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0;
}

.loader-bar-wrap { margin-top: 10px; }

.loader-bar {
  width: 180px; height: 1px;
  background: rgba(240,192,64,0.12);
}

.loader-fill {
  height: 100%; width: 0;
  background: var(--gold);
  transition: width 0.06s linear;
}

/* ======================================
   CURSOR
   ====================================== */
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(240,192,64,0.45);
  border-radius: 50%;
  position: fixed;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s, background .3s;
}

.cursor-ring.hov {
  width: 56px; height: 56px;
  border-color: var(--gold);
  background: var(--gold-dim);
}

/* ======================================
   NAV
   ====================================== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 26px 60px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 500;
  border-bottom: 1px solid transparent;
  transition: background .4s, padding .4s, border-color .4s;
}

nav.scrolled {
  background: rgba(12,11,9,0.92);
  backdrop-filter: blur(24px);
  padding: 16px 60px;
  border-bottom-color: var(--gold-dim);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem; font-weight: 700;
  color: var(--gold); text-decoration: none;
  letter-spacing: 0.03em;
}

.nav-logo em { font-style: italic; color: var(--cream); }

.nav-links { display: flex; gap: 36px; list-style: none; }

.nav-links a {
  color: var(--text-mid); text-decoration: none;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: color .3s;
}

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

.nav-cta {
  color: var(--gold); text-decoration: none;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--gold-dim);
  padding: 10px 22px; border-radius: var(--r-sm);
  transition: background .3s, border-color .3s;
}

.nav-cta:hover { background: var(--gold-dim); border-color: var(--gold); }

.hamburger {
  display: none; flex-direction: column; gap: 6px;
  cursor: pointer; z-index: 600;
}

.hamburger span {
  width: 24px; height: 1px;
  background: var(--gold);
  transition: .3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 450;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform .55s cubic-bezier(.77,0,.175,1);
}

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

.mm-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 700;
  color: var(--text); text-decoration: none;
  transition: color .3s;
}

.mm-link:hover { color: var(--gold); }

.mm-cta {
  color: var(--gold); text-decoration: none;
  font-size: 1rem; font-weight: 600;
  border: 1px solid var(--gold-dim);
  padding: 12px 32px; border-radius: var(--r-xl);
  margin-top: 8px;
  transition: background .3s;
}

.mm-cta:hover { background: var(--gold-dim); }

/* ======================================
   UTILITIES
   ====================================== */
.container { max-width: 1260px; margin: 0 auto; padding: 0 60px; }

.section-pad { padding: 130px 0; }
.section-dark { background: var(--bg2); padding: 130px 0; }

.sec-label {
  font-size: 0.66rem; letter-spacing: 0.38em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}

.sec-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold); opacity: .5;
}

.sec-label.light { color: var(--gold-lt); }
.sec-label.light::before { background: var(--gold-lt); }

.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: 600; line-height: 1.1;
  color: var(--cream); letter-spacing: -.01em;
}

.sec-title em { font-style: italic; color: var(--gold); }
.sec-title.light { color: var(--cream); }

.sec-header { text-align: center; margin-bottom: 72px; }

.sec-desc {
  font-size: .95rem; color: var(--text-mid);
  line-height: 1.85; max-width: 460px;
  margin: 18px auto 0;
}

/* Reveal classes (animated by GSAP) */
.reveal-up  { opacity: 0; transform: translateY(48px); }
.reveal-left  { opacity: 0; transform: translateX(-52px); }
.reveal-right { opacity: 0; transform: translateX(52px); }

/* ======================================
   HERO
   ====================================== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 90px;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-glow {
  position: absolute; border-radius: 50%;
}

.hero-glow.g1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(240,192,64,.09) 0%, transparent 70%);
  top: -250px; right: -200px;
}

.hero-glow.g2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,96,58,.06) 0%, transparent 70%);
  bottom: -150px; left: -150px;
}

.hero-glow.g3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(240,192,64,.05) 0%, transparent 70%);
  top: 40%; left: 28%;
}

.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(240,192,64,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,192,64,.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-inner {
  max-width: 1260px; margin: 0 auto;
  padding: 0 60px; width: 100%;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px; align-items: center;
  min-height: 90vh;
}

/* Hero eyebrow */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .75rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-mid);
  margin-bottom: 28px; opacity: 0;
}

.eyebrow-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  animation: eyePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes eyePulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--gold-glow); }
  60% { box-shadow: 0 0 0 8px transparent; }
}

/* Hero headline */
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.6rem, 7vw, 7rem);
  font-weight: 600; line-height: .96;
  color: var(--cream); letter-spacing: -.025em;
}

.hw { display: inline-block; overflow: hidden; margin-right: .15em; }
.hc { display: inline-block; }
em.hc { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: .98rem; color: var(--text-mid);
  line-height: 1.85; max-width: 430px;
  margin-top: 28px; opacity: 0;
}

.hero-btns {
  display: flex; gap: 14px;
  margin-top: 36px; flex-wrap: wrap; opacity: 0;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--bg);
  padding: 14px 34px; border-radius: var(--r-sm);
  text-decoration: none; font-weight: 800;
  font-size: .82rem; letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .3s, transform .3s, box-shadow .3s;
}

.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--gold-glow);
}

.btn-arrow { transition: transform .3s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 14px 34px; border-radius: var(--r-sm);
  text-decoration: none; font-weight: 700;
  font-size: .82rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-mid);
  border: 1px solid rgba(232,227,216,.14);
  transition: border-color .3s, color .3s;
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Hero stats */
.hero-stats {
  display: flex; align-items: center;
  gap: 26px; margin-top: 48px; opacity: 0;
}

.hs { display: flex; flex-direction: column; gap: 3px; }

.hs-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}

.hs-num small { font-size: 1rem; }
.hs-lbl { font-size: .68rem; color: var(--text-dim); letter-spacing: .12em; text-transform: uppercase; }
.hs-div { width: 1px; height: 38px; background: rgba(240,192,64,.12); }

/* ---- Egg visual ---- */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 520px; opacity: 0;
}

/* Orbiting rings */
.orbit-wrap {
  position: absolute;
  width: 400px; height: 400px;
  display: flex; align-items: center; justify-content: center;
}

.orbit {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(240,192,64,.08);
  display: flex; align-items: flex-start; justify-content: center;
}

.or1 { width: 200px; height: 200px; animation: orbitSpin 14s linear infinite; }
.or2 { width: 310px; height: 310px; animation: orbitSpin 22s linear infinite reverse; }
.or3 { width: 390px; height: 390px; border-color: rgba(240,192,64,.04); animation: orbitSpin 35s linear infinite; }

@keyframes orbitSpin { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } }

.orbit-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); margin-top: -4px;
  box-shadow: 0 0 10px var(--gold-glow);
}

/* The egg */
.hero-egg { position: relative; z-index: 2; }

.egg-body {
  width: 190px; height: 230px;
  background: linear-gradient(145deg, var(--gold-lt) 0%, var(--gold) 42%, #c09010 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow:
    0 24px 60px rgba(240,192,64,.28),
    0 0 0 1px rgba(240,192,64,.1),
    inset 0 -16px 28px rgba(0,0,0,.18);
  animation: eggFloat 4.2s ease-in-out infinite;
  position: relative; overflow: hidden;
}

.egg-spec {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.22);
}

.egg-spec.s1 { width: 50px; height: 60px; top: 20px; left: 22px; filter: blur(6px); transform: rotate(-20deg); }
.egg-spec.s2 { width: 18px; height: 22px; top: 16px; left: 46px; filter: blur(3px); }

@keyframes eggFloat {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-18px) rotate(1.5deg); }
}

.egg-shadow {
  width: 120px; height: 20px;
  background: rgba(240,192,64,.18);
  border-radius: 50%;
  filter: blur(16px);
  margin: 14px auto 0;
  animation: shadowPulse 4.2s ease-in-out infinite;
}

@keyframes shadowPulse {
  0%, 100% { opacity: 1; transform: scaleX(1); }
  50% { opacity: .5; transform: scaleX(.7); }
}

.egg-glow-ring {
  position: absolute;
  width: 250px; height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(240,192,64,.08);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: glowRing 3s ease-in-out infinite;
}

@keyframes glowRing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240,192,64,.12); }
  50% { box-shadow: 0 0 40px 20px rgba(240,192,64,.05); }
}

/* Floating info cards */
.fc {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(240,192,64,.12);
  backdrop-filter: blur(14px);
  border-radius: var(--r-md);
  padding: 13px 17px;
  display: flex; align-items: center; gap: 11px;
}

.fc1 { top: 50px; left: -30px; animation: f1 5.5s ease-in-out infinite; }
.fc2 { bottom: 110px; left: -50px; animation: f2 6.5s ease-in-out infinite 1.2s; }
.fc3 { top: 170px; right: -24px; animation: f3 5s ease-in-out infinite .7s; }

@keyframes f1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes f2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
@keyframes f3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.fc-ico { font-size: 1.35rem; }
.fc-t { font-size: .8rem; font-weight: 700; color: var(--cream); line-height: 1.2; }
.fc-s { font-size: .68rem; color: var(--text-dim); margin-top: 2px; }

/* Scroll indicator */
.scroll-ind {
  position: absolute; bottom: 38px; left: 60px;
  display: flex; align-items: center; gap: 12px;
  opacity: 0;
}

.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim { 0%,100%{opacity:.35} 50%{opacity:1} }

.scroll-ind span {
  font-size: .62rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--text-dim);
  writing-mode: vertical-rl;
}

/* ======================================
   MARQUEE
   ====================================== */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(240,192,64,.07);
  border-bottom: 1px solid rgba(240,192,64,.07);
  padding: 17px 0;
  background: rgba(240,192,64,.025);
}

.marquee-track { overflow: hidden; }

.marquee-inner {
  display: inline-flex; gap: 0;
  white-space: nowrap;
  animation: marqueeAnim 28s linear infinite;
}

.marquee-inner span {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--text-dim); padding: 0 26px;
}

.marquee-inner b {
  font-size: .45rem; color: rgba(240,192,64,.4);
  align-self: center; font-weight: 400;
}

@keyframes marqueeAnim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ======================================
   ABOUT
   ====================================== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}

.about-body {
  font-size: 1.02rem; color: var(--text-mid);
  line-height: 1.9; margin-top: 22px;
}

.about-pts { margin-top: 34px; display: flex; flex-direction: column; gap: 14px; }

.apt {
  display: flex; gap: 15px; align-items: flex-start;
  padding: 18px; border-radius: var(--r-md);
  border: 1px solid rgba(240,192,64,.06);
  transition: border-color .35s, background .35s;
}

.apt:hover {
  border-color: rgba(240,192,64,.16);
  background: rgba(240,192,64,.03);
}

.apt-ico { font-size: 1.45rem; flex-shrink: 0; margin-top: 2px; }
.apt strong { display: block; font-size: .88rem; font-weight: 700; color: var(--cream); margin-bottom: 4px; }
.apt p { font-size: .82rem; color: var(--text-mid); line-height: 1.65; }

/* About card grid */
.aig {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.aig-card {
  border-radius: var(--r-lg);
  border: 1px solid rgba(240,192,64,.07);
  background: var(--bg2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 32px 20px; gap: 12px;
  transition: transform .4s, border-color .4s, box-shadow .4s;
  cursor: default;
}

.aig-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240,192,64,.2);
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

.aig-big { grid-column: 1/-1; padding: 44px 20px; }
.aig-gold { border-color: rgba(240,192,64,.14); background: rgba(240,192,64,.04); }

.aig-ico { font-size: 2.6rem; }
.aig-big .aig-ico { font-size: 3.5rem; }
.aig-card span { font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--text-mid); }

/* ======================================
   PRODUCTS
   ====================================== */
.prod-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 18px;
}

.prod-card {
  border-radius: var(--r-lg);
  border: 1px solid rgba(240,192,64,.08);
  background: rgba(255,255,255,.02);
  padding: 30px 26px;
  position: relative;
  transition: transform .4s, border-color .4s, box-shadow .4s;
  cursor: pointer;
  display: flex; flex-direction: column;
}

.prod-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240,192,64,.22);
  box-shadow: 0 28px 64px rgba(0,0,0,.45);
}

.prod-card.featured {
  border-color: rgba(240,192,64,.18);
  background: rgba(240,192,64,.03);
}

.feat-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--bg);
  font-size: .62rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px;
  white-space: nowrap;
}

.prod-ico { font-size: 2rem; margin-bottom: 14px; }

.prod-grade {
  font-size: .62rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px; font-weight: 700;
}

.prod-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 600;
  color: var(--cream); margin-bottom: 12px;
}

.prod-card p {
  font-size: .83rem; color: var(--text-mid);
  line-height: 1.72; flex: 1;
}

.prod-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 18px;
}

.prod-tags span {
  font-size: .64rem; padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(240,192,64,.1);
  color: var(--text-dim); letter-spacing: .04em;
}

.prod-cta {
  display: block; margin-top: 22px;
  text-align: center; padding: 12px;
  border: 1px solid rgba(240,192,64,.14);
  border-radius: var(--r-sm);
  color: var(--gold); text-decoration: none;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .05em;
  transition: background .3s, border-color .3s;
}

.prod-cta:hover { background: var(--gold-dim); border-color: var(--gold); }

/* ======================================
   STATS
   ====================================== */
.stats-sec {
  padding: 90px 0;
  background: linear-gradient(135deg, rgba(240,192,64,.05) 0%, transparent 55%);
  border-top: 1px solid rgba(240,192,64,.06);
  border-bottom: 1px solid rgba(240,192,64,.06);
}

.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }

.stat {
  text-align: center; padding: 40px 20px;
  border-right: 1px solid rgba(240,192,64,.07);
}

.stat:last-child { border-right: none; }

.stat-wrap { display: inline-flex; align-items: baseline; gap: 2px; }

.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem,4.5vw,4.5rem);
  font-weight: 700; color: var(--gold); line-height: 1;
  display: inline;
}

.stat-sfx {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem,2.2vw,2.2rem);
  color: var(--gold); display: inline;
}

.stat-lbl {
  font-size: .72rem; color: var(--text-mid);
  letter-spacing: .16em; text-transform: uppercase;
  margin-top: 10px;
}

/* ======================================
   PROCESS
   ====================================== */
.proc-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  gap: 20px; align-items: center;
}

.proc-step {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(240,192,64,.07);
  border-radius: var(--r-lg); padding: 40px 30px;
  text-align: center;
  transition: border-color .4s, transform .4s;
}

.proc-step:hover { border-color: rgba(240,192,64,.2); transform: translateY(-5px); }

.proc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: .75rem; letter-spacing: .22em;
  color: var(--gold); opacity: .5; margin-bottom: 14px;
}

.proc-ico { font-size: 2.4rem; margin-bottom: 16px; }

.proc-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--cream); margin-bottom: 12px;
}

.proc-step p { font-size: .83rem; color: var(--text-mid); line-height: 1.72; }

.proc-arr {
  font-size: 1.4rem; color: var(--gold); opacity: .25;
  text-align: center;
}

/* ======================================
   TESTIMONIALS
   ====================================== */
.testi-sec { overflow: hidden; }

.testi-marquee { overflow: hidden; margin-top: 0; }

.testi-track {
  display: flex; gap: 22px;
  width: max-content;
  animation: testiMove 35s linear infinite;
}

.testi-track:hover { animation-play-state: paused; }

@keyframes testiMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testi-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(240,192,64,.07);
  border-radius: var(--r-lg); padding: 30px 26px;
  width: 310px; flex-shrink: 0;
  transition: border-color .35s;
}

.testi-card:hover { border-color: rgba(240,192,64,.18); }

.testi-stars { color: var(--gold); font-size: .85rem; margin-bottom: 14px; letter-spacing: .1em; }

.testi-card p {
  font-size: .88rem; color: var(--text-mid);
  line-height: 1.78; font-style: italic;
}

.testi-auth { margin-top: 18px; font-size: .75rem; color: var(--text-dim); }
.testi-auth strong { color: var(--cream); font-style: normal; }

/* ======================================
   CTA / CONTACT
   ====================================== */
.cta-sec {
  padding: 130px 0;
  position: relative; overflow: hidden;
  background: var(--bg3);
}

.cta-bg-glow {
  position: absolute; border-radius: 50%;
  pointer-events: none;
}

.cg1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(240,192,64,.07) 0%, transparent 70%);
  top: -200px; right: -200px;
}

.cg2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(232,96,58,.05) 0%, transparent 70%);
  bottom: -150px; left: -150px;
}

.cta-inner {
  max-width: 680px; margin: 0 auto;
  text-align: center; position: relative; z-index: 2;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem,4.5vw,4.2rem);
  font-weight: 600; color: var(--cream); line-height: 1.1;
  margin-bottom: 14px;
}

.cta-title em { font-style: italic; color: var(--gold); }

.cta-desc {
  font-size: .97rem; color: var(--text-mid);
  margin-bottom: 46px; line-height: 1.75;
}

.cta-form { display: flex; flex-direction: column; gap: 13px; text-align: left; }

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

.fi {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(240,192,64,.11);
  border-radius: var(--r-md);
  padding: 14px 19px;
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-size: .88rem; outline: none; width: 100%;
  transition: border-color .3s, background .3s;
  -webkit-appearance: none;
}

.fi:focus {
  border-color: var(--gold);
  background: rgba(240,192,64,.04);
}

.fi::placeholder { color: var(--text-dim); }
.fi option { background: var(--bg2); color: var(--text); }

.fi-area { resize: vertical; min-height: 96px; }

.cta-btn {
  background: var(--gold); color: var(--bg);
  border: none; padding: 17px 42px;
  border-radius: var(--r-md);
  font-family: 'Syne', sans-serif;
  font-size: .88rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; margin-top: 6px;
  transition: background .3s, transform .3s, box-shadow .3s;
}

.cta-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--gold-glow);
}

.cta-alts {
  display: flex; justify-content: center;
  gap: 22px; margin-top: 30px; flex-wrap: wrap;
}

.alt {
  color: var(--text-mid); text-decoration: none;
  font-size: .83rem; transition: color .3s;
  display: flex; align-items: center; gap: 6px;
}

.alt:hover { color: var(--gold); }

/* ======================================
   FOOTER
   ====================================== */
.footer {
  background: var(--bg);
  border-top: 1px solid rgba(240,192,64,.07);
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 56px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 700;
  color: var(--gold); margin-bottom: 14px;
}

.footer-logo em { font-style: italic; color: var(--cream); }

.footer-brand p {
  font-size: .83rem; color: var(--text-dim);
  line-height: 1.82; max-width: 270px; margin-bottom: 18px;
}

.f-social { display: flex; gap: 10px; }

.f-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(240,192,64,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; text-decoration: none;
  transition: border-color .3s, background .3s;
}

.f-social a:hover { border-color: var(--gold); background: var(--gold-dim); }

.footer-col h4 {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 11px; font-size: .83rem;
  color: var(--text-dim); line-height: 1.5;
}

.footer-col ul li a { color: var(--text-dim); text-decoration: none; transition: color .3s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(240,192,64,.06);
  padding-top: 22px; text-align: center;
  font-size: .76rem; color: var(--text-dim);
}

.footer-bottom a { color: var(--gold); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* ======================================
   TOAST
   ====================================== */
.toast {
  position: fixed; bottom: 28px; right: 28px;
  background: var(--gold); color: var(--bg);
  padding: 15px 22px; border-radius: var(--r-md);
  font-weight: 800; font-size: .88rem;
  z-index: 9999; max-width: 300px;
  transform: translateY(80px); opacity: 0;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 12px 40px var(--gold-glow);
}

.toast.show { transform: translateY(0); opacity: 1; }

/* ======================================
   RESPONSIVE
   ====================================== */
@media (max-width: 1100px) {
  .prod-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid rgba(240,192,64,.07); }
}

@media (max-width: 900px) {
  nav { padding: 20px 30px; }
  nav.scrolled { padding: 14px 30px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .container { padding: 0 30px; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; text-align: center; padding: 0 30px; }
  .hero-visual { height: 300px; margin-bottom: 40px; }
  .hero-eyebrow, .hero-stats { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .fc1 { left: 0; } .fc2 { left: 0; }
  .scroll-ind { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .process-sec .container { padding: 0 30px; }
  .proc-grid { grid-template-columns: 1fr; }
  .proc-arr { transform: rotate(90deg); text-align: center; }

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

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

  .section-pad { padding: 90px 0; }
  .section-dark { padding: 90px 0; }
  .cta-sec { padding: 90px 0; }
}

@media (max-width: 600px) {
  .prod-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(240,192,64,.07); }
  .footer-grid { grid-template-columns: 1fr; }
  .aig { grid-template-columns: 1fr 1fr; }
  .aig-big { grid-column: 1/-1; }
  .cta-alts { flex-direction: column; align-items: center; }
  .hero-title { font-size: clamp(3rem, 11vw, 4rem); }
  .egg-body { width: 140px; height: 170px; }
}
