:root {
  --void: #070708;
  --crimson: #e20d1c;
  --plate: #111113;
  --steel: #161618;
  --line: #2c2c30;
  --rivet: #8d8d93;
  --muted: #b7b7bb;
  --paper: #f4f4f4;
  --steel-line: var(--line);
  --head: "Barlow Condensed", sans-serif;
  --bone: var(--paper);
  --bone-dim: var(--muted);
  --header-h: 104px;
  --wrap: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--void);
  color: var(--paper);
}

body {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  line-height: 1.55;
  min-height: 100vh;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
.display {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0;
}

.wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin: 0 auto;
}

/* Header */

.top {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: #000;
  border-bottom: 1px solid #111;
}

.header-inner {
  height: 100%;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-inner { min-height: 104px; }

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

.brand img {
  height: 88px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
  filter: drop-shadow(0 0 14px rgba(226,13,28,0.30));
}

.brand-word {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #f4f4f4;
  text-shadow: 0 0 18px rgba(226,13,28,0.35), 0 2px 6px rgba(0,0,0,0.8);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}

.nav a:hover,
.nav a.is-on {
  border-bottom-color: var(--crimson);
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #3a3a3e;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #fff;
}

/* Hero */

.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7, 7, 8, 0.78) 0%, rgba(7, 7, 8, 0.38) 38%, rgba(7, 7, 8, 0.12) 70%),
    #070708 url("assets/banner.png") center / cover no-repeat;
  padding: 72px 0 80px;
}

.hero-copy {
  width: min(640px, 100%);
}

.kicker {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: #fff;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 86px);
  max-width: 14ch;
}

.lede {
  margin: 18px 0 0;
  font-size: 18px;
  color: #fff;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 52px;
  background: var(--crimson);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(226, 13, 28, 0.42);
}

.hero .cta {
  width: 220px;
  height: 52px;
  flex: 0 0 220px;
}

.cta:hover {
  filter: brightness(1.06);
}

.cta:disabled {
  opacity: 0.65;
  cursor: wait;
}

/* Service plates */

.plates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 28px 0 8px;
}

.plate {
  background: var(--steel);
  border-top: 2px solid var(--crimson);
  padding: 22px 22px 24px;
}

.plate h2,
.plate h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.plate p {
  margin: 0;
  color: #ececec;
}

/* Rivets */

.rivet {
  position: relative;
  height: 1px;
  background: var(--line);
  margin: 28px 0;
}

.rivet::before,
.rivet::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rivet);
  box-shadow: inset 0 0 0 1px #4a4a50;
  transform: translateY(-50%);
}

.rivet::before {
  left: 0;
}

.rivet::after {
  right: 0;
}

.rivet.mid::after {
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
}

.rivet.grow {
  flex: 1;
  margin: 0;
  min-width: 40px;
}

/* Work */

.work-block {
  padding: 12px 0 40px;
}

.page-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 36px 0 22px;
}

.page-head h1 {
  font-size: clamp(42px, 6vw, 64px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: start;
}

.tile {
  position: relative;
  display: block;
  color: inherit;
  margin: 0;
}

.tile[hidden],
.tile.is-off {
  display: none;
}

.tile-pic {
  position: relative;
  aspect-ratio: 1;
  background: #141416;
  border: 1px solid #3a3a3e;
}

.tile-pic::before,
.tile-pic::after,
.tile-pic i {
  font-style: normal;
}

.tile-pic .mark-bl,
.tile-pic .mark-br {
  display: block;
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: #fff;
  border-style: solid;
  z-index: 1;
  pointer-events: none;
}

.tile-pic::before {
  top: 5px;
  left: 5px;
  border-width: 1px 0 0 1px;
}

.tile-pic::after {
  top: 5px;
  right: 5px;
  border-width: 1px 1px 0 0;
}

.tile-pic .mark-bl {
  bottom: 5px;
  left: 5px;
  border-width: 0 0 1px 1px;
}

.tile-pic .mark-br {
  bottom: 5px;
  right: 5px;
  border-width: 0 1px 1px 0;
}

.tile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-pic.pair img {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
}

.tile-pic.pair img:first-of-type {
  left: 0;
}

.tile-pic.pair img:last-of-type {
  right: 0;
}

.tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  background: var(--crimson);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 7px;
}

.tag.ghost {
  background: rgba(255, 255, 255, 0.92);
  color: #111;
}

.cap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-top: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.cap-price {
  white-space: nowrap;
}

.more {
  display: block;
  width: fit-content;
  margin: 28px auto 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
}

/* USA strip */

.usa {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 0 4px;
}

