/* ============== FONTS ============== */
@font-face {
  font-family: 'Bw Modelica';
  src: url('assets/fonts/BwModelica-Light.otf') format('opentype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Bw Modelica';
  src: url('assets/fonts/BwModelica-Regular.otf') format('opentype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ============== TOKENS ============== */
:root {
  --green-900: #15351d;
  --green-800: #1d4a28;
  --green-700: #2a6b34;
  --green-600: #368a3e;
  --green-500: #4ea838;
  --lime-400:  #8cc63f;
  --lime-300:  #b6dc6e;
  --ink:       #16241a;
  --ink-soft:  #3c4a40;
  --cream:     #f5f7f0;
  --cream-2:   #eef2e6;
  --paper:     #ffffff;
  --line:      #e2e7d8;

  --maxw: 1240px;
  --display: 'Bw Modelica', 'Poppins', system-ui, sans-serif;
  --body: 'Poppins', system-ui, sans-serif;

  --shadow-sm: 0 2px 8px rgba(21,53,29,.06);
  --shadow-md: 0 18px 50px -22px rgba(21,53,29,.35);
  --shadow-lg: 0 40px 90px -40px rgba(21,53,29,.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: var(--body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12.5px;
}
h1, h2, h3 { font-family: var(--display); font-weight: 500; line-height: 1.05; letter-spacing: -.01em; }

/* ============== HEADER ============== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 32px;
  transition: padding .35s ease, background .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  padding: 12px 32px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(21,53,29,.07);
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo .leaf { width: 30px; height: 30px; flex: none; transition: transform .4s ease; }
.logo:hover .leaf { transform: rotate(-12deg); }
.logo .word {
  font-family: var(--display); font-weight: 500; font-size: 26px;
  letter-spacing: -.02em; color: var(--paper); line-height: 1;
}
.logo .word b { color: var(--lime-300); font-weight: 500; }
.scrolled .logo .word { color: var(--green-700); }
.scrolled .logo .word b { color: var(--green-500); }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 14.5px; font-weight: 400; color: rgba(255,255,255,.86);
  position: relative; transition: color .25s;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--lime-400); transition: width .3s ease;
}
.nav a:hover::after { width: 100%; }
.scrolled .nav a { color: var(--ink-soft); }
.nav a:hover { color: var(--lime-300); }
.scrolled .nav a:hover { color: var(--green-600); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 700; font-size: 14.5px;
  padding: 13px 24px; border-radius: 100px;
  background: var(--lime-400); color: var(--green-900);
  transition: transform .2s ease, box-shadow .25s ease, background .25s;
  box-shadow: 0 10px 24px -10px rgba(140,198,63,.8);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); background: #9bd24f; box-shadow: 0 16px 30px -10px rgba(140,198,63,.9); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }
.btn.ghost {
  background: transparent; color: var(--paper);
  border: 1.5px solid rgba(255,255,255,.4); box-shadow: none;
}
.btn.ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }
.btn.lg { padding: 17px 34px; font-size: 16px; }
.btn.dark { background: var(--green-600); color: #fff; box-shadow: 0 12px 30px -12px rgba(54,138,62,.9); }
.btn.dark:hover { background: var(--green-700); }

.nav-toggle { display: none; }

/* ============== HERO ============== */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  background:
    radial-gradient(120% 90% at 88% 18%, rgba(140,198,63,.30), transparent 55%),
    linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 60%, #0f2716 100%);
  overflow: hidden; color: #fff;
  padding: 130px 0 70px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .6; pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap;
  color: var(--lime-300); margin-bottom: 28px;
}
.hero-eyebrow .pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(140,198,63,.14); border: 1px solid rgba(140,198,63,.3);
  padding: 7px 14px; border-radius: 100px; color: #eaf6d6;
  font-size: 12.5px; letter-spacing: .06em; font-weight: 400; text-transform: none;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime-400); box-shadow: 0 0 0 4px rgba(140,198,63,.25); }
.hero h1 {
  font-size: clamp(40px, 5.4vw, 70px); color: #fff; max-width: 14ch;
}
.hero h1 .accent { color: var(--lime-300); }
.hero p.lede {
  font-size: clamp(16px, 1.35vw, 19px); color: rgba(255,255,255,.82);
  max-width: 46ch; margin-top: 26px; font-weight: 300;
}
.hero-cta { display: flex; align-items: center; gap: 18px; margin-top: 38px; flex-wrap: wrap; }
.hero-note {
  margin-top: 22px; font-size: 12.5px; color: rgba(255,255,255,.6);
  max-width: 42ch; line-height: 1.5; font-weight: 300;
}
.hero-note strong { color: var(--lime-300); font-weight: 700; }

.hero-visual { position: relative; }
.hero-card {
  position: relative; border-radius: 26px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.12);
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
}
.hero-card img { width: 100%; height: 520px; object-fit: cover; }
.hero-badge {
  position: absolute; z-index: 3; left: -22px; bottom: 34px;
  background: #fff; color: var(--green-800); border-radius: 18px;
  padding: 18px 22px; box-shadow: var(--shadow-md); text-align: left;
  display: flex; align-items: center; gap: 14px;
}
.hero-badge .num { font-family: var(--display); font-weight: 500; font-size: 40px; color: var(--green-600); line-height: 1; }
.hero-badge .lab { font-size: 12.5px; line-height: 1.3; color: var(--ink-soft); max-width: 12ch; }

/* marquee */
.marquee {
  position: relative; z-index: 2; margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12);
  overflow: hidden; padding: 16px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; gap: 56px; width: max-content; animation: marquee 26s linear infinite; }
