/* ==========================================================================
   LIMITED CO. FMSPORTSMEDIA  —  Broadcast Replay Control Room stylesheet
   Theme: dim production truck  |  Motif: monitor wall + curved replay desk
   ========================================================================== */

:root {
  --rack-room: #1E2126;
  --scope-white: #EDEDE6;
  --jog-amber: #D9952E;
  --console-deep: #14161A;
  --monitor-cab: #262A31;
  --screen-ink: #101318;
  --bezel-cream: #E8E4D8;
  --record-red: #C4443A;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background-color: #1E2126;
  color: #EDEDE6;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #EDEDE6;
  margin: 0 0 0.6em;
  line-height: 1.2;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p {
  margin: 0 0 1.1em;
  color: #EDEDE6;
}

a {
  color: #D9952E;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img { max-width: 100%; }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-to-body {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #D9952E;
  color: #101318;
  padding: 10px 16px;
  z-index: 60;
}

.skip-to-body:focus {
  left: 12px;
}

/* --------------------------------------------------------------------------
   NAVIGATION  —  MONITOR PANES (.cropgrid)
   -------------------------------------------------------------------------- */

.monitorwall-head {
  background-color: #262A31;
  border-bottom: 3px solid #D9952E;
  box-shadow: 0 2px 0 #14161A;
}

.cropgrid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 24px;
}

.brandplate {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background-color: #14161A;
  border: 2px solid #3A3F48;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px #262A31, 0 2px 0 #0C0E10;
  flex: 0 0 auto;
}

.brandplate-glyph {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 4px solid #D9952E;
  background-color: #262A31;
  position: relative;
  flex: 0 0 auto;
}

.brandplate-glyph::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 3px;
  width: 3px;
  height: 10px;
  background-color: #EDEDE6;
  transform: translateX(-50%);
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(38deg);
}

.brandplate-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brandplate-name {
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #EDEDE6;
  font-size: 0.95rem;
}

.brandplate-sub {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: #D9952E;
  text-transform: uppercase;
}

.pane-set {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: auto;
  align-items: stretch;
}

