@font-face {
  font-family: "Stepps Barlow";
  src: url("assets/fonts/barlow-condensed-600.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "Stepps Barlow";
  src: url("assets/fonts/barlow-condensed-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Stepps Barlow";
  src: url("assets/fonts/barlow-condensed-900.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 800 900;
}
@font-face {
  font-family: "Stepps Barlow";
  src: url("assets/fonts/barlow-condensed-900-italic.woff2") format("woff2");
  font-display: swap;
  font-style: italic;
  font-weight: 700 900;
}
@font-face {
  font-family: "Stepps Inter";
  src: url("assets/fonts/inter-variable.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

:root {
  --ink: #0b0b0d;
  --ink-soft: #17171b;
  --red: #d51f2b;
  --red-bright: #f22b38;
  --silver: #d9dde1;
  --silver-dark: #a7adb4;
  --paper: #f3efe7;
  --white: #fff;
  --line: rgba(255, 255, 255, .18);
  --max: 1260px;
  --display: "Stepps Barlow", "Arial Narrow", sans-serif;
  --body: "Stepps Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
::selection { color: var(--white); background: var(--red); }

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 1000;
  padding: .7rem 1rem;
  color: var(--white);
  background: var(--red);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.concept-bar {
  display: flex;
  justify-content: center;
  gap: .7rem;
  padding: .5rem 1rem;
  color: var(--ink);
  background: repeating-linear-gradient(135deg, #d9dde1 0 14px, #c6cbd0 14px 28px);
  border-bottom: 2px solid var(--ink);
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.concept-bar span::after { content: "·"; margin-left: .7rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: .65rem max(1rem, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: rgba(11, 11, 13, .96);
  border-bottom: 4px solid var(--red);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .22);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 5px;
  background: repeating-linear-gradient(90deg, transparent 0 26px, var(--red) 26px 70px, transparent 70px 82px);
}
.brand { width: 168px; height: 66px; overflow: hidden; }
.brand img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.5rem); }
.site-nav a {
  position: relative;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav > a:not(.nav-call)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.4rem;
  height: 3px;
  background: var(--red);
  transition: right .18s ease;
}
.site-nav > a:hover::after, .site-nav > a:focus-visible::after { right: 0; }
.nav-call {
  padding: .75rem 1rem;
  color: var(--white);
  background: var(--red);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.nav-call span { margin-left: .35rem; }
.nav-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .72fr);
  min-height: min(800px, calc(100vh - 128px));
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 35% 0 0;
  z-index: -1;
  opacity: .22;
  background-image:
    linear-gradient(30deg, transparent 47%, rgba(255,255,255,.12) 48% 52%, transparent 53%),
    linear-gradient(150deg, transparent 47%, rgba(255,255,255,.08) 48% 52%, transparent 53%);
  background-size: 58px 96px;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 780px;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 6vw, 6.5rem);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 1.4rem;
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow span { width: 42px; height: 4px; background: var(--red); transform: skewX(-25deg); }
.eyebrow--dark { color: var(--ink); }
.hero h1, .section h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: .83;
  text-transform: uppercase;
}
.hero h1 { max-width: 760px; font-size: clamp(4.5rem, 8.2vw, 8rem); }
.hero h1 em, .section h2 em {
  color: var(--red-bright);
  font-style: italic;
  text-shadow: 3px 3px 0 rgba(255, 255, 255, .16);
}
.hero__lead { max-width: 620px; margin: 2rem 0; color: #d5d6d8; font-size: clamp(1.03rem, 1.5vw, 1.25rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: .9rem 1.4rem;
  border: 2px solid transparent;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button svg { width: 20px; margin-right: .6rem; fill: currentColor; }
.button:hover, .button:focus-visible { transform: translateY(-3px); }
.button--red { color: var(--white); background: var(--red); }
.button--red:hover, .button--red:focus-visible { background: var(--red-bright); }
.button--outline { border-color: var(--silver-dark); }
.button--outline:hover, .button--outline:focus-visible { color: var(--ink); background: var(--white); }
.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  border-top: 1px solid var(--line);
}
.hero__facts div { padding: 1rem .8rem 0 0; }
.hero__facts div + div { padding-left: 1rem; border-left: 1px solid var(--line); }
.hero__facts dt { color: var(--silver-dark); font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hero__facts dd { margin: .2rem 0 0; font-family: var(--display); font-size: 1.1rem; font-weight: 800; text-transform: uppercase; }
.hero__facts dd span { color: var(--red-bright); }

.hero__brand-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 700px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(213,31,43,.23), transparent 30%),
    radial-gradient(circle at 50% 50%, #26292d 0 31%, #111216 32% 49%, #08080a 50% 100%);
  border-left: 1px solid rgba(255,255,255,.1);
  isolation: isolate;
}

.hero__brand-stage::before {
  content: "";
  position: absolute;
  width: min(78%, 580px);
  aspect-ratio: 1;
  z-index: -1;
  border: 22px dashed rgba(217,221,225,.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 2px rgba(217,221,225,.28),
    0 0 0 34px rgba(0,0,0,.26),
    0 0 0 37px rgba(213,31,43,.6),
    0 0 90px rgba(213,31,43,.25);
  animation: wheel-spin 42s linear infinite;
}

.hero__brand-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .5;
  background:
    linear-gradient(118deg, transparent 0 24%, rgba(255,255,255,.05) 24.2% 25%, transparent 25.2% 38%, rgba(213,31,43,.22) 38.2% 39%, transparent 39.2%),
    repeating-linear-gradient(0deg, transparent 0 50px, rgba(255,255,255,.035) 51px, transparent 52px);
}

.hero__speed-lines {
  position: absolute;
  inset: 9% 0 auto;
  height: 32%;
  opacity: .7;
  background:
    linear-gradient(90deg, transparent 0 12%, var(--red) 12% 37%, transparent 37% 100%) 0 12% / 100% 5px no-repeat,
    linear-gradient(90deg, transparent 0 24%, var(--silver-dark) 24% 49%, transparent 49% 100%) 0 47% / 100% 2px no-repeat,
    linear-gradient(90deg, transparent 0 5%, var(--red) 5% 28%, transparent 28% 100%) 0 78% / 100% 9px no-repeat;
  transform: skewY(-7deg);
  animation: speed-shift 5s ease-in-out infinite alternate;
}

.hero__logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: min(72%, 510px);
  aspect-ratio: 1;
  padding: 10%;
  background: radial-gradient(circle, rgba(16,16,18,.98) 0 57%, rgba(25,26,29,.94) 58% 68%, rgba(7,7,8,.95) 69%);
  border: 3px solid var(--silver-dark);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 9px #070708,
    inset 0 0 0 12px rgba(213,31,43,.9),
    inset 0 0 55px rgba(0,0,0,.8),
    0 24px 80px rgba(0,0,0,.55),
    0 0 55px rgba(213,31,43,.18);
}

.hero__logo-wrap::before,
.hero__logo-wrap::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.hero__logo-wrap::before {
  inset: -18px;
  border: 6px solid transparent;
  border-top-color: var(--red-bright);
  border-right-color: rgba(217,221,225,.75);
  animation: wheel-spin 14s linear infinite reverse;
}

.hero__logo-wrap::after {
  inset: 7%;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 0 25px rgba(242,43,56,.26);
}

.hero__logo-wrap img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(1.08) saturate(1.08) drop-shadow(0 10px 16px rgba(0,0,0,.72)) drop-shadow(0 0 16px rgba(242,43,56,.25));
  animation: logo-idle 4s ease-in-out infinite alternate;
}

.hero__bolt {
  position: absolute;
  z-index: 3;
  width: 13px;
  height: 13px;
  background: radial-gradient(circle at 35% 30%, #fff, var(--silver-dark) 36%, #4c5055 72%);
  border: 2px solid #050506;
  border-radius: 50%;
  box-shadow: 0 1px 3px #000;
}

.hero__bolt--one { top: 8%; left: 25%; }
.hero__bolt--two { top: 25%; right: 8%; }
.hero__bolt--three { right: 25%; bottom: 8%; }
.hero__bolt--four { bottom: 25%; left: 8%; }

.hero__brand-tag {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 4;
  display: grid;
  min-width: 230px;
  padding: .8rem 1rem .75rem;
  color: var(--ink);
  background: var(--silver);
  border-left: 7px solid var(--red);
  box-shadow: 8px 8px 0 rgba(0,0,0,.55);
  font-family: var(--display);
  text-transform: uppercase;
  transform: skewX(-5deg);
}

.hero__brand-tag span {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.hero__brand-tag strong {
  font-size: 1.05rem;
  letter-spacing: .05em;
}

.hero__brand-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(255,255,255,.13);
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 7rem);
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

@keyframes wheel-spin { to { transform: rotate(360deg); } }
@keyframes speed-shift { to { transform: translateX(4%) skewY(-7deg); opacity: .9; } }
@keyframes logo-idle { to { transform: scale(1.018); } }

.hero__photo { position: relative; min-height: 700px; margin: 0; overflow: hidden; background: #24262a; }
.hero__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--ink) 0, transparent 16%), linear-gradient(0deg, rgba(0,0,0,.62), transparent 40%);
  pointer-events: none;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 44%; filter: contrast(1.06) saturate(.88); }
.hero__photo figcaption {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero__photo figcaption span { display: grid; place-items: center; width: 36px; height: 36px; background: var(--red); border-radius: 50%; }
.hero__stamp {
  position: absolute;
  right: calc(35% - 66px);
  bottom: 46px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  padding: 1.2rem;
  color: var(--ink);
  background: var(--silver);
  border: 8px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--silver), 0 0 0 8px var(--red);
  font-family: var(--display);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: .9;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-7deg);
}
.hero__stamp strong { color: var(--red); font-size: 2rem; line-height: .5; }

