    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --green:      #1a7a4a;
      --green-dark: #0d4a2a;
      --green-lt:   #f0faf5;
      --accent:     #4dd98a;
      --text:       #111827;
      --text-2:     #4b5563;
      --text-3:     #9ca3af;
      --white:      #fff;
      --gray-50:    #f9fafb;
      --gray-100:   #f3f4f6;
      --gray-200:   #e5e7eb;
      --nav-h:      72px;
      --font:       Fabriga, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
    }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ── TOPBAR ── */
    .topbar { background: #fff; border-bottom: 1px solid rgba(0,0,0,0.07); padding: 9px 32px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
    .topbar__left { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: #444; white-space: nowrap; }
    .topbar__dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
    .topbar__center { font-size: 12.5px; color: #555; display: flex; align-items: center; gap: 6px; }
    .topbar__center svg { width: 11px; height: 11px; fill: var(--green); flex-shrink: 0; }
    .topbar__tel { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: #222; padding: 5px 14px; border: 1px solid #ddd; border-radius: 5px; text-decoration: none; white-space: nowrap; transition: border-color 0.15s, color 0.15s; }
    .topbar__tel svg { width: 12px; height: 12px; stroke: currentColor; fill: none; }
    .topbar__tel:hover { border-color: var(--green); color: var(--green); }
    @media (max-width: 768px) { .topbar { display: none; } }

    /* ── NAV ── */
    .nav { background: #fff; border-bottom: 1px solid rgba(0,0,0,0.09); position: fixed; top: 0; left: 0; right: 0; z-index: 200; box-shadow: 0 2px 20px rgba(0,0,0,0.08); height: var(--nav-h); }
    .nav__inner { width: 100%; padding: 0 40px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
    .nav__logo { display: flex; align-items: center; }
    .nav__logo img { max-height: 25px; height: auto; width: auto; display: block; }
    .nav__links { display: flex; align-items: center; list-style: none; flex: 1; justify-content: flex-start; gap: 10px; margin-left: 24px; }
    .nav__links a { font-size: 14.5px; font-weight: 500; color: #444; text-decoration: none; padding: 8px 13px; border-radius: 6px; transition: background 0.18s, color 0.18s; white-space: nowrap; }
    .nav__links a:hover { background: #f3f3f3; color: #111; }
    .nav__links li.nav__active a { color: var(--green); font-weight: 700; border-bottom: 2px solid var(--green); border-radius: 0; padding-bottom: 6px; }
    .nav__right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
    .nav__tel { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: #111; text-decoration: none; padding: 8px 16px; border: 1.5px solid #ddd; border-radius: 6px; transition: border-color 0.18s, background 0.18s, color 0.18s; white-space: nowrap; }
    .nav__tel svg { width: 14px; height: 14px; stroke: currentColor; fill: none; flex-shrink: 0; }
    .nav__tel:hover { border-color: var(--green); background: var(--green-lt); color: var(--green); }
    .btn-book { display: inline-flex; align-items: center; gap: 6px; background: var(--green); color: #fff; font-family: var(--font); font-size: 14px; font-weight: 700; padding: 10px 22px; border-radius: 6px; text-decoration: none; border: none; cursor: pointer; min-height: 44px; white-space: nowrap; transition: background 0.18s; }
    .btn-book:hover { background: var(--green-dark); }
    .nav__item-drop { position: static; list-style: none; }
    .nav__drop-toggle { display: inline-flex; align-items: center; gap: 5px; font-size: 14.5px; font-weight: 500; color: #444; padding: 8px 13px; border-radius: 6px; background: none; border: none; cursor: pointer; font-family: var(--font); transition: background 0.18s, color 0.18s; white-space: nowrap; }
    .nav__drop-toggle svg { width: 14px; height: 14px; transition: transform 0.22s; flex-shrink: 0; stroke: currentColor; fill: none; }
    .nav__item-drop.open .nav__drop-toggle svg { transform: rotate(180deg); }
    .nav__item-drop.open .nav__drop-toggle { background: #f3f3f3; color: #111; }
    .nav__mega { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: #fff; border-top: 2px solid var(--green); box-shadow: 0 12px 40px rgba(0,0,0,0.12); z-index: 190; padding: 28px 40px 32px; }
    .nav__item-drop.open .nav__mega { display: block; }
    .nav__mega-inner { padding: 0 40px; }
    .nav__mega-heading { font-size: 10.5px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; }
    .nav__mega-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }
    .nav__mega a.nav__mega-link { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 500; color: #333 !important; text-decoration: none; padding: 11px 14px; border-radius: 6px; white-space: nowrap; background: transparent; transition: background 0.15s, color 0.15s; }
    .nav__mega a.nav__mega-link:hover { background: #f0faf5 !important; color: var(--green) !important; }
    .nav__mega a.nav__mega-link svg { width: 15px; height: 15px; flex-shrink: 0; opacity: 0.40; fill: none; stroke: currentColor; stroke-width: 1.8; }
    .nav__mega a.nav__mega-link:hover svg { opacity: 1; }
    .nav__burger { display: none; flex-direction: column; gap: 5px; padding: 10px; background: none; border: none; cursor: pointer; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
    .nav__burger span { display: block; width: 22px; height: 2px; background: #333; border-radius: 2px; transition: transform 0.28s, opacity 0.28s; }
    .nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav__burger.open span:nth-child(2) { opacity: 0; }
    .nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav__drawer { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: #fff; border-bottom: 1px solid rgba(0,0,0,0.08); z-index: 199; padding: 8px 24px 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.10); }
    .nav__drawer.open { display: block; }
    .nav__drawer ul { list-style: none; }
    .nav__drawer ul li a { display: block; font-size: 16px; font-weight: 500; color: #222; padding: 14px 0; border-bottom: 1px solid #f0f0f0; text-decoration: none; }
    .nav__drawer ul li a:hover { color: var(--green); }
    .drawer-tel { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 700; color: var(--green); padding: 16px 0 4px; text-decoration: none; }
    .drawer-repairs-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; font-size: 16px; font-weight: 500; color: #222; padding: 14px 0; border-bottom: 1px solid #f0f0f0; background: none; border-top: none; border-left: none; border-right: none; cursor: pointer; font-family: var(--font); text-align: left; }
    .drawer-repairs-toggle svg { width: 16px; height: 16px; stroke: currentColor; fill: none; transition: transform 0.22s; }
    .drawer-repairs-toggle.open svg { transform: rotate(180deg); }
    .drawer-repairs-sub { display: none; list-style: none; padding-left: 12px; }
    .drawer-repairs-sub.open { display: block; }
    .drawer-repairs-sub li a { font-size: 14px; font-weight: 400; color: #555; padding: 10px 0; border-bottom: 1px solid #f5f5f5; }
    .drawer-repairs-sub li a:hover { color: var(--green); }
    @media (max-width: 1024px) { .nav__tel { display: none; } }
    @media (max-width: 1100px) { .nav__links, .btn-book { display: none; } .nav__burger { display: flex; } .nav__mega { display: none !important; } .nav__logo img { height: 13px; } .nav__inner { padding: 0 32px 0 16px; } }

    /* ── LEGAL CONTENT ── */
    .legal { max-width: 860px; margin: 0 auto; padding: 56px 24px 88px; }
    .legal__title { font-size: clamp(28px, 3.4vw, 42px); font-weight: 900; color: var(--text); letter-spacing: -0.8px; margin-bottom: 8px; }
    .legal__intro { font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 28px; }
    .legal hr { border: none; border-top: 1px solid var(--gray-200); margin: 28px 0; }
    .legal h3 { font-size: 20px; font-weight: 800; color: var(--text); letter-spacing: -0.3px; margin: 28px 0 12px; }
    .legal h4 { font-size: 16px; font-weight: 700; color: var(--text); margin: 20px 0 8px; }
    .legal p { font-size: 15px; color: var(--text-2); line-height: 1.75; margin: 0 0 12px; }
    .legal ul { list-style: disc; padding-left: 22px; margin: 0 0 16px; }
    .legal li { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 8px; }
    .legal a { color: var(--green); text-decoration: underline; }
    @media (max-width: 600px) { .legal { padding: 40px 16px 64px; } }
