/* ==========================================================================
   Xtreme Mobile Detailing — design system
   Black / red / white. Condensed display type, diagonal hazard-stripe motif,
   red radial glow (lifted from the logo mark). Fonts: Tanker (display) +
   General Sans (body/UI), via Fontshare.
   ========================================================================== */

:root {
  --black: #08080a;
  --charcoal: #131316;
  --charcoal-2: #1b1b1f;
  --line: #2b2b30;

  --red: #e5141a;
  --red-bright: #ff2f22;
  --red-deep: #7a0808;

  --white: #ffffff;
  --off: #f3f2f0;
  --gray: #9b9ba1;
  --gray-dim: #6c6c73;

  --tanker: "Tanker", "Arial Narrow", sans-serif;
  --sans: "General Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1240px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--black); }

body {
  font-family: var(--sans);
  color: var(--off);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- grain overlay ---- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- hazard stripe motif ---- */
.stripes {
  background-image: repeating-linear-gradient(
    -45deg, var(--red) 0 14px, transparent 14px 28px
  );
}
.stripes--thin {
  background-image: repeating-linear-gradient(
    -45deg, var(--red) 0 6px, transparent 6px 14px
  );
}

/* ---- headings ---- */
h1, h2, h3, h4, .display {
  font-family: var(--tanker);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-bright);
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 1px;
  box-shadow: 0 0 12px 2px var(--red-bright);
  flex-shrink: 0;
}

.lede {
  font-size: 19px;
  color: var(--gray);
  max-width: 56ch;
}

.accent { color: var(--red-bright); }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 2px solid transparent;
  transform: skewX(-10deg);
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.btn > * { transform: skewX(10deg); display: inline-flex; align-items: center; gap: 8px; }
.btn:hover { transform: skewX(-10deg) translateY(-2px); }

.btn--red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 24px -8px rgba(229, 20, 26, 0.7);
}
.btn--red:hover { background: var(--red-bright); box-shadow: 0 10px 30px -6px rgba(255, 47, 34, 0.85); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.06); }

.btn--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--dark:hover { background: var(--charcoal-2); }

.btn--block { width: 100%; }
.btn--sm { padding: 12px 22px; font-size: 12px; }

.ico { width: 18px; height: 18px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ==========================================================================
   Utility bar
   ========================================================================== */
.utilbar {
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}
.utilbar__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 38px;
}
.utilbar__phone { display: inline-flex; align-items: center; gap: 7px; }
.utilbar__phone .ico { width: 14px; height: 14px; }
.utilbar__sep { opacity: 0.5; }
.utilbar__note { opacity: 0.92; }
.utilbar__spacer { flex: 1; }
.utilbar__soc { display: inline-flex; opacity: 0.9; }
.utilbar__soc .ico { width: 16px; height: 16px; }
.utilbar__soc:hover { opacity: 1; }
@media (max-width: 720px) {
  .utilbar__note { display: none; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(8, 8, 10, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: padding 0.25s var(--ease);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 84px;
  transition: height 0.25s var(--ease);
}
.header.shrink .header__inner { height: 66px; }

.brand { display: inline-flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand img { width: 64px; height: 64px; transition: width 0.25s, height 0.25s; }
.header.shrink .brand img { width: 52px; height: 52px; }
.brand__name { font-family: var(--tanker); font-size: 27px; letter-spacing: 0.02em; line-height: 1; color: var(--white); }
.brand__name em { font-style: normal; color: var(--red-bright); }
.brand__loc { display: block; font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-dim); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 30px; margin-left: 10px; }
.nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.25s var(--ease);
}
.nav a:hover, .nav a.is-active { color: var(--white); }
.nav a:hover::after, .nav a.is-active::after { width: 100%; }

.header__cta { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.header__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; color: var(--white); }
.header__phone .ico { color: var(--red-bright); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  flex-shrink: 0;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--white); transition: transform 0.3s var(--ease), opacity 0.3s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav { display: none; }
  .header__cta .btn--ghost { display: none; }
  .burger { display: flex; }
}
@media (max-width: 640px) {
  .header__inner { gap: 12px; }
  .brand img { width: 50px; height: 50px; }
  .brand__name { font-size: 22px; }
  .header__cta .btn { padding: 12px 16px; font-size: 11px; }
}
@media (max-width: 460px) {
  .brand__loc { display: none; }
  .brand img { width: 40px; height: 40px; }
  .brand__name { font-size: 19px; }
}
@media (max-width: 380px) {
  .header__cta { display: none; }
  .burger { margin-left: auto; }
}