.road-strip {
  display: flex;
  overflow: hidden;
  color: var(--ink);
  background: var(--red);
  border-top: 5px solid var(--silver);
  border-bottom: 5px solid var(--ink);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.road-strip div { flex: 0 0 auto; display: flex; align-items: center; gap: 1.4rem; min-width: max-content; padding: .8rem 1.4rem; animation: crawl 22s linear infinite; }
.road-strip i { width: 28px; height: 4px; background: var(--ink); transform: skewX(-28deg); }
@keyframes crawl { to { transform: translateX(-100%); } }

.section { padding: clamp(5rem, 9vw, 8.5rem) max(1.25rem, calc((100vw - var(--max)) / 2)); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(260px, .5fr); gap: 3rem; align-items: end; margin-bottom: 3rem; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -1rem; }
.section-heading h2 { max-width: 820px; font-size: clamp(3.7rem, 7.4vw, 7.1rem); }
.section-heading > p { margin: 0 0 .4rem; font-size: 1.06rem; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 2rem;
  overflow: hidden;
  border: 2px solid var(--ink);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 34px 100%, 0 calc(100% - 34px));
}
.service-card::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: -30px;
  width: 130px;
  height: 130px;
  opacity: .12;
  border: 18px dashed currentColor;
  border-radius: 50%;
}
.service-card--red { color: var(--white); background: var(--red); }
.service-card--dark { color: var(--white); background: var(--ink-soft); }
.service-card--silver { color: var(--ink); background: var(--silver); }
.service-card__number { position: absolute; top: 1.4rem; right: 1.5rem; font-family: var(--display); font-size: .9rem; font-weight: 900; letter-spacing: .12em; }
.service-icon { display: grid; place-items: center; width: 74px; height: 74px; margin-bottom: 2rem; background: rgba(255,255,255,.12); border: 2px solid currentColor; border-radius: 50%; }
.service-icon svg { width: 46px; height: 46px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3; }
.service-card:nth-child(3) .service-icon svg { fill: currentColor; stroke: none; }
.service-card h3 { margin: 0 0 .65rem; font-family: var(--display); font-size: 2rem; font-style: italic; font-weight: 900; line-height: 1; text-transform: uppercase; }
.service-card h3 a { text-decoration: none; }
.service-card p { position: relative; z-index: 1; max-width: 28ch; margin: 0; opacity: .82; }
.service-card__link {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 1.4rem;
  font-family: var(--display);
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration-thickness: 2px;
  text-underline-offset: .25rem;
  text-transform: uppercase;
}
.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1rem;
  padding: 1.4rem 1.75rem;
  color: var(--white);
  background: var(--ink);
  border-left: 8px solid var(--red);
}
.service-cta p { margin: 0; color: var(--silver-dark); }
.service-cta a { font-family: var(--display); font-size: 1.15rem; font-weight: 900; letter-spacing: .03em; text-align: right; text-decoration: none; text-transform: uppercase; }
.service-cta a span { color: var(--red); }

