/* ===================================================================
   LECTROSONICS — concept site design system
   Concept by Boring Stories. Palette + register pulled from lectrosonics.com.
   Lectro Blue #003da5 · Not Fragile Red #ff0000 · cinematic engineering.
   =================================================================== */

:root {
  /* --- ink (Control Room graphite — kit #18) --- */
  --ink:        #0a0e12;
  --ink-1:      #0e141b;
  --ink-2:      #141c24;
  --ink-3:      #1d2730;   /* Control Room surface */
  --ink-card:   #18222c;

  /* --- brand --- */
  --blue:       #003da5;   /* Lectro Blue — signature, exact from live CSS */
  --blue-2:     #005bbe;   /* their secondary blue */
  --blue-lift:  #4c8dff;   /* brightened brand blue — interactive on dark (AA) */
  --amber:      #f4b24a;   /* warm signal accent — live / REC / heritage (Control Room) */
  --amber-deep: #c9821f;   /* amber for light sections / hover */
  --slate:      #7d8790;   /* muted slate */
  --red:        #ff2418;   /* Not Fragile badge mark only */

  /* --- paper (light) --- */
  --paper:      #ffffff;
  --paper-2:    #f6f6f4;
  --paper-3:    #ececeb;

  /* --- type colors --- */
  --on-ink:        #eef2f6;
  --on-ink-soft:   rgba(238,242,246,.64);
  --on-ink-faint:  rgba(238,242,246,.40);
  --on-paper:      #11161d;
  --on-paper-soft: #565b62;

  /* --- lines --- */
  --hair-ink:   rgba(255,255,255,.11);
  --hair-ink-2: rgba(255,255,255,.06);
  --hair-paper: rgba(10,14,20,.11);

  /* --- type --- */
  /* Headlines: Archivo Expanded (epic industrial, all-caps, echoes the LECTROSONICS wordmark).
     Body: Mona Sans (Swiss grotesque). Specs: Chivo Mono. No Inter/Bricolage/Space Grotesk/Clash. */
  --display: "Archivo", "Mona Sans", system-ui, sans-serif;
  --body:    "Mona Sans", system-ui, -apple-system, sans-serif;
  --mono:    "Chivo Mono", ui-monospace, "SF Mono", monospace;

  /* --- motion --- */
  --ease: cubic-bezier(.32,.72,0,1);
  --ease-soft: cubic-bezier(.4,.1,.1,1);

  /* --- rhythm --- */
  --gutter: clamp(20px, 5vw, 64px);
  --maxw: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--on-ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  font-feature-settings: "ss01","cv01";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--blue-lift); color: #fff; }

/* ---------- film grain (fixed, perf-safe) ---------- */
.grain {
  position: fixed; inset: 0; z-index: 60; pointer-events: none;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { padding-block: clamp(48px, 6.5vw, 96px); position: relative; }
.section-paper { background: var(--paper); color: var(--on-paper); }
.section-paper-2 { background: var(--paper-2); color: var(--on-paper); }
.section-ink-2 { background: var(--ink-1); }

/* ---------- type ---------- */
h1,h2,h3,h4 { font-family: var(--display); font-weight: 700; font-stretch: 125%; text-transform: uppercase; line-height: 1.0; letter-spacing: .004em; margin: 0; }
.display {
  font-size: clamp(2.3rem, 6.2vw, 5.2rem);
  font-weight: 800; letter-spacing: .003em; line-height: .95;
}
.h2 { font-size: clamp(1.9rem, 4.4vw, 3.4rem); font-weight: 700; letter-spacing: .006em; line-height: 1.02; }
.h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); font-weight: 600; letter-spacing: -.006em; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.32rem); line-height: 1.55; color: var(--on-ink-soft); max-width: 56ch; }
.section-paper .lead, .section-paper-2 .lead { color: var(--on-paper-soft); }
p { margin: 0 0 1.1em; }

/* eyebrow: a quiet typographic label, not a pill. No badge, no dot. */
.eyebrow {
  display: inline-block;
  font-family: var(--mono); font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .22em;
  color: var(--amber);
}
.section-paper .eyebrow, .section-paper-2 .eyebrow { color: var(--on-paper-soft); }
.eyebrow.red { color: var(--red); }

.mono-label { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; color: var(--on-ink-faint); text-transform: uppercase; }

