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

    :root {
      --navy: #0a1628;
      --navy-mid: #112040;
      --navy-light: #1a3060;
      --white: #ffffff;
      --off-white: #f7f6f2;
      --warm: #f0ece4;
      --gold: #c9a84c;
      --gold-light: #e2c97e;
      --gold-pale: rgba(201,168,76,0.12);
      --text: #0a1628;
      --text-mid: #3d4f6a;
      --text-muted: #7a8799;
      --border: rgba(10,22,40,0.1);
      --border-light: rgba(255,255,255,0.1);
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Outfit', sans-serif;
      background: var(--white);
      color: var(--text);
      overflow-x: hidden;
      margin-top: 0 !important;
      padding-top: 0 !important;
    }
    /* WordPress admin bar pushes nav down */
    body.admin-bar nav { top: 32px; }
    @media screen and (max-width: 782px) {
      body.admin-bar nav { top: 46px; }
    }

    /* ══ NOISE TEXTURE OVERLAY ══ */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.4;
    }

    /* ══ NAV ══ */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 500;
      height: 76px;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5vw;
      transition: background 0.4s, box-shadow 0.4s;
    }
    nav.solid {
      background: rgba(10,22,40,0.97);
      backdrop-filter: blur(16px);
      box-shadow: 0 1px 0 rgba(255,255,255,0.06);
    }

    .logo-wrap { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
    .logo-mark {
      width: 36px; height: 36px;
      border: 1.5px solid var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.05em;
    }
    .logo-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 600;
      color: var(--white);
      letter-spacing: 0.04em;
    }
    .logo-text span { color: var(--gold); }

    .nav-links { display: flex; gap: 2.25rem; list-style: none; }
    .nav-links a {
      font-size: 0.8rem; font-weight: 500;
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--white); }

    .nav-right { display: flex; align-items: center; gap: 1.5rem; }
    .nav-phone { font-size: 0.8rem; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; }
    .nav-cta {
      background: var(--gold); color: var(--navy);
      font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.65rem 1.4rem;
      text-decoration: none;
      transition: background 0.2s;
    }
    .nav-cta:hover { background: var(--gold-light); }

    .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); margin: 5px 0; transition: 0.3s; }

    /* ══ HERO ══ */
    .hero {
      min-height: calc(100vh - 76px);
      background: var(--navy);
      position: relative;
      overflow: hidden;
      display: flex; align-items: center;
      margin-top: 0;
    }

    /* Geometric background */
    .hero-geo {
      position: absolute; inset: 0;
      pointer-events: none;
    }
    .hero-geo svg { width: 100%; height: 100%; }

    .hero-content {
      position: relative; z-index: 2;
      padding: 80px 8vw 80px;
      max-width: 780px;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: var(--gold-pale);
      border: 1px solid rgba(201,168,76,0.3);
      padding: 0.45rem 1rem;
      font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 2rem;
      opacity: 0;
      animation: fadeSlide 0.9s 0.2s forwards;
    }
    .hero-badge::before {
      content: ''; width: 6px; height: 6px;
      background: var(--gold); border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.4); }
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 6vw, 5.5rem);
      font-weight: 600;
      line-height: 1.04;
      color: var(--white);
      letter-spacing: -0.01em;
      margin-bottom: 1.75rem;
      opacity: 0;
      animation: fadeSlide 0.9s 0.4s forwards;
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-sub {
      font-size: 1.05rem; font-weight: 300; line-height: 1.8;
      color: rgba(255,255,255,0.55);
      max-width: 520px;
      margin-bottom: 3rem;
      opacity: 0;
      animation: fadeSlide 0.9s 0.6s forwards;
    }

    .hero-actions {
      display: flex; gap: 1rem; flex-wrap: wrap;
      opacity: 0;
      animation: fadeSlide 0.9s 0.8s forwards;
    }

    .btn-gold {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: var(--gold); color: var(--navy);
      font-size: 0.8rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 1rem 2rem; text-decoration: none;
      transition: background 0.2s, transform 0.2s;
    }
    .btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

    .btn-ghost {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: transparent; color: rgba(255,255,255,0.75);
      font-size: 0.8rem; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 1rem 2rem; text-decoration: none;
      border: 1px solid rgba(255,255,255,0.2);
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

    .hero-scroll-hint {
      position: absolute; bottom: 2.5rem; left: 8vw;
      display: flex; align-items: center; gap: 0.75rem;
      font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      opacity: 0; animation: fadeSlide 0.9s 1.2s forwards;
    }
    .scroll-line {
      width: 40px; height: 1px; background: rgba(255,255,255,0.2);
      position: relative; overflow: hidden;
    }
    .scroll-line::after {
      content: ''; position: absolute; top: 0; left: -100%;
      width: 100%; height: 100%; background: var(--gold);
      animation: scanline 2s 1.5s infinite;
    }
    @keyframes scanline { to { left: 100%; } }

    /* Hero right panel */
    .hero-right-panel {
      position: absolute; right: 0; top: 0; bottom: 0;
      width: 42%;
      opacity: 0; animation: fadeIn 1.2s 0.5s forwards;
    }
    .hero-right-panel svg { width: 100%; height: 100%; }

    @keyframes fadeSlide {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: none; }
    }
    @keyframes fadeIn { to { opacity: 1; } }

    /* ══ PILLARS STRIP ══ */
    .pillars {
      background: var(--gold);
      display: grid; grid-template-columns: repeat(3, 1fr);
    }
    .pillar {
      padding: 2.5rem 2.5rem;
      border-right: 1px solid rgba(10,22,40,0.15);
      display: flex; align-items: flex-start; gap: 1rem;
    }
    .pillar:last-child { border-right: none; }
    .pillar-icon {
      flex-shrink: 0; width: 42px; height: 42px;
      background: rgba(10,22,40,0.12);
      display: flex; align-items: center; justify-content: center;
      color: var(--navy);
    }
    .pillar h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; font-weight: 700;
      color: var(--navy); margin-bottom: 0.25rem;
    }
    .pillar p { font-size: 0.82rem; line-height: 1.6; color: rgba(10,22,40,0.65); }

    /* ══ SECTION COMMONS ══ */
    .section { padding: 7rem 8vw; }

    .tag {
      font-size: 0.68rem; font-weight: 600;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--gold);
      display: inline-flex; align-items: center; gap: 0.6rem;
      margin-bottom: 1.2rem;
    }
    .tag::before {
      content: ''; display: block;
      width: 28px; height: 1px; background: var(--gold);
    }

    .h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      font-weight: 600; line-height: 1.1;
      letter-spacing: -0.01em; color: var(--navy);
    }
    .h2 em { font-style: italic; color: var(--gold); }

    .lead {
      font-size: 1rem; font-weight: 300; line-height: 1.8;
      color: var(--text-mid); max-width: 540px; margin-top: 1rem;
    }

    /* ══ ABOUT / INTRO ══ */
    #about-intro {
      background: var(--off-white);
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 6rem; align-items: center;
    }

    .intro-visual {
      position: relative;
    }
    .intro-card-stack { position: relative; }
    .intro-card-back {
      position: absolute; top: -16px; right: -16px;
      width: 100%; height: 100%;
      background: var(--gold-pale);
      border: 1px solid rgba(201,168,76,0.2);
    }
    .intro-card-main {
      position: relative; z-index: 1;
      background: var(--navy);
      padding: 3rem;
      aspect-ratio: 4/5;
      display: flex; flex-direction: column; justify-content: space-between;
      overflow: hidden;
    }
    .intro-card-main::before {
      content: '';
      position: absolute; top: -80px; right: -80px;
      width: 260px; height: 260px; border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    }
    .intro-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.75rem; font-weight: 400; font-style: italic;
      line-height: 1.4; color: rgba(255,255,255,0.9);
      position: relative; z-index: 1;
    }
    .intro-quote::before {
      content: '\201C';
      font-size: 5rem; line-height: 0.6;
      color: var(--gold); opacity: 0.4;
      display: block; margin-bottom: 0.5rem;
    }
    .intro-stat-row {
      display: flex; gap: 2rem;
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 1.5rem;
      position: relative; z-index: 1;
    }
    .intro-stat span:first-child {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.25rem; font-weight: 700;
      color: var(--gold); display: block; line-height: 1;
    }
    .intro-stat span:last-child {
      font-size: 0.72rem; letter-spacing: 0.1em;
      text-transform: uppercase; color: rgba(255,255,255,0.4);
      display: block; margin-top: 0.25rem;
    }

    .intro-content .h2 { margin-bottom: 1.5rem; }
    .intro-body { font-size: 0.975rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 1rem; }

    .check-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin: 1.75rem 0; }
    .check-list li {
      display: flex; gap: 0.75rem; align-items: flex-start;
      font-size: 0.9rem; color: var(--text-mid);
    }
    .check-list li::before {
      content: '';
      flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px;
      background: var(--gold);
      clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    }
    .check-list li strong { color: var(--navy); font-weight: 600; }

    /* ══ SERVICES ══ */
    #services { background: var(--white); }
    .services-header {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 3rem; align-items: end; margin-bottom: 4.5rem;
    }

    .service-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: var(--border);
    }

    .service-card {
      background: var(--white);
      padding: 3rem 2.5rem;
      position: relative; overflow: hidden;
      transition: background 0.35s;
      cursor: default;
    }
    .service-card:hover { background: var(--off-white); }

    .service-card::before {
      content: '';
      position: absolute; left: 0; top: 0; bottom: 0;
      width: 3px; background: var(--gold);
      transform: scaleY(0); transform-origin: bottom;
      transition: transform 0.35s;
    }
    .service-card:hover::before { transform: scaleY(1); }

    .service-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem; font-weight: 700;
      color: rgba(10,22,40,0.06);
      line-height: 1; margin-bottom: 1.5rem;
      display: block;
    }

    .service-icon-wrap {
      width: 50px; height: 50px;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); margin-bottom: 1.5rem;
      transition: background 0.3s, border-color 0.3s;
    }
    .service-card:hover .service-icon-wrap {
      background: var(--gold); color: var(--navy); border-color: var(--gold);
    }

    .service-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 600;
      color: var(--navy); margin-bottom: 0.75rem; line-height: 1.2;
    }
    .service-card p { font-size: 0.875rem; line-height: 1.75; color: var(--text-muted); }
    .service-link {
      display: inline-flex; align-items: center; gap: 0.4rem;
      font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--gold);
      text-decoration: none; margin-top: 1.5rem;
      transition: gap 0.2s;
    }
    .service-link:hover { gap: 0.7rem; }

    /* ══ PROCESS / HOW ══ */
    #process { background: var(--navy); }
    #process .h2 { color: var(--white); }
    #process .lead { color: rgba(255,255,255,0.45); }

    .process-steps {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0; margin-top: 4rem;
      position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute; top: 34px;
      left: calc(12.5% + 28px); right: calc(12.5% + 28px);
      height: 1px;
      background: linear-gradient(90deg, var(--gold) 0%, rgba(201,168,76,0.2) 100%);
    }

    .process-step { padding: 0 1.75rem; text-align: center; position: relative; z-index: 1; }
    .step-num {
      width: 68px; height: 68px; border-radius: 50%;
      border: 1px solid rgba(201,168,76,0.3);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 2rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 700; color: var(--gold);
      background: var(--navy-mid);
      transition: background 0.3s, border-color 0.3s;
    }
    .process-step:hover .step-num {
      background: var(--gold); color: var(--navy); border-color: var(--gold);
    }
    .process-step h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem; font-weight: 600;
      color: var(--white); margin-bottom: 0.75rem;
    }
    .process-step p { font-size: 0.83rem; line-height: 1.7; color: rgba(255,255,255,0.4); }

    /* ══ PARTNERSHIP ══ */
    #partnership {
      background: var(--off-white);
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0; padding: 0;
    }
    .partner-visual {
      background: var(--navy-light);
      min-height: 540px;
      position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .partner-visual svg { width: 100%; height: 100%; position: absolute; inset: 0; }

    .partner-content {
      padding: 7rem 5vw;
      display: flex; flex-direction: column; justify-content: center;
    }
    .partner-content .h2 { margin-bottom: 1.5rem; }
    .partner-body { font-size: 0.975rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 2rem; }

    /* ══ TESTIMONIALS ══ */
    #testimonials { background: var(--white); text-align: center; }
    .testimonials-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem; margin-top: 3.5rem; text-align: left;
    }
    .t-card {
      border: 1px solid var(--border);
      padding: 2.5rem;
      position: relative; overflow: hidden;
      transition: border-color 0.3s, transform 0.3s;
    }
    .t-card:hover { border-color: var(--gold); transform: translateY(-4px); }
    .t-card::before {
      content: '\201C';
      font-family: 'Cormorant Garamond', serif;
      font-size: 7rem; line-height: 1; color: var(--gold); opacity: 0.12;
      position: absolute; top: -10px; left: 1.25rem;
      pointer-events: none;
    }
    .t-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
    .t-card blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem; font-style: italic; line-height: 1.75;
      color: var(--text); margin-bottom: 1.75rem;
    }
    .t-author { display: flex; align-items: center; gap: 0.75rem; }
    .t-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--navy); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem; font-weight: 700; color: var(--gold);
    }
    .t-name { font-weight: 600; font-size: 0.875rem; color: var(--navy); }
    .t-role { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.1rem; }

    /* ══ CTA BAND ══ */
    .cta-band {
      background: var(--navy-mid);
      padding: 5rem 8vw;
      display: grid; grid-template-columns: 1fr auto;
      align-items: center; gap: 3rem;
      position: relative; overflow: hidden;
    }
    .cta-band::before {
      content: '';
      position: absolute; right: -100px; top: -100px;
      width: 400px; height: 400px; border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 65%);
    }
    .cta-band h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 3vw, 2.75rem); font-weight: 600;
      color: var(--white); line-height: 1.15;
      position: relative;
    }
    .cta-band p { color: rgba(255,255,255,0.5); font-size: 1rem; margin-top: 0.5rem; position: relative; }
    .cta-band .btn-gold { position: relative; white-space: nowrap; }

    /* ══ CONTACT ══ */
    #contact {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0; padding: 0; background: var(--off-white);
    }
    .contact-info-panel {
      background: var(--navy);
      padding: 7rem 5vw;
      display: flex; flex-direction: column; justify-content: center;
    }
    .contact-info-panel .h2 { color: var(--white); margin-bottom: 1.5rem; }
    .contact-info-panel .lead { color: rgba(255,255,255,0.45); margin-bottom: 3rem; }

    .contact-item {
      display: flex; align-items: flex-start; gap: 1rem;
      margin-bottom: 1.75rem;
    }
    .c-icon {
      flex-shrink: 0; width: 40px; height: 40px;
      border: 1px solid rgba(201,168,76,0.3);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); margin-top: 2px;
    }
    .contact-item h4 {
      font-size: 0.68rem; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 0.35rem;
    }
    .contact-item p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
    .contact-item a { color: rgba(255,255,255,0.7); text-decoration: none; }
    .contact-item a:hover { color: var(--gold); }

    .contact-form-panel { padding: 7rem 5vw; }
    .contact-form-panel h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.75rem; font-weight: 600;
      color: var(--navy); margin-bottom: 2rem;
    }

    .form { display: flex; flex-direction: column; gap: 1.25rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .fg { display: flex; flex-direction: column; gap: 0.4rem; }
    .fg label {
      font-size: 0.68rem; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--text-muted);
    }
    .fg input, .fg select, .fg textarea {
      font-family: 'Outfit', sans-serif;
      font-size: 0.9rem; color: var(--text);
      background: var(--white); border: 1px solid var(--border);
      padding: 0.8rem 1rem; outline: none;
      transition: border-color 0.2s;
      -webkit-appearance: none;
    }
    .fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
    .fg textarea { resize: vertical; min-height: 110px; }
    .btn-submit {
      align-self: flex-start;
      background: var(--navy); color: var(--white);
      font-family: 'Outfit', sans-serif;
      font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 0.95rem 2rem; border: none; cursor: pointer;
      display: inline-flex; align-items: center; gap: 0.6rem;
      transition: background 0.2s;
    }
    .btn-submit:hover { background: var(--gold); color: var(--navy); }

    /* ══ FOOTER ══ */
    footer {
      background: #060f1e;
      color: rgba(255,255,255,0.4);
      padding: 4rem 8vw 2rem;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem; padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      margin-bottom: 2rem;
    }
    .footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 260px; margin-top: 1.25rem; }
    .footer-col h5 {
      font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--white); margin-bottom: 1.25rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-col a { font-size: 0.83rem; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; }
    .footer-col a:hover { color: var(--gold); }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      font-size: 0.75rem;
    }
    .footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
    .footer-bottom a:hover { color: var(--gold); }

    /* ══ REVEAL ANIMATIONS ══ */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.75s ease, transform 0.75s ease; }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-left { opacity: 0; transform: translateX(-24px); transition: opacity 0.75s ease, transform 0.75s ease; }
    .reveal-left.visible { opacity: 1; transform: none; }
    .reveal-right { opacity: 0; transform: translateX(24px); transition: opacity 0.75s ease, transform 0.75s ease; }
    .reveal-right.visible { opacity: 1; transform: none; }



    /* ══ WORDPRESS WHITESPACE FIXES ══ */
    /* WordPress sets margin-top on html element for admin bar */
    html { margin-top: 0 !important; }
    /* Override any WordPress inline body padding */
    body { margin-top: 0 !important; padding-top: 0 !important; }
    /* Nav fixed position already handles offset — no extra space needed */
    .hero { margin-top: 0 !important; }
    /* When admin bar is present, offset nav position only */
    body.admin-bar { padding-top: 0 !important; margin-top: 0 !important; }
    body.admin-bar .hero { margin-top: 0 !important; }

    /* ── Remove underline from phone & email links sitewide ── */
    a[href^="tel:"],
    a[href^="mailto:"] {
      text-decoration: none;
    }
    a[href^="tel:"]:hover,
    a[href^="mailto:"]:hover {
      text-decoration: none;
      color: var(--gold);
    }
    /* Nav phone specifically */
    .nav-phone {
      text-decoration: none;
    }
    a.nav-phone {
      text-decoration: none;
    }


    /* ══ NAV DROPDOWN ══ */
    .nav-has-dropdown { position: relative; }

    .nav-dropdown {
      display: block;
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
      position: absolute;
      top: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%) translateY(-4px);
      background: #0d1e38;
      border: 1px solid rgba(201,168,76,0.2);
      border-top: 2px solid var(--gold);
      min-width: 300px;
      list-style: none;
      z-index: 600;
      box-shadow: 0 16px 40px rgba(0,0,0,0.35);
      padding: 0.5rem 0;
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    }

    .nav-has-dropdown:hover .nav-dropdown,
    .nav-has-dropdown:focus-within .nav-dropdown {
      visibility: visible;
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    .nav-dropdown li a {
      display: block;
      padding: 0.75rem 1.25rem;
      text-decoration: none;
      transition: background 0.2s;
      letter-spacing: 0 !important;
      text-transform: none !important;
      color: rgba(255,255,255,0.7) !important;
      font-size: 0.875rem !important;
    }
    .nav-dropdown li a:hover {
      background: rgba(201,168,76,0.08);
      color: var(--white) !important;
    }
    .dropdown-label {
      display: block;
      font-weight: 600;
      color: var(--white);
      font-size: 0.85rem;
    }
    .dropdown-sub {
      display: block;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.4);
      margin-top: 0.15rem;
    }
    .dropdown-divider {
      border-top: 1px solid rgba(255,255,255,0.08);
      margin: 0.4rem 0;
      pointer-events: none;
    }

    /* Mobile: show dropdown as expanded list */
    @media (max-width: 768px) {
      .nav-dropdown {
        position: static !important;
        transform: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        border: none;
        border-top: 1px solid rgba(255,255,255,0.06);
        border-left: 2px solid var(--gold);
        background: rgba(201,168,76,0.05);
        box-shadow: none;
        margin: 0.5rem 0 0 1rem;
        min-width: unset;
        padding: 0;
      }
      .nav-dropdown li a { padding: 0.6rem 1rem; }
    }

    /* ══ RESPONSIVE ══ */
    @media (max-width: 1024px) {
      .hero-right-panel { display: none; }
      .service-grid { grid-template-columns: 1fr 1fr; }
      .process-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
      .process-steps::before { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      #about-intro, #partnership, #contact { grid-template-columns: 1fr; }
      .services-header { grid-template-columns: 1fr; }
      .service-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .cta-band { grid-template-columns: 1fr; }
      .pillars { grid-template-columns: 1fr; }
      .pillar { border-right: none; border-bottom: 1px solid rgba(10,22,40,0.15); }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
      .nav-links { display: none; }
      .hamburger { display: block; }
      .partner-visual { min-height: 280px; }
    }
  
    .nav-links a.active,
    .nav-links .current-menu-item > a,
    .nav-links .current_page_item > a {
      color: var(--white) !important;
      border-bottom: 1px solid var(--gold);
      padding-bottom: 2px;
    }

    /* ══ MOBILE COMPREHENSIVE FIXES ══ */
    @media (max-width: 768px) {
      /* About page grid */
      #about-intro { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
      .intro-card-main { aspect-ratio: unset !important; padding: 2rem !important; }
      .intro-stat-row { gap: 1rem !important; }

      /* Services hero tabs */
      section .section[style*="padding-bottom:0"] > div[style*="grid-template-columns:repeat(3"] {
        grid-template-columns: 1fr !important;
      }

      /* Services tabs strip */
      div[style*="grid-template-columns:repeat(3,1fr)"][style*="border-top"] {
        grid-template-columns: 1fr !important;
      }
      div[style*="grid-template-columns:repeat(3,1fr)"][style*="border-top"] a {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.08);
      }

      /* Service cards — single column on mobile */
      .service-grid { grid-template-columns: 1fr !important; }

      /* Company identifiers grid */
      div[style*="grid-template-columns:repeat(4,1fr)"] {
        grid-template-columns: repeat(2,1fr) !important;
      }

      /* Key differentiators grid */
      div[style*="grid-template-columns:repeat(3,1fr)"][style*="background:var(--border)"] {
        grid-template-columns: 1fr !important;
      }

      /* Partnerships + Work With Us grids */
      div[style*="grid-template-columns:1fr 1fr"][style*="gap:5rem"] {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
      }

      /* Partner benefit cards */
      div[style*="grid-template-columns:1fr 1fr"][style*="gap:1px"] {
        grid-template-columns: 1fr !important;
      }

      /* Contact section */
      #contact { grid-template-columns: 1fr !important; }
      .contact-info-panel { padding: 3rem 6vw !important; }
      .contact-form-panel { padding: 3rem 6vw !important; }

      /* CTA band */
      .cta-band { grid-template-columns: 1fr !important; gap: 1.5rem !important; text-align: center; }
      .cta-band .btn-gold { align-self: center; }

      /* Testimonials */
      .testimonials-grid { grid-template-columns: 1fr !important; }

      /* Pillars */
      .pillars { grid-template-columns: 1fr !important; }
      .pillar { border-right: none !important; border-bottom: 1px solid rgba(10,22,40,0.15); }

      /* Process steps */
      .process-steps { grid-template-columns: 1fr 1fr !important; gap: 2rem !important; }
      .process-steps::before { display: none !important; }

      /* Founder section */
      div[style*="grid-template-columns:1fr 1fr"][style*="max-width:1000px"] {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
      }

      /* Hero */
      .hero-right-panel { display: none !important; }
      .hero-content { padding: 60px 6vw 60px !important; }

      /* Tables */
      table { font-size: 0.78rem !important; }
      td, th { padding: 0.65rem 0.75rem !important; }

      /* Stats strip */
      .stats-strip { grid-template-columns: repeat(2,1fr) !important; }

      /* Footer */
      .footer-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
      .footer-bottom { flex-direction: column !important; gap: 1rem !important; text-align: center; }

      /* Services header */
      .services-header { grid-template-columns: 1fr !important; gap: 1.5rem !important; }

      /* Nav right — hide phone on small screens */
      .nav-phone { display: none !important; }

      /* General section padding */
      .section { padding: 4rem 6vw !important; }
    }

    @media (max-width: 480px) {
      .process-steps { grid-template-columns: 1fr !important; }
      .hero-title { font-size: 2.4rem !important; }
      .h2 { font-size: 2rem !important; }
      .cta-band { padding: 3rem 6vw !important; }
      .hero-badge { font-size: 0.62rem !important; }
      div[style*="grid-template-columns:repeat(4,1fr)"] {
        grid-template-columns: repeat(2,1fr) !important;
      }
    }

    /* ══ EXPANDABLE FULL OVERVIEW ══ */
    .full-overview-toggle:hover {
      background: var(--gold) !important;
      color: var(--navy) !important;
    }
    .full-overview-toggle[aria-expanded="true"] {
      background: var(--gold) !important;
      color: var(--navy) !important;
      border-bottom: none;
    }
    .full-overview-toggle[aria-expanded="true"] .toggle-icon {
      transform: rotate(180deg);
    }
    .full-overview-body {
      animation: slideDown 0.35s ease;
    }
    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-8px); }
      to   { opacity: 1; transform: none; }
    }

