/* ============================================================
   TEN Effects — core stylesheet
   Dark shell, enclosure colors as accents.
   ============================================================ */

:root {
  /* Shell — the packaging black, sampled from the printed box */
  --ink:        #131313;
  --ink-2:      #1B1A1D;
  --ink-3:      #242229;
  --line:       #2E2B33;
  --line-soft:  #201E24;

  /* House brand — from the box and the business card, not invented */
  --plum:       #310F48;  /* business card field */
  --violet:     #693278;  /* logo counter wedges */
  --violet-sig: #B57BD6;  /* lifted for legible text on black */

  /* Type colors — warm off-white reads like brushed metal, not paper */
  --bone:       #EDEAE3;
  --bone-2:     #A5A9A2;
  --bone-3:     #6E736E;

  /* Enclosure colors: deep = large fills, signal = legible on black */
  --barracuda-deep:   #600C54;  --barracuda-sig:   #D45BB8;
  --chorusaurus-deep: #184890;  --chorusaurus-sig: #5B9BEF;
  --fatcity-deep:     #006C48;  --fatcity-sig:     #35C98D;
  --phantasm-deep:    #D86C00;  --phantasm-sig:    #FF9E3D;
  --pipeline-deep:    #1884A8;  --pipeline-sig:    #4FC9EF;
  --texasflood-deep:  #485460;  --texasflood-sig:  #9DB0C0;
  --squishy-deep:     #B45448;  --squishy-sig:     #F0806F;
  --neanderthal-deep: #909054;  --neanderthal-sig: #C7C67E;

  /* Live accent — JS swaps this as you move through the rack */
  --live:      var(--violet-sig);
  --live-deep: var(--plum);

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body:    "Instrument Sans", system-ui, sans-serif;
  --font-mono:    "DM Mono", ui-monospace, monospace;

  --shell: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: var(--live); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

:focus-visible {
  outline: 2px solid var(--live);
  outline-offset: 3px;
}

.ten-shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 32px;
}

.ten-skip {
  position: absolute;
  left: -9999px;
}
.ten-skip:focus {
  left: 16px; top: 16px;
  position: fixed; z-index: 100;
  background: var(--bone); color: var(--ink);
  padding: 10px 16px; border-radius: 4px;
}

/* ---------- The color rack rule ----------
   Eight segments, one per enclosure. Appears at the top of every
   page; the segment for the current page's product goes solid. */

.ten-rule {
  display: flex;
  height: 3px;
  width: 100%;
}
.ten-rule span {
  flex: 1;
  opacity: 0.34;
  transition: opacity 260ms ease;
}
.ten-rule span.is-live { opacity: 1; }

/* ---------- Masthead ---------- */

.ten-head {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(14, 15, 17, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.ten-head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.ten-mark {
  display: block;
  flex: none;
  line-height: 0;
}
.ten-mark:hover { text-decoration: none; }
.ten-mark img {
  height: 34px;
  width: auto;
}

.ten-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.ten-nav a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--bone-2);
  transition: color 160ms ease;
}
.ten-nav a:hover,
.ten-nav a[aria-current="page"] {
  color: var(--bone);
  text-decoration: none;
}

.ten-buy {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--live);
  padding: 9px 18px;
  border-radius: 3px;
  transition: background 300ms ease, transform 120ms ease;
}
.ten-buy:hover { text-decoration: none; transform: translateY(-1px); }

.ten-burger { display: none; }

/* ---------- The rack (homepage hero) ---------- */

.ten-rack {
  display: flex;
  height: 470px;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ten-rack > li { display: contents; }

.ten-rack-item {
  position: relative;
  display: block;
  flex: 0.42;
  min-width: 0;
  background: var(--deep);
  border: 0;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: flex 520ms cubic-bezier(0.22, 0.9, 0.3, 1);
  text-align: left;
  color: inherit;
  font: inherit;
}
.ten-rack-item.is-open { flex: 6.4; cursor: default; }

/* collapsed state: name runs up the bar */
.ten-rack-spine {
  display: block;
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  transition: opacity 240ms ease;
}
.ten-rack-item.is-open .ten-rack-spine { opacity: 0; }

.ten-rack-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 0 52px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease 140ms;
}
.ten-rack-item.is-open .ten-rack-panel {
  opacity: 1;
  pointer-events: auto;
}

/* Photo sits at native 185px — never upscaled, so it stays sharp */
.ten-rack-shot {
  width: 185px;
  flex: none;
  border-radius: 3px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.ten-rack-shot.is-cutout {
  box-shadow: none;
  border-radius: 0;
}

.ten-rack-copy { display: block; min-width: 0; }

.ten-rack-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 10px;
}

.ten-rack-name {
  display: block;
  font-family: var(--font-display);
  font-variation-settings: "wdth" 112;
  font-weight: 700;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: #fff;
}

