/* ════════════════════════════════════════════════════════════
   Dehli Organic Spices — Core components & layout
   Depends on: tokens.css
   ════════════════════════════════════════════════════════════ */

/* ── Reset / base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--color-bg-base);
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 16px;
  /* Quicksand is a light, rounded geometric — 400 reads thin at body size, so
     floor the base at 500 (≈ Poppins 400 visual weight). Bold accents use 600/700. */
  font-weight: 500;
  line-height: 1.75; /* airy body vs display headings */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* Baloo 2 / Quicksand ship no italic — stop browsers faux-styling. */
  font-synthesis: none;
}

/* Atmospheric base: faint green wash from the top + paper grain */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(1100px 640px at 50% -8%, rgba(30,86,49,0.06), transparent 60%),
    var(--color-bg-base);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: var(--grain);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--dur-base) var(--ease-out); }
a:hover { color: var(--color-lime); }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

::selection { background: var(--color-primary); color: #fff; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--color-bg-dark); }
::-webkit-scrollbar-thumb { background: #D6D8CE; border-radius: 99px; border: 3px solid var(--color-bg-dark); }
::-webkit-scrollbar-thumb:hover { background: var(--color-primary); }

/* ── Typography ───────────────────────────────────────────── */
/* Baloo 2 (rounded display, matches the jar labels) — real weights, so
   hierarchy is weight + colour. Baloo has no italic; accents use weight+green. */
h1, h2, h3, h4 { color: var(--text-primary); font-family: var(--font-display); font-weight: 600; line-height: 1.16; margin: 0 0 var(--sp-4); letter-spacing: -0.01em; }
/* Two-line heading rhythm: plain first line, heavier green accent line */
h2 .text-lime, h2 .text-gold { color: var(--color-primary); font-weight: 700; }
p { margin: 0 0 var(--sp-4); }

.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}
.urdu { font-family: var(--font-urdu); color: var(--color-lime); font-weight: 700; line-height: 2; direction: rtl; }
/* Eyebrow — small tracked uppercase label in green */
.eyebrow {
  font-family: var(--font-accent); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--color-primary); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: "✦"; font-size: 0.7rem; color: var(--color-primary); display: inline-block; letter-spacing: 0; }
.eyebrow.no-line::before { content: ""; }
.lead { font-size: 1.1rem; color: var(--text-muted); max-width: 52ch; }
.text-lime { color: var(--color-lime); }
.text-gold { color: var(--color-gold); }

/* ── Layout ───────────────────────────────────────────────── */
.dos-container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-6); }

/* Plain-page wrapper (cart / checkout / account / privacy render through
   page.php's .site-main). Hello's boxing CSS is dequeued, so box it here —
   otherwise page content hugs the viewport edge. */
.site-main {
  display: block; width: 100%; max-width: var(--container);
  margin-inline: auto; padding: var(--sp-12) var(--sp-6) var(--sp-24);
}

/* Elementor Theme Builder wrappers must never box the chrome — but only
   the ROOT containers get flattened. (The old rule nuked padding/margin on
   EVERY element inside the locations, which broke the native header/footer
   layout: jammed nav items, edge-hugging footer columns.) */