.navpane {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 14px 18px 16px;
  background-color: #101318;
  border: 2px solid #E8E4D8;
  border-radius: 3px;
  color: #EDEDE6;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.navpane:hover,
.navpane:focus {
  text-decoration: none;
  border-color: #D9952E;
  color: #D9952E;
}

.navpane-num {
  position: absolute;
  top: 3px;
  left: 5px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #EDEDE6;
  letter-spacing: 0.05em;
}

.navpane:nth-child(1) { min-width: 92px; }
.navpane:nth-child(2) { min-width: 112px; transform: rotate(-0.7deg); }
.navpane:nth-child(3) { min-width: 104px; transform: rotate(0.5deg); }
.navpane:nth-child(4) { min-width: 108px; transform: rotate(-0.4deg); }
.navpane:nth-child(5) { min-width: 96px; transform: rotate(0.6deg); }

.navpane-current {
  border-color: #D9952E;
  color: #D9952E;
}

.cropgrid-toggle {
  display: none;
  margin-left: auto;
  padding: 12px 18px;
  background-color: #101318;
  border: 2px solid #E8E4D8;
  color: #EDEDE6;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   HERO  —  REPLAY DESK SCENE (.replaylane)
   -------------------------------------------------------------------------- */

.replaylane {
  background-color: #1E2126;
  padding: 42px 0 0;
}

.replaylane-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.wall-array {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}

.mon-1 { grid-column: 1 / 3; grid-row: 1; }
.mon-2 { grid-column: 3 / 5; grid-row: 1; }
.mon-3 { grid-column: 5 / 7; grid-row: 1; }
.mon-4 { grid-column: 1 / 3; grid-row: 2; }
.mon-5 { grid-column: 3 / 5; grid-row: 2; }
.mon-6 { grid-column: 5 / 7; grid-row: 2; }

.monitor-face {
  position: relative;
  background-color: #101318;
  border: 6px solid #262A31;
  box-shadow: inset 0 0 0 2px #EDEDE6, 0 3px 0 #0C0E10;
  border-radius: 4px;
  min-height: 132px;
  padding: 14px;
  overflow: hidden;
}

.monitor-face-prog {
  background-color: #E8E4D8;
  color: #101318;
  border-color: #262A31;
  box-shadow: inset 0 0 0 2px #101318, 0 3px 0 #0C0E10;
}

.monitor-camtag {
  position: absolute;
  bottom: 6px;
  right: 8px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: #EDEDE6;
  font-weight: 700;
}

.mon-face-prog .monitor-camtag,
.monitor-face-prog .monitor-camtag {
  color: #101318;
}

.stroke-runner {
  position: absolute;
  left: 16px;
  bottom: 22px;
  width: 46px;
  height: 54px;
  border-left: 3px solid #EDEDE6;
  border-bottom: 3px solid #EDEDE6;
  transform: skewX(-14deg);
}

.stroke-arc {
  position: absolute;
  left: 30%;
  top: 24%;
  width: 90px;
  height: 46px;
  border-top: 3px solid #EDEDE6;
  border-radius: 50% 50% 0 0;
  opacity: 1;
}

.stroke-dash {
  position: absolute;
  right: 18px;
  top: 22px;
  width: 60px;
  height: 3px;
  background-color: #EDEDE6;
}

.stroke-dot {
  position: absolute;
  right: 22px;
  top: 38px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #EDEDE6;
}

.timeout-chip {
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #EDEDE6;
  border: 1px solid #EDEDE6;
  padding: 2px 7px;
  border-radius: 2px;
}

.monitor-face-prog .timeout-chip {
  color: #101318;
  border-color: #101318;
}

.prog-headline {
  font-size: clamp(1.4rem, 3.4vw, 2.5rem);
  font-weight: 800;
  color: #101318;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.05;
}

.prog-sub {
  margin: 8px 0 0;
  font-size: 0.82rem;
  color: #262A31;
  letter-spacing: 0.04em;
}

.headline-mid {
  text-align: center;
  padding: 30px 24px 8px;
}

.headline-mid h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 0;
  color: #EDEDE6;
}

.headline-mid .amber-word {
  color: #D9952E;
}

.headline-mid p {
  max-width: 720px;
  margin: 14px auto 0;
  color: #EDEDE6;
  font-size: 1.02rem;
}

/* --- curved replay desk --- */

.replaydesk {
  position: relative;
  margin-top: 26px;
  background-color: #262A31;
  border-top-left-radius: 120px 60px;
  border-top-right-radius: 120px 60px;
  border: 3px solid #14161A;
  border-bottom: none;
  padding: 34px 30px 26px;
  box-shadow: 0 -3px 0 #D9952E, 0 6px 0 #0C0E10;
}

.desk-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-bottom: 24px;
}

.jogwheel {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background-color: #D9952E;
  border: 8px solid #14161A;
  box-shadow: inset 0 0 0 3px #EDEDE6, 0 4px 0 #0C0E10;
  position: relative;
  flex: 0 0 auto;
}

.jogwheel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #262A31;
  transform: translate(-50%, -50%);
}

.jogwheel::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 24px;
  background-color: #14161A;
  transform: translateX(-50%);
}

.jogwheel-sm {
  width: 78px;
  height: 78px;
  border-width: 6px;
}

.jogwheel-sm::before {
  width: 22px;
  height: 22px;
}

.faderbank-mini {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  padding: 10px 16px;
  background-color: #14161A;
  border: 2px solid #3A3F48;
  border-radius: 3px;
  height: 96px;
}

.fader-mini {
  position: relative;
  width: 10px;
  height: 76px;
  background-color: #101318;
  border: 1px solid #3A3F48;
  border-radius: 4px;
  align-self: flex-end;
}

.fader-mini i {
  position: absolute;
  left: -4px;
  width: 18px;
  height: 8px;
  background-color: #EDEDE6;
  border-radius: 2px;
}

.fader-a i { top: 14px; }
.fader-b i { top: 40px; }
.fader-c i { top: 26px; }
.fader-d i { top: 54px; }

.talkback-pad {
  width: 72px;
  height: 52px;
  background-color: #101318;
  border: 2px solid #E8E4D8;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: #EDEDE6;
  text-align: center;
  font-weight: 700;
}

.tally-pair {
  display: flex;
  gap: 12px;
  align-items: center;
}

.tally-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #14161A;
}