.usa p {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

/* Footer */

.foot {
  padding: 36px 0 28px;
}

.foot-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-brand img {
  height: 76px;
  width: auto;
  object-fit: contain;
}

.foot-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.foot-nav a {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.foot-copy {
  font-size: 13px;
  color: #9a9a9e;
  margin: 0;
  justify-self: end;
}

.foot-who {
  margin: 22px 0 0;
  text-align: center;
  font-size: 14px;
  color: #ddd;
}

.foot-who a {
  color: #ddd;
}

/* Inner pages */

.page {
  padding: 28px 0 20px;
}

.center-head {
  text-align: center;
  padding: 20px 0 8px;
}

.center-head .kicker {
  color: var(--muted);
}

.center-head h1 {
  font-size: clamp(44px, 7vw, 72px);
  margin-top: 8px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.about-split {
  grid-template-areas:
    "copy frame"
    "ctas frame";
  align-items: center;
}

.about-split .split-copy { grid-area: copy; }
.about-split .frame { grid-area: frame; }
.about-split .about-ctas { grid-area: ctas; margin-top: 8px; }

.split-copy h1 {
  font-size: clamp(44px, 6vw, 72px);
  margin: 8px 0 14px;
}

.need h2 {
  font-size: 20px;
  margin: 8px 0 12px;
}

.need ul {
  margin: 0;
  padding-left: 1.1em;
}

.need li {
  margin: 0.35em 0;
}

.hard {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 28px 0 0;
}

.frame {
  position: relative;
  border: 1px solid var(--crimson);
  background: #0c0c0e;
  padding: 10px;
}

.frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #070708;
}

.frame .rivet-sq {
  position: absolute;
  width: 7px;
  height: 7px;
  background: #d8d8dc;
  box-shadow: 0 0 0 1px #6a6a70;
}

.frame .rivet-sq.tl { top: 4px; left: 4px; }
.frame .rivet-sq.tr { top: 4px; right: 4px; }
.frame .rivet-sq.bl { bottom: 4px; left: 4px; }
.frame .rivet-sq.br { bottom: 4px; right: 4px; }

/* Forms */

.form-plate {
  position: relative;
  background: var(--steel);
  padding: 28px 26px 26px;
  border-top: 2px solid var(--crimson);
}

.form-plate.l-edge {
  border-left: 2px solid var(--crimson);
}

.form-plate .rivet-sq {
  position: absolute;
  width: 7px;
  height: 7px;
  background: #d8d8dc;
  box-shadow: 0 0 0 1px #6a6a70;
}

.form-plate .rivet-sq.tl { top: 6px; left: 6px; }
.form-plate .rivet-sq.tr { top: 6px; right: 6px; }
.form-plate .rivet-sq.bl { bottom: 6px; left: 6px; }
.form-plate .rivet-sq.br { bottom: 6px; right: 6px; }

.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.req {
  color: var(--crimson);
}

.field input,
.field textarea {
  width: 100%;
  background: #0b0b0d;
  border: 1px solid #3a3a3e;
  padding: 11px 12px;
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: #6a6a70;
}

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

.toggles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.toggles label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 6px;
  background: #0b0b0d;
  border: 1px solid #3a3a3e;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.toggles input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggles input:checked + span,
.toggles label:has(input:checked) {
  border-color: var(--crimson);
  box-shadow: inset 0 0 0 1px var(--crimson);
}

.drop {
  border: 1px dashed #8a8a90;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #0b0b0d;
  text-align: center;
  padding: 20px;
}

.drop.is-over {
  border-color: var(--crimson);
}

.drop p {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.browse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  border: 1px solid #cfcfd4;
  background: #161618;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-plate .cta {
  margin-top: 20px;
}

.note {
  margin: 16px 0 0;
  font-size: 15px;
}

.note.ok {
  color: #d8d8d8;
}

.note.bad {
  color: #ffb3b8;
}

/* Filters */

.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 8px;
  margin: 0 0 22px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.filters button {
  background: none;
  border: 0;
  padding: 0 0 3px;
  cursor: pointer;
  color: #fff;
  border-bottom: 1px solid transparent;
}

.filters button.is-on {
  border-bottom-color: var(--crimson);
}

.filters .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--crimson);
}

/* FAQ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
  margin: 8px auto 20px;
}

.faq {
  background: var(--steel);
  border-top: 2px solid var(--crimson);
  border-left: 2px solid var(--crimson);
  padding: 20px 22px 22px;
}

.faq h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.faq p {
  margin: 0;
}

.faq a {
  border-bottom: 1px solid var(--crimson);
}

/* Contact facts */

.who-name {
  font-size: clamp(40px, 6vw, 64px);
  margin: 6px 0 4px;
}

.role {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 8px;
}

.facts {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}

