  :root {
    /* ===== Brand palette ===== */
    /* Primary — Dark Navy Blue */
    --navy: #16294d;
    --navy-soft: #1f3560;
    /* Secondary — Gold */
    --gold: #c39455;
    --gold-dark: #a87b3e;
    --gold-light: #e6d2af;
    --gold-soft: #f7efe2;
    /* Text — Charcoal */
    --ink: #2c2c30;
    --ink-soft: #3a3a3f;
    /* Background — Off White */
    --bg: #fafafa;
    --cream: #f1ebe0;
    --paper: #ffffff;
    --muted: #7a7a7a;
    --line: #e7e1d6;
    --serif: 'Fraunces', 'Times New Roman', serif;
    --sans: 'Manrope', system-ui, sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
ul{
  padding: 0px;
}

  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }
  button { cursor: pointer; font-family: inherit; border: none; background: none; }

  .container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

  h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; line-height: 1.1; }
  
  /* ============ TOP BAR ============ */
  .topbar {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    color: #4a4a4a;
  }
  .topbar-inner {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 28px; max-width: 1280px; margin: 0 auto;
    gap: 20px; flex-wrap: wrap;
  }
  .topbar-left { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
  .topbar-item { display: flex; align-items: center; gap: 8px; }
  .topbar-item svg { color: var(--gold); }
  .topbar-right { display: flex; align-items: center; gap: 16px; }
  .topbar-divider { color: #ddd; }
  .social-row { display: flex; gap: 12px; }
  .social-row a {
    width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink); transition: color 0.2s;
  }
  .social-row a:hover { color: var(--gold); }

  /* ============ NAV ============ */
  nav.main-nav {
    background: var(--bg);
    padding: 22px 0;
    position: sticky; top: 0; z-index: 100;
  }
  .nav-inner {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1400px; margin: 0 auto; padding: 0 28px;
  }
  .logo {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    display: flex; align-items: center; gap: 8px;
    letter-spacing: 0.02em;
    line-height: normal;
  }
  .logo-mark {
    width: 54px; height: 59px;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .logo-mark svg { width: 100%; height: 100%; color: var(--gold); }

  .nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
        white-space: nowrap;
  }
  .nav-item {
    position: relative;
    padding: 12px 0;
  }
  .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
  }
  .nav-link.active { color: var(--gold); }
  .nav-link:hover { color: var(--gold); }
  .nav-link .chev {
    width: 9px; height: 9px;
    transition: transform 0.3s ease;
  }
  .nav-item:hover .nav-link .chev { transform: rotate(180deg); }

  /* Invisible hover bridge — keeps dropdown open as user moves cursor down */
  .nav-item.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%; left: -20px; right: -20px;
    height: 16px;
  }

  /* ===== Level-2 dropdown ===== */
  .dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: -22px;
    min-width: 240px;
    background: #fff;
    border-radius: 14px;
    box-shadow:
      0 24px 50px rgba(20, 20, 20, 0.12),
      0 6px 18px rgba(20, 20, 20, 0.06);
    padding: 14px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity 0.32s ease, transform 0.32s ease, visibility 0s linear 0.32s;
    z-index: 200;
  }
  .nav-item.has-dropdown:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.32s ease, transform 0.32s ease, visibility 0s linear 0s;
  }
  /* Subtle top accent — matches dropdown to nav with a gold whisper */
  .dropdown::before {
    content: '';
    position: absolute;
    top: 0; left: 22px;
    width: 28px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
  }

  /* Dropdown items */
  .dropdown-item {
    position: relative;
  }
  .dropdown-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #2a2a2a;
    transition: color 0.2s, background 0.2s, padding 0.2s;
    position: relative;
  }
  .dropdown-item > a::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    transform-origin: left center;
    width: 6px; height: 1.5px;
    background: var(--gold);
    transition: transform 0.25s ease;
  }
  .dropdown-item:hover > a {
    color: var(--gold);
    padding-left: 32px;
  }
  .dropdown-item:hover > a::before {
    transform: translateY(-50%) scaleX(1);
  }
  /* Submenu indicator (right chevron) */
  .dropdown-item.has-submenu > a .sub-arrow {
    width: 8px; height: 8px;
    transition: transform 0.25s;
    flex-shrink: 0;
    color: #999;
  }
  .dropdown-item.has-submenu:hover > a .sub-arrow {
    transform: translateX(3px);
    color: var(--gold);
  }

  /* ===== Level-3 submenu ===== */
  .submenu {
    position: absolute;
    top: -14px;
    left: calc(100% + 8px);
    min-width: 240px;
    background: #fff;
    border-radius: 14px;
    box-shadow:
      0 24px 50px rgba(20, 20, 20, 0.12),
      0 6px 18px rgba(20, 20, 20, 0.06);
    padding: 14px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
  }
  .submenu::before {
    content: '';
    position: absolute;
    top: 16px; left: 0;
    width: 2px; height: 28px;
    background: var(--gold);
    border-radius: 2px;
  }
  /* Hover bridge for submenu */
  .dropdown-item.has-submenu::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    right: -10px;
    width: 10px;
  }
  .dropdown-item.has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
  }
  .submenu a {
    display: block;
    padding: 10px 24px;
    font-size: 13.5px;
    font-weight: 500;
    color: #2a2a2a;
    transition: color 0.2s, padding 0.2s, background 0.2s;
    position: relative;
  }
  .submenu a::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    transform-origin: left center;
    width: 6px; height: 1.5px;
    background: var(--gold);
    transition: transform 0.25s ease;
  }
  .submenu a:hover {
    color: var(--gold);
    padding-left: 32px;
  }
  .submenu a:hover::before {
    transform: translateY(-50%) scaleX(1);
  }

  .nav-right { display: flex; align-items: center; gap: 18px; }
  .phone-row { display: flex; align-items: center; gap: 12px; }
  .phone-icon {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--gold); color: #fff;
    display: flex; align-items: center; justify-content: center;
  }
  .phone-number { font-weight: 600; font-size: 15px; }

  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 26px 14px 8px;
    border-radius: 999px;
    background: var(--navy); color: #fff;
    font-weight: 600; font-size: 14px;
    transition: transform 0.25s, background 0.25s;
  }
  .btn:hover { background: var(--navy-soft); }
  .btn-icon {
    width: 32px; height: 32px; border-radius: 50%;
    background: #fff; color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .btn-light {
    background: #fff; color: var(--ink);
    border: 1px solid #eee;
  }
  .btn-light:hover { background: #f7f3ed; }
  .btn-light .btn-icon { background: var(--gold); color: #fff; }

  /* ============ HERO ============ */
  .hero {
    margin: 0 28px 90px;
  }
  .hero-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 640px;
    color: #fff;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.1s ease, visibility 0s linear 1.1s, transform 8s ease-out;
    transform: scale(1.0);
  }
  .hero-slide::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgb(22 41 77 / 57%) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
  }
  .hero-slide.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 1.1s ease, visibility 0s linear 0s, transform 8s ease-out;
    transform: scale(1.06);
  }
  /* Stagger entrance of inner content for the active slide */
  .hero-slide .pill,
  .hero-slide h1,
  .hero-slide p,
  .hero-slide .btn {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .hero-slide.active .pill { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
  .hero-slide.active h1   { opacity: 1; transform: translateY(0); transition-delay: 0.40s; }
  .hero-slide.active p    { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }
  .hero-slide.active .btn { opacity: 1; transform: translateY(0); transition-delay: 0.70s; }

  .hero-content { padding: 0 70px; max-width: 640px; position: relative; z-index: 2; }

  /* Slider arrow controls */
  .hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    z-index: 5;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
  }
  .hero-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
  }
  .hero-arrow.prev { left: 30px; }
  .hero-arrow.next { right: 30px; }

  /* Progress ring on dots */
  .hero-dots .dot {
    cursor: pointer;
  }
  .pill {
    display: inline-block;
    padding: 9px 22px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    margin-bottom: 26px;
  }
  .hero h1 {
    font-size: 76px;
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 26px;
  }
  .hero p {
    font-size: 15px;
    max-width: 420px;
    line-height: 1.7;
    margin-bottom: 38px;
    opacity: 0.92;
  }
  .hero .btn { background: #fff; color: var(--ink); padding-right: 30px; }
  .hero .btn .btn-icon { background: var(--gold); color: #fff; }
  .hero .btn:hover { background: var(--cream); }

  .hero-dots {
    position: absolute; bottom: 0; right: 0;
    background: #fff;
    padding: 22px 36px 22px 32px;
    border-top-left-radius: 22px;
    display: flex; gap: 10px; align-items: center;
  }
  .dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: #d8d8d8;
    transition: background 0.2s;
  }
  .dot.active { background: var(--gold); width: 11px; height: 11px; }

  /* ============ FEATURES STRIP ============ */
  .features-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 110px;
  }
  .feature-item { padding: 0 6px; }
  .feature-head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
  .feature-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: #d5d5d4;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .feature-icon svg { width: 30px; height: 30px; color: #16294d; stroke-width: 1.5; }
  .feature-head h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }
  .feature-item p {
    font-size: 14px; color: var(--muted);
    border-top: 1px solid var(--line);
    padding-top: 18px;
    line-height: 1.7;
  }

  /* ============ REDEFINING SECTION ============ */
  .redefining {
    display: grid; grid-template-columns: 1fr 1fr; gap: 70px;
    margin-bottom: 80px;
    align-items: center;
    position: relative;
  }
  .redefining::after {
    content: ''; position: absolute; right: -100px; top: 50px;
    width: 320px; height: 280px; opacity: 0.06;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300" fill="none" stroke="black" stroke-width="0.5"><polygon points="50,250 50,120 150,50 250,120 250,250"/><line x1="50" y1="250" x2="250" y2="250"/><rect x="120" y="180" width="60" height="70"/><line x1="80" y1="150" x2="80" y2="250"/><line x1="220" y1="150" x2="220" y2="250"/></svg>');
    background-repeat: no-repeat; pointer-events: none;
  }
  .redefining-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 540px;
    background-image: url('https://rrgbuilder.com/uploads/gallery/2_3_bhk_flats_rrg_township/50.jpg');
    background-size: cover; background-position: center;
  }
  .satisfaction-badge {
    position: absolute; left: 30px; bottom: 30px;
    background: var(--gold);
    color: #fff;
    padding: 22px 32px;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  }
  .satisfaction-badge .big-num {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 6px;
  }
  .satisfaction-badge .label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .redefining-content { padding-right: 20px; }
  .eyebrow {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 999px;
    border: 1px solid var(--gold-light);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 22px;
  }
  .redefining h2 {
    font-size: 52px;
    font-weight: 500;
    margin-bottom: 32px;
    line-height: 1.05;
  }
  .tabs {
    display: flex; gap: 8px; margin-bottom: 30px;
    flex-wrap: wrap;
  }
  .tab {
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    background: transparent;
    color: var(--ink);
    display: flex; align-items: center; gap: 8px;
    transition: all 0.2s;
  }
  .tab .tab-bullet { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
  .tab.active { background: var(--gold); color: #fff; }
  .tab.active .tab-bullet { background: #fff; }
  .tab:not(.active):hover { background: var(--gold-soft); }

  .objective-text {
    color: var(--muted); font-size: 15px; margin-bottom: 26px;
    line-height: 1.7;
  }
  .checklist { list-style: none; margin-bottom: 32px; }
  .checklist li {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 500;
  }
  .check {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--gold); color: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .check svg { width: 12px; height: 12px; stroke-width: 3; }

  /* ============ DARK SERVICES SECTION ============ */
  .services-dark {
    background: var(--navy);
    color: #fff;
    border-radius: 22px;
    padding: 80px 50px;
    margin: 0 28px 110px;
    position: relative;
    overflow: hidden;
  }
  .services-dark::before {
    content: ''; position: absolute; left: 0; bottom: 0; right: 0;
    height: 280px; opacity: 0.05;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300" fill="none" stroke="white" stroke-width="0.6"><polygon points="100,280 100,140 220,80 340,140 340,280"/><polygon points="380,280 380,160 480,110 580,160 580,280"/><line x1="0" y1="280" x2="1200" y2="280"/><polygon points="640,280 640,120 780,60 920,120 920,280"/><polygon points="960,280 960,150 1060,100 1160,150 1160,280"/><rect x="180" y="200" width="60" height="80"/><rect x="450" y="210" width="50" height="70"/><rect x="740" y="180" width="60" height="100"/></svg>');
    background-repeat: no-repeat; background-size: cover;
    pointer-events: none;
  }
  .services-eyebrow {
    text-align: center;
    margin-bottom: 16px;
  }
  .services-eyebrow span {
    display: inline-block;
    padding: 7px 22px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  }
  .services-dark h2 {
    text-align: center;
    font-size: 52px;
    font-weight: 500;
    margin-bottom: 55px;
    color: #fff;
  }
  .services-grid {
    display: grid; grid-template-columns: 60px 1fr 60px;
    gap: 24px; align-items: center;
    position: relative; z-index: 2;
  }
  .services-viewport {
    overflow: hidden;
  }
  .services-track {
    display: flex;
    gap: 24px;
    transition: transform 0.75s cubic-bezier(.55,.05,.2,1);
    will-change: transform;
  }
  .services-track .service-card {
    flex: 0 0 calc((100% - 48px) / 3);
  }
  .nav-arrow {
    width: 50px; height: 50px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: transparent; color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
    cursor: pointer;
  }
  .nav-arrow:hover { background: var(--gold); border-color: var(--gold); }
  .nav-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
  .nav-arrow:disabled:hover { background: transparent; border-color: rgba(255,255,255,0.25); }
  .service-card {
    background: #fff;
    color: var(--ink);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0,0,0,0.15);
  }
  .service-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .service-img::after {
    content: '';
    position: absolute; bottom: -22px; right: 20px;
    width: 44px; height: 44px; border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  }
  .service-icon-overlay {
    position: absolute; bottom: -22px; right: 20px;
    width: 44px; height: 44px; border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    color: #555;
    z-index: 2;
  }
  .service-body { padding: 30px 26px 26px; }
  .service-body h3 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 14px;
  }
  .service-body p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 22px;
  }
  .view-details {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 600;
  }
  .view-details-icon {
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--navy); color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .view-details:hover .view-details-icon { background: var(--gold); }

  .services-cta {
    display: flex; justify-content: center; margin-top: 55px;
    position: relative; z-index: 2;
  }

  /* ============ PROCESS / LANDMARKS ============ */
  .landmarks {
    margin-bottom: 110px;
  }
  .landmarks-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 60px;
  }
  .landmarks-head h2 {
    font-size: 52px; font-weight: 500;
    max-width: 480px;
  }
  .landmarks-arrows { display: flex; gap: 14px; }
  .arrow-light {
    width: 50px; height: 50px; border-radius: 50%;
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    color: var(--ink); transition: all 0.2s;
  }
  .arrow-light:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
  .arrow-light:disabled { opacity: 0.4; cursor: not-allowed; }
  .arrow-light:disabled:hover { background: transparent; border-color: var(--line); color: var(--ink); }

  .process-slider {
    position: relative;
  }
  .process-slider::before {
    content: ''; position: absolute;
    top: 88px; left: 0; right: 0; height: 1px;
    background: var(--line);
    z-index: 1;
  }
  .process-viewport {
    overflow: hidden;
    position: relative; z-index: 2;
  }
  .process-track {
    display: flex;
    gap: 30px;
    transition: transform 0.75s cubic-bezier(.55,.05,.2,1);
    will-change: transform;
  }
  .process-track .process-item {
    flex: 0 0 calc((100% - 90px) / 4);
  }
  .process-item { position: relative; padding-top: 0; }
  .process-icon {
    height: 80px;
    display: flex; align-items: flex-end;
    margin-bottom: 12px;
  }
  .process-icon svg { width: 70px; height: 70px; color: var(--navy); stroke-width: 1.3; }
  .process-dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--navy);
    margin: 0 0 18px 6px;
    position: relative; z-index: 2;
  }
  .process-item h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .process-item p {
    color: var(--muted); font-size: 14px;
    max-width: 200px; line-height: 1.65;
  }

  /* ============ LOGO GRID ============ */
  .logos-section {
    margin: 0 28px 110px;
  }
  .logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
  }
  .logo-cell {
    aspect-ratio: 1.6 / 1;
    display: flex; align-items: center; justify-content: center;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: #555;
    transition: background 0.2s;
    padding: 20px;
  }
  .logo-cell:nth-child(5n) { border-right: none; }
  .logo-cell:nth-last-child(-n+5) { border-bottom: none; }
  .logo-cell:hover { background: #fafafa; }
  .logo-cell svg { width: 100%; max-width: 140px; max-height: 70px; }

  /* ============ PORTFOLIO ============ */
  .portfolio { margin-bottom: 110px; position: relative; }
  .portfolio::before {
    content: ''; position: absolute; left: -50px; top: 100px;
    width: 300px; height: 380px; opacity: 0.05;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 380" fill="none" stroke="black" stroke-width="0.5"><polygon points="40,360 40,140 150,70 260,140 260,360"/><line x1="40" y1="360" x2="260" y2="360"/><rect x="110" y="240" width="80" height="120"/><rect x="60" y="180" width="40" height="60"/><rect x="200" y="180" width="40" height="60"/></svg>');
    background-repeat: no-repeat; pointer-events: none;
  }
  .portfolio-head { text-align: center; margin-bottom: 40px; }
  .portfolio-head .eyebrow { margin-bottom: 18px; }
  .portfolio-head h2 { font-size: 52px; font-weight: 500; }
  .portfolio-tabs {
    display: flex; justify-content: center; gap: 12px;
    margin-bottom: 50px; flex-wrap: wrap;
  }
  .portfolio-tab {
    padding: 11px 24px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex; align-items: center; gap: 8px;
    transition: all 0.2s;
  }
  .portfolio-tab .tab-bullet {
    width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  }
  .portfolio-tab.active { background: var(--gold); color: #fff; border-color: var(--gold); padding-left: 22px; }
  .portfolio-tab.active .tab-bullet { background: #fff; }
  .portfolio-tab:not(.active):hover { border-color: var(--gold); }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 18px;
  }
  .portfolio-item {
    border-radius: 12px;
    overflow: hidden;
    background-size: cover; background-position: center;
    position: relative;
    transition: transform 0.45s ease, opacity 0.45s ease;
  }
  .portfolio-item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
    opacity: 0;
    transition: opacity 0.35s;
  }
  .portfolio-item:hover { transform: translateY(-6px); }
  .portfolio-item:hover::after { opacity: 1; }
  .portfolio-label {
    position: absolute;
    left: 18px; bottom: 18px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    background: rgba(195, 148, 85, 0.95);
    padding: 6px 14px;
    border-radius: 999px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s, transform 0.35s;
    z-index: 2;
  }
  .portfolio-item:hover .portfolio-label {
    opacity: 1;
    transform: translateY(0);
  }
  /* Asymmetric "All" view */
  .portfolio-grid.all-view .portfolio-item:nth-child(1) { grid-column: 1; grid-row: 1; }
  .portfolio-grid.all-view .portfolio-item:nth-child(2) { grid-column: 2; grid-row: 1; }
  .portfolio-grid.all-view .portfolio-item:nth-child(3) { grid-column: 3; grid-row: 1 / span 2; }
  .portfolio-grid.all-view .portfolio-item:nth-child(4) { grid-column: 4; grid-row: 1; }
  .portfolio-grid.all-view .portfolio-item:nth-child(5) { grid-column: 1; grid-row: 2; }
  .portfolio-grid.all-view .portfolio-item:nth-child(6) { grid-column: 2; grid-row: 2; }
  .portfolio-grid.all-view .portfolio-item:nth-child(7) { grid-column: 4; grid-row: 2; }
  /* Filtered out items */
  .portfolio-item.is-hidden {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    width: 0; height: 0;
    margin: 0; padding: 0;
    overflow: hidden;
  }
  /* Filter entrance animation */
  @keyframes portfolioIn {
    from { opacity: 0; transform: scale(0.94) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
  }
  .portfolio-item.is-shown {
    animation: portfolioIn 0.5s ease both;
  }

  /* ============ PRICING ============ */
  .pricing {
    display: grid; grid-template-columns: 0.85fr 1.15fr;
    gap: 80px; margin-bottom: 60px;
    align-items: start;
  }
  .pricing-left { padding-top: 8px; }
  .pricing-left h2 {
    font-size: 50px; font-weight: 500;
    margin-bottom: 22px; line-height: 1.05;
  }
  .pricing-left p {
    color: var(--muted); font-size: 15px;
    margin-bottom: 36px; max-width: 360px;
    line-height: 1.7;
  }
  .toggle-row {
    display: flex; align-items: center; gap: 20px;
    margin-bottom: 36px;
    font-size: 14px; font-weight: 500;
  }
  .toggle {
    width: 64px; height: 32px; border-radius: 999px;
    background: var(--gold);
    position: relative; cursor: pointer;
  }
  .toggle::after {
    content: ''; position: absolute;
    top: 4px; right: 4px;
    width: 24px; height: 24px; border-radius: 50%;
    background: #fff;
    transition: all 0.25s;
  }
  .toggle.left::after { right: auto; left: 4px; }

  .pricing-cards { display: flex; flex-direction: column; gap: 24px; }
  .price-card {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr;
    gap: 30px;
    align-items: center;
    padding: 30px 36px;
    border-radius: 14px;
    background: transparent;
    transition: background 0.2s;
  }
  .price-card.dark {
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .price-card.dark::after {
    content: ''; position: absolute; top: 0; right: 0; bottom: 0;
    width: 50%;
    background-image: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
    pointer-events: none;
  }
  .price-name {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .price-desc {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
  }
  .price-card.dark .price-desc { color: rgba(255,255,255,0.7); }
  .price-features { list-style: none; }
  .price-features li {
    font-size: 14px;
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
  }
  .price-features li::before {
    content: ''; position: absolute; left: 0; top: 14px;
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--gold);
  }
  .price-amount { text-align: left; }
  .price-amount .amt {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 14px;
    display: block;
  }
  .price-amount .amt span { font-size: 14px; color: var(--muted); font-weight: 400; font-family: var(--sans); }
  .price-card.dark .amt span { color: rgba(255,255,255,0.6); }
  .price-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 22px 12px 6px;
    border-radius: 999px;
    background: var(--navy); color: #fff;
    font-size: 13px; font-weight: 600;
    transition: background 0.2s;
  }
  .price-cta:hover { background: var(--navy-soft); }
  .price-cta .btn-icon { width: 28px; height: 28px; background: #fff; color: var(--gold); }
  .price-card.dark .price-cta { background: var(--gold); color: #fff; }
  .price-card.dark .price-cta:hover { background: var(--gold-dark); }

  /* ============ MARQUEE ============ */
  .marquee {
    overflow: hidden;
    padding: 26px 0;
    margin-bottom: 90px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .marquee-track {
    display: flex; gap: 50px; align-items: center;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
  }
  .marquee span {
    font-family: var(--serif);
    font-size: 76px;
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 1px var(--navy);
    letter-spacing: -0.01em;
  }
  .marquee-dot {
    width: 60px; height: 60px; border-radius: 50%;
    background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=200&q=80');
    background-size: cover; background-position: center;
    flex-shrink: 0;
  }
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ============ TESTIMONIAL ============ */
  .testimonial-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 28px; margin-bottom: 110px;
  }
  /* Image side — stacked image layers that crossfade */
  .testimonial-images {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 460px;
  }
  .testimonial-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.0);
    transition: opacity 0.85s ease, visibility 0s linear 0.85s, transform 7s ease-out;
  }
  .testimonial-img.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1.06);
    transition: opacity 0.85s ease, visibility 0s linear 0s, transform 7s ease-out;
  }
  .testimonial-card {
    background: var(--navy);
    color: #fff;
    border-radius: 14px;
    padding: 50px 50px 36px;
    position: relative;
    overflow: hidden;
  }
  .testimonial-card::before {
    content: ''; position: absolute; right: -30px; top: 30px;
    font-family: var(--serif); font-size: 220px; line-height: 1;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" fill="rgba(255,255,255,0.06)"><path d="M40 60 Q40 30 70 30 L80 30 Q70 50 70 70 L40 70 Z M100 60 Q100 30 130 30 L140 30 Q130 50 130 70 L100 70 Z"/></svg>');
    width: 200px; height: 160px;
    background-repeat: no-repeat;
    pointer-events: none;
  }
  .testimonial-pill {
    display: inline-block;
    padding: 7px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
    margin-bottom: 22px;
  }
  .testimonial-card h2 {
    font-size: 42px; font-weight: 500;
    margin-bottom: 28px;
    color: #fff;
    line-height: 1.1;
  }
  /* Slide stage — slides stack, only active is visible */
  .testimonial-stage {
    position: relative;
    min-height: 240px;
  }
  .testimonial-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s linear 0.5s;
  }
  .testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s, visibility 0s linear 0s;
  }
  .stars { color: var(--gold); margin-bottom: 18px; font-size: 18px; letter-spacing: 2px; }
  .testimonial-text {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    margin-bottom: 32px;
    line-height: 1.75;
    max-width: 460px;
  }
  .testimonial-author {
    display: flex; align-items: center; justify-content: space-between;
  }
  .author-info { display: flex; align-items: center; gap: 14px; }
  .author-avatar {
    width: 56px; height: 56px; border-radius: 50%;
    background-size: cover; background-position: center;
    flex-shrink: 0;
  }
  .author-name { font-family: var(--serif); font-size: 20px; font-weight: 600; }
  .author-role { color: rgba(255,255,255,0.6); font-size: 13px; }
  /* Arrows live at card level — fixed bottom-right, always visible */
  .testimonial-arrows {
    position: absolute;
    bottom: 40px;
    right: 50px;
    display: flex; gap: 10px;
    z-index: 3;
  }
  .testimonial-arrows .arrow-circle {
    width: 42px; height: 42px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: transparent;
    display: flex; align-items: center; justify-content: center;
    color: #fff; transition: all 0.2s;
    cursor: pointer;
  }
  .testimonial-arrows .arrow-circle:hover { background: var(--gold); border-color: var(--gold); }
  /* Dots indicator */
  .testimonial-dots {
    position: absolute;
    bottom: 52px;
    left: 50px;
    display: flex; gap: 7px;
    z-index: 3;
  }
  .testimonial-dots .t-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: background 0.25s, width 0.25s;
  }
  .testimonial-dots .t-dot.active {
    background: var(--gold);
    width: 22px; border-radius: 999px;
  }

  /* ============ BLOG ============ */
  .blog-head { margin-bottom: 40px; }
  .blog-head .eyebrow { margin-bottom: 18px; }
  .blog-head h2 { font-size: 52px; font-weight: 500; }
  .blog-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px; margin-bottom: 100px; }
  .blog-featured {
    border-radius: 14px;
    overflow: hidden;
    
  }
  .blog-featured-img {
    height: 380px;
    background-size: cover; background-position: center;
    background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=900&q=80');
  }
  .blog-meta {
    display: flex; gap: 22px; margin: 24px 0 14px;
    color: var(--muted); font-size: 13px;
  }
  .blog-meta span { display: flex; align-items: center; gap: 6px; }
  .blog-meta svg { width: 14px; height: 14px; color: var(--gold); }
  .blog-featured h3 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    max-width: 480px;
  }
  .blog-featured p {
    color: var(--muted); font-size: 14px;
    line-height: 1.65; max-width: 480px;
  }

  .blog-side { display: flex; flex-direction: column; gap: 30px; }
  .blog-mini {
    display: grid; grid-template-columns: 200px 1fr;
    gap: 24px; align-items: center;
  }
  .blog-mini-img {
    height: 130px; border-radius: 12px;
    background-size: cover; background-position: center;
  }
  .blog-mini h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    margin-top: 8px;
    line-height: 1.2;
  }

  /* ============ NEWSLETTER + FOOTER ============ */
  .footer-wrap {
    background: var(--navy);
    color: #fff;
    border-radius: 22px;
    margin: 0 28px 28px;
    padding: 60px 60px 40px;
  }
  .newsletter {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: center;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .newsletter h2 {
    font-size: 40px; font-weight: 500;
    color: #fff;
    line-height: 1.1;
  }
  .newsletter-form {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    display: flex; align-items: center;
    padding: 6px 6px 6px 28px;
    margin-bottom: 14px;
  }
  .newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    padding: 10px 0;
    outline: none;
  }
  .newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
  .newsletter-form button {
    background: var(--gold);
    color: #fff;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600; font-size: 13px;
  }
  .newsletter-terms {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.65); font-size: 13px;
  }
  .newsletter-terms a { color: #fff; text-decoration: underline; }
  .newsletter-terms .checkbox {
    width: 14px; height: 14px; border: 1px solid rgba(255,255,255,0.4);
    border-radius: 2px; flex-shrink: 0;
  }

  .footer-main {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding: 50px 0 40px;
  }
  .footer-brand { display: flex; flex-direction: column; }
  .footer-logo {
    font-family: var(--serif);
    font-size: 26px; font-weight: 600;
    color: #fff;
    margin-bottom: 22px;
    display: flex; align-items: center; gap: 8px;
  }
  .footer-brand p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 280px;
  }
  .footer-cta {
    align-self: flex-start;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 22px 10px 6px;
    border-radius: 999px;
    background: #fff; color: var(--ink);
    font-weight: 600; font-size: 13px;
  }
  .footer-cta .btn-icon { background: var(--gold); color: #fff; width: 30px; height: 30px; }
  .footer-col h4 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 22px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li {
    padding: 7px 0;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.2s;
  }
  .footer-col ul li:hover { color: var(--gold); cursor: pointer; }
  .footer-contact-line { margin-bottom: 22px; }
  .footer-contact-line .label {
    color: rgba(255,255,255,0.55); font-size: 13px;
    margin-bottom: 4px;
  }
  .footer-contact-line .value {
    color: #fff; font-weight: 600; font-size: 16px;
    display: flex; align-items: center; gap: 8px;
  }
  .footer-contact-line .value svg { color: var(--gold); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.55); font-size: 13px;
  }
  .footer-bottom a { color: var(--gold); text-decoration: underline; }
  .footer-socials { display: flex; gap: 18px; }
  .footer-socials a {
    color: rgba(255,255,255,0.7); transition: color 0.2s;
  }
  .footer-socials a:hover { color: var(--gold); }

  /* ============ SCROLL REVEAL ============ */
  .reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.85s cubic-bezier(.2,.6,.2,1), transform 0.85s cubic-bezier(.2,.6,.2,1);
    will-change: opacity, transform;
  }
  .reveal-left { transform: translateX(-40px); }
  .reveal-right { transform: translateX(40px); }
  .reveal-zoom { transform: scale(0.92); }
  .reveal-fade { transform: none; }
  .reveal.visible {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
  /* Stagger children: when parent has .stagger and gains .visible,
     children with .reveal animate sequentially */
  .stagger.visible > .reveal:nth-child(1) { transition-delay: 0.05s; }
  .stagger.visible > .reveal:nth-child(2) { transition-delay: 0.15s; }
  .stagger.visible > .reveal:nth-child(3) { transition-delay: 0.25s; }
  .stagger.visible > .reveal:nth-child(4) { transition-delay: 0.35s; }
  .stagger.visible > .reveal:nth-child(5) { transition-delay: 0.45s; }
  .stagger.visible > .reveal:nth-child(6) { transition-delay: 0.55s; }
  .stagger.visible > .reveal:nth-child(7) { transition-delay: 0.65s; }
  .stagger.visible > .reveal:nth-child(8) { transition-delay: 0.75s; }
  .stagger.visible > .reveal:nth-child(9) { transition-delay: 0.85s; }
  .stagger.visible > .reveal:nth-child(10) { transition-delay: 0.95s; }
  @media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-zoom {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
  }

  /* ============ Section Title (common) ============ */
  .section-eyebrow-center { text-align: center; margin-bottom: 18px; }

  @media (max-width: 1320px) {
    .nav-right .phone-row { display: none; }
  }

  /* ============ FACT FIGURES (inline gold circles) ============ */
  .fact-figures {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 30px 0 0;
  }
  .fact-item {
    text-align: center;
  }
  .fact-num {
    width: 88px; height: 88px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 600;
    margin: 0 auto 10px;
    box-shadow: 0 10px 26px rgba(195,148,85,0.28);
    transition: transform 0.35s;
  }
  .fact-num span {
    font-size: 22px;
    margin-left: 1px;
  }
  .fact-item:hover .fact-num {
    transform: translateY(-4px) scale(1.05);
  }
  .fact-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.02em;
  }

  /* ============ HAMBURGER + MOBILE MENU ============ */
  .hamburger {
    display: none;
    width: 44px; height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: border-color 0.25s, background 0.25s;
    z-index: 250;
  }
  .hamburger:hover { border-color: var(--gold); }
  .hamburger span {
    width: 18px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease, background 0.25s;
    transform-origin: center;
  }
  .hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Overlay behind drawer */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 15, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
    z-index: 200;
  }
  .menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0s linear 0s;
  }

  /* Drawer */
  .mobile-menu {
    position: fixed;
    top: 0; right: 0;
    width: 360px;
    max-width: 88vw;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    box-shadow: -20px 0 60px rgba(0,0,0,0.18);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.4,.1,.25,1);
    z-index: 250;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .mobile-menu.is-open {
    transform: translateX(0);
  }
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px;
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
  }
  .mobile-menu-header .logo { font-size: 22px; }
  .mobile-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
  }
  .mobile-close:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

  .mobile-nav {
    padding: 14px 0;
    flex: 1;
  }
  .m-item {
    border-bottom: 1px solid #f3f3f3;
  }
  .m-item:last-child { border-bottom: none; }
  .m-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 26px;
    background: transparent;
    border: none;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.25s, background 0.25s, padding 0.25s;
  }
  .m-link:hover { color: var(--gold); padding-left: 32px; background: rgba(195,148,85,0.04); }
  .m-link .m-chev {
    width: 12px; height: 12px;
    transition: transform 0.35s ease;
    color: #999;
    flex-shrink: 0;
  }
  .m-item.is-open > .m-link .m-chev {
    transform: rotate(180deg);
    color: var(--gold);
  }
  .m-item.is-open > .m-link {
    color: var(--gold);
    background: rgba(195,148,85,0.06);
  }

  /* Accordion expansion */
  .m-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
    background: #fafafa;
  }
  .m-item.is-open > .m-sub {
    max-height: 800px;
  }
  /* Nested submenu (level 3) — different bg for visual hierarchy */
  .m-sub .m-sub { background: #f3f3f3; }
  .m-sub .m-link {
    font-size: 14px;
    padding: 13px 26px 13px 40px;
    font-weight: 500;
  }
  .m-sub .m-sub .m-link {
    padding-left: 56px;
    font-size: 13.5px;
    color: #4a4a4a;
  }
  /* Indent guide line — gold bar appears on item indicating depth */
  .m-sub .m-link {
    position: relative;
  }
  .m-sub .m-link::before {
    content: '';
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 1.5px;
    background: var(--gold);
    opacity: 0.6;
  }
  .m-sub .m-sub .m-link::before {
    left: 40px;
    opacity: 0.5;
  }

  .mobile-menu-footer {
    padding: 22px 26px 28px;
    border-top: 1px solid var(--line);
    flex-shrink: 0;
    background: #fff;
  }
  .mobile-menu-footer .phone-row {
    margin-bottom: 18px;
  }
  .mobile-menu-footer .btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }

  body.menu-open { overflow: hidden; }

  /* ============ Responsive ============ */
  @media (max-width: 980px) {
    .features-strip, .process-grid, .portfolio-grid, .logo-grid { grid-template-columns: repeat(2, 1fr); }
    .logo-cell:nth-child(2n) { border-right: none; }
    .logo-cell:nth-child(5n) { border-right: 1px solid var(--line); }
    .logo-cell:nth-last-child(-n+5) { border-bottom: 1px solid var(--line); }
    .logo-cell:nth-last-child(-n+2) { border-bottom: none; }
    .redefining, .testimonial-row, .blog-grid, .pricing, .newsletter, .footer-main {
      grid-template-columns: 1fr;
    }
    .hero h1 { font-size: 48px; }
    .hero-content { padding: 0 40px; }
    .nav-links { display: none; }
    .topbar-left { display: none; }
    .nav-right .phone-row { display: none; }
    .nav-right > .btn { display: none; }
    .hamburger { display: flex; }
    .portfolio-grid { grid-template-rows: auto; }
    .portfolio-item { grid-column: auto !important; grid-row: auto !important; height: 240px; }
    .services-grid { grid-template-columns: 1fr; gap: 24px; }
    .nav-arrow { display: none; }
    .price-card { grid-template-columns: 1fr; gap: 14px; padding: 24px; }
    h2 { font-size: 36px !important; }
    .marquee span { font-size: 50px; }
  /* ===== Project Highlights: responsive arrows on mobile ===== */
    .services-dark { padding: 50px 22px; margin: 0 16px 70px; }
    .services-eyebrow span { font-size: 10px; }
    .services-grid { grid-template-columns: 40px 1fr 40px; gap: 12px; }
    .nav-arrow { display: flex !important; width: 40px; height: 40px; }
  }

  @media (max-width: 640px) {
    .services-dark { padding: 42px 16px; margin: 0 12px 60px; border-radius: 16px; }
    .services-dark h2 { margin-bottom: 30px; }
    .services-grid { grid-template-columns: 34px 1fr 34px; gap: 8px; }
    .nav-arrow { width: 34px; height: 34px; }
    .service-img { height: 190px; }
    .service-body { padding: 24px 20px 22px; }
    .service-body h3 { font-size: 20px; }
    .services-cta { margin-top: 36px; }
  }























    /* ===== Enquire popup ===== */
  .enq-overlay{
    --e-navy:#16294c; --e-gold:#bf9d5a; --e-gold-soft:#e6d2a6;
    --e-cream:#faf8f2; --e-line:#e7e1d4; --e-ink:#1b2333; --e-muted:#5b6473;
    position:fixed; inset:0; z-index:9999;
    background:rgba(12,20,38,.55); backdrop-filter:blur(4px);
    display:flex; align-items:center; justify-content:center; padding:20px;
    opacity:0; visibility:hidden; transition:opacity .3s ease, visibility .3s ease;
  }
  .enq-overlay.open{ opacity:1; visibility:visible; }
  .enq-modal{
    background:#fff; width:100%; max-width:520px; border-radius:20px; overflow:hidden; color:var(--e-ink);
    box-shadow:0 40px 90px -30px rgba(12,20,38,.7);
    transform:translateY(24px) scale(.96); transition:transform .35s cubic-bezier(.34,1.56,.64,1);
    max-height:92vh; display:flex; flex-direction:column;
  }
  .enq-overlay.open .enq-modal{ transform:translateY(0) scale(1); }
  .enq-head{ background:var(--e-navy); color:#fff; padding:24px 28px; position:relative; overflow:hidden; }
  .enq-head::after{ content:""; position:absolute; right:-50px; top:-50px; width:160px; height:160px; border-radius:50%; background:radial-gradient(circle, rgba(191,157,90,.4), transparent 70%); }
  .enq-eyebrow{ font-size:11px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--e-gold-soft); position:relative; z-index:1; }
  .enq-head h3{ font-family:Georgia,serif; font-size:1.7rem; font-weight:700; margin:6px 0 0; position:relative; z-index:1; }
  .enq-close{ position:absolute; top:18px; right:18px; z-index:2; width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,255,255,.25); background:transparent; color:#fff; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .2s, transform .3s; }
  .enq-close:hover{ background:var(--e-gold); border-color:var(--e-gold); transform:rotate(90deg); }
  .enq-body{ padding:26px 28px 30px; overflow-y:auto; }
  .enq-field{ margin-bottom:15px; }
  .enq-field label{ display:block; font-size:.74rem; font-weight:700; letter-spacing:.5px; text-transform:uppercase; color:var(--e-muted); margin-bottom:6px; }
  .enq-field input, .enq-field select, .enq-field textarea{
    width:100%; padding:12px 14px; border:1px solid var(--e-line); border-radius:10px; font-family:inherit; font-size:.95rem; color:var(--e-ink); background:var(--e-cream); transition:border-color .2s, box-shadow .2s; box-sizing:border-box; }
  .enq-field input:focus, .enq-field select:focus, .enq-field textarea:focus{ outline:none; border-color:var(--e-gold); box-shadow:0 0 0 3px rgba(191,157,90,.18); background:#fff; }
  .enq-row2{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
  .enq-btn{ width:100%; margin-top:6px; border:none; cursor:pointer; background:var(--e-navy); color:#fff; font-weight:600; font-size:1rem; font-family:inherit; padding:14px 22px; border-radius:30px; transition:background .25s, transform .25s; display:inline-flex; align-items:center; justify-content:center; gap:10px; }
  .enq-btn:hover{ background:var(--e-gold); transform:translateY(-2px); }
  .enq-note{ text-align:center; font-size:.78rem; color:var(--e-muted); margin:14px 0 0; }
  .enq-note a{ color:var(--e-gold); text-decoration:none; }
  .enq-success{ display:none; text-align:center; padding:30px 10px 10px; }
  .enq-success .tick{ width:64px; height:64px; border-radius:50%; margin:0 auto 18px; background:linear-gradient(135deg,var(--e-gold),#a9863f); color:#fff; display:flex; align-items:center; justify-content:center; }
  .enq-success h4{ font-family:Georgia,serif; color:var(--e-navy); font-size:1.4rem; margin:0 0 8px; }
  .enq-success p{ color:var(--e-muted); margin:0; line-height:1.6; }
  .enq-modal.done .enq-form{ display:none; }
  .enq-modal.done .enq-success{ display:block; }
  @media (max-width:480px){ .enq-row2{ grid-template-columns:1fr; } .enq-head h3{ font-size:1.45rem; } }