/* ==========================================================================
   SUNNY BHUJA HOUSE — style.css
   Brand: deep warm maroon + golden accent on cream. Mobile-first.
   Change the variables below to re-skin the whole website.
   ========================================================================== */

:root {
  --primary: #8c1d18;        /* deep warm red / maroon */
  --primary-dark: #6e120e;
  --primary-deep: #3f0f0b;   /* dark bands (packaging, footer) */
  --secondary: #e9a31c;      /* golden accent */
  --secondary-soft: #f7e3b0;
  --background: #faf4e8;     /* cream */
  --surface: #ffffff;        /* cards */
  --text: #2a1a12;           /* dark brown */
  --muted: #7c6a5a;
  --border: #ebdecb;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Figtree", "Segoe UI", Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 20px;
  --shadow-sm: 0 2px 10px rgba(63, 15, 11, 0.06);
  --shadow-md: 0 14px 34px rgba(63, 15, 11, 0.12);
  --header-h: 76px;
}

/* ---------- Reset & base ---------- */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--background);
  overflow-x: clip;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--secondary); color: var(--text); }

:focus-visible { outline: 3px solid var(--secondary); outline-offset: 3px; border-radius: 6px; }

section[id], [id="main"] { scroll-margin-top: calc(var(--header-h) + 12px); }

/* ---------- Utilities ---------- */

.container { width: min(1180px, 100% - 40px); margin-inline: auto; }

.section { padding: 4.5rem 0; }

.section-head { max-width: 640px; margin-bottom: 2.4rem; }

.section-sub { color: var(--muted); margin-top: 0.6rem; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }

h2 { font-size: clamp(1.75rem, 4.6vw, 2.6rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--primary);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--secondary); border-radius: 2px; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 100;
  background: var(--primary); color: #fff; padding: 0.6rem 1rem; border-radius: 8px;
}
.skip-link:focus { left: 8px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.55rem; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; line-height: 1;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold { background: var(--secondary); color: #3a120c; box-shadow: 0 8px 20px rgba(233, 163, 28, 0.32); }
.btn-gold:hover { background: #f2b038; }

.btn-maroon { background: var(--primary); color: #fff; }
.btn-maroon:hover { background: var(--primary-dark); }

.btn-outline { border: 2px solid var(--primary); color: var(--primary); padding: calc(0.95rem - 2px) calc(1.55rem - 2px); }
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-sm { padding: 0.7rem 1.25rem; }

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 244, 232, 0.6);
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.is-scrolled { background: rgba(250, 244, 232, 0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--border), var(--shadow-sm); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--header-h); }

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--primary); }
.brand-sub { font-size: 0.63rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

.site-nav {
  position: absolute; top: var(--header-h); left: 0; right: 0;
  display: flex; flex-direction: column; align-items: stretch; gap: 0.25rem;
  padding: 1rem 20px 1.4rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(-10px); pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.site-header.nav-open .site-nav { opacity: 1; transform: none; pointer-events: auto; }

.site-nav > a { padding: 0.75rem 0.5rem; font-weight: 600; font-size: 1.02rem; border-bottom: 1px solid var(--border); }
.site-nav > a:last-child { border-bottom: 0; margin-top: 0.4rem; text-align: center; }
.site-nav > a[aria-current="page"] { color: var(--primary); }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 12px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--surface);
}
.nav-toggle span { display: block; height: 2px; border-radius: 2px; background: var(--text); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero { position: relative; padding: 2.8rem 0 3.4rem; overflow: clip; }

.hero-inner { display: grid; gap: 2.8rem; align-items: center; }

.hero-title { font-size: clamp(2.5rem, 9.5vw, 4.7rem); margin: 1rem 0 1.1rem; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line-inner { display: block; }
.hero-title .gold { color: var(--primary); font-style: italic; }

.hero-sub { font-size: clamp(1.02rem, 2.6vw, 1.22rem); color: var(--muted); max-width: 46ch; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1.6rem 0 1.3rem; }

.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 0.7rem; font-size: 0.86rem; font-weight: 600; letter-spacing: 0.04em; color: var(--primary); }
.hero-trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--secondary); }

.hero-media { position: relative; }
.hero-media img#hero-img {
  width: 100%; border-radius: 28px; box-shadow: var(--shadow-md);
  animation: heroImage 1.1s var(--ease) 0.35s both;
  will-change: transform;
}
@keyframes heroImage { from { opacity: 0; clip-path: inset(0 0 100% 0 round 28px); } to { opacity: 1; clip-path: inset(0 0 0 0 round 28px); } }

