﻿
  :root {
    --navy: #0d1b2e;
    --navy-mid: #142338;
    --navy-light: #1e3450;
    --blue: #2a6fad;
    --blue-bright: #4a9fd4;
    --gold: #4a9fd4;
    --gold-light: #6db8e8;
    --white: #f5f7fa;
    --gray: #8a9ab0;
    --gray-light: #c5cdd8;
    --text: #e8edf4;
    --text-dim: #b8c8d8;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--navy);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ─── TYPOGRAPHY ─── */
  h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }
  h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); line-height: 1.05; letter-spacing: -0.02em; }
  h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; }
  h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
  p { font-size: 1rem; line-height: 1.75; color: var(--text-dim); font-weight: 300; }

  /* ─── PAGES ─── */
  .page { display: none; min-height: 100vh; }
  .page.active { display: block; animation: fadeIn 0.5s ease; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 4rem;
    background: rgba(13, 27, 46, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: all 0.3s ease;
  }

  .nav-logo {
    display: flex; align-items: center; gap: 0.8rem; cursor: pointer;
    text-decoration: none;
  }
  .nav-logo img { height: 38px; filter: brightness(1.1); }
  .nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-weight: 500;
    color: var(--white); letter-spacing: 0.04em;
  }
  .nav-logo-text span { color: var(--gold); }

  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    color: var(--gray-light); text-decoration: none;
    font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; cursor: pointer;
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 1px; background: var(--gold);
    transform: scaleX(0); transition: transform 0.2s;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--white); }
  .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

  .nav-cta {
    background: transparent; border: 1px solid var(--gold);
    color: var(--gold); padding: 0.55rem 1.4rem;
    font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; cursor: pointer;
    transition: all 0.2s; font-family: 'Outfit', sans-serif;
  }
  .nav-cta:hover { background: var(--gold); color: var(--navy); }

  /* hamburger */
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { width: 24px; height: 2px; background: var(--gold); transition: all 0.3s; }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 8rem 4rem 4rem;
    background: var(--navy);
  }

  /* Video layer */
  .hero-video-wrap {
    position: absolute; inset: 0; z-index: 0;
    overflow: hidden;
  }
  .hero-video-wrap video {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    object-fit: cover;
    object-position: center center;
  }
  /* Fade overlays — left heavy, also top, right, bottom */
  .hero-video-wrap::after {
    content: "";
    position: absolute; inset: 0; z-index: 1;
    background:
      /* left fade — text area blends into video */
      linear-gradient(to right,  var(--navy) 0%, var(--navy) 28%, rgba(13,27,46,0.82) 42%, rgba(13,27,46,0.3) 58%, transparent 72%),
      /* top fade */
      linear-gradient(to bottom, var(--navy) 0%, rgba(13,27,46,0.5) 12%, transparent 28%),
      /* right fade */
      linear-gradient(to left,   var(--navy) 0%, rgba(13,27,46,0.6) 10%, transparent 30%),
      /* bottom fade */
      linear-gradient(to top,    var(--navy) 0%, rgba(13,27,46,0.4) 10%, transparent 25%);
  }

  .hero-bg { display: none; }
  .hero-grid { display: none; }

  .hero-content { position: relative; z-index: 2; max-width: 700px; }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.8rem;
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1.8rem;
  }
  .hero-eyebrow::before {
    content: ''; width: 36px; height: 1px; background: var(--gold);
  }

  .hero h1 { color: var(--white); margin-bottom: 1.5rem; }
  .hero h1 em { font-style: italic; color: var(--gold); }

  .hero-tagline {
    font-size: 1.1rem; color: var(--gray-light); font-weight: 300;
    margin-bottom: 1.8rem; max-width: 520px; line-height: 1.65;
  }

  .hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; }

  .btn-primary {
    background: var(--gold); color: var(--navy);
    padding: 0.9rem 2.2rem; border: none; cursor: pointer;
    font-family: 'Outfit', sans-serif; font-size: 0.85rem;
    font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    transition: all 0.25s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

  .btn-outline {
    background: transparent; color: var(--white);
    padding: 0.9rem 2.2rem; border: 1px solid rgba(255,255,255,0.25); cursor: pointer;
    font-family: 'Outfit', sans-serif; font-size: 0.85rem;
    font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    transition: all 0.25s;
  }
  .btn-outline:hover { border-color: var(--white); transform: translateY(-2px); }

  .hero-stats {
    position: absolute; right: 4rem; bottom: 4rem;
    display: flex; gap: 3rem; z-index: 2;
  }
  .stat { text-align: right; }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 300; color: var(--white); line-height: 1;
  }
  .stat-num span { color: var(--gold); }
  .stat-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); margin-top: 0.3rem; }

  /* ─── SECTION COMMONS ─── */
  section { padding: 6rem 4rem; }
  .section-inner { max-width: 1200px; margin: 0 auto; }

  .section-label {
    display: inline-flex; align-items: center; gap: 0.8rem;
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
  }
  .section-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); }

  .divider { width: 60px; height: 2px; background: var(--gold); margin: 1.5rem 0; }

  /* ─── HOME: INTRO ─── */
  .home-intro { background: var(--navy-mid); }
  .home-intro-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  }
  .home-intro h2 { color: var(--white); margin-bottom: 1.2rem; }
  .home-intro p { margin-bottom: 1rem; }

  .pillars {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem;
  }
  .pillar {
    padding: 1.5rem; border: 1px solid rgba(201,168,76,0.15);
    border-left: 3px solid var(--gold);
    background: rgba(42,111,173,0.05);
    transition: background 0.2s;
  }
  .pillar:hover { background: rgba(42,111,173,0.1); }
  .pillar h4 { color: var(--gold); font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.4rem; }
  .pillar p { font-size: 0.88rem; }

  /* ─── HOME: SERVICES PREVIEW ─── */
  .services-preview { background: var(--navy); }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 3rem; background: rgba(255,255,255,0.06); }
  .service-card {
    background: var(--navy); padding: 2.5rem 2rem;
    transition: background 0.3s; cursor: pointer;
    border-bottom: 2px solid transparent;
  }
  .service-card:hover { background: var(--navy-mid); border-bottom-color: var(--gold); }
  .service-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: rgba(201,168,76,0.7); line-height: 1; margin-bottom: 1rem; font-weight: 600; }
  .service-card h3 { color: var(--white); margin-bottom: 0.8rem; font-size: 1.2rem; }
  .service-card p { font-size: 0.88rem; }

  /* ─── HOME: CTA BAND ─── */
  .cta-band {
    background: linear-gradient(135deg, var(--blue) 0%, #1a4d80 100%);
    padding: 4rem; text-align: center;
  }
  .cta-band h2 { color: var(--white); margin-bottom: 1rem; }
  .cta-band p { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 2rem; }

  /* ─── PAGE HERO ─── */
  .page-hero {
    padding: 8rem 4rem 3rem;
    background: var(--navy);
    position: relative; overflow: hidden;
    min-height: 38vh; display: flex; flex-direction: column; justify-content: flex-end;
  }
  /* video background for page heroes */
  .page-hero-video {
    position: absolute; inset: 0; z-index: 0; overflow: hidden;
  }
  .page-hero-video video {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    object-fit: cover; object-position: center 85%;
  }
  .page-hero-video::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background:
      linear-gradient(to right,  var(--navy) 0%, var(--navy) 22%, rgba(13,27,46,0.88) 38%, rgba(13,27,46,0.35) 55%, transparent 70%),
      linear-gradient(to bottom, var(--navy) 0%, rgba(13,27,46,0.55) 14%, transparent 35%),
      linear-gradient(to left,   var(--navy) 0%, rgba(13,27,46,0.6) 8%,  transparent 25%),
      linear-gradient(to top,    var(--navy) 0%, rgba(13,27,46,0.5) 10%, transparent 28%);
  }
  .page-hero .section-label,
  .page-hero h1,
  .page-hero p { position: relative; z-index: 2; }
  .page-hero h1 { color: var(--white); max-width: 700px; }
  .page-hero p  { max-width: 580px; margin-top: 0.8rem; font-size: 1.05rem; }

  /* ─── ABOUT ─── */
  .about-story { background: var(--navy); }
  .about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
  .about-grid h2 { color: var(--white); margin-bottom: 1.2rem; }
  .about-grid p { margin-bottom: 1rem; }

  .timeline { margin-top: 3rem; }
  .timeline-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
  .timeline-year {
    font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
    color: var(--gold); min-width: 60px; font-weight: 300;
  }
  .timeline-content h4 { color: var(--white); font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.3rem; }
  .timeline-content p { font-size: 0.88rem; }

  .about-values { background: var(--navy-mid); }
  .values-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.2rem; margin-top: 3rem; }
  .value-card { text-align: center; padding: 2rem 1rem; }
  .value-icon { font-size: 2rem; margin-bottom: 1rem; }
  .value-card h3 { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.8rem; }
  .value-card p { font-size: 0.88rem; }

  /* ─── SERVICES ─── */
  .services-detail { background: var(--navy); }
  .services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
  .service-detail-card {
    padding: 2.5rem; border: 1px solid rgba(255,255,255,0.07);
    border-top: 3px solid var(--gold); background: var(--navy-mid);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .service-detail-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
  .service-detail-card h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.3rem; }
  .service-detail-card p { font-size: 0.9rem; }
  .service-detail-card ul { margin-top: 1rem; padding-left: 1.2rem; }
  .service-detail-card ul li { color: var(--text-dim); font-size: 0.88rem; margin-bottom: 0.4rem; }

  .certifications { background: var(--navy-mid); text-align: center; }
  .cert-grid { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; margin-top: 3rem; }
  .cert-badge {
    padding: 1.2rem 2rem; border: 1px solid rgba(201,168,76,0.3);
    font-size: 0.88rem; font-weight: 600; color: var(--gold); letter-spacing: 0.08em;
  }

  /* ─── PORTFOLIO ─── */
  .portfolio-grid-section { background: var(--navy); }

  /* ── Portfolio cards (Faller-style) ── */
  .portfolio-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
  }
  .pcard {
    background: var(--navy-mid);
    border: 1px solid rgba(255,255,255,0.07);
    display: flex; flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
  }
  .pcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.45);
  }
  .pcard-photo {
    width: 100%; height: 260px; overflow: hidden;
    background: var(--navy-light);
    flex-shrink: 0;
  }
  .pcard-photo img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transition: transform 0.5s ease;
    display: block;
  }
  .pcard:hover .pcard-photo img { transform: scale(1.04); }
  .pcard-body {
    padding: 2rem 1.8rem 2rem;
    display: flex; flex-direction: column; flex: 1;
    border-top: 2px solid var(--gold);
  }
  .pcard-tag {
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 0.6rem;
  }
  .pcard-body h3 {
    color: var(--white); font-size: 1.35rem;
    margin-bottom: 1.2rem; font-family: 'Cormorant Garamond', serif;
  }
  .pcard-body ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 0.55rem;
    flex: 1;
  }
  .pcard-body ul li {
    color: var(--text-dim); font-size: 0.85rem; line-height: 1.55;
    padding-left: 1rem; position: relative;
  }
  .pcard-body ul li::before {
    content: ''; position: absolute; left: 0; top: 0.6em;
    width: 5px; height: 1px; background: var(--gold);
  }
  @media (max-width: 900px) {
    .portfolio-cards { grid-template-columns: 1fr; }
    .pcard-photo { height: 220px; }
  }

  .portfolio-filter { display: flex; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
  .filter-btn {
    padding: 0.5rem 1.2rem; background: transparent;
    border: 1px solid rgba(255,255,255,0.12); color: var(--text-dim);
    font-family: 'Outfit', sans-serif; font-size: 0.8rem;
    font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    cursor: pointer; transition: all 0.2s;
  }
  .filter-btn.active, .filter-btn:hover { border-color: var(--gold); color: var(--gold); }

  .portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .portfolio-card {
    position: relative; overflow: hidden;
    background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
  }
  .portfolio-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.4); }
  .portfolio-card-img {
    height: 200px; background: linear-gradient(135deg, var(--navy-light) 0%, #0a1520 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .portfolio-card-img::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(42,111,173,0.2), rgba(201,168,76,0.1));
  }
  .portfolio-card-img-icon { font-size: 3rem; opacity: 0.4; position: relative; z-index: 1; }
  .portfolio-card-body { padding: 1.5rem; }
  .portfolio-card-tag {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
  }
  .portfolio-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.6rem; }
  .portfolio-card p { font-size: 0.85rem; }

  /* Portfolio: fixed-height cards; full-card overlay reveals description on hover */
  .portfolio-card { height: 280px; }
  .portfolio-card-body {
    position: absolute; inset: 0;
    padding: 1.5rem;
    display: flex; flex-direction: column; justify-content: flex-end;
    background: linear-gradient(to top, rgba(8,18,35,0.97) 30%, transparent 100%);
    transition: background 0.35s ease;
  }
  .portfolio-card:hover .portfolio-card-body {
    background: rgba(8, 18, 35, 0.93);
    justify-content: center;
  }
  .portfolio-card .portfolio-card-tag {
    max-height: 0; overflow: hidden; opacity: 0; margin-bottom: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease 0.15s, margin-bottom 0.25s ease;
  }
  .portfolio-card:hover .portfolio-card-tag {
    max-height: 2em; opacity: 1; margin-bottom: 0.5rem;
  }
  .portfolio-card .portfolio-card-body p {
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.4s ease, opacity 0.25s ease 0.15s;
  }
  .portfolio-card:hover .portfolio-card-body p {
    max-height: 200px; opacity: 1;
  }

  /* ─── TEAM ─── */
  .team-grid-section { background: var(--navy); }
  .team-grid { display: block; margin-top: 1rem; }
  .team-grid-section { padding-left: 3rem !important; padding-right: 3rem !important; }
  .team-grid-section .section-inner { max-width: 92% !important; }
  .team-row-4, .team-row-3 { display: flex; justify-content: center; gap: 1.4rem; margin-bottom: 1.4rem; }
  .team-row-4 .team-card, .team-row-3 .team-card { flex: 0 0 calc(25% - 1.05rem); }
  .team-card {
    background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.07);
    overflow: hidden; transition: transform 0.25s, box-shadow 0.25s;
  }
  .team-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.35); }
  .team-photo {
    height: 300px; background: var(--navy-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; color: var(--blue); position: relative; overflow: hidden;
  }
  .team-photo::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 60px; background: linear-gradient(transparent, var(--navy-mid));
  }
  .team-photo img { width: 100%; height: 100%; object-fit: cover; }
  .team-info { padding: 1.5rem; }
  .team-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 0.25rem; }
  .team-title { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
  .team-bio { font-size: 0.85rem; line-height: 1.65; }
  .team-linkedin {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.75rem; color: var(--blue-bright); text-decoration: none;
    margin-top: 0.8rem; font-weight: 500;
    transition: color 0.2s;
  }
  .team-linkedin:hover { color: var(--gold); }

  /* ─── CONTACT ─── */
  .contact-section { background: var(--navy); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
  .contact-info h2 { color: var(--white); margin-bottom: 1.5rem; }
  .contact-info p { margin-bottom: 2rem; }

  .contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
  .contact-detail-icon {
    width: 44px; height: 44px; background: rgba(42,111,173,0.15);
    border: 1px solid rgba(42,111,173,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
  }
  .contact-detail-text h4 { color: var(--white); font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.25rem; }
  .contact-detail-text p { font-size: 0.9rem; }

  .contact-form { background: var(--navy-mid); padding: 3rem; border: 1px solid rgba(255,255,255,0.07); }
  .contact-form h3 { color: var(--white); margin-bottom: 2rem; font-size: 1.5rem; }
  .form-group { margin-bottom: 1.5rem; }
  .form-group label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.5rem; }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white); padding: 0.85rem 1rem;
    font-family: 'Outfit', sans-serif; font-size: 0.9rem;
    transition: border-color 0.2s; outline: none;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
  .form-group textarea { height: 120px; resize: vertical; }
  .form-group select option { background: var(--navy-mid); }

  /* ─── FOOTER ─── */
  footer {
    background: #080f1a; padding: 4rem 4rem 2rem;
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-brand h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 0.8rem; }
  .footer-brand h3 span { color: var(--gold); }
  .footer-brand p { font-size: 0.85rem; max-width: 280px; }
  .footer-col h4 { font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.6rem; }
  .footer-col ul li a { color: var(--text-dim); text-decoration: none; font-size: 0.88rem; cursor: pointer; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--white); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.07); }
  .footer-bottom p { font-size: 0.78rem; }

  /* ─── FILL-IN MARKERS ─── */
  .fill-in {
    background: rgba(255, 200, 0, 0.08); border: 1px dashed rgba(255, 200, 0, 0.3);
    padding: 0.2em 0.5em; border-radius: 2px;
    color: #ffd060; font-style: italic; font-size: 0.9em;
  }

  /* ─── TABLET (2-column team) ─── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--navy-mid); padding: 2rem; gap: 1.5rem; border-bottom: 1px solid rgba(201,168,76,0.15); }
    .hamburger { display: flex; }
    .nav-cta { display: none; }
    section, .hero, .page-hero { padding-left: 1.5rem; padding-right: 1.5rem; }
    .hero-stats { position: static; flex-direction: row; flex-wrap: wrap; margin-top: 3rem; gap: 2rem; }
    .stat { text-align: left; }
    .home-intro-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid, .services-list, .portfolio-grid, .team-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    h1 { font-size: 2.4rem; }

    /* Team: 2 columns on tablet */
    .team-grid-section { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
    .team-grid-section .section-inner { max-width: 100% !important; }
    .team-row-4, .team-row-3 { flex-wrap: wrap; gap: 1rem; }
    .team-row-4 .team-card, .team-row-3 .team-card { flex: 0 0 calc(50% - 0.5rem); }

    /* Testimonials: let height grow on tablet */
    .tcarousel { height: auto; min-height: 320px; }
    .tslide { height: auto; overflow: visible; }
    .tslide.active { display: flex; }
  }

  /* ─── MOBILE (single-column team) ─── */
  @media (max-width: 600px) {
    .team-row-4, .team-row-3 { flex-direction: column; gap: 1rem; }
    .team-row-4 .team-card, .team-row-3 .team-card { flex: 0 0 100%; width: 100%; }
    .team-photo { height: 260px; }
    .team-name { font-size: 1.2rem; }
    .team-title { font-size: 0.72rem; }
    .team-bio { font-size: 0.82rem; }

    /* Testimonials: fully fluid height, no clipping */
    .tcarousel { height: auto; min-height: 0; overflow: visible; }
    .tslide { height: auto; overflow: visible; min-height: 0; }
    .tslide.active { display: flex; }
    .tquote-text { font-size: clamp(1.05rem, 4vw, 1.3rem); margin-bottom: 1rem; white-space: normal; overflow: visible; }
    .tquote-attr { white-space: normal; overflow: visible; }
    .tquote-mark { font-size: 5rem; }
  }

  /* ─── CLIENT LOGOS STRIP ─── */
  .clients-strip { background: var(--navy-mid); padding: 4rem 4rem; }
  .clients-strip .section-inner { max-width: 1200px; margin: 0 auto; }
  .clients-strip-header { text-align: center; margin-bottom: 2.5rem; }
  .clients-strip-header h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 400; }
  .clients-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem; }
  .client-logo-placeholder {
    flex: 0 0 calc(16.6% - 1rem); min-width: 140px;
    background: var(--navy-light); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; height: 80px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.35); font-size: 0.8rem; font-family: 'Outfit', sans-serif;
    letter-spacing: 0.05em; text-transform: uppercase; font-weight: 500;
    transition: border-color 0.2s;
  }
  .client-logo-placeholder:hover { border-color: rgba(255,255,255,0.2); }

  /* ─── TESTIMONIALS CAROUSEL ─── */
  .testimonials-section { background: var(--navy); padding: 3.5rem 4rem; }
  .testimonials-section .section-inner { max-width: 900px; margin: 0 auto; text-align: center; }
  .testimonials-section .section-label { justify-content: center; }
  .tcarousel { position: relative; overflow: hidden; height: 320px; margin: 2rem 0; }
  .tslide { display: none; animation: fadeIn 0.5s ease; height: 100%; overflow: hidden; }
  .tslide.active { display: flex; flex-direction: column; justify-content: center; }
  .tquote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem; line-height: 0.6; color: var(--gold);
    opacity: 0.5; display: block; margin-bottom: 0.5rem;
  }
  .tquote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.85rem);
    font-weight: 300; line-height: 1.6;
    color: var(--white); margin-bottom: 1.5rem;
  }
  .tquote-attr { font-size: 0.9rem; color: var(--text-dim); letter-spacing: 0.05em; font-family: 'Outfit', sans-serif; }
  .tcarousel-nav { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2rem; }
  .tarrow {
    background: none; border: 1px solid rgba(255,255,255,0.2); color: var(--white);
    width: 40px; height: 40px; border-radius: 50%; font-size: 1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, border-color 0.2s;
  }
  .tarrow:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }
  .tdots { display: flex; gap: 0.5rem; }
  .tdot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,0.2); border: none; cursor: pointer;
    transition: background 0.2s; padding: 0;
  }
  .tdot.active { background: var(--gold); }


  /* ─── TRUST QUOTE STRIP ─── */
  .trust-quote-strip { background: var(--navy-mid); padding: 2.5rem 4rem; }
  .trust-quote-strip .section-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
  .trust-quote-text {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    font-weight: 400; font-style: italic;
    color: var(--white); line-height: 1.6; margin: 0;
  }

  /* ─── KEY STATS BAND ─── */
  .key-stats-band { background: var(--navy-light); padding: 3.5rem 4rem; }
  .key-stats-band .section-inner { max-width: 1200px; margin: 0 auto; }
  .key-stats-grid {
    display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; text-align: center;
  }
  .key-stat { flex: 0 0 auto; min-width: 160px; }
  .key-stat { padding: 1.2rem 0.5rem; border-left: 1px solid rgba(255,255,255,0.08); }
  .key-stat:first-child { border-left: none; }
  .key-stat-num {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 500; color: var(--white); line-height: 1; margin-bottom: 0.5rem;
  }
  .key-stat-num span { font-size: 0.7em; color: var(--gold); }
  .key-stat-label { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.4; }


/* Multi-page layout: pages are always visible */
.page { display: block !important; }