:root {
  --font-family: "IBM Plex Sans", sans-serif;
  --font-size-base: 15.4px;
  --line-height-base: 1.94;

  --max-w: 1020px;
  --space-x: 1.3rem;
  --space-y: 1.5rem;
  --gap: 0.79rem;

  --radius-xl: 1.32rem;
  --radius-lg: 1rem;
  --radius-md: 0.67rem;
  --radius-sm: 0.34rem;

  --shadow-sm: 0 0px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 6px 14px rgba(0,0,0,0.05);
  --shadow-lg: 0 14px 22px rgba(0,0,0,0.06);

  --overlay: rgba(0,0,0,0.4);
  --anim-duration: 640ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 1;

  --brand: #8B4513;
  --brand-contrast: #FFFFFF;
  --accent: #D2691E;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8F5F2;
  --neutral-300: #E0D7CF;
  --neutral-600: #8C8279;
  --neutral-800: #4A423C;
  --neutral-900: #2A2520;

  --bg-page: #FFFFFF;
  --fg-on-page: #2A2520;

  --bg-alt: #F8F5F2;
  --fg-on-alt: #4A423C;

  --surface-1: #FFFFFF;
  --surface-2: #F8F5F2;
  --fg-on-surface: #2A2520;
  --border-on-surface: #E0D7CF;

  --surface-light: #FFFDFB;
  --fg-on-surface-light: #5D2906;
  --border-on-surface-light: #F0E6DC;

  --bg-primary: #8B4513;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #A0522D;
  --ring: rgba(139, 69, 19, 0.3);

  --bg-accent: #FFF8F0;
  --fg-on-accent: #5D2906;
  --bg-accent-hover: #A0522D;

  --link: #8B4513;
  --link-hover: #A0522D;

  --gradient-hero: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
  --gradient-accent: linear-gradient(90deg, #FFF8F0 0%, #F0E6DC 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.68);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  max-width: var(--max-w);
  margin: 0 auto;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-y) var(--space-x);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
}

.contact-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.contact-cta:hover {
  background-color: var(--bg-accent-hover);
  color: var(--fg-on-accent);
}

.header-bottom {
  position: relative;
  padding: 0 var(--space-x) var(--space-y);
}

