:root {
  --font-family: "Raleway", sans-serif;
  --font-size-base: 14.7px;
  --line-height-base: 1.72;

  --max-w: 1060px;
  --space-x: 1.44rem;
  --space-y: 1.5rem;
  --gap: 1rem;

  --radius-xl: 1.38rem;
  --radius-lg: 1rem;
  --radius-md: 0.65rem;
  --radius-sm: 0.36rem;

  --shadow-sm: 0 1px 5px rgba(0,0,0,0.04);
  --shadow-md: 0 6px 10px rgba(0,0,0,0.05);
  --shadow-lg: 0 14px 22px rgba(0,0,0,0.07);

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

  --brand: #2A7F62;
  --brand-contrast: #FFFFFF;
  --accent: #E9B44C;
  --accent-contrast: #1A1A1A;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8F9FA;
  --neutral-300: #DEE2E6;
  --neutral-600: #6C757D;
  --neutral-800: #343A40;
  --neutral-900: #212529;

  --bg-page: #FFFFFF;
  --fg-on-page: #212529;

  --bg-alt: #F8F9FA;
  --fg-on-alt: #343A40;

  --surface-1: #FFFFFF;
  --surface-2: #F8F9FA;
  --fg-on-surface: #212529;
  --border-on-surface: #DEE2E6;

  --surface-light: rgba(255, 255, 255, 0.85);
  --fg-on-surface-light: #343A40;
  --border-on-surface-light: rgba(222, 226, 230, 0.7);

  --bg-primary: #2A7F62;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #237155;
  --ring: rgba(42, 127, 98, 0.4);

  --bg-accent: #FDF6E9;
  --fg-on-accent: #8B5A29;
  --bg-accent-hover: #F4C97D;

  --link: #2A7F62;
  --link-hover: #237155;

  --gradient-hero: linear-gradient(135deg, rgba(42, 127, 98, 0.9) 0%, rgba(233, 180, 76, 0.15) 100%);
  --gradient-accent: linear-gradient(90deg, #E9B44C 0%, #F4C97D 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.08);
  --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 {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(10px);
        background-color: rgba(var(--bg-page-rgb, 255, 255, 255), 0.9);
    }

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .header__logo:hover {
        color: var(--accent);
    }

    .header__nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav__list {
        display: flex;
        gap: calc(var(--gap) * 2);
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav__link {
        color: var(--fg-on-page);
        text-decoration: none;
        font-weight: 500;
        padding: var(--space-y) 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .nav__link:hover,
    .nav__link:focus {
        color: var(--brand);
    }

    .nav__link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--brand);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav__link:hover::after,
    .nav__link:focus::after {
        width: 100%;
    }

    .header__cta.btn {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
    }

    .header__cta.btn:hover,
    .header__cta.btn:focus {
        background-color: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 80%;
            max-width: 300px;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 4) var(--space-x) var(--space-y);
            transition: right var(--anim-duration) var(--anim-ease);
            flex-direction: column;
            justify-content: flex-start;
            z-index: 1000;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: var(--gap);
            width: 100%;
        }

        .nav__link {
            display: block;
            padding: calc(var(--space-y) * 0.75) 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .nav__link::after {
            display: none;
        }

        .header__cta.btn {
            display: none;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(10.5px) rotate(45deg);
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-10.5px) rotate(-45deg);
        }
    }

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-right {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
  }
  .legal-links {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #3498db;
    text-decoration: none;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 1rem;
    max-width: 90%;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .contact-info p {
    margin-bottom: 0.5rem;
  }
  .contact-info a {
    color: #3498db;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-right {
      gap: 2rem;
    }
  }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.wp-lang-switcher-v6 {
        position: fixed;
        right: clamp(16px, 2vw, var(--space-x, 24px));
        bottom: clamp(16px, 2vw, var(--space-y, 20px));
        z-index: 99999;

        --local-random: var(--random-number, 1);
    }

    .wp-lang-switcher-v6__btn {
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        padding: calc(9px + var(--local-random) * 1px) calc(14px + var(--local-random) * 2px);
        border: 1px solid var(--border-on-surface, #e5e7eb);
        border-radius: calc(var(--radius-sm, 8px) + var(--local-random) * 1px);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: var(--shadow-sm, 0 2px 4px rgba(0,0,0,0.05));
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);

        font-size: 14px;
        font-weight: 400;
        position: relative;
    }

    .wp-lang-switcher-v6__btn::after {
        content: '';
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid var(--neutral-600, #4b5563);
        transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
    }

    .wp-lang-switcher-v6__btn:hover {
        background: var(--surface-2, #f9fafb);
        border-color: var(--neutral-300, #d1d5db);
    }

    .wp-lang-switcher-v6__dropdown.open ~ .wp-lang-switcher-v6__btn::after,
    .wp-lang-switcher-v6__btn:has(~ .wp-lang-switcher-v6__dropdown.open)::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .wp-lang-switcher-v6__flag {
        font-size: 18px;
        line-height: 1;
    }

    .wp-lang-switcher-v6__text {
        padding-right: calc(12px + var(--local-random) * 2px);
    }

    .wp-lang-switcher-v6__dropdown {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 4px);
        background: var(--surface-1, #fff);
        border: 1px solid var(--border-on-surface, #e5e7eb);
        border-radius: calc(var(--radius-sm, 8px) + var(--local-random) * 1px);
        box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
        min-width: calc(180px + var(--local-random) * 10px);
        overflow: hidden;

        transform: translateY(6px);
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
    }

    .wp-lang-switcher-v6__dropdown.open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .wp-lang-switcher-v6__dropdown button,
    .wp-lang-switcher-v6__dropdown a {
        width: 100%;
        text-align: left;
        padding: calc(9px + var(--local-random) * 1px) calc(12px + var(--local-random) * 2px);
        border: 0;
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        cursor: pointer;

        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        text-decoration: none;
    }

    .wp-lang-switcher-v6__dropdown button:hover,
    .wp-lang-switcher-v6__dropdown a:hover {
        background: var(--bg-alt, #f9fafb);
    }

    .wp-lang-switcher-v6__dropdown button:active,
    .wp-lang-switcher-v6__dropdown a:active {
        background: var(--neutral-100, #f3f4f6);
    }

.hero {
        position: relative;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--fg-on-primary);
        overflow: hidden;
    }

    .hero--compact {
        min-height: 400px;
    }

    .hero__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
    }

    .hero__overlay {
        position: absolute;
        inset: 0;
        background: var(--gradient-hero);
        opacity: 0.7;
        z-index: -1;
    }

    .hero--tint .hero__overlay {
        opacity: 0.55;
    }

    .hero__content {
        max-width: 900px;
        padding: clamp(16px, 3vw, 32px);
        z-index: 1;
    }

    .hero--tint .hero__content {
        background: var(--chip-bg);
        border-radius: var(--radius-lg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .hero h1 {
        font-size: clamp(28px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: var(--space-y);
        text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }

    .hero p {
        font-size: clamp(16px, 2.5vw, 20px);
        font-weight: 400;
        margin: 0 auto 0;
        max-width: 700px;
    }

.values-beads-c3 {
        padding: clamp(3.5rem, 8vw, 6.1rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .values-beads-c3__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .values-beads-c3__head {
        margin-bottom: 1.1rem;
    }

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

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

    .values-beads-c3__head span {
        display: block;
        margin-top: .8rem;
        color: rgba(255, 255, 255, .86);
    }

    .values-beads-c3__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .values-beads-c3__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-beads-c3__top {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .values-beads-c3__top i {
        font-style: normal;
    }

    .values-beads-c3__top strong {
        color: var(--bg-accent);
    }

    .values-beads-c3__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-beads-c3__grid p {
        margin: 0;
        color: rgba(255, 255, 255, .86);
    }

    .values-beads-c3__grid small {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .76);
    }

.social-l1 {

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

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

    .social-l1__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .social-l1__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
    }

    .social-l1__sub {
        margin: 10px 0 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .social-l1__grid {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
    }

    .social-l1__card {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 420ms var(--anim-ease);
        min-height: 170px;
    }

    .social-l1__card:hover {
        transform: rotateY(180deg);
    }

    .social-l1__front,
    .social-l1__back {
        position: absolute;
        inset: 0;
        padding: 16px;
        backface-visibility: hidden;
        border-radius: inherit;
    }

    .social-l1__front::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(260px 130px at 20% 15%, rgba(0, 86, 179, 0.12), transparent 60%),
        radial-gradient(240px 140px at 85% 35%, rgba(255, 107, 53, 0.12), transparent 62%);
        pointer-events: none;
        border-radius: inherit;
    }

    .social-l1__chip {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        position: relative;
    }

    .social-l1__big {
        margin-top: 12px;
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
        letter-spacing: -.01em;
        position: relative;
    }

    .social-l1__small {
        margin-top: 8px;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
        position: relative;
    }

    .social-l1__back {
        transform: rotateY(180deg);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
    }

    .social-l1__backTitle {
        font-weight: 900;
        color: var(--bg-primary);
        letter-spacing: -.01em;
        margin-bottom: 8px;
    }

    .social-l1__backText {
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    @media (max-width: 980px) {
        .social-l1__card {
            grid-column: span 6;
        }
    }

    @media (max-width: 640px) {
        .social-l1__card {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .social-l1__card {
            transition: none;
        }
    }

.next-fan-c5 {
        padding: clamp(3.6rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .next-fan-c5__wrap {
        max-width: 58rem;
        margin: 0 auto;
        text-align: center;
    }

    .next-fan-c5__banner p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
    }

    .next-fan-c5__banner h2 {
        margin: .5rem 0 0;
        font-size: clamp(2.1rem, 4vw, 3.1rem);
    }

    .next-fan-c5__fan {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .next-fan-c5__fan a {
        display: block;
        padding: .9rem 1rem;
        min-width: 10rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

    .next-fan-c5__fan span {
        display: block;
        margin-top: .3rem;
        color: rgba(255, 255, 255, .84);
    }

    .next-fan-c5__tail {
        margin-top: 1rem;
        color: rgba(255, 255, 255, .86);
    }

    .next-fan-c5__wrap > a {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }

.header {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(10px);
        background-color: rgba(var(--bg-page-rgb, 255, 255, 255), 0.9);
    }

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .header__logo:hover {
        color: var(--accent);
    }

    .header__nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav__list {
        display: flex;
        gap: calc(var(--gap) * 2);
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav__link {
        color: var(--fg-on-page);
        text-decoration: none;
        font-weight: 500;
        padding: var(--space-y) 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .nav__link:hover,
    .nav__link:focus {
        color: var(--brand);
    }

    .nav__link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--brand);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav__link:hover::after,
    .nav__link:focus::after {
        width: 100%;
    }

    .header__cta.btn {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
    }

    .header__cta.btn:hover,
    .header__cta.btn:focus {
        background-color: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 80%;
            max-width: 300px;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 4) var(--space-x) var(--space-y);
            transition: right var(--anim-duration) var(--anim-ease);
            flex-direction: column;
            justify-content: flex-start;
            z-index: 1000;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: var(--gap);
            width: 100%;
        }

        .nav__link {
            display: block;
            padding: calc(var(--space-y) * 0.75) 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .nav__link::after {
            display: none;
        }

        .header__cta.btn {
            display: none;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(10.5px) rotate(45deg);
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-10.5px) rotate(-45deg);
        }
    }

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-right {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
  }
  .legal-links {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #3498db;
    text-decoration: none;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 1rem;
    max-width: 90%;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .contact-info p {
    margin-bottom: 0.5rem;
  }
  .contact-info a {
    color: #3498db;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-right {
      gap: 2rem;
    }
  }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.gallery--colored-v5 {
    padding: 60px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.gallery__header {
    text-align: center;
    margin-bottom: 24px;
}

.gallery__header h2 {
    margin: 0 0 6px;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

.gallery__header p {
    margin: 0;
    color: var(--neutral-300);
}

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

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
}

.gallery__item--featured {
    border-color: var(--accent);
}

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

.gallery__item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px;
    background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
    font-size: 0.85rem;
}

.identity-lv4 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .identity-lv4__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .identity-lv4__head {
        margin-bottom: 15px;
    }

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

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

    .identity-lv4__head span {
        color: var(--neutral-600);
    }

    .identity-lv4__stack {
        display: grid;
        gap: 10px;
    }

    .identity-lv4__stack article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-light);
        padding: 12px;
    }

    .identity-lv4__line {
        display: flex;
        align-items: baseline;
        gap: 8px;
        flex-wrap: wrap;
    }

    .identity-lv4__line i {
        font-style: normal;
        color: var(--link);
    }

    .identity-lv4__line h3 {
        margin: 0;
    }

    .identity-lv4__stack p {
        margin: 7px 0 6px;
        color: var(--neutral-600);
    }

    .identity-lv4__stack small {
        color: var(--neutral-800);
        font-weight: 600;
    }

.faq-layout-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
    }

    .faq-layout-a .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-layout-a .section-head {
        margin-bottom: 14px;
    }

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

    .faq-layout-a .section-head p {
        margin: 10px 0 0;
        opacity: .92;
        color: var(--neutral-100);
    }

    .faq-layout-a .list {
        display: grid;
        gap: 10px;
    }

    .faq-layout-a .item {
        border-radius: var(--radius-md);
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .3);
        background: rgba(255, 255, 255, .1);
    }

    .faq-layout-a .q {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 12px;
        font: inherit;
        font-weight: 600;
        cursor: pointer;
        color: var(--neutral-0);
    }

    .faq-layout-a .a {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .faq-layout-a .a p {
        margin: 0;
        padding: 0 12px 12px;
        opacity: .95;
        color: var(--neutral-100);
    }

    .faq-layout-a .item.open .a {
        max-height: 240px;
    }

.story-column-l4 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .story-column-l4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1rem;
    }

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

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

    .story-column-l4__copy strong {
        display: block;
        margin-top: .8rem;
    }

    .story-column-l4__copy p {
        color: var(--neutral-600);
    }

    .story-column-l4__stats {
        display: grid;
        gap: .75rem;
    }

    .story-column-l4__stats div {
        padding: .9rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .story-column-l4__stats span {
        display: block;
        margin-top: .25rem;
        color: var(--neutral-600);
    }

    @media (max-width: 820px) {
        .story-column-l4__wrap {
            grid-template-columns: 1fr;
        }
    }

.header {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(10px);
        background-color: rgba(var(--bg-page-rgb, 255, 255, 255), 0.9);
    }

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .header__logo:hover {
        color: var(--accent);
    }

    .header__nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav__list {
        display: flex;
        gap: calc(var(--gap) * 2);
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav__link {
        color: var(--fg-on-page);
        text-decoration: none;
        font-weight: 500;
        padding: var(--space-y) 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .nav__link:hover,
    .nav__link:focus {
        color: var(--brand);
    }

    .nav__link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--brand);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav__link:hover::after,
    .nav__link:focus::after {
        width: 100%;
    }

    .header__cta.btn {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
    }

    .header__cta.btn:hover,
    .header__cta.btn:focus {
        background-color: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 80%;
            max-width: 300px;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 4) var(--space-x) var(--space-y);
            transition: right var(--anim-duration) var(--anim-ease);
            flex-direction: column;
            justify-content: flex-start;
            z-index: 1000;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: var(--gap);
            width: 100%;
        }

        .nav__link {
            display: block;
            padding: calc(var(--space-y) * 0.75) 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .nav__link::after {
            display: none;
        }

        .header__cta.btn {
            display: none;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(10.5px) rotate(45deg);
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-10.5px) rotate(-45deg);
        }
    }

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-right {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
  }
  .legal-links {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #3498db;
    text-decoration: none;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 1rem;
    max-width: 90%;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .contact-info p {
    margin-bottom: 0.5rem;
  }
  .contact-info a {
    color: #3498db;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-right {
      gap: 2rem;
    }
  }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.plans-cv2 {
        padding: clamp(54px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .plans-cv2__head {
        margin-bottom: 16px;
    }

    .plans-cv2__head h2 {
        margin: 0;
        font-size: clamp(30px, 5vw, 48px);
    }

    .plans-cv2__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .plans-cv2__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .plans-cv2__card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: var(--space-y) var(--space-x);
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .plans-cv2__card.is-active {
        transform: translateY(-4px);
        border-color: var(--bg-accent);
    }

    .plans-cv2__line {
        display: flex;
        justify-content: space-between;
        gap: 8px;
        align-items: center;
    }

    .plans-cv2__line h3 {
        margin: 0;
    }

    .plans-cv2__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .plans-cv2__price {
        margin: 10px 0 8px;
        font-size: 1.45rem;
        font-weight: 800;
    }

    .plans-cv2__list p {
        margin: 0 0 6px;
        opacity: .92;
    }

    .plans-cv2__card button {
        width: 100%;
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 9px 12px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.hiw-ledger-l2 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .hiw-ledger-l2__wrap {
        max-width: 60rem;
        margin: 0 auto;
    }

    .hiw-ledger-l2__head {
        text-align: center;
        margin-bottom: 1.2rem;
    }

    .hiw-ledger-l2__head p {
        margin: 0;
        color: var(--neutral-600);
    }

    .hiw-ledger-l2__head h2 {
        margin: .45rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .hiw-ledger-l2__rows {
        display: grid;
        gap: .8rem;
    }

    .hiw-ledger-l2__rows article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .hiw-ledger-l2__rows strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--brand);
        box-shadow: var(--shadow-sm);
    }

    .hiw-ledger-l2__rows h3 {
        margin: 0;
    }

    .hiw-ledger-l2__rows p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

.capabilities {

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

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

    .capabilities .capabilities__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 72px);

    }

    .capabilities h2 {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 800;
        margin: 0 0 1rem;
    }

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

    .capabilities .capabilities__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .capabilities .capabilities__card {
        background: var(--surface-light);
        padding: clamp(28px, 4vw, 40px);
        border-radius: var(--radius-xl);
        position: relative;

        transform: translateY(40px);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .capabilities .capabilities__card:hover {
        transform: translateY(-8px);
    }

    .capabilities .capabilities__step {
        position: absolute;
        top: -16px;
        right: 24px;
        width: 48px;
        height: 48px;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .capabilities .capabilities__icon {
        font-size: 40px;
        margin-bottom: 1.5rem;
    }

    .capabilities .capabilities__card h3 {
        font-size: clamp(20px, 2.5vw, 24px);
        font-weight: 700;
        margin: 0 0 1rem;
        color: var(--fg-on-surface-light);
    }

    .capabilities .capabilities__card p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

.header {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(10px);
        background-color: rgba(var(--bg-page-rgb, 255, 255, 255), 0.9);
    }

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .header__logo:hover {
        color: var(--accent);
    }

    .header__nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav__list {
        display: flex;
        gap: calc(var(--gap) * 2);
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav__link {
        color: var(--fg-on-page);
        text-decoration: none;
        font-weight: 500;
        padding: var(--space-y) 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .nav__link:hover,
    .nav__link:focus {
        color: var(--brand);
    }

    .nav__link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--brand);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav__link:hover::after,
    .nav__link:focus::after {
        width: 100%;
    }

    .header__cta.btn {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
    }

    .header__cta.btn:hover,
    .header__cta.btn:focus {
        background-color: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 80%;
            max-width: 300px;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 4) var(--space-x) var(--space-y);
            transition: right var(--anim-duration) var(--anim-ease);
            flex-direction: column;
            justify-content: flex-start;
            z-index: 1000;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: var(--gap);
            width: 100%;
        }

        .nav__link {
            display: block;
            padding: calc(var(--space-y) * 0.75) 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .nav__link::after {
            display: none;
        }

        .header__cta.btn {
            display: none;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(10.5px) rotate(45deg);
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-10.5px) rotate(-45deg);
        }
    }

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-right {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
  }
  .legal-links {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #3498db;
    text-decoration: none;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 1rem;
    max-width: 90%;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .contact-info p {
    margin-bottom: 0.5rem;
  }
  .contact-info a {
    color: #3498db;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-right {
      gap: 2rem;
    }
  }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

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

    .map-notes-l6__head {
        text-align: center;
        margin-bottom: 1rem;
    }

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

    .map-notes-l6__head p {
        margin: .55rem 0 0;
        color: var(--neutral-600);
    }

    .map-notes-l6__frame {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .map-notes-l6__frame iframe {
        display: block;
        width: 100%;
        height: 24rem;
    }

    .map-notes-l6__grid {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
        gap: var(--gap);
    }

    .map-notes-l6__grid article {
        padding: .95rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .map-notes-l6__grid p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

    .map-notes-l6__grid a {
        color: var(--link);
        text-decoration: none;
    }
    .map-notes-l6__grid a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

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

    .contact-layout-a .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .contact-layout-a .section-head {
        margin-bottom: 18px;
        text-align: center;
    }

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

    .contact-layout-a .section-head p {
        margin: 10px auto 0;
        max-width: 70ch;
        opacity: .92;
    }

    .contact-layout-a .panel {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-lg);
        padding: 18px;
        backdrop-filter: blur(6px);
    }

    .contact-layout-a h3 {
        margin: 0 0 12px;
    }

    .contact-layout-a .list p {
        margin: 0 0 10px;
        display: grid;
        gap: 2px;
    }

    .contact-layout-a .list span {
        opacity: .94;
    }

    .contact-layout-a .social-row {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .contact-layout-a .social-row a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .4);
    }

    .contact-layout-a .social-row a:hover {
        background: rgba(255, 255, 255, .15);
    }

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

    .form-layout-d .wrap {
        max-width: 760px;
        margin: 0 auto;
    }

    .form-layout-d .section-head {
        margin-bottom: 18px;
    }

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

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

    .form-layout-d .line-form {
        border-top: 2px solid var(--brand);
        padding-top: 12px;
    }

    .form-layout-d label {
        display: grid;
        gap: 8px;
        margin-bottom: 12px;
        font-weight: 600;
        color: var(--brand);
    }

    .form-layout-d input, .form-layout-d textarea {
        border: 0;
        border-bottom: 1px solid var(--neutral-300);
        padding: 8px 2px;
        font: inherit;
        background: transparent;
    }

    .form-layout-d input:focus, .form-layout-d textarea:focus {
        outline: none;
        border-color: var(--ring);
    }

    .form-layout-d button {
        border: 1px solid var(--brand);
        color: var(--brand);
        background: transparent;
        border-radius: 999px;
        padding: 9px 16px;
    }

.header {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(10px);
        background-color: rgba(var(--bg-page-rgb, 255, 255, 255), 0.9);
    }

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .header__logo:hover {
        color: var(--accent);
    }

    .header__nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav__list {
        display: flex;
        gap: calc(var(--gap) * 2);
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav__link {
        color: var(--fg-on-page);
        text-decoration: none;
        font-weight: 500;
        padding: var(--space-y) 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .nav__link:hover,
    .nav__link:focus {
        color: var(--brand);
    }

    .nav__link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--brand);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav__link:hover::after,
    .nav__link:focus::after {
        width: 100%;
    }

    .header__cta.btn {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
    }

    .header__cta.btn:hover,
    .header__cta.btn:focus {
        background-color: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 80%;
            max-width: 300px;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 4) var(--space-x) var(--space-y);
            transition: right var(--anim-duration) var(--anim-ease);
            flex-direction: column;
            justify-content: flex-start;
            z-index: 1000;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: var(--gap);
            width: 100%;
        }

        .nav__link {
            display: block;
            padding: calc(var(--space-y) * 0.75) 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .nav__link::after {
            display: none;
        }

        .header__cta.btn {
            display: none;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(10.5px) rotate(45deg);
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-10.5px) rotate(-45deg);
        }
    }

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-right {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
  }
  .legal-links {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #3498db;
    text-decoration: none;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 1rem;
    max-width: 90%;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .contact-info p {
    margin-bottom: 0.5rem;
  }
  .contact-info a {
    color: #3498db;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-right {
      gap: 2rem;
    }
  }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.terms-layout-e {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .terms-layout-e .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

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

    .terms-layout-e .rows {
        display: grid;
        gap: 10px;
    }

    .terms-layout-e article {
        border-left: 4px solid var(--brand);
        background: var(--surface-1);
        border-radius: var(--radius-sm);
        padding: 12px 12px 12px 14px;
        box-shadow: var(--shadow-sm);
    }

    .terms-layout-e .head h3 {
        margin: 0 0 8px;
    }

    .terms-layout-e h4 {
        margin: 10px 0 6px;
    }

    .terms-layout-e p, .terms-layout-e li {
        color: var(--neutral-600);
    }

.header {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(10px);
        background-color: rgba(var(--bg-page-rgb, 255, 255, 255), 0.9);
    }

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .header__logo:hover {
        color: var(--accent);
    }

    .header__nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav__list {
        display: flex;
        gap: calc(var(--gap) * 2);
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav__link {
        color: var(--fg-on-page);
        text-decoration: none;
        font-weight: 500;
        padding: var(--space-y) 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .nav__link:hover,
    .nav__link:focus {
        color: var(--brand);
    }

    .nav__link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--brand);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav__link:hover::after,
    .nav__link:focus::after {
        width: 100%;
    }

    .header__cta.btn {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
    }

    .header__cta.btn:hover,
    .header__cta.btn:focus {
        background-color: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 80%;
            max-width: 300px;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 4) var(--space-x) var(--space-y);
            transition: right var(--anim-duration) var(--anim-ease);
            flex-direction: column;
            justify-content: flex-start;
            z-index: 1000;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: var(--gap);
            width: 100%;
        }

        .nav__link {
            display: block;
            padding: calc(var(--space-y) * 0.75) 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .nav__link::after {
            display: none;
        }

        .header__cta.btn {
            display: none;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(10.5px) rotate(45deg);
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-10.5px) rotate(-45deg);
        }
    }

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-right {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
  }
  .legal-links {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #3498db;
    text-decoration: none;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 1rem;
    max-width: 90%;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .contact-info p {
    margin-bottom: 0.5rem;
  }
  .contact-info a {
    color: #3498db;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-right {
      gap: 2rem;
    }
  }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.thank-mode-d {
        padding: clamp(56px, 10vw, 114px) 18px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .thank-mode-d .core {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .24);
    }

    .thank-mode-d h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 52px);
    }

    .thank-mode-d p {
        margin: 12px 0 0;
        opacity: .9;
    }

    .thank-mode-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 999px;
        text-decoration: none;
        background: var(--accent);
        color: var(--accent-contrast);
    }

.header {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(10px);
        background-color: rgba(var(--bg-page-rgb, 255, 255, 255), 0.9);
    }

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .header__logo:hover {
        color: var(--accent);
    }

    .header__nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav__list {
        display: flex;
        gap: calc(var(--gap) * 2);
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav__link {
        color: var(--fg-on-page);
        text-decoration: none;
        font-weight: 500;
        padding: var(--space-y) 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .nav__link:hover,
    .nav__link:focus {
        color: var(--brand);
    }

    .nav__link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--brand);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav__link:hover::after,
    .nav__link:focus::after {
        width: 100%;
    }

    .header__cta.btn {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
    }

    .header__cta.btn:hover,
    .header__cta.btn:focus {
        background-color: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 80%;
            max-width: 300px;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 4) var(--space-x) var(--space-y);
            transition: right var(--anim-duration) var(--anim-ease);
            flex-direction: column;
            justify-content: flex-start;
            z-index: 1000;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: var(--gap);
            width: 100%;
        }

        .nav__link {
            display: block;
            padding: calc(var(--space-y) * 0.75) 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .nav__link::after {
            display: none;
        }

        .header__cta.btn {
            display: none;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(10.5px) rotate(45deg);
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-10.5px) rotate(-45deg);
        }
    }

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-right {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
  }
  .legal-links {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #3498db;
    text-decoration: none;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 1rem;
    max-width: 90%;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .contact-info p {
    margin-bottom: 0.5rem;
  }
  .contact-info a {
    color: #3498db;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-right {
      gap: 2rem;
    }
  }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.err-slab-d {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: var(--accent);
        color: var(--neutral-0);
    }

    .err-slab-d .plate {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 50px);
        border-radius: var(--radius-xl);
        background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
        border: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .err-slab-d p {
        margin: 12px 0 0;
        color: var(--neutral-100);
    }

    .err-slab-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 18px;
        border-radius: var(--radius-md);
        background: var(--accent);
        color: var(--accent-contrast);
        text-decoration: none;
    }