/* =============================================================
   BANORA SOLUCIONES AGRÍCOLAS — styles.css
   1. Tokens
   2. Reset & base
   3. Utilities
   4. Typography
   5. Components (btn, nav, footer, forms, cards)
   6. Sections (hero, catalog, etc.)
   7. Effects
   8. Responsive
   9. Reduced motion
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --navy:       #16233f;
  --navy-2:     #1f3157;
  --navy-3:     #2c4373;
  --navy-soft:  #eef1f7;
  --white:      #ffffff;
  --paper:      #f6f7f9;
  --paper-2:    #eef1f5;
  --ink:        #182236;
  --ink-soft:   #4a5568;
  --ink-mute:   #74798a;
  --green:      #3f7d52;
  --green-soft: #e8f2ea;
  --amber:      #b8863b;
  --line:       rgba(22, 35, 63, 0.13);
  --line-soft:  rgba(22, 35, 63, 0.07);
  --shadow-sm:  0 1px 2px rgba(22, 35, 63, 0.06), 0 1px 1px rgba(22, 35, 63, 0.04);
  --shadow-md:  0 8px 24px rgba(22, 35, 63, 0.10), 0 2px 6px rgba(22, 35, 63, 0.06);
  --shadow-lg:  0 24px 60px rgba(22, 35, 63, 0.16), 0 6px 16px rgba(22, 35, 63, 0.08);

  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 76px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1240px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; }
table { border-collapse: collapse; width: 100%; }
::selection { background: var(--navy); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.1rem; background: var(--navy); color: var(--white);
  z-index: 9999; border-radius: var(--radius-sm); font-weight: 600;
  transition: top .25s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--green);
}
.kicker::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green);
}

.eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink-mute);
}

.section {
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}
.section-alt { background: var(--paper); }
.section-navy { background: var(--navy); color: var(--white); }

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-top: .6rem; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin-top: .9rem; max-width: 42rem; }
.section-navy .section-head p { color: rgba(255,255,255,.78); }

.divider {
  border: 0; border-top: 1px solid var(--line); margin-block: 0;
}

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Typography
   ============================================================= */
.hero-title, .page-title { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.025em; }
.h-display { font-size: clamp(2rem, 4vw, 3rem); }

/* =============================================================
   5. Components
   ============================================================= */

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .25s var(--ease-out), color .25s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy); color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--navy); background: var(--navy-soft); transform: translateY(-2px); }
.btn-on-navy { background: var(--white); color: var(--navy); }
.btn-on-navy:hover { background: var(--paper); }
.btn-sm { padding: .6rem 1.1rem; font-size: .85rem; }
.btn-block { width: 100%; }

/* --- Header / Nav --- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out), height .3s var(--ease-out);
}
@supports not (backdrop-filter: blur(10px)) {
  .site-header { background: rgba(255,255,255,.98); }
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: flex; align-items: center; gap: .6rem; }
.brand img { height: 34px; width: auto; }

.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  position: relative; font-size: .95rem; font-weight: 600; color: var(--ink-soft);
  padding-block: .4rem;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--navy); transition: right .35s var(--ease-out);
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--navy); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: .75rem; }
.header-actions .btn-ghost { display: none; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--radius-sm);
}
.nav-toggle:hover { background: var(--navy-soft); }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 90;
  background: var(--white);
  padding: 1.5rem 1.25rem 2.5rem;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}
.mobile-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a {
  display: block; padding: 1rem 0; font-size: 1.15rem; font-weight: 600;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav .btn { margin-top: 1.5rem; }

/* --- Footer --- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.85); }
.footer-top { padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem; }
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
.footer-brand img { height: 30px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,.68); max-width: 32ch; font-size: .95rem; }
.footer-col h3 { font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a { color: rgba(255,255,255,.82); font-size: .95rem; transition: color .2s var(--ease-out); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; align-items: center; justify-content: space-between;
  font-size: .82rem; color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: var(--white); }

/* --- Cards: category --- */
.cat-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
.cat-card {
  position: relative;
  display: flex; flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cat-card-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-2); }