.hero-sun { position: absolute; top: -52px; right: -34px; width: 150px; height: 150px; opacity: 0.9; animation: sunSpin 60s linear infinite; z-index: -1; }
@keyframes sunSpin { to { transform: rotate(360deg); } }

.hero-badge {
  position: absolute; left: 14px; bottom: 14px;
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(255, 255, 255, 0.88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: 14px;
  padding: 0.55rem 0.9rem; box-shadow: var(--shadow-sm);
}
.hero-badge img { width: 32px; height: 32px; }
.hero-badge span { display: flex; flex-direction: column; line-height: 1.25; }
.hero-badge strong { font-family: var(--font-display); font-size: 0.9rem; color: var(--primary); }
.hero-badge em { font-style: normal; font-size: 0.72rem; color: var(--muted); }

/* on-load staggered entrance (CSS only) */
.hero-anim { animation: fadeUp 0.9s var(--ease) both; animation-delay: var(--d, 0s); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero-title .line-inner { animation: lineUp 0.95s var(--ease) both; }
.hero-title .line:nth-child(1) .line-inner { animation-delay: 0.12s; }
.hero-title .line:nth-child(2) .line-inner { animation-delay: 0.26s; }
@keyframes lineUp { from { transform: translateY(112%); } to { transform: none; } }

/* ---------- Marquee ---------- */

.marquee { background: var(--primary); color: var(--secondary-soft); padding: 0.95rem 0; overflow: clip; }
.marquee-track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; gap: 2.4rem; padding-right: 2.4rem; }
.marquee-group span { font-family: var(--font-display); font-style: italic; font-size: 1.02rem; white-space: nowrap; }
.marquee-group i { width: 8px; height: 8px; background: var(--secondary); transform: rotate(45deg); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Filters + product grid ---------- */

.filters { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 2rem; }

.filter-btn {
  padding: 0.55rem 1.15rem; border-radius: 999px;
  border: 1.5px solid var(--border); background: var(--surface);
  font-weight: 600; font-size: 0.88rem; color: var(--muted);
  transition: all 0.25s var(--ease);
}
.filter-btn:hover { border-color: var(--secondary); color: var(--text); }
.filter-btn.is-active { background: var(--primary); border-color: var(--primary); color: #fff; }

.product-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }

.product-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card.is-hidden { display: none; }

.product-media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--background); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.05); }

.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.32rem 0.7rem; border-radius: 999px;
}

.product-body { display: flex; flex-direction: column; gap: 0.55rem; padding: 1.1rem 1.15rem 1.25rem; flex: 1; }

.product-cat {
  align-self: flex-start; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary); background: rgba(233, 163, 28, 0.16);
  padding: 0.22rem 0.65rem; border-radius: 999px;
}
.product-name { font-size: 1.3rem; }
.product-desc { color: var(--muted); font-size: 0.92rem; flex: 1; }

.field-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; }

.size-row { display: flex; flex-wrap: wrap; gap: 0.45rem; }

.size-chip {
  padding: 0.42rem 0.85rem; border-radius: 999px;
  border: 1.5px solid var(--border); background: var(--background);
  font-size: 0.84rem; font-weight: 600;
  transition: all 0.2s var(--ease);
}
.size-chip:hover { border-color: var(--secondary); }
.size-chip.is-selected { background: var(--primary); border-color: var(--primary); color: #fff; }

.order-row { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; margin-top: 0.4rem; }

.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--border); border-radius: 999px; overflow: hidden; background: var(--surface); }
.qty-btn { width: 38px; height: 38px; display: grid; place-items: center; font-size: 1.1rem; font-weight: 700; color: var(--primary); transition: background-color 0.2s var(--ease); }
.qty-btn:hover { background: var(--background); }
.qty-value { min-width: 34px; text-align: center; font-weight: 700; }

.product-price { font-size: 0.9rem; color: var(--muted); }
.product-price span { font-weight: 600; color: var(--text); }

.btn-order { width: 100%; margin-top: 0.5rem; }
.btn-order:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.products-note { margin-top: 1.8rem; color: var(--muted); font-size: 0.9rem; }

/* ---------- Why section ---------- */

.section-why { background: var(--surface); border-block: 1px solid var(--border); }

.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }

.why-card {
  background: var(--background); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--secondary); }
.why-icon {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px;
  background: rgba(233, 163, 28, 0.18); color: var(--primary); margin-bottom: 0.9rem;
}
.why-card h3 { font-size: 1.14rem; margin-bottom: 0.3rem; }
.why-card p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Story ---------- */

.story-inner { display: grid; gap: 2.2rem; align-items: center; }