.elementor-location-header, .elementor-location-footer { padding: 0; margin: 0; width: 100%; }
.elementor-location-header > .elementor-element,
.elementor-location-footer > .elementor-element {
  max-width: 100% !important; width: 100% !important; margin: 0 !important;
}
.dos-section { padding-block: clamp(var(--sp-12), 6.5vw, var(--sp-24)); position: relative; }
@media (max-width: 600px) { .dos-section { padding-block: var(--sp-12); } }
.section-head { max-width: 640px; margin-bottom: var(--sp-12); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
/* Paisley flourish under section headings — printed-tin ornament, not a plain rule */
.section-head h2::after {
  content: ""; display: block; width: 74px; height: 12px; margin-top: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 74 12' fill='none' stroke='%231E5631' stroke-width='1.3'%3E%3Cpath d='M2 6h22M50 6h22'/%3E%3Cpath d='M37 1.6c3 0 5.4 2 5.4 4.4S40 10.4 37 10.4 31.6 8.4 31.6 6 34 1.6 37 1.6Z'/%3E%3Ccircle cx='37' cy='6' r='1.4' fill='%231E5631' stroke='none'/%3E%3Cpath d='M26 6c2-2.4 4.6-2.4 6.4 0M48 6c-2-2.4-4.6-2.4-6.4 0'/%3E%3C/svg%3E") center/contain no-repeat;
}
.section-head.center h2::after { margin-inline: auto; }
.grid { display: grid; gap: var(--sp-6); }

/* ── Buttons — flat, sharp, solid (no gradient / glow / big-radius) ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 50px; padding: 0 32px; border: none; border-radius: var(--radius-btn);
  font-family: var(--font-sans); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap; cursor: pointer; color: #fff; background: var(--color-primary);
  box-shadow: var(--shadow-btn);
  transition: background var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
/* Tactile hover — darken + lift + deepen shadow. */
.btn:hover { background: var(--color-primary-600); transform: translateY(-2px); box-shadow: var(--shadow-btn-hover); color: #fff; }
.btn:active { transform: translateY(0); box-shadow: var(--shadow-btn); }
/* Outline/ghost buttons carry no drop shadow at rest (they're secondary). */
.btn--ghost, .btn--outline { box-shadow: none; }
.btn--ghost:hover, .btn--outline:hover { box-shadow: var(--shadow-btn); }

/* Secondary "dark" button — near-black (only non-white/green tone we allow) */
.btn--gold { color: #fff; background: var(--color-ink); }
.btn--gold:hover { background: #000; color: #fff; }

/* Outline buttons — simple solid fill on hover */
.btn--ghost, .btn--outline {
  color: var(--color-lime-600); background: transparent; border: 1px solid var(--color-lime-600);
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.btn--ghost:hover, .btn--outline:hover { background: var(--color-lime-600); color: #fff; border-color: var(--color-lime-600); }

.btn--lg { height: 56px; padding: 0 38px; font-size: 0.86rem; }
.btn .arr { transition: transform var(--dur-base) var(--ease-out); }
.btn:hover .arr { transform: translateX(4px); }

/* ── Badges / tags ────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border-radius: var(--radius-tag);
  background: var(--color-primary); color: #fff; border: none;
}
.badge--gold { background: var(--color-ink); color: #fff; }
.badge--sky  { background: var(--color-sky); color: #fff; }
.badge--rust { background: var(--color-ink); color: #fff; }
.badge--sage { background: var(--color-lime); color: #fff; }
.badge--solid-dark { background: var(--color-ink); color: #fff; border: none; }

/* ════════════════════════════════════════════════════════════
   Announcement marquee
   ════════════════════════════════════════════════════════════ */
.dos-announce {
  background: var(--color-primary);
  color: #F7E7CE; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em;
  overflow: hidden; white-space: nowrap; border-bottom: 1px solid rgba(0,0,0,0.12);
}
.dos-announce__track { display: inline-flex; gap: var(--sp-12); padding: 8px 0; animation: dos-marquee 38s linear infinite; }
.dos-announce:hover .dos-announce__track { animation-play-state: paused; }
.dos-announce__track span { display: inline-flex; align-items: center; gap: var(--sp-3); }
.dos-announce__track b { color: #fff; }
@keyframes dos-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════════════════════════════════════════════════════════
   Header / Nav
   ════════════════════════════════════════════════════════════ */
/* Full-bleed container for header / footer / wide bands.
   No max-width — content anchors to the viewport edges at every size,
   so the chrome never reads as a floating strip on wide monitors. */
.dos-bleed { width: 100%; padding-inline: clamp(20px, 4vw, 64px); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--color-bg-base);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur-base) var(--ease-out);
  /* Hard-reset Hello Elementor's .site-header rules (boxed max-width + flex),
     in case its theme.css/header-footer.css sneak in (e.g. Elementor editor). */
  display: block; width: 100%; max-width: none; margin-inline: 0; padding: 0;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; gap: var(--sp-6); height: var(--header-h); }
.site-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; margin-right: auto; }
.site-brand img, .site-brand svg { height: 50px; width: auto; }
.site-brand__word { display: flex; flex-direction: column; line-height: 1; }
.site-brand__word strong { font-family: var(--font-display); font-weight: 900; font-size: 1.05rem; letter-spacing: 0.01em; color: var(--text-primary); }
.site-brand__word small { font-size: 0.56rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--color-lime); margin-top: 3px; }

.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.site-nav a { position: relative; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); padding: 8px 0; }
.site-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--color-primary); transition: width var(--dur-base) var(--ease-out); }
.site-nav a:hover { color: var(--color-primary); }
.site-nav a:hover::after { width: 100%; }

