:root {
  --charcoal: #181716;
  --ink: #272523;
  --gold: #b89355;
  --stone: #f4f2ee;
  --warm-grey: #d7d3cb;
  --muted: #a9a39a;
  --line: rgba(244,242,238,.14);
  --line-strong: rgba(184,147,85,.38);
  --max: 1240px;
  --ease: cubic-bezier(.32,.72,0,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--charcoal);
  color: var(--stone);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: .75rem;
  z-index: 100;
  padding: .65rem .85rem;
  background: var(--stone);
  color: var(--charcoal);
  transform: translateY(-180%);
  transition: transform .3s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  width: min(calc(100% - 2rem), var(--max));
  margin: 1.2rem auto 0;
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 20;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  width: max-content;
  text-decoration: none;
}
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand-copy { line-height: 1; }
.brand-copy strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .98rem;
  letter-spacing: .12em;
  font-weight: 500;
}
.brand-copy small {
  display: block;
  margin-top: .42rem;
  color: var(--gold);
  font-size: .54rem;
  letter-spacing: .43em;
}
.desktop-nav { display: flex; align-items: center; gap: 1.8rem; }
.desktop-nav a, .header-contact {
  text-decoration: none;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--warm-grey);
  transition: color .35s var(--ease);
}
.desktop-nav a:hover, .desktop-nav a:focus-visible,
.header-contact:hover, .header-contact:focus-visible,
.desktop-nav a[aria-current="page"] { color: var(--stone); }
.header-contact { justify-self: end; border-bottom: 1px solid var(--gold); padding-bottom: .25rem; }
.menu-button {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.menu-button span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1px;
  background: var(--stone);
  transition: transform .45s var(--ease), top .45s var(--ease);
}
.menu-button span:first-child { top: 16px; }
.menu-button span:last-child { top: 27px; }
.menu-button[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }
.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: none;
  background: rgba(24,23,22,.97);
  padding: 8rem 1.5rem 2rem;
}
.mobile-panel.is-open { display: block; }
.mobile-panel nav { display: grid; gap: 1.2rem; max-width: 520px; margin: 0 auto; }
.mobile-panel a {
  padding: .8rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 9vw, 3.8rem);
  line-height: 1.05;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

main { overflow: clip; }
.shell { width: min(calc(100% - 3rem), var(--max)); margin-inline: auto; }
.section { padding: clamp(5.5rem, 10vw, 9rem) 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-label {
  margin: 0 0 1.3rem;
  color: var(--gold);
  font-size: .69rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
h1 { font-size: clamp(3.4rem, 7vw, 7.6rem); line-height: .93; letter-spacing: -.045em; }
h2 { font-size: clamp(2.55rem, 4.8vw, 5rem); line-height: .98; letter-spacing: -.035em; }
h3 { font-size: clamp(1.65rem, 2.5vw, 2.4rem); line-height: 1.08; }
p { margin: 0; }
.lede { max-width: 700px; color: var(--warm-grey); font-size: clamp(1.05rem, 1.7vw, 1.35rem); }
.copy { max-width: 68ch; color: var(--warm-grey); font-size: 1rem; }
.copy + .copy { margin-top: 1.2rem; }
.gold { color: var(--gold); }

.hero {
  width: min(calc(100% - 2rem), var(--max));
  margin: 1rem auto 0;
  min-height: calc(100dvh - 100px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 7rem) 0 clamp(5rem, 8vw, 8rem);
}
.hero-copy { align-self: center; }
.hero-copy .lede { margin-top: 2rem; max-width: 620px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.2rem; align-items: center; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .82rem 1.25rem;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--stone); color: var(--charcoal); }
.button-primary:hover, .button-primary:focus-visible { background: var(--gold); }
.button-secondary { border-color: var(--line-strong); color: var(--stone); }
.button-secondary:hover, .button-secondary:focus-visible { border-color: var(--gold); }
.text-link { color: var(--warm-grey); text-decoration: none; border-bottom: 1px solid var(--line-strong); padding-bottom: .18rem; }
.text-link:hover, .text-link:focus-visible { color: var(--stone); border-color: var(--gold); }

.hero-visual {
  position: relative;
  min-height: 610px;
  border: 1px solid var(--line);
  background: var(--ink);
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/banner.png") center / cover no-repeat;
  opacity: .52;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,23,22,.05), rgba(24,23,22,.2) 60%, rgba(24,23,22,.78));
}
.hero-mark {
  position: absolute;
  z-index: 2;
  right: 7%;
  bottom: 7%;
  width: min(46%, 270px);
  opacity: .9;
  filter: invert(1);
}
.hero-caption {
  position: absolute;
  z-index: 3;
  left: 1.35rem;
  bottom: 1.25rem;
  color: var(--warm-grey);
  font-size: .67rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.statement {
  background: var(--stone);
  color: var(--charcoal);
}
.statement-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(2rem, 7vw, 8rem);
  align-items: start;
}
.statement h2 { max-width: 850px; }
.statement .copy { color: #5d5852; font-size: 1.08rem; }

.work-rail {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 1rem;
}
.work-card {
  min-height: 560px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background: #11100f;
  text-decoration: none;
}
.work-card-small { min-height: 272px; }
.work-stack { display: grid; gap: 1rem; }
.work-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .54;
  transition: transform .8s var(--ease), opacity .8s var(--ease);
}
.work-card-bg.banner { background-image: url("assets/banner.png"); }
.work-card-bg.bust { background-image: url("assets/clay-bust.png"); background-position: center 22%; background-color: #ebe9e4; background-size: 92%; background-repeat: no-repeat; }
.work-card-bg.logo { background-image: url("assets/logo-mark.png"); background-position: center; background-size: 70%; background-repeat: no-repeat; opacity: .18; filter: invert(1); }
.work-card:hover .work-card-bg, .work-card:focus-visible .work-card-bg { transform: scale(1.03); opacity: .68; }
.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(16,15,14,.86));
}
.work-card-copy { position: absolute; z-index: 2; inset: auto 1.5rem 1.4rem; }
.work-card-copy span { display: block; color: var(--gold); font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: .55rem; }
.work-card-copy h3 { max-width: 620px; }
.work-card-copy p { margin-top: .65rem; max-width: 52ch; color: var(--warm-grey); }

