
  :root {
    --black: #0a0a0a;
    --coal: #111111;
    --steel: #1a1a1a;
    --rust: #1ab0e8;
    --amber: #0e8dbf;
    --concrete: #7a7a72;
    --light: #d0ccc4;
    --white: #f0ebe3;
    --font-display: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
    --font-condensed: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
    --font-body: 'Barlow', Arial, sans-serif;
  }
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  a { color: inherit; text-decoration: none; }
  html { scroll-behavior: smooth; }
  body { background: var(--black); color: var(--light); font-family: var(--font-body); overflow-x: hidden; }

  /* TOP BAR */
  .top-bar {
    background: var(--rust);
    text-align: center;
    padding: 10px 16px;
    font-family: var(--font-condensed);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    position: relative;
    z-index: 300;
  }
  .top-bar a { color: #000; text-decoration: underline; }

  /* NAV */
  nav {
    position: sticky;
    top: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 32px;
    background: rgba(10,10,10,0.98);
    border-bottom: 2px solid var(--rust);
  }
  .nav-logo { display: flex; align-items: center; gap: 10px; }
  .nav-logo img {
    width: 44px; height: 44px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(26,176,232,0.4);
  }
  .nav-logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1.1;
  }
  .nav-logo-text span { color: var(--rust); }
  .nav-logo-sub {
    font-family: var(--font-condensed);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--concrete);
  }
  .nav-links { display: flex; gap: 28px; list-style: none; }
  .nav-links a {
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--concrete);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--amber); }
  .nav-cta {
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    background: var(--rust);
    padding: 10px 20px;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--amber); }

  /* HERO */
  .hero {
    min-height: 92vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 48px;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.3) saturate(0.5);
  }
  .hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10,10,10,0.9) 50%, rgba(10,10,10,0.2) 100%);
    z-index: 1;
  }
  .hero-content { position: relative; z-index: 2; max-width: 700px; }
  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-condensed);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 20px;
    animation: fadeUp 0.7s 0.1s both;
  }
  .hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--amber); flex-shrink: 0; }
  .hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(72px, 12vw, 130px);
    line-height: 0.88;
    letter-spacing: 1px;
    color: var(--white);
    animation: fadeUp 0.7s 0.25s both;
  }
  .hero-h1 .red { color: var(--rust); display: block; }
  .hero-p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--light);
    max-width: 480px;
    margin: 24px 0 36px;
    animation: fadeUp 0.7s 0.4s both;
  }
  .hero-btns {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.55s both;
  }
  .btn-solid {
    display: inline-block;
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000;
    background: var(--rust);
    padding: 14px 30px;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: background 0.2s, transform 0.15s;
  }
  .btn-solid:hover { background: var(--amber); transform: translateY(-2px); }
  .btn-ghost {
    font-family: var(--font-condensed);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    border-bottom: 2px solid rgba(26,176,232,0.5);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { color: var(--amber); border-color: var(--amber); }

  /* STATS */
  .stats {
    background: var(--steel);
    border-top: 2px solid var(--rust);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    padding: 0 48px;
  }
  .stat {
    flex: 1;
    padding: 24px 0;
    border-right: 1px solid rgba(255,255,255,0.06);
    padding-left: 32px;
  }
  .stat:first-child { padding-left: 0; }
  .stat:last-child { border-right: none; }
  .stat-n {
    font-family: var(--font-display);
    font-size: 44px;
    line-height: 1;
    color: var(--rust);
  }
  .stat-l {
    font-family: var(--font-condensed);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--concrete);
    margin-top: 3px;
  }

  /* SECTIONS */
  .section { padding: 80px 48px; }
  .section-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-condensed);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 12px;
  }
  .section-tag::after { content: ''; width: 32px; height: 1px; background: var(--rust); }
  .section-h2 {
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 72px);
    line-height: 0.95;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 16px;
  }

  /* SERVICES */
  .services-bg { background: var(--coal); }
  .services-intro { max-width: 540px; margin-bottom: 48px; }
  .services-intro p { font-size: 15px; color: var(--concrete); line-height: 1.7; }
  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .svc {
    background: var(--steel);
    padding: 36px 28px;
    position: relative;
    transition: background 0.25s;
  }
  .svc::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--rust);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .svc:hover { background: #202020; }
  .svc:hover::after { transform: scaleX(1); }
  .svc-icon { font-size: 28px; margin-bottom: 16px; display: block; }
  .svc-name {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 8px;
  }
  .svc-desc { font-size: 14px; color: var(--concrete); line-height: 1.65; }

  /* GALLERY */
  .gallery-bg { background: var(--black); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 4px;
    margin-top: 40px;
  }
  .gitem {
    overflow: hidden;
    position: relative;
    background: var(--steel);
  }
  .gitem:first-child { grid-row: auto; }
  .gitem img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s, filter 0.4s;
    filter: saturate(0.75) brightness(0.88);
  }
  .gitem:hover img { transform: scale(1.05); filter: saturate(1) brightness(1); }

  /* WHY */
  .why-bg { background: var(--coal); }
  .why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .why-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .why-logo-wrap img {
    width: 260px;
    max-width: 100%;
    filter: drop-shadow(0 0 32px rgba(26,176,232,0.2));
  }
  .why-tag {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 4px;
    color: var(--rust);
    text-align: center;
  }
  .why-points { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
  .why-pt { display: flex; gap: 16px; align-items: flex-start; }
  .why-n {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 1;
    color: rgba(26,176,232,0.18);
    min-width: 40px;
  }
  .why-pt h3 {
    font-family: var(--font-condensed);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px;
  }
  .why-pt p { font-size: 14px; color: var(--concrete); line-height: 1.6; }

  /* CONTACT */
  .contact-bg { background: var(--steel); position: relative; overflow: hidden; }
  .contact-bg::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 360px; height: 360px;
    border: 50px solid rgba(26,176,232,0.05);
    border-radius: 50%;
    pointer-events: none;
  }
  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 1;
  }
  .contact-h2 {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 80px);
    line-height: 0.9;
    color: var(--white);
    margin: 12px 0 28px;
  }
  .contact-h2 em { color: var(--rust); font-style: normal; display: block; }
  .cdet { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
  .cico {
    width: 40px; height: 40px;
    background: rgba(26,176,232,0.1);
    border: 1px solid rgba(26,176,232,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
    clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  }
  .ctxt { font-family: var(--font-condensed); font-size: 15px; font-weight: 600; color: var(--light); }
  .ctxt small {
    display: block; font-size: 10px; font-weight: 400;
    letter-spacing: 2px; text-transform: uppercase; color: var(--concrete); margin-bottom: 1px;
  }
  .form { display: flex; flex-direction: column; gap: 12px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .fg { display: flex; flex-direction: column; gap: 4px; }
  .fg label {
    font-family: var(--font-condensed);
    font-size: 10px; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase; color: var(--concrete);
  }
  .fg input, .fg textarea, .fg select {
    background: var(--coal);
    border: 1px solid rgba(255,255,255,0.07);
    border-bottom: 2px solid rgba(26,176,232,0.4);
    color: var(--white);
    padding: 11px 13px;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    width: 100%;
    -webkit-appearance: none;
    transition: border-color 0.2s, background 0.2s;
    border-radius: 0;
  }
  .fg select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 5 5-5z' fill='%237a7a72'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
  }
  .fg select option { background: #111; color: var(--white); }
  .fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--rust); background: #0e0e0e; }
  .fg textarea { resize: vertical; min-height: 100px; }
  .btn-submit {
    font-family: var(--font-condensed);
    font-size: 14px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: #000; background: var(--rust);
    border: none; padding: 17px 40px;
    cursor: pointer;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: background 0.2s, transform 0.15s;
    align-self: flex-start;
    min-width: 280px;
    margin-top: 8px;
  }
  .btn-submit:hover { background: var(--amber); transform: translateY(-2px); }

  /* FOOTER */
  footer {
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  .foot-logo { display: flex; align-items: center; gap: 8px; }
  .foot-logo img { width: 32px; height: 32px; object-fit: cover; border-radius: 50%; }
  .foot-logo-text { font-family: var(--font-display); font-size: 15px; letter-spacing: 2px; color: var(--white); }
  .foot-logo-text span { color: var(--rust); }
  .foot-copy { font-family: var(--font-condensed); font-size: 11px; letter-spacing: 2px; color: var(--concrete); text-transform: uppercase; }

  /* MOBILE CALL BUTTON - desktop hidden always */
  .mobile-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: var(--rust);
    color: #000 !important;
    text-align: center;
    padding: 15px 20px;
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 3px;
    border-top: 2px solid var(--amber);
    text-decoration: none !important;
  }

  /* REVEAL ANIMATION */
  .reveal { opacity: 1; transform: none; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* MOBILE */
  @media (max-width: 900px) {
    nav { padding: 12px 16px; }
    .nav-links { display: none; }
    .hero { padding: 80px 20px 60px; min-height: 88vh; }
    .stats { padding: 0 20px; flex-wrap: wrap; }
    .stat { flex: 1 1 45%; padding: 20px 0; border: none; }
    .section { padding: 60px 20px; }
    .grid-3 { grid-template-columns: 1fr; }
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      grid-auto-rows: 160px;
    }
    .gitem:first-child { grid-row: auto; grid-column: auto; }
    .why-inner { grid-template-columns: 1fr; gap: 36px; }
    .why-logo-wrap img { width: 180px; }
    .contact-inner { grid-template-columns: 1fr; gap: 36px; }
    .form-row { grid-template-columns: 1fr; }
    footer { padding: 20px 16px; flex-direction: column; align-items: flex-start; }
    .mobile-cta { display: block; }
    body { padding-bottom: 54px; }
  }
