/* ==========================================================
   TERRA IMPERIAL FOODS — design system
   Big bold type. Popping colour. Zero timidity.
   ========================================================== */

:root {
  --cream: #F7F2E7;
  --paper: #FFFDF6;
  --ink: #141810;
  --pine: #0C3524;
  --pine-deep: #082417;
  --lime: #D7F93B;
  --lime-dark: #BFE32A;
  --tang: #FF4D1C;
  --tang-dark: #D63A0F;
  --gold: #F2A93B;
  --muted: #5C6353;
  --line: rgba(20, 24, 16, 0.14);
  --radius: 22px;
  --shadow: 0 24px 60px -24px rgba(12, 53, 36, 0.35);
  --font-display: 'Anton', 'Arial Black', sans-serif;
  --font-body: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 130px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

.container { width: min(1200px, 92%); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }

/* ---------- type ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-weight: 800; font-size: 0.8rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--pine); margin-bottom: 1.25rem;
}
.eyebrow .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--tang); display: inline-block; }
.eyebrow-light { color: var(--lime); }
.section-title { font-size: clamp(2.6rem, 6vw, 4.8rem); margin-bottom: 1.5rem; }
.section-title.light { color: var(--paper); }
.tang { color: var(--tang); }
.lime-text { color: var(--lime); }
.pine-text { color: var(--pine); }
.section-lead { max-width: 34rem; color: var(--muted); font-size: 1.05rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 1rem; text-decoration: none;
  padding: 1rem 2rem; border-radius: 999px; border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { box-shadow: 0 14px 28px -12px rgba(20,24,16,.5); }
.btn-tang { background: var(--tang); color: #fff; }
.btn-tang:hover { background: var(--tang-dark); box-shadow: 0 14px 28px -12px rgba(255,77,28,.6); }
.btn-lime { background: var(--lime); color: var(--pine-deep); }
.btn-lime:hover { background: var(--lime-dark); box-shadow: 0 14px 28px -12px rgba(215,249,59,.7); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-sm { padding: 0.7rem 1.4rem; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* ---------- header ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; }
.announce { background: var(--lime); color: var(--pine-deep); overflow: hidden; white-space: nowrap; }
.marquee-track {
  display: inline-flex; align-items: center; gap: 1.6rem;
  padding: 0.55rem 0; padding-right: 1.6rem;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.92rem;
  animation: marquee 22s linear infinite;
}
.marquee-track i { font-style: normal; font-size: 0.8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-top: 0.9rem; padding-bottom: 0.9rem; padding-inline: clamp(1rem, 3vw, 2rem);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-radius 0.25s ease;
}
.site-header.scrolled .nav {
  background: rgba(247, 242, 231, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 0 0 20px 20px;
  box-shadow: 0 12px 32px -18px rgba(12, 53, 36, 0.35);
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand-mark { display: grid; place-items: center; }
.brand-mark img { width: 46px; height: 46px; display: block; border-radius: 50%; box-shadow: 0 4px 14px rgba(12, 53, 36, 0.25); }
.brand-text { line-height: 1; }
.brand-text strong { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.08em; }
.nav-links { display: flex; gap: 2rem; }
.nav-link {
  text-decoration: none; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.04em;
  padding: 0.4rem 0; position: relative;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0;
  background: var(--tang); border-radius: 3px; transition: width 0.22s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.menu-toggle {
  display: none; background: none; border: none; flex-direction: column; gap: 6px; padding: 0.5rem;
}
.menu-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: transform 0.25s ease, opacity 0.25s ease; }

/* ---------- hero ---------- */
.hero { padding: calc(150px + 2rem) 0 6rem; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto auto; width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(215,249,59,.35), transparent 65%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; align-items: center; position: relative; }
.hero-title { font-size: clamp(3.4rem, 8.5vw, 7.5rem); margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 32rem; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.75rem; }
.hero-stats { display: grid; grid-template-columns: repeat(3, auto); gap: 2rem; justify-content: start; }
.stat dt { font-family: var(--font-display); font-size: 2.4rem; color: var(--pine); line-height: 1; }
.stat dd { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-top: 0.35rem; }

.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: 200px 200px var(--radius) var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  border: 6px solid var(--lime);
  aspect-ratio: 4 / 4.6;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.chip {
  position: absolute; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em;
  font-size: 0.95rem; padding: 0.7rem 1.2rem; border-radius: 999px; box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}
.chip-1 { background: var(--tang); color: #fff; top: 12%; left: -4%; transform: rotate(-8deg); }
.chip-2 { background: var(--paper); color: var(--pine); bottom: 22%; left: -8%; transform: rotate(5deg); animation-delay: 1.2s; }
.chip-3 { background: var(--pine); color: var(--lime); bottom: 6%; right: -2%; transform: rotate(-4deg); animation-delay: 2.4s; }
@keyframes float { 0%,100% { margin-top: 0; } 50% { margin-top: -12px; } }

.scroll-hint {
  position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--ink);
  display: grid; place-items: center; text-decoration: none; font-size: 1.2rem;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- fruit marquee ---------- */
.fruit-marquee { overflow: hidden; }
.marquee-band {
  background: var(--pine); color: var(--lime);
  overflow: hidden; white-space: nowrap; padding: 0.4rem 0;
  transform: rotate(-1.2deg) scale(1.02);
}
.marquee-big { font-size: clamp(1.6rem, 3.4vw, 2.6rem); animation-duration: 30s; }
.marquee-big i { color: var(--tang); }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 4rem; align-items: center; }
.about-visual { position: relative; }
.about-img-frame {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  border: 6px solid var(--gold); aspect-ratio: 4 / 4.4;
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; top: -28px; right: -18px; width: 110px; height: 110px; border-radius: 50%;
  background: var(--tang); color: #fff; display: grid; place-items: center; text-align: center;
  font-family: var(--font-display); font-size: 1.15rem; line-height: 1.05; text-transform: uppercase;
  transform: rotate(10deg); box-shadow: var(--shadow);
}
.about-copy p { color: var(--muted); margin-bottom: 1.1rem; font-size: 1.05rem; }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin: 1.75rem 0 2.25rem; }
.checklist li {
  display: flex; align-items: center; gap: 0.7rem; font-weight: 700; font-size: 0.95rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 0.8rem 1rem;
}
.checklist li::before {
  content: "✓"; flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--lime); color: var(--pine-deep); display: grid; place-items: center; font-weight: 900;
}

