:root {
  --black: #050505;
  --near-black: #0a0a0a;
  --dark: #101010;
  --card: #151515;
  --card-2: #202020;
  --steel: #343434;
  --border: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.24);
  --red: #e11919;
  --red-dark: #8f0909;
  --red-soft: rgba(225, 25, 25, 0.16);
  --red-glow: rgba(225, 25, 25, 0.42);
  --white: #f7f3ed;
  --muted: #b6afa8;
  --muted-2: #7d7770;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.62);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  background:
    radial-gradient(circle at 50% -18%, rgba(255, 255, 255, 0.50), transparent 22rem),
    radial-gradient(circle at 10% 18%, rgba(225, 25, 25, 0.32), transparent 20rem),
    radial-gradient(circle at 92% 12%, rgba(225, 25, 25, 0.20), transparent 22rem),
    linear-gradient(145deg, #3b3b3b 0%, #111 24%, #070707 50%, #180404 76%, #3c0505 100%);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 18px),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0.22));
}

body::after {
  content: '';
  position: fixed;
  inset: auto -15% 0 -15%;
  height: 34vh;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(225, 25, 25, 0.54), transparent 66%);
  filter: blur(15px);
  pointer-events: none;
}

/* Shared navbar styling. The nav.html file also contains matching navbar CSS, but these styles help if you remove that inline CSS later. */
#navbar {
  position: sticky;
  top: 0;
  z-index: 950;
  width: 100%;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 950;
  width: 100%;
  min-height: 76px;
  background:
    linear-gradient(90deg, rgba(225,25,25,0.30), transparent 24%, transparent 72%, rgba(225,25,25,0.22)),
    rgba(5,5,5,0.96);
  border-bottom: 2px solid rgba(225,25,25,0.52);
  box-shadow: 0 18px 44px rgba(0,0,0,0.42);
  backdrop-filter: blur(14px);
  transition: min-height .2s ease, background .2s ease, box-shadow .2s ease;
}

.navbar.scrolled {
  min-height: 64px;
  background: rgba(5,5,5,0.985);
  box-shadow: 0 16px 36px rgba(0,0,0,0.62);
}

.nav-container {
  width: min(1220px, calc(100% - 32px));
  min-height: inherit;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.nav-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(225,25,25,0.42));
}

.nav-logo span {
  color: var(--red);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  list-style: none;
}

.nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  color: #efe8df;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .15s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #fff;
  background: rgba(225,25,25,0.18);
  border-color: rgba(225,25,25,0.48);
  transform: translateY(-1px);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 16px rgba(225,25,25,0.72);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  background: rgba(0,0,0,0.36);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 4px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--white);
  display: block;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle.open span {
  opacity: 0;
}

.nav-toggle.open::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open::after {
  transform: translateY(-7px) rotate(-45deg);
}

.custom-page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0 70px;
}

.custom-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02) 36%, rgba(225,25,25,0.13)),
    linear-gradient(145deg, rgba(21,21,21,0.98), rgba(5,5,5,0.96));
  border: 1px solid var(--border-strong);
  border-top: 5px solid var(--red);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 58px);
  margin-bottom: 26px;
}

.custom-hero::before {
  content: 'CUSTOM';
  position: absolute;
  right: -18px;
  bottom: -34px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(90px, 15vw, 210px);
  letter-spacing: .08em;
  color: rgba(255,255,255,0.035);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  inset: -35% -20% auto auto;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(225,25,25,0.52), transparent 66%);
  filter: blur(8px);
  pointer-events: none;
}

.brand-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  z-index: 1;
}

.brand-logo {
  width: clamp(70px, 10vw, 118px);
  height: clamp(70px, 10vw, 118px);
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(225,25,25,0.42));
}

.eyebrow {
  display: inline-block;
  color: var(--red);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.eyebrow.small {
  font-size: 12px;
  letter-spacing: .22em;
}

h1,
h2 {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: .045em;
}

h1 {
  font-size: clamp(62px, 12vw, 126px);
}

h1 span,
h2 span {
  color: var(--red);
}

.hero-text {
  position: relative;
  max-width: 760px;
  color: #efe8df;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
  margin-bottom: 26px;
  z-index: 1;
}

.hero-actions,
.contact-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  z-index: 1;
}

.btn-main,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 4px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn-main {
  color: #fff;
  background: linear-gradient(180deg, #ff2020, #a90606);
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow: 0 12px 34px rgba(225,25,25,0.34);
}

.btn-main:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-main:hover {
  box-shadow: 0 18px 42px rgba(225,25,25,0.46);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.24);
}

.btn-secondary:hover {
  background: rgba(225,25,25,0.14);
  border-color: rgba(225,25,25,0.42);
}

.small-note {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.5;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.info-card,
.contact-panel {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.065), rgba(255,255,255,0.018)),
    rgba(16,16,16,0.94);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 22px 50px rgba(0,0,0,0.34);
}

.info-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  min-height: 230px;
}

.info-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--red);
  background: rgba(225,25,25,0.12);
  border: 1px solid rgba(225,25,25,0.40);
  border-radius: 4px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: .12em;
}

.info-card h2,
.contact-panel h2 {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 12px;
}

.info-card p,
.contact-panel p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border-top: 3px solid var(--red);
}

.contact-pill {
  display: block;
  width: 100%;
  padding: 16px 18px;
  color: var(--white);
  text-decoration: none;
  background: rgba(0,0,0,0.34);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 4px;
  transition: transform .16s ease, border-color .2s ease, background .2s ease;
}

.contact-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(225,25,25,0.50);
  background: rgba(225,25,25,0.12);
}

.contact-pill span {
  display: block;
  color: var(--red);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .20em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 4px;
}

.contact-pill strong {
  font-size: 15px;
  font-weight: 700;
}

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

  .custom-page-shell {
    padding-top: 34px;
  }
}

@media (max-width: 820px) {
  .nav-container {
    width: min(100% - 24px, 1220px);
    min-height: 68px;
  }

  .nav-logo {
    font-size: 24px;
    letter-spacing: .12em;
  }

  .nav-logo img {
    width: 40px;
    height: 40px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 8px;
    padding: 14px;
    background: rgba(5,5,5,0.98);
    border: 1px solid rgba(225,25,25,0.40);
    border-top: none;
    box-shadow: 0 18px 38px rgba(0,0,0,0.62);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .nav-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-menu a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .custom-page-shell {
    width: min(100% - 22px, 1180px);
    padding-bottom: 44px;
  }

  .custom-hero {
    padding: 26px 20px;
  }

  .brand-row {
    align-items: flex-start;
    gap: 14px;
  }

  .brand-logo {
    width: 62px;
    height: 62px;
  }

  h1 {
    font-size: clamp(52px, 18vw, 78px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn-main,
  .btn-secondary {
    width: 100%;
  }

  .info-card {
    min-height: auto;
    padding: 24px 20px;
  }
}
