/* ==========================================================================
   Timberwolf Spinners — site.css
   Design direction: "cold water + brass blade"
   Palette pulled from the product itself: nickel and brass blades, hand-tied
   pheasant feather, and the deep spruce-green of a Central PA trout creek.
   ========================================================================== */

/* --- Tokens --------------------------------------------------------------- */
:root {
  --spruce-deep: #0b1f1c;
  --spruce: #14322d;
  --spruce-mid: #1e463f;
  --creek: #2f6b5f;
  --creek-light: #4f9285;
  --brass: #b5872f;
  --brass-light: #d9ab52;
  --nickel: #c9cdcb;
  --pheasant: #8a5a2b;
  --frost: #f1f3f1;
  --frost-deep: #e3e8e5;
  --ink: #16201e;
  --ink-soft: #48544f;
  --white: #ffffff;

  --font-display: "Big Shoulders Display", "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --wrap: 1120px;
  --wrap-narrow: 760px;
  --gap: 1.5rem;
  --radius: 3px;
  --shadow: 0 1px 2px rgba(11, 31, 28, .08), 0 8px 24px -12px rgba(11, 31, 28, .22);
  --shadow-lift: 0 2px 4px rgba(11, 31, 28, .1), 0 18px 40px -18px rgba(11, 31, 28, .32);
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--frost);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--creek); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--spruce); }
:focus-visible { outline: 3px solid var(--brass); outline-offset: 2px; border-radius: 2px; }
table { border-collapse: collapse; }

/* --- Type --------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: .005em;
  text-transform: uppercase;
  margin: 0 0 .5em;
  color: var(--spruce);
}
h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; letter-spacing: .04em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 .9rem;
  display: block;
}
.lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 58ch; }
.muted { color: var(--ink-soft); }
.fine { font-size: .9rem; color: var(--ink-soft); }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* --- Layout ------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 1.75rem; }
@media (max-width: 600px) { .wrap { padding: 0 1.35rem; } }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--tight { padding: clamp(2rem, 4vw, 3rem) 0; }
.section--dark { background: var(--spruce); color: var(--frost); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .lede, .section--dark .muted { color: rgba(241, 243, 241, .78); }
.section--dark a { color: var(--brass-light); }
.section--sand { background: var(--frost-deep); }
.rule { border: 0; border-top: 1px solid var(--frost-deep); margin: 2.5rem 0; }

/* --- Skip link ---------------------------------------------------------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brass); color: var(--spruce-deep);
  padding: .7rem 1.1rem; font-weight: 600;
}
.skip:focus { left: .5rem; top: .5rem; }

/* --- Header ------------------------------------------------------------- */
.masthead {
  background: var(--spruce-deep);
  border-bottom: 3px solid var(--brass);
  position: sticky; top: 0; z-index: 100;
}
.masthead__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 72px;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand__mark { width: 34px; height: 34px; flex: 0 0 auto; }
/* The wolf head is the real mark — line art, so it needs a light field to read
   against the dark masthead. */
.brand__wolf {
  width: 40px; height: 46px; flex: 0 0 auto; object-fit: contain;
  background: var(--frost); border-radius: 2px; padding: 2px;
}
.brand__name {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: 1.5rem; line-height: 1; color: var(--white); letter-spacing: .01em;
}
.brand__tag {
  display: block; font-family: var(--font-mono); font-size: .6rem; font-weight: 500;
  letter-spacing: .17em; color: var(--brass-light); text-transform: uppercase;
  margin-top: .25rem;
}

.nav-toggle {
  display: none; background: none; border: 1px solid rgba(241,243,241,.35);
  color: var(--frost); font-family: var(--font-mono); font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; padding: .6rem .8rem;
  border-radius: var(--radius); cursor: pointer;
}
.nav { display: flex; align-items: center; }
.nav__list { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: block; padding: .6rem .7rem; color: rgba(241,243,241,.9);
  font-family: var(--font-display); font-size: 1.06rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .03em; text-decoration: none;
  border-bottom: 2px solid transparent;
}
.nav__link:hover { color: var(--white); border-bottom-color: var(--brass); }
.nav__link[aria-current="page"] { color: var(--brass-light); border-bottom-color: var(--brass); }