.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(360px, 84vw);
  height: 100vh;
  background: var(--charcoal);
  border-left: 1px solid var(--line);
  z-index: 600;
  padding: 100px 28px 28px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer__nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 30px; }
.drawer__nav a {
  font-family: var(--tanker);
  font-size: 26px;
  text-transform: uppercase;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.drawer__nav a.is-active { color: var(--red-bright); }
.drawer__cta { display: flex; flex-direction: column; gap: 12px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding-top: 40px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 640px;
  align-items: stretch;
}
.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 60px 56px 60px 24px;
  z-index: 3;
}
.hero__content .display {
  font-size: clamp(46px, 6.2vw, 82px);
}
.hero__tagline {
  font-family: var(--tanker);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--gray);
  letter-spacing: 0.02em;
}
.hero__tagline em { font-style: normal; color: var(--red-bright); }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 6px; }

.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.hero__stat b { display: block; font-family: var(--tanker); font-size: 30px; color: var(--white); line-height: 1; }
.hero__stat span { display: block; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-dim); margin-top: 6px; }

.hero__media {
  position: relative;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero__slide {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, var(--black) 0%, rgba(8,8,10,0.35) 22%, rgba(8,8,10,0.08) 45%, transparent 65%),
              linear-gradient(0deg, rgba(8,8,10,0.55), transparent 45%);
}
.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}
.hero__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.15);
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.hero__dot.is-active { background: var(--red); border-color: var(--red); transform: scale(1.2); }

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; min-height: auto; }
  .hero__content { padding: 44px 20px 40px; }
  .hero__media { clip-path: none; height: 340px; order: -1; position: relative; }
}