.main-nav {
  display: block;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
  justify-content: center;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--link);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  padding: 0;
  position: absolute;
  right: var(--space-x);
  top: 0;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .header-bottom {
    padding-bottom: 0;
    display: flex;
    justify-content: center;
  }
  .main-nav {
    width: 100%;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav-list.active {
    max-height: 500px;
    padding: var(--space-y) 0;
  }
  .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger-menu {
    display: flex;
    position: static;
    align-self: center;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #2c1810;
        color: #e0d6cf;
        padding: 3rem 1rem 1rem;
        font-family: sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a3329;
    }
    .footer-brand .logo {
        color: #d4b596;
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #b8a38f;
    }
    .footer-nav h4,
    .footer-legal h4,
    .footer-contacts h4 {
        color: #d4b596;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a,
    .footer-legal a {
        color: #e0d6cf;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #d4b596;
        text-decoration: underline;
    }
    .footer-contacts address p {
        margin-bottom: 0.7rem;
    }
    .footer-contacts a {
        color: #e0d6cf;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #d4b596;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
        font-size: 0.9rem;
        color: #b8a38f;
    }
    .footer-social {
        display: flex;
        gap: 1.2rem;
    }
    .footer-social a {
        color: #b8a38f;
        text-decoration: none;
    }
    .footer-social a:hover {
        color: #d4b596;
    }
    .footer-disclaimer {
        flex-basis: 100%;
        order: 3;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #4a3329;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .footer-social {
            order: 2;
            margin-top: 0.5rem;
        }
        .footer-copyright {
            order: 1;
        }
        .footer-disclaimer {
            order: 3;
        }
    }
    @media (max-width: 480px) {
        .footer-grid {
            grid-template-columns: 1fr;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.intro-block-l10 {
        padding: clamp(3.5rem, 8vw, 6.4rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        color: var(--fg-on-page);
    }

    .intro-block-l10__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .intro-block-l10__eyebrow {
        color: var(--brand);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .intro-block-l10__wrap h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4rem);
        line-height: 1.04;
    }

    .intro-block-l10__cols {
        margin-top: 1.15rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .intro-block-l10__cols strong {
        display: block;
        color: var(--fg-on-page);
    }

    .intro-block-l10__cols p {
        margin: .7rem 0 0;
        color: var(--neutral-600);
    }

    .intro-block-l10__actions {
        margin-top: 1rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-block-l10__actions a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .intro-block-l10__actions a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    @media (max-width: 760px) {
        .intro-block-l10__cols {
            grid-template-columns: 1fr;
        }
    }

    .intro-block-l10 {
        overflow: hidden;
    }

    .intro-block-l10__wrap {
        background-image: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)), url('https://images.pexels.com/photos/302899/pexels-photo-302899.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--space-x)
    }

.cta-struct-v4 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--bg-primary);
        color: var(--fg-on-primary)
    }

    .cta-struct-v4 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .cta-struct-v4 h2, .cta-struct-v4 h3, .cta-struct-v4 p {
        margin: 0
    }

    .cta-struct-v4 a {
        text-decoration: none
    }

    .cta-struct-v4 .center, .cta-struct-v4 .banner, .cta-struct-v4 .stack, .cta-struct-v4 .bar, .cta-struct-v4 .split, .cta-struct-v4 .duo article {
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    .cta-struct-v4 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

    .cta-struct-v4 .split {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    .cta-struct-v4 .actions {
        display: flex;
        gap: .45rem;
        flex-wrap: wrap
    }

    .cta-struct-v4 .actions a, .cta-struct-v4 .center a, .cta-struct-v4 .banner > a, .cta-struct-v4 .duo a {
        display: inline-flex;
        min-height: 2.35rem;
        padding: 0 .85rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .cta-struct-v4 .banner {
        display: grid;
        gap: .6rem
    }

    .cta-struct-v4 .numbers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: .5rem
    }

    .cta-struct-v4 .numbers div {
        padding: .6rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

    .cta-struct-v4 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .cta-struct-v4 .duo article {
        display: grid;
        gap: .45rem
    }

    .cta-struct-v4 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .cta-struct-v4 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

    .cta-struct-v4 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

    .cta-struct-v4 .bar {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    @media (max-width: 820px) {
        .cta-struct-v4 .split, .cta-struct-v4 .bar, .cta-struct-v4 .duo {
            grid-template-columns:1fr
        }

        .cta-struct-v4 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .cta-struct-v4 .numbers {
            grid-template-columns:1fr
        }
    }

.index-recommendations-steps {
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

    .index-recommendations-steps__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .index-recommendations-steps__h {
        text-align: center;
        margin-bottom: clamp(24px, 6vw, 52px);

        transform: translateY(-18px);
    }

    .index-recommendations-steps__h h2 {
        margin: 0 0 10px;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

    .index-recommendations-steps__h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .index-recommendations-steps__steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(16px, 3vw, 26px);
    }

    .index-recommendations-steps__step {
        position: relative;

        transform: translateY(26px);
    }

    .index-recommendations-steps__num {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        position: absolute;
        top: 18px;
        left: 50px;
        font-size: 12px;
        box-shadow: var(--shadow-md);
    }

    .index-recommendations-steps__box {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-md);
        padding: 26px 18px 18px;
        height: 100%;
    }

    .index-recommendations-steps__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

    .index-recommendations-steps__icon {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: var(--fg-on-accent);
        flex: 0 0 auto;
    }

    .index-recommendations-steps__tag {
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--fg-on-surface);
        border: 1px solid var(--border-on-surface);
        color: var(--surface-1);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .index-recommendations-steps__box h3 {
        margin: 0 0 10px;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-surface-light);
    }

    .index-recommendations-steps__why {
        margin: 0 0 10px;
        font-size: 12px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--fg-on-surface-light);
        opacity: 0.75;
    }

    .index-recommendations-steps__desc {
        margin: 0 0 14px;
        color: var(--fg-on-surface-light);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-steps__cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .index-recommendations-steps__cta::after {
        content: '->';
    }

    .index-recommendations-steps__cta:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

.why-choose {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
    }

    .why-choose .why-choose__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .why-choose .why-choose__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

        transform: translateY(20px);
    }

    .why-choose h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .why-choose .why-choose__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

    .why-choose .why-choose__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--gap);
    }

    .why-choose .why-choose__item {
        background: var(--fg-on-primary);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        transition: transform var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose .why-choose__item:hover {
        transform: translateY(-4px);
    }

    .why-choose .why-choose__icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-md);
        margin-bottom: 1rem;
        font-size: 24px;
    }

    .why-choose .why-choose__item h3 {
        font-size: clamp(18px, 2.2vw, 22px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .why-choose .why-choose__item p {
        margin: 0;
        color: var(--fg-on-surface-light);
        opacity: 0.85;
        line-height: var(--line-height-base);
    }

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  max-width: var(--max-w);
  margin: 0 auto;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-y) var(--space-x);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
}

.contact-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.contact-cta:hover {
  background-color: var(--bg-accent-hover);
  color: var(--fg-on-accent);
}

.header-bottom {
  position: relative;
  padding: 0 var(--space-x) var(--space-y);
}

.main-nav {
  display: block;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
  justify-content: center;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--link);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  padding: 0;
  position: absolute;
  right: var(--space-x);
  top: 0;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .header-bottom {
    padding-bottom: 0;
    display: flex;
    justify-content: center;
  }
  .main-nav {
    width: 100%;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav-list.active {
    max-height: 500px;
    padding: var(--space-y) 0;
  }
  .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger-menu {
    display: flex;
    position: static;
    align-self: center;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #2c1810;
        color: #e0d6cf;
        padding: 3rem 1rem 1rem;
        font-family: sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a3329;
    }
    .footer-brand .logo {
        color: #d4b596;
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #b8a38f;
    }
    .footer-nav h4,
    .footer-legal h4,
    .footer-contacts h4 {
        color: #d4b596;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a,
    .footer-legal a {
        color: #e0d6cf;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #d4b596;
        text-decoration: underline;
    }
    .footer-contacts address p {
        margin-bottom: 0.7rem;
    }
    .footer-contacts a {
        color: #e0d6cf;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #d4b596;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
        font-size: 0.9rem;
        color: #b8a38f;
    }
    .footer-social {
        display: flex;
        gap: 1.2rem;
    }
    .footer-social a {
        color: #b8a38f;
        text-decoration: none;
    }
    .footer-social a:hover {
        color: #d4b596;
    }
    .footer-disclaimer {
        flex-basis: 100%;
        order: 3;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #4a3329;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .footer-social {
            order: 2;
            margin-top: 0.5rem;
        }
        .footer-copyright {
            order: 1;
        }
        .footer-disclaimer {
            order: 3;
        }
    }
    @media (max-width: 480px) {
        .footer-grid {
            grid-template-columns: 1fr;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.about-timeline {

        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(16px, 3vw, 40px);
    }

    .about-timeline .about-timeline__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .about-timeline .about-timeline__grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-timeline .about-timeline__cell {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
    }

    .about-timeline time {
        opacity: .9;
    }

    @media (max-width: 767px) {
        .about-timeline .about-timeline__grid {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }
    }

.testimonials-struct-v2 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

    .testimonials-struct-v2 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .testimonials-struct-v2 h2, .testimonials-struct-v2 h3, .testimonials-struct-v2 p {
        margin: 0
    }

    .testimonials-struct-v2 article, .testimonials-struct-v2 blockquote, .testimonials-struct-v2 figure, .testimonials-struct-v2 .spotlight, .testimonials-struct-v2 .row {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .testimonials-struct-v2 .grid {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .testimonials-struct-v2 .rail {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: .6rem
    }

    .testimonials-struct-v2 .stack {
        display: grid;
        gap: .65rem
    }

    .testimonials-struct-v2 .stack article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .testimonials-struct-v2 img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .testimonials-struct-v2 .table {
        display: grid;
        gap: .45rem
    }

    .testimonials-struct-v2 .row {
        display: grid;
        grid-template-columns:12rem 1fr;
        gap: .6rem
    }

    .testimonials-struct-v2 .wall {
        columns: 3;
        column-gap: var(--gap)
    }

    .testimonials-struct-v2 blockquote {
        break-inside: avoid;
        margin: 0 0 var(--gap) 0;
        display: grid;
        gap: .4rem
    }

    .testimonials-struct-v2 .slider {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap)
    }

    .testimonials-struct-v2 .dots {
        display: flex;
        justify-content: center;
        gap: .4rem
    }

    .testimonials-struct-v2 .dots span {
        padding: .25rem .45rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .testimonials-struct-v2 .grid, .testimonials-struct-v2 .rail, .testimonials-struct-v2 .slider {
            grid-template-columns:1fr 1fr
        }

        .testimonials-struct-v2 .wall {
            columns: 2
        }
    }

    @media (max-width: 680px) {
        .testimonials-struct-v2 .grid, .testimonials-struct-v2 .rail, .testimonials-struct-v2 .slider, .testimonials-struct-v2 .row {
            grid-template-columns:1fr
        }

        .testimonials-struct-v2 .wall {
            columns: 1
        }
    }

.identity-cv5 {
        padding: clamp(52px, 8vw, 96px) clamp(16px, 4vw, 40px);
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .identity-cv5__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .identity-cv5__hero {
        position: relative;
        border-radius: var(--radius-xl);
        overflow: hidden;
        min-height: 220px;
    }

    .identity-cv5__hero img {
        width: 100%;
        height: 100%;
        min-height: 220px;
        object-fit: cover;
        display: block;
    }

    .identity-cv5__overlay {
        position: absolute;
        inset: auto 0 0 0;
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0), var(--overlay));
    }

    .identity-cv5__overlay h2 {
        margin: 0;
        font-size: clamp(26px, 4vw, 42px);
    }

    .identity-cv5__overlay span {
        opacity: .92;
    }

    .identity-cv5__grid {
        margin-top: 14px;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: var(--gap);
    }

    .identity-cv5__grid p {
        margin: 0 0 10px;
    }

    .identity-cv5__grid ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .identity-cv5__grid li {
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: var(--radius-md);
        padding: 10px 12px;
    }

    @media (max-width: 800px) {
        .identity-cv5__grid {
            grid-template-columns: 1fr;
        }
    }

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  max-width: var(--max-w);
  margin: 0 auto;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-y) var(--space-x);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
}

.contact-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.contact-cta:hover {
  background-color: var(--bg-accent-hover);
  color: var(--fg-on-accent);
}

.header-bottom {
  position: relative;
  padding: 0 var(--space-x) var(--space-y);
}

.main-nav {
  display: block;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
  justify-content: center;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--link);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  padding: 0;
  position: absolute;
  right: var(--space-x);
  top: 0;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .header-bottom {
    padding-bottom: 0;
    display: flex;
    justify-content: center;
  }
  .main-nav {
    width: 100%;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav-list.active {
    max-height: 500px;
    padding: var(--space-y) 0;
  }
  .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger-menu {
    display: flex;
    position: static;
    align-self: center;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #2c1810;
        color: #e0d6cf;
        padding: 3rem 1rem 1rem;
        font-family: sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a3329;
    }
    .footer-brand .logo {
        color: #d4b596;
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #b8a38f;
    }
    .footer-nav h4,
    .footer-legal h4,
    .footer-contacts h4 {
        color: #d4b596;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a,
    .footer-legal a {
        color: #e0d6cf;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #d4b596;
        text-decoration: underline;
    }
    .footer-contacts address p {
        margin-bottom: 0.7rem;
    }
    .footer-contacts a {
        color: #e0d6cf;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #d4b596;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
        font-size: 0.9rem;
        color: #b8a38f;
    }
    .footer-social {
        display: flex;
        gap: 1.2rem;
    }
    .footer-social a {
        color: #b8a38f;
        text-decoration: none;
    }
    .footer-social a:hover {
        color: #d4b596;
    }
    .footer-disclaimer {
        flex-basis: 100%;
        order: 3;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #4a3329;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .footer-social {
            order: 2;
            margin-top: 0.5rem;
        }
        .footer-copyright {
            order: 1;
        }
        .footer-disclaimer {
            order: 3;
        }
    }
    @media (max-width: 480px) {
        .footer-grid {
            grid-template-columns: 1fr;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.values-ladder-l4 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .values-ladder-l4__wrap {
        max-width: 56rem;
        margin: 0 auto;
    }

    .values-ladder-l4__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

    .values-ladder-l4__head h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .values-ladder-l4__head p {
        margin: .65rem auto 0;
        max-width: 40rem;
        color: var(--neutral-600);
    }

    .values-ladder-l4__rows {
        display: grid;
        gap: .8rem;
    }

    .values-ladder-l4__rows article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .85rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-ladder-l4__step {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        color: var(--brand);
    }

    .values-ladder-l4__rows h3 {
        margin: 0;
    }

    .values-ladder-l4__rows p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

    .values-ladder-l4__rows span {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

.index-feedback {
        background: radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.7), transparent 60%),
        radial-gradient(circle at 85% 65%, rgba(212, 165, 165, 0.35), transparent 55%),
        var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

    .index-feedback__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .index-feedback__h {
        text-align: center;
        margin-bottom: clamp(28px, 6vw, 60px);

        transform: translateY(-18px);
    }

    .index-feedback__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-feedback__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

    .index-feedback__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-feedback__card {
        border-radius: var(--radius-xl);
        border: 1px solid rgba(58, 46, 61, 0.12);
        background: rgba(255, 255, 255, 0.6);
        box-shadow: var(--shadow-lg);
        padding: clamp(18px, 3vw, 26px);
        backdrop-filter: blur(10px);

        transform: translateY(28px);
        position: relative;
        overflow: hidden;
    }

    .index-feedback__card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 55%);
        opacity: 0.6;
        pointer-events: none;
    }

    .index-feedback__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
        position: relative;
        z-index: 1;
    }

    .index-feedback__who {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }

    .index-feedback__name {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback__meta {
        margin: 2px 0 0;
        font-size: 13px;
        color: rgba(58, 46, 61, 0.7);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 22ch;
    }

    .index-feedback__rating {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 10px;
        border-radius: 999px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        flex: 0 0 auto;
    }

    .index-feedback__stars {
        font-size: 14px;
        letter-spacing: 0.08em;
        color: var(--accent);
        line-height: 1;
    }

    .index-feedback__score {
        font-size: 12px;
        font-weight: 700;
        color: var(--fg-on-page);
    }

    .index-feedback__quote {
        margin: 14px 0 0;
        position: relative;
        z-index: 1;
        color: rgba(58, 46, 61, 0.88);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-feedback__badge {
        display: inline-flex;
        margin-top: 12px;
        position: relative;
        z-index: 1;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid var(--border-on-surface-light);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

.features-struct-v2 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

    .features-struct-v2 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .features-struct-v2 h2, .features-struct-v2 h3, .features-struct-v2 p {
        margin: 0
    }

    .features-struct-v2 .head {
        display: grid;
        gap: calc(var(--gap) * .35)
    }

    .features-struct-v2 .grid {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .features-struct-v2 article {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .9rem;
        display: grid;
        gap: .5rem
    }

    .features-struct-v2 .icon {
        min-height: 2rem;
        min-width: 2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-1);
        border-radius: var(--radius-sm)
    }

    .features-struct-v2 a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .features-struct-v2 .layout {
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap)
    }

    .features-struct-v2 .chips {
        display: flex;
        flex-wrap: wrap;
        gap: .4rem
    }

    .features-struct-v2 .chips span {
        padding: .3rem .55rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v2 .list {
        display: grid;
        gap: .6rem
    }

    .features-struct-v2 .list div {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v2 .timeline {
        display: grid;
        gap: .7rem
    }

    .features-struct-v2 .timeline article {
        position: relative;
        padding-left: 1.2rem
    }

    .features-struct-v2 .timeline article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .5rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .features-struct-v2 .side img, .features-struct-v2 .media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .features-struct-v2 .table {
        display: grid;
        gap: .45rem
    }

    .features-struct-v2 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .5rem;
        padding: .65rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v2 .cards {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v2 .cta {
        display: flex;
        justify-content: flex-start
    }

    .features-struct-v2 .split {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v2 details {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .features-struct-v2 .grid, .features-struct-v2 .cards {
            grid-template-columns:1fr 1fr
        }

        .features-struct-v2 .layout, .features-struct-v2 .split {
            grid-template-columns:1fr
        }
    }

    @media (max-width: 680px) {
        .features-struct-v2 .grid, .features-struct-v2 .cards, .features-struct-v2 .row {
            grid-template-columns:1fr
        }
    }

.hiw-ribbon-c1 {
        padding: clamp(3.5rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .hiw-ribbon-c1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .hiw-ribbon-c1__head {
        margin-bottom: 1.25rem;
    }

    .hiw-ribbon-c1__head p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .82rem;
    }

    .hiw-ribbon-c1__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

    .hiw-ribbon-c1__track {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        gap: var(--gap);
    }

    .hiw-ribbon-c1__track article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--fg-on-primary);
        color:  var(--bg-primary);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-md);
        position: relative;
    }

    .hiw-ribbon-c1__track article::after {
        content: '';
        position: absolute;
        inset: auto 1rem 0.7rem 1rem;
        height: 2px;
        background: linear-gradient(90deg, rgba(255, 255, 255, .45), transparent);
    }

    .hiw-ribbon-c1__track span {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .hiw-ribbon-c1__track h3 {
        margin: .8rem 0 .35rem;
    }

    .hiw-ribbon-c1__track p {
        margin: 0;
        color: rgba(255, 255, 255, .84);
    }

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  max-width: var(--max-w);
  margin: 0 auto;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-y) var(--space-x);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
}

.contact-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.contact-cta:hover {
  background-color: var(--bg-accent-hover);
  color: var(--fg-on-accent);
}

.header-bottom {
  position: relative;
  padding: 0 var(--space-x) var(--space-y);
}

.main-nav {
  display: block;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
  justify-content: center;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--link);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  padding: 0;
  position: absolute;
  right: var(--space-x);
  top: 0;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .header-bottom {
    padding-bottom: 0;
    display: flex;
    justify-content: center;
  }
  .main-nav {
    width: 100%;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav-list.active {
    max-height: 500px;
    padding: var(--space-y) 0;
  }
  .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger-menu {
    display: flex;
    position: static;
    align-self: center;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #2c1810;
        color: #e0d6cf;
        padding: 3rem 1rem 1rem;
        font-family: sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a3329;
    }
    .footer-brand .logo {
        color: #d4b596;
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #b8a38f;
    }
    .footer-nav h4,
    .footer-legal h4,
    .footer-contacts h4 {
        color: #d4b596;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a,
    .footer-legal a {
        color: #e0d6cf;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #d4b596;
        text-decoration: underline;
    }
    .footer-contacts address p {
        margin-bottom: 0.7rem;
    }
    .footer-contacts a {
        color: #e0d6cf;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #d4b596;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
        font-size: 0.9rem;
        color: #b8a38f;
    }
    .footer-social {
        display: flex;
        gap: 1.2rem;
    }
    .footer-social a {
        color: #b8a38f;
        text-decoration: none;
    }
    .footer-social a:hover {
        color: #d4b596;
    }
    .footer-disclaimer {
        flex-basis: 100%;
        order: 3;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #4a3329;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .footer-social {
            order: 2;
            margin-top: 0.5rem;
        }
        .footer-copyright {
            order: 1;
        }
        .footer-disclaimer {
            order: 3;
        }
    }
    @media (max-width: 480px) {
        .footer-grid {
            grid-template-columns: 1fr;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.touch-orbit {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-accent);
        color: var(--fg-on-surface-light);
    }

    .touch-orbit .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .touch-orbit .header {
        margin-bottom: 14px;
        text-align: center;
    }

    .touch-orbit h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--fg-on-surface-light);
    }

    .touch-orbit .header p {
        margin: 10px auto 0;
        max-width: 64ch;
        opacity: .92;
        color: var(--fg-on-surface-light);
    }

    .touch-orbit .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
    }

    .touch-orbit .card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-light);
        padding: 12px;
        animation: orbitIn 420ms ease both;
        color: var(--fg-on-surface-light);
    }

    .touch-orbit .card:nth-child(2) {
        animation-delay: 90ms;
    }

    .touch-orbit .card:nth-child(3) {
        animation-delay: 180ms;
    }

    .touch-orbit .icon,
    .touch-orbit .badge,
    .touch-orbit h3,
    .touch-orbit .card p {
        margin: 0 0 8px;
    }

    .touch-orbit .badge {
        display: inline-block;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        padding: 2px 8px;
        border-radius: var(--radius-sm);
        font-size: 0.85em;
    }

    .touch-orbit .card a {
        color: var(--link);
        text-decoration: underline;
    }

    .touch-orbit .card a:hover {
        color: var(--link-hover);
    }

    .touch-orbit .main {
        display: inline-block;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: none;
        cursor: pointer;
        font-family: inherit;
        font-size: inherit;
    }

    .touch-orbit .main:hover {
        background: var(--bg-primary-hover);
    }

    @keyframes orbitIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

.contacts-fresh-v3 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .contacts-fresh-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: calc(var(--gap) * 2);
    }

    .contacts-fresh-v3 .left h2 {
        margin: .3rem 0;
        font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    }

    .contacts-fresh-v3 .left p {
        max-width: 46ch;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v3 .right {
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v3 .row {
        padding: 1rem 1.1rem;
        border-left: 4px solid var(--bg-primary);
        background: var(--surface-2);
        border-radius: var(--radius-sm);
    }

    .contacts-fresh-v3 h3 {
        margin: 0 0 .3rem;
    }

    .contacts-fresh-v3 p {
        margin: 0;
        font-weight: 700;
    }

    .contacts-fresh-v3 small {
        color: var(--fg-on-surface-light);
    }

    @media (max-width: 900px) {
        .contacts-fresh-v3 .shell {
            grid-template-columns:1fr;
        }
    }

.map-shell-c4 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .map-shell-c4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .map-shell-c4__band {
        margin-bottom: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .map-shell-c4__band h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .map-shell-c4__band p {
        margin: 0;
        color: rgba(255, 255, 255, .82);
    }

    .map-shell-c4__shell {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1rem;
    }

    .map-shell-c4__shell iframe {
        display: block;
        width: 100%;
        min-height: 24rem;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-shell-c4__cards {
        display: grid;
        gap: .75rem;
    }

    .map-shell-c4__cards article {
        padding: .95rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-shell-c4__cards p {
        margin: .35rem 0 0;
        color: rgba(255, 255, 255, .84);
    }

    .map-shell-c4__cards a {
        color: inherit;
        text-decoration: none;
    }

    .map-shell-c4__cards a:hover {
        text-decoration: underline;
    }

    @media (max-width: 840px) {
        .map-shell-c4__shell {
            grid-template-columns: 1fr;
        }
    }

.form-layout-f {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
        color: var(--fg-on-page);
    }

    .form-layout-f .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .form-layout-f .section-head {
        margin-bottom: 14px;
        text-align: center;
    }

    .form-layout-f h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .form-layout-f .section-head p {
        margin: 10px auto 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .form-layout-f .boxed {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .form-layout-f .group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .form-layout-f label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
    }

    .form-layout-f input:not([type="checkbox"]), .form-layout-f textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        padding: 9px;
        font: inherit;
    }

    .form-layout-f .agree {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .form-layout-f button {
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .form-layout-f .group {
            grid-template-columns: 1fr;
        }
    }

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  max-width: var(--max-w);
  margin: 0 auto;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-y) var(--space-x);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
}

.contact-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.contact-cta:hover {
  background-color: var(--bg-accent-hover);
  color: var(--fg-on-accent);
}

.header-bottom {
  position: relative;
  padding: 0 var(--space-x) var(--space-y);
}

.main-nav {
  display: block;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
  justify-content: center;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--link);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  padding: 0;
  position: absolute;
  right: var(--space-x);
  top: 0;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .header-bottom {
    padding-bottom: 0;
    display: flex;
    justify-content: center;
  }
  .main-nav {
    width: 100%;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav-list.active {
    max-height: 500px;
    padding: var(--space-y) 0;
  }
  .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger-menu {
    display: flex;
    position: static;
    align-self: center;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #2c1810;
        color: #e0d6cf;
        padding: 3rem 1rem 1rem;
        font-family: sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a3329;
    }
    .footer-brand .logo {
        color: #d4b596;
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #b8a38f;
    }
    .footer-nav h4,
    .footer-legal h4,
    .footer-contacts h4 {
        color: #d4b596;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a,
    .footer-legal a {
        color: #e0d6cf;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #d4b596;
        text-decoration: underline;
    }
    .footer-contacts address p {
        margin-bottom: 0.7rem;
    }
    .footer-contacts a {
        color: #e0d6cf;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #d4b596;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
        font-size: 0.9rem;
        color: #b8a38f;
    }
    .footer-social {
        display: flex;
        gap: 1.2rem;
    }
    .footer-social a {
        color: #b8a38f;
        text-decoration: none;
    }
    .footer-social a:hover {
        color: #d4b596;
    }
    .footer-disclaimer {
        flex-basis: 100%;
        order: 3;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #4a3329;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .footer-social {
            order: 2;
            margin-top: 0.5rem;
        }
        .footer-copyright {
            order: 1;
        }
        .footer-disclaimer {
            order: 3;
        }
    }
    @media (max-width: 480px) {
        .footer-grid {
            grid-template-columns: 1fr;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.policy-layout-c {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .policy-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .policy-layout-c .section-head {
        margin-bottom: 14px;
    }

    .policy-layout-c h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .policy-layout-c .section-head p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .policy-layout-c .stack {
        display: grid;
        gap: 10px;
    }

    .policy-layout-c article {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, .1);
    }

    .policy-layout-c h3 {
        margin: 0;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .policy-layout-c h3 span {
        display: inline-grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .18);
    }

    .policy-layout-c article p {
        margin: 8px 0 0;
        opacity: .95;
    }

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  max-width: var(--max-w);
  margin: 0 auto;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-y) var(--space-x);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
}

.contact-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.contact-cta:hover {
  background-color: var(--bg-accent-hover);
  color: var(--fg-on-accent);
}

.header-bottom {
  position: relative;
  padding: 0 var(--space-x) var(--space-y);
}

.main-nav {
  display: block;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
  justify-content: center;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--link);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  padding: 0;
  position: absolute;
  right: var(--space-x);
  top: 0;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .header-bottom {
    padding-bottom: 0;
    display: flex;
    justify-content: center;
  }
  .main-nav {
    width: 100%;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav-list.active {
    max-height: 500px;
    padding: var(--space-y) 0;
  }
  .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger-menu {
    display: flex;
    position: static;
    align-self: center;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #2c1810;
        color: #e0d6cf;
        padding: 3rem 1rem 1rem;
        font-family: sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a3329;
    }
    .footer-brand .logo {
        color: #d4b596;
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #b8a38f;
    }
    .footer-nav h4,
    .footer-legal h4,
    .footer-contacts h4 {
        color: #d4b596;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a,
    .footer-legal a {
        color: #e0d6cf;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #d4b596;
        text-decoration: underline;
    }
    .footer-contacts address p {
        margin-bottom: 0.7rem;
    }
    .footer-contacts a {
        color: #e0d6cf;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #d4b596;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
        font-size: 0.9rem;
        color: #b8a38f;
    }
    .footer-social {
        display: flex;
        gap: 1.2rem;
    }
    .footer-social a {
        color: #b8a38f;
        text-decoration: none;
    }
    .footer-social a:hover {
        color: #d4b596;
    }
    .footer-disclaimer {
        flex-basis: 100%;
        order: 3;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #4a3329;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .footer-social {
            order: 2;
            margin-top: 0.5rem;
        }
        .footer-copyright {
            order: 1;
        }
        .footer-disclaimer {
            order: 3;
        }
    }
    @media (max-width: 480px) {
        .footer-grid {
            grid-template-columns: 1fr;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.terms-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

    .terms-layout-d .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .terms-layout-d .section-head {
        margin-bottom: 16px;
    }

    .terms-layout-d h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .terms-layout-d .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-100);
    }

    .terms-layout-d ol {
        margin: 0;
        padding-left: 20px;
        display: grid;
        gap: 10px;
    }

    .terms-layout-d li {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .05);
        padding: 12px;
    }

    .terms-layout-d h3, .terms-layout-d h4 {
        margin: 0 0 8px;
    }

    .terms-layout-d p, .terms-layout-d li li {
        color: var(--neutral-100);
    }
    .terms-layout-d a {
        color: var(--neutral-100);
        text-decoration: underline;
    }
    .terms-layout-d a:hover {
        color: var(--neutral-0);
    }

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  max-width: var(--max-w);
  margin: 0 auto;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-y) var(--space-x);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
}

.contact-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.contact-cta:hover {
  background-color: var(--bg-accent-hover);
  color: var(--fg-on-accent);
}

.header-bottom {
  position: relative;
  padding: 0 var(--space-x) var(--space-y);
}

.main-nav {
  display: block;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
  justify-content: center;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--link);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  padding: 0;
  position: absolute;
  right: var(--space-x);
  top: 0;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .header-bottom {
    padding-bottom: 0;
    display: flex;
    justify-content: center;
  }
  .main-nav {
    width: 100%;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav-list.active {
    max-height: 500px;
    padding: var(--space-y) 0;
  }
  .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger-menu {
    display: flex;
    position: static;
    align-self: center;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #2c1810;
        color: #e0d6cf;
        padding: 3rem 1rem 1rem;
        font-family: sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a3329;
    }
    .footer-brand .logo {
        color: #d4b596;
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #b8a38f;
    }
    .footer-nav h4,
    .footer-legal h4,
    .footer-contacts h4 {
        color: #d4b596;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a,
    .footer-legal a {
        color: #e0d6cf;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #d4b596;
        text-decoration: underline;
    }
    .footer-contacts address p {
        margin-bottom: 0.7rem;
    }
    .footer-contacts a {
        color: #e0d6cf;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #d4b596;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
        font-size: 0.9rem;
        color: #b8a38f;
    }
    .footer-social {
        display: flex;
        gap: 1.2rem;
    }
    .footer-social a {
        color: #b8a38f;
        text-decoration: none;
    }
    .footer-social a:hover {
        color: #d4b596;
    }
    .footer-disclaimer {
        flex-basis: 100%;
        order: 3;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #4a3329;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .footer-social {
            order: 2;
            margin-top: 0.5rem;
        }
        .footer-copyright {
            order: 1;
        }
        .footer-disclaimer {
            order: 3;
        }
    }
    @media (max-width: 480px) {
        .footer-grid {
            grid-template-columns: 1fr;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.thank-mode-b {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .thank-mode-b .card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: var(--surface-1);
        box-shadow: var(--shadow-lg);
    }

    .thank-mode-b h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 54px);
        color: var(--brand);
    }

    .thank-mode-b p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .thank-mode-b a {
        display: inline-block;
        margin-top: 18px;
        padding: 11px 18px;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  max-width: var(--max-w);
  margin: 0 auto;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-y) var(--space-x);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
}

.contact-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.contact-cta:hover {
  background-color: var(--bg-accent-hover);
  color: var(--fg-on-accent);
}

.header-bottom {
  position: relative;
  padding: 0 var(--space-x) var(--space-y);
}

.main-nav {
  display: block;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
  justify-content: center;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--link);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  padding: 0;
  position: absolute;
  right: var(--space-x);
  top: 0;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .header-bottom {
    padding-bottom: 0;
    display: flex;
    justify-content: center;
  }
  .main-nav {
    width: 100%;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav-list.active {
    max-height: 500px;
    padding: var(--space-y) 0;
  }
  .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger-menu {
    display: flex;
    position: static;
    align-self: center;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #2c1810;
        color: #e0d6cf;
        padding: 3rem 1rem 1rem;
        font-family: sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a3329;
    }
    .footer-brand .logo {
        color: #d4b596;
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #b8a38f;
    }
    .footer-nav h4,
    .footer-legal h4,
    .footer-contacts h4 {
        color: #d4b596;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a,
    .footer-legal a {
        color: #e0d6cf;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #d4b596;
        text-decoration: underline;
    }
    .footer-contacts address p {
        margin-bottom: 0.7rem;
    }
    .footer-contacts a {
        color: #e0d6cf;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #d4b596;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
        font-size: 0.9rem;
        color: #b8a38f;
    }
    .footer-social {
        display: flex;
        gap: 1.2rem;
    }
    .footer-social a {
        color: #b8a38f;
        text-decoration: none;
    }
    .footer-social a:hover {
        color: #d4b596;
    }
    .footer-disclaimer {
        flex-basis: 100%;
        order: 3;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #4a3329;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .footer-social {
            order: 2;
            margin-top: 0.5rem;
        }
        .footer-copyright {
            order: 1;
        }
        .footer-disclaimer {
            order: 3;
        }
    }
    @media (max-width: 480px) {
        .footer-grid {
            grid-template-columns: 1fr;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.err-slab-a {
    padding: clamp(56px, 10vw, 110px) 20px;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

.err-slab-a .box {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.err-slab-a h1 {
    margin: 0;
    font-size: clamp(34px, 6vw, 58px);
}

.err-slab-a p {
    margin: 12px 0 0;
    opacity: .92;
}

.err-slab-a a {
    display: inline-block;
    margin-top: 18px;
    padding: 11px 18px;
    border-radius: var(--radius-md);
    background: var(--surface-1);
    color: var(--fg-on-page);
    text-decoration: none;
}