/* dropdown */
.nav__item--has-sub { position: relative; }
.nav__sub {
  position: absolute; top: 100%; left: 0; min-width: 224px;
  background: var(--white); border: 1px solid var(--frost-deep);
  border-top: 3px solid var(--brass); box-shadow: var(--shadow-lift);
  list-style: none; margin: 0; padding: .35rem; display: none; z-index: 110;
}
.nav__item--has-sub:hover .nav__sub,
.nav__item--has-sub:focus-within .nav__sub,
.nav__sub.is-open { display: block; }
.nav__sub a {
  display: block; padding: .5rem .7rem; color: var(--ink); text-decoration: none;
  font-size: .97rem; border-radius: 2px;
}
.nav__sub a:hover { background: var(--frost-deep); color: var(--spruce); }
.nav__sub a[aria-current="page"] { color: var(--brass); font-weight: 600; }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--spruce-deep); border-bottom: 3px solid var(--brass);
    padding: .5rem 1.25rem 1.25rem; max-height: 78vh; overflow-y: auto;
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { padding: .8rem .2rem; border-bottom: 1px solid rgba(241,243,241,.12); }
  .nav__link:hover { border-bottom-color: rgba(241,243,241,.12); }
  .nav__sub {
    position: static; display: block; background: transparent; border: 0;
    box-shadow: none; padding: 0 0 .5rem .9rem;
    border-left: 2px solid var(--brass);
    margin: .25rem 0 .5rem;
  }
  .nav__sub a { color: rgba(241,243,241,.82); padding: .5rem .4rem; }
  .nav__sub a:hover { background: rgba(241,243,241,.08); color: var(--white); }
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-size: 1.12rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .045em; text-decoration: none;
  padding: .72rem 1.35rem; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: transform .12s ease, background-color .12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--brass); color: var(--spruce-deep); }
.btn--primary:hover { background: var(--brass-light); color: var(--spruce-deep); }
.btn--ghost { border-color: rgba(241,243,241,.5); color: var(--frost); }
.btn--ghost:hover { border-color: var(--brass); color: var(--white); }
.btn--dark { background: var(--spruce); color: var(--frost); }
.btn--dark:hover { background: var(--spruce-mid); color: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }

/* --- Hero --------------------------------------------------------------- */
.hero {
  background:
    radial-gradient(120% 90% at 82% 12%, rgba(79,146,133,.30), transparent 60%),
    linear-gradient(178deg, var(--spruce) 0%, var(--spruce-deep) 100%);
  color: var(--frost);
  position: relative; overflow: hidden;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}
.hero__current {
  position: absolute; inset: 0; opacity: .16; pointer-events: none;
  background: repeating-linear-gradient(-12deg,
    transparent 0 26px, rgba(201,205,203,.5) 26px 27px, transparent 27px 64px);
  animation: drift 26s linear infinite;
}
@keyframes drift { from { transform: translateX(0); } to { transform: translateX(-64px); } }

.hero__grid {
  position: relative; display: grid; gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center;
}
@media (max-width: 860px) { .hero__grid { grid-template-columns: 1fr; } }
.hero h1 { color: var(--white); margin-bottom: .35em; }
.hero h1 em {
  font-style: normal; display: block; color: var(--brass-light);
}
.hero__lede { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: rgba(241,243,241,.86); max-width: 46ch; }
.hero__figure { position: relative; }
.hero__caption {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(217,171,82,.9); text-align: center;
  margin-top: 1rem;
}

.hero__spinner { display: block; width: 100%; height: auto; max-width: 560px; margin: 0 auto; overflow: visible; }