/* ---- marquee ticker ---- */
.marquee {
  background: var(--red);
  border-top: 1px solid rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(0,0,0,0.2);
  overflow: hidden;
  padding: 14px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee__group { display: flex; align-items: center; flex-shrink: 0; }
.marquee span {
  font-family: var(--tanker);
  font-size: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 20px;
  white-space: nowrap;
}
.marquee .dot { color: rgba(255,255,255,0.55); font-size: 14px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ==========================================================================
   Sections / layout helpers
   ========================================================================== */
.section { padding: 100px 0; position: relative; }
.section--tight { padding: 72px 0; }
.section--dark { background: var(--black); }
.section--charcoal { background: var(--charcoal); }
.section--red { background: var(--red); }

.section__head { max-width: 680px; margin-bottom: 56px; }
.section__head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head h2 { font-size: clamp(34px, 4.4vw, 56px); margin-top: 14px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
.reveal[data-d="5"] { transition-delay: 0.4s; }

/* ---- how it works / process ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
.process-step { position: relative; }
.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--red);
  border-radius: 50%;
  font-family: var(--tanker);
  font-size: 21px;
  color: var(--red-bright);
  margin-bottom: 20px;
}
.process-step h3 { font-family: var(--sans); text-transform: none; font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.process-step p { font-size: 14.5px; color: var(--gray); }
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  left: calc(100% + 6px);
  width: calc(44px - 12px);
  height: 2px;
  background-image: repeating-linear-gradient(90deg, var(--red) 0 6px, transparent 6px 12px);
}
@media (max-width: 860px) {
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-step:not(:last-child)::after { display: none; }
}

/* ---- mobile-convenience split ---- */
.convenience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.convenience__media { position: relative; }
.convenience__media img { border-radius: var(--radius); }
.convenience__media::before {
  content: "";
  position: absolute;
  top: -18px; left: -18px;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(-45deg, var(--red) 0 10px, transparent 10px 20px);
  z-index: -1;
  border-radius: var(--radius);
}
.convenience__list { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.convenience__item { display: flex; gap: 14px; align-items: flex-start; }
.convenience__item .ico-wrap {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(229,20,26,0.14);
  color: var(--red-bright);
  border-radius: var(--radius);
}
.convenience__item h4 { font-family: var(--sans); text-transform: none; font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.convenience__item p { font-size: 15px; color: var(--gray); }
@media (max-width: 860px) {
  .convenience { grid-template-columns: 1fr; gap: 36px; }
  .convenience__media { order: -1; }
}

/* ---- service cards ---- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .svc-grid { grid-template-columns: 1fr; }
}
.svc-card {
  background: var(--charcoal);
  border: 1px solid var(--line);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.svc-card:hover { transform: translateY(-6px); border-color: var(--red); }
.svc-card--pop { border-color: var(--red); background: linear-gradient(160deg, var(--charcoal-2), var(--charcoal)); }
.svc-card__badge {
  position: absolute;
  top: -13px; left: 28px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  transform: skewX(-10deg);
}
.svc-card__badge span { display: inline-block; transform: skewX(10deg); }
.svc-card h3 { font-family: var(--tanker); font-size: 26px; color: var(--white); }
.svc-card p { font-size: 14.5px; color: var(--gray); flex: 1; }
.svc-card__meta { display: flex; align-items: baseline; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--line); }
.svc-card__price { font-family: var(--tanker); font-size: 24px; color: var(--red-bright); }
.svc-card__price small { font-family: var(--sans); font-size: 11px; color: var(--gray-dim); font-weight: 600; text-transform: uppercase; }
.svc-card__time { font-size: 12px; color: var(--gray-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.svc-card ul { display: flex; flex-direction: column; gap: 8px; margin: 4px 0; }
.svc-card ul li { display: flex; gap: 8px; font-size: 13.5px; color: var(--gray); }
.svc-card ul li::before { content: "✓"; color: var(--red-bright); font-weight: 700; flex-shrink: 0; }

/* ---- trust / why-us grid ---- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.trust-card {
  background: var(--black);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.trust-card .num { font-family: var(--tanker); font-size: 46px; color: var(--red); opacity: 0.9; line-height: 1; }
.trust-card h3 { font-family: var(--sans); text-transform: none; font-size: 19px; font-weight: 700; color: var(--white); }
.trust-card p { font-size: 14.5px; color: var(--gray); }
@media (max-width: 860px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ---- gallery ---- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 6px;
}
.gallery a { position: relative; overflow: hidden; display: block; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease), filter 0.5s; filter: grayscale(0.2) contrast(1.05); }
.gallery a:hover img { transform: scale(1.08); filter: grayscale(0) contrast(1.1); }
.gallery a::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.55), transparent 50%);
  opacity: 0; transition: opacity 0.3s;
}
.gallery a:hover::after { opacity: 1; }
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
}

/* ---- CTA banner ---- */
.cta-banner {
  position: relative;
  background: var(--red);
  padding: 70px 0;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(0,0,0,0.12) 0 14px, transparent 14px 28px);
  opacity: 0.5;
}
.cta-banner__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h2 { font-size: clamp(30px, 4vw, 48px); color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.88); font-size: 16px; margin-top: 8px; }
.cta-banner .btn--dark:hover { background: var(--black); }

/* ---- reviews ---- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.review-card {
  background: var(--charcoal);
  border: 1px solid var(--line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card__stars { color: var(--red-bright); letter-spacing: 3px; font-size: 15px; }
.review-card p { font-size: 15px; color: var(--off); flex: 1; }
.review-card__author { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gray-dim); }
.review-card__author b { color: var(--white); font-weight: 700; }

/* ---- area list ---- */
.area-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.area-list li {
  font-family: var(--tanker);
  font-size: 17px;
  color: var(--gray);
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: var(--black);
}

/* ---- about / story ---- */
.story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.story__media { position: relative; }
.story__media img { width: 100%; }
.story__media--portrait { max-width: 300px; margin: 0 auto; }
@media (max-width: 900px) {
  .story__media--portrait { max-width: 240px; }
}
.story__media::before {
  content: "";
  position: absolute; top: -18px; right: -18px;
  width: 100%; height: 100%;
  border: 3px solid var(--red);
  z-index: -1;
}
.story h3.tag { font-family: var(--sans); text-transform: none; font-weight: 700; font-size: 15px; color: var(--red-bright); margin-bottom: 8px; }
.story p + p { margin-top: 16px; }
.story p { color: var(--gray); font-size: 15.5px; }
@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; gap: 34px; }
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.compare-card { background: var(--charcoal); border: 1px solid var(--line); padding: 30px; }
.compare-card h4 { font-family: var(--sans); text-transform: none; font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.compare-card p { font-size: 14.5px; color: var(--gray); }
.compare-card--x { border-top: 3px solid var(--gray-dim); }
.compare-card--check { border-top: 3px solid var(--red); }
@media (max-width: 760px) { .compare { grid-template-columns: 1fr; } }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.contact-info { display: flex; flex-direction: column; gap: 26px; }
.contact-info__row { display: flex; gap: 16px; align-items: flex-start; }
.contact-info__row .ico-wrap {
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: rgba(229,20,26,0.14);
  color: var(--red-bright);
  border-radius: var(--radius);
}
.contact-info__row h4 { font-family: var(--sans); text-transform: none; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.contact-info__row p, .contact-info__row a { color: var(--gray); font-size: 14.5px; }
.contact-info__row a:hover { color: var(--red-bright); }

.form { background: var(--charcoal); border: 1px solid var(--line); padding: 40px; }
.form h3 { font-family: var(--sans); text-transform: none; font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-dim); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--line);
  color: var(--white);
  padding: 13px 14px;
  border-radius: 2px;
  font-size: 14.5px;
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-note { font-size: 12.5px; color: var(--gray-dim); margin-top: 14px; }
.form-done { text-align: center; padding: 40px 10px; }
.form-done h3 { font-family: var(--tanker); text-transform: uppercase; font-size: 30px; color: var(--white); margin-bottom: 10px; }
.form-done p { color: var(--gray); }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--charcoal); border-top: 1px solid var(--line); padding: 60px 0 26px; }
.footer__inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.footer__brand { display: flex; gap: 12px; align-items: center; }
.footer__brand img { width: 52px; height: 52px; }
.footer__name { font-family: var(--tanker); font-size: 19px; color: var(--white); }
.footer__loc { font-size: 12.5px; color: var(--gray-dim); margin-top: 3px; }
.footer__nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer__nav a { font-size: 13.5px; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.04em; }
.footer__nav a:hover { color: var(--red-bright); }
.footer__base { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px 20px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--gray-dim); }
.footer__legal a { color: var(--gray-dim); text-decoration: underline; }
.footer__legal a:hover { color: var(--red-bright); }