.marquee-track span {
  font-family: var(--display); font-size: 18px; color: rgba(255,255,255,.55);
  display: inline-flex; align-items: center; gap: 56px; white-space: nowrap;
}
.marquee-track span::after { content: '✦'; color: var(--lime-400); font-size: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============== SECTION SHELL ============== */
section { position: relative; }
.section-pad { padding: 110px 0; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head .eyebrow { color: var(--green-600); display: inline-block; margin-bottom: 18px; }
.section-head h2 { font-size: clamp(30px, 4vw, 50px); color: var(--ink); }
.section-head p { font-size: 17px; color: var(--ink-soft); margin-top: 18px; max-width: 60ch; font-weight: 300; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.center .eyebrow, .center p { margin-left: auto; margin-right: auto; }

/* ============== EVENT ============== */
.event { background: var(--cream); }
.event-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.event-media { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-md); }
.event-media img { width: 100%; height: 440px; object-fit: cover; }
.event-media .tag {
  position: absolute; left: 18px; top: 18px; background: rgba(21,53,29,.78);
  backdrop-filter: blur(6px); color: #fff; padding: 8px 16px; border-radius: 100px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em; display: flex; align-items: center; gap: 8px;
}
.event-media .tag::before { content:''; width:7px; height:7px; border-radius:50%; background: var(--lime-400); }
.event-info .eyebrow { color: var(--green-600); display: inline-block; margin-bottom: 16px; }
.event-info h2 { font-size: clamp(28px, 3.4vw, 42px); }
.event-info p { color: var(--ink-soft); margin-top: 20px; font-weight: 300; font-size: 16.5px; }
.event-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.event-meta .chip {
  display: inline-flex; align-items: center; gap: 9px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; padding: 12px 16px;
  font-size: 14px; font-weight: 400; color: var(--ink); box-shadow: var(--shadow-sm);
}
.event-meta .chip svg { width: 18px; height: 18px; color: var(--green-500); }

/* stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 64px; }
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 34px 30px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.stat::after {
  content: ''; position: absolute; right: -30px; top: -30px; width: 110px; height: 110px;
  border-radius: 50%; background: radial-gradient(circle, rgba(140,198,63,.18), transparent 70%);
}
.stat .num { font-family: var(--display); font-weight: 500; font-size: clamp(42px, 5vw, 60px); color: var(--green-600); line-height: 1; }
.stat .num small { font-size: .5em; color: var(--lime-400); }
.stat .lab { margin-top: 12px; font-size: 15px; color: var(--ink-soft); font-weight: 300; max-width: 22ch; }

/* ============== WHY ============== */
.why { background: var(--paper); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: 22px;
  padding: 40px 34px 38px; transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
  position: relative; overflow: hidden;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--lime-300); }
.why-card .ic {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green-500), var(--green-700)); color: #fff;
  margin-bottom: 26px; box-shadow: 0 12px 24px -12px rgba(54,138,62,.9);
}
.why-card .ic svg { width: 28px; height: 28px; }
.why-card h3 { font-size: 23px; color: var(--ink); line-height: 1.12; }
.why-card p { margin-top: 14px; color: var(--ink-soft); font-size: 15px; font-weight: 300; }
.why-card .idx {
  position: absolute; right: 24px; top: 22px; font-family: var(--display);
  font-size: 60px; color: rgba(54,138,62,.07); font-weight: 500; line-height: 1;
}

.modes { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 46px; justify-content: center; }
.mode-pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 22px; border-radius: 100px;
  background: var(--green-800); color: #eaf6d6; font-weight: 400; font-size: 15px;
}
.mode-pill b { color: var(--lime-300); font-weight: 700; }