.site-actions { display: flex; align-items: center; gap: var(--sp-2); flex-shrink: 0; margin-left: clamp(18px, 3vw, 40px); }
.icon-btn {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: var(--radius-btn);
  background: transparent; border: 1px solid transparent; color: var(--text-muted); position: relative;
  transition: color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.icon-btn:hover { color: var(--color-primary); background: var(--color-bg-tint); }
.icon-btn svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: -3px; right: -3px; min-width: 18px; height: 18px; padding: 0 5px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 700; line-height: 1; border-radius: 99px;
  background: var(--color-primary); color: #fff; border: 2px solid var(--color-bg-base);
}
.nav-toggle { display: none; }

/* ════════════════════════════════════════════════════════════
   Product card (design-system spec)
   ════════════════════════════════════════════════════════════ */
.dos-products { grid-template-columns: repeat(4, 1fr); }
.dos-product {
  background: var(--color-bg-card); border: 1px solid var(--line-sage); border-radius: var(--radius-card);
  overflow: hidden; position: relative; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.dos-product:hover { transform: translateY(-4px); border-color: var(--line-lime-strong); box-shadow: var(--shadow-md); }
/* Brick-pattern offset — goods stacked on a market shelf, not floating cards */
.dos-products > .dos-product:nth-child(2n) { margin-top: 12px; }
.dos-product__media { aspect-ratio: 1; background: var(--color-bg-dark); position: relative; overflow: hidden; }
.dos-product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-xslow) var(--ease-out); }
.dos-product:hover .dos-product__media img { transform: scale(1.07); }
.dos-product__flags { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.dos-product__fav {
  position: absolute; top: 12px; right: 12px; z-index: 2; width: 36px; height: 36px; border-radius: 99px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(6px); border: 1px solid var(--line-strong);
  display: grid; place-items: center; color: var(--text-muted); opacity: 0; transform: translateY(-6px);
  transition: all var(--dur-base) var(--ease-out);
}
.dos-product:hover .dos-product__fav { opacity: 1; transform: translateY(0); }
.dos-product__fav:hover { color: var(--color-spice-warm); border-color: var(--color-spice-warm); }
.dos-product__body { padding: var(--sp-4) var(--sp-4) var(--sp-6); display: flex; flex-direction: column; gap: 6px; }
.dos-product__cat { font-size: 0.66rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-lime-600); }
.dos-product__name { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; color: var(--text-primary); line-height: 1.3; }
.dos-product__rating { display: flex; align-items: center; gap: 4px; font-size: 0.76rem; color: var(--text-faint); }
.dos-product__rating .stars { color: var(--color-gold); letter-spacing: 1px; }
.dos-product__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
/* Real Woo loop button drops to its own full-width row under the price
   (prevents the price + "ADD TO CART" collision on narrow cards) */