/* ---------- buttons (island + button-in-button) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .85em;
  font-family: var(--body); font-weight: 500; font-size: 15px;
  padding: 13px 16px 13px 24px; border-radius: 999px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .5s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(.975); }
.btn .ico {
  width: 30px; height: 30px; border-radius: 999px;
  display: grid; place-items: center; flex: none;
  transition: transform .5s var(--ease), background .4s var(--ease);
}
.btn .ico svg { width: 14px; height: 14px; }
.btn:hover .ico { transform: translate(3px,-1px) scale(1.04); }

.btn-primary { background: var(--blue-lift); color: #fff; }
.btn-primary .ico { background: rgba(255,255,255,.18); }
.btn-primary:hover { background: #4a90ff; }
.btn-solid { background: var(--on-ink); color: var(--ink); }
.btn-solid .ico { background: rgba(0,0,0,.10); }
.btn-solid:hover { background: #fff; }
.btn-ghost { background: rgba(255,255,255,.03); color: var(--on-ink); border-color: var(--hair-ink); }
.btn-ghost .ico { background: rgba(255,255,255,.07); }
.btn-ghost:hover { background: rgba(255,255,255,.07); }
.section-paper .btn-ghost, .section-paper-2 .btn-ghost { color: var(--on-paper); border-color: var(--hair-paper); background: rgba(0,0,0,.02); }
.section-paper .btn-ghost:hover, .section-paper-2 .btn-ghost:hover { background: rgba(0,0,0,.05); }

.textlink { display:inline-flex; align-items:center; gap:.5em; font-weight:500; color: var(--blue-lift); transition: gap .4s var(--ease); }
.section-paper .textlink, .section-paper-2 .textlink { color: var(--blue); }
.textlink:hover { gap: .85em; }

/* ---------- double-bezel card ---------- */
.shell {
  background: rgba(255,255,255,.035);
  border: 1px solid var(--hair-ink);
  border-radius: 26px; padding: 7px;
}
.shell > .core {
  background: var(--ink-card);
  border-radius: 20px;
  box-shadow: inset 0 1px 1px rgba(255,255,255,.06);
  overflow: hidden; height: 100%;
}
.section-paper .shell, .section-paper-2 .shell { background: rgba(0,0,0,.03); border-color: var(--hair-paper); }
.section-paper .shell > .core, .section-paper-2 .shell > .core { background: var(--paper); box-shadow: inset 0 1px 1px rgba(255,255,255,.6), 0 1px 0 rgba(0,0,0,.02); }

/* ---------- nav (fluid island) ---------- */
.nav-spacer { height: 0; }
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 70;
  display: flex; justify-content: center;
  padding: 18px var(--gutter); pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  width: 100%; max-width: var(--maxw);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 11px 11px 11px 22px; border-radius: 999px;
  background: rgba(10,14,20,.55);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--hair-ink);
  transition: background .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.nav.scrolled .nav-inner { background: rgba(8,11,16,.82); box-shadow: 0 18px 50px -28px rgba(0,0,0,.9); }
.brand { display:flex; align-items:center; gap: 10px; flex: none; }
.brand img { height: 16px; width: auto; }
.brand .reg { font-family: var(--mono); font-size: 9px; color: var(--on-ink-faint); letter-spacing:.1em; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14px; color: var(--on-ink-soft); font-weight: 500;
  padding: 9px 14px; border-radius: 999px;
  transition: color .35s var(--ease), background .35s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--on-ink); background: rgba(255,255,255,.06); }
.nav-cta { display:flex; align-items:center; gap: 8px; flex: none; }
.nav-cta .btn { padding: 10px 12px 10px 18px; font-size: 14px; }

.burger { display:none; width: 44px; height: 44px; border:1px solid var(--hair-ink); border-radius:999px; background:rgba(255,255,255,.03); cursor:pointer; position:relative; flex:none; }
.burger span { position:absolute; left:13px; right:13px; height:1.5px; background: var(--on-ink); transition: transform .5s var(--ease), opacity .3s var(--ease); }
.burger span:nth-child(1){ top:17px; } .burger span:nth-child(2){ top:25px; }
body.menu-open .burger span:nth-child(1){ transform: translateY(4px) rotate(45deg); }
body.menu-open .burger span:nth-child(2){ transform: translateY(-3px) rotate(-45deg); }

