/* ============ EDIT: COLORS ============ */
  :root{
    --navy-deep: #0e2144;
    --navy: #1b3b6f;
    --navy-light: #2c58a3;
    --red: #c8161c;
    --red-dark: #9e0f14;
    --white: #ffffff;
    --bg-soft: #f4f6fa;
    --ink: #16233f;
    --ink-muted: #5b6472;
    --line: #dfe4ec;
  }

  *{ box-sizing: border-box; margin:0; padding:0; }
  html{ scroll-behavior: smooth; }
  body{
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }
  img{ max-width:100%; display:block; }
  a{ color: inherit; text-decoration: none; }
  ul{ list-style:none; }
  h1,h2,h3,h4{
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--navy-deep);
    line-height: 1.05;
  }
  .eyebrow{
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--red);
  }
  .wrap{ max-width: 1180px; margin: 0 auto; padding: 0 24px; }
  section{ padding: 88px 0; }
  :focus-visible{ outline: 3px solid var(--red); outline-offset: 3px; }

  .btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 1.05rem;
    border-radius: 3px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  }
  .btn-primary{ background: var(--red); color: var(--white); }
  .btn-primary:hover{ background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(200,22,28,.35); }
  .btn-ghost{ background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
  .btn-ghost:hover{ background: rgba(255,255,255,.12); border-color: #fff; }
  .btn-navy{ background: var(--navy); color: var(--white); }
  .btn-navy:hover{ background: var(--navy-deep); transform: translateY(-2px); }

  /* ---------- Partner / affiliation strip ---------- */
  .partners{ background: var(--bg-soft); padding: 60px 0; }
  .partners .section-head{ margin-bottom: 36px; }
  .partner-row{
    display:flex; flex-wrap:wrap; justify-content:center; align-items:stretch; gap: 20px;
  }
  .partner-card{
    background:#fff; border:1px solid var(--line); border-radius: 8px;
    display:flex; align-items:center; justify-content:center;
    padding: 14px 22px; height: 84px;
  }
  .partner-card img{ max-height: 52px; max-width: 160px; width:auto; height:auto; object-fit:contain; }
  .partner-card.social{ width: 84px; padding: 0; }
  .partner-card.social img{ max-height: 40px; max-width: 40px; }
  .partner-card.dark{ background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%); border-color: transparent; }

  /* ---------- Fleet banner ---------- */
  .fleet-banner{
    position: relative; overflow:hidden; padding: 0;
    height: 380px;
  }
  .fleet-banner img{
    position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  }
  .fleet-banner .overlay{
    position:relative; z-index:2; height:100%;
    background: linear-gradient(90deg, rgba(14,33,68,.88) 0%, rgba(14,33,68,.35) 55%, rgba(14,33,68,.1) 100%);
    display:flex; align-items:center;
  }
  .fleet-banner .overlay-text{ color:#fff; padding: 0 40px; max-width: 480px; }
  .fleet-banner .overlay-text p.eyebrow{ color: #ff8b91; }
  .fleet-banner .overlay-text h2{ color:#fff; font-size: clamp(1.7rem,3.4vw,2.3rem); margin: 8px 0 10px; }
  .fleet-banner .overlay-text p{ color: rgba(255,255,255,.82); font-size: 1rem; }
  @media (max-width: 640px){ .fleet-banner{ height: 300px; } .fleet-banner .overlay-text{ padding: 0 24px; } }

  /* ---------- Top bar ---------- */
  .top-bar{
    background: var(--navy-deep); color: rgba(255,255,255,.92);
    text-align:center; padding: 8px 16px; font-size: .85rem;
    font-family:'Barlow Condensed',sans-serif; letter-spacing:.05em; text-transform:uppercase; font-weight:600;
  }
  .top-bar .red{ color: #ff5b62; }

  /* ---------- Header ---------- */
  header{
    position: sticky; top:0; z-index: 50;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--line);
  }
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding: 14px 24px;
    max-width: 1180px; margin: 0 auto;
  }
  .nav-logo img{ height: 62px; width:auto; }
  .nav-links{ display:flex; gap: 34px; align-items:center; }
  .nav-links a{
    font-family:'Barlow Condensed', sans-serif;
    font-weight:600; text-transform:uppercase; letter-spacing:.05em;
    font-size: .98rem; color: var(--navy-deep);
    position: relative; padding: 4px 0;
  }
  .nav-links a::after{
    content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px;
    background: var(--red); transition: width .2s ease;
  }
  .nav-links a:hover::after{ width:100%; }
  .nav-cta{ display:flex; align-items:center; gap:18px; }
  .nav-phone{ font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:1.1rem; color:var(--navy-deep); white-space:nowrap; }
  .nav-toggle{ display:none; background:none; border:0; font-size:1.6rem; cursor:pointer; color:var(--navy-deep); }

  @media (max-width: 880px){
    .nav-links{
      position:absolute; top:100%; left:0; right:0;
      background:#fff; flex-direction:column; gap:0;
      border-bottom: 1px solid var(--line);
      max-height:0; overflow:hidden; transition: max-height .25s ease;
    }
    .nav-links.open{ max-height:320px; }
    .nav-links a{ padding: 16px 24px; width:100%; border-top:1px solid var(--line); }
    .nav-phone{ display:none; }
    .nav-toggle{ display:block; }
  }

  /* ---------- Hero with lightning canvas ---------- */
  .hero{
    position: relative;
    background: radial-gradient(120% 140% at 50% 0%, var(--navy) 0%, var(--navy-deep) 55%, #081428 100%);
    color: #fff;
    padding: 90px 0 110px;
    overflow: hidden;
    text-align: center;
  }
  .hero canvas{
    position:absolute; inset:0; width:100%; height:100%;
    pointer-events:none;
  }
  .hero-inner{ position:relative; z-index:2; }
  .hero-logo{
    display:inline-block;
    margin-bottom: 30px;
    filter: drop-shadow(0 18px 34px rgba(0,0,0,.45));
  }
  .hero-logo img{ width: min(980px, 94vw); height:auto; }
  .hero h1{
    color:#fff; font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight:800;
    max-width: 820px; margin: 0 auto 18px;
  }
  .hero h1 span{ color: #ff5b62; }
  .hero p.lead{
    font-family:'Inter',sans-serif; font-size: 1.15rem; color: rgba(255,255,255,.82);
    max-width: 620px; margin: 0 auto 38px; font-weight:400;
  }
  .hero-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
  .hero-stats{
    margin-top: 64px; display:flex; justify-content:center; gap: 56px; flex-wrap:wrap;
  }
  .hero-stat b{ display:block; font-family:'Barlow Condensed',sans-serif; font-size: 2.4rem; color:#fff; font-weight:800; }
  .hero-stat span{ font-size:.85rem; letter-spacing:.08em; text-transform:uppercase; color: rgba(255,255,255,.65); }

  /* ---------- Services ---------- */
  .section-head{ text-align:center; max-width: 640px; margin: 0 auto 54px; }
  .section-head h2{ font-size: clamp(1.9rem, 4vw, 2.6rem); margin: 10px 0 14px; font-weight:800; }
  .section-head p{ color: var(--ink-muted); font-size: 1.05rem; }

  .services{ background: var(--bg-soft); }
  .service-grid{
    display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  @media (max-width: 900px){ .service-grid{ grid-template-columns: repeat(2,1fr); } }
  @media (max-width: 560px){ .service-grid{ grid-template-columns: 1fr; } }

  .service-card{
    background:#fff; border:1px solid var(--line); border-radius: 8px;
    padding: 30px 26px; position:relative; overflow:hidden;
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .service-card:hover{ transform: translateY(-5px); box-shadow: 0 18px 34px rgba(15,30,60,.1); }
  .service-card::before{
    content:''; position:absolute; left:0; top:0; bottom:0; width:4px; background: var(--red);
    transform: scaleY(0); transform-origin: top; transition: transform .2s ease;
  }
  .service-card:hover::before{ transform: scaleY(1); }
  .service-icon{
    width:52px; height:52px; border-radius:10px;
    background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%); color:#fff;
    display:flex; align-items:center; justify-content:center;
    margin-bottom: 20px;
    transition: transform .18s ease;
  }
  .service-card:hover .service-icon{ transform: scale(1.06); }
  .service-icon svg{ width:26px; height:26px; }
  .service-card h3{ font-size:1.35rem; margin-bottom:8px; }
  .service-card p{ color: var(--ink-muted); font-size: .97rem; }

  /* ---------- Projects gallery ---------- */
  .projects{ padding: 90px 0; }
  .project-grid{
    display:grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  }
  @media (max-width: 980px){ .project-grid{ grid-template-columns: repeat(2,1fr); } }
  @media (max-width: 560px){ .project-grid{ grid-template-columns: 1fr; } }
  .project-card{
    position:relative; border-radius: 8px; overflow:hidden; aspect-ratio: 4/3;
    background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
    display:flex; align-items:flex-end;
  }
  .project-card img{
    position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  }
  .project-card .ph-icon{
    position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
    color:#fff; opacity:.4;
  }
  .project-card .ph-icon svg{ width: 52px; height:52px; }
  .project-caption{
    position:relative; z-index:2; width:100%;
    background: linear-gradient(0deg, rgba(10,20,40,.92) 0%, rgba(10,20,40,0) 100%);
    padding: 34px 16px 14px;
    color:#fff;
  }
  .project-caption b{ display:block; font-family:'Barlow Condensed',sans-serif; font-size:1.05rem; letter-spacing:.02em; text-transform:uppercase; }
  .project-caption span{ font-size:.82rem; color: rgba(255,255,255,.7); }
  .project-note{
    text-align:center; color: var(--ink-muted); font-size:.92rem; margin-top: 30px;
  }
  .project-card.wide{ aspect-ratio: 16/8; grid-column: span 2; }
  @media (max-width: 560px){ .project-card.wide{ grid-column: span 1; } }

  /* ---------- Family / Team ---------- */
  .team{ background: var(--bg-soft); padding: 96px 0; }
  .team-grid{
    display:grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 20px;
  }
  @media (max-width: 980px){ .team-grid{ grid-template-columns: repeat(2,1fr); } }
  @media (max-width: 560px){ .team-grid{ grid-template-columns: 1fr; } }
  .team-card{
    background:#fff; border:1px solid var(--line); border-radius: 10px; overflow:hidden;
    display:flex; flex-direction:column;
  }
  .team-photo{
    aspect-ratio: 1/1; background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
    display:flex; align-items:center; justify-content:center; font-size: 3rem; color: rgba(255,255,255,.5);
    position: relative; overflow:hidden;
  }
  .team-photo img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
  .monogram{
    font-family:'Barlow Condensed',sans-serif; font-weight:700; letter-spacing:.03em;
    font-size: 2.6rem; color: rgba(255,255,255,.88);
  }
  .team-body{ padding: 20px 20px 24px; }
  .team-body h3{ font-size: 1.3rem; margin-bottom: 2px; }
  .team-role{ font-family:'Barlow Condensed',sans-serif; font-weight:700; letter-spacing:.05em; text-transform:uppercase; font-size:.82rem; color: var(--red); display:block; margin-bottom: 10px; }
  .team-body p{ font-size: .92rem; color: var(--ink-muted); }
  .history-callout{
    display:flex; gap: 40px; flex-wrap:wrap; justify-content:center; margin-top: 54px;
    border-top: 1px solid var(--line); padding-top: 40px;
  }
  .history-callout .stat b{ display:block; font-family:'Barlow Condensed',sans-serif; font-size:2.2rem; color: var(--navy-deep); font-weight:800; }
  .history-callout .stat span{ font-size:.85rem; letter-spacing:.06em; text-transform:uppercase; color: var(--ink-muted); }

  /* ---------- About / split ---------- */
  .about{ padding: 96px 0; }
  .about-grid{
    display:grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items:center;
  }
  @media (max-width: 860px){ .about-grid{ grid-template-columns: 1fr; gap: 40px; } }
  .about-visual{
    background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: 10px; padding: 50px 36px; color:#fff; position:relative; overflow:hidden;
  }
  .about-visual::after{
    content:''; position:absolute; right:-40px; bottom:-40px; width:220px; height:220px;
    background: radial-gradient(circle, rgba(200,22,28,.35), transparent 70%);
  }
  .about-visual .est{ font-family:'Barlow Condensed',sans-serif; font-weight:800; font-size:4.4rem; line-height:1; }
  .about-visual .est-label{ letter-spacing:.14em; text-transform:uppercase; font-size:.85rem; color: rgba(255,255,255,.7); margin-top:6px; }
  .about-visual ul{ margin-top: 30px; display:flex; flex-direction:column; gap:14px; }
  .about-visual li{ display:flex; gap:12px; align-items:flex-start; font-size:.98rem; color: rgba(255,255,255,.9); }
  .about-visual li b{ color:#fff; }
  .check{ color:#ff5b62; font-weight:800; }

  .about-copy h2{ font-size: clamp(1.9rem,4vw,2.5rem); margin-bottom:18px; font-weight:800; }
  .about-copy p{ color: var(--ink-muted); margin-bottom: 16px; font-size:1.03rem; }

  /* ---------- Service area strip ---------- */
  .area{
    background: var(--navy-deep); color:#fff; text-align:center; padding: 60px 0;
  }
  .area h2{ color:#fff; font-size: clamp(1.6rem,3.4vw,2.2rem); margin-bottom:10px; }
  .area p{ color: rgba(255,255,255,.72); max-width: 640px; margin: 0 auto; }

  /* ---------- Contact ---------- */
  .contact{ background: var(--bg-soft); }
  .contact-grid{
    display:grid; grid-template-columns: 1fr 1fr; gap: 50px;
  }
  @media (max-width: 860px){ .contact-grid{ grid-template-columns:1fr; } }
  .contact-info h2{ font-size: clamp(1.8rem,3.6vw,2.4rem); margin-bottom: 16px; }
  .contact-info p{ color: var(--ink-muted); margin-bottom: 26px; }
  .info-row{ display:flex; gap:14px; align-items:flex-start; margin-bottom:20px; }
  .info-row .ic{
    width:40px; height:40px; border-radius:50%; background: var(--navy); color:#fff;
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .info-row b{ display:block; font-family:'Barlow Condensed',sans-serif; text-transform:uppercase; letter-spacing:.04em; font-size:.85rem; color: var(--ink-muted); }
  .info-row span{ font-size: 1.05rem; color: var(--navy-deep); font-weight:600; }

  .contact-form{
    background:#fff; border:1px solid var(--line); border-radius: 10px; padding: 34px;
  }
  .contact-form .field{ margin-bottom: 18px; }
  .contact-form label{ display:block; font-size:.85rem; font-weight:600; margin-bottom:6px; color: var(--navy-deep); }
  .contact-form input, .contact-form textarea{
    width:100%; padding: 12px 14px; border:1px solid var(--line); border-radius:6px;
    font-family:'Inter',sans-serif; font-size: .98rem; background: var(--bg-soft);
  }
  .contact-form input:focus, .contact-form textarea:focus{ outline: 2px solid var(--navy); background:#fff; }
  .contact-form textarea{ min-height: 110px; resize: vertical; }
  .contact-form button{ width:100%; justify-content:center; }
  .form-note{ font-size:.82rem; color: var(--ink-muted); margin-top:12px; }

  /* ---------- Footer ---------- */
  footer{ background: var(--navy-deep); color: rgba(255,255,255,.75); padding: 46px 0 26px; }
  .foot-grid{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px; padding-bottom: 26px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .foot-logo img{ height:50px; }
  .foot-links{ display:flex; gap:24px; flex-wrap:wrap; }
  .foot-links a{ font-size:.92rem; }
  .foot-links a:hover{ color:#fff; }
  .foot-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; padding-top: 22px; font-size:.82rem; }
  .foot-bottom .red{ color: var(--red); }

  /* ---------- Scroll reveal ---------- */
  .reveal{ opacity:0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in{ opacity:1; transform: translateY(0); }

  /* ---------- Mobile sticky call bar ---------- */
  .mobile-call-bar{ display:none; }
  @media (max-width: 640px){
    .mobile-call-bar{
      display:flex; position: fixed; bottom:0; left:0; right:0; z-index: 60;
      background: var(--red); box-shadow: 0 -6px 20px rgba(0,0,0,.25);
    }
    .mobile-call-bar a{
      flex:1; text-align:center; padding: 14px 0; color:#fff;
      font-family:'Barlow Condensed',sans-serif; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
      font-size: 1rem;
    }
    .mobile-call-bar a:first-child{ background: var(--navy-deep); }
    body{ padding-bottom: 54px; }
  }

  @media (prefers-reduced-motion: reduce){
    *{ animation: none !important; transition: none !important; }
    .reveal{ opacity:1; transform:none; }
  }
