
  @font-face {
    font-family: 'Zing Rust Base';
    src: url('https://db.onlinewebfonts.com/t/ec11ddc9fa834d65ab94debb6af73080.woff2') format('woff2'),
         url('https://db.onlinewebfonts.com/t/ec11ddc9fa834d65ab94debb6af73080.woff') format('woff'),
         url('https://db.onlinewebfonts.com/t/ec11ddc9fa834d65ab94debb6af73080.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }


  /* ===== RESET & BASE ===== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --black: #111111;
    --charcoal: #1C1C1C;
    --dark: #242424;
    --red: #CC2222;
    --red-dark: #A81A1A;
    --steel: #8A8A8A;
    --light-steel: #C8C8C8;
    --off-white: #F0EDE8;
    --white: #FFFFFF;
    --font-display: 'Zing Rust Base', 'Raleway', sans-serif;
    --font-body: 'Barlow', 'DM Sans', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--off-white);
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    overflow-x: hidden;
  }

  /* ===== PAGE ROUTING ===== */
  .page { display: block; }
  .page.active { display: block; }

  /* ===== NAVBAR ===== */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(17,17,17,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #2A2A2A;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
  }

  .nav-logo-mark {
    width: 42px;
    height: 42px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    color: white;
    letter-spacing: 1px;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
  }

  .nav-logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1;
  }

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

  .nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
  }

  .nav-links a, .nav-links .nav-parent {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--light-steel);
    text-decoration: none;
    padding: 8px 14px;
    cursor: pointer;
    transition: color 0.2s;
    position: relative;
  }

  .nav-links a:hover, .nav-links .nav-parent:hover { color: var(--white); }

  .nav-links a.active-link { color: var(--red); }

  .dropdown { position: relative; }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--charcoal);
    border: 1px solid #333;
    border-top: 2px solid var(--red);
    min-width: 220px;
    padding: 8px 0;
  }

  .dropdown.open .dropdown-menu { display: block; }

  .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--light-steel);
    text-decoration: none;
    transition: all 0.2s;
  }

  .dropdown-menu a:hover {
    background: var(--dark);
    color: var(--white);
    padding-left: 26px;
  }

  .nav-cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
    letter-spacing: 0px !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }

  /* Mobile burger */
  .mobile-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }

  .mobile-burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--charcoal);
    border-bottom: 2px solid var(--red);
    padding: 24px 40px;
    z-index: 99;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0px;
    color: var(--light-steel);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #2A2A2A;
  }

  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a.sub { padding-left: 16px; font-size: 12px; color: var(--steel); }

  /* ===== SLASH DIVIDER ===== */
  .slash-divider {
    height: 4px;
    background: linear-gradient(90deg, var(--red) 0%, transparent 100%);
    position: relative;
  }

  /* ===== BUTTONS ===== */
  .btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    
    text-decoration: none;
    padding: 14px 32px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
  }

  .btn-red {
    background: var(--red);
    color: var(--white);
  }

  .btn-red:hover { background: var(--red-dark); }

  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--white);
  }

  .btn-outline:hover {
    background: var(--white);
    color: var(--black);
  }

  /* ===== SECTION BASE ===== */
  .section {
    padding: 100px 0;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .section-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--red);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.5vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.5px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 24px;
  }

  .section-title span { color: var(--red); }

  .section-body {
    font-size: 17px;
    line-height: 1.85;
    color: var(--light-steel);
    max-width: 640px;
  }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
    background: var(--black);
  }

  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      108deg,
      rgba(17,17,17,0.95) 0%,
      rgba(17,17,17,0.75) 42%,
      rgba(17,17,17,0.10) 100%
    );
    pointer-events: none;
    z-index: 1;
  }

  .hero-tape { z-index: 2; }
  .hero-content { z-index: 10; }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center 40%;
    background-attachment: fixed;
    opacity: 0.32;
  }

  /* Diagonal tape stripe overlay - the signature element */
  .hero-tape {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
  }

  .hero-tape::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 5px;
    height: 160%;
    background: var(--red);
    transform: rotate(-12deg);
    opacity: 0.8;
  }

  .hero-tape::after {
    content: '';
    position: absolute;
    top: -20%;
    right: calc(-10% + 30px);
    width: 2px;
    height: 160%;
    background: var(--red);
    transform: rotate(-12deg);
    opacity: 0.4;
  }

  .hero-content {
    position: relative;
    z-index: 10;
    padding: 80px 0;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0px;
    color: var(--red);
    margin-bottom: 28px;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--red);
  }

  .hero-headline {
    font-family: var(--font-display);
    font-size: clamp(64px, 10vw, 130px);
    line-height: 0.95;
    letter-spacing: -2px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 32px;
  }

  .hero-headline .line-red { color: var(--red); }
  .hero-headline .line-outline {
    -webkit-text-stroke: 2px var(--white);
    color: transparent;
    font-weight: 900;
  }

  .hero-sub {
    font-size: 18px;
    font-weight: 300;
    color: var(--light-steel);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 48px;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-badge {
    position: absolute;
    bottom: 60px;
    right: 60px;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--red);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    text-align: center;
  }

  .hero-badge .years {
    font-family: var(--font-display);
    font-size: 44px;
    line-height: 1;
    color: var(--white);
  }

  .hero-badge .years-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0px;
    color: rgba(255,255,255,0.8);
    line-height: 1.3;
  }

  /* ===== INTRO STRIP ===== */
  .intro-strip {
    background: var(--charcoal);
    border-top: 3px solid var(--red);
    border-bottom: 1px solid #2A2A2A;
    padding: 48px 0;
  }

  .intro-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .intro-strip-item {
    padding: 0 40px;
    border-right: 1px solid #333;
  }

  .intro-strip-item:last-child { border-right: none; }

  .intro-strip-item .num {
    font-family: var(--font-display);
    font-size: 54px;
    line-height: 1;
    color: var(--red);
    margin-bottom: 4px;
  }

  .intro-strip-item .label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0px;
    color: var(--white);
    margin-bottom: 8px;
  }

  .intro-strip-item .desc {
    font-size: 13px;
    color: var(--steel);
    line-height: 1.5;
  }

  /* ===== SERVICES OVERVIEW ===== */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 64px;
  }

  .service-card {
    background: var(--charcoal);
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.3s;
  }

  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

  .service-card:hover { background: #252525; }
  .service-card:hover::before { transform: scaleX(1); }

  .service-card-num {
    font-family: var(--font-display);
    font-size: 88px;
    color: #2A2A2A;
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 32px;
  }

  .service-card-icon {
    width: 48px;
    height: 48px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
  }

  .service-card-icon svg { width: 24px; height: 24px; stroke: white; fill: none; stroke-width: 2; }

  .service-card-title {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 16px;
  }

  .service-card-desc {
    font-size: 15px;
    color: var(--steel);
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .service-card-link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0px;
    color: var(--red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }

  .service-card-link::after { content: '→'; }

  /* ===== WHO WE ARE ===== */
  .who-we-are-section {
    position: relative;
    background: var(--black);
    overflow: hidden;
    min-height: 600px;
    display: block;
  }

  .who-photo-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  .who-photo-img {
    width: 100%;
    height: 130%;
    object-fit: cover;
    object-position: 65% 25%;
    filter: grayscale(0%) brightness(0.85);
    transform: translateY(0px);
    will-change: transform;
  }

  /* Heavy gradient: solid black left, fades to transparent right */
  .who-photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17,17,17,0.3);
  }
  .who-text-block { text-shadow: 0 2px 18px rgba(0,0,0,0.8), 0 1px 3px rgba(0,0,0,0.55); }

  /* Vertical stamp on right side of photo */
  .who-stamp {
    position: absolute;
    right: 5%;
    bottom: 10%;
    font-family: var(--font-display);
    font-size: clamp(80px, 12vw, 160px);
    line-height: 0.9;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.18);
    letter-spacing: 4px;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
  .who-stamp span {
    font-size: 0.4em;
    display: block;
    letter-spacing: 8px;
    -webkit-text-stroke: 1px rgba(204,34,34,0.5);
  }

  /* Text block sits over the gradient */
  .who-text-block {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 100px 0 100px 0;
    padding-left: 0;
  }

  /* Stat row */
  .who-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #2a2a2a;
  }

  .who-stat {
    flex: 1;
    padding: 0 24px 0 0;
  }
  .who-stat:first-child { padding-left: 0; }

  .who-stat-num {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 52px);
    color: var(--red);
    line-height: 1;
    letter-spacing: 2px;
  }

  .who-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--steel);
    letter-spacing: 0.5px;
    margin-top: 4px;
    text-transform: uppercase;
  }

  .who-stat-divider {
    width: 1px;
    height: 52px;
    background: #2a2a2a;
    flex-shrink: 0;
    margin-right: 24px;
  }

  /* Left red bar */
  .who-left-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--red);
    z-index: 3;
  }

  /* ===== RIDETECH / PERFORMANCE SECTION ===== */
  .rt-section {
    background: var(--black);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #1e1e1e;
  }

  /* Giant ghost word behind everything */
  .rt-ghost-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(120px, 20vw, 260px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.04);
    letter-spacing: 12px;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }

  /* Diagonal red slash accent */
  .rt-slash {
    position: absolute;
    top: -10%;
    right: 12%;
    width: 3px;
    height: 120%;
    background: var(--red);
    transform: skewX(-14deg);
    opacity: 0.5;
    z-index: 1;
  }
  .rt-slash::before {
    content: '';
    position: absolute;
    top: 0;
    left: 14px;
    width: 1px;
    height: 100%;
    background: var(--red);
    opacity: 0.3;
  }

  /* Header row: title left, plate right */
  .rt-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 64px;
    flex-wrap: wrap;
  }

  /* Stencil plate */
  .rt-plate {
    background: var(--red);
    padding: 16px 28px;
    transform: skewX(-6deg);
    flex-shrink: 0;
  }
  .rt-plate-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .rt-plate-id {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 3px;
    color: var(--white);
  }

  /* Spec data blocks */
  .rt-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .rt-spec-item {
    background: var(--charcoal);
    padding: 36px 32px;
    border-top: 2px solid var(--red);
    transition: background 0.2s;
  }
  .rt-spec-item:hover { background: #222; }

  .rt-spec-code {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--red);
    font-family: monospace;
    margin-bottom: 10px;
  }

  .rt-spec-name {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 14px;
  }

  .rt-spec-bar {
    height: 2px;
    background: #2a2a2a;
    margin-bottom: 16px;
    overflow: hidden;
  }

  .rt-spec-fill {
    height: 100%;
    background: var(--red);
    transition: width 1.2s cubic-bezier(.16,1,.3,1);
  }

  .rt-spec-desc {
    font-size: 14px;
    color: var(--steel);
    line-height: 1.7;
  }

  /* ===== SERVICE INLINE IMAGE ===== */
  .svc-inline-img {
    margin-top: 32px;
    position: relative;
  }

  .svc-inline-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    filter: grayscale(15%) brightness(0.88);
    border-top: 3px solid var(--red);
    transition: filter 0.4s, transform 0.4s;
  }

  .svc-inline-img:hover img {
    filter: grayscale(0%) brightness(0.95);
    transform: scale(1.01);
  }

  .svc-inline-caption {
    font-family: monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--steel);
    padding: 10px 0 0;
  }

  @media (max-width: 900px) {
    .svc-inline-img { display: none; }
  }

  /* ===== GALLERY STRIP ===== */
  .gallery-section { padding: 64px 0 48px; background: var(--black); }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
    margin-top: 36px;
    max-height: 480px;
    overflow: hidden;
  }

  .gallery-item {
    aspect-ratio: 4/3;
    background: var(--charcoal);
    overflow: hidden;
    position: relative;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: all 0.35s;
  }

  .gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
  }

  .gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1C1C1C 0%, #2A2A2A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .gallery-placeholder svg { width: 28px; height: 28px; stroke: #444; fill: none; stroke-width: 1.5; }

  /* ===== CTA BANNER ===== */
  .cta-banner {
    background: var(--red);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  .cta-banner::before {
    content: 'BZ';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 280px;
    color: rgba(0,0,0,0.15);
    line-height: 1;
    pointer-events: none;
  }

  .cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .cta-banner-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 64px);
    letter-spacing: 3px;
    color: var(--white);
    line-height: 1.05;
  }

  .cta-banner-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin-top: 10px;
  }

  .btn-white {
    background: var(--white);
    color: var(--red);
    white-space: nowrap;
  }

  .btn-white:hover {
    background: var(--off-white);
    color: var(--red-dark);
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--charcoal);
    border-top: 3px solid var(--red);
    padding: 64px 0 32px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 48px;
  }

  .footer-brand-name {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--white);
    margin: 16px 0 12px;
  }

  .footer-brand-name span { color: var(--red); }

  .footer-tagline {
    font-size: 13px;
    color: var(--steel);
    line-height: 1.6;
    max-width: 260px;
  }

  .footer-heading {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0px;
    color: var(--red);
    margin-bottom: 20px;
  }

  .footer-links { list-style: none; }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 15px;
    color: var(--steel);
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
  }

  .footer-links a:hover { color: var(--white); }

  .footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
  }

  .footer-contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .footer-contact-icon svg { width: 16px; height: 16px; stroke: var(--red); fill: none; stroke-width: 2; }

  .footer-contact-text {
    font-size: 14px;
    color: var(--steel);
    line-height: 1.5;
  }

  .footer-contact-text a {
    color: var(--steel);
    text-decoration: none;
  }

  .footer-contact-text a:hover { color: var(--white); }

  .footer-bottom {
    border-top: 1px solid #2A2A2A;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-copy { font-size: 12px; color: var(--steel); }

  .footer-socials {
    display: flex;
    gap: 12px;
  }

  .social-link {
    width: 36px;
    height: 36px;
    background: #2A2A2A;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
  }

  .social-link:hover { background: var(--red); }

  .social-link svg { width: 16px; height: 16px; stroke: var(--white); fill: none; stroke-width: 2; }

  .hours-grid { list-style: none; }

  .hours-grid li {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--steel);
    padding: 5px 0;
    border-bottom: 1px solid #2A2A2A;
    gap: 16px;
  }

  .hours-grid li:last-child { border-bottom: none; }
  .hours-grid .day { color: var(--light-steel); font-weight: 500; }

  /* ===== PAGE HERO (inner pages) ===== */
  .page-hero {
    background: var(--black);
    padding: 160px 0 80px;
    position: relative;
    border-bottom: 3px solid var(--red);
    overflow: hidden;
  }

  .page-hero::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 3px;
    height: 100%;
    background: var(--red);
    transform: rotate(-12deg);
    opacity: 0.3;
  }

  .page-hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0px;
    color: var(--red);
    margin-bottom: 16px;
  }

  .page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 8vw, 96px);
    line-height: 0.95;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 24px;
  }

  .page-hero-sub {
    font-size: 18px;
    color: var(--light-steel);
    max-width: 520px;
    line-height: 1.7;
  }

  /* ===== SERVICE DETAIL CARDS ===== */
  .service-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
  }

  .feature-card {
    background: var(--charcoal);
    padding: 48px 36px;
  }

  .feature-card-icon {
    width: 44px;
    height: 44px;
    background: var(--red);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
  }

  .feature-card-icon svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 2; }

  .feature-card-title {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 12px;
  }

  .feature-card-desc {
    font-size: 14px;
    color: var(--steel);
    line-height: 1.7;
  }

  /* ===== INSURANCE SECTION ===== */
  .insurance-section {
    background: var(--charcoal);
    padding: 80px 0;
    border-left: 4px solid var(--red);
  }

  .insurance-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  /* ===== FULL SERVICE LIST ===== */
  .full-service-section { padding: 100px 0; }

  .service-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 48px;
  }

  .service-list-block {
    background: var(--charcoal);
    padding: 48px;
  }

  .service-list-block h3 {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #333;
  }

  .service-list-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .service-list-block ul li {
    font-size: 14px;
    color: var(--light-steel);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
  }

  .service-list-block ul li::before {
    content: '';
    display: block;
    width: 16px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
    margin-top: 10px;
  }

  /* ===== TRUST PILLARS ===== */
  .trust-section {
    background: var(--black);
    padding: 100px 0;
  }

  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 56px;
  }

  .trust-item {
    background: var(--charcoal);
    padding: 40px 32px;
    border-top: 3px solid transparent;
    transition: border-color 0.3s;
  }

  .trust-item:hover { border-color: var(--red); }

  .trust-check {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .trust-item-title {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 0.5px;
    color: var(--white);
    margin-bottom: 10px;
  }

  .trust-item-desc {
    font-size: 13px;
    color: var(--steel);
    line-height: 1.6;
  }

  /* ===== ABOUT PAGE ===== */
  .about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding: 100px 0;
  }

  .about-intro-image {
    aspect-ratio: 4/3;
    background: var(--charcoal);
    overflow: hidden;
  }

  .about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
  }

  .about-timeline {
    background: var(--charcoal);
    padding: 80px 0;
  }

  .timeline {
    position: relative;
    padding-left: 40px;
    margin-top: 48px;
  }

  .timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--red) 0%, #2A2A2A 100%);
  }

  .timeline-item {
    position: relative;
    margin-bottom: 48px;
  }

  .timeline-item::before {
    content: '';
    position: absolute;
    left: -44px;
    top: 6px;
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
  }

  .timeline-year {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 2px;
    color: var(--red);
    margin-bottom: 6px;
  }

  .timeline-desc {
    font-size: 15px;
    color: var(--light-steel);
    line-height: 1.7;
  }

  /* ===== CONTACT PAGE ===== */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2px;
    margin-top: 64px;
  }

  .contact-info-panel {
    background: var(--charcoal);
    padding: 56px 48px;
  }

  .contact-form-panel {
    background: var(--dark);
    padding: 56px 48px;
  }

  .contact-info-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #2A2A2A;
  }

  .contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .contact-info-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0px;
    color: var(--red);
    margin-bottom: 10px;
  }

  .contact-info-value {
    font-size: 16px;
    color: var(--white);
    line-height: 1.6;
  }

  .contact-info-value a {
    color: var(--white);
    text-decoration: none;
  }

  .contact-info-value a:hover { color: var(--light-steel); }

  /* Form styles */
  .form-group { margin-bottom: 24px; }

  .form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0px;
    color: var(--steel);
    margin-bottom: 8px;
  }

  .form-input, .form-textarea, .form-select {
    width: 100%;
    background: #1A1A1A;
    border: 1px solid #333;
    border-radius: 0;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
  }

  .form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--red);
  }

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

  .form-select option { background: var(--black); }

  /* ===== MAP EMBED PLACEHOLDER ===== */
  .map-section {
    height: 400px;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #2A2A2A;
    position: relative;
    overflow: hidden;
  }

  .map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(80%) invert(90%) contrast(0.8);
  }

  .map-overlay {
    position: absolute;
    bottom: 24px;
    left: 40px;
    background: var(--red);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .map-overlay svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; }

  .map-overlay-text {
    font-size: 13px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .ridetech-inner, .insurance-inner, .about-intro { grid-template-columns: 1fr; gap: 48px; }
    .rt-specs { grid-template-columns: 1fr; }
    .who-text-block { max-width: 100%; padding: 80px 0; }
    .rt-header { flex-direction: column; align-items: flex-start; }
    .service-feature-grid { grid-template-columns: 1fr 1fr; }
    .intro-strip-grid { grid-template-columns: 1fr; }
    .intro-strip-item { border-right: none; border-bottom: 1px solid #333; padding: 24px 0; }
    .intro-strip-item:last-child { border-bottom: none; }
  }

  @media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .mobile-burger { display: flex; }
    .container { padding: 0 20px; }
    .section { padding: 64px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .service-list-grid { grid-template-columns: 1fr; }
    .service-feature-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); max-height: none; }
    .who-stats { flex-wrap: wrap; gap: 20px; }
    .who-stamp { display: none; }
    .rt-ghost-text { font-size: 80px; }
    .contact-grid { grid-template-columns: 1fr; }
    .hero-badge { display: none; }
    .cta-banner-inner { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-headline { font-size: 72px; }
  }

  /* Parallax mobile fallback (iOS doesn't support bg-attachment:fixed) */
  @supports (-webkit-overflow-scrolling: touch) {
    .hero-bg {
      background-attachment: scroll;
    }
  }

  @media (max-width: 768px) {
    .hero-bg {
      background-attachment: scroll;
    }
  }

  
  
  /* ===== MECHANICAL / BLUEPRINT AESTHETIC ===== */

  /* Blueprint crosshatch overlay on dark sections */
  .blueprint-bg {
    position: relative;
  }
  .blueprint-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
      linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 120px 120px, 120px 120px, 30px 30px, 30px 30px;
    pointer-events: none;
    z-index: 0;
  }
  .blueprint-bg > * { position: relative; z-index: 1; }

  /* Crosshatch for charcoal sections */
  .hatch-bg {
    position: relative;
  }
  .hatch-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(
        45deg,
        transparent,
        transparent 24px,
        rgba(255,255,255,0.042) 24px,
        rgba(255,255,255,0.042) 25px
      ),
      repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 60px,
        rgba(255,255,255,0.018) 60px,
        rgba(255,255,255,0.018) 61px
      );
    pointer-events: none;
    z-index: 0;
  }
  .hatch-bg > * { position: relative; z-index: 1; }

  /* Schematic corner marks — top-left engineering drawing style */
  .schematic-section {
    position: relative;
  }
  .schematic-section::before,
  .schematic-section::after {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    opacity: 0.6;
  }
  .schematic-section::before {
    top: 20px;
    left: 20px;
    border-top: 2px solid var(--red);
    border-left: 2px solid var(--red);
  }
  .schematic-section::after {
    bottom: 20px;
    right: 20px;
    border-bottom: 2px solid rgba(140,140,140,0.6);
    border-right: 2px solid rgba(140,140,140,0.6);
  }

  /* Schematic label stamp (like a drawing title block) */
  .spec-stamp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #333;
    border-left: 3px solid var(--red);
    padding: 8px 16px;
    background: rgba(0,0,0,0.3);
  }
  .spec-stamp .stamp-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0px;
    color: var(--steel);
  }
  .spec-stamp .stamp-val {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: var(--red);
    letter-spacing: 1px;
  }

  /* Mechanical SVG decorations */
  .mech-svg-wrap {
    pointer-events: none;
    user-select: none;
  }

  /* Measurement annotation lines */
  .annotation-line {
    position: absolute;
    background: rgba(204,34,34,0.25);
    pointer-events: none;
  }

  /* Red rule accent bar */
  .red-rule {
    width: 48px;
    height: 3px;
    background: var(--red);
    margin-bottom: 20px;
  }

  /* Grease-stain decorative element */
  .grease-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    filter: blur(1px);
    pointer-events: none;
  }

  /* Hero mechanical overlay */
  .hero-mech-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
  }

  /* Stat strip override — technical readout style */
  .intro-strip {
    font-family: var(--font-body);
    border-top: 2px solid var(--red);
  }
  .intro-strip-item .num {
    font-family: 'Courier New', monospace;
    color: var(--red);
  }
  .intro-strip-item .label {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
  }

  /* Service cards — blueprint panel style */
  .service-card {
    border: 1px solid #2a2a2a;
    border-top: 2px solid transparent;
    transition: border-top-color 0.3s, background 0.3s;
  }
  .service-card:hover {
    border-top-color: var(--red);
  }

  /* Technical typewriter text */
  .mono {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--steel);
  }

  /* Section rule */
  .section-rule {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--red) 0%, #333 40%, transparent 100%);
    margin: 48px 0;
  }

  /* Blueprint hero badge */
  .hero-badge {
    background: rgba(17,17,17,0.85);
    border: 1px solid var(--red);
    clip-path: none;
    border-radius: 0;
    width: auto;
    height: auto;
    padding: 16px 24px;
    text-align: left;
    gap: 0;
    flex-direction: column;
  }
  .hero-badge .years {
    font-size: 52px;
  }
  .hero-badge .years-label {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--red);
  }

  /* Schematic SVG sidebar decoration */
  .schematic-sidebar {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    opacity: 0.07;
    pointer-events: none;
  }

  /* Blueprint section header */
  .blueprint-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
  }
  .blueprint-header .bh-num {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: var(--red);
    letter-spacing: 1px;
    border: 1px solid var(--red);
    padding: 3px 8px;
  }
  .blueprint-header .bh-line {
    flex: 1;
    height: 1px;
    background: #2a2a2a;
  }


  /* ===== SCROLL GEAR + WRENCH WIDGET ===== */
  #mech-widget {
    position: fixed;
    top: 88px;          /* just below navbar */
    left: 20px;
    width: 110px;
    height: 110px;
    z-index: 90;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  /* Fade widget out when at very top (hero visible), fade in once scrolling */
  #mech-widget.hidden { opacity: 0; }
  #mech-widget.visible { opacity: 1; }

  #mech-widget svg {
    width: 100%;
    height: 100%;
    overflow: visible;
  }

  /* Thin red ring that fills like a progress arc as you scroll */
  #scroll-arc-track {
    fill: none;
    stroke: rgba(204,34,34,0.15);
    stroke-width: 2;
  }
  #scroll-arc-fill {
    fill: none;
    stroke: rgba(204,34,34,0.75);
    stroke-width: 2;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.15s linear;
  }

  /* Small pct readout */
  #scroll-pct {
    font-family: 'Courier New', monospace;
    font-size: 9px;
    fill: rgba(204,34,34,0.7);
    text-anchor: middle;
  }


  /* ===== ELEVATED SECTION STYLES ===== */

  /* --- Scroll-triggered reveal --- */
  .sr {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(.22,1,.36,1), transform 0.75s cubic-bezier(.22,1,.36,1);
  }
  .sr.sr-left  { transform: translateX(-36px); }
  .sr.sr-scale { transform: scale(0.94); }
  .sr.sr-stagger-1 { transition-delay: 0.08s; }
  .sr.sr-stagger-2 { transition-delay: 0.16s; }
  .sr.sr-stagger-3 { transition-delay: 0.24s; }
  .sr.sr-stagger-4 { transition-delay: 0.32s; }
  .sr.in { opacity: 1; transform: none; }

  /* --- Raceway header slide-in --- */
  .sr-race {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.55s cubic-bezier(.16,1,.3,1), transform 0.55s cubic-bezier(.16,1,.3,1);
    will-change: transform, opacity;
    overflow: hidden;
  }
  .sr-race.race-delay-1 { transition-delay: 0.08s; }
  .sr-race.race-delay-2 { transition-delay: 0.18s; }
  .sr-race.in {
    opacity: 1;
    transform: translateX(0);
  }

  /* speed-line underline that draws across on entry */
  .section-title.sr-race::after {
    content: '';
    display: block;
    height: 3px;
    width: 0;
    background: var(--red);
    margin-top: 10px;
    transition: width 0.45s cubic-bezier(.16,1,.3,1) 0.45s;
  }
  .section-title.sr-race.in::after {
    width: 52px;
  }

  /* --- Stat strip: horizontal scrolling ticker feel --- */
  .intro-strip-grid {
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
  }
  .intro-strip-item {
    position: relative;
    padding: 40px 48px;
    border-right: 1px solid #222;
    overflow: hidden;
  }
  .intro-strip-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(204,34,34,0.04) 0%, transparent 60%);
    pointer-events: none;
  }
  .intro-strip-item:hover::after {
    background: linear-gradient(135deg, rgba(204,34,34,0.10) 0%, transparent 60%);
  }
  .intro-strip-item .num {
    font-size: 68px;
    line-height: 1;
    background: linear-gradient(135deg, #CC2222 0%, #FF4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* --- Service cards: dark panel with red sweep on hover --- */
  .service-card {
    border: 1px solid #222;
    border-top: 2px solid #1a1a1a;
    transition: border-top-color 0.25s, box-shadow 0.25s, transform 0.25s;
  }
  .service-card:hover {
    border-top-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(204,34,34,0.15);
  }
  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(.22,1,.36,1);
  }
  .service-card:hover::after { transform: scaleX(1); }

  /* --- Feature cards: pop on scroll enter --- */
  .feature-card {
    border: 1px solid #222;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.3s, transform 0.3s;
  }
  .feature-card:hover {
    border-bottom-color: var(--red);
    transform: translateY(-3px);
  }

  /* --- About intro: split with visual tension --- */
  .about-intro {
    gap: 0;
  }
  .about-intro > div:first-child {
    padding-right: 64px;
    border-right: 1px solid #222;
  }
  .about-intro > div:last-child {
    padding-left: 64px;
  }

  /* --- Trust grid: cards pop in sequence --- */
  .trust-item {
    background: #161616;
    border: 1px solid #222;
    border-top: 2px solid transparent;
    transition: border-top-color 0.3s, background 0.3s, transform 0.3s;
  }
  .trust-item:hover {
    background: #1e1e1e;
    border-top-color: var(--red);
    transform: translateY(-4px);
  }

  /* --- CTA banner: diagonal slash divider --- */
  .cta-banner {
    clip-path: polygon(0 6%, 100% 0%, 100% 94%, 0% 100%);
    padding: 110px 0;
    margin: -40px 0;
    position: relative;
    z-index: 2;
  }

  /* --- Service list blocks --- */
  .service-list-block {
    border: 1px solid #222;
    border-left: 3px solid transparent;
    transition: border-left-color 0.3s, transform 0.3s;
  }
  .service-list-block:hover {
    border-left-color: var(--red);
    transform: translateX(4px);
  }

  /* --- Timeline: active line pulse --- */
  .timeline::before {
    background: linear-gradient(180deg, var(--red) 0%, rgba(204,34,34,0.15) 100%);
  }
  .timeline-item::before {
    box-shadow: 0 0 0 3px rgba(204,34,34,0.15);
    transition: box-shadow 0.3s;
  }
  .timeline-item:hover::before {
    box-shadow: 0 0 0 6px rgba(204,34,34,0.2), 0 0 12px rgba(204,34,34,0.3);
  }

  /* --- Section eyebrow: animated underline --- */
  .section-eyebrow {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
  }
  .section-eyebrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--red);
    transition: width 0.5s cubic-bezier(.22,1,.36,1) 0.3s;
  }
  .sr.in .section-eyebrow::after,
  .section-eyebrow.animate::after { width: 100%; }

  /* --- Gallery: tighter, darker overlay on hover, red border flash --- */
  .gallery-item {
    border: 1px solid #1a1a1a;
    transition: border-color 0.25s;
  }
  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(204,34,34,0);
    transition: background 0.25s;
    pointer-events: none;
  }
  .gallery-item:hover {
    border-color: var(--red);
  }
  .gallery-item:hover::after {
    background: rgba(204,34,34,0.06);
  }

  /* --- Ridetech section: left accent line --- */
  .ridetech-section {
    border-left: none;
    position: relative;
  }
  .ridetech-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--red) 30%, var(--red) 70%, transparent);
  }

  /* --- Contact form panel: subtle inner glow on focus fields --- */
  .form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(204,34,34,0.1);
  }

  /* --- Page hero: diagonal bottom cut --- */
  .page-hero {
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
    padding-bottom: 120px;
    border-bottom: none;
  }


  /* ===== SERVICE TILES (6-up grid) ===== */
  .svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 56px;
  }

  .svc-tile {
    background: #161616;
    padding: 48px 36px 40px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #1e1e1e;
    border-top: 2px solid transparent;
    transition: border-top-color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .svc-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(204,34,34,0.06) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }

  .svc-tile:hover {
    border-top-color: var(--red);
    background: #1c1c1c;
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(0,0,0,0.55), 0 0 0 1px rgba(204,34,34,0.12);
  }

  .svc-tile:hover::before { opacity: 1; }

  /* Red sweep underline on hover */
  .svc-tile::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.4s cubic-bezier(.22,1,.36,1);
  }
  .svc-tile:hover::after { width: 100%; }

  /* Big background number */
  .svc-tile-num {
    position: absolute;
    top: 12px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 96px;
    line-height: 1;
    color: rgba(255,255,255,0.03);
    pointer-events: none;
    transition: color 0.3s;
    user-select: none;
  }
  .svc-tile:hover .svc-tile-num {
    color: rgba(204,34,34,0.05);
  }

  /* Icon */
  .svc-tile-icon {
    width: 72px;
    height: 56px;
    background: transparent;
    border: none;
    clip-path: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    opacity: 0.75;
    transition: opacity 0.3s, transform 0.3s;
  }
  .svc-tile:hover .svc-tile-icon {
    opacity: 1;
    transform: scale(1.06);
  }
  .svc-tile-icon svg {
    width: 100%;
    height: 100%;
  }

  /* Code label */
  .svc-tile-code {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(204,34,34,0.6);
    margin-bottom: 10px;
  }

  /* Title */
  .svc-tile-title {
    font-family: var(--font-display);
    font-size: 26px;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.1;
  }

  /* Desc */
  .svc-tile-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--steel);
    flex: 1;
    margin-bottom: 24px;
  }

  /* Tags */
  .svc-tile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
  }
  .svc-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0px;
    color: rgba(180,180,180,0.7);
    border: 1px solid #2a2a2a;
    padding: 4px 10px;
    border-radius: 3px;
  }

  /* Arrow link */
  .svc-tile-link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0px;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .svc-tile-link::after {
    content: '→';
    transition: transform 0.2s;
    display: inline-block;
  }
  .svc-tile:hover .svc-tile-link::after {
    transform: translateX(6px);
  }

  @media (max-width: 1024px) {
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 640px) {
    .svc-grid { grid-template-columns: 1fr; }
  }

  /* ===== INDIVIDUAL SERVICE PAGE ===== */
  .svc-page-header {
    background: var(--black);
    padding: 160px 0 88px;
    position: relative;
    overflow: hidden;
    border-bottom: none;
  }

  /* Diagonal red slash panel */
  .svc-page-header::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -8%;
    width: 38%;
    height: 160%;
    background: var(--red);
    transform: skewX(-14deg);
    z-index: 0;
  }

  /* Hatch texture on the red slash */
  .svc-page-header::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -8%;
    width: 38%;
    height: 160%;
    transform: skewX(-14deg);
    background: repeating-linear-gradient(
      135deg,
      transparent,
      transparent 18px,
      rgba(0,0,0,0.12) 18px,
      rgba(0,0,0,0.12) 19px
    );
    z-index: 1;
    pointer-events: none;
  }

  /* Ghost service number watermark */
  .svc-page-header .svc-ghost-num {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%) skewX(-8deg);
    font-family: var(--font-display);
    font-size: clamp(120px, 18vw, 220px);
    font-weight: 900;
    color: rgba(255,255,255,0.13);
    line-height: 1;
    letter-spacing: -4px;
    z-index: 2;
    pointer-events: none;
    user-select: none;
  }

  /* Hard left red accent bar */
  .svc-page-header .svc-left-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--red);
    z-index: 2;
  }

  /* Bottom trim line */
  .svc-page-header .svc-bottom-trim {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--red) 0%, var(--red) 58%, transparent 62%);
    z-index: 3;
  }

  .svc-page-header > .container {
    position: relative;
    z-index: 4;
  }
  .svc-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 56px;
  }
  .svc-detail-block {
    background: var(--charcoal);
    padding: 48px;
    border: 1px solid #222;
    border-top: 2px solid transparent;
    transition: border-top-color 0.25s;
  }
  .svc-detail-block:hover { border-top-color: var(--red); }
  .svc-detail-block h3 {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #2a2a2a;
  }
  .svc-detail-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .svc-detail-block ul li {
    font-size: 14px;
    color: var(--light-steel);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
  }
  .svc-detail-block ul li::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
    margin-top: 10px;
  }
  @media (max-width: 768px) {
    .svc-detail-grid { grid-template-columns: 1fr; }
  }


  @keyframes logoFloat {
    0%, 100% { transform: translateY(0px);   }
    50%       { transform: translateY(-8px);  }
  }


  @media (max-width: 900px) {
    .container.hero-content {
      flex-direction: column !important;
      padding: 100px 20px 48px !important;
      gap: 40px !important;
    }
    .container.hero-content > div:last-child {
      width: 260px !important;
    }
    .container.hero-content > div:last-child img {
      width: 240px !important;
    }
  }



  /* Tire-tread streaks across the red CTA banners (site-wide) */
        .cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2NDAiIGhlaWdodD0iMzAwIiB2aWV3Qm94PSIwIDAgNjQwIDMwMCI+CjxkZWZzPgo8ZmlsdGVyIGlkPSJnIiB4PSItMzAlIiB5PSItMzAlIiB3aWR0aD0iMTYwJSIgaGVpZ2h0PSIxNjAlIj4KPGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuMTMgMC4wMTUiIG51bU9jdGF2ZXM9IjMiIHNlZWQ9IjExIiByZXN1bHQ9Im4iLz4KPGZlRGlzcGxhY2VtZW50TWFwIGluPSJTb3VyY2VHcmFwaGljIiBpbjI9Im4iIHNjYWxlPSIxNiIgeENoYW5uZWxTZWxlY3Rvcj0iUiIgeUNoYW5uZWxTZWxlY3Rvcj0iRyIvPgo8L2ZpbHRlcj4KPHBhdHRlcm4gaWQ9InQiIHdpZHRoPSI0NiIgaGVpZ2h0PSIyNiIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxwYXRoIGQ9Ik0yLDQgTDIzLDEyIEw0NCw0IEw0NCwxMiBMMjMsMjAgTDIsMTIgWiIgZmlsbD0iIzAwMCIvPgo8L3BhdHRlcm4+CjwvZGVmcz4KPGcgZmlsdGVyPSJ1cmwoI2cpIiB0cmFuc2Zvcm09InJvdGF0ZSgyMCAzMjAgMTUwKSI+CjxyZWN0IHg9IjgwIiB5PSItMTgwIiB3aWR0aD0iMzIiIGhlaWdodD0iNjYwIiBmaWxsPSJ1cmwoI3QpIi8+CjxyZWN0IHg9IjE3MiIgeT0iLTE4MCIgd2lkdGg9IjM2IiBoZWlnaHQ9IjY2MCIgZmlsbD0idXJsKCN0KSIvPgo8L2c+Cjwvc3ZnPg==");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    mix-blend-mode: multiply;
  }
  .cta-banner-inner { position: relative; z-index: 1; }
  /* Gear-shaped social buttons (icons sit on the cog) */
  .social-link { background: transparent !important; position: relative; width: 40px; height: 40px; }
  .social-link:hover { background: transparent !important; }
  .social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #2A2A2A;
    -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA0OCA0OCc+PHBhdGggZD0nTTQ1LjU2IDE5LjYxIEw0NS45MSAyMi4wNyBMMzkuOTQgMjUuNDEgTDM5LjY4IDI3LjIgTDQyLjg3IDM1LjMyIEwzNi4wNyAzNC41MSBMMzQuODEgMzUuOCBMMzIuNjEgNDQuMjUgTDI3LjU5IDM5LjU5IEwyNS44MSAzOS45IEwxOS4wNyA0NS40NCBMMTcuNzQgMzguNzIgTDE2LjEyIDM3LjkyIEw3LjQxIDM4LjQ0IEwxMC4yOCAzMi4yMyBMOS40NCAzMC42MyBMMi4wOSAyNS45MyBMOC4wNiAyMi41OSBMOC4zMiAyMC44IEw1LjEzIDEyLjY4IEwxMS45MyAxMy40OSBMMTMuMTkgMTIuMiBMMTUuMzkgMy43NSBMMjAuNDEgOC40MSBMMjIuMTkgOC4xIEwyOC45MyAyLjU2IEwzMC4yNiA5LjI4IEwzMS44OCAxMC4wOCBMNDAuNTkgOS41NiBMMzcuNzIgMTUuNzcgTDM4LjU2IDE3LjM3IFonIGZpbGw9JyMwMDAnLz48L3N2Zz4=") center / contain no-repeat;
            mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA0OCA0OCc+PHBhdGggZD0nTTQ1LjU2IDE5LjYxIEw0NS45MSAyMi4wNyBMMzkuOTQgMjUuNDEgTDM5LjY4IDI3LjIgTDQyLjg3IDM1LjMyIEwzNi4wNyAzNC41MSBMMzQuODEgMzUuOCBMMzIuNjEgNDQuMjUgTDI3LjU5IDM5LjU5IEwyNS44MSAzOS45IEwxOS4wNyA0NS40NCBMMTcuNzQgMzguNzIgTDE2LjEyIDM3LjkyIEw3LjQxIDM4LjQ0IEwxMC4yOCAzMi4yMyBMOS40NCAzMC42MyBMMi4wOSAyNS45MyBMOC4wNiAyMi41OSBMOC4zMiAyMC44IEw1LjEzIDEyLjY4IEwxMS45MyAxMy40OSBMMTMuMTkgMTIuMiBMMTUuMzkgMy43NSBMMjAuNDEgOC40MSBMMjIuMTkgOC4xIEwyOC45MyAyLjU2IEwzMC4yNiA5LjI4IEwzMS44OCAxMC4wOCBMNDAuNTkgOS41NiBMMzcuNzIgMTUuNzcgTDM4LjU2IDE3LjM3IFonIGZpbGw9JyMwMDAnLz48L3N2Zz4=") center / contain no-repeat;
    transition: background 0.2s;
    z-index: 0;
  }
  .social-link:hover::before { background: var(--red); }
  .social-link svg { position: relative; z-index: 1; }
  /* Hero logo: slide in from left on entry, fade out on exit */
  .hero-logo-wrap {
    opacity: 0;
    transition: opacity 0.7s ease;
  }
  .hero-logo-wrap.in {
    opacity: 1;
    animation: logoSlideIn 1.8s cubic-bezier(.16,1,.3,1); transition: opacity 1.6s ease;
  }
  @keyframes logoSlideIn { from { transform: translateX(-80px) scale(0.5); } to { transform: translateX(0) scale(1); } }
  @media (prefers-reduced-motion: reduce) { .hero-logo-wrap.in { animation: none; } }
  

  /* ===== MOBILE QA / CLEANUP ===== */
  @media (max-width: 900px) {
    .hero-logo-wrap { display: none !important; }   /* hide hero logo on mobile */
    #mech-widget { display: none !important; }       /* hide gear scroll-widget on mobile */
  }
  @media (max-width: 768px) {
    /* stack inline two-column grids so they don't squish */
    [style*="grid-template-columns:1fr 1fr"],
    [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; gap: 32px !important; }
    /* trim oversized desktop padding inside cards/panels */
    .svc-detail-block, .service-list-block, .contact-info-panel, .contact-form-panel, .svc-tile { padding: 30px 22px !important; }
    .intro-strip-item { padding: 26px 22px !important; }
    /* CTA banner: smaller padding + watermark on phones */
    .cta-banner { padding: 64px 0 !important; }
    .cta-banner::before { font-size: 150px !important; }
    .cta-banner-title { font-size: 32px !important; }
    /* keep big titles from overflowing */
    .page-hero-title { font-size: clamp(38px, 11vw, 60px) !important; }
    .svc-page-header { padding: 120px 0 60px !important; }
    .who-text-block { padding: 64px 0 !important; }
    /* nav plate a touch smaller */
    nav .nav-logo img { height: 48px !important; }
    .nav-logo-plate { display: none !important; }
    .nav-logo-badge { display: block !important; }
  }
  

  /* Stat strip: cleaner, less "code" look */
  .intro-strip-item .num { font-family: var(--font-display) !important; font-size: 76px !important; letter-spacing: 1px !important; }
  .intro-strip-item .label { font-family: var(--font-body) !important; font-size: 13px !important; font-weight: 700 !important; letter-spacing: 2px !important; text-transform: uppercase !important; color: var(--white) !important; }
  .intro-strip-item .desc { font-family: var(--font-body) !important; }
  .intro-strip-item { border-top: 2px solid transparent; transition: border-top-color 0.3s, background 0.3s; }
  .intro-strip-item:hover { border-top-color: var(--red); background: rgba(204,34,34,0.04); }
  /* Gallery carousel: 3 visible + arrows */
  .gallery-carousel { position: relative; }
  .gallery-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 12px !important;
    overflow-x: auto !important;
    max-height: none !important;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 0 58px !important;
    scrollbar-width: none;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-grid .gallery-item { flex: 0 0 calc((100% - 24px) / 3); scroll-snap-align: start; }
  .gallery-grid .gallery-item.sr { opacity: 1 !important; transform: none !important; }
  .gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 46px; height: 46px; background: var(--red); color: #fff; border: none; font-family: var(--font-body); font-size: 28px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
  .gallery-arrow:hover { background: var(--red-dark); }
  .gallery-prev { left: 6px; }
  .gallery-next { right: 6px; }
  @media (max-width: 768px) {
    .gallery-grid { padding: 0 42px !important; }
    .gallery-grid .gallery-item { flex: 0 0 calc((100% - 12px) / 1.35); }
    .gallery-arrow { width: 40px; height: 40px; font-size: 24px; }
  }
  

  #gear-cursor { position: fixed; top: 0; left: 0; width: 34px; height: 34px; margin: -17px 0 0 -17px; pointer-events: none; z-index: 9999; opacity: 0.6; will-change: transform; display: none; }
  #gear-cursor svg { display: block; width: 100%; height: 100%; }
  @media (hover: none), (pointer: coarse) { #gear-cursor { display: none !important; } }
  

    /* Placeholders for removed images */
    img[src=""]{
      background:#1c1c1c;
      border:1px dashed #3a3a3a;
      min-width:40px;
      min-height:40px;
      object-fit:cover;
      color:transparent;
    }
  
  /* active top-nav for the current page */
  .nav-links .nav-parent.active-link { color: var(--red); }

  /* ===== BLOG ===== */
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
  .blog-card { background: #161616; border: 1px solid #222; border-top: 2px solid transparent; display: flex; flex-direction: column; overflow: hidden; text-decoration: none; transition: border-top-color .25s, transform .25s, box-shadow .25s; }
  .blog-card:hover { border-top-color: var(--red); transform: translateY(-5px); box-shadow: 0 24px 56px rgba(0,0,0,.55); }
  .blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
  .blog-card-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%); transition: transform .4s, filter .4s; }
  .blog-card:hover .blog-card-img img { transform: scale(1.05); filter: grayscale(0%); }
  .blog-card-body { padding: 28px 26px 30px; display: flex; flex-direction: column; flex: 1; }
  .blog-cat { font-family: 'DM Sans',sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
  .blog-card-title { font-family: var(--font-display); font-size: 24px; line-height: 1.15; letter-spacing: .5px; color: var(--white); margin-bottom: 14px; }
  .blog-card-excerpt { font-size: 14px; line-height: 1.7; color: var(--steel); flex: 1; margin-bottom: 22px; }
  .blog-card-meta { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--steel); border-top: 1px solid #262626; padding-top: 16px; }
  .blog-card-more { color: var(--red); font-weight: 600; }
  .blog-featured { width: 100%; height: 440px; object-fit: cover; border-top: 3px solid var(--red); display: block; }
  .blog-meta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; font-size: 13px; color: var(--steel); margin-top: 22px; }
  .blog-article { max-width: 760px; margin: 0 auto; padding: 64px 40px 72px; }
  .blog-article p { font-size: 17px; line-height: 1.85; color: var(--light-steel); margin-bottom: 24px; }
  .blog-article-lead { font-size: 20px !important; line-height: 1.7 !important; color: var(--off-white) !important; }
  .blog-article h2 { font-family: var(--font-display); font-size: 30px; letter-spacing: .5px; color: var(--white); margin: 44px 0 16px; }
  .blog-article h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: .5px; color: var(--white); margin: 34px 0 14px; }
  .blog-article ul { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 12px; }
  .blog-article ul li { position: relative; padding-left: 26px; font-size: 16px; line-height: 1.6; color: var(--light-steel); }
  .blog-article ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 16px; height: 2px; background: var(--red); }
  .blog-back { display: inline-block; margin-top: 20px; color: var(--red); font-weight: 600; font-size: 13px; letter-spacing: 1px; text-decoration: none; }
  .blog-back:hover { color: var(--white); }
  @media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } .blog-featured { height: 300px; } }
  @media (max-width: 768px) { .blog-article { padding: 44px 20px 56px; } }

  /* svc-tile link reset */
  .svc-tile, .svc-tile:hover, .svc-tile:visited, .svc-tile:focus { text-decoration: none; color: inherit; }