/* ---------- products ---------- */
.products { background: var(--paper); border-block: 1px solid var(--line); }
.section-head { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; align-items: end; margin-bottom: 3rem; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.product-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img img { transform: scale(1.07); }
.product-num {
  position: absolute; top: 1rem; left: 1rem; width: 52px; height: 52px; border-radius: 50%;
  background: var(--lime); color: var(--pine-deep); display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.25rem; box-shadow: 0 8px 20px -8px rgba(0,0,0,.4);
}
.product-card:nth-child(3n+2) .product-num { background: var(--tang); color: #fff; }
.product-card:nth-child(3n) .product-num { background: var(--gold); color: var(--pine-deep); }
.product-body { padding: 1.6rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.product-body h3 { font-size: 1.7rem; }
.product-body p { color: var(--muted); font-size: 0.98rem; flex: 1; }
.tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tags span {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(12, 53, 36, 0.08); color: var(--pine); padding: 0.35rem 0.8rem; border-radius: 999px;
}
.enquire {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--tang); text-decoration: none; font-size: 1.05rem; align-self: flex-start;
  border-bottom: 3px solid transparent; transition: border-color 0.2s ease;
}
.enquire:hover { border-color: var(--tang); }

/* ---------- process ---------- */
.process { background: var(--pine); color: var(--paper); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.process-card {
  background: rgba(255, 253, 246, 0.05); border: 1px solid rgba(255, 253, 246, 0.14);
  border-radius: var(--radius); padding: 2rem 1.6rem; transition: background 0.25s ease, transform 0.25s ease;
}
.process-card:hover { background: rgba(255, 253, 246, 0.09); transform: translateY(-6px); }
.process-num {
  font-family: var(--font-display); font-size: 3.4rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 2px var(--lime); display: block; margin-bottom: 1.2rem;
}
.process-card h3 { font-size: 1.35rem; margin-bottom: 0.7rem; color: var(--lime); }
.process-card p { color: rgba(255, 253, 246, 0.75); font-size: 0.96rem; }

/* ---------- sustainability ---------- */
.sustainability { background: var(--tang); color: var(--pine-deep); }
.sustainability .eyebrow { color: var(--pine-deep); }
.sustainability .eyebrow .dot { background: var(--pine-deep); }
.sustain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.75rem; }
.sustain-card {
  background: var(--paper); border-radius: var(--radius); padding: 2rem 1.75rem;
  box-shadow: var(--shadow); transition: transform 0.25s ease;
}
.sustain-card:hover { transform: translateY(-6px) rotate(-0.6deg); }
.sustain-icon {
  font-size: 2rem; width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center;
  background: var(--lime); margin-bottom: 1.2rem;
}
.sustain-card h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.sustain-card p { color: var(--muted); font-size: 0.98rem; }

/* ---------- what we deliver ---------- */
.deliver { background: var(--paper); border-block: 1px solid var(--line); }
.deliver-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.75rem; }
.deliver-card {
  background: var(--cream); border-radius: var(--radius); padding: 2rem 1.75rem;
  box-shadow: var(--shadow); transition: transform 0.25s ease;
}
.deliver-card:hover { transform: translateY(-6px) rotate(0.6deg); }
.deliver-icon {
  font-size: 2rem; width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center;
  background: var(--tang); margin-bottom: 1.2rem;
}
.deliver-card h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.deliver-card p { color: var(--muted); font-size: 0.98rem; }

/* ---------- quote band ---------- */
.quote-band { background: var(--cream); text-align: center; padding: clamp(4rem, 8vw, 6rem) 0; }
.quote-band blockquote {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.6rem, 3.6vw, 2.8rem); line-height: 1.15; max-width: 56rem; margin: 0 auto 1.25rem;
  color: var(--pine);
}
.quote-band blockquote::before { content: "“"; color: var(--tang); }
.quote-band blockquote::after { content: "”"; color: var(--tang); }
.quote-band cite { font-style: normal; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.85rem; color: var(--muted); }