.dos-product__foot .button.add_to_cart_button { width: 100%; text-align: center; }
/* Price — near-black, bold; green button carries the action */
.dos-product__price { font-size: 1.15rem; font-weight: 700; color: var(--text-primary); }
.dos-product__price del { color: var(--text-faint); font-size: 0.85rem; font-weight: 400; margin-right: 6px; }
/* Stamped-label add button: green outline at rest, inks solid on hover */
.dos-product__add {
  width: 42px; height: 42px; border-radius: var(--radius-btn); background: transparent;
  border: 1.5px solid var(--color-primary); color: var(--color-primary); display: grid; place-items: center;
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.dos-product__add:hover { background: var(--color-primary); color: #fff; }
.dos-product--featured { border-color: var(--hairline); }
.dos-product--featured .dos-product__cat { color: var(--color-gold); }

/* ════════════════════════════════════════════════════════════
   Footer
   ════════════════════════════════════════════════════════════ */
/* Footer — light cream, tin-label typography, turmeric rule on top */
.site-footer {
  background: var(--color-bg-dark); border-top: 3px solid var(--color-primary); margin-top: var(--sp-24); position: relative;
  /* Same Hello Elementor reset as .site-header — never box the footer. */
  display: block; width: 100%; max-width: none; margin-inline: 0; padding: 0;
}
.site-footer__top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.5fr; gap: var(--sp-12); padding-block: var(--sp-16); }
.site-footer h4 { font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-primary); margin-bottom: var(--sp-6); }
.site-footer__about p { font-size: 0.88rem; max-width: 34ch; color: var(--text-muted); }
.site-footer__links li { margin-bottom: 10px; }
.site-footer__links a { font-size: 12px; color: var(--text-muted); }
.site-footer__links a:hover { color: var(--color-primary); }
.site-footer__contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.85rem; color: var(--text-muted); }
.site-footer__contact svg { width: 16px; height: 16px; color: var(--color-lime-600); flex-shrink: 0; margin-top: 3px; }
.footer-news input { flex: 1; }
.footer-news { display: flex; gap: 8px; margin-top: 12px; }
.socials { display: flex; gap: 18px; margin-top: var(--sp-6); align-items: center; }
.socials a { display: grid; place-items: center; padding: 6px; color: var(--text-faint); transition: color var(--dur-base); }
.socials a:hover { color: var(--color-primary); }
.socials svg { width: 16px; height: 16px; }
.site-footer__bar { border-top: 1px solid var(--line-strong); padding-block: var(--sp-6); display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4); flex-wrap: wrap; font-size: 0.78rem; color: var(--text-faint); }
.pay-icons { display: flex; gap: 8px; align-items: center; opacity: 0.7; }
.pay-icons span { font-size: 0.7rem; padding: 3px 8px; border: 1px solid var(--line-strong); border-radius: var(--radius-tag); }

/* ── Forms ────────────────────────────────────────────────── */
input, textarea, select {
  background: var(--color-bg-card); border: 1px solid var(--line-strong); border-radius: var(--radius-btn);
  color: var(--text-primary); padding: 12px 14px; font-size: 0.95rem; font-family: inherit; width: 100%;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
input::placeholder, textarea::placeholder { color: var(--text-faint); }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(30,86,49,0.12); }
/* Radios / checkboxes must never take the 100% input width (was centring
   checkout payment radios on their own line). */
input[type="radio"], input[type="checkbox"] { width: auto; padding: 0; border-radius: 0; }

