:root {
  --font-family: "Comfortaa", sans-serif;
  --font-size-base: 16.3px;
  --line-height-base: 1.48;

  --max-w: 1240px;
  --space-x: 1.21rem;
  --space-y: 1.5rem;
  --gap: 2.25rem;

  --radius-xl: 1.34rem;
  --radius-lg: 1rem;
  --radius-md: 0.59rem;
  --radius-sm: 0.33rem;

  --shadow-sm: 0 2px 7px rgba(0,0,0,0.13);
  --shadow-md: 0 14px 20px rgba(0,0,0,0.16);
  --shadow-lg: 0 24px 38px rgba(0,0,0,0.2);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 210ms;
  --anim-ease: ease-in-out;
  --random-number: 1;

  --brand: #1a3c2a;
  --brand-contrast: #ffffff;
  --accent: #2d7a4f;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f5f5;
  --neutral-300: #d0d0d0;
  --neutral-600: #6b6b6b;
  --neutral-800: #2d2d2d;
  --neutral-900: #1a1a1a;

  --bg-page: #fafafa;
  --fg-on-page: #1a1a1a;

  --bg-alt: #f0f4f0;
  --fg-on-alt: #1a3c2a;

  --surface-1: #ffffff;
  --surface-2: #f9f9f9;
  --fg-on-surface: #1a1a1a;
  --border-on-surface: #e0e0e0;

  --surface-light: #ffffff;
  --fg-on-surface-light: #2d2d2d;
  --border-on-surface-light: #e8e8e8;

  --bg-primary: #2d7a4f;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #23643f;
  --ring: #2d7a4f;

  --bg-accent: #e8f5e9;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #23643f;

  --link: #1a6b3e;
  --link-hover: #145530;

  --gradient-hero: linear-gradient(135deg, #1a3c2a 0%, #2d7a4f 100%);
  --gradient-accent: linear-gradient(135deg, #2d7a4f, #3a9d64);

  --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;}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 4) var(--space-x) var(--space-y);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: var(--surface-light);
    color: var(--brand);
    outline: none;
  }

  .nav-link:focus-visible {
    box-shadow: 0 0 0 3px var(--ring);
  }

  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      transform: none;
      padding: 0;
      overflow: visible;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 0.5);
    }

    .nav-link {
      padding: calc(var(--space-y) * 0.5) var(--space-x);
      font-size: calc(var(--font-size-base) * 0.95);
      border-radius: var(--radius-sm);
    }
  }

  @media (max-width: 767px) {
    .header-inner {
      padding: 0;
    }

    .logo {
      font-size: calc(var(--font-size-base) * 1.2);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-brand {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0c040;
    letter-spacing: 1px;
  }
  .footer-nav {
    flex: 1 1 100%;
    text-align: center;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-menu li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
  }
  .footer-menu li a:hover {
    color: #f0c040;
  }
  .middle-row {
    justify-content: center;
  }
  .footer-contact {
    text-align: center;
    width: 100%;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .contact-list li {
    white-space: nowrap;
  }
  .contact-list a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-list a:hover {
    color: #f0c040;
  }
  .bottom-row {
    flex-direction: column;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  .footer-legal {
    width: 100%;
  }
  .copyright {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
  }
  .disclaimer {
    margin: 0;
    font-size: 0.8rem;
    color: #aaa;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .disclaimer a {
    color: #f0c040;
    text-decoration: none;
  }
  .disclaimer a:hover {
    text-decoration: underline;
  }
  @media (min-width: 768px) {
    .footer-brand {
      flex: 0 0 auto;
      text-align: left;
      margin-bottom: 0;
    }
    .footer-nav {
      flex: 0 0 auto;
      text-align: right;
    }
    .footer-menu {
      justify-content: flex-end;
    }
    .middle-row {
      justify-content: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.intro-cinema-c1 {
        padding: clamp(4rem, 9vw, 7rem) var(--space-x);
        background: radial-gradient(circle at 100% 0, rgba(255, 255, 255, .16), transparent 28%), var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .intro-cinema-c1__frame {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1.25rem;
        align-items: stretch;
    }

    .intro-cinema-c1__copy, .intro-cinema-c1__stamp {
        padding: 1.1rem;
        border-radius: var(--radius-xl);
        background: rgba(17, 24, 39, .18);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-cinema-c1__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .75);
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .82rem;
    }

    .intro-cinema-c1__copy h1 {
        margin: .65rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.9rem);
        line-height: 1;
    }

    .intro-cinema-c1__copy span {
        display: block;
        margin-top: 1rem;
        max-width: 38rem;

    }

    .intro-cinema-c1__links {
        margin-top: 1.2rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-cinema-c1__links a {
        display: inline-flex;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: rgba(255, 255, 255, .12);
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-cinema-c1__links a:first-child {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

    .intro-cinema-c1__stamp {
        display: grid;
        align-content: end;
        gap: .7rem;
        text-align: right;
    }

    .intro-cinema-c1__stamp strong {
        color: rgba(255, 255, 255, .78);
    }

    .intro-cinema-c1__stamp div {
        font-size: clamp(2.8rem, 5vw, 4.2rem);
        font-weight: 700;
    }

    .intro-cinema-c1__stamp p {
        margin: 0;
        color: rgba(255, 255, 255, .82);
    }

    @media (max-width: 860px) {
        .intro-cinema-c1__frame {
            grid-template-columns: 1fr;
        }
    }

    .intro-cinema-c1 {
        overflow: hidden;
    }

    .intro-cinema-c1__frame {
        background-image: linear-gradient(rgba(17, 24, 39, .84), rgba(17, 24, 39, .28)), url('https://images.pexels.com/photos/356036/pexels-photo-356036.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
    }

.gallery--light-v6 {

    padding: 40px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

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

.gallery__title {
    margin: 0 0 12px;
    font-size: clamp(22px,3.5vw,28px);
}

.gallery__strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 1fr);
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery__thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    min-width: 120px;
}

.gallery__thumb img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.nfsocial-v9 {
        padding: clamp(20px, 3vw, 44px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .nfsocial-v9__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .nfsocial-v9__head {
        margin-bottom: 14px;
    }

    .nfsocial-v9 h2 {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
    }

    .nfsocial-v9__head p {
        margin: 10px 0 0;
        opacity: .88;
    }

    .nfsocial-v9__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 12px;
    }

    .nfsocial-v9__grid article {
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
        background: rgba(255, 255, 255, .1);
        padding: 14px;
        display: grid;
        gap: 6px;
    }

    .nfsocial-v9__grid span {
        opacity: .9;
        font-size: .85rem;
    }

    .nfsocial-v9__grid strong {
        font-size: clamp(18px, 2.4vw, 28px);
    }

    .nfsocial-v9__grid p {
        margin: 0;
        opacity: .9;
    }

    .nfsocial-v9__grid h3 {
        margin: 6px 0 0;
        font-size: 1rem;
    }

    .nfsocial-v9__grid em {
        font-style: normal;
        opacity: .86;
    }

.visual-column-l6 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .visual-column-l6__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .visual-column-l6__head {
        margin-bottom: 1rem;
    }

    .visual-column-l6__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .visual-column-l6__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .visual-column-l6__list {
        display: grid;
        gap: .8rem;
    }

    .visual-column-l6__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .visual-column-l6__meta {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        margin-bottom: .8rem;
    }

    .visual-column-l6__meta span {
        color: var(--neutral-600);
    }

    .visual-column-l6__content {
        display: grid;
        grid-template-columns: 13rem 1fr;
        gap: 1rem;
        align-items: center;
    }

    .visual-column-l6__content img {
        display: block;
        width: 100%;
        height: 10rem;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .visual-column-l6__content small {
        color: var(--neutral-600);
    }

    .visual-column-l6__content h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-column-l6__content p {
        margin: 0;
        color: var(--neutral-600);
    }

    @media (max-width: 680px) {
        .visual-column-l6__content {
            grid-template-columns: 1fr;
        }
    }

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 4) var(--space-x) var(--space-y);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: var(--surface-light);
    color: var(--brand);
    outline: none;
  }

  .nav-link:focus-visible {
    box-shadow: 0 0 0 3px var(--ring);
  }

  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      transform: none;
      padding: 0;
      overflow: visible;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 0.5);
    }

    .nav-link {
      padding: calc(var(--space-y) * 0.5) var(--space-x);
      font-size: calc(var(--font-size-base) * 0.95);
      border-radius: var(--radius-sm);
    }
  }

  @media (max-width: 767px) {
    .header-inner {
      padding: 0;
    }

    .logo {
      font-size: calc(var(--font-size-base) * 1.2);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-brand {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0c040;
    letter-spacing: 1px;
  }
  .footer-nav {
    flex: 1 1 100%;
    text-align: center;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-menu li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
  }
  .footer-menu li a:hover {
    color: #f0c040;
  }
  .middle-row {
    justify-content: center;
  }
  .footer-contact {
    text-align: center;
    width: 100%;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .contact-list li {
    white-space: nowrap;
  }
  .contact-list a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-list a:hover {
    color: #f0c040;
  }
  .bottom-row {
    flex-direction: column;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  .footer-legal {
    width: 100%;
  }
  .copyright {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
  }
  .disclaimer {
    margin: 0;
    font-size: 0.8rem;
    color: #aaa;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .disclaimer a {
    color: #f0c040;
    text-decoration: none;
  }
  .disclaimer a:hover {
    text-decoration: underline;
  }
  @media (min-width: 768px) {
    .footer-brand {
      flex: 0 0 auto;
      text-align: left;
      margin-bottom: 0;
    }
    .footer-nav {
      flex: 0 0 auto;
      text-align: right;
    }
    .footer-menu {
      justify-content: flex-end;
    }
    .middle-row {
      justify-content: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.blog-grid-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

.blog-grid-section__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}

.blog-grid-section__title {
    text-align: center;
    margin-bottom: calc(var(--space-y) * 2);
    font-size: clamp(28px, 4vw, 40px);
    color: var(--fg-on-page);
}

.blog-grid-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: calc(var(--gap) * 1.5);
}

.blog-card {
    background-color: var(--surface-1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--anim-duration) var(--anim-ease);
    border: 1px solid var(--border-on-surface);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card__content {
    padding: clamp(16px, 3vw, 28px);
}

.blog-card__content h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-surface);
}

.blog-card__content p {
    color: var(--fg-on-surface-light);
    margin-bottom: var(--space-y);
}

.blog-card__meta {
    color: var(--neutral-600);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.blog-card__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.blog-card__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.recommendations-u7{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-accent);color:var(--brand-contrast)} .recommendations-u7 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .recommendations-u7 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .recommendations-u7 .sub{margin:.35rem 0 0;opacity:.9;} .recommendations-u7 article,.recommendations-u7 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .recommendations-u7 p{margin:0} .recommendations-u7 a{text-decoration:none;color:inherit;font-weight:700} .recommendations-u7 .cards{padding:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.55rem} .recommendations-u7 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .recommendations-u7 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.recommendations-u7 .split,.recommendations-u7 .media,.recommendations-u7 .grid,.recommendations-u7 .cards,.recommendations-u7 .bento,.recommendations-u7 .foot{grid-template-columns:1fr}}

.partners {
        color: var(--fg-on-page);
        background: var(--surface-light);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

    .partners .partners__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .partners .partners__header {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 72px);
    }

    .partners .partners__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .partners .partners__header p {
        font-size: clamp(16px, 2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .partners .partners__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: clamp(32px, 5vw, 48px);
    }

    .partners .partners__item {
        text-align: center;
        background: var(--bg-page);
        border-radius: var(--radius-lg);
    }

    .partners .partners__logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: clamp(20px, 3vw, 28px);
        height: 300px;
    }

    .partners .partners__text {
        padding: var(--space-y)
    }

    .partners .partners__item h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
    }

    .partners .partners__item p {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0;
    }

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 4) var(--space-x) var(--space-y);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: var(--surface-light);
    color: var(--brand);
    outline: none;
  }

  .nav-link:focus-visible {
    box-shadow: 0 0 0 3px var(--ring);
  }

  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      transform: none;
      padding: 0;
      overflow: visible;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 0.5);
    }

    .nav-link {
      padding: calc(var(--space-y) * 0.5) var(--space-x);
      font-size: calc(var(--font-size-base) * 0.95);
      border-radius: var(--radius-sm);
    }
  }

  @media (max-width: 767px) {
    .header-inner {
      padding: 0;
    }

    .logo {
      font-size: calc(var(--font-size-base) * 1.2);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-brand {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0c040;
    letter-spacing: 1px;
  }
  .footer-nav {
    flex: 1 1 100%;
    text-align: center;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-menu li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
  }
  .footer-menu li a:hover {
    color: #f0c040;
  }
  .middle-row {
    justify-content: center;
  }
  .footer-contact {
    text-align: center;
    width: 100%;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .contact-list li {
    white-space: nowrap;
  }
  .contact-list a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-list a:hover {
    color: #f0c040;
  }
  .bottom-row {
    flex-direction: column;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  .footer-legal {
    width: 100%;
  }
  .copyright {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
  }
  .disclaimer {
    margin: 0;
    font-size: 0.8rem;
    color: #aaa;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .disclaimer a {
    color: #f0c040;
    text-decoration: none;
  }
  .disclaimer a:hover {
    text-decoration: underline;
  }
  @media (min-width: 768px) {
    .footer-brand {
      flex: 0 0 auto;
      text-align: left;
      margin-bottom: 0;
    }
    .footer-nav {
      flex: 0 0 auto;
      text-align: right;
    }
    .footer-menu {
      justify-content: flex-end;
    }
    .middle-row {
      justify-content: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.project-item {

        color: var(--fg-on-page);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

    .project-item .project-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .project-item .project-item__header {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .project-item h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
    }

    .project-item .project-item__subtitle {
        font-size: clamp(16px, 2.4vw, 20px);

    }

    .project-item .project-item__gallery {
        display: grid;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    @media (min-width: 768px) {
        .project-item .project-item__gallery {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
        .project-item .project-item__gallery > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .project-item .project-item__image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: var(--space-y);
    }

    .project-item h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        line-height: 1.8;

    }

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 4) var(--space-x) var(--space-y);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: var(--surface-light);
    color: var(--brand);
    outline: none;
  }

  .nav-link:focus-visible {
    box-shadow: 0 0 0 3px var(--ring);
  }

  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      transform: none;
      padding: 0;
      overflow: visible;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 0.5);
    }

    .nav-link {
      padding: calc(var(--space-y) * 0.5) var(--space-x);
      font-size: calc(var(--font-size-base) * 0.95);
      border-radius: var(--radius-sm);
    }
  }

  @media (max-width: 767px) {
    .header-inner {
      padding: 0;
    }

    .logo {
      font-size: calc(var(--font-size-base) * 1.2);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-brand {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0c040;
    letter-spacing: 1px;
  }
  .footer-nav {
    flex: 1 1 100%;
    text-align: center;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-menu li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
  }
  .footer-menu li a:hover {
    color: #f0c040;
  }
  .middle-row {
    justify-content: center;
  }
  .footer-contact {
    text-align: center;
    width: 100%;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .contact-list li {
    white-space: nowrap;
  }
  .contact-list a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-list a:hover {
    color: #f0c040;
  }
  .bottom-row {
    flex-direction: column;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  .footer-legal {
    width: 100%;
  }
  .copyright {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
  }
  .disclaimer {
    margin: 0;
    font-size: 0.8rem;
    color: #aaa;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .disclaimer a {
    color: #f0c040;
    text-decoration: none;
  }
  .disclaimer a:hover {
    text-decoration: underline;
  }
  @media (min-width: 768px) {
    .footer-brand {
      flex: 0 0 auto;
      text-align: left;
      margin-bottom: 0;
    }
    .footer-nav {
      flex: 0 0 auto;
      text-align: right;
    }
    .footer-menu {
      justify-content: flex-end;
    }
    .middle-row {
      justify-content: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.project-item {

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

    .project-item .project-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .project-item .project-item__header {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .project-item h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
    }

    .project-item .project-item__subtitle {
        font-size: clamp(16px, 2.4vw, 20px);

    }

    .project-item .project-item__gallery {
        display: grid;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    @media (min-width: 768px) {
        .project-item .project-item__gallery {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        /* Dacă randomNumber este impar (1) - primul copil primește order: 2 */
        .project-item .project-item__gallery > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .project-item .project-item__image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: var(--space-y);
    }

    .project-item h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        line-height: 1.8;

    }

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 4) var(--space-x) var(--space-y);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: var(--surface-light);
    color: var(--brand);
    outline: none;
  }

  .nav-link:focus-visible {
    box-shadow: 0 0 0 3px var(--ring);
  }

  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      transform: none;
      padding: 0;
      overflow: visible;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 0.5);
    }

    .nav-link {
      padding: calc(var(--space-y) * 0.5) var(--space-x);
      font-size: calc(var(--font-size-base) * 0.95);
      border-radius: var(--radius-sm);
    }
  }

  @media (max-width: 767px) {
    .header-inner {
      padding: 0;
    }

    .logo {
      font-size: calc(var(--font-size-base) * 1.2);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-brand {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0c040;
    letter-spacing: 1px;
  }
  .footer-nav {
    flex: 1 1 100%;
    text-align: center;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-menu li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
  }
  .footer-menu li a:hover {
    color: #f0c040;
  }
  .middle-row {
    justify-content: center;
  }
  .footer-contact {
    text-align: center;
    width: 100%;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .contact-list li {
    white-space: nowrap;
  }
  .contact-list a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-list a:hover {
    color: #f0c040;
  }
  .bottom-row {
    flex-direction: column;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  .footer-legal {
    width: 100%;
  }
  .copyright {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
  }
  .disclaimer {
    margin: 0;
    font-size: 0.8rem;
    color: #aaa;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .disclaimer a {
    color: #f0c040;
    text-decoration: none;
  }
  .disclaimer a:hover {
    text-decoration: underline;
  }
  @media (min-width: 768px) {
    .footer-brand {
      flex: 0 0 auto;
      text-align: left;
      margin-bottom: 0;
    }
    .footer-nav {
      flex: 0 0 auto;
      text-align: right;
    }
    .footer-menu {
      justify-content: flex-end;
    }
    .middle-row {
      justify-content: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.story-stream-l7 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .story-stream-l7__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.4rem;
        flex-wrap: wrap;
        align-items: start;
    }

    .story-stream-l7__media {
        flex: 1 1 18rem;
        order: var(--random-number);
    }

    .story-stream-l7__content {
        flex: 1 1 22rem;
        order: calc(3 - var(--random-number));
    }

    .story-stream-l7__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
    }

    .story-stream-l7__content p:first-child {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .story-stream-l7__content h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .story-stream-l7__content strong {
        display: block;
        margin-top: .75rem;
    }

    .story-stream-l7__copy {
        margin: .75rem 0 0;
        color: var(--neutral-600);
    }

    .story-stream-l7__content a {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

.identity-ux15 {
        padding: clamp(56px, 8vw, 104px) clamp(16px, 4vw, 40px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .identity-ux15__head {
        text-align: center;
        margin-bottom: 18px;
    }

    .identity-ux15__head p {
        margin: 0;
        opacity: .9;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .identity-ux15__head h2 {
        margin: 8px 0;
        font-size: clamp(30px, 5vw, 50px);
    }

    .identity-ux15__head span {
        display: block;
        margin: 0 auto;
        max-width: 72ch;
        opacity: .92;
    }

    .identity-ux15__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .identity-ux15__grid article {
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: rgba(255, 255, 255, 0.12);
        box-shadow: var(--shadow-sm);
    }

    .identity-ux15__grid h3 {
        margin: 0;
    }

    .identity-ux15__grid p {
        margin: 7px 0;
        opacity: .94;
    }

    .identity-ux15__grid small {
        opacity: .9;
    }

.team-section {
        padding: clamp(48px, 8vw, 80px) 0;
    }

    .team-section__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
    }

    .team-section__title {
        text-align: center;
        margin-bottom: calc(var(--space-y) * 2);
        font-size: clamp(28px, 4vw, 40px);
        color: var(--fg-on-page);
    }

    .team-section__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: calc(var(--gap) * 1.5);
    }

    .team-card {
        background-color: var(--surface-1);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        overflow: hidden;
        text-align: center;
        transition: all var(--anim-duration) var(--anim-ease);
        border: 1px solid var(--border-on-surface);
    }

    .team-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    .team-card__photo {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .team-card__info {
        padding: clamp(16px, 3vw, 28px);
    }

    .team-card__info h3 {
        margin-bottom: 0.5rem;
        color: var(--fg-on-surface);
    }

    .team-card__role {
        color: var(--brand);
        font-weight: 500;
        margin-bottom: var(--space-y);
    }

    .team-card__info p {
        margin: 0 auto;
        color: var(--fg-on-surface-light);
        font-size: 0.95rem;
    }

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 4) var(--space-x) var(--space-y);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: var(--surface-light);
    color: var(--brand);
    outline: none;
  }

  .nav-link:focus-visible {
    box-shadow: 0 0 0 3px var(--ring);
  }

  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      transform: none;
      padding: 0;
      overflow: visible;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 0.5);
    }

    .nav-link {
      padding: calc(var(--space-y) * 0.5) var(--space-x);
      font-size: calc(var(--font-size-base) * 0.95);
      border-radius: var(--radius-sm);
    }
  }

  @media (max-width: 767px) {
    .header-inner {
      padding: 0;
    }

    .logo {
      font-size: calc(var(--font-size-base) * 1.2);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-brand {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0c040;
    letter-spacing: 1px;
  }
  .footer-nav {
    flex: 1 1 100%;
    text-align: center;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-menu li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
  }
  .footer-menu li a:hover {
    color: #f0c040;
  }
  .middle-row {
    justify-content: center;
  }
  .footer-contact {
    text-align: center;
    width: 100%;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .contact-list li {
    white-space: nowrap;
  }
  .contact-list a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-list a:hover {
    color: #f0c040;
  }
  .bottom-row {
    flex-direction: column;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  .footer-legal {
    width: 100%;
  }
  .copyright {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
  }
  .disclaimer {
    margin: 0;
    font-size: 0.8rem;
    color: #aaa;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .disclaimer a {
    color: #f0c040;
    text-decoration: none;
  }
  .disclaimer a:hover {
    text-decoration: underline;
  }
  @media (min-width: 768px) {
    .footer-brand {
      flex: 0 0 auto;
      text-align: left;
      margin-bottom: 0;
    }
    .footer-nav {
      flex: 0 0 auto;
      text-align: right;
    }
    .footer-menu {
      justify-content: flex-end;
    }
    .middle-row {
      justify-content: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.frm-lx10{padding:calc(var(--space-y)*2.7) var(--space-x)}
.frm-lx10 .frm-bounds{max-width:var(--max-w);margin:0 auto;display:grid;gap:.8rem}
.frm-lx10 .frm-copy{display:flex;justify-content:space-between;gap:1rem;align-items:end}
.frm-lx10 h2{margin:0;font-size:clamp(1.75rem,3.1vw,2.45rem)}
.frm-lx10 .frm-copy p{margin:0;color:var(--fg-on-surface-light);max-width:55ch}
.frm-lx10 .frm-frame{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.6rem;padding:.9rem;border-radius:var(--radius-xl);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.frm-lx10 label{grid-column:span 2;display:grid;gap:.22rem;padding:.65rem;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-md);background:var(--surface-1)}
.frm-lx10 label span{font-size:.8rem;font-weight:700;color:var(--fg-on-surface-light)}
.frm-lx10 input,.frm-lx10 textarea{width:100%;padding:.64rem .72rem;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-sm);font:inherit;background:var(--surface-1);color:var(--fg-on-surface)}
.frm-lx10 .frm-wide{grid-column:1/-1}
.frm-lx10 textarea{min-height:130px;resize:vertical}
.frm-lx10 button{grid-column:1/-1;justify-self:start;padding:.82rem 1.15rem;border-radius:var(--radius-md);border:0;background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer}
@keyframes frmPulse{0%,100%{box-shadow:0 0 0 0 color-mix(in srgb,var(--ring) 0%, transparent)}50%{box-shadow:0 0 0 6px color-mix(in srgb,var(--ring) 18%, transparent)}}
.frm-lx10 button:focus-visible{animation:frmPulse .8s ease-out 1}
@media (max-width:900px){.frm-lx10 .frm-copy{display:grid}.frm-lx10 .frm-frame{grid-template-columns:1fr}.frm-lx10 label{grid-column:1/-1}}

.contacts-u9{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)} .contacts-u9 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .contacts-u9 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .contacts-u9 .sub{margin:.35rem 0 0;opacity:.9;} .contacts-u9 article,.contacts-u9 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .contacts-u9 p{margin:0} .contacts-u9 a{text-decoration:none;color:inherit;font-weight:700} .contacts-u9 .media{display:grid;grid-template-columns:.95fr 1.05fr;gap:var(--gap)} .contacts-u9 .media img{width:100%;height:100%;min-height:280px;object-fit:cover;border-radius:var(--radius-xl)} .contacts-u9 .grid{display:grid;gap:.5rem;margin-top:.55rem} .contacts-u9 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .contacts-u9 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.contacts-u9 .split,.contacts-u9 .media,.contacts-u9 .grid,.contacts-u9 .cards,.contacts-u9 .bento,.contacts-u9 .foot{grid-template-columns:1fr}}

.connect--light-v6 {
        padding: 40px 20px;
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
    }

    .connect__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        gap: 20px;
        align-items: center;
    }

    .connect__content h2 {
        margin: 0 0 6px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--fg-on-page);
    }

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

    .connect__chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .connect__chip {
        padding: 6px 12px;
        border-radius: 999px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        font-size: 0.85rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .connect__chip {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    @media (max-width: 768px) {
        .connect__inner {
            grid-template-columns: minmax(0, 1fr);
        }

        .connect__chips {
            justify-content: flex-start;
        }
    }

.map-poster-c7 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .map-poster-c7__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.25rem;
        flex-wrap: wrap;
        align-items: start;
    }

    .map-poster-c7__copy {
        flex: 1 1 18rem;
    }

    .map-poster-c7__embed {
        flex: 1 1 24rem;
    }

    .map-poster-c7__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .map-poster-c7__copy h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

    .map-poster-c7__details {
        margin-top: 1rem;
        display: grid;
        gap: .75rem;
    }

    .map-poster-c7__details div {
        padding: .9rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-poster-c7__details span {
        display: block;
        margin-top: .35rem;
        color: rgba(255, 255, 255, .84);
    }

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 4) var(--space-x) var(--space-y);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: var(--surface-light);
    color: var(--brand);
    outline: none;
  }

  .nav-link:focus-visible {
    box-shadow: 0 0 0 3px var(--ring);
  }

  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      transform: none;
      padding: 0;
      overflow: visible;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 0.5);
    }

    .nav-link {
      padding: calc(var(--space-y) * 0.5) var(--space-x);
      font-size: calc(var(--font-size-base) * 0.95);
      border-radius: var(--radius-sm);
    }
  }

  @media (max-width: 767px) {
    .header-inner {
      padding: 0;
    }

    .logo {
      font-size: calc(var(--font-size-base) * 1.2);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-brand {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0c040;
    letter-spacing: 1px;
  }
  .footer-nav {
    flex: 1 1 100%;
    text-align: center;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-menu li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
  }
  .footer-menu li a:hover {
    color: #f0c040;
  }
  .middle-row {
    justify-content: center;
  }
  .footer-contact {
    text-align: center;
    width: 100%;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .contact-list li {
    white-space: nowrap;
  }
  .contact-list a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-list a:hover {
    color: #f0c040;
  }
  .bottom-row {
    flex-direction: column;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  .footer-legal {
    width: 100%;
  }
  .copyright {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
  }
  .disclaimer {
    margin: 0;
    font-size: 0.8rem;
    color: #aaa;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .disclaimer a {
    color: #f0c040;
    text-decoration: none;
  }
  .disclaimer a:hover {
    text-decoration: underline;
  }
  @media (min-width: 768px) {
    .footer-brand {
      flex: 0 0 auto;
      text-align: left;
      margin-bottom: 0;
    }
    .footer-nav {
      flex: 0 0 auto;
      text-align: right;
    }
    .footer-menu {
      justify-content: flex-end;
    }
    .middle-row {
      justify-content: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.pol-lx8{padding:calc(var(--space-y)*2.95) var(--space-x);background:var(--bg-alt)}
.pol-lx8 .pol-wrap{max-width:var(--max-w);margin:0 auto}
.pol-lx8 h2{margin:0 0 .85rem;font-size:clamp(1.76rem,3.1vw,2.45rem)}
.pol-lx8 .pol-cols{display:grid;grid-template-columns:.95fr 1.05fr;gap:var(--gap)}
.pol-lx8 .pol-left{padding:1rem;border-radius:var(--radius-lg);border:1px solid var(--border-on-surface);background:var(--surface-1)}
.pol-lx8 .pol-left h3{margin:0 0 .32rem}
.pol-lx8 .pol-left p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx8 .pol-right{list-style:none;margin:0;padding:0;display:grid;gap:.5rem}
.pol-lx8 .pol-right li{padding:.8rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.pol-lx8 .pol-right h4{margin:0 0 .2rem;font-size:1rem}
.pol-lx8 .pol-right p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx8 .pol-note{display:flex;gap:.7rem;margin-top:.75rem;padding:.8rem;border-radius:var(--radius-md);background:var(--surface-2)}
@media (max-width:860px){.pol-lx8 .pol-cols{grid-template-columns:1fr}.pol-lx8 .pol-note{display:grid}}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 4) var(--space-x) var(--space-y);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: var(--surface-light);
    color: var(--brand);
    outline: none;
  }

  .nav-link:focus-visible {
    box-shadow: 0 0 0 3px var(--ring);
  }

  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      transform: none;
      padding: 0;
      overflow: visible;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 0.5);
    }

    .nav-link {
      padding: calc(var(--space-y) * 0.5) var(--space-x);
      font-size: calc(var(--font-size-base) * 0.95);
      border-radius: var(--radius-sm);
    }
  }

  @media (max-width: 767px) {
    .header-inner {
      padding: 0;
    }

    .logo {
      font-size: calc(var(--font-size-base) * 1.2);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-brand {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0c040;
    letter-spacing: 1px;
  }
  .footer-nav {
    flex: 1 1 100%;
    text-align: center;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-menu li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
  }
  .footer-menu li a:hover {
    color: #f0c040;
  }
  .middle-row {
    justify-content: center;
  }
  .footer-contact {
    text-align: center;
    width: 100%;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .contact-list li {
    white-space: nowrap;
  }
  .contact-list a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-list a:hover {
    color: #f0c040;
  }
  .bottom-row {
    flex-direction: column;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  .footer-legal {
    width: 100%;
  }
  .copyright {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
  }
  .disclaimer {
    margin: 0;
    font-size: 0.8rem;
    color: #aaa;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .disclaimer a {
    color: #f0c040;
    text-decoration: none;
  }
  .disclaimer a:hover {
    text-decoration: underline;
  }
  @media (min-width: 768px) {
    .footer-brand {
      flex: 0 0 auto;
      text-align: left;
      margin-bottom: 0;
    }
    .footer-nav {
      flex: 0 0 auto;
      text-align: right;
    }
    .footer-menu {
      justify-content: flex-end;
    }
    .middle-row {
      justify-content: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.policy-layout-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--bg-accent), var(--bg-page));
        color: var(--fg-on-page);
    }

    .policy-layout-a .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .policy-layout-a .section-head {
        margin-bottom: 16px;
    }

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

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

    .policy-layout-a .grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .policy-layout-a article {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
    }

    .policy-layout-a .meta {
        margin: 0;
        color: var(--brand);
        font-weight: 600;
    }

    .policy-layout-a h3 {
        margin: 8px 0;
    }

    .policy-layout-a article p {
        margin: 0;
        color: var(--neutral-600);
    }

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 4) var(--space-x) var(--space-y);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: var(--surface-light);
    color: var(--brand);
    outline: none;
  }

  .nav-link:focus-visible {
    box-shadow: 0 0 0 3px var(--ring);
  }

  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      transform: none;
      padding: 0;
      overflow: visible;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 0.5);
    }

    .nav-link {
      padding: calc(var(--space-y) * 0.5) var(--space-x);
      font-size: calc(var(--font-size-base) * 0.95);
      border-radius: var(--radius-sm);
    }
  }

  @media (max-width: 767px) {
    .header-inner {
      padding: 0;
    }

    .logo {
      font-size: calc(var(--font-size-base) * 1.2);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-brand {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0c040;
    letter-spacing: 1px;
  }
  .footer-nav {
    flex: 1 1 100%;
    text-align: center;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-menu li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
  }
  .footer-menu li a:hover {
    color: #f0c040;
  }
  .middle-row {
    justify-content: center;
  }
  .footer-contact {
    text-align: center;
    width: 100%;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .contact-list li {
    white-space: nowrap;
  }
  .contact-list a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-list a:hover {
    color: #f0c040;
  }
  .bottom-row {
    flex-direction: column;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  .footer-legal {
    width: 100%;
  }
  .copyright {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
  }
  .disclaimer {
    margin: 0;
    font-size: 0.8rem;
    color: #aaa;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .disclaimer a {
    color: #f0c040;
    text-decoration: none;
  }
  .disclaimer a:hover {
    text-decoration: underline;
  }
  @media (min-width: 768px) {
    .footer-brand {
      flex: 0 0 auto;
      text-align: left;
      margin-bottom: 0;
    }
    .footer-nav {
      flex: 0 0 auto;
      text-align: right;
    }
    .footer-menu {
      justify-content: flex-end;
    }
    .middle-row {
      justify-content: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.thx-lx8{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-alt)}
.thx-lx8 .thx-shell{max-width:900px;margin:0 auto;text-align:center}
.thx-lx8 h2{margin:0;font-size:clamp(1.76rem,3.2vw,2.46rem)}
.thx-lx8 .thx-sub{margin:.42rem 0 .92rem;color:var(--fg-on-surface-light)}
.thx-lx8 .thx-steps{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.55rem}
.thx-lx8 .thx-steps div{padding:.82rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface);background:var(--surface-1);display:grid;gap:.22rem}
.thx-lx8 b{font-size:.94rem}
.thx-lx8 span{color:var(--fg-on-surface-light)}
@keyframes thankSoft{0%{opacity:.65;transform:translateY(5px)}100%{opacity:1;transform:none}}
.thx-lx8 .thx-steps div{animation:thankSoft .45s var(--anim-ease) both}
.thx-lx8 .thx-steps div:nth-child(2){animation-delay:.06s}.thx-lx8 .thx-steps div:nth-child(3){animation-delay:.12s}
@media (max-width:760px){.thx-lx8 .thx-steps{grid-template-columns:1fr}}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 4) var(--space-x) var(--space-y);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: var(--surface-light);
    color: var(--brand);
    outline: none;
  }

  .nav-link:focus-visible {
    box-shadow: 0 0 0 3px var(--ring);
  }

  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      transform: none;
      padding: 0;
      overflow: visible;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 0.5);
    }

    .nav-link {
      padding: calc(var(--space-y) * 0.5) var(--space-x);
      font-size: calc(var(--font-size-base) * 0.95);
      border-radius: var(--radius-sm);
    }
  }

  @media (max-width: 767px) {
    .header-inner {
      padding: 0;
    }

    .logo {
      font-size: calc(var(--font-size-base) * 1.2);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-brand {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0c040;
    letter-spacing: 1px;
  }
  .footer-nav {
    flex: 1 1 100%;
    text-align: center;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-menu li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
  }
  .footer-menu li a:hover {
    color: #f0c040;
  }
  .middle-row {
    justify-content: center;
  }
  .footer-contact {
    text-align: center;
    width: 100%;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .contact-list li {
    white-space: nowrap;
  }
  .contact-list a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-list a:hover {
    color: #f0c040;
  }
  .bottom-row {
    flex-direction: column;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  .footer-legal {
    width: 100%;
  }
  .copyright {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
  }
  .disclaimer {
    margin: 0;
    font-size: 0.8rem;
    color: #aaa;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .disclaimer a {
    color: #f0c040;
    text-decoration: none;
  }
  .disclaimer a:hover {
    text-decoration: underline;
  }
  @media (min-width: 768px) {
    .footer-brand {
      flex: 0 0 auto;
      text-align: left;
      margin-bottom: 0;
    }
    .footer-nav {
      flex: 0 0 auto;
      text-align: right;
    }
    .footer-menu {
      justify-content: flex-end;
    }
    .middle-row {
      justify-content: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.err-slab-b {
    padding: clamp(56px, 10vw, 112px) 20px;
    background: var(--bg-alt);
    color: var(--fg-on-page);
}

.err-slab-b .frame {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(28px, 4vw, 46px);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-xl);
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
}

.err-slab-b h1 {
    margin: 0;
    font-size: clamp(32px, 6vw, 56px);
    color: var(--brand);
}

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

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