/* the spinner illustration: the blade actually turns */
.blade-spin { transform-origin: center; animation: blade 2.6s linear infinite; }
.blade-face { animation: face 2.6s linear infinite; }
@keyframes blade {
  0%   { transform: scaleX(1); }
  25%  { transform: scaleX(.08); }
  50%  { transform: scaleX(1); }
  75%  { transform: scaleX(.08); }
  100% { transform: scaleX(1); }
}
@keyframes face {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: .45; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__current, .blade-spin, .blade-face { animation: none; }
  .blade-spin { transform: scaleX(.92); }
  .btn:hover { transform: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* --- Species strip ------------------------------------------------------ */
.species {
  background: var(--spruce-deep); border-top: 1px solid rgba(217,171,82,.28);
  padding: 1.15rem 0;
}
.species__inner { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.4rem; }
.species__label {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brass); margin-right: .5rem;
}
.species__list { display: flex; flex-wrap: wrap; gap: .4rem .55rem; list-style: none; margin: 0; padding: 0; }
.species__list li {
  font-family: var(--font-display); font-size: 1rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .04em; color: rgba(241,243,241,.86);
}
.species__list li + li::before { content: "·"; color: var(--brass); margin-right: .55rem; }

/* --- Page head (interior pages) ----------------------------------------- */
.pagehead {
  background: linear-gradient(178deg, var(--spruce) 0%, var(--spruce-deep) 100%);
  color: var(--frost); padding: clamp(2.2rem, 5vw, 3.4rem) 0 clamp(1.8rem, 4vw, 2.6rem);
  border-bottom: 3px solid var(--brass);
}
.pagehead h1 { color: var(--white); font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
.pagehead .lede { color: rgba(241,243,241,.85); }
.crumbs {
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .08em;
  text-transform: uppercase; margin: 0 0 1rem; color: rgba(241,243,241,.6);
}
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; margin: 0; padding: 0; }
.crumbs li + li::before { content: "/"; color: var(--brass); margin-right: .45rem; }
.crumbs a { color: rgba(241,243,241,.8); text-decoration: none; }
.crumbs a:hover { color: var(--brass-light); text-decoration: underline; }

/* --- Cards / grids ------------------------------------------------------ */
.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

.card {
  background: var(--white); border: 1px solid var(--frost-deep);
  border-top: 3px solid var(--creek); border-radius: var(--radius);
  padding: 1.7rem; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.card--link { text-decoration: none; color: inherit; transition: box-shadow .15s ease, transform .15s ease; }
.card--link:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); border-top-color: var(--brass); }
.card h3 { margin-bottom: .4rem; }
.card p { font-size: .99rem; color: var(--ink-soft); }
.card__more {
  margin-top: auto; padding-top: .9rem; font-family: var(--font-mono);
  font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brass);
}
.card__media { margin: -1.7rem -1.7rem 1.3rem; border-bottom: 1px solid var(--frost-deep); background: var(--frost-deep); }
/* Lures are long and thin — cover-cropping cuts the hook or the blade off, so
   contain them on a white field like a catalog plate. */
.card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: var(--white); }