.section--dark { color: var(--white); background: var(--ink); }
.shop { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, .72fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.image-frame { position: relative; min-height: 590px; padding: 12px; background: var(--red); clip-path: polygon(0 0, calc(100% - 45px) 0, 100% 45px, 100% 100%, 45px 100%, 0 calc(100% - 45px)); }
.image-frame::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -18px;
  width: 70px;
  height: 220px;
  background: repeating-linear-gradient(0deg, var(--paper) 0 12px, transparent 12px 24px);
}
.image-frame img { width: 100%; height: 100%; min-height: 566px; object-fit: cover; filter: saturate(.82) contrast(1.05); }
.image-frame__tag {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  padding: .65rem .9rem;
  color: var(--ink);
  background: var(--silver);
  font-family: var(--display);
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.shop h2 { font-size: clamp(3.8rem, 6.4vw, 6.4rem); }
.shop__lead { margin: 2rem 0; color: #c5c8cc; font-size: 1.08rem; }
.shop__points { margin: 0 0 2rem; border-top: 1px solid var(--line); }
.shop__points div { display: grid; grid-template-columns: 46px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.shop__points strong { color: var(--red); font-family: var(--display); font-size: 1.25rem; }
.shop__points span { font-family: var(--display); font-size: 1.15rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.text-link { font-family: var(--display); font-size: 1.2rem; font-weight: 900; letter-spacing: .06em; text-decoration-color: var(--red); text-decoration-thickness: 3px; text-underline-offset: .35rem; text-transform: uppercase; }
.text-link span { color: var(--red); }

.section-heading--split { grid-template-columns: 1fr .5fr; }
.section-heading--split .eyebrow { grid-column: auto; margin-bottom: 1.4rem; }
.section-heading--split h2 { font-size: clamp(3.7rem, 6.8vw, 6.7rem); }
.photo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.photo-card { position: relative; min-height: 380px; margin: 0; overflow: hidden; background: var(--ink); }
.photo-card--wide { grid-column: 1 / -1; min-height: 480px; }
.photo-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .5s ease, filter .5s ease; }
.photo-card:hover img { transform: scale(1.025); filter: contrast(1.05); }
.photo-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0,0,0,.88), transparent);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.photo-card figcaption b { color: var(--red-bright); }

.section--red { color: var(--white); background: var(--red); }
.location { position: relative; display: grid; grid-template-columns: 1fr .82fr; gap: 3rem 7rem; align-items: end; overflow: hidden; }
.location::before {
  content: "";
  position: absolute;
  top: -270px;
  right: -150px;
  width: 640px;
  height: 640px;
  opacity: .12;
  border: 72px dashed var(--ink);
  border-radius: 50%;
}
.location__copy, .location__card, .location__phone { position: relative; z-index: 1; }
.location h2 { font-size: clamp(4.8rem, 9vw, 9rem); }
.location__copy > p:last-child { max-width: 46ch; margin: 1.5rem 0 0; }
.location__card { padding: 2rem; color: var(--ink); background: var(--paper); border: 4px solid var(--ink); box-shadow: 12px 12px 0 var(--ink); }
.location__mark svg { width: 48px; fill: var(--red); stroke: var(--ink); stroke-width: 3; }
.location__card address { display: grid; margin: 1.25rem 0; font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-style: normal; font-weight: 900; line-height: 1; text-transform: uppercase; }
.location__card address span:last-child { color: #565b61; }
.location__card a { font-family: var(--display); font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.location__phone { grid-column: 1 / -1; display: flex; align-items: end; justify-content: space-between; padding-top: 2.5rem; border-top: 2px solid rgba(0,0,0,.32); }
.location__phone span { font-family: var(--display); font-size: 1rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.location__phone a { font-family: var(--display); font-size: clamp(3.4rem, 8vw, 8rem); font-style: italic; font-weight: 900; letter-spacing: -.04em; line-height: .8; text-decoration: none; }

.site-footer {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 3rem max(1.25rem, calc((100vw - var(--max)) / 2)) 6rem;
  color: var(--white);
  background: var(--ink);
}
.footer-brand { height: 90px; overflow: hidden; }
.footer-brand img { width: 100%; height: 100%; object-fit: contain; }
.footer-copy p { margin: .2rem 0; }
.footer-copy p:first-child { font-family: var(--display); font-size: 1.15rem; font-style: italic; font-weight: 900; text-transform: uppercase; }
.footer-copy p:last-child { color: var(--silver-dark); font-size: .84rem; }
.footer-credit { margin: 0; color: var(--silver-dark); font-size: .75rem; text-align: right; }
.footer-credit a { color: var(--white); }
.mobile-actions { display: none; }

:focus-visible { outline: 3px solid #ffd65a; outline-offset: 4px; }

@media (max-width: 1020px) {
  .hero { grid-template-columns: 1fr .72fr; }
  .hero__copy { padding-left: 2rem; padding-right: 2rem; }
  .hero__stamp { right: calc(42% - 58px); width: 116px; height: 116px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .shop { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .location { gap: 3rem; }
}

@media (max-width: 760px) {
  body { padding-bottom: 62px; }
  .concept-bar { gap: .35rem; font-size: .65rem; text-align: center; }
  .concept-bar span::after { margin-left: .35rem; }
  .site-header { min-height: 76px; padding: .45rem 1rem; }
  .brand { width: 130px; height: 58px; }
  .nav-toggle {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .55rem .7rem;
    color: var(--white);
    background: transparent;
    border: 1px solid var(--line);
    font-family: var(--display);
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  .nav-toggle__lines { display: grid; gap: 4px; width: 22px; }
  .nav-toggle__lines i { display: block; height: 2px; background: currentColor; transition: transform .18s ease, opacity .18s ease; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__lines i:first-child { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__lines i:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__lines i:last-child { transform: translateY(-6px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    gap: 0;
    padding: 1rem;
    background: var(--ink);
    border-bottom: 4px solid var(--red);
  }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 1rem; border-bottom: 1px solid var(--line); }
  .nav-call { margin-top: .6rem; text-align: center; }
  .hero { display: flex; flex-direction: column; min-height: auto; }
  .hero__copy { order: 2; padding: 3.2rem 1.25rem 3rem; }
  .hero h1 { font-size: clamp(4rem, 19vw, 5.5rem); }
  .hero__lead { margin: 1.5rem 0; font-size: 1rem; }
  .hero__actions { display: grid; }
  .button { width: 100%; }
  .hero__facts { grid-template-columns: 1fr; margin-top: 2.5rem; }
  .hero__facts div { display: flex; justify-content: space-between; align-items: baseline; padding: .75rem 0; border-bottom: 1px solid var(--line); }
  .hero__facts div + div { padding-left: 0; border-left: 0; }
  .hero__brand-stage { order: 1; width: 100%; min-height: 0; aspect-ratio: 3 / 2; border-bottom: 7px solid var(--red); border-left: 0; }
  .hero__brand-stage::before { width: min(68%, 320px); border-width: 12px; box-shadow: 0 0 0 2px rgba(217,221,225,.28), 0 0 0 18px rgba(0,0,0,.26), 0 0 0 21px rgba(213,31,43,.6), 0 0 45px rgba(213,31,43,.25); }
  .hero__logo-wrap { width: min(56%, 270px); padding: 7%; border-width: 2px; box-shadow: inset 0 0 0 5px #070708, inset 0 0 0 8px rgba(213,31,43,.9), inset 0 0 35px rgba(0,0,0,.8), 0 14px 40px rgba(0,0,0,.55), 0 0 35px rgba(213,31,43,.2); }
  .hero__logo-wrap::before { inset: -10px; border-width: 4px; }
  .hero__bolt { width: 9px; height: 9px; border-width: 1px; }
  .hero__brand-tag { right: .8rem; bottom: .75rem; min-width: 165px; padding: .5rem .65rem; box-shadow: 5px 5px 0 rgba(0,0,0,.55); }
  .hero__brand-tag span { font-size: .53rem; }
  .hero__brand-tag strong { font-size: .78rem; }
  .hero__brand-number { top: .75rem; right: .8rem; font-size: 3.5rem; }
  .hero__photo { order: 1; min-height: 0; aspect-ratio: 3 / 2; border-bottom: 7px solid var(--red); }
  .hero__photo img { position: absolute; inset: 0; object-position: center 52%; }
  .hero__photo::before { background: linear-gradient(0deg, var(--ink), transparent 35%); }
  .hero__photo figcaption { right: auto; left: 1rem; bottom: .8rem; font-size: .75rem; }
  .hero__stamp { right: 1.2rem; bottom: auto; top: calc(66.667vw - 52px); width: 100px; height: 100px; font-size: .62rem; border-width: 6px; }
  .hero__stamp strong { font-size: 1.6rem; }
  .road-strip { font-size: .9rem; }
  .section { padding: 4.5rem 1.25rem; }
  .section-heading, .section-heading--split { display: block; }
  .section-heading .eyebrow, .section-heading--split .eyebrow { margin-bottom: 1.2rem; }
  .section-heading h2, .section-heading--split h2 { font-size: clamp(3.4rem, 16vw, 4.8rem); }
  .section-heading > p, .section-heading--split > p { margin-top: 1.5rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 285px; }
  .service-cta { display: block; }
  .service-cta a { display: block; margin-top: .75rem; text-align: left; }
  .shop { display: flex; flex-direction: column; gap: 3rem; }
  .image-frame { min-height: 390px; }
  .image-frame img { min-height: 366px; }
  .shop h2 { font-size: clamp(3.5rem, 16vw, 5rem); }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-card, .photo-card--wide { grid-column: auto; min-height: 330px; }
  .photo-card--wide { min-height: 270px; }
  .location { display: block; }
  .location h2 { font-size: clamp(4.6rem, 21vw, 6.6rem); }
  .location__card { margin-top: 2.5rem; box-shadow: 8px 8px 0 var(--ink); }
  .location__phone { display: block; margin-top: 3rem; }
  .location__phone a { display: block; margin-top: 1rem; font-size: clamp(3rem, 15vw, 4.4rem); }
  .site-footer { grid-template-columns: 120px 1fr; padding: 2.5rem 1.25rem; }
  .footer-brand { height: 72px; }
  .footer-credit { grid-column: 1 / -1; text-align: left; }
  .mobile-actions {
    position: fixed;
    z-index: 150;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 62px;
    color: var(--white);
    background: var(--ink);
    border-top: 3px solid var(--silver);
  }
  .mobile-actions a { display: grid; place-items: center; font-family: var(--display); font-size: .95rem; font-weight: 900; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
  .mobile-actions a:first-child { background: var(--red); }
}

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