:root {
  --ink: #1C1F26;
  --ink-soft: #2A2E38;
  --paper: #F4F5F7;
  --red: #D7263D;
  --red-dark: #B01E31;
  --white: #FFFFFF;
  --grey: #6B7180;
  --line: #E1E4EA;
  --font-display: 'Bebas Neue', 'Arial Narrow', 'Franklin Gothic Medium', Impact, sans-serif;
  --font-body: 'Titillium Web', 'Segoe UI', Tahoma, Verdana, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16.5px;
}

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

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1160px, 92%); margin: 0 auto; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.03em; text-transform: uppercase; line-height: 1.05; }

/* ---------- Top bar ---------- */
.topbar {
  background: #121419;
  color: #B9BEC9;
  font-size: 13.5px;
  letter-spacing: 0.04em;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.topbar a { color: #B9BEC9; }
.topbar a:hover { color: var(--white); text-decoration: none; }
.topbar .addr { text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 3px solid var(--red);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wordmark:hover { text-decoration: none; }
.wordmark .slash {
  display: inline-block;
  width: 14px;
  height: 26px;
  background: var(--red);
  transform: skewX(-18deg);
}
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.site-nav a {
  color: #D8DBE2;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.12em;
}
.site-nav a:hover,
.site-nav a.active { color: var(--white); text-decoration: none; }
.site-nav a.active { box-shadow: inset 0 -3px 0 var(--red); padding-bottom: 4px; }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13.5px;
  padding: 13px 26px;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { text-decoration: none; }
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-ghost { background: transparent; color: var(--white); border-color: #555B69; }
.btn-ghost:hover { border-color: var(--white); color: var(--white); }
.btn-dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-dark:hover { background: var(--ink-soft); border-color: var(--ink-soft); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid #555B69;
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 4px 0;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--ink);
  color: var(--white);
  padding: 84px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -80px;
  width: 340px;
  height: 130%;
  background: #22252E;
  transform: skewX(-14deg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero h1 {
  font-size: clamp(52px, 7vw, 92px);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--red); }
.hero p.lead {
  color: #C3C8D2;
  font-size: 18px;
  max-width: 52ch;
  margin-bottom: 30px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-frame { position: relative; }
.hero-frame::before {
  content: "";
  position: absolute;
  top: 22px;
  right: -22px;
  width: 100%;
  height: 100%;
  background: var(--red);
}
.hero-frame img {
  position: relative;
  width: 100%;
  border: 6px solid var(--white);
  object-fit: cover;
}

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section.alt { background: var(--white); }

.section-head { max-width: 720px; margin-bottom: 46px; }
.section-title {
  font-size: clamp(36px, 4.4vw, 54px);
  display: flex;
  align-items: center;
  gap: 18px;
}
.section-title::before {
  content: "";
  flex: 0 0 auto;
  width: 34px;
  height: 44px;
  background: var(--red);
  transform: skewX(-18deg);
}
.section-sub { color: var(--grey); margin-top: 12px; font-size: 17px; }

/* ---------- Service cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  padding: 30px 26px;
}
.section.alt .card { background: var(--paper); }
.card h3 { font-size: 26px; margin-bottom: 10px; }
.card p { color: var(--grey); font-size: 15.5px; }
.card .num {
  font-family: var(--font-display);
  color: var(--red);
  font-size: 20px;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 14px;
}

/* ---------- Split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split .frame { position: relative; }
.split .frame::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: var(--ink);
}
.split.reverse .frame::before {
  left: auto;
  right: -20px;
  top: -20px;
  bottom: auto;
  background: var(--red);
}
.split .frame img { position: relative; width: 100%; object-fit: cover; }
.split-copy h2 {
  font-size: clamp(34px, 4vw, 50px);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.split-copy h2::before {
  content: "";
  flex: 0 0 auto;
  width: 26px;
  height: 36px;
  background: var(--red);
  transform: skewX(-18deg);
}
.split-copy p { color: #3C4250; margin-bottom: 14px; }
.split-copy .link-more {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13.5px;
}

.dual-img { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ---------- Inventory cards ---------- */
.inventory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.inv-card { background: var(--white); border: 1px solid var(--line); }
.inv-card .frame { position: relative; overflow: hidden; }
.inv-card .frame::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  height: 8px;
  background: var(--red);
}
.inv-card img { width: 100%; height: 320px; object-fit: cover; }
.inv-caption { padding: 22px 24px 26px; }
.inv-caption h3 { font-size: 26px; margin-bottom: 6px; }
.inv-caption p { color: var(--grey); font-size: 15.5px; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: var(--ink);
  color: var(--white);
  padding: 32px 28px;
  position: relative;
}
.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 6px;
  background: var(--red);
}
.step .step-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--red);
  display: block;
  margin-bottom: 8px;
}
.step h3 { font-size: 25px; margin-bottom: 8px; }
.step p { color: #B9BEC9; font-size: 15.5px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: var(--white);
  padding: 66px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  left: -70px;
  top: -40px;
  width: 220px;
  height: 140%;
  background: var(--red);
  transform: skewX(-16deg);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
}
.cta-band h2 { font-size: clamp(34px, 4vw, 52px); max-width: 20ch; }
.cta-band p { color: #C3C8D2; margin-top: 8px; max-width: 56ch; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 62px 0 58px;
  border-bottom: 4px solid var(--red);
}
.page-hero h1 {
  font-size: clamp(42px, 5.4vw, 68px);
  display: flex;
  align-items: center;
  gap: 18px;
}
.page-hero h1::before {
  content: "";
  flex: 0 0 auto;
  width: 30px;
  height: 44px;
  background: var(--red);
  transform: skewX(-18deg);
}
.page-hero p { color: #C3C8D2; margin-top: 10px; max-width: 68ch; }
.crumbs { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: #8A90A0; margin-bottom: 14px; }
.crumbs a { color: #8A90A0; }
.crumbs a:hover { color: var(--white); }

/* ---------- Prose ---------- */
.prose { max-width: 820px; }
.prose h2 {
  font-size: clamp(30px, 3.4vw, 42px);
  margin: 40px 0 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.prose h2::before {
  content: "";
  flex: 0 0 auto;
  width: 20px;
  height: 28px;
  background: var(--red);
  transform: skewX(-18deg);
}
.prose h3 { font-size: 24px; margin: 26px 0 8px; }
.prose p { color: #3C4250; margin-bottom: 14px; }
.prose ul { margin: 0 0 16px 22px; color: #3C4250; }
.prose li { margin-bottom: 8px; }
.prose .updated {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 18px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  padding: 34px 30px;
}
.info-card h2 { font-size: 32px; margin-bottom: 16px; }
.info-row { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.info-row .tag {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--ink);
  padding: 4px 12px;
  min-width: 92px;
  text-align: center;
}
.info-row a { font-weight: 600; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 6px; }
.hours-table td { padding: 7px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: #3C4250; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--ink); }

.map-wrap {
  border: 6px solid var(--ink);
  position: relative;
}
.map-wrap::before {
  content: "";
  position: absolute;
  top: 18px;
  right: -18px;
  width: 100%;
  height: 100%;
  background: var(--red);
  z-index: -1;
}
.map-wrap iframe { display: block; width: 100%; height: 460px; border: 0; }

.contact-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--red);
  padding: 26px 28px;
  margin-top: 40px;
  color: #3C4250;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #B9BEC9;
  padding: 66px 0 0;
  font-size: 15px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.site-footer h3 {
  color: var(--white);
  font-size: 20px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.site-footer .f-brand {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-footer .f-brand .slash {
  display: inline-block;
  width: 12px;
  height: 24px;
  background: var(--red);
  transform: skewX(-18deg);
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #B9BEC9; }
.site-footer a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid #2E323D;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: #8A90A0;
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--ink);
  color: #D8DBE2;
  border-top: 3px solid var(--red);
  padding: 18px 0;
}
.cookie-banner[hidden] { display: none; }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: 14.5px; max-width: 72ch; }
.cookie-inner a { color: var(--white); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-banner .btn { padding: 10px 22px; font-size: 12.5px; }
.btn-outline-light { background: transparent; color: var(--white); border: 2px solid #555B69; }
.btn-outline-light:hover { border-color: var(--white); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 70px; }
  .hero-frame { max-width: 640px; }
  .split .frame, .split.reverse .frame { max-width: 640px; margin: 0 auto; }
  .split.reverse { direction: ltr; }
  .split-copy { order: 2; }
  .split .frame { order: 1; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .inventory { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    border-bottom: 3px solid var(--red);
    display: none;
    padding: 10px 0 18px;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: flex-start; gap: 0; padding: 0 4%; }
  .site-nav li { width: 100%; }
  .site-nav a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid #2E323D;
    width: 100%;
  }
  .site-nav a.active { box-shadow: none; color: var(--red); }
  .header-cta { display: none; }
}

@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .dual-img { grid-template-columns: 1fr; }
  .topbar-inner { justify-content: center; text-align: center; }
  .split .frame::before, .split.reverse .frame::before,
  .hero-frame::before, .map-wrap::before { display: none; }
  .section { padding: 60px 0; }
}