.story-media { position: relative; }
.story-media img { border-radius: 200px 200px 24px 24px; box-shadow: var(--shadow-md); width: 100%; }
.story-media::after {
  content: ""; position: absolute; inset: auto 1.2rem -12px 1.2rem; height: 5px;
  background: var(--secondary); border-radius: 999px;
}
.story-copy p { color: var(--muted); margin-top: 0.9rem; max-width: 52ch; }
.story-copy p strong { color: var(--text); }
.story-copy .btn { margin-top: 1.4rem; }

/* ---------- Packaging showcase ---------- */

.packaging { background: var(--primary-deep); color: #f8efd9; }
.packaging .eyebrow { color: var(--secondary); }
.packaging .section-sub { color: rgba(248, 239, 217, 0.72); }

.pouch-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-end; gap: 2.4rem; padding: 1.6rem 0 0; }

.pouch {
  position: relative; width: 212px; aspect-ratio: 5 / 7;
  border-radius: 14px 14px 18px 18px;
  box-shadow: 0 26px 44px rgba(0, 0, 0, 0.38);
  text-align: center;
  transition: transform 0.4s var(--ease);
}
.pouch:hover { transform: translateY(-8px); }
.pouch::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 15px; border-radius: 14px 14px 0 0; background: rgba(255, 255, 255, 0.14); border-bottom: 2px dashed rgba(0, 0, 0, 0.2); }

.pouch--maroon { background: #7c1a15; color: #f8efd9; }
.pouch--gold { background: var(--secondary); color: #3a120c; }
.pouch--cream { background: #f8efd9; color: #3a120c; }

.pouch-brand { margin-top: 2rem; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.85; }

.pouch-window {
  display: block; width: 118px; aspect-ratio: 1; margin: 0.7rem auto 0;
  border-radius: 50%; overflow: hidden; background: #fff;
  border: 3px solid rgba(255, 255, 255, 0.85);
}
.pouch--gold .pouch-window, .pouch--cream .pouch-window { border-color: rgba(140, 29, 24, 0.5); }
.pouch-window img { width: 100%; height: 100%; object-fit: cover; }

.pouch-name { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; margin-top: 0.65rem; }

.pouch-meta {
  position: absolute; left: 14px; right: 14px; bottom: 12px;
  display: grid; gap: 2px; font-size: 0.56rem; letter-spacing: 0.05em; text-transform: uppercase; opacity: 0.82;
}

.pouch-row::after { content: ""; width: 100%; height: 4px; background: var(--secondary); border-radius: 999px; }
.pouch-note { margin-top: 1.4rem; font-size: 0.8rem; font-style: italic; color: rgba(248, 239, 217, 0.6); text-align: center; }

/* ---------- Delivery ---------- */

.delivery-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 28px;
  box-shadow: var(--shadow-sm);
  padding: 2.2rem 1.6rem;
  display: grid; gap: 1.8rem; align-items: center;
}
.delivery-copy p { color: var(--muted); margin-top: 0.7rem; max-width: 54ch; }
.delivery-line strong { color: var(--text); }
.delivery-copy .btn { margin-top: 1.3rem; }

.delivery-badge {
  justify-self: center; display: grid; place-items: center; align-content: center; gap: 0.2rem;
  width: 190px; height: 190px; border-radius: 50%;
  background: var(--background); border: 2px dashed var(--secondary);
  text-align: center;
}
.delivery-radius { font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; color: var(--primary); }
.delivery-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ---------- Contact / business info ---------- */

.section-contact { background: var(--surface); border-top: 1px solid var(--border); }

.info-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }

.info-card { background: var(--background); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem 1.25rem; }
.info-card h3 { font-size: 1.05rem; margin-bottom: 0.45rem; color: var(--primary); }
.info-card p { color: var(--muted); font-size: 0.94rem; }
.info-card a { color: var(--primary); font-weight: 600; }
.info-card a:hover { text-decoration: underline; }

.social-row { display: flex; gap: 0.6rem; flex-wrap: wrap; }

.social-btn {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: var(--surface); border: 1.5px solid var(--border); color: var(--primary);
  transition: all 0.25s var(--ease);
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); }

.map-embed {
  margin-top: 1.4rem; min-height: 300px;
  border: 2px dashed var(--secondary); border-radius: var(--radius);
  background: var(--background);
  display: grid; place-items: center; align-content: center; gap: 0.7rem;
  text-align: center; color: var(--primary); padding: 2rem 1.2rem;
}
.map-embed p { display: grid; gap: 0.25rem; }
.map-embed strong { font-family: var(--font-display); font-size: 1.1rem; }
.map-embed span { color: var(--muted); font-size: 0.9rem; }
.map-embed--live { padding: 0; border: none; overflow: hidden; }
.map-embed--live iframe { width: 100%; min-height: 340px; border: 0; border-radius: var(--radius); }