.facts dt {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 12px;
  margin: 0 0 4px;
}

.facts dd {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.facts a {
  border-bottom: 1px solid var(--crimson);
}

/* Mobile */

@media (max-width: 980px) {
  :root {
    --header-h: 84px;
  }

  .wrap {
    width: min(var(--wrap), calc(100% - 32px));
  }

  .header-inner { min-height: 84px; }

  .burger {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #000;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px 24px;
    gap: 16px;
    border-bottom: 1px solid #222;
  }

  body.nav-open .nav {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 48px 0 56px;
    background:
      linear-gradient(180deg, rgba(7, 7, 8, 0.2) 0%, rgba(7, 7, 8, 0.72) 70%),
      #070708 url("assets/banner.png") center / cover no-repeat;
  }

  .hero h1 {
    max-width: none;
  }

  .cta-row {
    width: 100%;
  }

  .cta-row .cta {
    flex: 1;
    width: auto;
  }

  .hero .cta-row .cta {
    flex: 0 0 220px;
    width: 220px;
    height: 52px;
  }

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

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

  .usa {
    flex-direction: column;
    gap: 10px;
  }

  .usa p {
    white-space: normal;
    padding: 0 8px;
  }

  .usa .rivet {
    width: 100%;
  }

  .foot-row {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .foot-nav {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .foot-copy {
    justify-self: center;
  }

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

  .about-split {
    grid-template-areas:
      "copy"
      "frame"
      "ctas";
  }

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

  .form-plate .cta,
  .about-ctas .cta {
    width: 100%;
  }

  .about-ctas {
    width: 100%;
  }

  .brand img { height: 66px; }
  .brand-word { font-size: 26px; }
  .footer-brand img { height: 64px; }

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

  .shop-grid .tag {
    background: rgba(0, 0, 0, 0.72);
  }

  .shop-grid .tag::before {
    content: "_";
  }

  .shop-grid .tag::first-letter {
    /* mobile shop tags keep service name; underscore via attr in HTML if needed */
  }
}

@media (max-width: 520px) {
  :root {
    --header-h: 74px;
  }

  .header-inner { min-height: 74px; }
  .brand img { height: 58px; }
  .brand-word { font-size: 22px; letter-spacing: .04em; }
  .footer-brand img { height: 56px; }

  .cta-row {
    flex-direction: row;
  }
}

/* ----- UV Coming November ----- */
.uv-soon { min-height: min(70vh, 640px); display: flex; align-items: center; }
.uv-soon .wrap { display: flex; justify-content: center; }
.uv-soon-card { width: min(640px, 100%); padding: 56px 48px; text-align: center; background: linear-gradient(#14151a, #0c0c0f); border: 1px solid var(--steel-line); box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 18px 40px rgba(0,0,0,0.45); }
.uv-soon-card .kicker { margin-bottom: 12px; }
.uv-soon-card h1 { font-family: var(--head); font-weight: 700; font-size: clamp(42px, 6vw, 64px); letter-spacing: 0.04em; text-transform: uppercase; color: var(--bone); line-height: 0.95; }
.uv-soon-status { margin-top: 22px; font-family: var(--head); font-weight: 700; font-size: 28px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--crimson); text-shadow: 0 0 18px rgba(226,13,28,0.45); }
.uv-soon-note { margin-top: 16px; font-size: 16px; color: var(--bone-dim); }
.uv-soon-card .cta-row { justify-content: center; margin-top: 32px; }
.cta-ghost { background: transparent !important; border: 1px solid var(--crimson); color: var(--bone) !important; box-shadow: none !important; }
.cta-ghost:hover { background: rgba(226,13,28,0.12) !important; }
@media (max-width: 520px) { .uv-soon-card { padding: 40px 24px; } .uv-soon-status { font-size: 22px; letter-spacing: 0.12em; } .uv-soon-card .cta { width: 100%; } }

.uv-soon-card.rivet-corners {
  position: relative;
}

.uv-soon-card .rivet-sq {
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: var(--rivet);
  border-style: solid;
  pointer-events: none;
}

.uv-soon-card .rivet-sq.tl { top: 8px; left: 8px; border-width: 1px 0 0 1px; }
.uv-soon-card .rivet-sq.tr { top: 8px; right: 8px; border-width: 1px 1px 0 0; }
.uv-soon-card .rivet-sq.bl { bottom: 8px; left: 8px; border-width: 0 0 1px 1px; }
.uv-soon-card .rivet-sq.br { bottom: 8px; right: 8px; border-width: 0 1px 1px 0; }

.uv-soon-card .uv-soon-status { color: var(--crimson); }
.uv-soon-card .uv-soon-note { color: var(--bone-dim); }