.process-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(3rem, 8vw, 9rem);
}
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
}
.process-list li > span { color: var(--gold); font-size: .73rem; letter-spacing: .15em; }
.process-list strong { display: block; font-weight: 600; margin-bottom: .35rem; }
.process-list p { color: var(--muted); }

.bio-panel {
  min-height: 720px;
  background: url("assets/banner.png") center / cover no-repeat;
  position: relative;
  display: grid;
  align-items: end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bio-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(24,23,22,.94) 0 43%, rgba(24,23,22,.5) 70%, rgba(24,23,22,.18)); }
.bio-inner { position: relative; z-index: 2; width: min(calc(100% - 3rem), var(--max)); margin: 0 auto; padding: clamp(5rem, 9vw, 8rem) 0; }
.bio-inner h2 { max-width: 700px; }
.bio-inner .lede { margin-top: 1.7rem; max-width: 620px; }

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  margin-top: 3rem;
}
.social-link {
  min-height: 160px;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.social-link:nth-child(3n) { border-right: 0; }
.social-link:hover, .social-link:focus-visible { background: var(--stone); color: var(--charcoal); }
.social-link small { color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: .62rem; }
.social-link strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.65rem; font-weight: 400; }

.hashtag-box { margin-top: 2.5rem; padding: 1.5rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hashtag-text { color: var(--warm-grey); overflow-wrap: anywhere; }
.copy-row { margin-top: 1.3rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.copy-button { background: transparent; border: 1px solid var(--line-strong); cursor: pointer; }
.copy-status { color: var(--muted); font-size: .85rem; }

.ip-note {
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.6;
}
.ip-note strong { color: var(--warm-grey); font-weight: 600; }

.page-hero {
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
  padding: clamp(7rem, 13vw, 11rem) 0 clamp(4rem, 7vw, 6rem);
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
}
.page-hero h1 { font-size: clamp(3.8rem, 8vw, 8rem); }
.page-hero .lede { justify-self: end; max-width: 480px; }

.release-list { border-top: 1px solid var(--line); }
.release-row {
  display: grid;
  grid-template-columns: 110px 1fr 1.2fr auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}
.release-row .index { color: var(--gold); font-size: .7rem; letter-spacing: .14em; }
.release-row h3 { font-size: 1.75rem; }
.release-row p { color: var(--muted); }
.release-row a { text-decoration: none; border-bottom: 1px solid var(--line-strong); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.release-row a:hover, .release-row a:focus-visible { border-color: var(--gold); }

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 3rem;
}
.principle { background: var(--charcoal); padding: 2rem; min-height: 280px; }
.principle span { color: var(--gold); font-size: .7rem; letter-spacing: .14em; }
.principle h3 { margin-top: 4rem; font-size: 1.8rem; }
.principle p { color: var(--muted); margin-top: .8rem; }

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(3rem, 8vw, 8rem);
}
.contact-details { display: grid; gap: 2.2rem; align-content: start; }
.contact-details a { text-decoration: none; border-bottom: 1px solid var(--line-strong); }
.contact-details a:hover, .contact-details a:focus-visible { border-color: var(--gold); }
.form { display: grid; gap: 1.2rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--warm-grey); }
.field input, .field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  color: var(--stone);
  padding: .85rem .1rem;
  outline: none;
}
.field textarea { min-height: 170px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { color: var(--muted); font-size: .82rem; }

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(3rem, 7vw, 7rem);
}
.legal-nav { position: sticky; top: 2rem; align-self: start; display: grid; gap: .5rem; }
.legal-nav a { color: var(--muted); text-decoration: none; font-size: .84rem; }
.legal-nav a:hover, .legal-nav a:focus-visible { color: var(--stone); }
.legal-content { max-width: 800px; }
.legal-content section { padding: 0 0 3.5rem; margin-bottom: 3.5rem; border-bottom: 1px solid var(--line); }
.legal-content h2 { font-size: clamp(2rem, 4vw, 3.3rem); margin-bottom: 1.35rem; }
.legal-content h3 { font-family: "Segoe UI", system-ui, sans-serif; font-size: 1rem; font-weight: 650; margin: 1.7rem 0 .6rem; }
.legal-content p, .legal-content li { color: var(--warm-grey); }
.legal-content p + p { margin-top: 1rem; }
.legal-content ul { padding-left: 1.2rem; }
.legal-content a { color: var(--stone); text-underline-offset: .18em; }
.address-block { margin: 1rem 0; padding-left: 1rem; border-left: 2px solid var(--gold); color: var(--stone); font-style: normal; }