/* mobile overlay */
.menu {
  position: fixed; inset: 0; z-index: 65;
  background: rgba(8,11,16,.92);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s;
}
body.menu-open .menu { opacity: 1; visibility: visible; }
.menu a {
  font-family: var(--display); font-size: clamp(2rem,9vw,3.2rem); font-weight: 700;
  letter-spacing:-.03em; padding: 10px 0; color: var(--on-ink);
  border-bottom: 1px solid var(--hair-ink-2);
  transform: translateY(28px); opacity: 0;
  transition: transform .6s var(--ease), opacity .6s var(--ease), color .3s;
}
.menu a:hover { color: var(--blue-lift); }
body.menu-open .menu a { transform: translateY(0); opacity: 1; }
body.menu-open .menu a:nth-child(1){ transition-delay:.08s; }
body.menu-open .menu a:nth-child(2){ transition-delay:.13s; }
body.menu-open .menu a:nth-child(3){ transition-delay:.18s; }
body.menu-open .menu a:nth-child(4){ transition-delay:.23s; }
body.menu-open .menu a:nth-child(5){ transition-delay:.28s; }
body.menu-open .menu a:nth-child(6){ transition-delay:.33s; }
body.menu-open .menu a:nth-child(7){ transition-delay:.38s; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); filter: blur(8px); transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- hero ---------- */
.hero { min-height: 100dvh; display: flex; align-items: flex-end; position: relative; overflow: hidden; padding-bottom: clamp(48px, 7vw, 96px); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; object-position: center 42%; opacity:0; transform: scale(1.05); transition: opacity 1.8s var(--ease-soft); will-change: opacity; }
.hero-media img.is-active { opacity:1; }
.hero-media::after {
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(to top, rgba(8,11,16,.96) 4%, rgba(8,11,16,.55) 38%, rgba(8,11,16,.25) 65%, rgba(8,11,16,.55) 100%),
    radial-gradient(120% 80% at 15% 110%, rgba(0,61,165,.45), transparent 60%);
}
.hero-content { position: relative; z-index: 1; width: 100%; }
.hero h1 { max-width: 16ch; margin-top: 26px; }
.hero .lead { margin-top: 22px; color: rgba(238,242,246,.78); }
.hero-cta { display:flex; flex-wrap:wrap; gap: 12px; margin-top: 34px; }
.hero-meta { display:flex; flex-wrap:wrap; gap: 28px; margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--hair-ink); }
.hero-meta .item { display:flex; flex-direction:column; gap:3px; }
.hero-meta .n { font-family: var(--display); font-size: 1.7rem; font-weight: 700; letter-spacing:-.02em; }
.hero-meta .l { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing:.16em; color: var(--on-ink-faint); }

/* ---------- grids ---------- */
.grid { display: grid; gap: clamp(16px, 1.6vw, 22px); }
.g-2 { grid-template-columns: repeat(2,1fr); }
.g-3 { grid-template-columns: repeat(3,1fr); }
.g-4 { grid-template-columns: repeat(4,1fr); }
.split { display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,4vw,56px); align-items:center; }
.section-head { max-width: 62ch; margin-bottom: clamp(26px,3vw,44px); }
.section-head .h2 { margin-top: 18px; }
.section-head.center { margin-inline:auto; text-align:center; }

/* ---------- product card ---------- */
.product { display:flex; flex-direction:column; height:100%; }
.product .ph { aspect-ratio: 1/1; background: radial-gradient(120% 120% at 50% 30%, #fff, #eef0f2); display:grid; place-items:center; padding: 12%; }
.product .ph img { width:100%; height:100%; object-fit: contain; transition: transform .7s var(--ease); }
.product:hover .ph img { transform: scale(1.05); }
.product .body { padding: 22px 22px 24px; display:flex; flex-direction:column; gap: 8px; flex:1; }
.product .tag { font-family: var(--mono); font-size: 10.5px; letter-spacing:.14em; text-transform:uppercase; color: var(--blue); }
.product .name { font-family: var(--display); font-size: 1.5rem; font-weight: 800; font-stretch:125%; text-transform:uppercase; letter-spacing:.004em; color: var(--on-paper); }
.product .desc { font-size: 14.5px; color: var(--on-paper-soft); line-height:1.5; }
.product .more { margin-top: auto; padding-top: 12px; }
/* dark photographic product image (premium) — fills the frame instead of the light contain box */
.product .ph.photo { background: var(--ink); padding: 0; }
.product .ph.photo img { width: 100%; height: 100%; object-fit: cover; }
.product:hover .ph.photo img { transform: scale(1.04); }

/* full-bleed cinematic band */
section.cine { padding: 0; }
.cine { position: relative; min-height: clamp(440px, 62vh, 680px); display: flex; align-items: flex-end; overflow: hidden; }
.cine > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transform: scale(1.04); }
.cine::after { content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to top, rgba(8,11,16,.94) 2%, rgba(8,11,16,.35) 50%, rgba(8,11,16,.55) 100%); }
.cine .cine-in { position: relative; z-index: 1; width: 100%; padding-block: clamp(40px,6vw,76px); }
.cine .cine-in .h2 { max-width: 18ch; }
.cine .cine-in .lead { margin-top: 16px; color: rgba(238,242,246,.82); }