.tally-rec { background-color: #C4443A; }
.tally-safe { background-color: #EDEDE6; }

.desk-apron {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 26px;
  align-items: center;
  border-top: 2px solid #14161A;
  padding-top: 22px;
}

.apron-copy p {
  color: #EDEDE6;
  margin: 0 0 0.8em;
}

.apron-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.jog-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background-color: #14161A;
  border: 8px solid #D9952E;
  box-shadow: inset 0 0 0 3px #262A31, 0 4px 0 #0C0E10;
  color: #EDEDE6;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 12px;
}

.jog-cta:hover,
.jog-cta:focus {
  text-decoration: none;
  background-color: #262A31;
  color: #D9952E;
}

.jog-cta span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: #D9952E;
  margin-top: 6px;
  text-transform: uppercase;
}

.quiet-link {
  color: #EDEDE6;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid #D9952E;
  padding-bottom: 2px;
}

/* --------------------------------------------------------------------------
   SECTIONS  —  REPLAY LANES (.spotrack)
   -------------------------------------------------------------------------- */

.band-intro {
  background-color: #1E2126;
  padding: 54px 0 10px;
}

.band-intro .narrow h2 {
  color: #EDEDE6;
}

.band-intro .narrow p {
  color: #EDEDE6;
}

.spotrack {
  background-color: #1E2126;
  padding: 30px 0 64px;
}

.rack-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 30px;
}

.rail-lower {
  margin-left: 6%;
  margin-right: -2%;
}

.lane-module {
  background-color: #262A31;
  border: 2px solid #14161A;
  border-radius: 4px;
  padding: 0 0 18px;
  box-shadow: 0 3px 0 #0C0E10;
  position: relative;
  overflow: hidden;
}

.lane-module-locked {
  border-color: #D9952E;
}

.lane-timeline {
  background-color: #101318;
  padding: 22px 18px 16px;
  border-bottom: 2px solid #14161A;
  position: relative;
  height: 92px;
}

.lane-track {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 46px;
  height: 3px;
  background-color: #EDEDE6;
}

.clip-block {
  position: absolute;
  top: 36px;
  height: 23px;
  background-color: #EDEDE6;
  border: 1px solid #101318;
  border-radius: 2px;
}

.clip-a { left: 18px; width: 34%; }
.clip-b { left: 62%; width: 20%; }

.playhead {
  position: absolute;
  top: 30px;
  width: 3px;
  height: 35px;
  background-color: #D9952E;
}

.playhead::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 11px;
  height: 8px;
  background-color: #D9952E;
  border-radius: 1px;
}

.ph-1 { left: 22%; }
.ph-2 { left: 40%; }
.ph-3 { left: 58%; }
.ph-4 { left: 72%; }
.ph-5 { left: 33%; }
.ph-6 { left: 84%; }

.lane-labelstrip {
  padding: 16px 18px 0;
}

.lane-labelstrip h3 {
  color: #EDEDE6;
  margin-bottom: 0.4em;
  font-size: 1.12rem;
}

.lane-labelstrip p {
  color: #EDEDE6;
  font-size: 0.9rem;
  margin: 0 0 0.9em;
}

.lane-rtag {
  position: absolute;
  top: 10px;
  right: 12px;
  background-color: #D9952E;
  color: #101318;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 2px;
}

.lane-lockedstamp {
  display: inline-block;
  margin-top: 6px;
  border: 2px solid #D9952E;
  color: #D9952E;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 3px 9px;
  border-radius: 2px;
  transform: rotate(-2deg);
}

.lane-more {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: #D9952E;
  text-transform: uppercase;
  border-bottom: 1px solid #D9952E;
}

/* --------------------------------------------------------------------------
   STOPWATCH ACCENT STRIP
   -------------------------------------------------------------------------- */

.stopwatch-band {
  background-color: #14161A;
  border-top: 2px solid #D9952E;
  border-bottom: 2px solid #D9952E;
  padding: 20px 0;
}

.stopwatch-row {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.stopwatch-face {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 4px solid #EDEDE6;
  background-color: #101318;
  position: relative;
  flex: 0 0 auto;
}

.stopwatch-face::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 26px;
  background-color: #D9952E;
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(52deg);
}

.lap-tick {
  position: absolute;
  width: 3px;
  height: 9px;
  background-color: #D9952E;
  left: 50%;
  top: 2px;
  transform-origin: 50% 35px;
}

.lap-t1 { transform: translateX(-50%) rotate(0deg); }
.lap-t2 { transform: translateX(-50%) rotate(120deg); }
.lap-t3 { transform: translateX(-50%) rotate(240deg); }

