  :root {
    --navy: #0b1e3d;
    --navy-deep: #071428;
    --navy-mid: #162e55;
    --gold: #c8960a;
    --gold-light: #f0b429;
    --gold-pale: #fef3c7;
    --slate: #64748b;
    --offwhite: #f8f7f4;
    --border: rgba(11,30,61,0.12);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--navy);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
  }
  .serif { font-family: 'IBM Plex Serif', serif; }
  .mono { font-family: 'IBM Plex Mono', monospace; }

  /* NAV */
  nav {
    background: var(--navy-deep);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(200,150,10,0.25);
  }
  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }
  .logo {
    font-family: 'IBM Plex Serif', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
    cursor: pointer;
  }
  .logo span { color: var(--gold-light); }

  /* Hamburger button */
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 110;
    position: relative;
  }
  .nav-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
  }
  .nav-toggle span:nth-child(2) { width: 70%; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; width: 100%; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


  .nav-links { display: flex; gap: 2rem; align-items: center; }
  .nav-links a {
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
    cursor: pointer;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
  }
  .nav-links a:hover, .nav-links a.active {
    color: #fff;
    border-bottom-color: var(--gold-light);
  }
  .nav-cta {
    background: var(--gold) !important;
    color: var(--navy-deep) !important;
    padding: 0.5rem 1.4rem !important;
    border-bottom: none !important;
    font-weight: 600 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--gold-light) !important; }

  /* MOBILE DRAWER STYLES */
  .nav-drawer {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0.3s;
  }
  .nav-drawer.open {
    pointer-events: auto;
    visibility: visible;
  }
  .nav-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 20, 40, 0.8);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .nav-drawer.open .nav-drawer-backdrop {
    opacity: 1;
  }
  .nav-drawer-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    background: var(--navy-deep);
    border-left: 1px solid var(--gold);
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-drawer.open .nav-drawer-panel {
    transform: translateX(0);
  }

  .nav-drawer-link {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-drawer-cta {
    margin-top: 1rem;
    color: var(--gold-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
  }

  /* TOGGLE VISIBILITY */
  @media (max-width: 768px) {
    .nav-links { display: none; } /* Hide desktop links */
    .nav-toggle { display: flex; } /* Show hamburger */
    
    .logo { font-size: 1.3rem; }
  }


  /* PAGES */
  .page { display: none; animation: fadeIn 0.35s ease; }
  .page.active { display: block; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

  /* HERO */
  .hero {
    background: var(--navy-mid);
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&q=80&w=1800');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
  }
  .hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(200,150,10,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,150,10,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    width: 100%;
  }
  .hero-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold-light);
  }
  .hero h1 {
    font-family: 'IBM Plex Serif', serif;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    max-width: 760px;
    margin-bottom: 1.5rem;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 300;
  }
  .hero p {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
    font-weight: 300;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-outline {
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    padding: 0.85rem 2rem;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.06); }

  /* STATS BAR */
  .stats-bar {
    background: var(--navy-mid);
    border-bottom: 1px solid rgba(200,150,10,0.2);
  }
  .stats-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .stat-item {
    padding: 2rem 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    text-align: center;
  }
  .stat-item:last-child { border-right: none; }
  .stat-number {
    font-family: 'IBM Plex Serif', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.35rem;
  }
  .stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
  }

  /* SECTIONS */
  section { padding: 6rem 2rem; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .section-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
  }
  .section-title {
    font-family: 'IBM Plex Serif', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 1.5rem;
  }
  .section-title em { font-style: italic; }
  .section-body {
    color: var(--slate);
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 560px;
  }

  /* HOME: WHY ACAI */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 4rem;
    background: var(--border);
  }
  .why-card {
    background: #fff;
    padding: 2.5rem 2rem;
    transition: background 0.2s;
  }
  .why-card:hover { background: var(--offwhite); }
  .why-icon {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--gold);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
  }
  .why-card h3 {
    font-family: 'IBM Plex Serif', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
  }
  .why-card p {
    color: var(--slate);
    font-size: 0.9rem;
    line-height: 1.75;
    font-weight: 300;
  }

  /* HOME: SERVICES TEASER */
  .services-teaser {
    background: var(--offwhite);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .services-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .service-list { list-style: none; margin-top: 2rem; }
  .service-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--navy);
    font-weight: 500;
  }
  .service-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    flex-shrink: 0;
  }
  .big-quote {
    font-family: 'IBM Plex Serif', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 300;
    font-style: italic;
    color: var(--navy);
    line-height: 1.5;
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
  }

  /* HOME: CLIENTS */
  .clients-strip {
    background: var(--navy-deep);
    padding: 3rem 2rem;
    border-top: 1px solid rgba(200,150,10,0.2);
  }
  .clients-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .clients-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .clients-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
  }
  .client-name {
    font-family: 'IBM Plex Serif', serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-style: italic;
  }

  /* SERVICES PAGE */
  .services-hero {
    background: var(--navy);
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
  }
  .services-hero::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    border: 60px solid rgba(200,150,10,0.06);
    border-radius: 50%;
  }
  .services-hero::after {
    content: '';
    position: absolute;
    right: 50px;
    bottom: -80px;
    width: 250px;
    height: 250px;
    border: 40px solid rgba(200,150,10,0.04);
    border-radius: 50%;
  }
  .services-hero h1 {
    font-family: 'IBM Plex Serif', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: #fff;
    max-width: 700px;
    line-height: 1.2;
    position: relative;
  }
  .services-hero p {
    color: rgba(255,255,255,0.5);
    margin-top: 1rem;
    font-size: 1rem;
    max-width: 500px;
    line-height: 1.75;
    font-weight: 300;
    position: relative;
  }
  .service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--border);
    margin-top: 3rem;
  }
  .service-card {
    background: #fff;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: attr(data-num);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 4rem;
    font-weight: 500;
    color: rgba(11,30,61,0.04);
    line-height: 1;
  }
  .service-card h3 {
    font-family: 'IBM Plex Serif', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.75rem;
    display: inline-block;
  }
  .service-card ul { list-style: none; margin-top: 1.25rem; }
  .service-card ul li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.5;
  }
  .service-card ul li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 0.55rem;
  }
  .service-card p.desc {
    color: var(--slate);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 1rem;
    font-weight: 300;
  }

  /* Partners section */
  .partners-strip {
    background: var(--offwhite);
    border-top: 1px solid var(--border);
    padding: 4rem 2rem;
  }
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    margin-top: 3rem;
  }
  .partner-card {
    background: #fff;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .partner-name {
    font-family: 'IBM Plex Serif', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.01em;
  }
  .partner-role {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: 'IBM Plex Mono', monospace;
  }
  .partner-desc {
    color: var(--slate);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: 0.5rem;
    font-weight: 300;
  }

  /* ABOUT PAGE */
  .about-hero {
    background: var(--navy-mid);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
  }
  .about-hero h1 {
    font-family: 'IBM Plex Serif', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #fff;
    max-width: 680px;
    line-height: 1.2;
  }
  .about-hero h1 em { font-style: italic; color: var(--gold-light); }
  .about-hero p {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    max-width: 540px;
    line-height: 1.8;
    margin-top: 1.25rem;
    font-weight: 300;
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
  .value-item {
    border-left: 3px solid var(--gold);
    padding-left: 1.25rem;
  }
  .value-item h4 {
    font-family: 'IBM Plex Serif', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
  }
  .value-item p {
    color: var(--slate);
    font-size: 0.88rem;
    line-height: 1.7;
    font-weight: 300;
  }
  .mission-block {
    background: var(--navy);
    color: #fff;
    padding: 4rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
  }
  .mission-block::after {
    content: '"';
    position: absolute;
    right: 2rem;
    bottom: -2rem;
    font-family: 'IBM Plex Serif', serif;
    font-size: 12rem;
    color: rgba(200,150,10,0.08);
    line-height: 1;
  }
  .mission-block blockquote {
    font-family: 'IBM Plex Serif', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.55;
    position: relative;
  }
  .mission-block cite {
    font-style: normal;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    display: block;
    margin-top: 1.5rem;
  }

  /* CONTACT PAGE */
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    min-height: 80vh;
  }
  .contact-left {
    background: var(--navy);
    padding: 5rem 3rem;
    color: #fff;
  }
  .contact-left h2 {
    font-family: 'IBM Plex Serif', serif;
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  .contact-left h2 em { font-style: italic; color: var(--gold-light); }
  .contact-left p {
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
  }
  .contact-info { list-style: none; }
  .contact-info li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
  }
  .contact-info li .label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    min-width: 80px;
    padding-top: 2px;
  }
  .contact-right {
    background: var(--offwhite);
    padding: 5rem 3rem;
  }
  .contact-right h3 {
    font-family: 'IBM Plex Serif', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
  }
  .contact-right p.sub {
    color: var(--slate);
    font-size: 0.88rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .form-group { margin-bottom: 1rem; }
  .form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.5rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: #fff;
    border: 1px solid #d1d5db;
    padding: 0.75rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--navy);
    outline: none;
    transition: border-color 0.2s;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
  }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-group select { cursor: pointer; }
  .btn-submit {
    width: 100%;
    background: var(--navy);
    color: #fff;
    border: none;
    padding: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
  }
  .btn-submit:hover { background: var(--gold); color: var(--navy-deep); }

  /* FOOTER */
  footer {
    background: var(--navy-deep);
    border-top: 1px solid rgba(200,150,10,0.2);
    padding: 3rem 2rem;
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
  }
  .footer-logo {
    font-family: 'IBM Plex Serif', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
  }
  .footer-logo span { color: var(--gold-light); }
  .footer-tagline {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    max-width: 220px;
    line-height: 1.6;
  }
  .footer-links h5 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1rem;
  }
  .footer-links a {
    display: block;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    text-decoration: none;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--gold-light); }
  .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.2);
  }

  /* CTA BAND */
  .cta-band {
    background: var(--navy-mid);
    padding: 4rem 2rem;
    border-top: 1px solid rgba(200,150,10,0.2);
  }
  .cta-band-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
  .cta-band h3 {
    font-family: 'IBM Plex Serif', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: #fff;
  }
  .cta-band h3 em { font-style: italic; color: var(--gold-light); }
  .cta-band p { color: rgba(255,255,255,0.45); font-size: 0.9rem; margin-top: 0.4rem; font-weight: 300; }

  @media (max-width: 768px) {
    .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .services-split { grid-template-columns: 1fr; gap: 2rem; }
    .service-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; }
    .cta-band-inner { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
  }

  .logo a {
    color: inherit;
    text-decoration: none;
  }

  /* DUAL PILLAR GRID (home services teaser) */
  .dual-pillar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
  }
  .pillar-block {
    background: #fff;
    padding: 2.5rem 2rem;
  }
  .pillar-block--alt {
    background: var(--navy-deep);
  }
  .pillar-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
  }
  .pillar-block--alt .pillar-label {
    color: var(--gold-light);
    border-bottom-color: rgba(255,255,255,0.08);
  }
  .pillar-block--alt .service-list li {
    color: rgba(255,255,255,0.75);
    border-bottom-color: rgba(255,255,255,0.07);
  }
  .pillar-block--alt .service-list li::before {
    background: var(--gold-light);
  }
  .btn-outline-dark {
    border: 1px solid var(--border);
    color: var(--navy);
    padding: 0.85rem 2rem;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-outline-dark:hover { border-color: var(--navy); background: var(--offwhite); }

  /* SERVICE SECTION HEADERS (services page) */
  .service-section-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
  }
  .service-section-badge {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    padding: 0.5rem 1rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
  }
  .service-section-badge--tic {
    background: var(--navy);
    color: var(--gold-light);
    border: 1px solid var(--navy);
  }
  .service-section-badge--3pl {
    background: var(--gold);
    color: var(--navy-deep);
    border: 1px solid var(--gold);
  }

  /* SERVICE DIVIDER */
  .service-divider {
    background: var(--navy-deep);
    padding: 3rem 2rem;
    border-top: 1px solid rgba(200,150,10,0.2);
    border-bottom: 1px solid rgba(200,150,10,0.2);
  }
  .service-divider-text {
    font-family: 'IBM Plex Serif', serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.5);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }

  @media (max-width: 768px) {
    .dual-pillar-grid { grid-template-columns: 1fr; }
    .service-section-header { flex-direction: column; gap: 1rem; }
  }
    --navy: #0b1e3d;
    --navy-deep: #071428;
    --navy-mid: #162e55;
    --gold: #c8960a;
    --gold-light: #f0b429;
    --gold-pale: #fef3c7;
    --slate: #64748b;
    --offwhite: #f8f7f4;
    --border: rgba(11,30,61,0.12);
  }