/* --- Figures & galleries ------------------------------------------------ */
.figure {
  background: var(--white); border: 1px solid var(--frost-deep);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  margin: 0;
}
.figure img { width: 100%; background: var(--frost-deep); }
.figure figcaption {
  padding: .85rem 1.1rem; font-family: var(--font-mono); font-size: .78rem;
  letter-spacing: .04em; color: var(--ink-soft); border-top: 1px solid var(--frost-deep);
}
.gallery { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.gallery .figure img { aspect-ratio: 4 / 3; object-fit: contain; background: var(--white); }
/* Long tails and hooks photograph vertically. */
.gallery--tall { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
.gallery--tall .figure img { aspect-ratio: 3 / 4; object-fit: contain; background: var(--white); }
.gallery--tall figcaption { font-size: .72rem; padding: .5rem .6rem; }

/* placeholder shown until real photos are dropped in */
.ph {
  display: grid; place-items: center; aspect-ratio: 4 / 3; width: 100%;
  background:
    repeating-linear-gradient(45deg, var(--frost-deep) 0 10px, #dbe1de 10px 20px);
  color: var(--ink-soft); font-family: var(--font-mono); font-size: .74rem;
  letter-spacing: .1em; text-transform: uppercase; text-align: center; padding: 1rem;
}
img.is-missing { display: none; }

/* --- Spec table (reads like a parts catalog) ---------------------------- */
.spec { background: var(--white); border: 1px solid var(--frost-deep); border-top: 3px solid var(--brass); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.spec__title {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; color: var(--spruce);
  padding: 1.25rem 1.5rem .85rem; margin: 0;
}
.spec table { width: 100%; font-size: .98rem; }
.spec caption { text-align: left; padding: 0 1.5rem .9rem; color: var(--ink-soft); font-size: .92rem; }
.spec th, .spec td { padding: .85rem 1.5rem; text-align: left; border-top: 1px solid var(--frost-deep); vertical-align: top; }
.spec thead th {
  font-family: var(--font-mono); font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft);
  background: var(--frost); border-top: 0;
}
.spec tbody th { font-family: var(--font-mono); font-weight: 600; color: var(--spruce); }
.spec td.price { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-weight: 600; color: var(--spruce); white-space: nowrap; }
.spec tbody tr:hover { background: var(--frost); }
.spec__note { padding: 1.1rem 1.5rem; border-top: 1px solid var(--frost-deep); background: var(--frost); font-size: .88rem; color: var(--ink-soft); }
@media (max-width: 560px) {
  .spec th, .spec td { padding: .7rem .6rem; font-size: .86rem; }
  .spec tbody th { font-size: .78rem; letter-spacing: -.01em; }
  .spec thead th { font-size: .64rem; letter-spacing: .06em; }
  .spec caption, .spec__note, .spec__title { padding-left: 1rem; padding-right: 1rem; }
}

/* --- Feature list ------------------------------------------------------- */
.checks { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.checks li { position: relative; padding-left: 1.9rem; margin-bottom: .6rem; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: .85rem; height: .85rem; border-radius: 50%;
  background: var(--brass); box-shadow: inset 0 0 0 3px var(--frost);
}
.section--dark .checks li::before { box-shadow: inset 0 0 0 3px var(--spruce); }

/* --- Order strip -------------------------------------------------------- */
.order-strip { background: var(--brass); color: var(--spruce-deep); padding: clamp(2rem,4vw,2.75rem) 0; }
.order-strip__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem; }
.order-strip h2 { color: var(--spruce-deep); margin: 0 0 .2rem; }
.order-strip p { margin: 0; font-weight: 600; }
.order-strip .btn--dark { background: var(--spruce-deep); }

/* --- Contact block ----------------------------------------------------- */
.contact-card {
  background: var(--white); border: 1px solid var(--frost-deep);
  border-left: 4px solid var(--creek); border-radius: var(--radius);
  padding: 1.6rem 1.75rem; box-shadow: var(--shadow);
}
.contact-card dl { margin: 0; display: grid; gap: .9rem; }
.contact-card dt {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--brass); margin-bottom: .15rem;
}
.contact-card dd { margin: 0; font-size: 1.05rem; }
.contact-card a { font-weight: 600; }
.big-tel { font-family: var(--font-display); font-size: clamp(1.7rem,4vw,2.3rem); font-weight: 800; letter-spacing: .01em; text-decoration: none; color: var(--spruce); display: inline-block; }
.big-tel:hover { color: var(--brass); }

/* --- Quotes (Just for fun) --------------------------------------------- */
.quotes { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.quote {
  background: var(--white); border: 1px solid var(--frost-deep);
  border-left: 4px solid var(--brass); border-radius: var(--radius);
  padding: 1.35rem 1.6rem; box-shadow: var(--shadow);
}
.quote__who {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; color: var(--spruce);
  display: block; margin-bottom: .2rem;
}
.quote p { margin: 0; font-size: 1.02rem; }

/* --- Video links ------------------------------------------------------- */
.vid-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
.vid-list a {
  display: flex; align-items: baseline; gap: .7rem; text-decoration: none;
  background: rgba(241,243,241,.06); border: 1px solid rgba(217,171,82,.3);
  border-radius: var(--radius); padding: .9rem 1.1rem; color: var(--frost);
}
.vid-list a:hover { background: rgba(217,171,82,.14); border-color: var(--brass); }
.vid-list .tag { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brass-light); flex: 0 0 auto; }

/* --- Steps (tips) ------------------------------------------------------ */
.steps { counter-reset: step; list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; }
.steps > li {
  counter-increment: step; position: relative; padding-left: 3.6rem;
}
.steps > li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: -.1em;
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--brass); line-height: 1;
}
.steps h3 { margin-bottom: .3rem; }