.stopwatch-copy {
  color: #EDEDE6;
  font-size: 1rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   CONTENT BANDS (shared secondary content)
   -------------------------------------------------------------------------- */

.band-plain {
  background-color: #1E2126;
  padding: 56px 0;
}

.band-wells {
  background-color: #14161A;
  padding: 56px 0;
}

.band-cab {
  background-color: #262A31;
  padding: 56px 0;
}

.band-plain h2,
.band-wells h2,
.band-cab h2 {
  color: #EDEDE6;
}

.prose-block p {
  color: #EDEDE6;
}

.cols-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.well-panel {
  background-color: #101318;
  border: 2px solid #3A3F48;
  border-radius: 4px;
  padding: 24px 22px;
}

.well-panel h3 {
  color: #D9952E;
}

.well-panel p {
  color: #EDEDE6;
}

.cream-panel {
  background-color: #E8E4D8;
  border: 3px solid #262A31;
  border-radius: 4px;
  padding: 26px 24px;
  box-shadow: 0 3px 0 #0C0E10;
}

.cream-panel h3 {
  color: #101318;
}

.cream-panel p {
  color: #101318;
}

.cream-panel a {
  color: #101318;
  border-bottom: 2px solid #D9952E;
}

.stat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 24px 0 0;
}

.stat-cell {
  flex: 1 1 180px;
  background-color: #262A31;
  border: 2px solid #3A3F48;
  border-radius: 4px;
  padding: 18px;
}

.stat-cell strong {
  display: block;
  color: #D9952E;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.stat-cell span {
  color: #EDEDE6;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.process-cell {
  background-color: #101318;
  border-top: 4px solid #D9952E;
  border-radius: 3px;
  padding: 20px 18px;
}

.process-cell h4 {
  color: #EDEDE6;
  font-size: 0.98rem;
  margin-bottom: 0.4em;
}

.process-cell p {
  color: #EDEDE6;
  font-size: 0.86rem;
  margin: 0;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #EDEDE6;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background-color: #D9952E;
  border: 2px solid #101318;
  border-radius: 2px;
}

.faq-well {
  background-color: #101318;
  border: 2px solid #3A3F48;
  border-radius: 4px;
  margin-top: 18px;
}

.faq-q {
  width: 100%;
  text-align: left;
  background-color: #262A31;
  border: none;
  border-bottom: 1px solid #3A3F48;
  color: #EDEDE6;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 18px;
  cursor: pointer;
  font-family: inherit;
}

.faq-q:hover,
.faq-q:focus {
  color: #D9952E;
}

.faq-a {
  padding: 16px 18px;
  border-bottom: 1px solid #2A2E35;
}

.faq-a p {
  margin: 0;
  color: #EDEDE6;
}

.faq-a[hidden] {
  display: none;
}

/* --------------------------------------------------------------------------
   CONTACT PAGE PIECES
   -------------------------------------------------------------------------- */

.form-shell {
  background-color: #262A31;
  border: 2px solid #14161A;
  border-radius: 4px;
  padding: 28px 26px;
  box-shadow: 0 3px 0 #0C0E10;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  margin-bottom: 6px;
  color: #EDEDE6;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  background-color: #101318;
  border: 2px solid #3A3F48;
  border-radius: 3px;
  color: #EDEDE6;
  font-size: 1rem;
  font-family: inherit;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #D9952E;
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  display: inline-block;
  background-color: #D9952E;
  color: #101318;
  border: 2px solid #14161A;
  border-radius: 3px;
  padding: 13px 26px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
}

.form-submit:hover,
.form-submit:focus {
  background-color: #EDEDE6;
}

.form-note {
  margin-top: 14px;
  font-size: 0.84rem;
  color: #EDEDE6;
}

.info-plate {
  background-color: #101318;
  border: 2px solid #3A3F48;
  border-radius: 4px;
  padding: 22px;
  margin-bottom: 18px;
}

.info-plate h3 {
  color: #D9952E;
  margin-bottom: 0.4em;
}

.info-plate p {
  color: #EDEDE6;
  margin: 0;
}

.info-plate .phone-big {
  color: #EDEDE6;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.contact-cols {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 34px;
}

/* --------------------------------------------------------------------------
   FOOTER  —  EQUIPMENT RACK (.mediadesk)
   -------------------------------------------------------------------------- */

.mediadesk {
  background-color: #14161A;
  border-top: 3px solid #D9952E;
  padding: 44px 0 0;
}