.ten-rack-line {
  display: block;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 22px;
  max-width: 42ch;
}

.ten-rack-link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 3px;
}
.ten-rack-link:hover { text-decoration: none; border-bottom-color: #fff; }

.ten-rack-tag {
  display: block;
  position: absolute;
  top: 26px;
  right: 30px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 3px 9px;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 220ms ease 160ms;
}
.ten-rack-item.is-open .ten-rack-tag { opacity: 1; }

/* ---------- Section furniture ---------- */

.ten-band { padding: 52px 0; }
.ten-band + .ten-band { border-top: 1px solid var(--line-soft); }

.ten-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--live);
  margin: 0 0 14px;
  transition: color 300ms ease;
}

.ten-h2 {
  margin-top: 0;
  font-family: var(--font-display);
  font-variation-settings: "wdth" 108;
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0 0 14px;
}

.ten-lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--bone-2);
  max-width: 56ch;
  margin: 0 0 26px;
}

/* ---------- Product cards ---------- */

.ten-lineup {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 24px;
}

.ten-card {
  display: block;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-top: 3px solid var(--card-accent, var(--line));
  border-radius: 0 0 6px 6px;
  padding: 28px;
  color: inherit;
  transition: background 200ms ease, transform 200ms ease;
}
.ten-card:hover {
  background: var(--ink-3);
  transform: translateY(-3px);
  text-decoration: none;
}

/* fixed-height media box keeps mixed aspect ratios on one baseline,
   and contain means nothing is upscaled past its native pixels */
.ten-card-media {
  display: flex;
  align-items: flex-end;
  height: 132px;
  margin-bottom: 22px;
}
.ten-card-media img {
  max-height: 132px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 3px;
}

.ten-card-name {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 106;
  font-weight: 600;
  font-size: 25px;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  color: var(--bone);
}

.ten-card-role {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--card-accent, var(--bone-3));
  margin: 0 0 14px;
}

.ten-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--bone-2);
  margin: 0 0 20px;
}

.ten-card-foot {
  display: flex;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--bone-3);
}
.ten-card-price { color: var(--bone); font-size: 15px; }

/* ---------- Artist wall ----------
   Tiles are the original 130x90 PNGs, displayed at native size.
   Never scaled, never cropped. */

.ten-wall-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}

.ten-search {
  position: relative;
  flex: 1;
  min-width: 240px;
  max-width: 380px;
}
.ten-search input {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 11px 14px;
}
.ten-search input::placeholder { color: var(--bone-3); }
.ten-search input:focus {
  outline: none;
  border-color: var(--live);
}

.ten-count {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--bone-3);
}

.ten-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, 130px);
  justify-content: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ten-wall li { margin: 0; }

.ten-tile {
  display: block;
  width: 130px;
  height: 90px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 180ms ease, border-color 180ms ease;
}
.ten-tile img { width: 130px; height: 90px; }
.ten-tile:hover {
  transform: translateY(-3px);
  border-color: var(--live);
}

.ten-wall li[hidden] { display: none; }

.ten-empty {
  font-size: 16px;
  color: var(--bone-2);
  text-align: center;
  padding: 40px 0;
}

.ten-note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--bone-3);
  max-width: 70ch;
  margin: 40px auto 0;
  text-align: center;
}

/* ---------- Artist strip (homepage) ---------- */

.ten-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
}
.ten-strip .ten-tile { flex: none; }

/* ---------- Footer ---------- */