/* --- Footer ----------------------------------------------------------- */
.footer { background: var(--spruce-deep); color: rgba(241,243,241,.78); padding: clamp(2.5rem,5vw,3.5rem) 0 1.5rem; border-top: 3px solid var(--brass); }
.footer h4 { color: var(--brass); font-family: var(--font-mono); font-size: .72rem; letter-spacing: .15em; font-weight: 600; margin-bottom: .9rem; }
.footer a { color: rgba(241,243,241,.86); text-decoration: none; }
.footer a:hover { color: var(--brass-light); text-decoration: underline; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; font-size: .97rem; }
.footer address { font-style: normal; font-size: .97rem; line-height: 1.7; }
.footer__base {
  margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(241,243,241,.14);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: .85rem; color: rgba(241,243,241,.55);
}
.footer__base p { margin: 0; }

/* --- Reveal on scroll -------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* --- Print ------------------------------------------------------------- */
@media print {
  .masthead, .footer, .order-strip, .hero__current, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .hero, .pagehead, .section--dark { background: #fff !important; color: #000 !important; }
  .hero h1, .pagehead h1 { color: #000 !important; }
  a { color: #000; text-decoration: underline; }
}

/* --- Slideshow ---------------------------------------------------------- */
.slideshow {
  position: relative; background: var(--white);
  border: 1px solid var(--frost-deep); border-top: 3px solid var(--brass);
  border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
/* Every slide sits in the same grid cell, so they overlap without any
   position juggling and the container takes the height of the tallest. */
.slides { list-style: none; margin: 0; padding: 0; display: grid; }
.slide {
  grid-area: 1 / 1; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .5s ease;
}
.slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.slide img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: var(--white);
}
/* the placeholder keeps its own hatched background, it just needs to match height */
.slide .ph { width: 100%; aspect-ratio: 4 / 3; }
.slide__cap {
  display: block; padding: .95rem 1.25rem; font-family: var(--font-mono);
  font-size: .78rem; letter-spacing: .04em; color: var(--ink-soft);
  border-top: 1px solid var(--frost-deep); background: var(--frost);
}
.slideshow__bar {
  display: flex; align-items: center; gap: .5rem;
  padding: .55rem .7rem; border-top: 1px solid var(--frost-deep);
}
.slideshow__btn {
  background: var(--frost); border: 1px solid var(--frost-deep); color: var(--spruce);
  font: 600 1rem/1 var(--font-body); border-radius: var(--radius);
  padding: .45rem .7rem; cursor: pointer;
}
.slideshow__btn:hover { background: var(--brass); border-color: var(--brass); color: var(--spruce-deep); }
.slideshow__dots { display: flex; gap: .35rem; margin: 0 auto; }
.slideshow__dot {
  width: 9px; height: 9px; padding: 0; border-radius: 50%;
  border: 1px solid var(--ink-soft); background: transparent; cursor: pointer;
}
.slideshow__dot[aria-selected="true"] { background: var(--brass); border-color: var(--brass); }

/* --- Video cards ------------------------------------------------------- */
/* These are built from spans inside an <a>, so every one of them needs an
   explicit display value — inline spans ignore padding for layout height and
   the text overflows the card. */
.vid-head {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(1rem, 4vw, 3rem); align-items: end; margin-bottom: 2rem;
}
.vid-head h2 { margin-bottom: 0; }
.vid-head .lede { margin: 0; }
@media (max-width: 780px) { .vid-head { grid-template-columns: 1fr; gap: 1rem; } }

.vid-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 880px) { .vid-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px) { .vid-grid { grid-template-columns: 1fr; } }

.vid-card {
  display: flex; flex-direction: column; text-decoration: none; color: var(--frost);
  background: rgba(241,243,241,.06); border: 1px solid rgba(217,171,82,.32);
  border-radius: var(--radius); overflow: hidden; height: 100%;
  transition: border-color .15s ease, background-color .15s ease, transform .15s ease;
}
.vid-card:hover {
  background: rgba(217,171,82,.14); border-color: var(--brass);
  color: var(--white); transform: translateY(-2px);
}
.vid-card__thumb {
  display: grid; place-items: center; aspect-ratio: 16 / 9; width: 100%;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(79,146,133,.35), transparent 60%),
    linear-gradient(150deg, var(--spruce-mid), var(--spruce-deep));
  border-bottom: 1px solid rgba(217,171,82,.32);
}
.vid-card__play {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--brass); color: var(--spruce-deep); font-size: 1rem; padding-left: 3px;
}
.vid-card:hover .vid-card__play { background: var(--brass-light); }
.vid-card__body {
  display: flex; flex-direction: column; gap: .35rem;
  padding: 1.15rem 1.3rem 1.3rem; flex: 1 1 auto;
}
.vid-card__tag {
  display: block; font-family: var(--font-mono); font-size: .66rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brass-light);
}
.vid-card__title {
  display: block; font-size: 1rem; line-height: 1.35; font-weight: 600;
  color: var(--frost);
}
.vid-card:hover .vid-card__title { color: var(--white); }
.vid-card__meta {
  display: block; margin-top: auto; padding-top: .5rem;
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .07em;
  color: rgba(241,243,241,.5);
}