.cat-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.cat-card:hover .cat-card-media img { transform: scale(1.06); }
.cat-card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.cat-card-body h3 { font-size: 1.08rem; }
.cat-card-body p { color: var(--ink-soft); font-size: .92rem; flex: 1; }
.cat-card-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; font-size: .9rem; color: var(--navy);
  margin-top: .3rem;
}
.cat-card-link svg { width: 16px; height: 16px; transition: transform .3s var(--ease-out); }
.cat-card:hover .cat-card-link svg { transform: translateX(4px); }
.cat-card::after { content: ""; position: absolute; inset: 0; }

/* --- Stats --- */
.stats-row {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(1, 1fr);
}
.stat {
  text-align: left; padding: 1.75rem; border-radius: var(--radius-md);
  background: var(--white); border: 1px solid var(--line);
}
.stat .stat-value { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.stat .stat-label { color: var(--ink-mute); font-size: .92rem; margin-top: .35rem; }
.section-navy .stat { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); }
.section-navy .stat .stat-value { color: var(--white); }
.section-navy .stat .stat-label { color: rgba(255,255,255,.68); }

/* --- Pillars / feature list --- */
.pillars {
  display: grid; gap: 1.75rem;
  grid-template-columns: 1fr;
}
.pillar { display: flex; gap: 1rem; }
.pillar-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: var(--navy-soft); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.pillar p { color: var(--ink-soft); font-size: .95rem; }

/* --- Forms --- */
.form-field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.form-field label { font-size: .88rem; font-weight: 600; color: var(--ink); }
.form-field input, .form-field textarea, .form-field select {
  font: inherit; padding: .8rem 1rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); background: var(--white); color: var(--ink);
  transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px var(--navy-soft); outline: none;
}
.form-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.form-note { font-size: .85rem; color: var(--ink-mute); margin-top: .75rem; }

/* =============================================================
   6. Sections
   ============================================================= */

