:root {
  --ink: #0b0b0b;
  --ink-2: #141414;
  --ink-3: #1c1c1c;
  --steel: #8d8d8d;
  --chrome: #e8e8e8;
  --paper: #f3f1ea;
  --paper-2: #e7e2d6;
  --line: #2a2a2a;
  --line-soft: #d5d0c4;
  --yellow: #f5c400;
  --yellow-ink: #111;
  --danger-soft: #ffef99;
  --max: 1180px;
  --gutter: clamp(1rem, 3.5vw, 2rem);
  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --body: "Barlow", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
.phone__num,
.band__value,
.panel__num {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.wrap {
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--yellow);
  color: var(--yellow-ink);
  padding: 0.65rem 0.9rem;
  font-weight: 700;
}

.skip:focus {
  top: 1rem;
}

/* ——— Top bar ——— */
.top {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 11, 11, 0.94);
  color: var(--chrome);
  border-bottom: 3px solid var(--yellow);
}

.top__inner {
  min-height: 4.35rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.top__brand img {
  width: 2.7rem;
  height: auto;
  flex: 0 0 auto;
}

.top__name {
  display: none;
  flex-direction: column;
  line-height: 1.05;
  text-transform: uppercase;
  font-family: var(--display);
}

.top__name span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--steel);
}

.top__name strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--yellow);
}

.top__nav {
  display: none;
  gap: 1.35rem;
  margin-left: auto;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.top__nav a {
  color: var(--steel);
}

.top__nav a:hover,
.top__nav a:focus-visible {
  color: var(--yellow);
}

.top__call {
  margin-left: auto;
  flex: 0 0 auto;
}

.top__call .btn__kicker {
  display: none;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.85rem;
  padding: 0.65rem 1.05rem;
  border: 2px solid transparent;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}

.btn:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.btn--solid {
  background: var(--yellow);
  color: var(--yellow-ink);
  border-color: var(--yellow);
}

.btn--solid:hover {
  background: #ffd84a;
  border-color: #ffd84a;
}

.btn--line {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn--line:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn--xl {
  min-height: 3.35rem;
  padding-inline: 1.25rem;
  font-size: 1rem;
}

.top .btn--line,
.call .btn--line {
  color: var(--chrome);
  border-color: rgba(232, 232, 232, 0.45);
}

.top .btn--line:hover,
.call .btn--line:hover {
  background: var(--chrome);
  color: var(--ink);
  border-color: var(--chrome);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--chrome);
  overflow: hidden;
  padding: clamp(2.4rem, 6vw, 4.5rem) 0 clamp(2.8rem, 7vw, 5rem);
}

.hero__rail {
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--yellow);
}

.hero__grid {
  position: relative;
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

.stamp {
  margin: 0 0 0.85rem;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stamp--on-dark {
  color: var(--yellow);
}

.hero h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(3.1rem, 11vw, 6.4rem);
  text-transform: uppercase;
  max-width: 9ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero__lead {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  color: #c9c9c9;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
}

.hero__lead strong {
  color: var(--yellow);
  font-weight: 700;
}

.hero__cta {
  display: grid;
  gap: 0.7rem;
}

.hero__cta .btn {
  width: 100%;
}

.hero .btn--line {
  color: var(--chrome);
  border-color: rgba(232, 232, 232, 0.4);
}

.hero .btn--line:hover {
  background: var(--chrome);
  color: var(--ink);
  border-color: var(--chrome);
}

.hero__mark {
  display: grid;
  gap: 0.85rem;
}

.mark-card {
  background:
    radial-gradient(circle at 50% 40%, rgba(245, 196, 0, 0.16), transparent 58%),
    var(--ink-2);
  border: 1px solid var(--line);
  padding: clamp(1rem, 3vw, 1.6rem);
  display: grid;
  place-items: center;
}

.mark-card img {
  width: min(100%, 18rem);
}

.stat-strip {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--ink-2);
}

.stat-strip > div {
  padding: 0.85rem 0.7rem;
  border-right: 1px solid var(--line);
}

.stat-strip > div:last-child {
  border-right: 0;
}

.stat-strip dt {
  margin: 0 0 0.25rem;
  color: var(--steel);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stat-strip dd {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--chrome);
}

.stat-strip b {
  color: var(--yellow);
  font-weight: 800;
}

/* ——— Work split ——— */
.work {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: var(--paper);
}

.work__head {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 28rem;
}

.work__head h2 {
  margin: 0;
  font-size: clamp(2.3rem, 6vw, 3.6rem);
  text-transform: uppercase;
}

.split {
  display: grid;
  gap: 0;
  border: 2px solid var(--ink);
  background: var(--ink);
}

.panel {
  background: var(--paper);
  padding: clamp(1.4rem, 3.5vw, 2.2rem);
  position: relative;
}

.panel--alt {
  background: var(--paper-2);
}

.panel__num {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  color: rgba(11, 11, 11, 0.08);
  line-height: 1;
  pointer-events: none;
}

.panel h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  text-transform: uppercase;
  max-width: 12ch;
}

