*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    /* ══════════════════════════════════════
       COLOR PALETTE — MATCHED TO LOGO
       Navy  : #152A4E  (magnifying glass / text)
       Orange: #F0922A  (person icon inside glass)
       Green : #3CAA47  (checkmark in logo)
       Red   : #E53935  (bar chart accent)
       Pink  : #C2357D  (bar chart accent)
    ══════════════════════════════════════ */
    :root {
      --navy:        #152A4E;
      --navy-dark:   #0D1F3C;
      --navy-mid:    #1C3A66;
      --navy-light:  #214470;
      --orange:      #F0922A;
      --orange-light:#FFAA45;
      --orange-pale: rgba(240,146,42,0.12);
      --green:       #3CAA47;
      --green-light: #52C45E;
      --red-bar:     #E53935;
      --pink-bar:    #C2357D;
      --cream:       #FAF8F4;
      --warm:        #F2EBE0;
      --warm2:       #E5D9C8;
      --charcoal:    #1E1E2A;
      --mid:         #5A5A6E;
      --light:       #9898AA;
      --white:       #FFFFFF;
      --shadow-sm:   0 2px 12px rgba(21,42,78,0.09);
      --shadow:      0 6px 28px rgba(21,42,78,0.13);
      --shadow-lg:   0 16px 56px rgba(21,42,78,0.18);
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--charcoal); line-height: 1.65; overflow-x: hidden; }

    /* ─────────────── NAVBAR ─────────────── */
    nav {
      position: fixed; top: 4px; left: 0; right: 0; z-index: 999;
      background: #ffffff;
      height: 70px; display: flex; align-items: center; justify-content: space-between;
      padding: 0 5.5%; transition: height 0.3s, box-shadow 0.3s;
      border-bottom: 1px solid var(--warm2);
      box-shadow: 0 2px 20px rgba(21,42,78,0.08);
    }
    nav.scrolled { height: 62px; box-shadow: 0 4px 28px rgba(21,42,78,0.14); }

    /* Logo — full original colors on white nav */
    .nav-logo { display: flex; align-items: center; text-decoration: none; }
    .nav-logo img {
      height: 48px; width: auto;
      transition: opacity 0.25s;
    }
    .nav-logo img:hover { opacity: 0.85; }

    .nav-links { list-style: none; display: flex; align-items: center; gap: 26px; }
    .nav-links a {
      color: var(--navy); text-decoration: none;
      font-size: 13.5px; font-weight: 500; letter-spacing: 0.2px;
      position: relative; padding-bottom: 2px; transition: color 0.2s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 0; height: 2px; background: var(--orange);
      transition: width 0.25s ease; border-radius: 2px;
    }
    .nav-links a:hover { color: var(--orange); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      background: var(--orange) !important; color: #fff !important;
      padding: 9px 20px; border-radius: 6px; font-weight: 600 !important;
      box-shadow: 0 3px 14px rgba(240,146,42,0.35);
      transition: background 0.25s, transform 0.2s, box-shadow 0.25s !important;
    }
    .nav-cta:hover { background: var(--orange-light) !important; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(240,146,42,0.48) !important; }
    .nav-cta::after { display: none !important; }

    /* ─────────────── HERO ─────────────── */
    #hero {
      min-height: 100vh;
      background: linear-gradient(150deg, #060C1A 0%, #0D1F3C 35%, #152A4E 65%, #1C3A66 100%);
      display: flex; align-items: center;
      padding: 80px 5.5% 0; position: relative; overflow: hidden;
    }
    /* White bar — full width at very top of page */
    .hero-color-bar {
      position: fixed; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 40%, var(--green) 70%, var(--navy) 100%);
      z-index: 1001;
    }
    .hero-glow {
      position: absolute; width: 800px; height: 800px; border-radius: 50%;
      background: radial-gradient(circle, rgba(240,146,42,0.14) 0%, transparent 70%);
      top: -200px; right: -200px; pointer-events: none;
      animation: glowPulse 6s ease-in-out infinite;
    }
    .hero-glow-2 {
      position: absolute; width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(60,170,71,0.08) 0%, transparent 70%);
      bottom: -50px; left: 5%; pointer-events: none;
      animation: glowPulse 6s ease-in-out infinite 3s;
    }
    @keyframes glowPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.9)} }
    .hero-grid {
      position: absolute; inset: 0; pointer-events: none;
      background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 56px 56px;
    }
    /* Diagonal light slash across hero */
    .hero-slash {
      position: absolute; top: 0; right: 15%; bottom: 0; width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(240,146,42,0.15) 30%, rgba(240,146,42,0.15) 70%, transparent);
      pointer-events: none;
    }
    .hero-slash2 {
      position: absolute; top: 0; right: 30%; bottom: 0; width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.04) 30%, rgba(255,255,255,0.04) 70%, transparent);
      pointer-events: none;
    }
    .hero-inner {
      max-width: 1200px; margin: 0 auto; width: 100%;
      display: grid; grid-template-columns: 1.1fr 0.9fr;
      gap: 64px; align-items: center; position: relative; z-index: 1;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(240,146,42,0.14); border: 1px solid rgba(240,146,42,0.38);
      color: var(--orange-light); padding: 8px 18px; border-radius: 100px;
      font-size: 11.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
      margin-bottom: 28px;
      box-shadow: 0 0 20px rgba(240,146,42,0.1), inset 0 1px 0 rgba(255,255,255,0.07);
    }
    .badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); animation: blink 2.2s ease-in-out infinite; }
    @keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.75)} }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(38px, 4.8vw, 60px); font-weight: 700; color: #fff;
      line-height: 1.15; margin-bottom: 24px;
    }
    .hero-title .accent { color: var(--orange); }
    .hero-title .accent-green { color: var(--green-light); }
    .hero-title .underline {
      position: relative; display: inline-block;
    }
    .hero-title .underline::after {
      content: ''; position: absolute; bottom: 1px; left: 0; right: 0;
      height: 3px; background: var(--orange); border-radius: 2px; opacity: 0.65;
    }
    .hero-sub { font-size: 15.5px; color: rgba(255,255,255,0.66); line-height: 1.82; max-width: 490px; margin-bottom: 38px; }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-orange {
      background: linear-gradient(135deg, var(--orange) 0%, #d07820 100%);
      color: #fff; padding: 15px 36px; border-radius: 10px;
      font-weight: 700; font-size: 15px; text-decoration: none;
      display: inline-flex; align-items: center; gap: 9px;
      box-shadow: 0 6px 28px rgba(240,146,42,0.45), 0 2px 0 rgba(255,255,255,0.15) inset;
      transition: all 0.25s ease; letter-spacing: 0.2px;
      position: relative; overflow: hidden;
    }
    .btn-orange::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
      opacity: 0; transition: opacity 0.25s;
    }
    .btn-orange:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(240,146,42,0.6); }
    .btn-orange:hover::after { opacity: 1; }
    .btn-ghost {
      border: 1.5px solid rgba(255,255,255,0.32); color: #fff;
      padding: 14px 30px; border-radius: 8px; font-weight: 500; font-size: 14.5px;
      text-decoration: none; transition: all 0.25s;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.07); }

    .hero-divider { height: 1px; background: linear-gradient(90deg, rgba(240,146,42,0.4), rgba(255,255,255,0.08) 60%, transparent); margin: 44px 0 36px; max-width: 490px; }
    .hero-stats { display: flex; gap: 36px; }
    .hstat {
      padding: 14px 18px; border-radius: 12px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      min-width: 90px; text-align: center;
      transition: all 0.25s;
    }
    .hstat:hover { background: rgba(240,146,42,0.1); border-color: rgba(240,146,42,0.25); transform: translateY(-2px); }
    .hstat .num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--orange); line-height: 1; }
    .hstat .lbl { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.48); margin-top: 6px; letter-spacing: 0.5px; }

    /* Hero right card */
    .hero-right { position: relative; }
    .hero-card {
      background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 22px; padding: 34px; backdrop-filter: blur(10px);
    }
    .hero-photo-grid {
      display: grid; grid-template-columns: 1.18fr 0.92fr;
      gap: 14px; margin-bottom: 22px;
    }
    .hero-photo-main,
    .hero-photo-card {
      position: relative; overflow: hidden;
      border-radius: 18px; border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 10px 28px rgba(0,0,0,0.18);
      background: rgba(255,255,255,0.06);
    }
    .hero-photo-main { min-height: 270px; }
    .hero-photo-stack { display: grid; gap: 14px; }
    .hero-photo-card { min-height: 128px; }
    .hero-photo-grid img {
      width: 100%; height: 100%; display: block; object-fit: cover;
      transition: transform 0.45s ease;
    }
    .hero-photo-main::after,
    .hero-photo-card::after {
      content: ''; position: absolute; inset: auto 0 0 0; height: 55%;
      background: linear-gradient(180deg, transparent, rgba(6,12,26,0.56));
      pointer-events: none;
    }
    .hero-card:hover .hero-photo-grid img { transform: scale(1.04); }
    .hero-card-note {
      font-size: 12.5px; color: rgba(255,255,255,0.6);
      line-height: 1.7; margin: -2px 0 20px;
    }
    .hcard-header { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
    .hc-icon {
      width: 44px; height: 44px; border-radius: 11px;
      background: var(--orange-pale); border: 1px solid rgba(240,146,42,0.25);
      display: flex; align-items: center; justify-content: center; font-size: 20px;
    }
    .hcard-header h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: #fff; }
    .hcard-header p { font-size: 12px; color: rgba(255,255,255,0.48); margin-top: 2px; }
    .svc-list { display: flex; flex-direction: column; gap: 10px; }
    .svc-row {
      display: flex; align-items: center; gap: 13px;
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px; padding: 12px 14px; transition: all 0.25s; cursor: default;
    }
    .svc-row:hover { background: rgba(240,146,42,0.11); border-color: rgba(240,146,42,0.3); transform: translateX(4px); }
    .svc-row .sr-ico { font-size: 19px; flex-shrink: 0; }
    .svc-row .sr-name { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.86); }
    .svc-row .sr-arr { margin-left: auto; font-size: 12px; color: var(--orange); opacity: 0; transition: opacity 0.2s; }
    .svc-row:hover .sr-arr { opacity: 1; }
    .hero-trust {
      margin-top: 16px; padding: 12px 14px;
      background: rgba(60,170,71,0.1); border: 1px solid rgba(60,170,71,0.22);
      border-radius: 10px; display: flex; align-items: center; gap: 10px;
    }
    .hero-trust span { font-size: 12.5px; color: rgba(255,255,255,0.7); }
    .hero-trust strong { color: #6ddb7a; }
    .float-chip {
      position: absolute; background: #fff; border-radius: 11px;
      padding: 10px 15px; box-shadow: 0 8px 30px rgba(21,42,78,0.24);
      display: flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 600; color: var(--navy); white-space: nowrap;
    }
    .fc-a { top: 30px; right: -12px; z-index: 3; animation: floatY 3.5s ease-in-out infinite; }
    .fc-b { bottom: -20px; left: -14px; animation: floatY 3.5s ease-in-out infinite 1.75s; }
    @keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }

    /* ─────────────── SECTION COMMONS ─────────────── */
    section { padding: 100px 5.5%; }
    .si { max-width: 1200px; margin: 0 auto; }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 11.5px; font-weight: 700; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
    }
    .eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--orange); border-radius: 2px; }
    .stitle {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 3.5vw, 44px); font-weight: 700;
      color: var(--navy); line-height: 1.22; margin-bottom: 16px;
    }
    .ssub { font-size: 15.5px; color: var(--mid); line-height: 1.8; max-width: 580px; }

    /* ─────────────── LOGO COLOR ACCENT STRIPE ─────────────── */
    .color-strip {
      width: 100%; height: 8px;
      background: linear-gradient(90deg,
        var(--red-bar) 0%, var(--red-bar) 25%,
        var(--pink-bar) 25%, var(--pink-bar) 50%,
        var(--green) 50%, var(--green) 75%,
        var(--orange) 75%, var(--orange) 100%);
      border-radius: 6px; margin-bottom: 26px;
      max-width: 120px;
      box-shadow: 0 2px 12px rgba(240,146,42,0.35);
    }

    /* ─────────────── ABOUT ─────────────── */
    #about { background: var(--white); }
    .about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 80px; align-items: center; }
    .about-visual { position: relative; padding-bottom: 36px; }
    .about-visual-stack { display: grid; grid-template-columns: 1.04fr 0.8fr; gap: 18px; align-items: end; }
    .about-main-photo,
    .about-side-photo,
    .about-detail-card {
      border-radius: 22px; overflow: hidden;
      border: 1.5px solid var(--warm2);
      box-shadow: 0 18px 48px rgba(21,42,78,0.12);
      background: var(--white);
    }
    .about-main-photo { grid-row: span 2; min-height: 520px; }
    .about-side-photo { min-height: 230px; }
    .about-main-photo img,
    .about-side-photo img,
    .about-detail-card img {
      width: 100%; height: 100%; display: block; object-fit: cover;
    }
    .about-detail-card {
      background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 100%);
    }
    .about-detail-card img { height: 190px; }
    .about-detail-card .tagline {
      font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600;
      color: rgba(255,255,255,0.84); text-align: left;
      padding: 20px 22px 22px; line-height: 1.65;
    }
    .about-block {
      border-radius: 20px; overflow: hidden;
      background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 100%);
      aspect-ratio: 4/3; display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 18px;
    }
    /* Logo shown big inside about block — full color on white card */
    .about-block img {
      width: 65%; max-width: 280px;
      background: #fff; padding: 18px 28px;
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.28);
    }
    .about-block .tagline {
      font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600;
      color: rgba(255,255,255,0.82); text-align: center; padding: 0 28px; line-height: 1.6;
    }
    .about-yr-card {
      position: absolute; bottom: -24px; right: -24px;
      background: linear-gradient(135deg, var(--orange) 0%, #c07018 100%);
      border-radius: 18px; padding: 22px 28px;
      text-align: center; box-shadow: 0 14px 44px rgba(240,146,42,0.5);
      border: 2px solid rgba(255,255,255,0.15);
    }
    .about-yr-card .yr { font-family: 'Playfair Display', serif; font-size: 46px; font-weight: 700; color: #fff; line-height: 1; }
    .about-yr-card .yr-l { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.9); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 5px; }
    .about-para { font-size: 15.5px; color: var(--mid); line-height: 1.9; margin-top: 18px; }
    .about-vals { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
    .av {
      display: flex; align-items: flex-start; gap: 13px;
      padding: 16px 15px; border-radius: 14px; background: var(--cream);
      border: 1.5px solid var(--warm2); transition: all 0.3s;
      box-shadow: 0 1px 4px rgba(21,42,78,0.06);
    }
    .av:hover { border-color: rgba(240,146,42,0.35); background: var(--white); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(21,42,78,0.1); }
    .av-ico {
      width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
      background: var(--warm); border: 1.5px solid var(--warm2);
      display: flex; align-items: center; justify-content: center; font-size: 18px;
      transition: all 0.3s;
    }
    .av:hover .av-ico { background: var(--orange-pale); border-color: rgba(240,146,42,0.3); transform: scale(1.1); }
    .av h4 { font-size: 13.5px; font-weight: 700; color: var(--navy); }
    .av p { font-size: 12.5px; color: var(--mid); line-height: 1.6; margin-top: 4px; }

    /* ─────────────── SERVICES ─────────────── */
    #services {
      background: linear-gradient(180deg, var(--cream) 0%, #f5ede0 100%);
      position: relative;
    }
    #services::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--red-bar), var(--pink-bar), var(--green), var(--orange));
    }
    .shead { text-align: center; margin-bottom: 64px; }
    .shead .eyebrow { justify-content: center; }
    .shead .eyebrow::before { display: none; }
    .shead .ssub { margin: 0 auto; }
    .sgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
    .sc {
      background: var(--white); border-radius: 22px; padding: 36px 30px;
      border: 1.5px solid var(--warm2); position: relative; overflow: hidden;
      transition: all 0.35s ease; cursor: default;
      box-shadow: 0 2px 10px rgba(21,42,78,0.06);
    }
    .sc-bar {
      position: absolute; top: 0; left: 0; right: 0; height: 4px;
      transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
    }
    .sc:nth-child(1) .sc-bar { background: linear-gradient(90deg, var(--orange), var(--orange-light)); }
    .sc:nth-child(2) .sc-bar { background: linear-gradient(90deg, var(--green), var(--green-light)); }
    .sc:nth-child(3) .sc-bar { background: linear-gradient(90deg, var(--red-bar), #ef5350); }
    .sc:nth-child(4) .sc-bar { background: linear-gradient(90deg, var(--pink-bar), #d14e95); }
    .sc:nth-child(5) .sc-bar { background: linear-gradient(90deg, var(--navy-light), #2a5090); }
    .sc:nth-child(6) .sc-bar { background: linear-gradient(90deg, var(--orange), var(--green)); }
    .sc:hover { border-color: rgba(240,146,42,0.28); transform: translateY(-10px); box-shadow: 0 24px 60px rgba(21,42,78,0.16); }
    .sc:hover .sc-bar { transform: scaleX(1); }
    /* Subtle corner glow on hover */
    .sc::after {
      content: ''; position: absolute; bottom: -40px; right: -40px;
      width: 120px; height: 120px; border-radius: 50%;
      background: radial-gradient(circle, rgba(240,146,42,0.08) 0%, transparent 70%);
      opacity: 0; transition: opacity 0.4s;
    }
    .sc:hover::after { opacity: 1; }
    .sc-ico {
      width: 62px; height: 62px; border-radius: 16px;
      background: linear-gradient(135deg, var(--warm) 0%, var(--cream) 100%);
      border: 1.5px solid var(--warm2);
      display: flex; align-items: center; justify-content: center;
      font-size: 28px; margin-bottom: 22px;
      transition: all 0.3s; box-shadow: 0 2px 8px rgba(21,42,78,0.08);
    }
    .sc:hover .sc-ico { background: var(--orange-pale); border-color: rgba(240,146,42,0.3); transform: scale(1.1) rotate(-3deg); box-shadow: 0 6px 20px rgba(240,146,42,0.2); }
    .sc h3 { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
    .sc p { font-size: 14px; color: var(--mid); line-height: 1.75; }
    .sc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
    .sc-tag { background: var(--warm); color: var(--navy); font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 100px; border: 1px solid var(--warm2); letter-spacing: 0.3px; }
    .sc-lnk { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 700; color: var(--orange); text-decoration: none; margin-top: 18px; transition: gap 0.2s; letter-spacing: 0.2px; }
    .sc-lnk:hover { gap: 10px; }
    /* Four-pillar services layout */
    .sgrid.pillars { grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 1020px; margin: 0 auto; }
    .sc-sub { list-style: none; margin: 18px 0 0; display: flex; flex-direction: column; gap: 9px; }
    .sc-sub li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--mid); font-weight: 500; }
    .sc-sub li::before { content: '›'; color: var(--orange); font-weight: 800; font-size: 16px; line-height: 1; }
    .sc-kicker { font-size: 10.5px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--light); margin-bottom: 4px; }
    @media (max-width: 768px) { .sgrid.pillars { grid-template-columns: 1fr; } }

    /* ─────────────── WHY US ─────────────── */
    #why {
      background: linear-gradient(150deg, #060C1A 0%, #0D1F3C 40%, var(--navy) 100%);
      position: relative; overflow: hidden;
    }
    #why::before {
      content: ''; position: absolute; top: -100px; right: -100px;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(240,146,42,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    #why .stitle { color: #fff; }
    #why .ssub { color: rgba(255,255,255,0.62); }
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .why-steps { display: flex; flex-direction: column; gap: 22px; margin-top: 40px; }
    .ws {
      display: flex; gap: 18px;
      padding: 20px; border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.06);
      transition: all 0.3s;
    }
    .ws:hover { background: rgba(255,255,255,0.04); border-color: rgba(240,146,42,0.2); transform: translateX(4px); }
    .ws-n {
      width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
      background: rgba(240,146,42,0.15); border: 1px solid rgba(240,146,42,0.35);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--orange);
      box-shadow: 0 0 16px rgba(240,146,42,0.12);
    }
    .ws h4 { font-size: 15.5px; font-weight: 700; color: #fff; }
    .ws p { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-top: 5px; }
    .mboard { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .mc {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px; padding: 32px 24px; text-align: center; transition: all 0.35s;
      position: relative; overflow: hidden;
    }
    .mc::before {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--orange-light));
      transform: scaleX(0); transition: transform 0.35s;
    }
    .mc:hover { background: rgba(240,146,42,0.1); border-color: rgba(240,146,42,0.3); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
    .mc:hover::before { transform: scaleX(1); }
    .mc .mn { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700; color: var(--orange); line-height: 1; }
    .mc .mu { font-size: 24px; color: var(--orange-light); }
    .mc .ml { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 10px; font-weight: 600; letter-spacing: 0.3px; }

    /* ─────────────── TEAM ─────────────── */
    #team { background: var(--white); }
    .thead { text-align: center; margin-bottom: 64px; }
    .thead .eyebrow { justify-content: center; }
    .thead .eyebrow::before { display: none; }
    .thead .ssub { margin: 0 auto; }
    .tgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
    /* Centre the last two cards when 5 advisors fill 2 rows */
    .tgrid .tc:nth-child(4) { grid-column: 1; }
    .tgrid .tc:nth-child(4),
    .tgrid .tc:nth-child(5) { margin-left: auto; margin-right: auto; max-width: 100%; }
    @media (min-width: 1025px) {
      .tgrid { grid-template-columns: repeat(6, 1fr); }
      .tgrid .tc { grid-column: span 2; }
      .tgrid .tc:nth-child(4) { grid-column: 2 / span 2; }
      .tgrid .tc:nth-child(5) { grid-column: 4 / span 2; }
    }
    .tc {
      background: var(--white); border-radius: 24px;
      border: 1.5px solid var(--warm2); overflow: hidden; transition: all 0.35s;
      box-shadow: 0 2px 14px rgba(21,42,78,0.07);
    }
    .tc:hover { transform: translateY(-10px); box-shadow: 0 28px 64px rgba(21,42,78,0.16); border-color: rgba(240,146,42,0.35); }
    .tc-av {
      aspect-ratio: 4/3; width: 100%;
      background: linear-gradient(145deg, #080F1E, var(--navy-dark) 50%, var(--navy));
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
      position: relative; overflow: hidden;
    }
    .tc-av::before {
      content: ''; position: absolute; top: -50px; right: -50px;
      width: 200px; height: 200px; border-radius: 50%;
      background: radial-gradient(circle, rgba(240,146,42,0.12) 0%, transparent 70%);
    }
    .tc-av .av-icon { font-size: 72px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)); }
    /* Multicolor bar strip — mirrors logo bar chart */
    .tc-av-strip { display: flex; gap: 5px; }
    .tc-av-strip span { width: 28px; height: 5px; border-radius: 3px; }
    .s1 { background: var(--red-bar); }
    .s2 { background: var(--pink-bar); }
    .s3 { background: var(--green); }
    .s4 { background: var(--orange); }
    .tc-body { padding: 26px 26px 28px; }
    .tc-body h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--navy); }
    .tc-role { font-size: 11.5px; font-weight: 700; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }
    .tc-quals { margin-top: 16px; padding-top: 16px; border-top: 1.5px solid var(--warm2); }
    .tc-quals h5, .tc-spec h5 { font-size: 10px; font-weight: 800; color: var(--light); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 9px; }
    .tc-ql { display: flex; flex-wrap: wrap; gap: 6px; }
    .tq {
      background: var(--cream); color: var(--navy);
      font-size: 11px; font-weight: 700; padding: 5px 12px;
      border-radius: 100px; border: 1.5px solid var(--warm2);
      transition: all 0.2s;
    }
    .tc:hover .tq { border-color: rgba(240,146,42,0.25); background: var(--warm); }
    .tc-spec { margin-top: 16px; }
    .tc-sp-list { display: flex; flex-direction: column; gap: 6px; }
    .tc-sp-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--mid); }
    .tc-sp-item::before { content: '›'; color: var(--orange); font-weight: 800; font-size: 16px; line-height: 1; }

    /* ─────────────── TEAM & NETWORK ─────────────── */
    .tn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-bottom: 26px; }
    .tn-panel {
      background: var(--cream); border: 1.5px solid var(--warm2); border-radius: 22px;
      padding: 36px 34px; position: relative; overflow: hidden; transition: all 0.35s;
      box-shadow: 0 2px 10px rgba(21,42,78,0.06);
    }
    .tn-panel::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
    .tn-panel:nth-child(1)::before { background: linear-gradient(90deg, var(--orange), var(--orange-light)); }
    .tn-panel:nth-child(2)::before { background: linear-gradient(90deg, var(--green), var(--green-light)); }
    .tn-panel:hover { transform: translateY(-6px); box-shadow: 0 22px 52px rgba(21,42,78,0.14); border-color: rgba(240,146,42,0.28); }
    .tn-badge {
      display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 2px;
      text-transform: uppercase; color: var(--orange); background: var(--orange-pale);
      border: 1px solid rgba(240,146,42,0.25); padding: 5px 13px; border-radius: 100px; margin-bottom: 16px;
    }
    .tn-panel:nth-child(2) .tn-badge { color: var(--green); background: rgba(60,170,71,0.1); border-color: rgba(60,170,71,0.25); }
    .tn-panel h3 { font-family: 'Playfair Display', serif; font-size: 23px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
    .tn-panel > p { font-size: 14px; color: var(--mid); line-height: 1.75; margin-bottom: 22px; }
    .tn-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
    .tn-list li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: var(--navy); }
    .tn-list li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
    .tn-panel:nth-child(1) .tn-list li::before { background: var(--orange); }
    .tn-panel:nth-child(2) .tn-list li::before { background: var(--green); }
    .tn-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .tn-stat {
      text-align: center; padding: 26px 18px; background: var(--white);
      border: 1.5px solid var(--warm2); border-radius: 18px;
      box-shadow: 0 2px 10px rgba(21,42,78,0.06); transition: all 0.3s;
    }
    .tn-stat:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(21,42,78,0.12); border-color: rgba(240,146,42,0.28); }
    .tn-stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--navy); line-height: 1.2; }
    .tn-stat span { display: block; margin-top: 8px; font-size: 12.5px; font-weight: 500; color: var(--mid); line-height: 1.5; }
    @media (max-width: 768px) {
      .tn-grid { grid-template-columns: 1fr; }
      .tn-stats { grid-template-columns: 1fr 1fr; }
      .tn-list { grid-template-columns: 1fr 1fr; }
    }

    /* ─────────────── TESTIMONIALS ─────────────── */
    /* Gallery */
    #gallery { background: var(--white); position: relative; }
    #gallery::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--navy), var(--orange), var(--green), var(--pink-bar));
    }
    .gallery-head {
      display: flex; align-items: flex-end; justify-content: space-between;
      gap: 26px; margin-bottom: 48px;
    }
    .gallery-note {
      max-width: 430px; font-size: 14px; color: var(--mid); line-height: 1.8;
    }
    .gallery-grid {
      display: grid; grid-template-columns: repeat(4,1fr);
      grid-auto-rows: 220px; gap: 18px;
    }
    .gallery-card {
      position: relative; border: none; padding: 0; appearance: none;
      background: transparent; border-radius: 22px; overflow: hidden;
      cursor: pointer; box-shadow: 0 10px 28px rgba(21,42,78,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .gallery-card img {
      width: 100%; height: 100%; display: block; object-fit: cover;
      transition: transform 0.45s ease;
    }
    .gallery-card::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(6,12,26,0.02) 15%, rgba(6,12,26,0.72) 100%);
      z-index: 1;
    }
    .gallery-card:hover { transform: translateY(-5px); box-shadow: 0 22px 52px rgba(21,42,78,0.16); }
    .gallery-card:hover img { transform: scale(1.06); }
    .gallery-card-wide { grid-column: span 2; }
    .gallery-card-tall { grid-row: span 2; }
    .gallery-caption {
      position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2;
      font-size: 13px; font-weight: 700; color: #fff; text-align: left;
    }
    .gallery-lightbox {
      position: fixed; inset: 0; z-index: 1002;
      display: none; align-items: center; justify-content: center;
      padding: 30px; background: rgba(6,12,26,0.9);
    }
    .gallery-lightbox.open { display: flex; }
    .gallery-lightbox-close {
      position: absolute; top: 20px; right: 24px;
      width: 44px; height: 44px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.18);
      background: rgba(255,255,255,0.08); color: #fff;
      font-size: 28px; line-height: 1; cursor: pointer;
    }
    .gallery-lightbox-figure { max-width: min(1080px, 100%); max-height: 100%; }
    .gallery-lightbox-figure img {
      max-width: 100%; max-height: 80vh; display: block;
      border-radius: 18px; box-shadow: 0 24px 60px rgba(0,0,0,0.35);
    }
    .gallery-lightbox-figure figcaption {
      color: #fff; font-size: 14px; text-align: center; margin-top: 14px;
    }

    #testimonials {
      background: linear-gradient(180deg, var(--cream) 0%, #f5ede0 100%);
      position: relative;
    }
    #testimonials::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--orange), var(--green), var(--pink-bar), var(--orange));
    }
    .testi-head { text-align: center; margin-bottom: 60px; }
    .testi-head .eyebrow { justify-content: center; }
    .testi-head .eyebrow::before { display: none; }
    .testi-head .ssub { margin: 0 auto; }
    .tgrid-t { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
    .tcard {
      background: var(--white); border-radius: 22px; padding: 34px 30px;
      border: 1.5px solid var(--warm2); position: relative; overflow: hidden;
      box-shadow: 0 2px 12px rgba(21,42,78,0.07); transition: all 0.35s;
    }
    .tcard:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(21,42,78,0.14); border-color: rgba(240,146,42,0.3); }
    .tcard::before {
      content: '\201C'; position: absolute; top: 10px; right: 22px;
      font-family: 'Playfair Display', serif; font-size: 80px; color: var(--orange);
      opacity: 0.12; line-height: 1; pointer-events: none;
    }
    .tcard-stars { display: flex; gap: 3px; margin-bottom: 16px; }
    .tcard-stars span { color: var(--orange); font-size: 16px; }
    .tcard-text { font-size: 14.5px; color: var(--mid); line-height: 1.82; font-style: italic; margin-bottom: 24px; }
    .tcard-author { display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 1.5px solid var(--warm2); }
    .tcard-av {
      width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; font-weight: 800; color: #fff;
      font-family: 'Playfair Display', serif;
    }
    .tcard-name { font-size: 14px; font-weight: 700; color: var(--navy); }
    .tcard-role { font-size: 12px; color: var(--light); margin-top: 2px; }
    .tcard-tag { margin-left: auto; font-size: 10.5px; font-weight: 700; color: var(--orange); background: var(--orange-pale); padding: 4px 10px; border-radius: 100px; border: 1px solid rgba(240,146,42,0.2); white-space: nowrap; }

    /* ─────────────── FAQ ─────────────── */
    #faq { background: var(--cream); }
    .faq-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: start; }
    .faq-list { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      background: var(--white); border-radius: 16px;
      border: 1.5px solid var(--warm2); overflow: hidden;
      cursor: pointer; transition: all 0.3s;
      box-shadow: 0 2px 8px rgba(21,42,78,0.05);
    }
    .faq-item:hover, .faq-item.open { border-color: rgba(240,146,42,0.35); box-shadow: 0 8px 28px rgba(21,42,78,0.12); }
    .faq-item.open { background: linear-gradient(135deg, var(--white) 0%, #fffaf4 100%); }
    .faq-q {
      padding: 19px 22px; display: flex; align-items: center; justify-content: space-between; gap: 14px;
      font-size: 14.5px; font-weight: 700; color: var(--navy);
    }
    .faq-arr {
      width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
      background: var(--warm); border: 1.5px solid var(--warm2);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; color: var(--orange); transition: all 0.3s;
    }
    .faq-item.open .faq-arr { transform: rotate(45deg); background: var(--orange-pale); border-color: rgba(240,146,42,0.3); }
    .faq-a {
      padding: 0 22px; max-height: 0; overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s;
      font-size: 14px; color: var(--mid); line-height: 1.8;
      border-top: 1px solid transparent; transition: all 0.4s ease;
    }
    .faq-item.open .faq-a { max-height: 200px; padding: 0 22px 20px; border-color: var(--warm2); }
    .faq-cta {
      background: linear-gradient(160deg, #080F1E 0%, #0D1F3C 50%, var(--navy) 100%);
      border-radius: 26px; padding: 44px 40px; text-align: center;
      position: sticky; top: 90px;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
    .faq-cta img {
      width: 72%; max-width: 230px; margin-bottom: 24px;
      background: #fff; padding: 14px 26px;
      border-radius: 14px;
      box-shadow: 0 6px 28px rgba(0,0,0,0.22);
      display: block; margin-left: auto; margin-right: auto;
    }
    .faq-cta h3 { font-family: 'Playfair Display', serif; font-size: 25px; font-weight: 700; color: #fff; margin-bottom: 10px; }
    .faq-cta p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 28px; }
    .fci-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
    .fci {
      display: flex; align-items: center; gap: 14px;
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 14px; padding: 14px 16px; text-decoration: none; transition: all 0.25s;
    }
    .fci:hover { background: rgba(240,146,42,0.13); border-color: rgba(240,146,42,0.3); transform: translateX(4px); }
    .fci .fi-ico { font-size: 22px; flex-shrink: 0; }
    .fci .fi-lbl { font-size: 10px; font-weight: 800; color: var(--orange); letter-spacing: 1.8px; text-transform: uppercase; }
    .fci .fi-val { font-size: 14px; font-weight: 600; color: #fff; margin-top: 2px; }

    /* ─────────────── BLOG ─────────────── */
    #blog { background: var(--white); }
    .blog-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 50px; }
    .blog-all {
      font-size: 13.5px; font-weight: 700; color: var(--orange); text-decoration: none;
      display: flex; align-items: center; gap: 6px; transition: all 0.2s;
      padding: 9px 18px; border: 1.5px solid rgba(240,146,42,0.3); border-radius: 8px;
    }
    .blog-all:hover { gap: 10px; background: var(--orange-pale); }
    .bgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
    .bc {
      background: var(--cream); border-radius: 20px;
      border: 1.5px solid var(--warm2); overflow: hidden; transition: all 0.35s;
      box-shadow: 0 2px 10px rgba(21,42,78,0.06);
    }
    .bc:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(21,42,78,0.14); border-color: rgba(240,146,42,0.28); }
    .bc-img {
      width: 100%; aspect-ratio: 16/9;
      background: linear-gradient(145deg, #060C1A, var(--navy-dark) 60%, var(--navy));
      display: flex; align-items: center; justify-content: center; font-size: 52px;
      position: relative; overflow: hidden;
    }
    .bc-img::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--red-bar), var(--pink-bar), var(--green), var(--orange));
    }
    .bc-body { padding: 22px 22px 26px; }
    .bc-cat {
      display: inline-block; font-size: 10.5px; font-weight: 800;
      letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange);
      background: var(--orange-pale); padding: 4px 10px; border-radius: 100px;
      margin-bottom: 12px; border: 1px solid rgba(240,146,42,0.2);
    }
    .bc-body h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1.45; }
    .bc-date { font-size: 12px; color: var(--light); margin-top: 12px; display: flex; align-items: center; gap: 5px; }
    .bc-date::before { content: '📅'; font-size: 11px; }
    .bc-read {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 700; color: var(--orange);
      text-decoration: none; margin-top: 14px; transition: gap 0.2s;
      border-bottom: 1.5px solid rgba(240,146,42,0.3); padding-bottom: 1px;
    }
    .bc-read:hover { gap: 10px; border-color: var(--orange); }

    /* ─────────────── CONTACT ─────────────── */
    #contact {
      background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
      position: relative;
    }
    #contact::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--navy), var(--navy-light), var(--orange));
    }
    .cgrid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; }
    .ci-list { display: flex; flex-direction: column; gap: 18px; margin-top: 34px; }
    .ci {
      display: flex; align-items: flex-start; gap: 15px;
      padding: 16px; border-radius: 14px; background: var(--white);
      border: 1.5px solid var(--warm2); transition: all 0.25s;
      box-shadow: 0 1px 4px rgba(21,42,78,0.05);
    }
    .ci:hover { border-color: rgba(240,146,42,0.3); transform: translateX(4px); box-shadow: 0 4px 18px rgba(21,42,78,0.1); }
    .ci-ico {
      width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px;
      background: var(--cream); border: 1.5px solid var(--warm2);
      display: flex; align-items: center; justify-content: center; font-size: 20px;
    }
    .ci-body h4 { font-size: 10.5px; font-weight: 800; color: var(--light); letter-spacing: 2px; text-transform: uppercase; }
    .ci-body p, .ci-body a { font-size: 14.5px; font-weight: 600; color: var(--navy); margin-top: 4px; text-decoration: none; display: block; }
    .ci-body a:hover { color: var(--orange); }
    .ci-body .sm { font-size: 12.5px; color: var(--mid); font-weight: 400; }
    .cform {
      background: var(--white); border-radius: 26px; padding: 46px;
      border: 1.5px solid var(--warm2);
      box-shadow: 0 8px 40px rgba(21,42,78,0.1);
      position: relative; overflow: hidden;
    }
    .cform::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
      background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--green));
    }
    .cform h3 { font-family: 'Playfair Display', serif; font-size: 27px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
    .cform .csub { font-size: 14px; color: var(--mid); margin-bottom: 30px; }
    .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .cfg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
    .cfg label { font-size: 12.5px; font-weight: 700; color: var(--navy); letter-spacing: 0.2px; }
    .cfg input, .cfg select, .cfg textarea {
      width: 100%; padding: 13px 15px; border: 1.5px solid var(--warm2); border-radius: 10px;
      font-family: 'Inter', sans-serif; font-size: 14px; color: var(--charcoal);
      background: var(--cream); outline: none; transition: all 0.25s;
    }
    .cfg input:focus, .cfg select:focus, .cfg textarea:focus {
      border-color: var(--orange); background: var(--white);
      box-shadow: 0 0 0 4px rgba(240,146,42,0.1);
    }
    .cfg textarea { resize: vertical; min-height: 112px; }
    .cf-btn {
      width: 100%; padding: 16px; border: none; border-radius: 12px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      color: #fff; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700;
      cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 9px;
      margin-top: 6px; transition: all 0.3s; letter-spacing: 0.2px;
      box-shadow: 0 4px 20px rgba(21,42,78,0.25);
    }
    .cf-btn:hover { background: linear-gradient(135deg, var(--navy-light) 0%, #2a6298 100%); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(21,42,78,0.35); }

    /* ─────────────── CTA BANNER ─────────────── */
    #cta {
      background: linear-gradient(135deg, #b86a10 0%, var(--orange) 50%, #e8a030 100%);
      padding: 90px 5.5%; text-align: center; position: relative; overflow: hidden;
    }
    #cta::before {
      content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
      width: 600px; height: 300px; border-radius: 50%;
      background: rgba(255,255,255,0.07); pointer-events: none;
    }
    #cta::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 6px;
      background: linear-gradient(90deg, var(--red-bar), var(--pink-bar), var(--green), var(--navy));
    }
    .cta-strip { width: 80px; height: 4px; background: rgba(255,255,255,0.45); border-radius: 3px; margin: 0 auto 32px; }
    #cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px,3.8vw,48px); font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.22; position: relative; }
    #cta p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 40px; position: relative; }
    .cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }
    .btn-white {
      background: #fff; color: var(--orange); padding: 16px 40px; border-radius: 10px;
      font-weight: 800; font-size: 15px; text-decoration: none;
      box-shadow: 0 6px 28px rgba(0,0,0,0.2); transition: all 0.25s;
      letter-spacing: 0.2px;
    }
    .btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
    .btn-out-w {
      border: 2px solid rgba(255,255,255,0.7); color: #fff; padding: 16px 36px;
      border-radius: 10px; font-weight: 700; font-size: 15px; text-decoration: none;
      transition: all 0.25s; backdrop-filter: blur(4px);
    }
    .btn-out-w:hover { border-color: #fff; background: rgba(255,255,255,0.15); transform: translateY(-2px); }

    /* ─────────────── FOOTER ─────────────── */
    footer {
      background: linear-gradient(180deg, #050B18 0%, #060D1A 100%);
      padding: 72px 5.5% 32px; position: relative;
    }
    footer::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(240,146,42,0.4), transparent);
    }
    .fgrid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px;
      padding-bottom: 54px; border-bottom: 1px solid rgba(255,255,255,0.07);
      max-width: 1200px; margin: 0 auto;
    }
    .f-brand { }
    .f-logo-row { margin-bottom: 18px; }
    .f-logo-row img {
      height: 54px; width: auto;
      background: #fff; padding: 8px 18px;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.28);
    }
    .f-brand p { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 280px; }
    .f-social { display: flex; gap: 10px; margin-top: 20px; }
    .fsb {
      width: 38px; height: 38px; border-radius: 10px;
      background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.08);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none; font-size: 15px; transition: all 0.25s;
    }
    .fsb:hover { background: rgba(240,146,42,0.22); border-color: rgba(240,146,42,0.3); transform: translateY(-2px); }
    /* Footer color bar */
    .f-color-bar { width: 100%; height: 7px; background: linear-gradient(90deg, var(--red-bar) 0%, var(--pink-bar) 33%, var(--green) 66%, var(--orange) 100%); border-radius: 6px; margin-top: 20px; box-shadow: 0 2px 10px rgba(240,146,42,0.3); }
    .fcol h4 { font-size: 11.5px; font-weight: 800; color: #fff; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
    .fcol h4::after { content: ''; display: block; width: 24px; height: 2px; background: var(--orange); border-radius: 2px; margin-top: 8px; }
    .fcol ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
    .fcol ul a {
      color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13.5px;
      transition: all 0.2s; display: flex; align-items: center; gap: 7px;
    }
    .fcol ul a::before { content: '›'; color: var(--orange); font-weight: 800; opacity: 0; transition: opacity 0.2s, transform 0.2s; transform: translateX(-5px); }
    .fcol ul a:hover { color: rgba(255,255,255,0.9); padding-left: 4px; }
    .fcol ul a:hover::before { opacity: 1; transform: translateX(0); }
    .fbot {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 28px; max-width: 1200px; margin: 0 auto;
      font-size: 12.5px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 10px;
    }
    .fbot a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
    .fbot a:hover { color: var(--orange); }
    .fbot-links { display: flex; gap: 24px; }

    /* ─────────────── SECTION DIVIDER ─────────────── */
    .logo-divider {
      height: 8px;
      background: linear-gradient(90deg,
        var(--red-bar) 0%, var(--red-bar) 25%,
        var(--pink-bar) 25%, var(--pink-bar) 50%,
        var(--green) 50%, var(--green) 75%,
        var(--orange) 75%, var(--orange) 100%);
    }

    /* ─────────────── ANIMATIONS ─────────────── */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: 0.12s; }
    .d2 { transition-delay: 0.24s; }
    .d3 { transition-delay: 0.36s; }

    /* Eyebrow pulse on visible */
    .reveal.visible .eyebrow { animation: eyebrowIn 0.5s ease forwards; }
    @keyframes eyebrowIn { from { opacity:0; transform: translateX(-10px); } to { opacity:1; transform: translateX(0); } }

    /* ─────────────── RESPONSIVE ─────────────── */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-right { display: block; max-width: 760px; margin: 0 auto; }
      .sgrid, .tgrid, .bgrid, .tgrid-t, .gallery-grid { grid-template-columns: repeat(2,1fr); }
      .fgrid { grid-template-columns: 1fr 1fr; }
      .about-grid, .why-grid, .cgrid, .faq-grid { grid-template-columns: 1fr; gap: 44px; }
      .about-main-photo { min-height: 420px; }
    }
    @media (max-width: 768px) {
      section { padding: 68px 5%; }
      nav { padding: 0 5%; }
      .nav-links { display: none; }
      .sgrid, .tgrid, .bgrid, .tgrid-t, .gallery-grid { grid-template-columns: 1fr; }
      .mboard { grid-template-columns: 1fr 1fr; }
      .about-vals, .cf-row { grid-template-columns: 1fr; }
      .fgrid { grid-template-columns: 1fr; gap: 28px; }
      .hero-stats { flex-wrap: wrap; gap: 24px; }
      .cform { padding: 26px; }
      .hero-card { padding: 24px; }
      .hero-photo-grid,
      .about-visual-stack { grid-template-columns: 1fr; }
      .hero-photo-main,
      .about-main-photo,
      .about-side-photo { min-height: 260px; }
      .hero-photo-stack { grid-template-columns: 1fr 1fr; }
      .gallery-head { flex-direction: column; align-items: flex-start; }
      .gallery-grid { grid-auto-rows: auto; }
      .gallery-card,
      .gallery-card-wide,
      .gallery-card-tall { grid-column: auto; grid-row: auto; min-height: 260px; }
    }