/* ---------- feature row / cards on dark ---------- */
.feature { padding: 30px; display:flex; flex-direction:column; gap: 14px; height:100%; }
.feature .num { font-family: var(--mono); font-size: 12px; color: var(--blue-lift); letter-spacing:.1em; }
.feature h3 { font-size: 1.7rem; }
.feature p { color: var(--on-ink-soft); font-size: 15.5px; margin:0; }
.section-paper .feature p, .section-paper-2 .feature p { color: var(--on-paper-soft); }
.section-paper .feature .num, .section-paper-2 .feature .num { color: var(--blue); }

/* ---------- editorial story card ---------- */
.story { display:flex; flex-direction:column; height:100%; }
.story .pic { aspect-ratio: 3/2; overflow:hidden; }
.story .pic img { width:100%; height:100%; object-fit:cover; transition: transform .9s var(--ease); }
.story:hover .pic img { transform: scale(1.05); }
.story .body { padding: 24px 24px 28px; display:flex; flex-direction:column; gap:10px; flex:1; }
.story .kicker { font-family: var(--mono); font-size: 10.5px; letter-spacing:.16em; text-transform:uppercase; color: var(--red); }
.story h3 { font-size: 1.5rem; line-height: 1.06; }
.story p { color: var(--on-ink-soft); font-size: 15px; margin:0; }

/* ---------- not-fragile badge ---------- */
.nf-badge {
  display:inline-flex; flex-direction:column; align-items:center; justify-content:center;
  width: 132px; height: 132px; border-radius: 999px; flex:none;
  background: var(--red); color:#fff; text-align:center; transform: rotate(-7deg);
  box-shadow: 0 24px 60px -22px rgba(255,36,24,.6);
}
.nf-badge b { font-family: var(--display); font-weight:700; font-size: 1.15rem; line-height:.95; letter-spacing:.01em; }
.nf-badge small { font-family: var(--mono); font-size: 8px; letter-spacing:.22em; margin-top:6px; text-transform:uppercase; }
/* epic Not Fragile monogram hero */
.nf-hero { align-items: center; text-align: center; padding-top: clamp(108px, 13vh, 156px); }
.nf-hero .hero-content { display:flex; flex-direction:column; align-items:center; }
.nf-hero .lead { margin-inline:auto; }
.nf-badge-xl { width: clamp(210px, 31vw, 400px); height: clamp(210px, 31vw, 400px); transform: rotate(-6deg); box-shadow: 0 40px 100px -30px rgba(255,36,24,.6); }
.nf-badge-xl b { font-size: clamp(2rem, 4.8vw, 3.6rem); }
.nf-badge-xl small { font-size: clamp(10px, 1.2vw, 14px); letter-spacing:.28em; margin-top: 16px; }

/* ---------- spec table (mono) ---------- */
.spec { border-top: 1px solid var(--hair-ink); }
.section-paper .spec { border-color: var(--hair-paper); }
.spec .row { display:grid; grid-template-columns: 1fr 1fr; gap:16px; padding: 16px 4px; border-bottom: 1px solid var(--hair-ink-2); }
.section-paper .spec .row { border-color: var(--hair-paper); }
.spec .k { font-family: var(--mono); font-size: 12px; letter-spacing:.05em; text-transform:uppercase; color: var(--on-ink-faint); }
.section-paper .spec .k { color: var(--on-paper-soft); }
.spec .v { font-size: 15px; font-weight: 500; }

