/* Ligma Electronics — light, loud, and not especially dignified */
:root {
  --bg: #f4f3ee;
  --bg-soft: #e9e8e2;
  --panel: #fff;
  --panel-2: #e7e7e2;
  --paper: #fff;
  --paper-ink: #111216;
  --ink: #111216;
  --ink-2: #3d3f45;
  --ink-3: #6b6d73;
  --line: rgba(17, 18, 22, .2);
  --line-dark: rgba(17, 18, 22, .32);
  --red: #f33a2d;
  --pink: #e93f87;
  --green: #8acb16;
  --blue: #2949e8;
  --radius: .7rem;
  --wrap: 1240px;
  --display: "DM Sans", system-ui, sans-serif;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --shadow: 0 24px 60px rgba(17, 18, 22, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font: 400 1rem/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: #fff; background: var(--blue); }

.skip {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 100;
  padding: .7rem 1rem;
  color: var(--paper-ink);
  background: var(--paper);
  transform: translateY(-150%);
}
.skip:focus { transform: translateY(0); }
.wrap { width: min(calc(100% - 2.5rem), var(--wrap)); margin-inline: auto; }
.section { padding: clamp(5.25rem, 9vw, 9rem) 0; }
.section--tight { padding: clamp(3.75rem, 6vw, 6rem) 0; }
.section--panel { background: var(--bg-soft); border-block: 1px solid var(--line); }
.rule { height: 1px; margin: 0; border: 0; background: var(--line); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { margin-bottom: 0; }
h1, h2, .display {
  font-family: var(--display);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.065em;
}
h1 { font-size: clamp(4.25rem, 10vw, 9.5rem); }
h2 { font-size: clamp(3.3rem, 7vw, 6.4rem); }
h3 { font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1; letter-spacing: -.04em; }

.eyebrow, .kicker {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1.15rem;
  color: var(--ink-3);
  font: 600 .72rem/1.2 var(--mono);
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before, .kicker::before {
  width: 1.8rem;
  height: 2px;
  content: "";
  background: currentColor;
}
.lede { max-width: 44rem; color: var(--ink-2); font-size: clamp(1.08rem, 1.7vw, 1.3rem); line-height: 1.55; }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(18rem, 34rem); gap: 2rem; align-items: end; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head .lede { margin: 0; }

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  background: rgba(244, 243, 238, .82);
  backdrop-filter: blur(16px);
  transition: border-color .2s ease, background .2s ease;
}
.nav.is-stuck { border-color: var(--line); background: rgba(244, 243, 238, .96); }
.nav__inner { display: flex; min-height: 5rem; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .6rem; font-weight: 700; letter-spacing: -.02em; }
.brand img { width: .42rem; height: 1.35rem; object-fit: contain; filter: invert(1); }
.brand__name { font-size: 1rem; }
.brand__name span { color: var(--ink-3); font-weight: 400; }
.nav__links { display: flex; align-items: center; gap: 1.55rem; color: var(--ink-2); font-size: .85rem; }
.nav__links > a:not(.btn) { transition: color .2s ease; }
.nav__links > a:not(.btn):hover,
.nav__links > a[aria-current="page"] { color: var(--ink); }
.nav__toggle { display: none; width: 2.75rem; height: 2.75rem; color: var(--ink); border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.nav__toggle span,
.nav__toggle::before,
.nav__toggle::after { display: block; width: 1rem; height: 1px; margin: 4px auto; content: ""; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.nav__toggle[aria-expanded="true"] span { opacity: 0; }
.nav__toggle[aria-expanded="true"]::before { transform: translateY(5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"]::after { transform: translateY(-5px) rotate(-45deg); }

.btn {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .72rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); border-color: rgba(23,23,25,.5); }
.btn--accent { color: #fff; border-color: var(--blue); background: var(--blue); }
.btn--red { color: #fff; border-color: var(--red); background: var(--red); }
.btn--lg { min-height: 3.35rem; padding-inline: 1.45rem; }

.hero { padding: clamp(3.5rem, 6vw, 6.5rem) 0 clamp(5rem, 9vw, 9rem); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: minmax(20rem, .82fr) minmax(28rem, 1.18fr); gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.hero__copy { max-width: 38rem; }
.hero h1 { max-width: 11ch; }
.hero h1 .punch { color: var(--red); }
.hero .lede { max-width: 39rem; margin: 2rem 0 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero__facts { display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; margin-top: 2.8rem; padding-top: 1.3rem; border-top: 1px solid var(--line); color: var(--ink-3); font: 500 .7rem/1.4 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.hero__photo { position: relative; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #3c3c33; box-shadow: var(--shadow); }
.hero__photo picture, .hero__photo img { display: block; width: 100%; }
.hero__photo img { height: auto; aspect-ratio: 3 / 2; object-fit: cover; }

.ticker { overflow: hidden; color: #fff; border-block: 1px solid #111216; background: var(--blue); }
.ticker__track { display: flex; width: max-content; animation: ticker 106s linear infinite; }
.ticker__group { display: flex; align-items: center; }
.ticker span { display: inline-flex; align-items: center; gap: 1.5rem; padding: .85rem 1.25rem; white-space: nowrap; font: 700 .7rem/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.ticker span::after { content: "✦"; }
@keyframes ticker { to { transform: translateX(-50%); } }

.catalogue { display: grid; gap: 1rem; }
.product-row {
  --product: var(--red);
  display: grid;
  grid-template-columns: minmax(18rem, .92fr) minmax(0, 1.08fr);
  min-height: 38rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  transition: border-color .25s ease, transform .25s ease;
}
.product-row:hover { border-color: color-mix(in srgb, var(--product), white 15%); transform: translateY(-3px); }
.product-row:nth-child(even) .product-row__media { order: 2; }
.product-row__media { position: relative; min-height: 32rem; overflow: hidden; background: var(--panel-2); }
.product-row__media::before { position: absolute; z-index: 2; inset: 0 0 auto; height: .55rem; content: ""; background: var(--product); }
.product-row__media > img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.product-row:hover .product-row__media > img { transform: scale(1.025); }
.product-row__inside { position: absolute; right: 1rem; bottom: 1rem; width: min(38%, 13rem); aspect-ratio: 1; border: .35rem solid var(--panel); border-radius: 50%; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,.34); }
.product-row__inside img { width: 100%; height: 100%; object-fit: cover; }
.product-row__body { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(2rem, 5vw, 4.5rem); }
.product-row__index { color: var(--product); font: 600 .7rem/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.product-row h3 { max-width: 10ch; margin: 1rem 0 1.25rem; font-size: clamp(3.7rem, 7vw, 7rem); }
.product-row__copy { max-width: 36rem; color: var(--ink-2); font-size: 1.08rem; }
.product-row__chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.75rem 0 0; padding: 0; list-style: none; }
.product-row__chips li { padding: .4rem .65rem; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-3); font: 500 .66rem/1.2 var(--mono); text-transform: uppercase; }
.product-row__foot { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.product-row__price { font: 400 2.1rem/1 var(--display); letter-spacing: .03em; text-transform: uppercase; }
.product-row__price small { display: block; margin-top: .4rem; color: var(--ink-3); font: 500 .63rem/1 var(--mono); letter-spacing: .1em; }
.text-link { color: var(--product); font-size: .83rem; font-weight: 700; }

.newsletter { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr minmax(20rem, .75fr); gap: 2rem 4rem; align-items: end; padding: clamp(2rem, 5vw, 4.5rem); border: 1px solid #152dac; border-radius: var(--radius); color: #fff; background: var(--blue); }
.newsletter::after { position: absolute; right: -4rem; top: -6rem; width: 18rem; height: 18rem; content: ""; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.newsletter .eyebrow { color: rgba(255,255,255,.72); }
.newsletter h2 { position: relative; z-index: 1; max-width: 9ch; }
.newsletter p { position: relative; z-index: 1; max-width: 37rem; margin: 1.2rem 0 0; color: rgba(255,255,255,.82); }
.newsletter__form { position: relative; z-index: 1; min-width: 0; }
.newsletter__form [data-form="f8904430-94d9-11f1-b458-d77bd9374236"].inline-container { width: 100% !important; max-width: none !important; }
.newsletter__form [data-form="f8904430-94d9-11f1-b458-d77bd9374236"] .form-container { width: 100% !important; max-width: none !important; margin: 0 !important; }
.newsletter__form [data-form="f8904430-94d9-11f1-b458-d77bd9374236"] .emailoctopus-form-wrapper { margin: 0 !important; }
.newsletter__form [data-form="f8904430-94d9-11f1-b458-d77bd9374236"] .main-form { display: grid !important; grid-template-columns: minmax(0, 1fr) auto; gap: .65rem; align-items: stretch !important; }
.newsletter__form [data-form="f8904430-94d9-11f1-b458-d77bd9374236"] [eo-form-fields-container] { display: block !important; min-width: 0; }
.newsletter__form [data-form="f8904430-94d9-11f1-b458-d77bd9374236"] .emailoctopus-form-row { min-width: 0 !important; margin: 0 !important; }
.newsletter__form [data-form="f8904430-94d9-11f1-b458-d77bd9374236"] input[type="email"] { box-sizing: border-box; width: 100% !important; min-width: 0; min-height: 3.35rem; padding: .8rem 1rem !important; color: #111 !important; font: 500 .92rem/1.2 var(--mono) !important; border: 1px solid rgba(17,17,17,.45) !important; border-radius: 999px !important; outline: none; background: rgba(255,255,255,.48) !important; }
.newsletter__form [data-form="f8904430-94d9-11f1-b458-d77bd9374236"] input[type="email"]:focus { box-shadow: 0 0 0 3px rgba(17,17,17,.18) !important; }
.newsletter__form [data-form="f8904430-94d9-11f1-b458-d77bd9374236"] input[type="submit"] { min-height: 3.35rem; padding: .8rem 1.2rem !important; color: #fff !important; font: 700 .72rem/1 var(--mono) !important; letter-spacing: .06em; text-transform: uppercase; border: 1px solid #111 !important; border-radius: 999px !important; background: #111 !important; cursor: pointer; }
.newsletter__form [data-form="f8904430-94d9-11f1-b458-d77bd9374236"] input[type="submit"]:hover { color: #111 !important; background: var(--green) !important; }
.newsletter__form [data-form="f8904430-94d9-11f1-b458-d77bd9374236"] input[type="submit"]:focus-visible { outline: 3px solid rgba(17,17,17,.3); outline-offset: 2px; }
.newsletter__form [data-form="f8904430-94d9-11f1-b458-d77bd9374236"] .emailoctopus-error-message,
.newsletter__form [data-form="f8904430-94d9-11f1-b458-d77bd9374236"] .emailoctopus-success-message { margin: 0 0 .75rem !important; color: #fff; font: 700 .72rem/1.45 var(--mono); }
.newsletter__form [data-form="f8904430-94d9-11f1-b458-d77bd9374236"] .mastfoot { margin-top: .65rem !important; }
.newsletter__form [data-form="f8904430-94d9-11f1-b458-d77bd9374236"] .mastfoot p { color: rgba(255,255,255,.68) !important; }
.newsletter__form [data-form="f8904430-94d9-11f1-b458-d77bd9374236"] .mastfoot a { color: #fff !important; }
.newsletter__note { grid-column: 1 / -1; margin: .35rem 0 0 !important; font: 500 .66rem/1.45 var(--mono); }
.newsletter__note a { color: inherit; text-decoration: underline; text-underline-offset: .18em; }

.footer { padding: 4rem 0 2rem; border-top: 1px solid var(--line); background: var(--bg-soft); }
.footer__grid { display: grid; grid-template-columns: minmax(16rem, 1.5fr) repeat(3, minmax(8rem, .7fr)); gap: 2rem; }
.footer__brand img { width: 4.2rem; height: auto; filter: invert(1); }
.footer__brand p { max-width: 23rem; margin: 1.25rem 0 0; color: var(--ink-3); font-size: .9rem; }
.footer h4 { margin: 0 0 1rem; color: var(--ink-3); font: 600 .67rem/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.footer ul { margin: 0; padding: 0; list-style: none; }
.footer li + li { margin-top: .55rem; }
.footer li a { color: var(--ink-2); font-size: .85rem; }
.footer li a:hover { color: var(--ink); }
.footer__bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.35rem; border-top: 1px solid var(--line); color: var(--ink-3); font: 500 .62rem/1.5 var(--mono); letter-spacing: .08em; text-transform: uppercase; }

/* Product pages */
.crumb { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 2rem; color: var(--ink-3); font: 500 .67rem/1.4 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.crumb span { color: var(--ink); }
.product-hero { padding: clamp(2rem, 5vw, 4.5rem) 0 clamp(5rem, 8vw, 8rem); }
.product-hero__grid { display: grid; grid-template-columns: minmax(22rem, 1fr) minmax(20rem, .9fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.gallery { position: sticky; top: 7rem; display: grid; grid-template-columns: minmax(0, 1fr) 31%; gap: .8rem; }
.gallery__main, .gallery__detail { border-radius: var(--radius); overflow: hidden; background: var(--panel-2); }
.gallery__main { min-height: 0; aspect-ratio: 3 / 4; align-self: start; }
.gallery__detail { min-height: 0; aspect-ratio: 4 / 5; align-self: end; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery__main { border-top: .55rem solid var(--accent, var(--blue)); }
.gallery__main img { padding: 0; object-fit: cover; background: none; }
.product-summary { padding-top: 1rem; }
.product-summary h1 { max-width: 9ch; font-size: clamp(5rem, 9vw, 8.6rem); }
.product-summary__type { margin: 1rem 0 0; color: var(--accent, var(--red)); font: 700 .73rem/1.4 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.product-summary .lede { margin: 2rem 0 0; }
.buybox { display: grid; grid-template-columns: 1fr; gap: 1rem; align-items: center; margin-top: 2rem; padding: 1.2rem 0; border-block: 1px solid var(--line); }
.buybox__price { font: 400 2.5rem/1 var(--display); letter-spacing: .03em; text-transform: uppercase; }
.buybox__price span { display: block; margin-top: .35rem; color: var(--ink-3); font: 500 .62rem/1 var(--mono); letter-spacing: .1em; }
.buybox__stores { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; }
.store-link { display: flex; min-height: 3.8rem; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: .9rem; background: var(--panel); transition: transform .2s ease, border-color .2s ease; }
.store-link:hover { border-color: rgba(23,23,25,.5); transform: translateY(-2px); }
.store-link img { width: auto; max-width: 7.5rem; height: 1.55rem; object-fit: contain; }
.store-link span { font: 700 .67rem/1.2 var(--mono); letter-spacing: .06em; text-align: right; text-transform: uppercase; }
.status { display: inline-flex; align-items: center; gap: .45rem; color: var(--ink-2); font: 600 .66rem/1.2 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.status::before { width: .45rem; height: .45rem; content: ""; border-radius: 50%; background: var(--accent, var(--green)); box-shadow: 0 0 0 .28rem color-mix(in srgb, var(--accent, var(--green)), transparent 78%); }
.spec-pills { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.spec-pills li { padding: .5rem .75rem; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-3); font: 500 .64rem/1 var(--mono); text-transform: uppercase; }
.product-summary__links { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }

.order-panel { display: grid; grid-template-columns: minmax(0, .82fr) minmax(24rem, 1.18fr); gap: clamp(2rem, 6vw, 6rem); align-items: end; padding: clamp(2rem, 5vw, 4.5rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.order-panel h2 { max-width: 9ch; }
.order-panel .lede { margin: 1.4rem 0 0; }
.store-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
.store-card { display: flex; min-height: 13rem; flex-direction: column; justify-content: space-between; gap: 2rem; padding: 1.5rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--bg); transition: transform .2s ease, border-color .2s ease; }
.store-card:hover { border-color: rgba(23,23,25,.5); transform: translateY(-3px); }
.store-card img { width: auto; max-width: 10rem; height: 3rem; object-fit: contain; object-position: left center; }
.store-card p { margin: 0; color: var(--ink-3); font-size: .82rem; }
.store-card__cta { font: 700 .7rem/1.3 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.shipping-notice { margin-top: 1rem; padding: 1rem 1.1rem; border-left: .3rem solid var(--red); border-radius: .35rem; background: color-mix(in srgb, var(--red), transparent 93%); }
.shipping-notice strong { display: block; font: 700 .72rem/1.35 var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.shipping-notice p { margin: .45rem 0 0; color: var(--ink-2); font-size: .86rem; }
.shipping-notice a { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: .16em; }
.order-panel > .shipping-notice { grid-column: 1 / -1; margin-top: 0; }
.story-grid { display: grid; grid-template-columns: minmax(18rem, .8fr) minmax(0, 1.2fr); gap: clamp(2.5rem, 7vw, 7rem); }
.story-grid h2 { position: sticky; top: 7rem; max-width: 8ch; }
.story-copy > p { color: var(--ink-2); font-size: 1.1rem; }
.feature-list { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.feature-list__item { display: grid; grid-template-columns: minmax(9rem, .42fr) 1fr; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.feature-list__item h3 { font-family: var(--sans); font-size: 1rem; font-weight: 700; line-height: 1.35; text-transform: none; }
.feature-list__item p { margin: 0; color: var(--ink-3); }
.spec-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 3rem; margin-top: 2.5rem; }
.spec-grid div { display: grid; grid-template-columns: 1fr auto; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.spec-grid dt { color: var(--ink-3); }
.spec-grid dd { margin: 0; text-align: right; }

.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 20rem)); gap: 1.25rem; justify-content: center; margin-top: 3rem; }
.video-card { margin: 0; }
.video-frame { aspect-ratio: 9 / 16; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #111; }
.video-frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.video-card figcaption { display: flex; justify-content: space-between; gap: 1rem; margin-top: .75rem; color: var(--ink-3); font: 600 .65rem/1.4 var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.video-card figcaption a { color: var(--ink-2); }
.video-card figcaption a:hover { color: var(--ink); }

.manual-banner { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; padding: clamp(2rem, 4vw, 3.5rem); border-top: .55rem solid var(--accent, var(--blue)); border-radius: var(--radius); color: #fff; background: #17191f; }
.manual-banner .eyebrow { color: rgba(255,255,255,.68) !important; }
.manual-banner h2 { max-width: 10ch; font-size: clamp(3.2rem, 6vw, 5.5rem); }
.manual-banner p { max-width: 40rem; margin: 1rem 0 0; }
.manual-banner .btn { color: #fff; border-color: #111; background: #111; }

.related { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.related-card { display: grid; grid-template-columns: 42% 1fr; min-height: 18rem; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--panel); }
.related-card img { width: 100%; height: 100%; object-fit: cover; }
.related-card__copy { display: flex; flex-direction: column; justify-content: space-between; padding: 1.5rem; }
.related-card h3 { font-size: clamp(2.3rem, 4vw, 3.5rem); }
.related-card p { margin: 1rem 0 0; color: var(--ink-3); font-size: .88rem; }

/* Support */
.pagehead { padding: clamp(4rem, 8vw, 8rem) 0; }
.pagehead h1 { max-width: 9ch; }
.pagehead .lede { margin: 1.8rem 0 0; }
.support-grid { display: grid; grid-template-columns: minmax(15rem, .55fr) minmax(0, 1.45fr); gap: clamp(2rem, 7vw, 7rem); }
.support-nav { position: sticky; top: 7rem; height: fit-content; }
.support-nav a { display: flex; justify-content: space-between; padding: .9rem 0; border-bottom: 1px solid var(--line); color: var(--ink-2); font-size: .9rem; }
.support-nav a:hover { color: var(--ink); }
.support-stack { display: grid; gap: 5rem; }
.support-block h2 { font-size: clamp(3rem, 6vw, 5.6rem); }
.support-block > .lede { margin: 1.3rem 0 2rem; }
.manual-list { display: grid; gap: .75rem; }
.manual-item { display: grid; grid-template-columns: 1fr auto; gap: 1.25rem; align-items: center; padding: 1.25rem; border: 1px solid var(--line); border-radius: .9rem; background: var(--panel); }
.manual-item h3 { font-family: var(--sans); font-size: 1rem; font-weight: 700; line-height: 1.3; text-transform: none; }
.manual-item p { margin: .3rem 0 0; color: var(--ink-3); font-size: .85rem; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { padding: 1rem 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.info-table th { width: 31%; color: var(--ink-3); font-size: .82rem; font-weight: 500; }
.shipping-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: .9rem; background: var(--panel); }
.shipping-table { min-width: 42rem; }
.shipping-table th, .shipping-table td { width: auto; padding: 1rem 1.1rem; }
.shipping-table thead th { color: var(--ink); background: color-mix(in srgb, var(--ink), transparent 94%); font: 700 .68rem/1.4 var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.shipping-table tbody th { width: 30%; color: var(--ink); font-weight: 700; }
.shipping-table tbody td:nth-child(2) { width: 16%; font-weight: 700; white-space: nowrap; }
.shipping-notes { display: grid; gap: .65rem; margin-top: 1rem; }
.shipping-notes p { margin: 0; color: var(--ink-3); font-size: .85rem; }
.shipping-notes strong { color: var(--ink); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; gap: 1rem; padding: 1.2rem 0; font-weight: 700; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font: 400 1.25rem/1 var(--mono); }
.faq details[open] summary::after { content: "−"; }
.faq details > div { max-width: 47rem; padding: 0 2rem 1.25rem 0; color: var(--ink-3); }

[data-reveal] { opacity: 1; transform: none; }
.js [data-reveal] { opacity: 0; transform: translateY(1.25rem); transition: opacity .7s ease var(--d, 0ms), transform .7s ease var(--d, 0ms); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

@media (max-width: 920px) {
  .nav__toggle { display: block; }
  .nav__links { position: absolute; top: calc(100% + 1px); left: 0; right: 0; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 1rem 1.25rem 1.5rem; border-bottom: 1px solid var(--line); background: rgba(244,243,238,.98); }
  .nav__links.is-open { display: flex; }
  .nav__links > a { padding: .85rem 0; }
  .nav__links .btn { margin-top: .5rem; }
  .hero__grid, .product-hero__grid { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .product-row { grid-template-columns: 1fr; }
  .product-row:nth-child(even) .product-row__media { order: 0; }
  .product-row__media { min-height: 38rem; }
  .gallery { position: static; }
  .story-grid, .support-grid { grid-template-columns: 1fr; }
  .story-grid h2, .support-nav { position: static; }
  .support-nav { display: none; }
  .newsletter, .order-panel { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 700px) {
  .wrap { width: min(calc(100% - 1.5rem), var(--wrap)); }
  .hero { padding-top: 2.75rem; }
  .product-row { min-height: 0; }
  .product-row__media { min-height: 29rem; }
  .product-row__inside { width: 35%; }
  .product-row__foot { align-items: start; flex-direction: column; }
  .newsletter__form [data-form="f8904430-94d9-11f1-b458-d77bd9374236"] .main-form { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__main { min-height: 0; }
  .gallery__detail { min-height: 0; }
  .video-grid { grid-template-columns: minmax(0, 22rem); }
  .buybox__stores, .store-grid { grid-template-columns: 1fr; }
  .feature-list__item { grid-template-columns: 1fr; gap: .55rem; }
  .spec-grid { grid-template-columns: 1fr; }
  .manual-banner { grid-template-columns: 1fr; align-items: start; }
  .related { grid-template-columns: 1fr; }
  .related-card { min-height: 16rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; }
  .manual-item { grid-template-columns: 1fr; }
  .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { padding-bottom: .25rem; border-bottom: 0; }
  .info-table td { padding-top: 0; }
  .shipping-table th, .shipping-table td { display: table-cell; width: auto; padding: .85rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Workshop catalogue art direction — flat, direct, and built around the pedals. */
:root {
  --bg: #eee9df;
  --bg-soft: #e3ded3;
  --panel: #f7f3ea;
  --panel-2: #d8d4cb;
  --paper: #f7f3ea;
  --ink: #171713;
  --ink-2: #37372f;
  --ink-3: #68675d;
  --line: rgba(23, 23, 19, .28);
  --line-dark: rgba(23, 23, 19, .62);
  --red: #e0472f;
  --blue: #e0472f;
  --radius: 0;
  --wrap: 1200px;
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --shadow: none;
}

body {
  background: var(--bg);
  font-size: 1.02rem;
}

::selection { color: var(--bg); background: var(--ink); }
.wrap { width: min(calc(100% - 3rem), var(--wrap)); }
.section { padding: clamp(5rem, 8vw, 8rem) 0; }
.section--tight { padding: clamp(3.5rem, 5vw, 5rem) 0; }
.section--panel { background: var(--bg-soft); }

h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 400;
  line-height: .84;
  letter-spacing: .01em;
}
h1 { font-size: clamp(5.75rem, 12vw, 11rem); }
h2 { font-size: clamp(4.4rem, 8vw, 7.4rem); }
h3 { line-height: .88; letter-spacing: .01em; }
.lede { color: var(--ink-2); line-height: 1.5; }
.eyebrow, .kicker { color: var(--ink-2); letter-spacing: .1em; }
.eyebrow::before, .kicker::before { width: 2.5rem; height: 1px; }
.section-head { grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .75fr); border-top: 2px solid var(--ink); padding-top: 1rem; }

.nav {
  border-top: 4px solid var(--ink);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(238, 233, 223, .97);
  backdrop-filter: none;
}
.nav.is-stuck { border-color: var(--ink); background: rgba(238, 233, 223, .98); }
.nav__inner { min-height: 4.35rem; }
.brand { gap: .75rem; font-family: var(--mono); font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
.brand img { width: .36rem; height: 1.25rem; }
.brand__name, .brand__name span { font-size: .78rem; font-weight: 600; }
.brand__name span { color: var(--ink-3); }
.nav__links { gap: 1.35rem; font-family: var(--mono); font-size: .72rem; text-transform: uppercase; }
.nav__toggle { border-radius: 0; }

.btn {
  min-height: 2.8rem;
  padding: .75rem 1rem;
  border-color: var(--ink);
  border-radius: 0;
  font: 600 .7rem/1 var(--mono);
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .12s linear, background .12s linear, box-shadow .12s linear;
}
.btn:hover { transform: none; border-color: var(--ink); box-shadow: 3px 3px 0 var(--ink); }
.btn--accent { color: var(--bg); border-color: var(--ink); background: var(--ink); }
.btn--accent:hover { color: #fff; background: var(--red); }
.btn--red { border-color: var(--ink); background: var(--red); }

.hero { padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(5rem, 9vw, 8rem); }
.hero__grid { grid-template-columns: minmax(18rem, .68fr) minmax(31rem, 1.32fr); gap: clamp(2rem, 5vw, 5.5rem); align-items: end; }
.hero__copy { max-width: 33rem; padding-bottom: 1rem; }
.hero h1 { max-width: 6ch; font-size: clamp(7rem, 14vw, 13rem); }
.hero h1 .punch { color: var(--red); }
.hero .lede { max-width: 32rem; margin-top: 1.6rem; }
.hero__social {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: 1.25rem;
  padding: .95rem 1rem;
  border: 1px solid var(--line-dark);
  border-left: 4px solid var(--red);
  color: var(--ink);
  background: var(--paper);
  transition: background .12s linear, box-shadow .12s linear;
}
.hero__social:hover { background: var(--bg-soft); box-shadow: 3px 3px 0 var(--ink); }
.hero__social:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }
.hero__social > img { flex: 0 0 2rem; width: 2rem; height: 2rem; }
.hero__social-copy { display: grid; gap: .2rem; min-width: 0; overflow-wrap: anywhere; }
.hero__social-copy strong { font-size: 1rem; line-height: 1.3; }
.hero__social-copy > span { color: var(--ink-2); font: 500 .875rem/1.4 var(--mono); }
.hero__social-arrow { flex: 0 0 auto; margin-left: auto; font-size: 1.5rem; line-height: 1; }
.social-link { display: inline-flex; align-items: center; gap: .45rem; }
.social-link > img { flex: 0 0 auto; width: 1.125rem; height: 1.125rem; }
.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  padding: .9rem 0;
  border-block: 1px solid var(--line-dark);
}
.hero__facts span { padding-right: .75rem; }
.hero__facts span + span { padding-left: .75rem; border-left: 1px solid var(--line); }
.hero__photo { overflow: visible; border: 0; border-left: 5px solid var(--red); border-radius: 0; box-shadow: none; }
.hero__photo::after {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: .45rem .65rem;
  content: "FIG. 001 / CURRENT PRODUCTION";
  color: var(--bg);
  background: var(--ink);
  font: 500 .58rem/1 var(--mono);
  letter-spacing: .08em;
}

.ticker { color: var(--bg); border-block-color: var(--ink); background: var(--ink); }
.ticker span { padding-block: .8rem; }
.ticker span::after { color: var(--red); content: "+"; }

.catalogue { gap: 0; }
.product-row {
  grid-template-columns: minmax(18rem, .86fr) minmax(0, 1.14fr);
  min-height: 36rem;
  border: 0;
  border-top: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
  transition: none;
}
.product-row:last-child { border-bottom: 2px solid var(--ink); }
.product-row:hover { border-color: var(--ink); transform: none; }
.product-row__media { min-height: 34rem; border-right: 1px solid var(--line-dark); }
.product-row:nth-child(even) .product-row__media { border-right: 0; border-left: 1px solid var(--line-dark); }
.product-row__media::before { height: .35rem; }
.product-row__media > img, .product-row:hover .product-row__media > img { transform: none; }
.product-row__inside {
  right: 1rem;
  bottom: 1rem;
  width: min(31%, 11rem);
  border: 4px solid var(--bg);
  border-radius: 0;
  box-shadow: none;
}
.product-row__inside::after {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: .3rem .45rem;
  content: "INSIDE";
  color: var(--bg);
  background: var(--ink);
  font: 600 .52rem/1 var(--mono);
  letter-spacing: .08em;
}
.product-row__body { padding: clamp(2rem, 4vw, 3.75rem); }
.product-row__index { letter-spacing: .09em; }
.product-row h3 { max-width: 11ch; font-size: clamp(4.4rem, 7vw, 7.3rem); }
.product-row__copy { max-width: 34rem; }
.product-row__chips { gap: .55rem .8rem; }
.product-row__chips li {
  padding: 0 .8rem 0 0;
  border: 0;
  border-right: 1px solid var(--line-dark);
  border-radius: 0;
}
.product-row__chips li:last-child { padding-right: 0; border-right: 0; }
.product-row__foot { border-top-color: var(--line-dark); }
.product-row__price { font-family: var(--display); font-size: 2.75rem; letter-spacing: .02em; }
.text-link { font: 600 .7rem/1.3 var(--mono); letter-spacing: .04em; text-transform: uppercase; }

.order-panel {
  padding: 3rem 0;
  border: 0;
  border-block: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
}
.store-grid { gap: 0; border: 1px solid var(--ink); }
.store-card {
  min-height: 12rem;
  border: 0;
  border-radius: 0;
  background: var(--panel);
  transition: color .12s linear, background .12s linear;
}
.store-card + .store-card { border-left: 1px solid var(--ink); }
.store-card:hover { color: var(--bg); border-color: var(--ink); background: var(--ink); transform: none; }
.store-card:hover img { filter: grayscale(1) invert(1); }
.shipping-notice { border-radius: 0; background: rgba(224, 71, 47, .08); }

.newsletter {
  border: 0;
  border-top: .45rem solid var(--red);
  border-radius: 0;
  color: var(--bg);
  background: var(--ink);
}
.newsletter::after { display: none; }
.newsletter__form [data-form="f8904430-94d9-11f1-b458-d77bd9374236"] input[type="email"],
.newsletter__form [data-form="f8904430-94d9-11f1-b458-d77bd9374236"] input[type="submit"] { border-radius: 0 !important; }
.newsletter__form [data-form="f8904430-94d9-11f1-b458-d77bd9374236"] input[type="email"] { background: var(--bg) !important; }
.newsletter__form [data-form="f8904430-94d9-11f1-b458-d77bd9374236"] input[type="submit"] { border-color: var(--bg) !important; }

.footer { color: var(--bg); border-top: .45rem solid var(--red); background: var(--ink); }
.footer__brand img { filter: none; }
.footer__brand p, .footer h4, .footer li a, .footer__bottom { color: rgba(238, 233, 223, .72); }
.footer li a:hover { color: #fff; }
.footer .social-link > img { filter: invert(1); }
.footer__bottom { border-top-color: rgba(238, 233, 223, .28); }

/* Product pages */
.gallery { gap: .5rem; }
.gallery__main, .gallery__detail { border-radius: 0; }
.gallery__main { border-top-width: .35rem; }
.product-summary h1 { max-width: 8ch; font-size: clamp(6rem, 10vw, 9.5rem); }
.buybox { border-color: var(--line-dark); }
.store-link { border-color: var(--line-dark); border-radius: 0; background: transparent; }
.store-link:hover { border-color: var(--ink); background: var(--panel); transform: none; }
.status::before { box-shadow: none; }
.spec-pills { gap: .6rem 1rem; }
.spec-pills li { padding: 0 1rem 0 0; border: 0; border-right: 1px solid var(--line-dark); border-radius: 0; }
.spec-pills li:last-child { padding-right: 0; border-right: 0; }
.manual-banner { border-radius: 0; }
.manual-banner .btn { border-color: var(--bg); }
.related { gap: 0; border: 1px solid var(--ink); }
.related-card { border: 0; border-radius: 0; background: var(--panel); }
.related-card + .related-card { border-left: 1px solid var(--ink); }
.video-frame { border-radius: 0; }

/* Support and policy pages stay deliberately plain. */
.pagehead { padding: clamp(4rem, 7vw, 7rem) 0; }
.pagehead h1 { max-width: 8ch; font-size: clamp(4rem, 7vw, 6.5rem); }
.support-stack, .support-block { min-width: 0; }
.support-stack { gap: clamp(4rem, 7vw, 6rem); }
.support-block h2 { font-family: var(--sans); font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; line-height: 1; letter-spacing: -.04em; }
.manual-list { gap: 0; border-top: 2px solid var(--ink); }
.manual-item { padding: 1.25rem 0; border: 0; border-bottom: 1px solid var(--line-dark); border-radius: 0; background: transparent; }
.shipping-table-wrap { width: 100%; max-width: 100%; border: 1px solid var(--ink); border-radius: 0; background: var(--panel); }
.shipping-table thead th { color: var(--bg); background: var(--ink); }
.shipping-table th, .shipping-table td { border-bottom-color: var(--line-dark); }
.faq details { border-bottom-color: var(--line-dark); }

.js [data-reveal], .js [data-reveal].is-in { opacity: 1; transform: none; transition: none; }

@media (max-width: 920px) {
  .nav__links { background: rgba(238, 233, 223, .99); }
  .hero__grid, .product-hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 40rem; }
  .hero__photo { border-left: 0; border-top: 5px solid var(--red); }
  .section-head { grid-template-columns: 1fr; }
  .product-row { grid-template-columns: 1fr; }
  .product-row:nth-child(even) .product-row__media { order: 0; border-left: 0; }
  .product-row__media { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .newsletter, .order-panel { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .wrap { width: min(calc(100% - 1.5rem), var(--wrap)); }
  .hero h1 { font-size: clamp(6rem, 31vw, 8rem); }
  .hero__facts { grid-template-columns: 1fr; }
  .hero__facts span { padding: .55rem 0; }
  .hero__facts span + span { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .product-row__inside { width: 30%; }
  .store-card + .store-card { border-top: 1px solid var(--ink); border-left: 0; }
  .related-card + .related-card { border-top: 1px solid var(--ink); border-left: 0; }
}