/* --- Hero (home) --- */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,22,40,.82) 0%, rgba(15,22,40,.72) 45%, rgba(15,22,40,.88) 100%);
}
.hero-inner { position: relative; z-index: 1; padding-block: clamp(6rem, 14vw, 9rem) 4rem; color: var(--white); }
.hero .kicker { color: #a7d9b6; }
.hero .kicker::before { background: #a7d9b6; }
.hero-title { margin-top: 1rem; max-width: 18ch; }
.hero-sub { margin-top: 1.25rem; max-width: 42ch; font-size: 1.1rem; color: rgba(255,255,255,.86); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.1rem; }
.hero-meta { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 1.75rem 2.5rem; }
.hero-meta-item { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: rgba(255,255,255,.82); }
.hero-meta-item svg { width: 18px; height: 18px; flex-shrink: 0; color: #a7d9b6; }

/* --- Page hero (inner pages) --- */
.page-hero {
  padding-block: calc(var(--nav-h) + clamp(2.5rem, 6vw, 4.5rem)) clamp(2.5rem, 5vw, 4rem);
  background: var(--navy);
  color: var(--white);
  margin-top: calc(var(--nav-h) * -1);
}
.page-hero .kicker { color: #a7d9b6; }
.page-hero .kicker::before { background: #a7d9b6; }
.page-hero h1 { margin-top: .8rem; }
.page-hero p { margin-top: 1rem; max-width: 46ch; color: rgba(255,255,255,.8); font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: .5rem; }
.breadcrumb a:hover { color: var(--white); }

/* --- Why us band --- */
.coverage-band {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 2.25rem clamp(1.5rem, 4vw, 3rem);
  background: var(--navy); color: var(--white);
  border-radius: var(--radius-lg);
}
.coverage-band h3 { font-size: 1.35rem; max-width: 24ch; }
.coverage-band p { color: rgba(255,255,255,.75); margin-top: .5rem; max-width: 40ch; }

/* --- CTA final --- */
.cta-final {
  text-align: center; padding-block: clamp(3.5rem, 7vw, 6rem);
}
.cta-final h2 { max-width: 26ch; margin-inline: auto; }
.cta-final p { max-width: 40ch; margin: 1rem auto 0; color: var(--ink-soft); }
.cta-final .hero-actions { justify-content: center; }

/* =============================================================
   Catalog page
   ============================================================= */
.cat-nav-wrap {
  position: sticky; top: var(--nav-h); z-index: 40;
  background: rgba(246,247,249,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.cat-nav {
  display: flex; gap: .55rem; overflow-x: auto;
  padding-block: .85rem;
  scrollbar-width: thin;
}
.cat-nav::-webkit-scrollbar { height: 6px; }
.cat-nav::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }
.cat-pill {
  flex-shrink: 0;
  padding: .55rem 1.05rem;
  border-radius: 999px;
  font-size: .85rem; font-weight: 600;
  background: var(--white); border: 1.5px solid var(--line); color: var(--ink-soft);
  transition: all .25s var(--ease-out);
}
.cat-pill:hover, .cat-pill.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.catalog-search {
  display: flex; align-items: center; gap: .6rem;
  padding: .5rem .5rem .5rem 1rem;
  border: 1.5px solid var(--line); border-radius: 999px; background: var(--white);
  max-width: 26rem; margin-block: 1.5rem;
}
.catalog-search svg { width: 18px; height: 18px; color: var(--ink-mute); flex-shrink: 0; }
.catalog-search input { flex: 1; border: 0; font: inherit; padding: .5rem 0; background: transparent; }
.catalog-search input:focus { outline: none; }
.catalog-count { font-size: .85rem; color: var(--ink-mute); margin-bottom: 1.5rem; }

.cat-section { padding-block: clamp(2.75rem, 5vw, 4rem); scroll-margin-top: calc(var(--nav-h) + 64px); }
.cat-section + .cat-section { border-top: 1px solid var(--line); }
.cat-section-head { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; }
.cat-section-head .cat-title-group { max-width: 42rem; }
.cat-section-head h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: .4rem; }
.cat-section-head p { color: var(--ink-soft); margin-top: .6rem; }
.cat-section-media { width: 100%; max-width: 300px; aspect-ratio: 16/10; border-radius: var(--radius-md); overflow: hidden; flex-shrink: 0; }
.cat-section-media img { width: 100%; height: 100%; object-fit: cover; }

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

.product-card {
  border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white);
  overflow: hidden;
  transition: border-color .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.product-card:hover { box-shadow: var(--shadow-sm); }
.product-card[open] { box-shadow: var(--shadow-md); border-color: transparent; }

.product-summary {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  list-style: none;
}
.product-summary::-webkit-details-marker { display: none; }
.product-summary::marker { content: ""; }
.product-thumb {
  width: 56px; height: 56px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0;
  background: var(--paper-2);
}
.product-summary-text { flex: 1; min-width: 0; }
.product-name { display: block; font-weight: 700; font-size: 1rem; color: var(--ink); }
.product-teaser { display: block; font-size: .88rem; color: var(--ink-mute); margin-top: .2rem; }
.product-chevron {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease-out), background .25s var(--ease-out), border-color .25s var(--ease-out);
}
.product-chevron svg { width: 14px; height: 14px; }
.product-card[open] .product-chevron { transform: rotate(180deg); background: var(--navy); border-color: var(--navy); color: var(--white); }

.product-body { padding: 0 1.25rem 1.5rem; border-top: 1px solid var(--line-soft); }
.product-body-inner { padding-top: 1.25rem; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.product-desc { color: var(--ink-soft); font-size: .96rem; }
.spec-table { margin-top: 1rem; font-size: .88rem; }
.spec-table tr { border-top: 1px solid var(--line-soft); }
.spec-table tr:first-child { border-top: 0; }
.spec-table th, .spec-table td { text-align: left; padding: .55rem 0; vertical-align: top; }
.spec-table th { width: 42%; font-weight: 600; color: var(--ink-mute); padding-right: 1rem; }
.spec-table td { color: var(--ink); }

.quote-actions { margin-top: 1.35rem; }
.quote-dropdown { position: relative; display: inline-block; }
.quote-dropdown summary.btn { cursor: pointer; list-style: none; }
.quote-dropdown summary.btn::-webkit-details-marker { display: none; }
.quote-caret { display: inline-block; transition: transform .25s var(--ease-out); }
.quote-dropdown[open] .quote-caret { transform: rotate(180deg); }
.quote-menu {
  position: absolute; top: calc(100% + .5rem); left: 0; z-index: 20;
  min-width: 15rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  display: flex; flex-direction: column; gap: .15rem;
}
.quote-menu a, .quote-menu button {
  display: flex; align-items: center; gap: .65rem; width: 100%;
  padding: .7rem .75rem; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 600; color: var(--ink); text-align: left;
}
.quote-menu a:hover, .quote-menu button:hover { background: var(--paper); }
.quote-menu a svg, .quote-menu button svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--navy); }

/* --- Quote dialog (modal form) --- */
.quote-modal {
  border: 0; border-radius: var(--radius-lg);
  padding: 0; width: min(30rem, 92vw);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}
.quote-modal::backdrop { background: rgba(22, 35, 63, .55); backdrop-filter: blur(2px); }
.quote-modal-form { padding: 2rem clamp(1.25rem, 4vw, 2.25rem) 2rem; position: relative; }
.quote-modal-close {
  position: absolute; top: 1.1rem; right: 1.1rem;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mute);
}
.quote-modal-close:hover { background: var(--paper); color: var(--ink); }
.quote-modal-close svg { width: 18px; height: 18px; }
.quote-modal-title { font-size: 1.3rem; margin-top: .5rem; padding-right: 2rem; }
.quote-modal-hint { color: var(--ink-soft); font-size: .92rem; margin-top: .4rem; margin-bottom: 1.4rem; }
.quote-modal-status { font-size: .88rem; margin-bottom: .9rem; min-height: 0; }
.quote-modal-status[data-state="error"] { color: #b3261e; }
.quote-modal-status[data-state="success"] { color: var(--green); }
.quote-modal-status[data-state="loading"] { color: var(--ink-mute); }
.quote-modal[open] { animation: quoteModalIn .25s var(--ease-out); }
@keyframes quoteModalIn { from { opacity: 0; transform: translateY(8px) scale(.98); } to { opacity: 1; transform: none; } }

.accessory-list { display: grid; gap: .9rem; grid-template-columns: 1fr; }
.accessory-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.15rem; border: 1px solid var(--line); border-radius: var(--radius-md);
}
.accessory-item img { width: 52px; height: 52px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.accessory-item-text { flex: 1; }
.accessory-item-text h4 { font-size: .96rem; }
.accessory-item-text p { font-size: .85rem; color: var(--ink-mute); margin-top: .15rem; }

.no-results { display: none; text-align: center; padding: 3rem 1rem; color: var(--ink-mute); }
.no-results.is-visible { display: block; }

/* =============================================================
   Contact page
   ============================================================= */
.contact-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
.contact-card {
  padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-md);
  display: flex; gap: 1rem; align-items: flex-start;
}
.contact-card svg { width: 22px; height: 22px; color: var(--navy); flex-shrink: 0; margin-top: 2px; }
.contact-card h3 { font-size: .95rem; margin-bottom: .3rem; }
.contact-card p, .contact-card a { color: var(--ink-soft); font-size: .93rem; }
.contact-card a:hover { color: var(--navy); }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }

/* =============================================================
   About page
   ============================================================= */
.about-figure { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10; }
.about-lede { font-size: 1.2rem; color: var(--ink); max-width: 48ch; }
.about-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: center; }

/* =============================================================
   Credits page
   ============================================================= */
.credits-list { display: flex; flex-direction: column; gap: .5rem; }
.credits-list li { padding: 1rem 0; border-bottom: 1px solid var(--line-soft); font-size: .92rem; color: var(--ink-soft); }
.credits-list a { color: var(--navy); font-weight: 600; }
.credits-list a:hover { text-decoration: underline; }

/* =============================================================
   8. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .form-row-2 { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 720px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .accessory-list { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1.1fr .9fr; }
}

@media (min-width: 960px) {
  .main-nav { display: block; }
  .header-actions .btn-ghost { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-body-inner { grid-template-columns: 1.5fr 1fr; }
  .accessory-list { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1280px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================
   9. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg img { transform: none !important; }
}