/* ════════════════════════════════════════════════════════════
   Scroll-reveal animation utilities
   ════════════════════════════════════════════════════════════ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity var(--dur-xslow) var(--ease-out), transform var(--dur-xslow) var(--ease-out); will-change: opacity, transform; }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="zoom"]  { transform: scale(0.94); }
[data-reveal].is-in { transform: none; }
[data-delay="1"] { transition-delay: 80ms; }
[data-delay="2"] { transition-delay: 160ms; }
[data-delay="3"] { transition-delay: 240ms; }
[data-delay="4"] { transition-delay: 320ms; }
[data-delay="5"] { transition-delay: 400ms; }
[data-delay="6"] { transition-delay: 480ms; }

@keyframes dos-float { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateY(-14px) rotate(var(--r,0deg)); } }
@keyframes dos-spin-slow { to { transform: rotate(360deg); } }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1080px) {
  .dos-products { grid-template-columns: repeat(3, 1fr); }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  :root { --header-h: 66px; }
  .site-nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); flex-direction: column;
    align-items: flex-start; justify-content: flex-start; gap: var(--sp-2); padding: calc(var(--header-h) + 24px) var(--sp-8);
    background: var(--color-bg-card); border-left: 3px solid var(--color-primary); margin: 0;
    transform: translateX(100%); transition: transform var(--dur-slow) var(--ease-out); z-index: 99;
  }
  .site-nav.is-open { transform: translateX(0); box-shadow: var(--shadow-lg); }
  .site-nav a { font-size: 1.05rem; padding: 10px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: grid; }
  .dos-products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .dos-container { padding-inline: var(--sp-4); }
  .dos-products { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
  .site-brand__word { display: none; }
  .btn--lg { height: 50px; padding: 0 24px; }
}

/* Green "Est." badge pinned to story imagery — shared (home + Our Story) */
.story__badge { position: absolute; bottom: 22px; right: -18px; background: var(--color-primary); border: none; border-radius: var(--radius-card); padding: 14px 20px; box-shadow: var(--shadow-md); }
.story__badge strong { display: block; font-family: var(--font-display); font-size: 1.4rem; color: #fff; }
.story__badge span { font-size: 0.76rem; color: var(--color-gold-100); }

/* ════════════════════════════════════════════════════════════
   CTA feature band — shared component (home, Our Story, any page).
   Lives here (not home.css) so every page that prints .cta-band
   gets the photo + forest overlay treatment.
   ════════════════════════════════════════════════════════════ */
.cta-band { padding: 0; }
.cta-band__inner {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: 460px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: clamp(56px, 9vw, 110px) var(--sp-6);
  border-radius: 0; max-width: none; margin: 0;
}
/* Photo layer */
.cta-band__inner::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: var(--cta-photo, none) center/cover no-repeat;
  transform: scale(1.04);
}
/* Forest-green overlay so white text sits cleanly on any photo */
.cta-band__inner::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(14,42,21,0.72), rgba(14,42,21,0.84)),
    radial-gradient(120% 120% at 50% 0%, rgba(30,86,49,0.35), transparent 60%);
}
.cta-band__inner .eyebrow, .cta-band__inner .eyebrow::before { color: var(--color-sage-100); }
.cta-band__inner .urdu-sub { color: var(--color-sage-100); }
.cta-band__inner h2 { color: #fff; font-size: clamp(2.2rem, 4.4vw, 3.4rem); margin: 6px 0 10px; }
.cta-band__inner h2 .text-lime { color: var(--color-sage-100); font-weight: 700; }
.cta-band__inner > p { max-width: 46ch; margin-inline: auto; margin-bottom: 30px; color: rgba(255,255,255,0.9); }
.cta-band__form { display: flex; gap: 10px; max-width: 520px; width: 100%; margin: 0 auto 16px; }
.cta-band__form input {
  flex: 1; height: 56px; background: rgba(255,255,255,0.97); border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-btn); color: var(--text-primary);
}
.cta-band__form input::placeholder { color: var(--text-faint); }
.cta-band__form input:focus { border-color: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,0.35); }
/* White buttons pop against the green overlay (form button + plain CTA link) */
.cta-band .btn { height: 56px; background: #fff; color: var(--color-primary); font-weight: 700; }
.cta-band .btn:hover { background: var(--color-sage-100); color: var(--color-primary-800); }
.cta-band__inner small { color: rgba(255,255,255,0.72); font-size: 0.8rem; }
@media (max-width: 560px) { .cta-band__form { flex-direction: column; } }

/* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
