    /* ==============================
       RESET & BASE
    ============================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:       #0D1B2A;
      --navy-deep:  #060E17;
      --navy-mid:   #122233;
      --gold:       #C9A84C;
      --gold-light: rgba(201,168,76,0.12);
      --gold-border:rgba(201,168,76,0.22);
      --cream:      #F8F5EF;
      --cream-mid:  #F0EBE1;
      --sage:       #1E3230;
      --slate:      #4A5568;
      --slate-light:#697586;
      --white:      #FFFFFF;
      --border:     rgba(0,0,0,0.09);
      --border-light:rgba(255,255,255,0.07);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      line-height: 1.7;
      color: var(--navy);
      background: var(--cream);
    }

    img { display: block; max-width: 100%; }
    a { text-decoration: none; }
    button { cursor: pointer; font-family: inherit; }
    ul { list-style: none; }

    /* ==============================
       TYPOGRAPHY HELPERS
    ============================== */
    .serif { font-family: 'Playfair Display', serif; }

    .eyebrow {
      font-size: 10.5px;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 0.6rem;
    }

    .eyebrow-light {
      font-size: 10.5px;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      font-weight: 600;
      color: rgba(248,245,239,0.45);
      margin-bottom: 0.6rem;
    }

    .gold-rule {
      width: 44px;
      height: 2px;
      background: var(--gold);
      margin-bottom: 1.4rem;
    }

    .gold-rule.center { margin-left: auto; margin-right: auto; }

    h1.display {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 4vw, 44px);
      font-weight: 700;
      line-height: 1.18;
      color: var(--cream);
    }

    h1.display em { color: var(--gold); font-style: normal; }

    h2.section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(22px, 3vw, 30px);
      font-weight: 700;
      line-height: 1.25;
      color: var(--navy);
      margin-bottom: 0.75rem;
    }

    h2.section-title.light { color: var(--cream); }

    .section-body {
      font-size: 14px;
      color: var(--slate);
      line-height: 1.8;
      max-width: 520px;
    }

    .section-body.light { color: rgba(248,245,239,0.6); max-width: none; }

    /* ==============================
       BUTTONS
    ============================== */
    .btn {
      display: inline-block;
      padding: 12px 28px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border: none;
      transition: opacity 0.18s, background 0.18s;
      font-family: 'Inter', sans-serif;
    }

    .btn-gold { background: var(--gold); color: var(--navy); }
    .btn-gold:hover { opacity: 0.85; }

    .btn-ghost {
      background: transparent;
      color: var(--cream);
      border: 1px solid rgba(248,245,239,0.28);
    }
    .btn-ghost:hover { border-color: rgba(248,245,239,0.65); }

    .btn-navy { background: var(--navy); color: var(--cream); }
    .btn-navy:hover { opacity: 0.88; }

    .btn-lg { padding: 14px 36px; font-size: 12.5px; }

    /* ==============================
       LAYOUT
    ============================== */
    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 2.5rem;
    }

    .section { padding: 5rem 0; }
    .section-sm { padding: 3.5rem 0; }

    /* ==============================
       NAV
    ============================== */
    .nav {
      position: sticky;
      top: 0;
      z-index: 200;
      background: var(--navy);
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 2.5rem;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--cream);
      font-family: 'Playfair Display', serif;
      font-size: 19px;
      letter-spacing: 0.02em;
    }

    .nav-logo-mark {
      width: 30px;
      height: 30px;
      border-radius: 4px;
      display: block;
      object-fit: cover;
      flex-shrink: 0;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.25rem;
    }

    .nav-toggle {
      display: none;
      width: 44px;
      height: 44px;
      padding: 0;
      border: 1px solid rgba(248,245,239,0.18);
      border-radius: 8px;
      background: transparent;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      color: var(--cream);
    }

    .nav-toggle span {
      width: 18px;
      height: 1.5px;
      background: currentColor;
      transition: transform 0.18s ease, opacity 0.18s ease;
    }

    .nav.menu-open .nav-toggle span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
    }

    .nav.menu-open .nav-toggle span:nth-child(2) {
      opacity: 0;
    }

    .nav.menu-open .nav-toggle span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
    }

    .nav-links a {
      font-size: 13px;
      color: rgba(248,245,239,0.65);
      font-weight: 400;
      letter-spacing: 0.01em;
      transition: color 0.18s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--gold);
      transition: width 0.22s;
    }

    .nav-links a:hover,
    .nav-links a.active { color: var(--cream); }
    .nav-links a:hover::after,
    .nav-links a.active::after { width: 100%; }

    .nav-cta {
      background: var(--gold) !important;
      color: var(--navy) !important;
      padding: 8px 20px !important;
      border-radius: 4px !important;
      font-weight: 600 !important;
      font-size: 11.5px !important;
      letter-spacing: 0.06em !important;
      text-transform: uppercase;
    }

    .nav-cta::after { display: none !important; }
    .nav-cta:hover { opacity: 0.88; }

    /* ==============================
       PAGE ROUTING
    ============================== */
    .page { display: none; }
    .page.active { display: block; }

    /* ==============================
       PAGE HERO (INNER PAGES)
    ============================== */
    .page-hero {
      background: var(--navy);
      padding: 5rem 0 4rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .page-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(26px, 3.5vw, 38px);
      color: var(--cream);
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .page-hero p {
      font-size: 15px;
      color: rgba(248,245,239,0.55);
      max-width: 540px;
      margin: 0 auto;
      font-weight: 300;
      line-height: 1.7;
    }

    /* ==============================
       HOME — HERO
    ============================== */
    .hero {
      background: var(--navy);
      padding: 6rem 0 5rem;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(ellipse 50% 70% at 0% 50%, rgba(201,168,76,0.05) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 2.5rem;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold-light);
      border: 1px solid var(--gold-border);
      border-radius: 100px;
      padding: 5px 14px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
    }

    .hero-tag .dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold);
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }

    .hero-visual {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .stat-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--gold-border);
      border-radius: 10px;
      padding: 1.5rem 1.75rem;
    }

    .stat-card .label {
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(248,245,239,0.4);
      margin-bottom: 0.4rem;
    }

    .stat-card .value {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1.2;
    }

    .stat-card .value-sub {
      font-size: 13px;
      color: rgba(248,245,239,0.6);
      margin-top: 0.3rem;
    }

    .stat-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    /* ==============================
       TRUST BAR
    ============================== */
    .trust-bar {
      background: var(--white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .trust-bar-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 2.5rem;
    }

    .trust-item {
      padding: 1.75rem 1.5rem 1.75rem 1.75rem;
      border-left: 2px solid var(--gold);
      border-right: 1px solid var(--border);
    }

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

    .trust-item strong {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 0.3rem;
    }

    .trust-item span {
      font-size: 12.5px;
      color: var(--slate);
      line-height: 1.55;
    }

    /* ==============================
       SERVICES OVERVIEW — HOME
    ============================== */
    .service-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 2rem;
      position: relative;
      overflow: hidden;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .service-card:hover {
      box-shadow: 0 8px 32px rgba(13,27,42,0.09);
      transform: translateY(-2px);
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 3px;
      height: 100%;
      background: var(--gold);
    }

    .service-card-icon {
      font-size: 26px;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .service-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      color: var(--navy);
      font-weight: 700;
      margin-bottom: 0.65rem;
    }

    .service-card p {
      font-size: 13px;
      color: var(--slate);
      line-height: 1.75;
    }

    /* ==============================
       AUDIENCE SECTION
    ============================== */
    .audience-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      margin-top: 3rem;
    }

    .audience-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--gold-border);
      border-radius: 10px;
      padding: 1.75rem 1.25rem;
      text-align: center;
      transition: background 0.2s;
    }

    .audience-card:hover { background: rgba(255,255,255,0.07); }

    .audience-card .icon {
      font-size: 30px;
      color: var(--gold);
      margin-bottom: 0.85rem;
    }

    .audience-card h4 {
      font-size: 13px;
      font-weight: 500;
      color: var(--cream);
      line-height: 1.45;
    }

    /* ==============================
       WHY SECTION (HOME)
    ============================== */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }

    .why-item {
      padding: 2rem 1.75rem;
      border-top: 2.5px solid var(--gold);
      border-right: 1px solid var(--border);
    }

    .why-item:last-child { border-right: none; }

    .why-item h4 {
      font-size: 14.5px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 0.5rem;
    }

    .why-item p {
      font-size: 13px;
      color: var(--slate);
      line-height: 1.7;
    }

    /* ==============================
       CTA BANNER
    ============================== */
    .cta-banner {
      background: var(--gold);
      padding: 4rem 0;
      text-align: center;
    }

    .cta-banner h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(20px, 2.5vw, 28px);
      color: var(--navy);
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .cta-banner p {
      font-size: 14px;
      color: rgba(13,27,42,0.6);
      margin-bottom: 2rem;
    }

    /* ==============================
       FOOTER
    ============================== */
    .footer {
      background: var(--navy-deep);
      padding: 4rem 0 0;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 3rem;
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 2.5rem 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .footer-logo { margin-bottom: 1rem; }

    .footer-tagline {
      font-size: 13px;
      color: rgba(248,245,239,0.38);
      line-height: 1.75;
    }

    .footer-col h5 {
      font-size: 10.5px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 1.25rem;
    }

    .footer-col ul li {
      margin-bottom: 0.65rem;
    }

    .footer-col ul li a {
      font-size: 13px;
      color: rgba(248,245,239,0.45);
      transition: color 0.18s;
    }

    .footer-col ul li a:hover { color: var(--cream); }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 0.75rem;
    }

    .footer-contact-item i {
      font-size: 16px;
      color: var(--gold);
      margin-top: 2px;
      flex-shrink: 0;
    }

    .footer-contact-item span {
      font-size: 13px;
      color: rgba(248,245,239,0.45);
      line-height: 1.55;
    }

    .footer-bottom {
      max-width: 1140px;
      margin: 0 auto;
      padding: 1.25rem 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer-bottom p {
      font-size: 12px;
      color: rgba(248,245,239,0.18);
    }

    /* ==============================
       ABOUT PAGE
    ============================== */
    .story-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    .values-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin-top: 1.5rem;
    }

    .value-chip {
      background: var(--gold-light);
      border: 1px solid var(--gold-border);
      border-radius: 8px;
      padding: 1.25rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .value-chip i {
      font-size: 20px;
      color: var(--gold);
      flex-shrink: 0;
    }

    .value-chip span {
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
    }

    /* TEAM */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .team-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .team-card:hover {
      box-shadow: 0 8px 32px rgba(13,27,42,0.1);
      transform: translateY(-3px);
    }

    /* Photo area at top of card */
    .team-photo {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 3;
      background: linear-gradient(160deg, #0D1B2A 0%, #1a2f44 60%, #122233 100%);
      overflow: hidden;
    }

    .team-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }

    /* Placeholder shown when no img src is set or img fails to load */
    .team-photo-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .team-photo-placeholder .initials {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: rgba(201,168,76,0.12);
      border: 2px solid rgba(201,168,76,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--gold);
    }

    .team-photo-placeholder .upload-hint {
      font-size: 10.5px;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: rgba(248,245,239,0.2);
      font-weight: 500;
    }

    /* Subtle gold bar at bottom of photo */
    .team-photo::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gold);
    }

    .team-card-body {
      padding: 1.5rem 1.5rem 1.75rem;
    }

    .team-card .team-title {
      font-size: 10.5px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

    .team-card h4 {
      font-size: 15px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 0.75rem;
    }

    .team-card p {
      font-size: 12.5px;
      color: var(--slate);
      line-height: 1.65;
    }

    /* ==============================
       SERVICES PAGE
    ============================== */
    .services-detail-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .service-detail-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 2rem;
      position: relative;
      overflow: hidden;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .service-detail-card:hover {
      box-shadow: 0 8px 28px rgba(13,27,42,0.09);
      transform: translateY(-2px);
    }

    .service-detail-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 3px;
      background: var(--gold);
    }

    .service-detail-card i {
      font-size: 28px;
      color: var(--gold);
      margin-bottom: 1.1rem;
      display: block;
    }

    .service-detail-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      color: var(--navy);
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .service-detail-card p {
      font-size: 13.5px;
      color: var(--slate);
      line-height: 1.8;
    }

    /* SECTORS */
    .sectors-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }

    .sector-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 2rem 1.5rem;
      text-align: center;
      transition: border-color 0.2s;
    }

    .sector-card:hover { border-color: var(--gold); }

    .sector-card i {
      font-size: 32px;
      color: var(--sage);
      margin-bottom: 0.85rem;
      display: block;
    }

    .sector-card h4 {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--navy);
    }

    /* PROCESS */
    .process-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .process-item {
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 1.5rem;
      padding: 2rem 0;
      border-bottom: 1px solid rgba(201,168,76,0.1);
      align-items: start;
    }

    .process-item:last-child { border-bottom: none; }

    .process-num {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--navy);
      flex-shrink: 0;
    }

    .process-item h4 {
      font-size: 15px;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 0.4rem;
    }

    .process-item p {
      font-size: 13.5px;
      color: rgba(248,245,239,0.55);
      line-height: 1.7;
    }

    /* ==============================
       WHY PAGE
    ============================== */
    .why-detail-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    .diff-list {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .diff-item {
      display: grid;
      grid-template-columns: 40px 1fr;
      gap: 1.25rem;
      align-items: start;
      padding: 1.5rem;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      border-left: 3px solid var(--gold);
      transition: box-shadow 0.2s;
    }

    .diff-item:hover { box-shadow: 0 4px 16px rgba(13,27,42,0.07); }

    .diff-num {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }

    .diff-item h4 {
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 0.4rem;
    }

    .diff-item p {
      font-size: 13px;
      color: var(--slate);
      line-height: 1.7;
    }

    .methodology-box {
      background: var(--navy);
      border-radius: 10px;
      padding: 2.25rem;
      border-left: 3px solid var(--gold);
      position: sticky;
      top: 88px;
    }

    .methodology-box .eyebrow { margin-bottom: 0.5rem; }

    .methodology-box h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      color: var(--cream);
      font-weight: 700;
      margin-bottom: 1.25rem;
    }

    .methodology-box p {
      font-size: 13.5px;
      color: rgba(248,245,239,0.6);
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .methodology-box p:last-child { margin-bottom: 0; }
    .methodology-box strong { color: var(--gold); }

    /* ==============================
       CONTACT PAGE
    ============================== */
    .contact-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    .form-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 2.5rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .form-field { margin-bottom: 1.1rem; }

    .form-field label {
      display: block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--slate);
      margin-bottom: 0.45rem;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      width: 100%;
      padding: 11px 14px;
      border: 1px solid rgba(0,0,0,0.13);
      border-radius: 6px;
      font-size: 13.5px;
      font-family: 'Inter', sans-serif;
      color: var(--navy);
      background: var(--cream);
      outline: none;
      transition: border-color 0.18s, box-shadow 0.18s;
    }

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
    }

    .form-field textarea {
      resize: vertical;
      min-height: 110px;
      line-height: 1.6;
    }

    .form-field select { cursor: pointer; }

    .form-submit {
      width: 100%;
      display: block;
      text-align: center;
      padding: 14px;
      margin-top: 0.5rem;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .contact-detail {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      padding: 1.5rem 0;
      border-bottom: 1px solid var(--border);
    }

    .contact-detail:last-of-type { border-bottom: none; }

    .contact-icon {
      width: 40px;
      height: 40px;
      background: var(--gold-light);
      border: 1px solid var(--gold-border);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--gold);
      flex-shrink: 0;
    }

    .contact-detail-body h5 {
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--slate-light);
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

    .contact-detail-body p {
      font-size: 13.5px;
      color: var(--navy);
      line-height: 1.55;
    }

    .direct-call-box {
      background: var(--cream-mid);
      border-radius: 8px;
      padding: 1.5rem;
      border-left: 3px solid var(--gold);
      margin-top: 1.5rem;
    }

    .direct-call-box p {
      font-size: 13px;
      color: var(--slate);
      line-height: 1.7;
    }

    .direct-call-box strong { color: var(--navy); }

    /* ==============================
       BG UTILITIES
    ============================== */
    .bg-white { background: var(--white); }
    .bg-cream { background: var(--cream); }
    .bg-navy  { background: var(--navy); }
    .bg-sage  { background: var(--sage); }

    /* ==============================
       RESPONSIVE
    ============================== */
    @media (max-width: 900px) {
      .hero-inner,
      .story-grid,
      .contact-grid,
      .why-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }

      .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
      .trust-item { border-right: none; }

      .service-grid,
      .services-detail-grid { grid-template-columns: 1fr; }

      .audience-grid,
      .sectors-grid { grid-template-columns: repeat(2, 1fr); }

      .team-grid { grid-template-columns: repeat(2, 1fr); }

      .why-grid { grid-template-columns: 1fr; }
      .why-item { border-right: none; }

      .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

      .nav-links { gap: 1.25rem; }
    }

    @media (max-width: 600px) {
      .container { padding: 0 1.25rem; }
      .nav-inner { padding: 0 1.25rem; }
      .hero-inner { padding: 0 1.25rem; }
      .trust-bar-inner { grid-template-columns: 1fr; padding: 0 1.25rem; }
      .team-grid { grid-template-columns: 1fr; }
      .audience-grid { grid-template-columns: 1fr; }
      .sectors-grid { grid-template-columns: repeat(2, 1fr); }
      .form-row { grid-template-columns: 1fr; }
      .footer-inner { padding: 0 1.25rem 2.5rem; }
      .footer-bottom { padding: 1rem 1.25rem; flex-direction: column; gap: 0.5rem; text-align: center; }
      .nav-toggle { display: inline-flex; }
      .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 1rem;
        right: 1rem;
        background: rgba(6,14,23,0.98);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 12px;
        padding: 0.9rem 1rem 1rem;
        box-shadow: 0 18px 40px rgba(0,0,0,0.22);
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
      }
      .nav.menu-open .nav-links { display: flex; }
      .nav-links li { width: 100%; }
      .nav-links a {
        display: block;
        padding: 0.8rem 0.2rem;
      }
      .nav-links a::after { display: none; }
      .nav-cta {
        margin-top: 0.35rem;
        text-align: center;
        padding: 12px 20px !important;
      }
    }

  

