/* =========================================================
   IronGear Guitar Pickups — styles.css
   Light modernisation. Keeps the grey/industrial brand feel,
   adds responsive layout, semantic structure, modern type.
   ========================================================= */

:root {
  /* Brand palette — pulled from the original site's grey/steel feel */
  --ink:        #1a1a1a;
  --ink-2:      #333;
  --muted:      #6b6b6b;
  --line:       #e3e3e3;
  --bg:         #ffffff;
  --bg-alt:     #f4f4f4;
  --bg-dark:    #1f1f1f;
  --steel:      #5a5a5a;
  --accent:     #14b8a6;   /* Teal — site-wide accent for hovers, focus, dividers */
  --accent-ink: #ffffff;

  /* Type */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  --font-display: "Impact", "Haettenschweiler", "Arial Narrow Bold",
                  var(--font-sans);

  /* Layout */
  --maxw: 1180px;
  --radius: 6px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 6px 18px rgba(0,0,0,.08);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.3,1);
}

@media (prefers-color-scheme: dark) {
  /* Optional polite dark mode — keeps brand greys, easy on the eyes */
  :root {
    --ink:    #f1f1f1;
    --ink-2:  #d6d6d6;
    --muted:  #a9a9a9;
    --line:   #2a2a2a;
    --bg:     #141414;
    --bg-alt: #1c1c1c;
    --bg-dark:#0e0e0e;
    --steel:  #b8b8b8;
  }
}

/* ---------- Reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: clamp(15px, 0.95vw + 12px, 17px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--accent); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

h1,h2,h3 { font-family: var(--font-display); letter-spacing: .01em; line-height: 1.1; color: var(--ink); margin: 0 0 .5em; }
h1 { font-size: clamp(2.2rem, 1.2rem + 3vw, 4rem); text-transform: uppercase; }
h2 { font-size: clamp(1.6rem, 1rem + 1.6vw, 2.4rem); text-transform: uppercase; }
h3 { font-size: 1.15rem; text-transform: uppercase; letter-spacing: .04em; }
p  { margin: 0 0 1em; }

.container { width: min(var(--maxw), 92%); margin-inline: auto; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  left: 12px; top: 12px; width: auto; height: auto;
  padding: .6em 1em; background: var(--ink); color: #fff; z-index: 1000;
  border-radius: var(--radius);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #303030;   /* Matches the IronGear logo's background grey */
  color: #fff;
  border-bottom: 1px solid #1f1f1f;
}
@media (prefers-color-scheme: dark) {
  .site-header { background: #303030; }
}

/* Brand row (logo + tagline) sits on top; nav wraps below it */
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem; padding: 1rem 0 0;
}
.brand {
  display: flex; align-items: flex-end; gap: 1rem;
  text-decoration: none; color: #fff;
}
.brand img {
  height: 76px; width: auto;
  /* Banner background now matches the logo's #303030 grey, so the
     rectangular logo background blends in naturally — no blend mode needed. */
}
@media (max-width: 600px) {
  .brand img { height: 56px; }
}
.brand__tagline {
  /* Same sans-serif stack used by the menu items below */
  font-family: var(--font-sans);
  letter-spacing: .04em; font-size: 1.1rem; color: #fff;
  font-weight: 700;
  /* Drops the baseline so the text visually lines up with the bottom of the logo */
  line-height: 1; padding-bottom: 4px;
}
@media (max-width: 720px) { .brand__tagline { display: none; } }

/* Nav takes the full width of a second row */
.primary-nav {
  flex: 1 0 100%;
  border-top: 1px solid var(--accent);   /* teal divider between banner & menu */
  margin-top: .75rem;
}
.primary-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: .25rem; flex-wrap: wrap;
  justify-content: center;
}
.primary-nav a {
  display: block; padding: .85rem 1rem;
  text-decoration: none; text-transform: uppercase;
  font-size: .82rem; letter-spacing: .1em; color: #d8d8d8;
  border-radius: 0;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: var(--accent);
  color: var(--accent-ink);
}
.primary-nav a[aria-current="page"] {
  background: var(--accent);
  color: var(--accent-ink);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: transparent; border: 1px solid #333;
  width: 44px; height: 44px; border-radius: var(--radius); cursor: pointer;
  padding: 10px; flex-direction: column; justify-content: space-between;
}
.nav-toggle span {
  display: block; height: 2px; background: #fff; border-radius: 2px;
}
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-header__inner { padding-bottom: 1rem; }
  .primary-nav {
    flex-basis: 100%;
    margin-top: 0;
    border-top: none;
    max-height: 0; overflow: hidden;
    transition: max-height .25s var(--ease);
  }
  .primary-nav.is-open {
    max-height: 100vh;
    border-top: 1px solid var(--accent);
    margin-top: .75rem;
  }
  .primary-nav ul { flex-direction: column; padding: .5rem 4%; }
  .primary-nav a { padding: .9rem .75rem; text-align: left; }
}

