 /* ===== RESET & BASE ===== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy: #00205B;
    --navy-dark: #001540;
    --navy-mid: #003285;
    --brass: #C8A84B;
    --brass-light: #dfc070;
    --white: #FFFFFF;
    --grey-light: #F4F7FC;
    --grey-mid: #E2E8F0;
    --grey-text: #6B7280;
    --grey-dark: #374151;
    --font-display: 'Barlow Condensed', 'Impact', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 4px;
    --shadow: 0 4px 24px rgba(0,32,91,0.10);
    --shadow-lg: 0 8px 40px rgba(0,32,91,0.16);
    --transition: 0.25s ease;
  }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    color: var(--grey-dark);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
  }
  img { display: block; max-width: 100%; }
  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }
  button { cursor: pointer; font-family: var(--font-body); }

  /* ===== UTILITIES ===== */
  .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
  .section { padding: 80px 0; }
  .section--grey { background: var(--grey-light); }
  .section-eyebrow {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 12px;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .section-body {
    font-size: 16px;
    color: var(--grey-text);
    max-width: 620px;
    line-height: 1.75;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }



  /* ===== BUTTONS ===== */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
  }
  .btn-primary {
    background: var(--brass);
    color: var(--navy-dark);
    border-color: var(--brass);
  }
  .btn-primary:hover { background: var(--brass-light); border-color: var(--brass-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,168,75,0.35); }
  .btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
  }
  .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
  .btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
  }
  .btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow); }
  .btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
  }
  .btn-outline-navy:hover { background: var(--navy); color: var(--white); }

  /* ===== LOGO ===== */

  .logo-wrap--header img {
    width: 250px;
    max-width: 100%;
    height: auto;
    max-height: 52px;       /* keeps logo inside the 76px header with breathing room */
    object-fit: contain;
    object-position: left center;
    display: block;
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;        /* was: height: 76px — now allows growth */
    position: relative;
  }

  /* Footer variant */
  .logo-wrap--footer .logo .geo {
    -webkit-text-stroke: 0.05px rgba(255,255,255,0.9);
  }
  .logo-wrap--footer .logo .magna { color: var(--white); }
  .logo-wrap--footer .logo-tagline { color: rgba(255,255,255,0.65); }

  /* ===== HEADER / NAV ===== */
  #site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--grey-mid);
    box-shadow: 0 2px 16px rgba(0,32,91,0.08);
    transition: all var(--transition);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    position: relative;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-link {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-dark);
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
    cursor: pointer;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 14px; right: 14px;
    height: 2px;
    background: var(--brass);
    transform: scaleX(0);
    transition: transform var(--transition);
    border-radius: 2px;
  }
  .nav-link:hover, .nav-link.active { color: var(--navy); }
  .nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
  .nav-cta { margin-left: 16px; }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--grey-mid);
    padding: 20px 24px;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,32,91,0.12);
  }
  .mobile-menu.open { display: block; }
  .mobile-nav-link {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    padding: 14px 0;
    border-bottom: 1px solid var(--grey-mid);
    cursor: pointer;
    transition: color var(--transition);
  }
  .mobile-nav-link:last-child { border-bottom: none; }
  .mobile-nav-link:hover { color: var(--brass); }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    height: calc(100vh - 76px);
    min-height: 524px;
    max-height: 824px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 76px;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  .hero-bg video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,20,64,0.78) 0%, rgba(0,32,91,0.55) 60%, rgba(0,20,64,0.45) 100%);
  }
  /* Sonar-ring signature element */
  .hero-sonar {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
    opacity: 0.18;
  }
  .sonar-ring {
    position: absolute;
    border: 1px solid var(--brass);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: sonarPulse 3.6s ease-out infinite;
  }
  .sonar-ring:nth-child(2) { animation-delay: 1.2s; }
  .sonar-ring:nth-child(3) { animation-delay: 2.4s; }
  @keyframes sonarPulse {
    0% { transform: translate(-50%,-50%) scale(0); opacity: 1; width: 40px; height: 40px; }
    100% { transform: translate(-50%,-50%) scale(1); opacity: 0; width: 400px; height: 400px; }
  }
  .hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
  }
  .hero-eyebrow {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.7s 0.2s forwards;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--brass);
  }
  .hero-eyebrow::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--brass);
  }
  .hero-headline {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.7s 0.4s forwards;
  }
  .hero-sub {
    font-size: clamp(15px, 1.6vw, 17px);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    max-width: 560px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeUp 0.7s 0.6s forwards;
  }
  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.7s 0.8s forwards;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-scroll {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    margin-top: 28px;
    animation: fadeUp 1s 1.2s forwards;
  }
  .hero-scroll span {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
  }
  .scroll-arrow-wrap {
    animation: scrollBounce 1.5s infinite;
  }
  .scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255,255,255,0.6);
    border-bottom: 2px solid rgba(255,255,255,0.6);
    transform: rotate(45deg);
  }
  @keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
  }

  /* ===== ABOUT SECTION ===== */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .about-image {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: var(--grey-mid);
  }
  .about-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.6s ease;
  }
  .about-image:hover img { transform: scale(1.03); }
  .about-image::before { display: none; }
  .about-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
  }
  .stat { }
  .stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
  }
  .stat-label {
    font-size: 13px;
    color: var(--grey-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
  }
  .stat-divider {
    width: 1px;
    background: var(--grey-mid);
    align-self: stretch;
  }

  /* ===== BROCHURE SECTION ===== */
  .brochure-section {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  .brochure-section::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(200,168,75,0.15);
    border-radius: 50%;
  }
  .brochure-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 48px;
    align-items: center;
  }
  .brochure-thumb {
    width: 160px;
    height: 210px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-shrink: 0;
    transition: all var(--transition);
    cursor: pointer;
  }
  .brochure-thumb:hover { background: rgba(255,255,255,0.14); border-color: var(--brass); }
  .brochure-icon { font-size: 40px; }
  .brochure-label {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
  }
  .brochure-text .section-eyebrow { color: var(--brass); }
  .brochure-text .section-title { color: var(--white); }
  .brochure-text .section-body { color: rgba(255,255,255,0.72); max-width: none; }

  /* ===== EVENTS SECTION ===== */
  .events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 48px;
  }
  .event-card {
    background: var(--white);
    border: 1px solid var(--grey-mid);
    border-radius: 6px;
    padding: 36px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
  }
  .event-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brass);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  .event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .event-card:hover::before { transform: scaleX(1); }
  .event-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brass);
    background: rgba(200,168,75,0.10);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
  }
  .event-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.2;
  }
  .event-card p { font-size: 15px; color: var(--grey-text); line-height: 1.7; margin-bottom: 24px; }

  /* ===== PRODUCTS PAGE ===== */
  .page-hero {
    background: var(--navy);
    padding: 50px 0 40px;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
  }
  .page-hero .section-eyebrow { color: var(--brass); }
  .page-hero .section-title { color: var(--white); font-size: clamp(32px, 5vw, 56px); }
  .page-hero .section-body { color: rgba(255,255,255,0.75); }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 48px;
  }
  .product-card {
    background: var(--white);
    border: 1px solid var(--grey-mid);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
  }
  .product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .product-img {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .product-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--grey-text);
  }
  .product-img-icon { font-size: 36px; }
  .product-img-text { font-size: 11px; font-family: var(--font-display); letter-spacing: 0.12em; text-transform: uppercase; }
  .product-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
  .product-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .product-type {
    font-size: 12px;
    color: var(--grey-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
  }
  .product-dropdown-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: var(--grey-light);
    border: 1px solid var(--grey-mid);
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    transition: all var(--transition);
  }
  .product-dropdown-btn:hover { background: var(--grey-mid); }
  .product-dropdown-btn .arrow {
    transition: transform var(--transition);
    font-style: normal;
  }
  .product-dropdown-btn.open .arrow { transform: rotate(180deg); }
  .product-dropdown-content {
    display: none;
    padding: 16px;
    background: var(--grey-light);
    border: 1px solid var(--grey-mid);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    font-size: 14px;
    color: var(--grey-text);
  }
  .product-dropdown-content.open { display: block; }

  /* ===== PRODUCT DETAIL PAGE ===== */
  .product-detail-hero {
    background: var(--navy);
    padding: 32px 0 18px;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
  }
  .product-detail-hero .section-eyebrow { color: var(--brass); }
  .product-detail-hero .section-title { color: var(--white); font-size: clamp(32px,5vw,52px); }
  .product-detail-hero .section-body { color: rgba(255,255,255,0.75); }
  .product-detail-hero + .section { padding-top: 32px; }
  .product-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brass);
    cursor: pointer;
    margin-bottom: 24px;
    background: none;
    border: none;
    padding: 0;
    transition: color var(--transition);
  }
  .product-back-btn:hover { color: var(--brass-light); }
  .product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 24px;
  }
  .product-detail-img {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E0 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--grey-mid);
  }
  .product-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    font-size: 14px;
  }
  .product-spec-table th,
  .product-spec-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--grey-mid);
  }
  .product-spec-table th {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--grey-light);
    width: 42%;
  }
  .product-spec-table td { color: var(--grey-text); }
  .product-spec-table tr:last-child th,
  .product-spec-table tr:last-child td { border-bottom: none; }
  .product-features-list { list-style: none; margin-top: 16px; }
  .product-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--grey-text);
    border-bottom: 1px solid var(--grey-mid);
  }
  .product-features-list li:last-child { border-bottom: none; }
  .product-features-list li::before {
    content: '✔';
    color: var(--brass);
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
  }
  .product-cta-box {
    background: var(--grey-light);
    border: 1px solid var(--grey-mid);
    border-radius: 8px;
    padding: 28px 32px;
    margin-top: 32px;
  }
  .product-cta-box h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
  }
  .product-cta-box p { font-size: 14px; color: var(--grey-text); margin-bottom: 20px; }
  @media (max-width: 768px) {
    .product-detail-grid { grid-template-columns: 1fr; }
  }

  /* ===== SERVICES PAGE ===== */
  .services-hero-img {
    width: 100%;
    height: 260px;
    background:
      linear-gradient(135deg, rgba(0,20,64,0.7) 0%, rgba(0,32,91,0.5) 100%),
      url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1200&q=80') center/cover no-repeat;
    border-radius: 8px;
    margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .service-block {
    background: var(--white);
    border: 1px solid var(--grey-mid);
    border-radius: 8px;
    padding: 48px;
    box-shadow: var(--shadow);
    margin-bottom: 28px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    transition: box-shadow var(--transition);
    position: relative;
    overflow: hidden;
  }
  .service-block::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--brass);
  }
  .service-block:hover { box-shadow: var(--shadow-lg); }
  .service-icon-large {
    width: 96px;
    height: 96px;
    background: var(--grey-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex-shrink: 0;
  }
  .service-block h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
  }
  .service-block p { color: var(--grey-text); font-size: 15px; line-height: 1.75; margin-bottom: 24px; }

  /* ===== CONTACT PAGE ===== */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 48px;
    align-items: start;
  }
  .office-cards { display: flex; flex-direction: column; gap: 24px; }
  .office-card {
    background: var(--white);
    border: 1px solid var(--grey-mid);
    border-radius: 6px;
    padding: 28px 32px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: box-shadow var(--transition);
  }
  .office-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--navy);
  }
  .office-card:hover { box-shadow: var(--shadow-lg); }
  .office-flag { font-size: 22px; margin-bottom: 12px; }
  .office-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .office-detail {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--grey-text);
  }
  .office-detail-icon { flex-shrink: 0; margin-top: 1px; }
  .office-detail a { color: var(--navy); transition: color var(--transition); }
  .office-detail a:hover { color: var(--brass); }

  /* Map */

  /* Contact Form */
  .contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--grey-mid);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--grey-dark);
    background: var(--grey-light);
    border: 1.5px solid var(--grey-mid);
    border-radius: var(--radius);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(0,32,91,0.10);
    background: var(--white);
  }
  .form-group textarea { resize: vertical; min-height: 130px; }
  .form-note { font-size: 13px; color: var(--grey-text); margin-top: 12px; }
  .form-success {
    display: none;
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    border-radius: 6px;
    padding: 16px 20px;
    color: #065f46;
    font-size: 15px;
    margin-top: 16px;
  }

  /* Careers */
  .careers-section {
    background: var(--navy);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .careers-section::before {
    content: '';
    position: absolute;
    left: -200px; top: -200px;
    width: 600px; height: 600px;
    border: 1px solid rgba(200,168,75,0.12);
    border-radius: 50%;
  }
  .careers-section .section-title { color: var(--white); margin-bottom: 20px; }
  .careers-section .section-body { color: rgba(255,255,255,0.72); margin: 0 auto 32px; text-align: center; }

  /* ===== FOOTER ===== */
  #site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.75);
    padding: 64px 0 0;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-brand p {
    font-size: 14px;
    line-height: 1.75;
    margin-top: 20px;
    color: rgba(255,255,255,0.6);
    max-width: 280px;
  }
  .footer-heading {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 20px;
  }
  .footer-address {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
  }
  .footer-address a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
  .footer-address a:hover { color: var(--brass); }
  .footer-nav li { margin-bottom: 10px; }
  .footer-nav a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
    cursor: pointer;
  }
  .footer-nav a:hover { color: var(--brass); }
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-bottom-copy { font-size: 13px; color: rgba(255,255,255,0.45); }
  .footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
  .footer-legal a {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    transition: color var(--transition);
  }
  .footer-legal a:hover { color: var(--white); }

  /* ===== SCROLL ANIMATIONS ===== */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image { display: none; }
    .brochure-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
    .events-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .service-block { grid-template-columns: 1fr; gap: 24px; }
    .service-icon-large { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .hero-sonar { display: none; }
    .about-stats { flex-wrap: wrap; gap: 20px; }
    .section { padding: 56px 0; }
    .brochure-section { padding: 56px 0; }
    .contact-form-wrap { padding: 28px 20px; }
    .service-block { padding: 36px 28px; }
  }
  @media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .products-grid { grid-template-columns: 1fr; }
  }
  @media (prefers-reduced-motion: reduce) {
    .sonar-ring, .scroll-arrow { animation: none; }
    .hero-eyebrow, .hero-headline, .hero-sub, .hero-actions, .hero-scroll { opacity: 1; transform: none; animation: none; }
    .reveal { opacity: 1; transform: none; transition: none; }
  }

  /* ===== BP22 GALLERY ===== */
  .bp22-gallery { display:flex; flex-direction:column; gap:10px; width:100%; }

  .bp22-main-wrap {
    position: relative;
    width: 100%;
    background: #f0f2f5;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
    border: 1px solid var(--grey-mid);
  }

  .bp22-main-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: opacity 0.2s ease, transform 0.3s ease;
    cursor: zoom-in;
  }

  .bp22-main-wrap img:hover { transform: scale(1.04); }

  .bp22-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,32,91,0.72);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s;
  }
  .bp22-arrow:hover { background: var(--navy); }
  .bp22-prev { left: 8px; }
  .bp22-next { right: 8px; }

  .bp22-counter {
    position: absolute;
    bottom: 8px;
    right: 10px;
    font-family: var(--font-display);
    font-size: 11px;
    color: rgba(255,255,255,0.9);
    background: rgba(0,0,0,0.45);
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.08em;
  }

  .bp22-thumbs {
    display: flex;
    gap: 8px;
    width: 100%;
    align-items: center;
  }

  .bp22-thumb {
    width: 25%;
    max-width: 25%;
    flex: none;
    aspect-ratio: 4/3;
    object-fit: contain;
    object-position: center;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    background: #f0f2f5;
    opacity: 0.75;
    transition: border-color 0.2s, opacity 0.2s;
    display: block;
  }

  .bp22-thumb:hover { opacity: 0.9; }
  .bp22-thumb.active { border-color: var(--brass); opacity: 1; }