/* ---------- cta band ---------- */
.cta-band { position: relative; overflow: hidden; padding: clamp(5rem, 10vw, 8rem) 0; text-align: center; color: #fff; }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(8,36,23,.82), rgba(8,36,23,.68)); }
.cta-inner { position: relative; }
.cta-inner h2 { font-size: clamp(2.8rem, 7vw, 5.5rem); margin-bottom: 1rem; }
.cta-inner h2 .tang, .cta-inner .tang { color: var(--tang); }
.cta-inner p { max-width: 36rem; margin: 0 auto 2rem; font-size: 1.1rem; color: rgba(255,253,246,.85); }

/* ---------- contact ---------- */
.contact { background: var(--pine-deep); color: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; align-items: start; }
.contact-info > p { color: rgba(255,253,246,.75); margin-bottom: 1.75rem; font-size: 1.05rem; }
.contact-details { display: grid; gap: 1rem; margin-bottom: 1.75rem; }
.contact-details li { display: flex; align-items: center; gap: 0.9rem; font-weight: 600; }
.contact-details a { text-decoration: none; border-bottom: 2px solid transparent; transition: border-color 0.2s; }
.contact-details a:hover { border-color: var(--lime); }
.cd-icon {
  flex: none; width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center;
  background: var(--lime); font-size: 1.2rem;
}
.contact-note { font-size: 0.9rem; color: rgba(255,253,246,.55); }

.contact-form-wrap {
  background: var(--paper); color: var(--ink); border-radius: 26px; padding: clamp(1.75rem, 3.5vw, 2.75rem);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.5); border-top: 8px solid var(--lime);
}
.contact-form h3 { font-size: 2rem; margin-bottom: 1.5rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 0.45rem; }
.field label { font-weight: 800; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pine); }
.field input, .field select, .field textarea {
  font: inherit; padding: 0.9rem 1.1rem; border-radius: 14px;
  border: 2px solid var(--line); background: var(--cream); color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--tang); box-shadow: 0 0 0 4px rgba(255,77,28,.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-error { color: var(--tang-dark); font-weight: 700; font-size: 0.92rem; margin-bottom: 1rem; }
.form-success { color: var(--pine); font-weight: 700; font-size: 0.95rem; margin-top: 1rem; background: rgba(215,249,59,.35); border-radius: 12px; padding: 0.9rem 1.1rem; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: var(--paper); padding: 4rem 0 2rem; overflow: hidden; }
.footer-word {
  font-family: var(--font-display); text-transform: uppercase; text-align: center; line-height: 0.9;
  font-size: clamp(3rem, 11vw, 9rem); margin-bottom: 3rem; user-select: none;
  color: transparent; -webkit-text-stroke: 2px rgba(255,253,246,.35);
}
.footer-word span { display: block; color: var(--lime); -webkit-text-stroke: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-brand p:first-child { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.04em; margin-bottom: 0.5rem; }
.footer-brand p:last-child { color: rgba(255,253,246,.6); font-size: 0.95rem; }
.footer-h { font-weight: 800; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lime); margin-bottom: 1rem; }
.footer-grid ul { display: grid; gap: 0.6rem; }
.footer-grid a { color: rgba(255,253,246,.75); text-decoration: none; font-size: 0.95rem; transition: color 0.2s; }
.footer-grid a:hover { color: var(--lime); }
.footer-bottom {
  border-top: 1px solid rgba(255,253,246,.15); padding-top: 1.5rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.85rem; color: rgba(255,253,246,.5);
}

/* ---------- back to top ---------- */
.to-top {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%; border: none;
  background: var(--tang); color: #fff; font-size: 1.4rem; font-weight: 900;
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 14px 30px -12px rgba(255,77,28,.6);
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--tang-dark); }

/* ---------- reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 560px; }
  .hero-stats { grid-template-columns: repeat(3, auto); gap: 1.5rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .deliver-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100dvh; width: min(320px, 80vw);
    background: var(--pine); flex-direction: column; padding: 6rem 2.5rem 2rem; gap: 1.5rem;
    transform: translateX(105%); visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease; z-index: 200;
  }
  .nav-links.open { transform: none; visibility: visible; }
  .nav-link { color: var(--paper); font-size: 1.3rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
  .menu-toggle.open span { background: var(--paper); }
  .menu-toggle.open { position: fixed; top: 4.2rem; right: 4%; z-index: 300; }
}

@media (max-width: 640px) {
  .product-grid, .process-grid, .sustain-grid, .deliver-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .checklist { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1; }
  .chip-2 { left: -2%; }
  .footer-grid { grid-template-columns: 1fr; }
  .scroll-hint { display: none; }
  .nav .btn-sm { display: none; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track, .chip, .scroll-hint { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