/* ---------- Page hero (inner pages) ---------- */

.page-hero { padding: 3.2rem 0 2.6rem; background: linear-gradient(0deg, var(--background), var(--background)); }
.page-hero .section-head { margin-bottom: 0; max-width: 680px; }
.page-hero p.section-sub { font-size: 1.05rem; }

/* ---------- About page ---------- */

.prose { max-width: 720px; }
.prose p { color: var(--muted); margin-bottom: 1.1rem; }
.prose p strong { color: var(--text); }

.value-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; margin-top: 0.6rem; }

.roadmap { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.roadmap-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem 1.3rem;
}
.roadmap-phase {
  flex: none; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary); background: rgba(233, 163, 28, 0.16);
  padding: 0.3rem 0.7rem; border-radius: 999px; margin-top: 0.2rem;
}
.roadmap-item h3 { font-size: 1.08rem; margin-bottom: 0.2rem; }
.roadmap-item p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Contact page steps ---------- */

.steps { display: grid; grid-template-columns: 1fr; gap: 1.1rem; counter-reset: step; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem 1.3rem 1.3rem;
}
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--secondary);
  display: block; margin-bottom: 0.4rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.step p { color: var(--muted); font-size: 0.93rem; }

/* ---------- Footer ---------- */

.site-footer { background: var(--primary-deep); color: rgba(248, 239, 217, 0.82); }

.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  padding: 3.4rem 0 2.4rem;
}

.footer-brand img { width: 46px; height: 46px; margin-bottom: 0.8rem; }
.footer-name { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: #fff; }
.footer-tag { font-size: 0.82rem; color: rgba(248, 239, 217, 0.6); margin: 0.15rem 0 1rem; }

.footer-col h3 {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--secondary); margin-bottom: 0.9rem;
}
.footer-col a, .footer-col p { display: block; padding: 0.22rem 0; font-size: 0.94rem; }
.footer-col a:hover { color: var(--secondary); }

.footer-bottom { border-top: 1px solid rgba(248, 239, 217, 0.14); padding: 1.2rem 0; text-align: center; font-size: 0.82rem; color: rgba(248, 239, 217, 0.55); }

/* ---------- Floating WhatsApp ---------- */

.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%;
  background: #22c15e; color: #fff;
  box-shadow: 0 12px 28px rgba(34, 193, 94, 0.42);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float:active { transform: scale(0.98); }

/* ---------- Scroll reveal (JS adds .in-view) ---------- */

.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.js .reveal.in-view { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; animation-delay: 0s !important; transition-duration: 0.001s !important; }
  .marquee-track { animation: none; }
  .hero-sun { animation: none; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Breakpoints ---------- */

@media (min-width: 480px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 5.5rem 0; }
}

@media (min-width: 900px) {
  .section { padding: 6.5rem 0; }

  /* desktop nav */
  .nav-toggle { display: none; }
  .site-nav {
    position: static; flex-direction: row; align-items: center; gap: 1.6rem;
    padding: 0; background: transparent; border: 0; box-shadow: none;
    opacity: 1; transform: none; pointer-events: auto;
  }
  .site-nav > a { padding: 0.2rem 0; border-bottom: 0; font-size: 0.95rem; position: relative; }
  .site-nav > a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 2px;
    background: var(--secondary); transition: right 0.3s var(--ease);
  }
  .site-nav > a:hover::after, .site-nav > a[aria-current="page"]::after { right: 0; }
  .site-nav > a[aria-current="page"] { color: var(--primary); }
  .site-nav > a.btn { padding: 0.7rem 1.25rem; }
  .site-nav > a.btn::after { display: none; }

  .hero { padding: 3.6rem 0 4.6rem; }
  .hero-inner { grid-template-columns: 1.04fr 0.96fr; gap: 3.4rem; }
  .hero-sun { width: 210px; height: 210px; top: -60px; right: -46px; }

  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid .why-card:nth-child(4) { grid-column: 1 / 2; }
  .why-grid { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
  .why-grid .why-card:nth-child(4) { grid-column: auto; }

  .story-inner { grid-template-columns: 0.9fr 1.1fr; gap: 3.2rem; }

  .delivery-card { grid-template-columns: 1.5fr 0.8fr; padding: 2.8rem 2.6rem; }

  .info-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr; }
  .roadmap { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .value-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
}