/* ==========================================================================
   Legal / prose pages
   ========================================================================== */
.legal-copy { max-width: 760px; }
.legal-copy h2 { font-family: var(--sans); text-transform: none; font-size: 20px; font-weight: 700; color: var(--white); margin: 36px 0 12px; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy p { font-size: 15px; color: var(--gray); margin-bottom: 14px; }
.legal-copy a { color: var(--red-bright); text-decoration: underline; }

/* ==========================================================================
   Sticky mobile bar
   ========================================================================== */
.mobar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 550;
  display: none;
  background: var(--charcoal);
  border-top: 1px solid var(--line);
}
.mobar__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 0 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray);
}
.mobar__btn--red { background: var(--red); color: var(--white); }
@media (max-width: 720px) {
  .mobar { display: flex; }
  body { padding-bottom: 62px; }
}

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.pagehero {
  position: relative;
  padding: 150px 0 70px;
  background: var(--black);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.pagehero__glow {
  position: absolute;
  top: -30%; right: -10%;
  width: 60%; height: 100%;
  background: radial-gradient(circle, rgba(229,20,26,0.28), transparent 65%);
  filter: blur(30px);
}
.pagehero .eyebrow { margin-bottom: 16px; }
.pagehero h1 { font-size: clamp(40px, 6vw, 70px); }
.pagehero p { margin-top: 16px; }

@media (max-width: 720px) {
  .pagehero { padding: 130px 0 50px; }
}