.thanks { min-height: 70dvh; display: grid; align-items: center; }
.thanks-card { max-width: 760px; }
.thanks-card p { margin-top: 1.4rem; }

.site-footer { border-top: 1px solid var(--line); padding: 2.8rem 0 2rem; }
.footer-grid {
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 3rem;
}
.footer-title { font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; }
.footer-copy { margin-top: .8rem; color: var(--muted); max-width: 420px; font-size: .9rem; }
.footer-links { display: grid; gap: .55rem; align-content: start; }
.footer-links a { color: var(--warm-grey); text-decoration: none; font-size: .83rem; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--stone); }
.footer-meta {
  width: min(calc(100% - 3rem), var(--max));
  margin: 2.2rem auto 0;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: .72rem;
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

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

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-contact { display: none; }
  .menu-button { display: block; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { min-height: 520px; }
  .statement-grid, .process-grid, .page-hero, .contact-grid, .legal-layout { grid-template-columns: 1fr; }
  .page-hero .lede { justify-self: start; }
  .work-rail { grid-template-columns: 1fr; }
  .work-card { min-height: 500px; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .social-link:nth-child(3n) { border-right: 1px solid var(--line); }
  .social-link:nth-child(even) { border-right: 0; }
  .release-row { grid-template-columns: 70px 1fr auto; }
  .release-row p { grid-column: 2 / -1; }
  .principles { grid-template-columns: 1fr; }
  .legal-nav { position: static; grid-template-columns: repeat(2, 1fr); padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .shell, .page-hero, .bio-inner, .footer-grid, .footer-meta, .ip-note { width: min(calc(100% - 2rem), var(--max)); }
  .site-header { width: calc(100% - 1.4rem); margin-top: .65rem; }
  .brand img { width: 40px; height: 40px; }
  .brand-copy strong { font-size: .83rem; }
  .hero { width: calc(100% - 2rem); padding-top: 4rem; }
  .hero-visual { min-height: 430px; }
  h1 { font-size: clamp(3.15rem, 15vw, 5.4rem); }
  .section { padding: 4.7rem 0; }
  .work-card, .work-card-small { min-height: 390px; }
  .social-grid { grid-template-columns: 1fr; }
  .social-link { border-right: 0; min-height: 125px; }
  .release-row { grid-template-columns: 1fr; gap: .5rem; }
  .release-row p { grid-column: auto; }
  .legal-nav { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-meta { flex-direction: column; }
}
.process-grid .lede, .social-grid + .lede { margin-top: 1.5rem; }
.release-list { margin-top: 3rem; }
.about-principles { grid-template-columns: 1fr 1fr; }

/* --------------------------------------------------------------------------
   Wargaming-focused redesign — supplied Opus Prime product imagery
   -------------------------------------------------------------------------- */
.hero.hero-wargaming {
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: min(860px, calc(100dvh - 96px));
  padding: 0;
  display: block;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: block;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(14,14,14,.98) 0%, rgba(14,14,14,.88) 28%, rgba(14,14,14,.35) 52%, rgba(14,14,14,.06) 72%),
    linear-gradient(180deg, rgba(24,23,22,.18), rgba(24,23,22,.08) 65%, rgba(24,23,22,.52));
}
.hero-wargaming-inner {
  min-height: inherit;
  display: grid;
  align-items: center;
  padding-block: clamp(5rem, 9vw, 9rem);
}
.hero-wargaming-copy {
  width: min(670px, 51vw);
}
.hero-wargaming-copy h1 {
  font-size: clamp(4rem, 7.5vw, 8.4rem);
  max-width: 900px;
  text-shadow: 0 2px 32px rgba(0,0,0,.35);
}
.hero-wargaming-copy .lede {
  margin-top: 1.8rem;
  max-width: 640px;
  color: #ddd9d1;
  text-shadow: 0 1px 16px rgba(0,0,0,.4);
}
.hero-disciplines {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.2rem;
  margin: 2.6rem 0 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid rgba(184,147,85,.34);
  max-width: 640px;
}
.hero-disciplines li {
  color: var(--warm-grey);
  font-size: .68rem;
  line-height: 1.3;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.discipline-band {
  border-bottom: 1px solid var(--line);
  background: #131211;
}
.discipline-band-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.discipline-band-inner span {
  padding: .9rem 1rem;
  text-align: center;
  color: var(--warm-grey);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-right: 1px solid var(--line);
}
.discipline-band-inner span:first-child { padding-left: 0; text-align: left; }
.discipline-band-inner span:last-child { border-right: 0; padding-right: 0; text-align: right; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .65fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
}
.section-heading .lede { justify-self: end; max-width: 520px; }
.release-showcase { background: #151413; }

.product-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
  margin-top: 3.5rem;
}
.product-card {
  display: block;
  text-decoration: none;
  background: #0f0e0d;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .55s var(--ease), border-color .55s var(--ease), background .55s var(--ease);
}
.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(184,147,85,.72);
  background: #121110;
}
.product-media {
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0e0d0c;
  border-bottom: 1px solid var(--line);
}
.product-media picture { width: 100%; height: 100%; display: block; }
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .85s var(--ease), filter .85s var(--ease);
}
.product-card:hover .product-media img,
.product-card:focus-visible .product-media img { transform: scale(1.015); filter: brightness(1.05); }
.product-meta {
  min-height: 146px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  align-items: end;
  padding: 1.25rem 1.25rem 1.35rem;
}
.product-meta span {
  display: block;
  margin-bottom: .35rem;
  color: var(--gold);
  font-size: .61rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.product-meta h3 { font-size: clamp(1.45rem, 2vw, 2rem); }
.product-meta strong {
  align-self: end;
  color: var(--warm-grey);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.product-card-heads .product-media { background: #11100f; }

.store-destinations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.store-destinations a {
  min-height: 126px;
  padding: 1.2rem 1.35rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: .2rem 1rem;
  text-decoration: none;
  border-right: 1px solid var(--line);
  transition: background .4s var(--ease), color .4s var(--ease);
}
.store-destinations a:last-child { border-right: 0; }
.store-destinations a:hover,
.store-destinations a:focus-visible { background: var(--stone); color: var(--charcoal); }
.store-destinations small {
  grid-column: 1 / -1;
  color: var(--gold);
  font-size: .61rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.store-destinations strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
}
.store-destinations span { align-self: center; color: var(--gold); }
.store-destinations-large { margin-top: 3rem; }

.workshop-section { background: #1b1a18; }
.bio-panel.bio-panel-wargaming {
  min-height: 620px;
  background:
    radial-gradient(circle at 78% 34%, rgba(184,147,85,.10), transparent 25%),
    linear-gradient(135deg, #11100f, #1b1917 62%, #11100f);
}
.bio-panel.bio-panel-wargaming::after {
  background:
    linear-gradient(90deg, rgba(24,23,22,.22), rgba(24,23,22,.02)),
    repeating-linear-gradient(90deg, transparent 0 140px, rgba(184,147,85,.035) 140px 141px);
}

.work-image-hero {
  position: relative;
  min-height: min(760px, calc(100dvh - 96px));
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.work-image-hero-media { position: absolute; inset: 0; z-index: -3; display: block; }
.work-image-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.work-image-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(13,13,13,.98) 0%, rgba(13,13,13,.82) 28%, rgba(13,13,13,.28) 53%, rgba(13,13,13,.06) 76%);
}
.work-image-hero-inner { min-height: inherit; display: grid; align-items: center; }
.work-image-hero-copy { width: min(650px, 47vw); padding-block: clamp(5rem, 8vw, 8rem); }
.work-image-hero-copy h1 { font-size: clamp(4rem, 7.4vw, 8rem); }
.work-image-hero-copy .lede { margin-top: 1.8rem; color: #ddd9d1; }

@media (max-width: 1100px) {
  .product-showcase { grid-template-columns: 1fr 1fr; }
  .product-card-heads { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(280px, .7fr) 1fr; }
  .product-card-heads .product-media { aspect-ratio: 4 / 3; }
  .product-card-heads .product-meta { align-self: stretch; min-height: 100%; }
  .hero-wargaming-copy { width: min(620px, 60vw); }
  .work-image-hero-copy { width: min(600px, 58vw); }
}

@media (max-width: 860px) {
  .hero.hero-wargaming { min-height: 720px; }
  .hero-media img { object-position: 63% center; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(14,14,14,.97) 0%, rgba(14,14,14,.80) 55%, rgba(14,14,14,.32) 100%),
      linear-gradient(180deg, rgba(14,14,14,.12), rgba(14,14,14,.58));
  }
  .hero-wargaming-copy { width: min(620px, 82vw); }
  .section-heading { grid-template-columns: 1fr; gap: 1.4rem; }
  .section-heading .lede { justify-self: start; }
  .discipline-band-inner { grid-template-columns: 1fr 1fr; }
  .discipline-band-inner span { border-bottom: 1px solid var(--line); }
  .discipline-band-inner span:nth-child(2) { border-right: 0; }
  .discipline-band-inner span:nth-child(3) { border-bottom: 0; padding-left: 0; text-align: left; }
  .discipline-band-inner span:nth-child(4) { border-bottom: 0; text-align: right; }
  .store-destinations { grid-template-columns: 1fr; }
  .store-destinations a { border-right: 0; border-bottom: 1px solid var(--line); }
  .store-destinations a:last-child { border-bottom: 0; }
  .work-image-hero { min-height: 690px; }
  .work-image-hero-media img { object-position: 63% center; }
  .work-image-hero-copy { width: min(620px, 80vw); }
}

@media (max-width: 640px) {
  .hero.hero-wargaming { min-height: 760px; }
  .hero-media img { object-position: 66% center; }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(12,12,12,.91) 0%, rgba(12,12,12,.74) 46%, rgba(12,12,12,.24) 77%, rgba(12,12,12,.58) 100%),
      linear-gradient(90deg, rgba(12,12,12,.76), rgba(12,12,12,.16));
  }
  .hero-wargaming-inner { align-items: start; padding-top: 5.4rem; }
  .hero-wargaming-copy { width: 100%; }
  .hero-wargaming-copy h1 { font-size: clamp(3.35rem, 15.5vw, 5.4rem); max-width: 9ch; }
  .hero-wargaming-copy .lede { font-size: 1rem; line-height: 1.55; max-width: 34rem; }
  .hero-disciplines { margin-top: 1.7rem; }
  .discipline-band-inner { grid-template-columns: 1fr; padding-block: .35rem; }
  .discipline-band-inner span,
  .discipline-band-inner span:first-child,
  .discipline-band-inner span:last-child,
  .discipline-band-inner span:nth-child(3),
  .discipline-band-inner span:nth-child(4) { border-right: 0; border-bottom: 1px solid var(--line); text-align: left; padding: .7rem 0; }
  .discipline-band-inner span:last-child { border-bottom: 0; }
  .product-showcase { grid-template-columns: 1fr; gap: 1.2rem; }
  .product-card-heads { grid-column: auto; display: block; }
  .product-card-heads .product-media { aspect-ratio: 4 / 5; }
  .product-meta { min-height: 128px; grid-template-columns: 1fr; gap: .8rem; }
  .product-meta strong { white-space: normal; }
  .work-image-hero { min-height: 730px; }
  .work-image-hero-media img { object-position: 66% center; }
  .work-image-hero-shade { background: linear-gradient(180deg, rgba(12,12,12,.94), rgba(12,12,12,.72) 50%, rgba(12,12,12,.28) 78%, rgba(12,12,12,.66)); }
  .work-image-hero-inner { align-items: start; }
  .work-image-hero-copy { width: 100%; padding-top: 5.4rem; }
  .work-image-hero-copy h1 { font-size: clamp(3.35rem, 15vw, 5.2rem); }
}