@media (prefers-reduced-motion: reduce) { .slide { transition: none; } }

/* Hero spinner labels */
.dia__lbl {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  fill: var(--brass-light); text-transform: uppercase; letter-spacing: .04em;
}
.dia__sub { font-family: var(--font-mono); font-size: 11px; fill: rgba(241,243,241,.6); letter-spacing: .06em; }
/* Second blade runs slightly out of phase so the pair doesn't look mechanical */
/* Modifier only offsets the phase — the animation itself comes from the base
   .blade-spin / .blade-face classes, which both spinners now carry. */
.blade-spin--b { animation-delay: -.85s; }
.blade-face--b { animation-delay: -.85s; }
.tail path { animation: tail-sway 3.4s ease-in-out infinite; transform-origin: 286px 86px; }
.tail path:nth-child(2) { animation-delay: -.4s; }
.tail path:nth-child(3) { animation-delay: -.8s; }
.tail path:nth-child(4) { animation-delay: -1.2s; }
@keyframes tail-sway {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(-2.2deg); }
}
@media (prefers-reduced-motion: reduce) { .tail path { animation: none; } }

/* Made in USA mark */
.usa-mark { width: 92px; height: 92px; display: block; }
.usa-mark__txt { font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: .1em; fill: var(--brass-light); }
.usa-mark__sub { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .16em; fill: var(--brass-light); }
.usa-wrap { margin-top: 1.25rem; }
/* Made in USA mark, top corner of the hero as on the original site.
   Sized so it never crowds the headline or the spinner illustration. */
.hero__usa {
  position: absolute; top: clamp(1rem, 2.5vw, 1.75rem);
  right: clamp(1.25rem, 3vw, 2.25rem); z-index: 2; pointer-events: none;
}
.hero__usa .usa-mark { width: clamp(64px, 7vw, 88px); height: auto; }
@media (max-width: 860px) {
  .hero__usa { top: .75rem; right: .9rem; }
  .hero__usa .usa-mark { width: 54px; }
  /* keep the eyebrow clear of the badge on narrow screens: constrain the box,
     not just the text, so nothing sits under the mark */
  .hero .eyebrow { max-width: calc(100% - 72px); }
}

/* Provenance note above catch galleries */
.provenance {
  display: flex; align-items: center; gap: .7rem;
  background: var(--white); border: 1px solid var(--frost-deep);
  border-left: 4px solid var(--brass); border-radius: var(--radius);
  padding: 1.1rem 1.4rem; margin: 0 0 1.75rem; box-shadow: var(--shadow);
  font-size: .97rem; color: var(--ink);
}
.provenance strong { color: var(--spruce); }
.section--dark .provenance { background: rgba(241,243,241,.06); color: var(--frost); border-color: rgba(217,171,82,.3); }