/* ============== BOOTH ============== */
.booth { background: var(--green-900); color: #fff; overflow: hidden; }
.booth-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items: center; }
.booth-info .eyebrow { color: var(--lime-300); display: inline-block; margin-bottom: 16px; }
.booth-info h2 { font-size: clamp(30px, 3.8vw, 46px); color: #fff; }
.booth-info p { color: rgba(255,255,255,.8); margin-top: 20px; font-weight: 300; font-size: 16.5px; }
.booth-list { list-style: none; margin-top: 30px; display: grid; gap: 14px; }
.booth-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15.5px; color: rgba(255,255,255,.86); font-weight: 300; }
.booth-list li svg { width: 22px; height: 22px; color: var(--lime-400); flex: none; margin-top: 1px; }
.booth-media { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.1); }
.booth-media img { width: 100%; height: 460px; object-fit: cover; }
.booth-media .stand-tag {
  position: absolute; right: 18px; bottom: 18px; background: rgba(255,255,255,.95); color: var(--green-800);
  padding: 12px 18px; border-radius: 14px; font-weight: 700; font-size: 14px; box-shadow: var(--shadow-md);
}
.booth-media .stand-tag small { display: block; font-weight: 400; font-size: 11.5px; color: var(--ink-soft); letter-spacing: .04em; }