.ten-foot {
  border-top: 1px solid var(--line-soft);
  padding: 38px 0 28px;
  font-size: 14px;
  color: var(--bone-3);
}
.ten-foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  margin-bottom: 26px;
}
.ten-foot h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-2);
  margin: 0 0 14px;
  font-weight: 400;
}
.ten-foot ul { list-style: none; margin: 0; padding: 0; }
.ten-foot li { margin-bottom: 8px; }
.ten-foot li a { color: var(--bone-3); }
.ten-foot li a:hover { color: var(--bone); text-decoration: none; }
.ten-foot-base {
  border-top: 1px solid var(--line-soft);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
}
.ten-foot-base span:last-child { flex-basis: 100%; color: var(--bone-3); }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .ten-shell { padding: 0 20px; }
  .ten-nav { display: none; }
  .ten-band { padding: 36px 0; }

  .ten-rack {
    flex-direction: column;
    height: auto;
    gap: 2px;
  }
  .ten-rack-item { flex: none; height: 76px; }
  .ten-rack-item.is-open { flex: none; height: auto; min-height: 380px; }
  .ten-rack-spine {
    writing-mode: horizontal-tb;
    transform: none;
    left: 24px;
    top: 50%;
    bottom: auto;
    margin-top: -10px;
  }
  .ten-rack-panel {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 34px 24px 40px;
  }
  .ten-rack-tag { top: 16px; right: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============================================================
   Interior pages — prose, specs, FAQ, dealers, forms
   ============================================================ */

.ten-page-head { padding: 72px 0 8px; }

.ten-h1 {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 110;
  font-weight: 700;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

/* Product hero band — floods with that product's own colour */
.ten-hero {
  background: var(--deep);
  padding: 40px 0;
}
.ten-hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.ten-hero img { flex: none; border-radius: 3px; }
.ten-hero-copy { flex: 1; min-width: 260px; }
.ten-hero .ten-h1 { color: #fff; }
.ten-hero-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin: 0 0 12px;
}
.ten-hero-line {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  max-width: 54ch;
  margin: 0;
}

/* Long-form reading column */
.ten-prose { max-width: 68ch; }
.ten-prose p { margin: 0 0 1.05em; }
.ten-prose h2 {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 106;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.012em;
  margin: 1.5em 0 0.5em;
}
.ten-prose h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 1.4em 0 0.4em;
}
.ten-prose ul { padding-left: 1.1em; margin: 0 0 1.25em; }
.ten-prose li { margin-bottom: 0.5em; }
.ten-prose strong { font-weight: 600; color: var(--bone); }
.ten-prose figure { margin: 1.5em 0; }
.ten-prose figcaption {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--bone-3);
  margin-top: 10px;
}
.ten-note-box {
  border-left: 2px solid var(--live);
  border-radius: 0;
  padding: 4px 0 4px 18px;
  margin: 0 0 2em;
  color: var(--bone-2);
  font-size: 16px;
}
.ten-warn {
  border: 1px solid var(--border-danger, #6E2B2B);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 0 0 2em;
  background: #1E1517;
  font-size: 16px;
}

/* Spec table */
.ten-specs {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  max-width: 560px;
}
.ten-specs th, .ten-specs td {
  text-align: left;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.ten-specs th {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-3);
  width: 42%;
}
.ten-specs td { color: var(--bone); }

/* Control list — knob name + what it does */
.ten-controls { list-style: none; margin: 0 0 2em; padding: 0; }
.ten-controls li {
  border-top: 1px solid var(--line-soft);
  padding: 16px 0;
}
.ten-controls b {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--live);
  font-weight: 400;
  margin-bottom: 5px;
}

/* FAQ */
.ten-faq { margin: 0; }
.ten-faq details {
  border-top: 1px solid var(--line-soft);
  padding: 4px 0;
}
.ten-faq details:last-of-type { border-bottom: 1px solid var(--line-soft); }
.ten-faq summary {
  cursor: pointer;
  padding: 18px 0;
  font-size: 17px;
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.ten-faq summary::-webkit-details-marker { display: none; }
.ten-faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--live);
  flex: none;
}
.ten-faq details[open] summary::after { content: "\2013"; }
.ten-faq .ten-faq-body {
  padding: 0 0 20px;
  color: var(--bone-2);
  max-width: 68ch;
}
.ten-faq .ten-faq-body p { margin: 0 0 0.9em; }

/* Dealers + manuals */
.ten-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
}
.ten-tile-card {
  display: block;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius, 8px);
  padding: 22px 24px;
  color: inherit;
  transition: background 180ms ease, border-color 180ms ease;
}
a.ten-tile-card:hover {
  background: var(--ink-3);
  border-color: var(--live);
  text-decoration: none;
}
.ten-tile-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--bone);
}
.ten-tile-card p {
  margin: 0;
  font-size: 14px;
  color: var(--bone-2);
  line-height: 1.55;
}
.ten-tile-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone-3);
  margin-top: 12px !important;
}

/* Archive entries */
.ten-entry {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  border-top: 1px solid var(--line-soft);
  padding: 30px 0;
  flex-wrap: wrap;
}
.ten-entry-shot {
  flex: none;
  width: 185px;
  border-radius: 3px;
  border-top: 3px solid var(--entry-accent, var(--line));
}
.ten-entry-copy { flex: 1; min-width: 280px; max-width: 62ch; }
.ten-entry-copy h2 {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 106;
  font-weight: 600;
  font-size: 30px;
  margin: 0 0 4px;
  letter-spacing: -0.012em;
}
.ten-entry-role {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--entry-accent, var(--bone-3));
  margin: 0 0 16px;
}
.ten-entry-copy p { margin: 0 0 1em; color: var(--bone-2); font-size: 16px; }

/* Contact form */
.ten-form { max-width: 540px; }
.ten-field { margin-bottom: 18px; }
.ten-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-2);
  margin-bottom: 7px;
}
.ten-field input, .ten-field textarea {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 11px 14px;
}
.ten-field textarea { min-height: 150px; resize: vertical; }
.ten-field input:focus, .ten-field textarea:focus {
  outline: none;
  border-color: var(--live);
}
.ten-submit {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--live);
  color: var(--ink);
  border: 0;
  border-radius: 3px;
  padding: 13px 26px;
  cursor: pointer;
}

