:root {
      --nav-height: 72px;
      --transition: 220ms;
      --menu-font: 15px;
      --menu-pad-x: 14px;
      --menu-gap: 18px;
    }

    .hero {
      height: 420px;
      background: url('hero.jpg') center/cover no-repeat;
      position: relative;
    }

    .hero .overlay-text {
      position: absolute;
      left: 40px;
      bottom: 70px;
      color: #fff;
      font-size: 32px;
      font-weight: 700;
      text-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: var(--nav-height);
      z-index: 1000;
      display: flex;
      align-items: center;
      transition: background var(--transition), box-shadow var(--transition);
      padding: 0 40px;
      background: transparent;
      color: #fff;
    }

    .site-header.scrolled {
      background: rgba(0, 0, 0, 0.95);
      box-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
      backdrop-filter: blur(6px);
    }

    .nav-inner {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo1 {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .logo1 img {
      height: 46px;
      display: block;
    }

    nav.primary-nav {
      flex: 1;
      display: flex;
      justify-content: center;
      min-width: 0;
    }

    .menu-row {
      display: flex;
      align-items: center;
      gap: var(--menu-gap);
      white-space: nowrap;
      flex-wrap: nowrap;
      transition: gap var(--transition), transform var(--transition);
      min-width: 0;
    }

    .menu-row a {
      display: inline-block;
      padding: 8px var(--menu-pad-x);
      border-radius: 22px;
      font-weight: 600;
      font-size: var(--menu-font);
      color: rgba(255, 255, 255, 0.95);
      position: relative;
      transition: color var(--transition), background var(--transition);
    }

    .menu-row a::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 24px;
      border: 2px solid transparent;
      transition: border-color var(--transition);
    }

    .menu-row a:hover::before {
      border-color: rgba(255, 255, 255, 0.18);
    }

    .menu-row a.active {
      background: rgba(255, 255, 255, 0.06);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
    }

    .icon-circle {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 2px solid rgba(255, 255, 255, 0.15);
      transition: transform var(--transition);
      cursor: pointer;
    }

    .icon-circle:hover {
      transform: translateY(-2px);
    }

    .phone-block {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      font-size: 13px;
      line-height: 1.1;
    }

    .phone-block strong {
      font-size: 14px;
      color: #fff;
    }

    .search-bar {
      position: fixed;
      top: var(--nav-height);
      left: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
      padding: 14px 40px;
      display: none;
      align-items: center;
      justify-content: center;
      gap: 12px;
      z-index: 900;
      backdrop-filter: blur(4px);
    }

    .search-bar.open {
      display: flex;
      animation: fadeIn 0.3s ease;
    }

    .search-bar input {
      flex: 1;
      max-width: 500px;
      border: 1px solid #ccc;
      padding: 10px 14px;
      border-radius: 6px;
      font-size: 16px;
      outline: none;
    }

    .search-bar button {
      background: #000;
      color: #fff;
      border: none;
      padding: 10px 18px;
      border-radius: 6px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.25s;
    }

    .search-bar button:hover {
      background: #333;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-5px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hamburger {
      display: none;
      width: 40px;
      height: 40px;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.03);
    }

    @media (max-width: 1300px) {
      .phone-block {
        display: none;
      }
    }

    @media (max-width: 1100px) {
      .menu-row {
        display: none;
      }

      .hamburger {
        display: flex;
      }
    }

    .mobile-drawer {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 320px;
      max-width: 92vw;
      background: #fff;
      transform: translateX(-110%);
      transition: transform 0.32s;
      z-index: 1500;
      overflow: auto;
      padding: 22px;
    }

    .mobile-drawer.open {
      transform: translateX(0);
    }

    .drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.36);
      z-index: 1400;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s;
    }

    .drawer-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }

    .drawer-close {
      margin-left: auto;
      width: 44px;
      height: 44px;
      border-radius: 8px;
      border: 1px solid #ddd;
      display: grid;
      place-items: center;
    }

    .drawer-menu {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 55px;
      color: #000;
    }

    .drawer-help {
      margin-top: 28px;
      padding: 16px;
      background: #fafafa;
      border-radius: 10px;
      display: flex;
      gap: 12px;
      align-items: center;
    }

    main {
      padding-top: var(--nav-height);
    }

    .drawer-menu #colorr {
      color: #000;
    }