/* ---------- stat band ---------- */
.stats { display:grid; grid-template-columns: repeat(4,1fr); gap: clamp(16px,2vw,28px); }
.stat .n { font-family: var(--display); font-size: clamp(2.4rem,4.5vw,3.6rem); font-weight: 700; letter-spacing:-.015em; line-height:1; }
.stat .n .u { color: var(--amber); margin-left: .14em; }
.stat .l { font-family: var(--mono); font-size: 11px; letter-spacing:.12em; text-transform:uppercase; color: var(--on-ink-faint); margin-top:12px; }
.section-paper .stat .l { color: var(--on-paper-soft); }
.section-paper .stat .n .u { color: var(--amber-deep); }

/* ---------- timeline ---------- */
.timeline { border-left: 1px solid var(--hair-ink); margin-left: 6px; }
.section-paper .timeline { border-color: var(--hair-paper); }
.tl-item { position:relative; padding: 0 0 44px 34px; }
.tl-item::before { content:""; position:absolute; left:-5px; top:6px; width:9px; height:9px; border-radius:999px; background: var(--blue-lift); box-shadow: 0 0 0 4px rgba(47,125,240,.18); }
.tl-item .yr { font-family: var(--mono); font-size: 13px; letter-spacing:.08em; color: var(--blue-lift); }
.section-paper .tl-item .yr { color: var(--blue); }
.tl-item h4 { font-size: 1.25rem; margin: 6px 0 6px; }
.tl-item p { color: var(--on-ink-soft); margin:0; font-size: 15px; }
.section-paper .tl-item p { color: var(--on-paper-soft); }
/* horizontal timeline */
.timeline-h { display:flex; gap: clamp(18px,2.2vw,36px); overflow-x:auto; padding-bottom: 10px; scrollbar-width: thin; }
.timeline-h .tl-item { flex: 0 0 clamp(186px, 20vw, 244px); padding: 26px 0 0; border-top: 1px solid var(--hair-ink); }
.section-paper .timeline-h .tl-item { border-top-color: var(--hair-paper); }
.timeline-h .tl-item::before { left: 0; top: -5px; }
.timeline-h .tl-item h4 { margin: 8px 0 8px; }

/* ---------- big quote ---------- */
.pullquote { font-family: var(--body); font-weight: 600; font-size: clamp(1.5rem,3.4vw,2.7rem); line-height: 1.18; letter-spacing:-.01em; max-width: 22ch; text-transform:none; }
.pullquote .by { display:block; font-family: var(--mono); font-size: 12px; letter-spacing:.1em; text-transform:uppercase; color: var(--on-ink-faint); margin-top: 22px; font-weight:400; }
.section-paper .pullquote .by { color: var(--on-paper-soft); }

/* ---------- CTA band ---------- */
.cta-band { text-align:center; }
.cta-band .h2 { max-width: 18ch; margin-inline:auto; }
.cta-band .row { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top: 32px; }

/* ---------- form ---------- */
.field { display:flex; flex-direction:column; gap:8px; margin-bottom: 18px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing:.12em; text-transform:uppercase; color: var(--on-ink-faint); }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 15px; color: var(--on-ink);
  background: rgba(255,255,255,.03); border: 1px solid var(--hair-ink);
  border-radius: 12px; padding: 14px 16px; width:100%;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--blue-lift); background: rgba(47,125,240,.06); }
.field textarea { min-height: 130px; resize: vertical; }