.rack-body {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 32px;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 26px;
  align-items: start;
}

.patchplate {
  background-color: #262A31;
  border: 2px solid #14161A;
  border-radius: 4px;
  padding: 16px;
  box-shadow: inset 0 0 0 1px #3A3F48;
}

.patchplate h4 {
  color: #EDEDE6;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.port-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.port {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #101318;
  border: 1px solid #3A3F48;
  border-radius: 2px;
}

.port-live {
  background-color: #D9952E;
  border-color: #D9952E;
}

.cable-run {
  width: 2px;
  height: 30px;
  background-color: #3A3F48;
  margin: 10px auto 0;
}

.patchplate-side {
  position: relative;
}

.patchplate-side::after {
  content: "";
  position: absolute;
  right: -34px;
  top: 40px;
  width: 34px;
  height: 60px;
  border-top: 3px solid #3A3F48;
  border-right: 3px solid #3A3F48;
  border-bottom: 3px solid #3A3F48;
  border-radius: 0 8px 8px 0;
}

.rack-center {
  text-align: center;
  padding: 6px 0;
}

.rack-nameplate {
  display: inline-block;
  background-color: #262A31;
  border: 2px solid #3A3F48;
  border-radius: 3px;
  padding: 14px 26px;
  box-shadow: inset 0 0 0 1px #101318, 0 2px 0 #0C0E10;
  margin-bottom: 16px;
}

.rack-nameplate strong {
  display: block;
  color: #EDEDE6;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
}

.rack-nameplate span {
  display: block;
  color: #D9952E;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-top: 5px;
}

.rack-blurb {
  color: #EDEDE6;
  max-width: 520px;
  margin: 0 auto 20px;
  font-size: 0.92rem;
}

.chip-run {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footchip {
  display: inline-block;
  background-color: #101318;
  border: 1px solid #E8E4D8;
  border-radius: 3px;
  padding: 9px 15px;
  color: #EDEDE6;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footchip:hover,
.footchip:focus {
  border-color: #D9952E;
  color: #D9952E;
  text-decoration: none;
}

.plinthstrip {
  background-color: #101318;
  border-top: 2px solid #262A31;
  padding: 18px 24px;
  text-align: center;
}

.plinthstrip p {
  margin: 0 0 6px;
  color: #EDEDE6;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.plinthstrip .plinth-year {
  color: #D9952E;
  font-weight: 700;
}

.plinth-glyph {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 3px solid #D9952E;
  vertical-align: -1px;
  margin-right: 6px;
}

/* --------------------------------------------------------------------------
   SCROLL REVEAL
   -------------------------------------------------------------------------- */

.reveal-item {
  opacity: 1;
  transform: none;
  transition: transform 600ms ease, opacity 600ms ease;
}

html.js-on .reveal-item {
  opacity: 1;
  transform: translateY(18px);
}

html.js-on .reveal-item.is-shown {
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */

@media (max-width: 980px) {
  .rack-body {
    grid-template-columns: 1fr;
  }
  .patchplate-side::after {
    display: none;
  }
  .contact-cols {
    grid-template-columns: 1fr;
  }
  .desk-apron {
    grid-template-columns: 1fr;
  }
  .apron-actions {
    flex-direction: row;
    justify-content: flex-start;
  }
  .process-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .cropgrid-toggle {
    display: inline-block;
  }
  .pane-set {
    display: none;
    width: 100%;
    flex-direction: column;
    margin-left: 0;
  }
  .pane-set.is-open {
    display: flex;
  }
  .navpane {
    width: 100%;
    transform: none !important;
  }
  .rail-lower {
    margin-left: 0;
    margin-right: 0;
  }
  .rack-rail {
    grid-template-columns: 1fr;
  }
  .wall-array {
    grid-template-columns: 1fr 1fr;
  }
  .mon-1, .mon-2, .mon-3, .mon-4, .mon-5, .mon-6 {
    grid-column: auto;
    grid-row: auto;
  }
  .cols-two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .process-row {
    grid-template-columns: 1fr;
  }
  .stopwatch-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .desk-top {
    gap: 20px;
  }
  .jogwheel {
    width: 88px;
    height: 88px;
  }
  .brandplate {
    flex: 1 1 100%;
  }
}

/* --------------------------------------------------------------------------
   NOSCRIPT SAFETY
   -------------------------------------------------------------------------- */

.no-js-note {
  display: none;
}