.ten-contact-list { list-style: none; margin: 0; padding: 0; font-size: 17px; }
.ten-contact-list li { margin-bottom: 14px; }
.ten-contact-list span {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-3);
  margin-bottom: 2px;
}

@media (max-width: 900px) {
  .ten-page-head { padding: 48px 0 4px; }
  .ten-hero { padding: 28px 0; }
  .ten-hero-inner { gap: 28px; }
  .ten-entry { gap: 20px; padding: 24px 0; }
}

/* Registered mark — superscript that scales with its heading but
   never drops below a legible size in small mono footer text */
.ten-rm {
  font-size: max(9px, 0.34em);
  vertical-align: super;
  line-height: 0;
  letter-spacing: 0;
  font-weight: 400;
}

/* ============================================================
   Page banners — every interior page opens on its own colour
   field, carrying the ghosted logo the way the packaging and
   the business card do.
   ============================================================ */

.ten-banner {
  position: relative;
  background: var(--deep, var(--plum));
  overflow: hidden;
  padding: 40px 0 36px;
}

/* the mark, ghosted, bleeding off the right edge */
.ten-banner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -70px;
  width: 460px;
  height: 174px;
  transform: translateY(-50%);
  background: url("../images/ten-logo-ghost.svg") no-repeat center / contain;
  opacity: 0.07;
  pointer-events: none;
}

.ten-banner .ten-shell { position: relative; z-index: 1; }

.ten-banner-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
  margin: 0 0 14px;
}

.ten-banner .ten-h1 { color: #fff; margin-bottom: 16px; }

.ten-banner-line {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 56ch;
  margin: 0;
}

@media (max-width: 900px) {
  .ten-banner { padding: 28px 0 26px; }
  .ten-banner::after { width: 300px; height: 114px; right: -60px; opacity: 0.05; }
}

/* Product-coloured cards — the accent carries the identity */
.ten-tile-card {
  border-top: 3px solid var(--tile-accent, var(--line));
  border-radius: 0 0 var(--radius, 8px) var(--radius, 8px);
}
.ten-tile-card .ten-tile-meta { color: var(--tile-accent, var(--bone-3)); }
a.ten-tile-card:hover { border-color: var(--line); border-top-color: var(--tile-accent, var(--live)); }

/* Story images inside long-form prose */
.ten-figrow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  margin: 1.6em 0;
}
.ten-figrow figure {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.ten-figrow img {
  width: 100%;
  height: 158px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.ten-figrow figcaption { margin-top: 10px; }
.ten-prose figure img { border-radius: 4px; border: 1px solid var(--line); }

/* Contact form states */
.ten-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.ten-opt {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  color: var(--bone-3);
  font-size: 12px;
}
.ten-err {
  margin: 7px 0 0;
  font-size: 14px;
  color: #F0806F;
}
.ten-field input[aria-invalid="true"], .ten-field .ten-err + input { border-color: #F0806F; }
.ten-formerror {
  border: 1px solid #6E2B2B;
  background: #1E1517;
  border-radius: var(--radius, 8px);
  padding: 14px 18px;
  margin: 0 0 22px;
  font-size: 15px;
  color: #F0806F;
}
.ten-sent {
  border-top: 3px solid var(--live);
  background: var(--ink-2);
  border-radius: 0 0 var(--radius, 8px) var(--radius, 8px);
  padding: 26px 28px;
}
.ten-sent h3 {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 106;
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--bone);
}
.ten-sent p { margin: 0 0 0.9em; color: var(--bone-2); font-size: 16px; }
.ten-sent p:last-child { margin-bottom: 0; }

/* Parts sheet — the Rodfather components are matte black on transparent,
   so they need a light ground to read against. Doubles as a nod to a
   technical drawing sheet. */
.ten-parts {
  background: var(--bone);
  border-radius: var(--radius, 8px);
  padding: 24px;
  margin: 1.6em 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  align-items: end;
}
.ten-parts figure { margin: 0; text-align: center; }
.ten-parts figure img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
  margin: 0 auto 10px;
  border: 0;
  border-radius: 0;
}
.ten-parts figcaption {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #4A4A46;
  margin: 0;
}

/* Safety table */
.ten-safety { width: 100%; border-collapse: collapse; font-size: 15px; }
.ten-safety th, .ten-safety td {
  text-align: left;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  vertical-align: top;
}
.ten-safety th {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F0806F;
  width: 30%;
  padding-right: 22px;
}
.ten-safety td { color: var(--bone-2); line-height: 1.55; }
@media (max-width: 640px) {
  .ten-safety th, .ten-safety td { display: block; width: auto; padding-right: 0; }
  .ten-safety td { border-top: 0; padding-top: 4px; }
}