.panel p {
  margin: 0 0 1.15rem;
  max-width: 34rem;
  color: #333;
}

.ticks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.ticks li {
  position: relative;
  padding-left: 1.35rem;
  font-weight: 600;
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.7rem;
  height: 0.2rem;
  background: var(--yellow);
  box-shadow: 0 0 0 1px var(--ink);
}

/* ——— 30" band ——— */
.band {
  background: var(--yellow);
  color: var(--yellow-ink);
  border-block: 3px solid var(--ink);
  padding: clamp(1.5rem, 4vw, 2.4rem) 0;
}

.band__inner {
  display: grid;
  gap: 0.35rem;
  align-items: end;
}

.band__label {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.band__value {
  margin: 0;
  font-size: clamp(5rem, 18vw, 9rem);
  line-height: 0.85;
}

.band__value span {
  font-size: 0.55em;
  vertical-align: super;
}

.band__note {
  margin: 0.35rem 0 0;
  max-width: 28rem;
  font-weight: 600;
  font-size: 1.05rem;
}

/* ——— Shop ——— */
.shop {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: var(--ink-2);
  color: var(--chrome);
}

.shop__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
}

.shop__copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.3rem, 6vw, 3.5rem);
  text-transform: uppercase;
  max-width: 12ch;
}

.shop__copy h2 em {
  font-style: normal;
  color: var(--yellow);
}

.shop__copy p:last-child {
  margin: 0;
  max-width: 34rem;
  color: #bdbdbd;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
}

.steps li {
  display: grid;
  gap: 0.3rem;
  padding: 1.15rem 1.2rem;
  border-bottom: 1px solid var(--line);
  background: var(--ink-3);
  counter-increment: step;
}

.steps li:last-child {
  border-bottom: 0;
}

.steps strong {
  font-family: var(--display);
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--yellow);
}

.steps span {
  color: #b7b7b7;
}

/* ——— Call ——— */
.call {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--paper);
}

.call__box {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background: var(--ink);
  color: var(--chrome);
  border: 3px solid var(--yellow);
}

.call__text h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  text-transform: uppercase;
}

.call__text p:last-child {
  margin: 0;
  color: #c4c4c4;
  max-width: 30rem;
}

.phone-list {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.phone {
  display: grid;
  gap: 0.2rem;
}

.phone__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

.phone__num {
  font-size: clamp(2.2rem, 7vw, 3.4rem);
  color: var(--yellow);
  text-transform: uppercase;
}

.phone:hover .phone__num,
.phone:focus-visible .phone__num {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.call__btns {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

.call__btns .btn {
  width: 100%;
}

.note {
  margin: 0;
  color: var(--steel);
  font-size: 0.92rem;
}

/* ——— Footer ——— */
.foot {
  background: #070707;
  color: var(--steel);
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 1.8rem;
}

.foot__inner {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.foot__brand {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.foot__brand img {
  width: 3.4rem;
}

.foot__brand strong {
  display: block;
  color: var(--chrome);
  font-family: var(--display);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.foot__brand p {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
}

.foot__phones {
  display: grid;
  gap: 0.35rem;
}

.foot__phone {
  color: var(--yellow);
  font-weight: 700;
  font-size: 1.05rem;
}

.foot__phone:hover,
.foot__phone:focus-visible {
  text-decoration: underline;
}

.foot__copy {
  margin: 0;
  font-size: 0.88rem;
}

/* ——— Breakpoints ——— */
@media (min-width: 640px) {
  .top__name {
    display: flex;
  }

  .top__call .btn__kicker {
    display: inline;
    opacity: 0.7;
    font-weight: 600;
  }

  .top__call .btn__main::before {
    content: none;
  }

  .hero__cta {
    grid-template-columns: auto auto;
    justify-content: start;
  }

  .hero__cta .btn {
    width: auto;
  }

  .call__btns {
    grid-template-columns: auto auto;
    justify-content: start;
  }

  .call__btns .btn {
    width: auto;
  }
}

@media (min-width: 860px) {
  .top__nav {
    display: flex;
  }

  .top__call {
    margin-left: 0;
  }

  .hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }

  .split {
    grid-template-columns: 1fr 1fr;
  }

  .panel--alt {
    border-left: 2px solid var(--ink);
  }

  .band__inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 1.5rem;
    align-items: center;
  }

  .band__label {
    grid-column: 1;
    grid-row: 1;
  }

  .band__value {
    grid-column: 1;
    grid-row: 2;
  }

  .band__note {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    margin: 0;
    font-size: 1.2rem;
  }

  .shop__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .call__box {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 2rem;
  }

  .foot__inner {
    grid-template-columns: 1fr auto auto;
    gap: 1.5rem;
  }

  .foot__copy {
    justify-self: end;
  }
}

@media (max-width: 380px) {
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .stat-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-strip > div:last-child {
    border-bottom: 0;
  }

  .top__call .btn__main {
    font-size: 0.82rem;
  }
}
