:root {
    --white: #f4f4f6;
    --off-white: #e8e8ec;
    --black: #111010;
    --charcoal: #2a2830;
    --red: #c12526;
    --red-dark: #9a1c1d;
    --yellow: #fccb2d;
    --yellow-dark: #e0b010;
    --silver: #b5b5bc;
    --silver-light: #d4d4d8;
    --silver-dark: #8a8a93;
    --mid: #6b6b74;
    --light: #d0d0d6;
    --ph-bg: #dcdce2;
    --ph-border: #b8b8c0;
    --ph-text: #9090a0;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Source Sans 3', sans-serif; background: var(--white); color: var(--black); overflow-x: hidden; }

  /* ─── PLACEHOLDERS ─── */
  .ph {
    display: inline-flex; align-items: center;
    background: var(--ph-bg); border: 1.5px dashed var(--ph-border);
    color: var(--ph-text); font-family: 'Source Sans 3', sans-serif;
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 3px 10px; border-radius: 2px; vertical-align: middle;
  }
  .img-ph {
    background: var(--ph-bg); border: 2px dashed var(--ph-border);
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 10px; color: var(--ph-text);
    font-family: 'Source Sans 3', sans-serif; font-size: 10px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; text-align: center; padding: 16px;
  }
  .img-ph svg { fill: var(--ph-border); }

  /* ─── TOP STRIP ─── */
  .topstrip {
    background: #0a0a0a; color: rgba(255,255,255,0.5);
    font-size: 11.5px; font-weight: 500; letter-spacing: 0.04em;
    padding: 9px 32px; display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 8px;
  }
  .topstrip .ph { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14); color: rgba(255,255,255,0.35); }
  @media (max-width: 600px) { .topstrip { flex-direction: column; text-align: center; padding: 10px 20px; } }

  /* ─── NAV ─── */
  nav { background: var(--black); border-bottom: 3px solid var(--red); position: sticky; top: 0; z-index: 100; }
  .nav-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 32px;
    height: 92px; display: flex; align-items: center; justify-content: space-between;
  }
  .logo-wrap { display: flex; flex-direction: column; justify-content: center; }
  .logo-name { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 0.06em; color: var(--black); line-height: 1; }
  .logo-name span { color: var(--red); }
  .logo-tag { font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mid); margin-top: 1px; }
  .nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
  .nav-links a {
    text-decoration: none; font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.75);
    position: relative; transition: color 0.2s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--red); transition: width 0.25s;
  }
  .nav-links a:hover { color: var(--red); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta { background: var(--yellow) !important; color: var(--black) !important; padding: 9px 20px; transition: background 0.2s !important; }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--yellow-dark) !important; color: var(--black) !important; }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu { display: none; background: var(--black); padding: 20px 28px; }
  .mobile-menu.open { display: block; }
  .mobile-menu a {
    display: block; text-decoration: none; color: var(--white);
    font-size: 16px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 13px 0; border-bottom: 1px solid #222; transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--red); }
  .mobile-menu .m-cta { margin-top: 16px; background: var(--yellow); color: var(--black) !important; text-align: center; padding: 14px !important; display: block; border: none !important; }

  @media (max-width: 860px) { .nav-links { display: none; } .hamburger { display: flex; } }

  /* ─── HERO ─── */
  .hero { background: var(--black); display: grid; grid-template-columns: 1fr 1fr; min-height: 88vh; overflow: hidden; }
  @media (max-width: 768px) { .hero { grid-template-columns: 1fr; min-height: auto; } }

  .hero-left {
    padding: 80px 56px; display: flex; flex-direction: column;
    justify-content: center; position: relative; z-index: 2;
  }
  @media (max-width: 768px) { .hero-left { padding: 60px 28px; order: 2; } }

  .hero-kicker {
    font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--red); margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
  }
  .hero-kicker::before { content: ''; display: block; width: 32px; height: 2px; background: var(--red); }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 7vw, 96px);
    line-height: 0.95; letter-spacing: 0.02em; color: var(--white); margin-bottom: 28px;
  }
  .hero h1 .accent { color: var(--yellow); display: block; }
  .hero-desc { font-size: 15px; color: rgba(248,246,242,0.55); line-height: 1.7; font-weight: 300; max-width: 380px; margin-bottom: 40px; }
  .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-red {
    background: var(--yellow); color: var(--black); padding: 14px 32px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; display: inline-block; transition: background 0.2s;
  }
  .btn-red:hover { background: var(--yellow-dark); color: var(--black); }
  .btn-ghost {
    border: 2px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.65);
    padding: 12px 32px; font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; text-decoration: none; display: inline-block; transition: all 0.2s;
  }
  .btn-ghost:hover { border-color: var(--white); color: var(--white); }

  .hero-right { position: relative; overflow: hidden; }
  @media (max-width: 768px) { .hero-right { height: 280px; order: 1; } }
  .hero-right::before { content: ''; position: absolute; top: 0; left: 0; width: 6px; height: 100%; background: var(--red); z-index: 2; }

  .slides { position: relative; width: 100%; height: 100%; }
  .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; background-size: cover; background-position: center; }
  .slide.active { opacity: 1; }
  .slide-ph {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 14px; background: #1a1816; border: 2px dashed #2e2c2a;
  }
  .slide-ph svg { fill: #333; width: 44px; height: 44px; }
  .slide-ph span { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #444; text-align: center; padding: 0 28px; line-height: 1.6; }

  .slide-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .slider-dots { position: absolute; bottom: 24px; right: 24px; display: flex; gap: 8px; z-index: 5; }
  .dot { width: 6px; height: 6px; background: rgba(255,255,255,0.25); border-radius: 50%; cursor: pointer; transition: background 0.3s, transform 0.3s; }
  .dot.active { background: var(--red); transform: scale(1.4); }

  /* ─── STATS ─── */
  .stats-strip { background: var(--red); display: flex; justify-content: center; flex-wrap: wrap; padding: 0 32px; }
  .stat-item { padding: 24px 48px; text-align: center; border-right: 1px solid rgba(255,255,255,0.18); flex: 1; min-width: 150px; }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--yellow); letter-spacing: 0.04em; line-height: 1; }
  .stat-label { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 4px; }
  @media (max-width: 600px) { .stat-item { padding: 16px 20px; } }

  /* ─── SECTIONS ─── */
  section { padding: 90px 32px; }
  .container { max-width: 1280px; margin: 0 auto; }
  .eyebrow {
    font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--red); margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
  }
  .eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--red); flex-shrink: 0; }
  h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 64px); letter-spacing: 0.03em; line-height: 0.95; color: var(--black); margin-bottom: 28px; }
  .body-lead { font-size: 16px; color: var(--mid); line-height: 1.75; font-weight: 300; max-width: 600px; }

  /* ─── SERVICES ─── */
  .services-section { background: var(--silver-light); }
  .services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 56px; }
  @media (max-width: 768px) { .services-header { grid-template-columns: 1fr; gap: 20px; } }

  .services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 3px; background: var(--light); }
  .service-card { background: var(--white); padding: 36px 30px; transition: background 0.2s; cursor: default; }
  .service-card:hover { background: var(--black); }
  .service-card:hover h3 { color: var(--white); }
  .service-card:hover p { color: rgba(255,255,255,0.45); }
  .service-card:hover .svc-num { color: rgba(255,255,255,0.06); }
  .service-card:hover .svc-icon { background: var(--red); }
  .svc-num { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--silver); line-height: 1; margin-bottom: 10px; transition: color 0.2s; }
  .svc-icon { width: 40px; height: 40px; background: var(--silver-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; transition: background 0.2s; }
  .svc-icon svg { width: 20px; height: 20px; fill: var(--white); }
  .service-card h3 { font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--black); margin-bottom: 10px; transition: color 0.2s; }
  .service-card p { font-size: 13px; color: var(--mid); line-height: 1.65; transition: color 0.2s; }

  /* ─── ABOUT ─── */
  .about-section { background: var(--off-white); }
  .about-layout { display: grid; grid-template-columns: 5fr 4fr; gap: 80px; align-items: start; }
  @media (max-width: 900px) { .about-layout { grid-template-columns: 1fr; gap: 48px; } }

  .about-image-stack { position: relative; padding-bottom: 48px; padding-right: 48px; }
  .about-img-main { aspect-ratio: 4/3; position: relative; z-index: 1; }
  .about-img-main .img-ph { width: 100%; height: 100%; }
  .about-image-stack::after { content: ''; position: absolute; bottom: 0; right: 0; width: 48%; height: 52%; background: var(--yellow); z-index: 0; }

  .about-body p { font-size: 15px; color: var(--mid); line-height: 1.8; font-weight: 300; margin-bottom: 18px; }
  .makes-wrap { margin: 28px 0 36px; }
  .makes-label { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mid); margin-bottom: 14px; }
  .makes-list { display: flex; flex-wrap: wrap; gap: 6px; }
  .make-tag {
    background: var(--off-white); border: 1.5px solid var(--light); color: var(--charcoal);
    padding: 5px 13px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .make-tag:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
  .make-tag.ph-tag { background: var(--ph-bg); border: 1.5px dashed var(--ph-border); color: var(--ph-text); }

  /* ─── GALLERY ─── */
  .gallery-section { background: var(--charcoal); padding-bottom: 0; }
  .gallery-section h2 { color: var(--white); }
  .gallery-header { margin-bottom: 40px; }
  .gallery-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
  .gallery-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--red); flex-shrink: 0; }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px;
    gap: 4px;
    max-width: 1280px; margin: 0 auto; padding: 0 32px;
  }
  .gallery-grid .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
  .gallery-item { overflow: hidden; }
  .gallery-item .img-ph { width: 100%; height: 100%; border: none; background: #1e1c1b; border-radius: 0; border-right: 3px solid var(--charcoal); border-bottom: 3px solid var(--charcoal); }
  .gallery-item .img-ph svg { fill: #333; width: 26px; height: 26px; }
  .gallery-item .img-ph { color: #3a3836; font-size: 9px; }

  @media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
    .gallery-grid .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
    .gallery-item { aspect-ratio: 1; }
  }
  @media (max-width: 560px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

  /* ─── CONTACT ─── */
  .contact-section { background: var(--silver-light); }
  .contact-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 80px; margin-top: 56px; }
  @media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 48px; } }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  @media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
  .form-group { margin-bottom: 18px; }
  .form-group label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 8px; }
  .form-group input,
  .form-group textarea {
    width: 100%; background: var(--white); border: 2px solid var(--light);
    color: var(--black); padding: 13px 16px; font-size: 14px;
    font-family: 'Source Sans 3', sans-serif; outline: none; transition: border-color 0.2s; -webkit-appearance: none;
  }
  .form-group input:focus, .form-group textarea:focus { border-color: var(--black); }
  .form-group textarea { min-height: 110px; resize: vertical; }
  .submit-btn {
    background: var(--black); color: var(--white); border: none;
    padding: 15px 40px; font-size: 12px; font-weight: 700; font-family: 'Source Sans 3', sans-serif;
    letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; width: 100%; transition: background 0.2s;
  }
  .submit-btn:hover { background: var(--yellow); color: var(--black); }
  .form-success { display: none; background: #e8f5e9; border: 2px solid #81c784; color: #2e7d32; padding: 14px; margin-top: 12px; font-size: 13px; font-weight: 600; text-align: center; }

  .info-panel { background: var(--black); padding: 40px 36px; height: fit-content; }
  .info-section { margin-bottom: 32px; }
  .info-section:last-child { margin-bottom: 0; }
  .info-label { font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
  .info-label::after { content: ''; flex: 1; height: 1px; background: #222; }
  .info-panel .ph { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.28); display: block; margin-bottom: 6px; width: 100%; padding: 7px 12px; }

  /* ─── MAP ─── */
  .map-section { padding: 0; }
  .map-ph { width: 100%; height: 360px; background: #e0ddd8; border-top: 3px solid var(--black); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
  .map-ph svg { width: 36px; height: 36px; fill: var(--ph-border); }
  .map-ph span { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ph-text); text-align: center; padding: 0 24px; }

  /* ─── FOOTER ─── */
  footer { background: var(--black); padding: 64px 32px 32px; }
  .footer-top { max-width: 1280px; margin: 0 auto 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
  @media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
  @media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

  .footer-brand { display: grid; grid-template-columns: auto auto; align-items: center; column-gap: 20px; }
  .footer-brand > img:first-child { height: 44px; width: auto; }
  .footer-partner-logo { height: 64px; width: auto; opacity: 0.85; }
  .footer-brand p { grid-column: 1 / -1; }
  .footer-brand .logo-name { color: var(--white); font-size: 32px; margin-bottom: 4px; }
  .footer-brand .logo-name span { color: var(--red); }
  .footer-brand .logo-tag { color: rgba(255,255,255,0.25); }
  .footer-brand p { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.7; font-weight: 300; margin-top: 16px; }
  .footer-col h5 { font-size: 9px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--red); margin-bottom: 18px; }
  .footer-col a { display: block; color: rgba(255,255,255,0.38); text-decoration: none; font-size: 13px; margin-bottom: 9px; transition: color 0.2s; }
  .footer-col a:hover { color: var(--white); }
  .footer-col .ph { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.2); display: block; margin-bottom: 8px; width: 100%; padding: 6px 10px; text-align: left; }

  .footer-bottom { max-width: 1280px; margin: 0 auto; border-top: 1px solid #1e1e1e; padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 11px; color: rgba(255,255,255,0.2); }
  .footer-bottom .ph { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.18); }

  /* ─── MOBILE CALL FLOAT ─── */
  .call-float {
    position: fixed; bottom: 20px; right: 20px; z-index: 200;
    background: var(--yellow); width: 54px; height: 54px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,0.25); transition: transform 0.2s, background 0.2s;
  }
  .call-float svg { width: 22px; height: 22px; fill: var(--black); }
  .call-float:hover { transform: scale(1.1); background: var(--yellow-dark); }
  @media (min-width: 861px) { .call-float { display: none; } }