    /* ── TOKENS ────────────────────────────────── */
    :root {
      --navy:       #2B3A5C;
      --navy-deep:  #1C2740;
      --navy-mid:   #3D5080;
      --navy-lite:  #5A6E96;
      --gold:       #B8965A;
      --gold-light: #D4B07A;
      --gold-pale:  #E8D5B0;
      --cream:      #FDF5EC;
      --cream-dk:   #F0E4CC;
      --ink:        #1A2438;
      --mid:        #4A5568;
      --muted:      #8A9BB5;
      --white:      #FFFFFF;

      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans:  'Jost', sans-serif;

      --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* ── RESET ─────────────────────────────────── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html {
      scroll-behavior: smooth;
      font-size: 16px;
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
      background: var(--cream);
    }
    body {
      font-family: var(--sans);
      background: var(--cream);
      color: var(--ink);
      line-height: 1.7;
      position: relative;
      width: 100%;
      max-width: 100%;
      min-height: 100%;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }

    /* ── UTILITY ───────────────────────────────── */
    .gold-line {
      display: block;
      width: 48px;
      height: 2px;
      background: var(--gold);
      margin-bottom: 24px;
    }
    .label {
      font-size: 12px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      font-family: var(--sans);
      display: block;
      margin-bottom: 12px;
    }
    .section-title {
      font-family: var(--serif);
      font-size: clamp(38px, 5vw, 58px);
      font-weight: 600;
      line-height: 1.1;
      color: var(--navy-deep);
    }
    .section-title.light { color: var(--cream); }
    .body-copy {
      font-size: 16px;
      color: var(--mid);
      line-height: 1.85;
    }
    .body-copy.light { color: var(--muted); }

    /* ── BUTTONS ───────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 16px 36px;
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.3s var(--ease-out);
    }
    .btn-gold {
      background: var(--gold);
      color: var(--navy-deep);
      border-color: var(--gold);
    }
    .btn-gold:hover {
      background: var(--gold-light);
      border-color: var(--gold-light);
      transform: translateY(-2px);
    }
    .btn-outline {
      background: transparent;
      color: var(--cream);
      border-color: rgba(253,245,236,0.35);
    }
    .btn-outline:hover {
      background: rgba(253,245,236,0.08);
      border-color: var(--gold);
      color: var(--gold-light);
    }
    .btn-outline-dark {
      background: transparent;
      color: var(--navy);
      border-color: rgba(43,58,92,0.3);
    }
    .btn-outline-dark:hover {
      background: var(--navy);
      color: var(--cream);
    }

    /* ═══════════════════════════════════════════
       NAV
    ═══════════════════════════════════════════ */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 60px;
      height: 80px;
      background: #F0E4CC;
      transition: background 0.4s ease, box-shadow 0.4s ease;
    }
    .nav.scrolled {
      box-shadow: 0 4px 40px rgba(28,39,64,0.3);
    }
    .nav-logo img {
      height: 52px;
      width: auto;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 40px;
      list-style: none;
    }
    .nav-links a {
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--navy);
      transition: color 0.25s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .nav-careers {
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--navy);
      transition: color 0.25s;
    }
    .nav-careers:hover { color: var(--gold); }
    .nav-cta {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 500;
      padding: 12px 28px;
      background: transparent;
      border: 1px solid var(--navy);
      color: var(--navy);
      cursor: pointer;
      transition: all 0.3s;
    }
    .nav-cta:hover {
      background: var(--navy);
      color: var(--cream);
    }

    /* mobile hamburger */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      background: none;
      border: none;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--navy);
      transition: all 0.3s;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* mobile drawer */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 80px; left: 0; right: 0; bottom: 0;
      background: var(--navy-deep);
      z-index: 99;
      flex-direction: column;
      padding: 40px 32px;
      gap: 32px;
      overflow-y: auto;
      clip-path: inset(0 0 0 100%);
      visibility: hidden;
      pointer-events: none;
      transition: clip-path 0.35s var(--ease-out), visibility 0.35s;
    }
    .mobile-nav.open {
      clip-path: inset(0);
      visibility: visible;
      pointer-events: auto;
    }
    .mobile-nav a {
      font-size: 22px;
      font-family: var(--serif);
      font-weight: 600;
      color: var(--cream);
      letter-spacing: 1px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      padding-bottom: 28px;
    }
    .mobile-nav a:last-child { border-bottom: none; }
    .mobile-nav-ctas {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 8px;
    }
    .mobile-nav-cta {
      justify-content: center;
      text-align: center;
    }

    /* ═══════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════ */
    .hero {
      position: relative;
      min-height: 82vh;
      background: var(--navy-deep);
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    /* subtle grid texture */
    .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: 72px 72px;
      pointer-events: none;
    }

    /* gold gradient overlay bottom */
    .hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 240px;
      background: linear-gradient(to top, rgba(28,39,64,0.9), transparent);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
      padding: 104px 60px 32px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      width: 100%;
    }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 28px;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 40px;
      height: 1px;
      background: var(--gold);
    }
    .hero-eyebrow span {
      font-size: 10px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
    }

    .hero-heading {
      font-family: var(--serif);
      font-size: clamp(48px, 6vw, 80px);
      font-weight: 600;
      color: var(--cream);
      line-height: 1.05;
      letter-spacing: -0.5px;
      margin-bottom: 28px;
    }
    .hero-heading em {
      font-style: italic;
      color: var(--gold-light);
    }

    .hero-sub {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.85;
      max-width: 480px;
      margin-bottom: 44px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .hero-right {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .hero-image {
      width: min(100%, 700px);
      max-height: 800px;
      object-fit: contain;
    }

    /* ═══════════════════════════════════════════
       SERVICES INTRO STRIP
    ═══════════════════════════════════════════ */
    .services-strip {
      background: var(--navy);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }
    .strip-item {
      padding: 34px 52px;
      border-right: 1px solid rgba(255,255,255,0.06);
      transition: background 0.3s;
      cursor: default;
    }
    .strip-item:last-child { border-right: none; }
    .strip-item:hover { background: rgba(255,255,255,0.04); }
    .strip-num {
      font-family: var(--serif);
      font-size: 13px;
      letter-spacing: 4px;
      color: var(--gold);
      margin-bottom: 16px;
      display: block;
    }
    .strip-title {
      font-family: var(--serif);
      font-size: 24px;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 12px;
      line-height: 1.2;
    }
    .strip-copy {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.75;
    }

    /* ═══════════════════════════════════════════
       ABOUT / WHO WE ARE
    ═══════════════════════════════════════════ */
    .about {
      max-width: 1280px;
      margin: 0 auto;
      padding: 64px 60px 104px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }
    .about-visual {
      position: relative;
    }
    .about-img-frame {
      position: relative;
      aspect-ratio: 4/5;
      background: var(--navy-deep);
      overflow: hidden;
    }
    /* decorative gold corner accent */
    .about-img-frame::after {
      content: '';
      position: absolute;
      bottom: -1px; right: -1px;
      width: 80px; height: 80px;
      border-bottom: 2px solid var(--gold);
      border-right: 2px solid var(--gold);
    }
    .about-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    /* gold offset border on image frame */
    .about-frame-offset {
      position: absolute;
      top: 28px; left: -28px;
      right: 28px; bottom: -28px;
      border: 1px solid rgba(184,150,90,0.25);
      z-index: -1;
    }

    .about-content {}
    .about-intro {
      font-family: var(--serif);
      font-size: clamp(22px, 2.5vw, 30px);
      font-weight: 400;
      font-style: italic;
      color: var(--navy-mid);
      line-height: 1.45;
      margin: 20px 0 28px;
    }
    .about-body {
      font-size: 15px;
      color: var(--mid);
      line-height: 1.85;
      margin-bottom: 16px;
    }
    .about-pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
      grid-auto-rows: 1fr;
      gap: 16px;
      margin: 40px 0;
    }
    .pillar {
      height: 100%;
      padding: 20px 24px;
      background: var(--cream-dk);
      border-left: 3px solid var(--gold-pale);
    }
    .pillar-title {
      font-size: 11px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--navy);
      font-weight: 600;
      margin-bottom: 6px;
    }
    .pillar-copy {
      font-size: 13px;
      color: var(--mid);
      line-height: 1.65;
    }

    /* ═══════════════════════════════════════════
       SERVICES (full)
    ═══════════════════════════════════════════ */
    .services {
      background: var(--navy-deep);
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }
    .services::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .services-inner {
      position: relative;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 60px;
    }
    .services-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: end;
      margin-bottom: 72px;
    }
    .services-header-copy {
      align-self: end;
      padding-bottom: 8px;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      align-items: stretch;
      grid-auto-rows: 1fr;
      gap: 2px;
    }
    .service-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(253,245,236,0.06);
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: background 0.35s, border-color 0.35s;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s var(--ease-out);
    }
    .service-card:hover {
      background: rgba(255,255,255,0.07);
      border-color: rgba(184,150,90,0.2);
    }
    .service-card:hover::before { transform: scaleX(1); }

    .service-icon {
      width: 52px;
      height: 52px;
      border: 1px solid rgba(184,150,90,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
    }
    .service-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .service-card-num {
      position: absolute;
      top: 32px; right: 32px;
      font-family: var(--serif);
      font-size: 64px;
      font-weight: 600;
      color: rgba(253,245,236,0.04);
      line-height: 1;
      user-select: none;
    }
    .service-card-title {
      font-family: var(--serif);
      font-size: 28px;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 16px;
      line-height: 1.2;
    }
    .service-card-copy {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 0;
    }

    /* ═══════════════════════════════════════════
       HOW WE WORK
    ═══════════════════════════════════════════ */
    .process {
      padding: 120px 0;
      background: var(--cream);
    }
    .process-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 60px;
    }
    .process-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 80px;
    }
    .gold-line-centered {
      margin: 0 auto 20px;
    }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }
    /* connecting line */
    .process-steps::before {
      content: '';
      position: absolute;
      top: 32px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
      height: 1px;
      background: linear-gradient(90deg, var(--gold-pale), var(--gold), var(--gold-pale));
    }
    .step {
      padding: 0 32px;
      text-align: center;
      position: relative;
    }
    .step-dot {
      width: 64px;
      height: 64px;
      border: 2px solid var(--gold-pale);
      background: var(--cream);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 28px;
      position: relative;
      z-index: 1;
      transition: border-color 0.3s, background 0.3s;
    }
    .step:hover .step-dot {
      border-color: var(--gold);
      background: var(--navy-deep);
    }
    .step-dot span {
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 600;
      color: var(--gold);
    }
    .step-title {
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 600;
      color: var(--navy-deep);
      margin-bottom: 12px;
    }
    .step-copy {
      font-size: 15px;
      color: var(--mid);
      line-height: 1.75;
    }

    /* ═══════════════════════════════════════════
       SECTORS
    ═══════════════════════════════════════════ */
    .sectors {
      background: var(--cream-dk);
      padding: 120px 0;
    }
    .sectors-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 60px;
    }
    .sectors-layout {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 80px;
      align-items: start;
    }
    .sectors-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .sector-tag {
      padding: 20px 24px;
      background: var(--white);
      border: 1px solid var(--cream-dk);
      transition: border-color 0.3s, background 0.3s;
      cursor: default;
    }
    .sector-tag:hover {
      border-color: var(--gold);
      background: var(--cream);
    }
    .sectors-copy {
      margin-top: 20px;
      margin-bottom: 40px;
    }
    .sector-tag-title {
      font-family: var(--serif);
      font-size: 18px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 5px;
    }
    .sector-tag-sub {
      font-size: 13px;
      color: var(--muted);
      letter-spacing: 0.5px;
    }

    /* ═══════════════════════════════════════════
       TESTIMONIALS / QUOTE
    ═══════════════════════════════════════════ */
    .testimonials {
      background: var(--navy);
      padding: 120px 0;
      overflow: hidden;
    }
    .testimonials-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 60px;
    }
    .testimonials-header {
      text-align: center;
      margin-bottom: 72px;
    }
    .quote-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .quote-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(253,245,236,0.07);
      padding: 40px 36px;
      position: relative;
    }
    .quote-mark {
      font-family: var(--serif);
      font-size: 80px;
      color: var(--gold);
      opacity: 0.3;
      line-height: 0.7;
      margin-bottom: 20px;
      display: block;
    }
    .quote-text {
      font-family: var(--serif);
      font-size: 20px;
      font-style: italic;
      font-weight: 400;
      color: var(--cream);
      line-height: 1.65;
      margin-bottom: 28px;
    }
    .quote-rule {
      width: 32px;
      height: 1px;
      background: var(--gold);
      margin-bottom: 20px;
    }
    .quote-name {
      font-size: 14px;
      font-weight: 500;
      color: var(--cream);
      letter-spacing: 1px;
    }
    .quote-role {
      font-size: 13px;
      color: var(--muted);
      margin-top: 4px;
      letter-spacing: 0.5px;
    }

    /* ═══════════════════════════════════════════
       CTA BAND
    ═══════════════════════════════════════════ */
    .cta-band {
      background: var(--navy-deep);
      padding: 100px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-band::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 120% at 50% 100%, rgba(184,150,90,0.08), transparent);
      pointer-events: none;
    }
    .cta-band-inner {
      position: relative;
      max-width: 680px;
      margin: 0 auto;
    }
    .cta-heading {
      font-family: var(--serif);
      font-size: clamp(36px, 5vw, 60px);
      font-weight: 600;
      color: var(--cream);
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .cta-heading em {
      font-style: italic;
      color: var(--gold-light);
    }
    .cta-sub {
      font-size: 15px;
      color: var(--muted);
      margin-bottom: 44px;
      line-height: 1.75;
    }
    .cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    /* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
    .footer {
      background: var(--cream-dk);
      border-top: 1px solid rgba(43,58,92,0.08);
      padding: 72px 60px 40px;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }
    .footer-brand img {
      height: 44px;
      width: auto;
      margin-bottom: 20px;
    }
    .footer-brand-copy {
      font-size: 13px;
      color: var(--mid);
      line-height: 1.8;
      max-width: 280px;
    }
    .footer-col-title {
      font-size: 10px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 24px;
    }
    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-col ul a {
      font-size: 13px;
      color: var(--navy);
      transition: color 0.25s;
    }
    .footer-col ul a:hover { color: var(--gold); }

    .footer-bottom {
      border-top: 1px solid rgba(43,58,92,0.1);
      padding-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .footer-bottom-left {
      font-size: 12px;
      color: rgba(43,58,92,0.68);
      letter-spacing: 1px;
    }
    .footer-bottom-left a {
      color: inherit;
    }
    .footer-wordmark {
      font-family: var(--serif);
      font-size: 14px;
      font-weight: 600;
      color: var(--navy-deep);
      letter-spacing: 5px;
      text-transform: uppercase;
    }

    /* ═══════════════════════════════════════════
       ANIMATIONS
    ═══════════════════════════════════════════ */
    .fade-up {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .fade-up-delay-1 { transition-delay: 0.1s; }
    .fade-up-delay-2 { transition-delay: 0.2s; }
    .fade-up-delay-3 { transition-delay: 0.3s; }
    .fade-up-delay-4 { transition-delay: 0.4s; }

    /* ═══════════════════════════════════════════
       RESPONSIVE (basic)
    ═══════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .nav { padding: 0 32px; }
      .hero { min-height: auto; }
      .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 104px 32px 48px; }
      .hero-image { max-width: 560px; }
      .services-strip { grid-template-columns: 1fr; }
      .strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
      .about { grid-template-columns: 1fr; gap: 60px; padding: 80px 32px; }
      .about-frame-offset { display: none; }
      .services-inner { padding: 0 32px; }
      .services-header { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .process-inner, .sectors-inner, .testimonials-inner { padding: 0 32px; }
      .process-steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
      .process-steps::before { display: none; }
      .sectors-layout { grid-template-columns: 1fr; }
      .sectors-grid { grid-template-columns: repeat(2, 1fr); }
      .quote-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
      .cta-band { padding: 80px 32px; }
      .footer { padding: 60px 32px 32px; }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-careers { display: none; }
      .nav-cta { display: none; }
      .nav-hamburger { display: flex; }
      .mobile-nav { display: flex; }
    }

    @media (max-width: 640px) {
      .hero-heading { font-size: 38px; }
      .hero-actions,
      .hero-actions .btn {
        width: 100%;
      }
      .hero-actions .btn {
        justify-content: center;
        text-align: center;
      }
      .hero-image { max-width: 100%; }
      .services-grid { grid-template-columns: 1fr; }
      .about-pillars { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr; }
      .sectors-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    }
    /* ═══════════════════════════════════════════
       CONTACT FORM
    ═══════════════════════════════════════════ */
    .contact-section {
      background: var(--navy-deep);
      padding: 120px 0;
    }
    .contact-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 60px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: start;
    }
    .contact-left {}
    .contact-intro {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.85;
      margin: 20px 0 36px;
    }
    .contact-section .section-title {
      color: var(--cream);
    }
    .contact-detail {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .contact-detail-item {
      display: flex;
      flex-direction: column;
      gap: 16px;
      padding: 20px 24px;
      background: rgba(255,255,255,0.05);
      border-left: 3px solid var(--gold);
    }
    .contact-detail-item svg {
      width: 20px; height: 20px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .contact-detail-label {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 4px;
    }
    .contact-detail-value {
      font-size: 15px;
      color: var(--cream);
      font-weight: 500;
    }

    /* form */
    .contact-form {
      background: var(--white);
      padding: 48px;
      border: 1px solid var(--cream-dk);
    }
    .form-title {
      font-family: var(--serif);
      font-size: 28px;
      font-weight: 600;
      color: var(--navy-deep);
      margin-bottom: 8px;
    }
    .form-sub {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 32px;
      line-height: 1.6;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .form-group {
      margin-bottom: 20px;
    }
    .form-group label {
      display: block;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--navy);
      font-weight: 500;
      margin-bottom: 8px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 14px 16px;
      font-size: 15px;
      font-family: var(--sans);
      color: var(--ink);
      background: var(--cream);
      border: 1px solid var(--cream-dk);
      outline: none;
      transition: border-color 0.25s;
      -webkit-appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-group select { cursor: pointer; }
    .botcheck {
      display: none;
    }
    .form-submit {
      width: 100%;
      padding: 18px;
      background: var(--navy-deep);
      color: var(--cream);
      font-family: var(--sans);
      font-size: 12px;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 500;
      border: none;
      cursor: pointer;
      transition: background 0.3s;
      margin-top: 8px;
    }
    .form-submit:hover { background: var(--navy); }
    .form-note {
      font-size: 12px;
      color: var(--muted);
      text-align: center;
      margin-top: 16px;
      line-height: 1.6;
    }
    .form-success {
      display: none;
      text-align: center;
      padding: 24px;
      background: var(--cream);
      border: 1px solid var(--gold-pale);
      color: var(--navy);
      font-size: 15px;
      line-height: 1.7;
    }
    @media (max-width: 1024px) {
      .contact-inner { grid-template-columns: 1fr; gap: 60px; padding: 0 32px; }
      .form-row { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .contact-form { padding: 32px 24px; }
    }

    /* ═══════════════════════════════════════════
       SIMPLE SUPPORT PAGES
    ═══════════════════════════════════════════ */
    .simple-page {
      max-width: 760px;
      min-height: 100vh;
      margin: 0 auto;
      padding: 80px 32px;
    }
    .simple-logo {
      display: inline-block;
      margin-bottom: 56px;
    }
    .simple-logo img {
      width: 180px;
      height: auto;
    }
    .simple-page .body-copy {
      margin: 20px 0;
    }
    .simple-page .btn {
      margin-top: 20px;
    }
    @media (max-width: 640px) {
      .simple-page {
        padding: 48px 24px;
      }
      .simple-page .section-title {
        font-size: 36px;
      }
    }