/* ---------- dealer locator chips ---------- */
.chips { display:flex; flex-wrap:wrap; gap: 10px; }
.chip { font-family: var(--mono); font-size: 12px; letter-spacing:.06em; padding: 9px 15px; border-radius: 999px; border: 1px solid var(--hair-ink); color: var(--on-ink-soft); background: rgba(255,255,255,.02); transition: all .35s var(--ease); cursor: pointer; }
.chip:hover, .chip.active { color:#fff; border-color: var(--blue-lift); background: rgba(47,125,240,.12); }

/* ---------- footer ---------- */
.footer { background: #07090d; border-top: 1px solid var(--hair-ink); padding-block: clamp(56px,7vw,90px) 40px; }
.footer-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand img { height: 22px; margin-bottom: 18px; }
.footer .blurb { color: var(--on-ink-soft); font-size: 14.5px; max-width: 36ch; }
.footer h5 { font-family: var(--mono); font-size: 11px; letter-spacing:.16em; text-transform:uppercase; color: var(--on-ink-faint); margin: 0 0 16px; font-weight:400; }
.footer ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap: 11px; }
.footer ul a { font-size: 14.5px; color: var(--on-ink-soft); transition: color .3s; }
.footer ul a:hover { color: var(--on-ink); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; gap: 16px; flex-wrap:wrap; margin-top: clamp(40px,5vw,64px); padding-top: 26px; border-top: 1px solid var(--hair-ink-2); }
.footer-bottom .small { font-family: var(--mono); font-size: 11px; letter-spacing:.04em; color: var(--on-ink-faint); }
.concept-mark { font-family: var(--mono); font-size: 11px; letter-spacing:.06em; color: var(--on-ink-faint); }
.concept-mark b { color: var(--on-ink-soft); font-weight: 500; }

/* ---------- page hero (interior) ---------- */
.page-hero { padding-top: clamp(120px, 13vw, 168px); padding-bottom: clamp(32px,4vw,52px); }
.page-hero .display { font-size: clamp(2.4rem, 6vw, 4.6rem); }
.breadcrumb { font-family: var(--mono); font-size: 11px; letter-spacing:.14em; text-transform:uppercase; color: var(--on-ink-faint); margin-bottom: 22px; }
.breadcrumb a { color: var(--on-ink-soft); } .breadcrumb a:hover { color: var(--on-ink); }

/* ---------- misc ---------- */
.divider { height:1px; background: var(--hair-ink); border:0; margin:0; }
.tags { display:flex; flex-wrap:wrap; gap:8px; }
.pill { font-family: var(--mono); font-size: 11px; letter-spacing:.1em; text-transform:uppercase; color: var(--on-ink-faint); }
.section-paper .pill { color: var(--on-paper-soft); }
.skip { position:absolute; left:-999px; top:0; z-index:200; background:#fff; color:#000; padding:12px 18px; border-radius:0 0 10px 0; }
.skip:focus { left:0; }
.muted { color: var(--on-ink-soft); }
.center { text-align:center; }
.mt-s{margin-top:14px} .mt-m{margin-top:26px} .mt-l{margin-top:44px}

/* ---------- responsive ---------- */
@media (max-width: 1000px){
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .g-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px){
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }
}
@media (max-width: 760px){
  .split { grid-template-columns: 1fr; }
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); row-gap: 30px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-meta { gap: 20px; }
  .spec .row { grid-template-columns: 1fr; gap: 4px; }
  .pullquote { max-width: none; }
}
@media (max-width: 460px){
  .footer-top { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}

/* ---------- full product catalog (data-driven, Systems page) ---------- */
.cat-nav { display:flex; flex-wrap:wrap; gap: 8px; margin-bottom: clamp(28px,3.5vw,48px); }
.cat-chip { font-family: var(--mono); font-size: 11px; letter-spacing:.08em; text-transform:uppercase; padding: 8px 15px; border-radius: 999px; border: 1px solid var(--hair-ink); color: var(--on-ink-soft); white-space:nowrap; transition: color .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease); }
.cat-chip:hover { color:#fff; border-color: var(--blue-lift); background: rgba(76,141,255,.1); }
.cat-block { padding: clamp(26px,3.4vw,46px) 0; border-top: 1px solid var(--hair-ink); scroll-margin-top: 96px; }
.cat-block:first-child { border-top: 0; padding-top: 0; }
.cat-head { max-width: 62ch; margin-bottom: clamp(18px,2.4vw,30px); }
.cat-kicker { font-family: var(--mono); font-size: 11px; letter-spacing:.18em; text-transform:uppercase; color: var(--amber); }
.cat-title { font-size: clamp(1.5rem,3vw,2.2rem); margin: 8px 0 10px; }
.cat-blurb { color: var(--on-ink-soft); font-size: 15.5px; max-width: 62ch; margin:0; }
.cat-grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 12px; }
.cat-card { display:flex; flex-direction:column; gap: 6px; padding: 18px; border-radius: 16px; border: 1px solid var(--hair-ink); background: rgba(255,255,255,.02); }
.cat-card.is-link { transition: border-color .35s var(--ease), background .35s var(--ease), transform .4s var(--ease); }
.cat-card.is-link:hover { border-color: var(--blue-lift); background: rgba(76,141,255,.06); transform: translateY(-2px); }
.cat-tag { font-family: var(--mono); font-size: 10px; letter-spacing:.1em; text-transform:uppercase; color: var(--amber); }
.cat-name { font-family: var(--display); font-weight:800; font-stretch:125%; text-transform:uppercase; letter-spacing:.004em; font-size: 1.18rem; line-height:1; }
.cat-desc { color: var(--on-ink-soft); font-size: 13.5px; line-height:1.45; }
.catalog-foot { margin-top: clamp(28px,3.5vw,48px); padding-top: 24px; border-top: 1px solid var(--hair-ink); color: var(--on-ink-soft); font-size: 14.5px; }
.catalog-foot a { color: var(--blue-lift); }

