*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy:       #1a2b4a;
    --navy-dark:  #0f1c30;
    --navy-mid:   #233660;
    --navy-pale:  #e8edf5;
    --red:        #b51c28;
    --red-dark:   #8f1520;
    --white:      #ffffff;
    --off-white:  #f4f6f9;
    --border:     #cdd3dc;
    --text:       #1a2035;
    --text-body:  #3d4e62;
    --text-muted: #4e606f;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--white);
    color: var(--text);
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
  }

  img { display: block; width: 100%; height: 100%; object-fit: cover; }

  /* ── SKIP NAV (ADA) ─────────────────────────────────── */
  .skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--red);
    color: #fff;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 9999;
    transition: top 0.2s;
    text-decoration: none;
  }
  .skip-link:focus { top: 0; }

  /* ── TOP BAR ─────────────────────────────────────────── */
  .top-bar {
    background: var(--navy-dark);
    padding: 0.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .top-bar span,
  .top-bar a {
    font-size: 0.875rem;
    color: #c8d4e8;
    text-decoration: none;
    transition: color 0.2s;
  }

  .top-bar a:hover { color: #fff; text-decoration: underline; }

  .top-bar-right { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

  .top-bar .top-bar-iso {
    background: var(--red);
    color: #fff;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    white-space: nowrap;
  }

  /* ── NAV ─────────────────────────────────────────────── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy);
    padding: 0 2.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  }

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

  .nav-logo img {
    height: 46px;
    width: auto;
    object-fit: contain;
  }

  .nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
  }

  .nav-logo-company {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
  }

  .nav-logo-company span { color: #ef3b43; }

  .nav-logo-sub {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8ca6c8;
  }

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

  .nav-links a {
    text-decoration: none;
    color: #c8d4e8;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0 1.1rem;
    height: 72px;
    display: flex;
    align-items: center;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
  }

  .nav-links a:hover,
  .nav-links a:focus { color: #fff; border-bottom-color: rgba(255,255,255,0.5); }

  .nav-cta {
    background: var(--red) !important;
    color: #fff !important;
    height: auto !important;
    padding: 10px 20px !important;
    border-radius: 3px;
    border-bottom: none !important;
    margin-left: 0.75rem;
    font-weight: 700 !important;
  }

  .nav-cta:hover,
  .nav-cta:focus { background: var(--red-dark) !important; border-bottom: none !important; }

  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 42px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    cursor: pointer;
    padding: 0 11px;
  }
  .nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── HERO ────────────────────────────────────────────── */
  .hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
      radial-gradient(120% 100% at 80% 0%, #243a63 0%, rgba(36,58,99,0) 55%),
      linear-gradient(135deg, #1a2b4a 0%, #0f1c30 60%, #0b1626 100%);
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 46px 46px;
    z-index: 0;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2.5rem;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 3rem;
    align-items: center;
    width: 100%;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(181,28,40,0.2);
    border: 1px solid rgba(181,28,40,0.5);
    border-radius: 2px;
    padding: 5px 14px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.4rem;
  }

  .hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #e0242f;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #fff;
    margin-bottom: 0.6rem;
    overflow-wrap: break-word;
  }

  .hero h1 .co-name {
    display: block;
    font-size: 0.56em;
    color: #8ca6c8;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
  }

  .hero h1 em {
    font-style: normal;
    color: #ef3b43;
  }

  .hero-sub {
    font-size: 1rem;
    color: #b8cce0;
    line-height: 1.78;
    max-width: 520px;
    margin-bottom: 2.2rem;
  }

  .hero-sub strong { color: #e8f0f8; font-weight: 600; }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }

  .btn-primary {
    background: var(--red);
    color: #fff;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 3px;
    transition: background 0.2s, transform 0.1s;
    display: inline-block;
    border: 2px solid var(--red);
  }

  .btn-primary:hover,
  .btn-primary:focus { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); outline: 3px solid rgba(181,28,40,0.4); outline-offset: 2px; }

  .btn-outline-white {
    border: 2px solid rgba(255,255,255,0.5);
    color: #e0eaf5;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 11px 26px;
    border-radius: 3px;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
  }

  .btn-outline-white:hover,
  .btn-outline-white:focus { border-color: #fff; color: #fff; outline: 3px solid rgba(255,255,255,0.3); outline-offset: 2px; }

  .btn-outline-navy {
    border: 2px solid var(--navy);
    color: var(--navy);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 11px 26px;
    border-radius: 3px;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
  }

  .btn-outline-navy:hover,
  .btn-outline-navy:focus { background: var(--navy); color: #fff; outline: 3px solid rgba(26,43,74,0.3); outline-offset: 2px; }

  .hero-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 2rem;
    flex-wrap: wrap;
  }

  .hero-stat {
    flex: 1;
    min-width: 100px;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.15);
    margin-right: 1.5rem;
  }

  .hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }

  .hero-stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #ef3b43;
    display: block;
    line-height: 1;
  }

  .hero-stat-label {
    font-size: 0.875rem;
    color: #8ca6c8;
    margin-top: 5px;
    display: block;
  }

  /* Hero right photo grid */
  .hero-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start;
  }

  .hero-photo {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .hero-photo img { border-radius: 5px; width: 100%; height: auto; }

  .hero-photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(8,13,22,0.94));
    padding: 1.6rem 0.9rem 0.65rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.92);
    font-weight: 600;
    letter-spacing: 0.04em;
  }

  /* ── RED STRIPE ──────────────────────────────────────── */
  .red-stripe {
    background: var(--red);
    padding: 0.9rem 2.5rem;
  }

  .red-stripe-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 2.5rem;
    flex-wrap: wrap;
  }

  .red-stripe-item {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
  }

  .red-stripe-item::before {
    content: '';
    width: 5px;
    height: 5px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .red-stripe-item:first-child::before { display: none; }

  /* ── TRUST BAR ───────────────────────────────────────── */
  .trust-bar {
    background: var(--navy-pale);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2.5rem;
  }

  .trust-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .trust-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    display: block;
    margin-bottom: 1rem;
  }

  .trust-logos {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    background: var(--border);
  }

  .trust-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--navy-mid);
    padding: 0.85rem 0.9rem;
    text-align: center;
    line-height: 1.3;
    text-wrap: balance;
    min-width: 0;
  }

  .trust-logo:last-child { border-right: none; }

  @media (max-width: 1000px) {
    .trust-logos { grid-template-columns: 1fr; }
  }

  /* ── SECTION BASE ────────────────────────────────────── */
  section { padding: 5rem 2.5rem; }

  .section-inner { max-width: 1200px; margin: 0 auto; }

  .section-kicker {
    font-family: 'Oswald', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.65rem;
  }

  .section-kicker::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
  }

  .section-kicker-light { color: #c8d4e8; }
  .section-kicker-light::before { background: #e0242f; }

  .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--navy);
    letter-spacing: 0.02em;
  }

  .section-title-light { color: #fff; }

  /* ── HERITAGE / NAME STORY ───────────────────────────── */
  .heritage-section {
    background: var(--navy-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .heritage-inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
  }

  .heritage-section .section-kicker {
    justify-content: center;
    color: #c8d4e8;
  }
  .heritage-section .section-kicker::before { background: #ef3b43; }

  .heritage-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.6rem;
  }

  .heritage-body p {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: #b8cce0;
    margin-bottom: 1.1rem;
  }

  .heritage-body p strong { color: #e8f0f8; font-weight: 600; }

  .heritage-slogan {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.01em;
    color: #fff;
    margin-top: 2.2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: inline-block;
  }

  /* ── COMPANY PROFILE ─────────────────────────────────── */
  .profile-section {
    background: var(--off-white);
    border-top: 1px solid var(--border);
  }

  .profile-inner {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .profile-text p {
    color: var(--text-body);
    margin-top: 1.2rem;
    line-height: 1.8;
    font-size: 1rem;
  }
  .profile-text p:first-of-type { margin-top: 1.5rem; }
  .profile-text p strong { color: var(--text); font-weight: 600; }

  .profile-invite {
    margin-top: 1.6rem;
    padding: 1.4rem 1.6rem;
    background: var(--navy-pale);
    border-left: 3px solid var(--red);
    border-radius: 0 4px 4px 0;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--navy);
    font-weight: 600;
  }

  .profile-facts {
    background: var(--navy);
    border-radius: 6px;
    padding: 2rem;
    position: sticky;
    top: 92px;
  }

  .profile-facts h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8ca6c8;
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .fact-row { padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .fact-row:last-child { border-bottom: none; padding-bottom: 0; }

  .fact-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8ca6c8;
    display: block;
    margin-bottom: 4px;
  }

  .fact-value {
    font-family: 'Oswald', sans-serif;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.35;
  }

  .fact-value span { color: #8ca6c8; }

  @media (max-width: 880px) {
    .profile-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .profile-facts { position: static; }
  }

  /* ── ABOUT SECTION ───────────────────────────────────── */
  .about-section { background: var(--white); }

  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
  }

  .about-text p {
    color: var(--text-body);
    margin-top: 1.2rem;
    line-height: 1.8;
    font-size: 1rem;
  }

  .about-text p strong { color: var(--text); font-weight: 600; }

  .check-list {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }

  .check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--text-body);
  }

  .check-list li .ck {
    width: 18px;
    height: 18px;
    background: var(--navy);
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
  }

  .check-list li .ck::after {
    content: '';
    position: absolute;
    top: 2px; left: 5px;
    width: 6px; height: 10px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
  }

  .about-actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

  .about-image {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(10,20,40,0.15);
    align-self: start;
  }

  .about-image img { width: 100%; height: auto; }

  .about-image .cap {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(8,13,22,0.94));
    padding: 1.6rem 1rem 0.7rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.92);
    font-weight: 600;
    letter-spacing: 0.04em;
  }

  /* ── CAPABILITIES ────────────────────────────────────── */
  .capabilities-section {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .cap-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 2rem;
  }

  .cap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
  }

  .cap-card {
    background: var(--white);
    padding: 1.75rem;
    transition: background 0.18s;
  }

  .cap-card:hover { background: var(--navy-pale); }

  .cap-icon-wrap {
    width: 46px;
    height: 46px;
    background: var(--navy-pale);
    border: 1px solid var(--border);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .cap-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--navy);
    margin-bottom: 0.5rem;
  }

  .cap-desc {
    font-size: 0.9375rem;
    color: var(--text-body);
    line-height: 1.65;
  }

  /* ── EQUIPMENT SECTION ───────────────────────────────── */
  .equipment-section {
    background: var(--navy);
    color: var(--white);
  }

  .equipment-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .equipment-section p.intro {
    color: #8ca6c8;
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.75;
  }

  .equip-list {
    list-style: none;
    margin-top: 1.75rem;
  }

  .equip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9375rem;
    color: #b8cce0;
  }

  .equip-bullet {
    width: 7px;
    height: 7px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .equip-count {
    margin-left: auto;
    font-family: 'Oswald', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: #b51c28;
    border: 1px solid #b51c28;
    padding: 2px 8px;
    border-radius: 2px;
  }

  .equip-photo-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

  .equip-photo {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.08);
  }

  .equip-photo img { width: 100%; height: auto; }

  .equip-photo .cap {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(8,13,22,0.94));
    padding: 1.5rem 0.9rem 0.6rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.92);
    font-weight: 600;
    letter-spacing: 0.04em;
  }

  /* ── STANDARDS ───────────────────────────────────────── */
  .standards-section {
    background: var(--off-white);
    border-top: 1px solid var(--border);
  }

  .standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 2.5rem;
  }

  .std-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--navy);
    border-radius: 3px;
    padding: 1.4rem;
  }

  .std-badge {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background: var(--navy);
    border-radius: 2px;
    padding: 4px 10px;
    display: inline-block;
    margin-bottom: 0.75rem;
  }

  .std-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text);
    margin-bottom: 4px;
  }

  .std-desc {
    font-size: 0.9375rem;
    color: var(--text-body);
    line-height: 1.6;
  }

  /* ── GALLERY ─────────────────────────────────────────── */
  .gallery-wrap {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
  }

  .gallery-head {
    font-family: 'Oswald', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }

  .gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
  }

  .gallery-item:hover img { transform: scale(1.05); }

  .gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(8,13,22,0.94));
    padding: 1.6rem 0.75rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #fff;
    line-height: 1.3;
  }

  @media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  }

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

  /* ── FAQ ─────────────────────────────────────────────── */
  .faq-section { background: var(--white); }

  .faq-list {
    margin-top: 2.5rem;
    border-top: 1px solid var(--border);
  }

  .faq-item {
    border-bottom: 1px solid var(--border);
  }

  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.4rem 3rem 1.4rem 0;
    position: relative;
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.01em;
    line-height: 1.3;
  }

  .faq-item summary::-webkit-details-marker { display: none; }

  .faq-item summary::after {
    content: '';
    position: absolute;
    right: 6px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.2s;
  }

  .faq-item[open] summary::after { transform: translateY(-35%) rotate(-135deg); }

  .faq-item summary:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

  .faq-answer {
    padding: 0 3rem 1.6rem 0;
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 880px;
  }

  .faq-answer a { color: var(--red); font-weight: 600; }

  /* ── CTA SECTION ─────────────────────────────────────── */
  .cta-section {
    background: var(--navy-dark);
    padding: 5.5rem 2.5rem;
  }

  .cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .cta-text p {
    color: #8ca6c8;
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.78;
    max-width: 460px;
  }

  .cta-text p strong { color: #c8d4e8; font-weight: 600; }

  .cta-actions { margin-top: 1.75rem; display: flex; gap: 1rem; flex-wrap: wrap; }

  .cta-contact-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 5px;
    padding: 2rem;
  }

  .cta-contact-box h2,
  .cta-contact-box h3.box-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8ca6c8;
    margin-bottom: 1.1rem;
  }

  /* team list */
  .team-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 1.75rem; }

  .team-member {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
  }

  .team-member:first-of-type { padding-top: 0; }

  .team-id { display: flex; flex-direction: column; gap: 1px; }

  .team-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.01em;
  }

  .team-role {
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c8d4e8;
  }

  .team-contact {
    text-align: right;
    font-size: 0.9375rem;
    color: #c8d4e8;
    line-height: 1.5;
  }

  .team-contact a { color: #c8d4e8; text-decoration: none; }
  .team-contact a:hover { color: #fff; text-decoration: underline; }
  .team-contact .ext { color: #8ca6c8; font-size: 0.875rem; }

  .contact-divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 0.5rem 0 1.4rem;
  }

  .contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0.7rem 0;
  }

  .contact-row + .contact-row { border-top: 1px solid rgba(255,255,255,0.08); }

  .contact-icon {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.07);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-label {
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8ca6c8;
    display: block;
    margin-bottom: 2px;
  }

  .contact-value {
    font-size: 1rem;
    color: #e0eaf5;
    font-weight: 600;
  }

  .contact-value a { color: inherit; text-decoration: none; }
  .contact-value a:hover { color: #fff; text-decoration: underline; }

  /* ── FOOTER ──────────────────────────────────────────── */
  footer {
    background: #060c15;
    padding: 3.5rem 2.5rem 1.75rem;
    border-top: 3px solid var(--red);
  }

  .footer-inner { max-width: 1200px; margin: 0 auto; }

  .footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .footer-brand-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    margin-bottom: 0.85rem;
    line-height: 1.2;
  }

  .footer-brand-name span { color: #ef3b43; }

  .footer-brand p {
    font-size: 0.9375rem;
    color: #8ca6c8;
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 1.25rem;
  }

  .footer-iso {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red);
    border: 1px solid var(--red);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 2px;
  }

  .footer-col h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #c8d4e8;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }

  .footer-col li {
    font-size: 0.9375rem;
    color: #8ca6c8;
    line-height: 1.4;
  }

  .footer-col a {
    text-decoration: none;
    color: #8ca6c8;
    transition: color 0.2s;
  }

  .footer-col a:hover,
  .footer-col a:focus { color: #fff; text-decoration: underline; }

  .footer-transparency {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 1.5rem 0 0.25rem;
    margin-bottom: 1.5rem;
  }

  .footer-transparency .ft-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #c8d4e8;
    display: block;
    margin-bottom: 0.55rem;
  }

  .footer-transparency p {
    font-size: 0.8125rem;
    line-height: 1.7;
    color: #8ca6c8;
    max-width: 1100px;
  }

  .footer-transparency a { color: #c8d4e8; text-decoration: underline; }
  .footer-transparency a:hover,
  .footer-transparency a:focus { color: #fff; }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #8ca6c8;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .footer-legal {
    display: flex;
    align-items: center;
    gap: 0.4rem 1.1rem;
    flex-wrap: wrap;
  }

  .footer-legal a { color: #8ca6c8; text-decoration: none; }
  .footer-legal a:hover { color: #fff; text-decoration: underline; }
  .footer-legal span.sep { color: rgba(255,255,255,0.25); }

  /* ── RESPONSIVE ──────────────────────────────────────── */
  @media (max-width: 960px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-left { min-width: 0; }
    .hero-photos { max-width: 520px; min-width: 0; }
    .about-inner { grid-template-columns: 1fr; }
    .about-image { max-width: 460px; }
    .equipment-inner { grid-template-columns: 1fr; }
    .equip-photo-col { max-width: 460px; }
    .cta-inner { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 960px) {
    .nav-toggle { display: flex; }
    .nav-links {
      position: absolute;
      top: 72px;
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      background: var(--navy-dark);
      border-top: 1px solid rgba(255,255,255,0.1);
      box-shadow: 0 14px 26px rgba(0,0,0,0.4);
      display: none;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
      height: auto;
      width: 100%;
      padding: 1rem 1.75rem;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      border-left: 3px solid transparent;
    }
    .nav-links a:hover,
    .nav-links a:focus { border-bottom-color: rgba(255,255,255,0.07); border-left-color: var(--red); background: rgba(255,255,255,0.04); }
    .nav-cta {
      margin: 0.85rem 1.75rem 1.1rem;
      text-align: center;
      border-radius: 3px;
      padding: 12px 20px !important;
    }
  }

  @media (max-width: 640px) {
    section { padding: 3.5rem 1.25rem; }
    nav { padding: 0 1rem; }
    .hero-content { padding: 3rem 1.25rem; }
    .hero h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
    .hero-tag { flex-wrap: wrap; max-width: 100%; }
    .hero-photos { grid-template-columns: 1fr; max-width: 380px; }
    .top-bar { display: none; }
    .trust-bar { padding: 1.25rem; }
    .footer-top { grid-template-columns: 1fr; }
    .red-stripe { padding: 0.9rem 1.25rem; }
    .cap-header { flex-direction: column; align-items: flex-start; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }

    /* Stack hero stats — one per line, value beside label */
    .hero-stats { flex-direction: column; gap: 0; padding-top: 1.5rem; }
    .hero-stat {
      width: 100%;
      flex: none;
      display: flex;
      align-items: baseline;
      gap: 12px;
      border-right: none;
      border-bottom: 1px solid rgba(255,255,255,0.15);
      margin-right: 0;
      padding: 0.85rem 0;
    }
    .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
    .hero-stat-num { font-size: 1.5rem; }
    .hero-stat-label { margin-top: 0; }

    /* Contact box — stack each person left-aligned, no hard-right phone numbers */
    .team-member { flex-direction: column; align-items: flex-start; gap: 4px; }
    .team-contact { text-align: left; }
  }

  a:focus, button:focus, summary:focus {
    outline: 3px solid var(--red);
    outline-offset: 2px;
  }

  /* Keep keyword ribbon & partner row on one line on desktop */
  @media (min-width: 1080px) {
    .red-stripe-inner { flex-wrap: nowrap; gap: 0.4rem 1.5rem; }
    .red-stripe-item { font-size: 0.8125rem; letter-spacing: 0.05em; }
  }