/* ---------- Hero ---------- */
.hero {
  /* Top padding halved so the "British pickup engineering since 2007" eyebrow
     sits closer to the menu above. Bottom padding unchanged. */
  padding: clamp(1.5rem, 3vw, 3rem) 0 clamp(2rem, 4vw, 4rem);
  background:
    linear-gradient(180deg, transparent, var(--bg-alt));
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .18em;
  font-size: .8rem; color: var(--muted); margin: 0 0 .5rem;
}
.hero h1 span { color: var(--steel); }
.hero__lede { max-width: 60ch; color: var(--ink-2); font-size: 1.1rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }

.btn {
  display: inline-block; padding: .85em 1.4em; border-radius: var(--radius);
  text-decoration: none; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; font-size: .85rem;
  transition: transform .15s var(--ease), background .15s var(--ease), color .15s var(--ease);
}
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--accent); color: var(--accent-ink); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--ghost:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* ---------- Feedback banner (animated GIF) ---------- */
.feedback-banner {
  padding: .25rem 0;
  text-align: center;
}
.feedback-banner a {
  display: inline-block;
  line-height: 0;     /* prevents inline-baseline gap below the image */
  transition: opacity .15s var(--ease);
}
.feedback-banner a:hover { opacity: .9; }
.feedback-banner img {
  display: block;
  max-width: 100%;
  height: auto;
}
/* Pull the next section's top padding in so the banner sits snug */
.feedback-banner + .categories { padding-top: 1rem; }

/* ---------- Card grid ---------- */
.categories { padding: clamp(2.5rem, 5vw, 5rem) 0; }
.categories h2 { margin-bottom: 1.5rem; }

.card-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--steel); }
.card a {
  display: block; text-decoration: none; color: inherit; padding: 0 0 1.1rem;
}
.card img {
  /* Image dictates its own height (no forced crop) — panel grows to fit it. */
  width: 100%; height: auto; display: block;
  background: var(--bg-alt);
}
.card h3 { margin: 1rem 1rem .35rem; }
.card p  { margin: 0 1rem; color: var(--muted); font-size: .95rem; }

/* ---------- Promise / about ---------- */
.promise { background: var(--bg-alt); padding: clamp(2.5rem, 5vw, 5rem) 0; border-block: 1px solid var(--line); }
.promise__inner {
  display: grid; gap: 2rem;
  grid-template-columns: 1.5fr 1fr; align-items: start;
}
@media (max-width: 800px) { .promise__inner { grid-template-columns: 1fr; } }

.milestone {
  background: var(--ink); color: #fff; padding: 1.5rem; border-radius: var(--radius);
  position: relative; overflow: hidden;
}
.milestone::before {
  /* subtle steel sheen */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.06), transparent 40%);
  pointer-events: none;
}
.milestone__number {
  font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 4rem);
  margin: 0; line-height: 1;
}
.milestone__label { text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; opacity: .85; margin: .5rem 0 1rem; }
.milestone__note { font-size: .95rem; opacity: .85; margin: 0; }

.link-arrow { font-weight: 600; text-decoration: none; border-bottom: 2px solid var(--ink); padding-bottom: 2px; }
.link-arrow:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Facebook feed ---------- */
.fb-section {
  padding: clamp(2.5rem, 5vw, 5rem) 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.fb-section h2 { margin-bottom: .5rem; }
.fb-section__lede {
  max-width: 60ch; margin: 0 auto 1.5rem;
  color: var(--muted);
}
.fb-section__embed {
  display: flex; justify-content: center;
  /* Frames the embed so it doesn't look like raw 3rd-party content */
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  margin: 0 auto;
  max-width: 540px;
  box-shadow: var(--shadow-sm);
}
.fb-section__embed .fb-page { width: 100% !important; }
.fb-section__embed iframe { width: 100% !important; }
@media (max-width: 540px) {
  .fb-section__embed { padding: .5rem; }
}

/* ---------- Quick links ---------- */
.quicklinks { padding: clamp(2.5rem, 5vw, 5rem) 0; }
.quicklinks h2 { margin-bottom: 1.5rem; }
.quicklinks__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: .75rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.quicklinks__grid a {
  display: block; padding: 1rem 1.1rem; border: 1px solid var(--line);
  border-radius: var(--radius); text-decoration: none;
  transition: border-color .15s var(--ease), background .15s var(--ease);
}
.quicklinks__grid a:hover { border-color: var(--ink); background: var(--bg-alt); }
.quicklinks__grid strong { display: block; font-size: 1.05rem; }
.quicklinks__grid span   { display: block; color: var(--muted); font-size: .9rem; margin-top: .15rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark); color: #d8d8d8;
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
}
.site-footer a { color: #d8d8d8; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer__grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1.4fr 1.2fr 1.2fr 1fr;
}
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .site-footer__grid { grid-template-columns: 1fr; } }