/* ---------- resource library groups + catalog cards on light ---------- */
.res-group { font-size: clamp(1.05rem,1.9vw,1.45rem); margin: clamp(28px,3.4vw,44px) 0 16px; }
.res-group:first-of-type { margin-top: 0; }
.section-paper .cat-card, .section-paper-2 .cat-card { background:#fff; border-color: var(--hair-paper); }
.section-paper .cat-name, .section-paper-2 .cat-name { color: var(--on-paper); }
.section-paper .cat-desc, .section-paper-2 .cat-desc { color: var(--on-paper-soft); }
.section-paper .cat-tag, .section-paper-2 .cat-tag { color: var(--amber-deep); }
.section-paper .cat-card.is-link:hover, .section-paper-2 .cat-card.is-link:hover { border-color: var(--blue); background:#fbfcff; }

/* ---------- products mega-dropdown (mirrors their Products taxonomy) ---------- */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-top { display: inline-flex; align-items: center; gap: 5px; }
.nav-top .caret { opacity: .65; transition: transform .4s var(--ease), opacity .3s var(--ease); }
.nav-item:hover .nav-top .caret,
.nav-item:focus-within .nav-top .caret,
.nav-item.open .nav-top .caret { transform: rotate(180deg); opacity: 1; }

.drop {
  position: absolute; top: 100%; left: 50%;
  width: min(580px, 80vw);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition: opacity .42s var(--ease), transform .42s var(--ease), visibility .42s;
  z-index: 80;
}
.drop::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; } /* hover bridge */
.nav-item:hover .drop,
.nav-item:focus-within .drop,
.nav-item.open .drop {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(14px);
}
.drop-inner {
  background: rgba(9,13,19,.94);
  backdrop-filter: blur(28px) saturate(1.4); -webkit-backdrop-filter: blur(28px) saturate(1.4);
  border: 1px solid var(--hair-ink); border-radius: 22px;
  box-shadow: 0 36px 90px -40px rgba(0,0,0,.96);
  padding: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.nav-links .drop a { padding: 0; border-radius: 14px; background: none; }
.nav-links .drop-link { display: flex; flex-direction: column; gap: 3px; padding: 11px 14px; transition: background .3s var(--ease); }
.nav-links .drop-link:hover { background: rgba(76,141,255,.09); color: inherit; }
.dl-name { font-family: var(--display); font-weight: 700; font-stretch: 125%; text-transform: uppercase; font-size: .9rem; letter-spacing: .012em; color: var(--on-ink); line-height: 1; }
.dl-sub { font-size: 12px; color: var(--on-ink-soft); font-weight: 400; }
.nav-links .drop-all { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 6px; padding: 13px 14px; border-top: 1px solid var(--hair-ink-2); color: var(--blue-lift); font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; }
.nav-links .drop-all:hover { background: rgba(76,141,255,.09); }

/* ---------- homepage news / field reports (mirrors their "Lectrosonics News") ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.news-card { display: flex; flex-direction: column; }
.news-card .pic { aspect-ratio: 16 / 11; overflow: hidden; border-radius: 16px 16px 0 0; }
.news-card .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.news-card:hover .pic img { transform: scale(1.045); }
.news-card .body { padding: 20px 20px 22px; }
.news-card .kicker { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); }
.news-card h3 { font-family: var(--display); font-weight: 700; font-stretch: 110%; text-transform: none; font-size: clamp(1.12rem, 1.7vw, 1.32rem); line-height: 1.12; margin: 12px 0 10px; letter-spacing: -.01em; }
.news-card p { color: var(--on-ink-soft); font-size: 14.5px; line-height: 1.5; margin: 0; }
.news-card .more { margin-top: 16px; }
@media (max-width: 860px){ .news-grid { grid-template-columns: 1fr; } }

