#navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(200,80,26,0.15);
    display: flex;
    align-items: center;
    transition: box-shadow 0.3s, background 0.3s;
  }
  #navbar.scrolled {
    box-shadow: 0 2px 28px rgba(0,0,0,0.10);
    background: rgba(255,255,255,0.99);
  }

  .nav-inner {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
  }

  .nav-logo img {
    height: 75px;
    width: auto;
    display: block;
    flex-shrink: 0;
  }

  /* ── DESKTOP MENU ── */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
  }

  .nav-links > li {
    position: relative;
  }

  .nav-links > li > a,
  .nav-links > li > button {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 13px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: color 0.18s, background 0.18s;
    white-space: nowrap;
  }
  .nav-links > li > a:hover,
  .nav-links > li > button:hover {
    color: var(--orange);
    background: rgba(200,80,26,0.07);
  }

  /* Active pill */
  .nav-links > li.active > a {
    color: var(--orange);
    background: rgba(200,80,26,0.09);
    border-radius: 20px;
  }

  /* Chevron */
  .chevron {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    transition: transform 0.22s;
  }
  .nav-links > li.open .chevron {
    transform: rotate(180deg);
  }

  /* Invisible bridge between button and dropdown */
  #servicesItem::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 200px;
    height: 14px;
    background: transparent;
    display: none;
  }
  #servicesItem:hover::after {
    display: block;
  }

  /* ── DROPDOWN ── */
  .dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1.5px solid #E8E4DF;
    border-top: 3px solid var(--orange);
    border-radius: 10px;
    box-shadow: var(--shadow);
    min-width: 220px;
    padding: 18px 0 14px;
    z-index: 999;
    animation: fadeDown 0.18s ease;
  }
  .nav-links > li.open .dropdown,
  .nav-links > li:hover .dropdown {
    display: block;
  }

  @keyframes fadeDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
  }

  .dropdown-col {
    flex: 1;
    padding: 0 20px;
    border-right: 1px solid #E8E4DF;
  }
  .dropdown-col:last-child {
    border-right: none;
  }
  .dropdown-col-title {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
    padding-bottom: 7px;
    border-bottom: 1px solid #E8E4DF;
  }
  .dropdown-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1px;
  }
  .dropdown-col ul li a {
    display: block;
    padding: 7px 10px;
    font-family: var(--font-ui);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--charcoal);
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s, padding-left 0.18s;
    line-height: 1.4;
  }
  .dropdown-col ul li a:hover {
    background: var(--off-white);
    color: var(--orange);
    padding-left: 16px;
  }

  /* ── CTA BUTTON ── */
  .nav-cta {
    background: var(--orange) !important;
    color: #fff !important;
    padding: 9px 20px !important;
    border-radius: 5px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.07em !important;
    box-shadow: 0 3px 12px rgba(200,80,26,0.3);
    transition: background 0.2s, transform 0.15s !important;
  }
  .nav-cta:hover {
    background: var(--orange-dark) !important;
    transform: translateY(-1px) !important;
    color: #fff !important;
  }

  /* ── HAMBURGER ── */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 7px;
    transition: background 0.15s;
    margin-left: auto;
    flex-shrink: 0;
  }
  .hamburger:hover { background: rgba(200,80,26,0.08); }
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.2s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── MOBILE DRAWER ── */
  .mobile-drawer {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: #fff;
    overflow-y: auto;
    z-index: 998;
    padding: 12px 0 48px;
    border-top: 2px solid var(--orange);
    animation: slideIn 0.22s ease;
  }
  @keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .mobile-drawer.open { display: block; }

  .mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
  }

  .mobile-nav-list > li > a,
  .mobile-nav-list > li > button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--charcoal-dark);
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
    border-bottom: 1px solid #E8E4DF;
    transition: background 0.15s, color 0.15s;
  }
  .mobile-nav-list > li > a:hover,
  .mobile-nav-list > li > button:hover {
    background: var(--off-white);
    color: var(--orange);
  }
  .mobile-nav-list > li.active > a {
    color: var(--orange);
  }

  /* Mobile sub-accordion */
  .mobile-sub {
    display: none;
    background: var(--off-white);
    border-bottom: 1px solid #E8E4DF;
  }
  .mobile-sub.open { display: block; }

  .mobile-sub-section {
    padding: 10px 24px 8px 38px;
  }
  .mobile-sub-section-title {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-top: 10px;
    margin-bottom: 6px;
  }
  .mobile-sub ul {
    list-style: none;
  }
  .mobile-sub ul li a {
    display: block;
    padding: 9px 0;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    text-decoration: none;
    border-bottom: 1px solid #ede8e3;
    transition: color 0.15s, padding-left 0.15s;
    letter-spacing: 0.02em;
  }
  .mobile-sub ul li:last-child a { border-bottom: none; }
  .mobile-sub ul li a:hover {
    color: var(--orange);
    padding-left: 8px;
  }

  .mobile-chevron {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.22s;
  }
  .mobile-nav-list > li.open .mobile-chevron {
    transform: rotate(180deg);
  }

  /* Mobile CTA */
  .mobile-nav-list .mobile-cta > a {
    color: var(--charcoal-dark);
    font-weight: 700;
    border-bottom: none;
    padding-top: 20px;
  }
  .mobile-nav-list .mobile-cta > a::after {
    content: ' →';
  }

  /* ── RESPONSIVE BREAKPOINTS ── */
  @media (max-width: 1100px) {
    .nav-links > li > a,
    .nav-links > li > button {
      padding: 8px 9px;
      font-size: 12px;
    }
    .nav-cta {
      padding: 8px 14px !important;
    }
  }

  @media (max-width: 820px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-inner { gap: 0; }
  }

  @media (min-width: 821px) {
    .mobile-drawer { display: none !important; }
    .hamburger { display: none !important; }
  }

  @media (max-width: 460px) {
    .nav-inner { padding: 0 18px; }
  }