.footer__title  { color: #fff; font-size: 1.4rem; margin: 0 0 .5rem; }
.footer__heading { color: #fff; font-size: .9rem; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 .75rem; }
.footer__blurb  { color: #b6b6b6; max-width: 30ch; }

.site-footer ul { list-style: none; margin: 0; padding: 0; columns: 1; }
.site-footer ul li { padding: .15rem 0; font-size: .95rem; }

.site-footer__bottom {
  margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid #2a2a2a;
  font-size: .8rem; color: #9c9c9c;
}
.site-footer__bottom .legal { margin-top: .25rem; font-size: .75rem; }

/* =========================================================
   Product pages (Alchemist 90 etc.)
   ========================================================= */

/* Breadcrumb */
.breadcrumb { padding: 1rem 0 0; font-size: .85rem; color: var(--muted); }
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .35rem; }
.breadcrumb li + li::before { content: "›"; margin-right: .35rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* Product hero */
.product-hero {
  padding: .5rem 0 0;            /* tight gap to the breadcrumb above */
  /* Reserve room for the thumbnails that sit absolutely below the hero image */
  padding-bottom: 6rem;
}
@media (max-width: 820px) {
  .product-hero { padding-bottom: clamp(2rem, 4vw, 3rem); }
}
/* Spacing when a product-section follows directly after the hero */
.product-hero + .product-section { padding-top: 1.5rem; }
.product-hero__grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;   /* Both columns share the same height */
}
@media (max-width: 820px) { .product-hero__grid { grid-template-columns: 1fr; } }
.product-hero__media {
  /* Anchor for the absolutely-positioned thumbnail row below */
  position: relative;
}
.product-hero__media #hero-img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  background: var(--bg-alt);
}

/* Thumbnail row — pulled out of column height so price box can align to image bottom */
.product-thumbs {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: nowrap; gap: .5rem;     /* nowrap: all 6 stay on one row */
  position: absolute; top: calc(100% + 1rem); left: 0; right: 0;
}
@media (max-width: 820px) {
  /* On stacked mobile layouts, return to normal flow and allow wrap */
  .product-thumbs { position: static; margin-top: 1rem; flex-wrap: wrap; }
}
.thumb {
  display: flex; flex-direction: column; align-items: center; gap: .25rem;
  padding: .25rem;
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .15s var(--ease), transform .15s var(--ease);
  font: inherit; color: inherit;
  flex: 1 1 0;                       /* share the row evenly between 6 thumbs */
  min-width: 0;
}
.thumb:hover { border-color: var(--steel); transform: translateY(-1px); }
.thumb.is-active { border-color: var(--accent); }
.thumb img {
  width: 100%; max-width: 72px; height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover; border-radius: 4px;
  display: block; background: var(--bg-alt);
}
.thumb__label {
  font-size: .65rem; letter-spacing: .04em;
  text-transform: uppercase; color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}
.thumb.is-active .thumb__label { color: var(--ink); }
.product-hero__body {
  margin-top: -.25rem;        /* nudge the eyebrow to the very top edge of the image */
  display: flex; flex-direction: column;
}
.product-hero__body .eyebrow { margin-top: 0; }
.product-hero__body .product-buy {
  margin-top: auto;   /* pin to bottom of column (= image bottom, thumbs are absolute) */
}
.product-hero__body h1 {
  font-size: clamp(2.2rem, 1.5rem + 2vw, 3.4rem);
  margin: .3rem 0 .75rem;
}
.product-hero__lede { font-size: 1.1rem; color: var(--ink-2); max-width: 50ch; }

/* Title row: H1 on the left, splash GIF pinned to the right at H1 height */
.product-hero__title-row {
  display: flex;
  align-items: flex-end;           /* aligns image and H1 baselines to the line below */
  justify-content: space-between;
  gap: 1rem;
  margin: .3rem 0 .75rem;
  padding-bottom: 0;
  border-bottom: 1px solid var(--line);   /* line under title + splash */
}
.product-hero__title-row h1 { margin: 0; }
.product-hero__splash {
  display: block;
  /* 40% of the native size — 228×169 → 91×68 */
  width: 91px;
  height: auto;
  align-self: flex-end;            /* sit flush on the underline */
  margin-bottom: 0;
  object-fit: contain; object-position: right bottom;
}

/* Reviews heading row — heading on the left, animated ticker on the right */
.reviews-heading-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: 1rem;
}
.reviews-heading-row h2 { margin: 0; }
.reviews-ticker {
  display: block;
  flex: 0 1 380px;       /* allow it to shrink, cap at ~380px wide */
  height: auto;
  background: #fff;
  padding: 1rem;
  box-sizing: border-box;
  border-radius: var(--radius);
  /* Bigger, softer drop shadow so the ticker visibly lifts off the section */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
@media (max-width: 640px) {
  .reviews-ticker { flex-basis: 100%; }   /* drop below the heading on small screens */
}

/* Buy block — compact, fits the price + button stacked */
.product-buy {
  margin-top: 1rem; padding: 1.25rem 1.25rem 1rem;
  border: 1px solid var(--line); border-left: 4px solid var(--accent);
  border-radius: var(--radius); background: var(--bg);
  box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 22rem;        /* tighter than before — fits price + CTA snugly */
}
.product-buy__price  { margin: 0 0 .85rem; line-height: 1; }
.product-buy__from   { color: var(--muted); font-size: .85rem; margin-right: .35rem; }
.product-buy__amount { font-family: var(--font-display); font-size: 2rem; color: var(--ink); }
.product-buy__vat    { color: var(--muted); font-size: .85rem; margin-left: .35rem; }
.product-buy__note   { margin: .75rem 0 0; font-size: .8rem; color: var(--muted); }

.btn--lg { padding: 1em 1.6em; font-size: .75rem; }

/* Generic product section */
.product-section { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.product-section--alt { background: var(--bg-alt); border-block: 1px solid var(--line); }
.product-section h2 { margin-bottom: 1rem; }
.product-section__lede { color: var(--muted); margin: 0 0 1.5rem; max-width: 60ch; }

/* Audio grid */
.audio-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 0 0 1.25rem;
}
.audio-card {
  margin: 0; padding: 1rem 1.1rem;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.audio-card figcaption {
  font-family: var(--font-sans); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  font-size: .8rem; color: var(--ink); margin-bottom: .5rem;
}
.audio-card audio { width: 100%; display: block; }
.product-section__youtube { font-size: .95rem; color: var(--ink-2); margin: 0; }
.product-section__youtube a { color: var(--ink); font-weight: 600; }
.product-section__youtube a:hover { color: var(--accent); }

/* Specs row — table on the left, tone graph pinned to the right, tops aligned */
.specs-row {
  display: flex;
  align-items: flex-start;            /* top of image aligns with top of table */
  justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.specs-row .spec-table { flex: 1 1 auto; }
.tonegraph {
  margin: 0;
  flex: 0 0 auto;
  display: flex; flex-direction: column;
  align-items: center;                /* centre the title below the image */
}
.tonegraph__title {
  /* matches the .spec-table th row labels (e.g. "FORMAT") */
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  margin: .5rem 0 0;
  line-height: 1.2;
  text-align: center;
}
.specs-tonegraph {
  display: block;
  width: auto; height: auto;
  max-width: 100%;
}

/* Audio group sub-heading (e.g. "Standard wind" / "Overwound") */
.audio-group__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1rem;
  color: var(--ink);
  margin: 1.25rem 0 .75rem;
}
.audio-group__title:first-of-type { margin-top: 0; }

/* Footnote / caveat under spec table */
.spec-note {
  margin-top: 1.5rem;
  font-size: .9rem;
  color: var(--ink-2);
  max-width: 60ch;
}

/* Spec table */
.spec-table {
  width: 100%; border-collapse: collapse; max-width: 720px;
  font-size: .95rem;
}
.spec-table th, .spec-table td {
  text-align: left; padding: .65rem .9rem;
  border-bottom: 1px solid var(--line); vertical-align: top;
}
.spec-table th {
  width: 38%; color: var(--muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em; font-size: .78rem;
}
.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: 0; }

/* Reviews */
.rating-summary {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-left: .75rem; padding: .15rem .55rem;
  background: var(--ink); color: #fff; border-radius: 999px;
  font-size: .8rem; font-weight: 600;
}
.rating-summary__stars { color: var(--accent); letter-spacing: 1px; }

.reviews {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.review {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.1rem 1.25rem 1rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.review blockquote {
  margin: 0 0 .75rem; padding: 0;
  color: var(--ink-2); font-size: .95rem; line-height: 1.55;
  position: relative;
}
.review blockquote::before {
  content: "\201C"; font-family: var(--font-display);
  font-size: 2.4rem; color: var(--accent);
  line-height: 1; display: block; margin-bottom: -.5rem;
}
.review__author {
  margin: auto 0 0; font-size: .85rem; color: var(--muted);
  letter-spacing: .04em; font-weight: 600;
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .nav-toggle, .hero__cta { display: none; }
  a { color: #000; text-decoration: underline; }
}
