
  :root {
    --white: #ffffff;
    --paper: #f7f8fb;
    --mist: #eef2f8;
    --navy: #0a2540;
    --navy-2: #16365e;
    --steel: #5b7fa8;
    --muted: #6b7a92;
    --line: rgba(10, 37, 64, 0.12);
    --line-soft: rgba(10, 37, 64, 0.08);
    --gold: #b8956a;
    --serif: 'Cormorant Garamond', 'Times New Roman', serif;
    --sans: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    color: var(--navy);
    background: var(--white);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  img, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  ul { list-style: none; }
  em { font-style: italic; }

  .cap {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--steel);
  }
  .cap-gold { color: var(--gold); }
  .display { font-family: var(--serif); font-weight: 300; letter-spacing: -0.02em; line-height: 1; }
  .display em { font-style: italic; color: var(--steel); }
  .container { max-width: 1440px; margin: 0 auto; padding: 0 48px; }

  /* ===== NAV ===== */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 22px 48px;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 0.5px solid var(--line-soft);
    transition: all 0.4s ease;
  }
  .nav.transparent {
    background: transparent;
    border-bottom: 0.5px solid rgba(255,255,255,0.18);
  }
  .nav.transparent .nav-link, .nav.transparent .logo, .nav.transparent .nav-cta { color: #fff; }
  .nav.transparent .gold-line { background: rgba(255,255,255,0.4); }
  .logo {
    font-family: var(--serif);
    font-style: italic;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: -0.02em;
  }
  .logo .dot { color: var(--gold); }
  .nav-links {
    display: flex; gap: 36px;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  }
  .nav-link { transition: opacity 0.3s; opacity: 0.7; cursor: pointer; }
  .nav-link.active, .nav-link:hover { opacity: 1; }
  .nav-cta {
    display: flex; align-items: center; gap: 10px;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  }
  .gold-line { width: 24px; height: 1px; background: var(--gold); }

  .menu-toggle { display: none; }

  /* ===== ROUTING ===== */
  main { min-height: 100vh; }
  section[data-route] { display: none; }
  section[data-route].active { display: block; }

  /* ===== HERO (HOME) ===== */
  .hero {
    position: relative;
    height: 100vh; min-height: 720px;
    overflow: hidden;
    display: flex; align-items: flex-end;
    color: #fff;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    background-image: url('images/extracted_img_1.png');
    transform: scale(1.05);
    animation: heroZoom 18s ease-out forwards;
  }
  @keyframes heroZoom { to { transform: scale(1); } }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,37,64,0.45) 0%, rgba(10,37,64,0.25) 40%, rgba(10,37,64,0.7) 100%);
  }
  .hero-content {
    position: relative;
    width: 100%;
    padding: 0 48px 80px;
    display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end;
  }
  .hero-tagline {
    font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
    margin-bottom: 36px;
    opacity: 0; animation: fadeUp 1.2s 0.3s ease forwards;
  }
  .hero-tagline::before {
    content: ''; display: inline-block;
    width: 36px; height: 1px; background: var(--gold);
    vertical-align: middle; margin-right: 14px;
  }
  .hero-title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(72px, 13vw, 188px);
    line-height: 0.88;
    letter-spacing: -0.04em;
    margin-bottom: 36px;
    opacity: 0; animation: fadeUp 1.4s 0.5s ease forwards;
  }
  .hero-title em { font-style: italic; color: rgba(255,255,255,0.78); font-weight: 300; }
  .hero-sub {
    max-width: 560px;
    font-size: 16px; line-height: 1.75;
    opacity: 0; animation: fadeUp 1.4s 0.9s ease forwards;
    color: rgba(255,255,255,0.88);
    margin-bottom: 16px;
  }
  .hero-sub strong { font-weight: 500; color: #fff; }
  .hero-sub2 {
    max-width: 560px;
    font-size: 14px; line-height: 1.7;
    color: rgba(255,255,255,0.72);
    margin-bottom: 32px;
    opacity: 0; animation: fadeUp 1.4s 1s ease forwards;
  }
  .hero-cta-row {
    display: flex; gap: 18px; align-items: center;
    opacity: 0; animation: fadeUp 1.4s 1.1s ease forwards;
  }
  .btn-primary {
    background: #fff; color: var(--navy);
    padding: 16px 40px;
    font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
    transition: all 0.3s;
    font-weight: 400;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold); color: #fff; }
  .btn-ghost {
    color: #fff;
    padding: 16px 0;
    font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    transition: border-color 0.3s;
    display: inline-block;
  }
  .btn-ghost:hover { border-color: var(--gold); }
  .hero-meta {
    writing-mode: vertical-rl; transform: rotate(180deg);
    font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
    opacity: 0.65;
    align-self: end;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ===== INTRO ===== */
  .intro {
    padding: 120px 48px 100px;
    text-align: center;
    background: var(--paper);
  }
  .intro-cap { margin-bottom: 28px; display: inline-block; }
  .intro-text {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(22px, 2.6vw, 32px);
    line-height: 1.5;
    letter-spacing: -0.01em;
    max-width: 1000px;
    margin: 0 auto;
    color: var(--navy);
  }
  .intro-text em { color: var(--gold); font-style: italic; }
  .intro-divider {
    width: 1px; height: 56px; background: var(--gold);
    margin: 48px auto 0;
  }

  /* ===== STRATEGY (ABOUT US) ===== */
  .strategy {
    padding: 140px 48px;
    background: #fff;
  }
  .strategy-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    max-width: 1440px;
    margin: 0 auto;
    align-items: center;
  }
  .strategy-img-wrap { position: relative; }
  .strategy-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }
  .strategy-img-frame {
    position: absolute;
    inset: 24px -24px -24px 24px;
    border: 1px solid var(--navy);
    z-index: -1;
  }
  .strategy-cap { display: block; margin-bottom: 24px; }
  .strategy-h {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(38px, 4.5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
  }
  .strategy p {
    font-size: 16px; line-height: 1.85;
    color: var(--muted);
    margin-bottom: 18px;
  }
  .strategy p strong { color: var(--navy); font-weight: 400; }
  .quote-block {
    margin: 32px 0 0;
    padding: 22px 26px;
    border-left: 2px solid var(--gold);
    background: var(--paper);
  }
  .quote-block p {
    font-family: var(--serif); font-style: italic;
    font-size: 20px; line-height: 1.5;
    color: var(--navy);
    margin: 0 0 8px;
  }
  .quote-block cite {
    font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
    font-style: normal;
    color: var(--steel);
  }

  /* ===== NEW VISION SECTION ===== */
  .vision {
    padding: 140px 48px;
    background-image: linear-gradient(135deg, rgba(10,37,64,0.78) 0%, rgba(22,54,94,0.72) 100%), url('images/extracted_img_2.png');
    background-size: cover; background-position: center; background-attachment: fixed;
    color: #fff;
  }
  .vision-inner { max-width: 1240px; margin: 0 auto; }
  .vision-cap { display: block; margin-bottom: 24px; color: var(--gold); }
  .vision-h {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
  }
  .vision p {
    font-size: 16px; line-height: 1.85;
    color: rgba(255,255,255,0.86);
    margin-bottom: 18px;
    max-width: 880px;
  }
  .vision .quote-block {
    background: rgba(255,255,255,0.06);
    border-left-color: var(--gold);
    margin: 28px 0;
    max-width: 880px;
  }
  .vision .quote-block p { color: #fff; }
  .vision .quote-block cite { color: rgba(255,255,255,0.6); }

  /* ===== SERVICES (HOME) ===== */
  .services-home {
    padding: 140px 48px;
    background: #fff;
  }
  .services-home-inner { max-width: 1440px; margin: 0 auto; }
  .services-home-head {
    text-align: center;
    margin-bottom: 80px;
  }
  .services-home-head h2 {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(40px, 4.5vw, 60px);
    line-height: 1; letter-spacing: -0.02em;
    margin-top: 18px;
  }
  .services-home-head h2 em { font-style: italic; color: var(--steel); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .service-card {
    padding: 40px 32px 36px;
    background: var(--paper);
    border: 0.5px solid var(--line);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .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.5s ease;
  }
  .service-card:hover { background: #fff; border-color: var(--steel); transform: translateY(-4px); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card .num {
    font-family: var(--serif); font-style: italic;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 24px;
  }
  .service-card h3 {
    font-family: var(--serif); font-weight: 300;
    font-size: 28px;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    line-height: 1.1;
  }
  .service-card p {
    font-size: 14px; line-height: 1.7;
    color: var(--muted);
    margin-bottom: 24px;
    min-height: 70px;
  }
  .service-card .read-more {
    font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
    color: var(--navy);
    transition: color 0.3s;
  }
  .service-card:hover .read-more { color: var(--gold); }

  /* ===== PAGE LAYOUT (service & branch detail pages) ===== */
  .page-hero {
    height: 56vh; min-height: 360px;
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
  }
  .page-hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
  }
  .page-hero::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,37,64,0.5) 0%, rgba(10,37,64,0.65) 100%);
  }
  .page-hero-content {
    position: relative; z-index: 1;
    text-align: center;
    padding: 0 32px;
  }
  .page-hero h1 {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(44px, 6vw, 80px);
    line-height: 1; letter-spacing: -0.02em;
  }
  .breadcrumb {
    margin-top: 22px;
    font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
    opacity: 0.85;
  }
  .breadcrumb .home-icon { display: inline-block; margin-right: 8px; }
  .breadcrumb span { margin: 0 14px; opacity: 0.6; }

  .page-body {
    padding: 100px 48px;
    background: var(--paper);
  }
  .page-grid {
    max-width: 1440px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 80px;
    align-items: start;
  }
  .page-content { min-width: 0; }
  .page-content .section-mark {
    display: inline-flex; align-items: center; gap: 14px;
    margin-bottom: 28px;
  }
  .page-content .section-mark::before {
    content: ''; width: 56px; height: 1px; background: var(--navy);
  }
  .page-content .section-mark span {
    font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--navy);
  }
  .page-content h1 {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.05; letter-spacing: -0.02em;
    margin-bottom: 36px;
  }
  .page-content h2 {
    font-family: var(--serif); font-weight: 400;
    font-size: 22px; letter-spacing: -0.01em;
    margin: 32px 0 16px;
    color: var(--navy);
  }
  .page-content p {
    font-size: 16px; line-height: 1.85;
    color: var(--navy);
    margin-bottom: 22px;
  }
  .page-content p strong { font-weight: 500; }
  .page-content em { font-style: italic; }
  .page-content ul.bullet-list {
    margin: 18px 0 28px 0;
  }
  .page-content ul.bullet-list li {
    font-size: 15px; line-height: 1.85;
    color: var(--navy);
    padding: 6px 0 6px 22px;
    position: relative;
  }
  .page-content ul.bullet-list li::before {
    content: ''; position: absolute; left: 0; top: 16px;
    width: 8px; height: 8px;
    background: var(--navy);
  }
  .page-content .branch-list {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 0.5px solid var(--line);
  }
  .page-content .branch-list-title {
    font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 16px;
  }
  .page-content .branch-list ul li {
    font-family: var(--serif);
    font-size: 22px; line-height: 1.6;
    cursor: pointer;
    transition: color 0.3s, padding-left 0.3s;
    padding: 4px 0 4px 22px;
    position: relative;
  }
  .page-content .branch-list ul li::before {
    content: ''; position: absolute; left: 0; top: 18px;
    width: 8px; height: 8px;
    background: var(--gold);
  }
  .page-content .branch-list ul li:hover { padding-left: 30px; color: var(--gold); }

  /* Sidebar (right column on detail pages) */
  .sidebar { position: sticky; top: 100px; }
  .mbk-cta {
    background: var(--navy);
    color: #fff;
    padding: 44px 36px;
    margin-bottom: 32px;
  }
  .mbk-cta h3 {
    font-family: var(--serif); font-weight: 300;
    font-size: 36px;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
    line-height: 1;
  }
  .mbk-cta h3 em { color: rgba(255,255,255,0.7); font-weight: 300; }
  .mbk-cta p {
    font-size: 14px; line-height: 1.7;
    color: rgba(255,255,255,0.78);
    margin-bottom: 28px;
    text-align: center;
    font-family: var(--serif);
    font-style: italic;
  }
  .mbk-cta .btn-cta {
    display: block;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 14px;
    font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
    color: #fff;
    transition: all 0.3s;
  }
  .mbk-cta .btn-cta:hover { background: var(--gold); border-color: var(--gold); }

  .sidebar-services h3 {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--serif); font-weight: 400;
    font-size: 28px; letter-spacing: -0.01em;
    margin-bottom: 20px;
  }
  .sidebar-services h3::before {
    content: ''; width: 28px; height: 1px; background: var(--navy);
  }
  .sidebar-services ul li {
    font-size: 15px; line-height: 2;
    padding: 8px 0;
    border-bottom: 0.5px solid var(--line);
    cursor: pointer;
    transition: padding-left 0.3s, color 0.3s;
    position: relative;
    padding-left: 18px;
  }
  .sidebar-services ul li::before {
    content: ''; position: absolute; left: 0; top: 18px;
    width: 7px; height: 7px;
    background: var(--navy);
  }
  .sidebar-services ul li:hover { color: var(--gold); padding-left: 24px; }

  /* Concept design gallery */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 40px;
  }
  .gallery-grid img {
    width: 100%; height: 220px; object-fit: cover;
    transition: transform 0.6s ease;
    cursor: zoom-in;
  }
  .gallery-grid img:hover { transform: scale(1.04); }

  /* Investment diagrams */
  .diagram-wrap {
    margin: 40px 0;
    padding: 32px;
    background: #fff;
    border: 0.5px solid var(--line);
  }
  .diagram-wrap img { width: 100%; height: auto; }
  .diagram-legend {
    display: flex; flex-wrap: wrap; gap: 24px;
    margin-top: 24px; padding-top: 24px;
    border-top: 0.5px solid var(--line);
    font-size: 12px;
  }
  .diagram-legend > div { display: flex; align-items: center; gap: 10px; color: var(--muted); }
  .diagram-legend .dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }

  /* About MKB skills SVG */
  .about-skills {
    padding: 80px 48px 40px;
    background: #fff;
    text-align: center;
  }
  .about-skills img { max-width: 1200px; margin: 0 auto; }

  /* Current Projects grid */
  .projects-page-body { padding: 140px 48px 100px; background: var(--paper); }
  .projects-head { text-align: center; margin-bottom: 64px; max-width: 760px; margin-left: auto; margin-right: auto; }
  .projects-head h1 {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1; letter-spacing: -0.02em;
    margin: 18px 0 20px;
  }
  .projects-head h1 em { font-style: italic; color: var(--steel); }
  .projects-head p {
    font-size: 15px; line-height: 1.7; color: var(--muted);
    font-family: var(--serif); font-style: italic; font-size: 17px;
  }
  .cp-grid {
    max-width: 1440px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .cp-tile {
    position: relative;
    height: 480px;
    overflow: hidden;
    cursor: pointer;
  }
  .cp-tile-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: grayscale(100%);
    transition: all 0.7s ease;
  }
  .cp-tile:hover .cp-tile-bg { filter: grayscale(40%); transform: scale(1.04); }
  .cp-tile::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10,37,64,0.4) 100%);
    pointer-events: none;
  }
  .cp-tile .cp-caption {
    position: absolute;
    left: 32px; right: 32px; bottom: 32px;
    background: var(--navy);
    padding: 24px 28px;
    text-align: center;
    color: #fff;
    z-index: 1;
  }
  .cp-tile .cp-loc {
    font-size: 12px; letter-spacing: 0.18em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
  }
  .cp-tile .cp-name {
    font-family: var(--serif); font-weight: 400;
    font-size: 26px;
    letter-spacing: -0.01em;
    line-height: 1.1;
  }

  /* Contact page */
  .contact-body { padding: 120px 48px 100px; background: var(--paper); }
  .contact-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
  .contact-head h1 {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1; letter-spacing: -0.02em;
    margin: 18px 0 24px;
  }
  .contact-head p {
    font-size: 16px; line-height: 1.7; color: var(--muted);
  }
  .contact-form {
    max-width: 1080px; margin: 0 auto;
    background: #fff;
    padding: 56px 56px 48px;
    border: 0.5px solid var(--line);
  }
  .contact-form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }
  .contact-form input, .contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--line);
    background: transparent;
    padding: 14px 0 12px;
    font-family: inherit;
    font-size: 14px;
    color: var(--navy);
    outline: none;
    transition: border-color 0.3s;
    font-weight: 300;
  }
  .contact-form input:focus, .contact-form textarea:focus {
    border-bottom-color: var(--gold);
  }
  .contact-form input::placeholder, .contact-form textarea::placeholder {
    color: var(--muted); font-weight: 300;
  }
  .contact-form textarea {
    min-height: 140px;
    resize: vertical;
    margin-top: 24px;
    margin-bottom: 32px;
  }
  .contact-form button {
    width: 100%;
    background: var(--navy);
    color: #fff;
    padding: 18px;
    font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
    transition: background 0.3s;
  }
  .contact-form button:hover { background: var(--gold); }

  /* Renewable Energy page (under construction) */
  .renewable-energy-uc {
    height: 100vh; min-height: 720px;
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
  }
  .renewable-energy-uc-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    background-image: url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?w=2400&q=80&auto=format&fit=crop');
  }
  .renewable-energy-uc::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,37,64,0.85) 0%, rgba(22,54,94,0.7) 100%);
  }
  .renewable-energy-uc-content { position: relative; z-index: 1; text-align: center; }
  .renewable-energy-uc-content h1 {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 1; letter-spacing: -0.02em;
    margin-bottom: 48px;
  }
  .renewable-energy-uc-content .btn {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 18px 40px;
    font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
    color: #fff;
    transition: all 0.3s;
  }
  .renewable-energy-uc-content .btn:hover { background: var(--gold); border-color: var(--gold); }

  /* About MKB page body */
  .about-body { padding: 60px 48px 100px; background: var(--paper); }
  .about-grid {
    max-width: 1440px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 80px;
    align-items: start;
  }
  .about-content h1 {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1; letter-spacing: -0.02em;
    margin-bottom: 36px;
  }
  .about-content p {
    font-size: 16px; line-height: 1.95;
    color: var(--navy);
    margin-bottom: 22px;
  }
  .about-content p strong { font-weight: 500; }
  .about-content ul { margin: 16px 0 28px; }
  .about-content ul li {
    font-size: 15px; line-height: 1.9;
    color: var(--navy);
    padding: 4px 0 4px 22px;
    position: relative;
  }
  .about-content ul li::before {
    content: ''; position: absolute; left: 0; top: 14px;
    width: 8px; height: 8px;
    background: var(--navy);
  }

  /* ===== FOOTER ===== */
  footer {
    padding: 80px 48px 32px;
    background: var(--navy);
    color: rgba(255,255,255,0.85);
  }
  .foot-inner { max-width: 1440px; margin: 0 auto; }
  .foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 0.5px solid rgba(255,255,255,0.12);
  }
  .foot-brand .logo { color: #fff; font-size: 36px; }
  .foot-brand p {
    font-family: var(--serif); font-style: italic;
    font-size: 17px;
    margin-top: 16px;
    max-width: 360px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
  }
  .foot-col h4 {
    font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
    margin-bottom: 18px;
    color: var(--gold);
    font-weight: 400;
  }
  .foot-col li {
    font-size: 13px; line-height: 2.1;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
    cursor: pointer;
  }
  .foot-col li:hover { color: #fff; }
  .foot-bottom {
    padding-top: 28px;
    display: flex; justify-content: space-between;
    font-size: 11px; letter-spacing: 0.16em;
    color: rgba(255,255,255,0.45);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1100px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .page-grid, .about-grid { grid-template-columns: 1fr; gap: 56px; }
    .sidebar { position: static; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .cp-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 780px) {
    .nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .menu-toggle { display: block; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; cursor: pointer; }
    .nav-cta { display: none; }
    .hero-content, .intro, .strategy, .vision, .services-home, .page-body, .projects-page-body, .contact-body, .about-body, footer { padding-left: 24px; padding-right: 24px; }
    .strategy-grid { grid-template-columns: 1fr; gap: 56px; }
    .strategy-img { aspect-ratio: 16 / 11; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid img { height: 170px; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .contact-form { padding: 32px 24px; }
    .contact-form .row { grid-template-columns: 1fr; gap: 0; }
    .contact-form .row > * { margin-bottom: 24px; }
    .vision { background-attachment: scroll; }
  }

  /* ===== MENU OVERLAY ===== */
  .nav-cta { cursor: pointer; user-select: none; transition: opacity 0.3s; }
  .nav-cta:hover { opacity: 0.7; }
  .menu-toggle { cursor: pointer; user-select: none; }

  .menu-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: var(--navy);
    color: #fff;
    opacity: 0; visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow-y: auto;
  }
  .menu-overlay.open { opacity: 1; visibility: visible; }
  .menu-overlay-inner {
    min-height: 100vh;
    padding: 100px 64px 64px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    max-width: 1440px;
    margin: 0 auto;
  }
  .menu-close {
    position: absolute; top: 28px; right: 48px;
    font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
    cursor: pointer;
    display: flex; align-items: center; gap: 12px;
    color: #fff;
    background: none; border: none;
    z-index: 1;
  }
  .menu-close:hover { color: var(--gold); }
  .menu-close .x {
    width: 18px; height: 18px;
    position: relative;
  }
  .menu-close .x::before, .menu-close .x::after {
    content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 1px;
    background: currentColor;
  }
  .menu-close .x::before { transform: rotate(45deg); }
  .menu-close .x::after { transform: rotate(-45deg); }

  .menu-primary { }
  .menu-cap {
    font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    display: block;
  }
  .menu-primary ul { display: flex; flex-direction: column; gap: 4px; }
  .menu-primary li {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1; letter-spacing: -0.02em;
    cursor: pointer;
    transition: color 0.3s, padding-left 0.3s;
    padding: 6px 0;
    position: relative;
    display: inline-block;
  }
  .menu-primary li::before {
    content: ''; position: absolute; left: -32px; top: 50%;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.4s ease;
  }
  .menu-primary li:hover { color: var(--gold); padding-left: 8px; }
  .menu-primary li:hover::before { width: 24px; }

  .menu-secondary { padding-top: 64px; }
  .menu-secondary .menu-section { margin-bottom: 40px; }
  .menu-secondary h4 {
    font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    font-weight: 400;
  }
  .menu-secondary ul li {
    font-size: 14px; line-height: 2;
    color: rgba(255,255,255,0.78);
    cursor: pointer;
    transition: color 0.3s, padding-left 0.3s;
    padding-left: 0;
  }
  .menu-secondary ul li:hover { color: var(--gold); padding-left: 6px; }
  .menu-secondary .contact-info {
    font-family: var(--serif); font-style: italic;
    font-size: 18px; line-height: 1.6;
    color: rgba(255,255,255,0.85);
  }
  .menu-secondary .contact-info a {
    color: var(--gold);
    border-bottom: 1px solid rgba(184, 149, 106, 0.4);
    padding-bottom: 2px;
  }

  body.menu-open { overflow: hidden; }

  @media (max-width: 780px) {
    .menu-overlay-inner { grid-template-columns: 1fr; gap: 40px; padding: 80px 24px 40px; }
    .menu-secondary { padding-top: 0; border-top: 0.5px solid rgba(255,255,255,0.12); padding-top: 32px; }
    .menu-close { top: 16px; right: 24px; }
  }