/* ============== PRODUCTS STRIP ============== */
.products { background: var(--cream); }
.prod-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.prod-card { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-md); min-height: 320px; }
.prod-card img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; transition: transform .7s ease; }
.prod-card:hover img { transform: scale(1.05); }
.prod-card .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 28px 26px;
  background: linear-gradient(to top, rgba(15,39,22,.88), rgba(15,39,22,0));
  color: #fff;
}
.prod-card .cap h3 { font-size: 24px; color: #fff; }
.prod-card .cap p { font-size: 14px; color: rgba(255,255,255,.82); margin-top: 6px; font-weight: 300; }

/* ============== COUNTDOWN / CTA ============== */
.cta-band {
  background:
    radial-gradient(120% 120% at 15% 0%, rgba(140,198,63,.28), transparent 50%),
    linear-gradient(135deg, var(--green-700), var(--green-900));
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content:''; position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px; opacity:.5;
}
.cta-inner { position: relative; z-index: 2; max-width: 740px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(32px, 4.4vw, 56px); color: #fff; }
.cta-band p { color: rgba(255,255,255,.82); margin-top: 18px; font-size: 18px; font-weight: 300; }
.countdown { display: flex; justify-content: center; gap: 16px; margin: 40px 0 8px; }
.cd-box {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 16px;
  padding: 18px 10px; min-width: 92px; backdrop-filter: blur(6px);
}
.cd-box .v { font-family: var(--display); font-weight: 500; font-size: 44px; color: #fff; line-height: 1; font-variant-numeric: tabular-nums; }
.cd-box .l { font-size: 11.5px; text-transform: uppercase; letter-spacing: .14em; color: var(--lime-300); margin-top: 8px; }
.cta-band .btn { margin-top: 30px; }
.cta-note { margin-top: 22px; font-size: 12.5px; color: rgba(255,255,255,.58); font-weight: 300; }

/* ============== FOOTER ============== */
.site-footer { background: #0d2113; color: rgba(255,255,255,.7); padding: 64px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
.foot-brand .word { font-family: var(--display); font-weight: 500; font-size: 30px; color: #fff; letter-spacing: -.02em; }
.foot-brand .word b { color: var(--lime-300); font-weight: 500; }
.foot-brand p { margin-top: 16px; font-size: 14px; font-weight: 300; max-width: 36ch; color: rgba(255,255,255,.6); }
.foot-col h4 { font-family: var(--body); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: #fff; margin-bottom: 18px; }
.foot-col a { display: block; font-size: 14.5px; margin-bottom: 12px; font-weight: 300; transition: color .2s; }
.foot-col a:hover { color: var(--lime-300); }
.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); transition: all .25s;
}
.socials a:hover { background: var(--lime-400); color: var(--green-900); transform: translateY(-3px); }
.socials a svg { width: 20px; height: 20px; }
.foot-bottom {
  margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(255,255,255,.45); font-weight: 300;
}
.foot-bottom b { color: rgba(255,255,255,.7); font-weight: 700; }

/* ============== MODAL / FORM ============== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(13,33,19,.62); backdrop-filter: blur(8px);
  opacity: 0; transition: opacity .3s ease;
}
.modal-overlay.open { display: flex; }
.modal-overlay.show { opacity: 1; }
.modal {
  background: #fff; border-radius: 24px; width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto;
  box-shadow: var(--shadow-lg); transform: translateY(20px) scale(.98); transition: transform .35s cubic-bezier(.2,.9,.3,1);
  position: relative;
}
.modal-overlay.show .modal { transform: translateY(0) scale(1); }
.modal-top {
  background: linear-gradient(135deg, var(--green-700), var(--green-900)); color: #fff;
  padding: 30px 34px; border-radius: 24px 24px 0 0; position: relative; overflow: hidden;
}
.modal-top::after {
  content:''; position:absolute; right:-40px; bottom:-50px; width:160px; height:160px; border-radius:50%;
  background: radial-gradient(circle, rgba(140,198,63,.4), transparent 70%);
}
.modal-top .eyebrow { color: var(--lime-300); position: relative; }
.modal-top h3 { font-size: 26px; color: #fff; margin-top: 8px; position: relative; }
.modal-top p { font-size: 13.5px; color: rgba(255,255,255,.75); margin-top: 8px; font-weight: 300; position: relative; max-width: 40ch; }
.modal-close {
  position: absolute; right: 16px; top: 16px; z-index: 4; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.14); color: #fff; display: grid; place-items: center; transition: background .2s;
}
.modal-close:hover { background: rgba(255,255,255,.28); }
.modal-body { padding: 28px 34px 34px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.field input, .field select {
  width: 100%; font-family: var(--body); font-size: 15px; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--cream);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--green-500); background: #fff;
  box-shadow: 0 0 0 4px rgba(78,168,56,.14);
}
.field input.err, .field select.err { border-color: #d6453c; box-shadow: 0 0 0 4px rgba(214,69,60,.12); }
.field .msg { font-size: 12px; color: #d6453c; margin-top: 6px; display: none; }
.field.invalid .msg { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.seg { display: flex; gap: 8px; flex-wrap: wrap; }
.seg-opt {
  flex: 1; min-width: 120px; text-align: center; padding: 12px 8px; border-radius: 12px;
  border: 1.5px solid var(--line); background: var(--cream); font-size: 13.5px; font-weight: 400; color: var(--ink-soft);
  transition: all .2s;
}
.seg-opt:hover { border-color: var(--lime-300); }
.seg-opt.active { background: var(--green-600); color: #fff; border-color: var(--green-600); font-weight: 700; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-foot { text-align: center; font-size: 11.5px; color: var(--ink-soft); margin-top: 16px; font-weight: 300; }

/* success */
.form-success { display: none; text-align: center; padding: 14px 4px 4px; }
.form-success.show { display: block; animation: pop .5s ease; }
@keyframes pop { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: scale(1); } }
.success-ic {
  width: 76px; height: 76px; border-radius: 50%; margin: 6px auto 18px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green-500), var(--green-700)); color: #fff;
  box-shadow: 0 16px 34px -14px rgba(54,138,62,.9);
}
.success-ic svg { width: 38px; height: 38px; }
.form-success h3 { font-size: 24px; color: var(--ink); }
.form-success p { font-size: 14.5px; color: var(--ink-soft); margin-top: 10px; font-weight: 300; }

/* ============== REVEAL ==============
   Transform-only: opacity stays 1 so content is NEVER blank even if the
   transition is throttled/paused (e.g. inactive preview iframes). */
.reveal { transform: translateY(22px); transition: transform .7s cubic-bezier(.2,.8,.3,1); will-change: transform; }
.reveal.in { transform: none; }
.reveal.d1 { transition-delay: .07s; }
.reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .21s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transform: none !important; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============== RESPONSIVE ============== */
@media (max-width: 980px) {
  .hero-grid, .event-grid, .booth-grid, .foot-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats, .why-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .booth-media { order: -1; }
  .foot-grid { gap: 32px; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .section-pad { padding: 76px 0; }
  .nav { display: none; }
  .nav-toggle {
    display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
    background: rgba(255,255,255,.12); color: #fff;
  }
  .scrolled .nav-toggle { background: var(--cream-2); color: var(--green-700); }
  .header-cta { display: none; }
  .site-header, .site-header.scrolled { padding-left: 20px; padding-right: 20px; }
  .countdown { gap: 10px; }
  .cd-box { min-width: 70px; padding: 14px 6px; }
  .cd-box .v { font-size: 34px; }
  .field-row { grid-template-columns: 1fr; }
  .hero { padding-top: 110px; }
  .foot-bottom { flex-direction: column; }
}
