:root {
  --font-family: "Montserrat", sans-serif;
  --font-size-base: 17.5px;
  --line-height-base: 1.38;

  --max-w: 1240px;
  --space-x: 1.2rem;
  --space-y: 1.37rem;
  --gap: 1.87rem;

  --radius-xl: 1.2rem;
  --radius-lg: 0.84rem;
  --radius-md: 0.52rem;
  --radius-sm: 0.36rem;

  --shadow-sm: 0 1px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 10px 24px rgba(0,0,0,0.2);
  --shadow-lg: 0 20px 54px rgba(0,0,0,0.24);

  --overlay: rgba(0, 0, 0, 0.4);
  --anim-duration: 140ms;
  --anim-ease: cubic-bezier(0.4,0,0.2,1);
  --random-number: 2;

  --brand: #0056A3;
  --brand-contrast: #FFFFFF;
  --accent: #FF7A00;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D9E6;
  --neutral-600: #6B7C93;
  --neutral-800: #2C3E50;
  --neutral-900: #1A2530;

  --bg-page: #F8FAFD;
  --fg-on-page: #1A2530;

  --bg-alt: #FFFFFF;
  --fg-on-alt: #2C3E50;

  --surface-1: #FFFFFF;
  --surface-2: #F5F7FA;
  --fg-on-surface: #2C3E50;
  --border-on-surface: #E1E8F0;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #2C3E50;
  --border-on-surface-light: #D1D9E6;

  --bg-primary: #0056A3;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #0068C9;
  --ring: #0056A3;

  --bg-accent: #FFF4E6;
  --fg-on-accent: #B35600;
  --bg-accent-hover: #FF8C1A;

  --link: #0056A3;
  --link-hover: #0068C9;

  --gradient-hero: linear-gradient(135deg, #0056A3 0%, #003A6F 100%);
  --gradient-accent: linear-gradient(90deg, #FF7A00 0%, #FF9E40 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;}

.site-header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        z-index: 1001;
    }

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

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-around;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        width: 100%;
        height: 2px;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .main-nav {
        display: block;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0.25rem;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

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

    .nav-link:hover::after {
        width: 100%;
    }

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding-top: 5rem;
            z-index: 1000;
            overflow-y: auto;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

        .nav-list {
            flex-direction: column;
            padding: 0 var(--space-x);
            gap: 1.5rem;
        }

        .nav-link {
            display: block;
            padding: 0.5rem 0;
            font-size: calc(var(--font-size-base) * 1.1);
        }

        .nav-link::after {
            display: none;
        }

        .site-header::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--overlay);
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 999;
        }

        .site-header.menu-open::before {
            opacity: 1;
            visibility: visible;
        }
    }

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    color: #333;
    font-family: sans-serif;
    padding: 2rem 1rem;
    margin-top: 3rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ccc;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0056b3;
  }
  .footer-nav {
    flex: 1;
    min-width: 200px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #003d82;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .footer-contact address ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #0056b3;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-legal {
    text-align: right;
    flex: 1;
    min-width: 300px;
  }
  .footer-legal a {
    color: #666;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  .footer-disclaimer {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #888;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-legal {
      text-align: center;
    }
    .footer-disclaimer {
      margin-left: 0;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__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-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.intro-focus-alt {

        background: var(--fg-on-primary);
        color: var(--bg-primary);
        padding: clamp(60px, 10vw, 120px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .intro-focus-alt::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: var(--accent);
        border-radius: 50%;
        opacity: 0.1;
        filter: blur(80px);
        animation: pulseGlow 4s ease-in-out infinite;
    }

    @keyframes pulseGlow {
        0%, 100% {
            transform: scale(1);
            opacity: 0.1;
        }
        50% {
            transform: scale(1.2);
            opacity: 0.15;
        }
    }

    .intro-focus-alt .intro-focus-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .intro-focus-alt .intro-focus-alt__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(32px, 5vw, 64px);
        align-items: center;
    }

    @media (min-width: 768px) {
        .intro-focus-alt .intro-focus-alt__grid {
            grid-template-columns: 1.2fr 1fr;
        }
    }

    .intro-focus-alt .intro-focus-alt__visual {
        order: var(--random-number);
    }

    .intro-focus-alt .intro-focus-alt__title {
        font-size: clamp(32px, 6vw, 56px);
        font-weight: 800;
        margin: 0 0 1.5rem;
        line-height: 1.1;
        position: relative;
    }

    .intro-focus-alt .intro-focus-alt__title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 80px;
        height: 4px;
        background: var(--accent);
        border-radius: var(--radius-sm);
        animation: expandLine 1s ease-out 0.8s forwards;
        transform: scaleX(0);
        transform-origin: left;
    }

    @keyframes expandLine {
        to {
            transform: scaleX(1);
        }
    }

    .intro-focus-alt .intro-focus-alt__description {
        font-size: clamp(16px, 2vw, 20px);
        margin: 2rem 0 0;
        opacity: 0.9;
        line-height: var(--line-height-base);
    }

    .intro-focus-alt .intro-focus-alt__card {
        background: var(--brand-contrast);
        padding: clamp(32px, 4vw, 48px);
        border-radius: var(--radius-xl);
        text-align: center;
        box-shadow: var(--shadow-lg);
        position: relative;
        overflow: hidden;
    }

    .intro-focus-alt .intro-focus-alt__card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
        to {
            left: 100%;
        }
    }

    .intro-focus-alt .intro-focus-alt__icon {
        color: var(--fg-on-surface-light);
        font-size: clamp(48px, 6vw, 64px);
        margin-bottom: 1rem;
    }

    .intro-focus-alt .intro-focus-alt__fact {
        font-size: clamp(40px, 6vw, 56px);
        font-weight: 900;
        color: var(--brand);
        margin-bottom: 0.5rem;
        line-height: 1;
    }

    .intro-focus-alt .intro-focus-alt__caption {
        font-size: clamp(14px, 1.5vw, 18px);
        color: var(--neutral-600);
        font-weight: 600;
    }

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

    .values-chain-c7__wrap {
        max-width: 60rem;
        margin: 0 auto;
    }

    .values-chain-c7__head {
        margin-bottom: 1.1rem;
    }

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

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

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

    .values-chain-c7__list {
        display: grid;
        gap: .8rem;
    }

    .values-chain-c7__list article {
        display: grid;
        grid-template-columns: 2.7rem 1fr 2rem;
        gap: .8rem;
        align-items: center;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-chain-c7__list b {
        display: grid;
        place-items: center;
        width: 2.7rem;
        height: 2.7rem;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

    .values-chain-c7__list h3 {
        margin: 0;
    }

    .values-chain-c7__list p {
        margin: .35rem 0 0;
        color: rgba(255, 255, 255, .84);
    }

    .values-chain-c7__list i {
        font-style: normal;
        text-align: right;
    }

.capabilities-light {

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

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

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

    }

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

    .capabilities-light .capabilities-light__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

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

    .capabilities-light .capabilities-light__card {
        background: var(--surface-1);
        border: 2px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3vw, 36px);
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        transition: all var(--anim-duration) var(--anim-ease);

        transform: scale(0.95);
    }

    .capabilities-light .capabilities-light__card:hover {
        border-color: var(--brand);
        box-shadow: var(--shadow-md);
        transform: scale(1);
    }

    .capabilities-light .capabilities-light__visual {
        flex-shrink: 0;
        position: relative;
    }

    .capabilities-light .capabilities-light__badge {
        position: absolute;
        top: -8px;
        right: -8px;
        width: 24px;
        height: 24px;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
        box-shadow: var(--shadow-sm);
    }

    .capabilities-light .capabilities-light__icon {
        width: 64px;
        height: 64px;
        background: var(--bg-accent);
        border-radius: var(--radius-lg);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
    }

    .capabilities-light .capabilities-light__content {
        flex: 1;
    }

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

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

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

    .visual-path-c3__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .visual-path-c3__head {
        margin-bottom: 1rem;
    }

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

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

    .visual-path-c3__list {
        display: grid;
        gap: .8rem;
    }

    .visual-path-c3__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

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

    .visual-path-c3__meta span {
        color: rgba(255, 255, 255, .78);
    }

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

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

    .visual-path-c3__content small {
        color: rgba(255, 255, 255, .76);
    }

    .visual-path-c3__content h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-path-c3__content p {
        margin: 0;
        color: rgba(255, 255, 255, .84);
    }

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

.social-l2 {

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

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

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

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

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

    .social-l2__wrap {
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .social-l2__quoteBox {
        padding: 18px;
        border-bottom: 1px solid var(--border-on-surface);
        position: relative;
    }

    .social-l2__quote {
        display: none;
    }

    .social-l2__quote.is-on {
        display: block;
    }

    .social-l2__q {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
    }

    .social-l2__m {
        margin-top: 12px;
        color: var(--neutral-600);
        font-weight: 800;
    }

    .social-l2__badges {
        overflow: hidden;
        background: var(--bg-alt);
    }

    .social-l2__badgeTrack {
        display: flex;
        gap: 10px;
        padding: 12px;
        width: max-content;
        animation: socialL2Badges 16s linear infinite;
    }

    @keyframes socialL2Badges {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(-50%)
        }
    }

    .social-l2__badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        white-space: nowrap;
    }

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

.site-header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        z-index: 1001;
    }

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

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-around;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        width: 100%;
        height: 2px;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .main-nav {
        display: block;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0.25rem;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

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

    .nav-link:hover::after {
        width: 100%;
    }

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding-top: 5rem;
            z-index: 1000;
            overflow-y: auto;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

        .nav-list {
            flex-direction: column;
            padding: 0 var(--space-x);
            gap: 1.5rem;
        }

        .nav-link {
            display: block;
            padding: 0.5rem 0;
            font-size: calc(var(--font-size-base) * 1.1);
        }

        .nav-link::after {
            display: none;
        }

        .site-header::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--overlay);
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 999;
        }

        .site-header.menu-open::before {
            opacity: 1;
            visibility: visible;
        }
    }

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    color: #333;
    font-family: sans-serif;
    padding: 2rem 1rem;
    margin-top: 3rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ccc;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0056b3;
  }
  .footer-nav {
    flex: 1;
    min-width: 200px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #003d82;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .footer-contact address ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #0056b3;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-legal {
    text-align: right;
    flex: 1;
    min-width: 300px;
  }
  .footer-legal a {
    color: #666;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  .footer-disclaimer {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #888;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-legal {
      text-align: center;
    }
    .footer-disclaimer {
      margin-left: 0;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__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-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.post-list {

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

    .post-list .post-list__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .post-list .post-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

    .post-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .post-list .post-list__categories {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .post-list .post-list__category {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-light);
        color: var(--fg-on-page);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-list .post-list__category:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .post-list .post-list__list {
        display: flex;
        flex-direction: column;
        gap: var(--space-x);
    }

    .post-list .post-list__item {
        background: var(--surface-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(16px, 2vw, 24px);
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-list .post-list__item:hover {
        box-shadow: var(--shadow-md);
        transform: translateX(4px);
    }

    .post-list .post-list__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .post-list h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.2vw, 22px);
    }

    .post-list h3 a {
        color: var(--fg-on-page);
        text-decoration: none;
    }

    .post-list h3 a:hover {
        color: var(--bg-primary);
    }

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

.index-recommendations-split {
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.75), transparent 60%),
        linear-gradient(135deg, rgba(212, 165, 165, 0.45), rgba(248, 225, 231, 0.95));
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

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

        transform: translateY(-18px);
    }

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

    .index-recommendations-split__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-recommendations-split__grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-recommendations-split__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        background: rgba(255, 255, 255, 0.65);
        border: 1px solid rgba(58, 46, 61, 0.12);
        display: grid;
        grid-template-rows: 170px 1fr;

        transform: translateY(26px);
        backdrop-filter: blur(10px);
    }

    .index-recommendations-split__card:nth-child(1) {
        grid-column: span 12;
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: 1fr;
        min-height: 320px;
    }

    .index-recommendations-split__media {
        position: relative;
        background-size: cover;
        background-position: center;
        background-color: rgba(58, 46, 61, 0.08);
    }

    .index-recommendations-split__card:nth-child(1) .index-recommendations-split__media {
        border-right: 1px solid rgba(58, 46, 61, 0.12);
    }

    .index-recommendations-split__media::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
        pointer-events: none;
    }

    .index-recommendations-split__pill {
        position: absolute;
        left: 14px;
        top: 14px;
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(58, 46, 61, 0.14);
        color: var(--fg-on-page);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        z-index: 1;
    }

    .index-recommendations-split__body {
        padding: 18px 18px 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

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

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

    .index-recommendations-split__body p {
        margin: 0;
        color: rgba(58, 46, 61, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-split__link {
        margin-top: auto;
        color: var(--link);
        text-decoration: none;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

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

    .index-recommendations-split__link:hover {
        color: var(--link-hover);
    }

    @media (max-width: 900px) {
        .index-recommendations-split__grid {
            grid-template-columns: repeat(6, 1fr);
        }

        .index-recommendations-split__card {
            grid-column: span 6;
        }

        .index-recommendations-split__card:nth-child(1) {
            grid-template-columns: 1fr;
            grid-template-rows: 200px 1fr;
            min-height: 0;
        }

        .index-recommendations-split__card:nth-child(1) .index-recommendations-split__media {
            border-right: 0;
            border-bottom: 1px solid rgba(58, 46, 61, 0.12);
        }
    }

.site-header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        z-index: 1001;
    }

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

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-around;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        width: 100%;
        height: 2px;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .main-nav {
        display: block;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0.25rem;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

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

    .nav-link:hover::after {
        width: 100%;
    }

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding-top: 5rem;
            z-index: 1000;
            overflow-y: auto;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

        .nav-list {
            flex-direction: column;
            padding: 0 var(--space-x);
            gap: 1.5rem;
        }

        .nav-link {
            display: block;
            padding: 0.5rem 0;
            font-size: calc(var(--font-size-base) * 1.1);
        }

        .nav-link::after {
            display: none;
        }

        .site-header::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--overlay);
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 999;
        }

        .site-header.menu-open::before {
            opacity: 1;
            visibility: visible;
        }
    }

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    color: #333;
    font-family: sans-serif;
    padding: 2rem 1rem;
    margin-top: 3rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ccc;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0056b3;
  }
  .footer-nav {
    flex: 1;
    min-width: 200px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #003d82;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .footer-contact address ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #0056b3;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-legal {
    text-align: right;
    flex: 1;
    min-width: 300px;
  }
  .footer-legal a {
    color: #666;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  .footer-disclaimer {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #888;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-legal {
      text-align: center;
    }
    .footer-disclaimer {
      margin-left: 0;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__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-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.post-item {

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

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

    .post-item .post-item__header {
        margin-bottom: var(--space-y);
    }

    .post-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .post-item .post-item__content {
        background: var(--surface-1);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
        border: 1px solid var(--border-on-surface);
    }

    .post-item .post-item__comments {
        background: var(--surface-1);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
    }

    .post-item .post-item__comments h3 {
        margin: 0 0 1.5rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__comments-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comment {
        background: var(--surface-2);
        padding: 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface-light);
    }

    .post-item .post-item__comment-author {
        font-weight: 600;
        color: var(--fg-on-page);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {
        color: var(--neutral-800);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;
        color: var(--neutral-600);
    }

    .post-item .post-item__reply-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .post-item .post-item__reply-form textarea {
        padding: 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface-light);
        outline: none;
        min-height: 100px;
        background: var(--surface-2);
        color: var(--fg-on-page);
        font-family: var(--font-family);
    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-family: var(--font-family);
    }

    .post-item .post-item__reply-form button:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.author {

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

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

    .author .author__card {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
        background: var(--surface-1);
        padding: clamp(32px, 5vw, 48px);
        border-radius: var(--radius-xl);
    }

    .author .author__image {
        width: clamp(140px, 20vw, 200px);
        height: clamp(140px, 20vw, 200px);
        margin: 0 auto clamp(24px, 4vw, 32px);
        border-radius: 50%;
        overflow: hidden;
    }

    .author .author__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .author .author__info h3 {
        font-size: clamp(26px, 4.5vw, 36px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-surface);
    }

    .author .author__role {
        font-size: clamp(16px, 2.5vw, 18px);
        color: var(--bg-accent);
        margin: 0 0 1.5rem;
        font-weight: 600;
    }

    .author .author__bio {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0;
    }

.site-header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        z-index: 1001;
    }

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

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-around;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        width: 100%;
        height: 2px;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .main-nav {
        display: block;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0.25rem;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

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

    .nav-link:hover::after {
        width: 100%;
    }

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding-top: 5rem;
            z-index: 1000;
            overflow-y: auto;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

        .nav-list {
            flex-direction: column;
            padding: 0 var(--space-x);
            gap: 1.5rem;
        }

        .nav-link {
            display: block;
            padding: 0.5rem 0;
            font-size: calc(var(--font-size-base) * 1.1);
        }

        .nav-link::after {
            display: none;
        }

        .site-header::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--overlay);
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 999;
        }

        .site-header.menu-open::before {
            opacity: 1;
            visibility: visible;
        }
    }

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    color: #333;
    font-family: sans-serif;
    padding: 2rem 1rem;
    margin-top: 3rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ccc;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0056b3;
  }
  .footer-nav {
    flex: 1;
    min-width: 200px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #003d82;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .footer-contact address ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #0056b3;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-legal {
    text-align: right;
    flex: 1;
    min-width: 300px;
  }
  .footer-legal a {
    color: #666;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  .footer-disclaimer {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #888;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-legal {
      text-align: center;
    }
    .footer-disclaimer {
      margin-left: 0;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__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-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.post-item--colored-v5 {
    padding: 64px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.post-item__inner {
    max-width: 720px;
    margin: 0 auto;
}

.post-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    border: 1px solid rgba(148,163,184,0.8);
    box-shadow: var(--shadow-lg);
}

.post-item__category {
    margin: 0 0 6px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--bg-accent);
}

.post-item__header h1 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

.post-item__meta {
    margin: 0;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.post-item__lead {
    margin: 12px 0;
    font-size: 0.95rem;
    color: var(--neutral-100);
}

.post-item__body {
    font-size: 0.92rem;
    color: var(--neutral-300);
    line-height: 1.7;
}
.post-item__body h2 {
    color: var(--neutral-100);
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-size: 1.3rem;
}
.post-item__body p {
    margin-bottom: 1em;
}
.post-item__body ul {
    margin-bottom: 1em;
    padding-left: 1.5em;
}
.post-item__body li {
    margin-bottom: 0.5em;
}
.post-item__body strong {
    color: var(--neutral-100);
}
.post-item__body em {
    color: var(--neutral-300);
}

.site-header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        z-index: 1001;
    }

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

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-around;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        width: 100%;
        height: 2px;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .main-nav {
        display: block;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0.25rem;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

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

    .nav-link:hover::after {
        width: 100%;
    }

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding-top: 5rem;
            z-index: 1000;
            overflow-y: auto;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

        .nav-list {
            flex-direction: column;
            padding: 0 var(--space-x);
            gap: 1.5rem;
        }

        .nav-link {
            display: block;
            padding: 0.5rem 0;
            font-size: calc(var(--font-size-base) * 1.1);
        }

        .nav-link::after {
            display: none;
        }

        .site-header::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--overlay);
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 999;
        }

        .site-header.menu-open::before {
            opacity: 1;
            visibility: visible;
        }
    }

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    color: #333;
    font-family: sans-serif;
    padding: 2rem 1rem;
    margin-top: 3rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ccc;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0056b3;
  }
  .footer-nav {
    flex: 1;
    min-width: 200px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #003d82;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .footer-contact address ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #0056b3;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-legal {
    text-align: right;
    flex: 1;
    min-width: 300px;
  }
  .footer-legal a {
    color: #666;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  .footer-disclaimer {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #888;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-legal {
      text-align: center;
    }
    .footer-disclaimer {
      margin-left: 0;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__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-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.post-item {

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

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

    .post-item .post-item__header {
        margin-bottom: var(--space-y);
    }

    .post-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;
        font-size: 0.875rem;
    }

    .post-item .post-item__content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comments {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
    }

    .post-item .post-item__comments h3 {
        margin: 0 0 1.5rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__comments-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comment {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .post-item .post-item__comment-author {
        font-weight: 600;
        color: var(--fg-on-page);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;
    }

    .post-item .post-item__reply-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .post-item .post-item__reply-form textarea {
        padding: 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--fg-on-page);
        outline: none;
        min-height: 100px;

    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--fg-on-page);
        color: var(--bg-page);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-item .post-item__reply-form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.site-header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        z-index: 1001;
    }

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

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-around;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        width: 100%;
        height: 2px;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .main-nav {
        display: block;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0.25rem;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

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

    .nav-link:hover::after {
        width: 100%;
    }

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding-top: 5rem;
            z-index: 1000;
            overflow-y: auto;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

        .nav-list {
            flex-direction: column;
            padding: 0 var(--space-x);
            gap: 1.5rem;
        }

        .nav-link {
            display: block;
            padding: 0.5rem 0;
            font-size: calc(var(--font-size-base) * 1.1);
        }

        .nav-link::after {
            display: none;
        }

        .site-header::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--overlay);
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 999;
        }

        .site-header.menu-open::before {
            opacity: 1;
            visibility: visible;
        }
    }

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    color: #333;
    font-family: sans-serif;
    padding: 2rem 1rem;
    margin-top: 3rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ccc;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0056b3;
  }
  .footer-nav {
    flex: 1;
    min-width: 200px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #003d82;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .footer-contact address ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #0056b3;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-legal {
    text-align: right;
    flex: 1;
    min-width: 300px;
  }
  .footer-legal a {
    color: #666;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  .footer-disclaimer {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #888;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-legal {
      text-align: center;
    }
    .footer-disclaimer {
      margin-left: 0;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__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-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.article-list--colored-v5 {

    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.article-list__header {
    margin-bottom: 20px;
}

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

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

.article-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.article-list__card {
    background: rgba(15,23,42,0.9);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    border: 1px solid rgba(148,163,184,0.6);
}

.article-list__card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: var(--brand-contrast);
}

.article-list__card p {
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: rgba(226,232,240,0.9);
}

.article-list__link {
    font-size: 0.85rem;
    color: var(--bg-accent);
    text-decoration: none;
}

.site-header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        z-index: 1001;
    }

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

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-around;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        width: 100%;
        height: 2px;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .main-nav {
        display: block;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0.25rem;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

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

    .nav-link:hover::after {
        width: 100%;
    }

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding-top: 5rem;
            z-index: 1000;
            overflow-y: auto;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

        .nav-list {
            flex-direction: column;
            padding: 0 var(--space-x);
            gap: 1.5rem;
        }

        .nav-link {
            display: block;
            padding: 0.5rem 0;
            font-size: calc(var(--font-size-base) * 1.1);
        }

        .nav-link::after {
            display: none;
        }

        .site-header::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--overlay);
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 999;
        }

        .site-header.menu-open::before {
            opacity: 1;
            visibility: visible;
        }
    }

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    color: #333;
    font-family: sans-serif;
    padding: 2rem 1rem;
    margin-top: 3rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ccc;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0056b3;
  }
  .footer-nav {
    flex: 1;
    min-width: 200px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #003d82;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .footer-contact address ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #0056b3;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-legal {
    text-align: right;
    flex: 1;
    min-width: 300px;
  }
  .footer-legal a {
    color: #666;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  .footer-disclaimer {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #888;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-legal {
      text-align: center;
    }
    .footer-disclaimer {
      margin-left: 0;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__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-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.touch-column {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

    .touch-column .head {
        margin-bottom: 14px;
    }

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

    .touch-column .head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .touch-column .cols {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 12px;
    }

    .touch-column .left,
    .touch-column .right {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 12px;
    }

    .touch-column .list-title {
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .touch-column article {
        padding: 8px 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .touch-column article:last-child {
        border-bottom: 0;
    }

    .touch-column h3 {
        margin: 0 0 6px;
    }

    .touch-column article p {
        margin: 0 0 6px;
        color: var(--neutral-600);
    }

    .touch-column article a {
        color: var(--link);
        text-decoration: none;
    }

    .touch-column .right img {
        width: 100%;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface-light);
    }

    .touch-column .right a {
        display: inline-block;
        margin-top: 10px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 860px) {
        .touch-column .cols {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

    .contact-layout-c .stack {
        border-left: 3px solid var(--brand);
        padding-left: 16px;
        display: grid;
        gap: 12px;
    }

    .contact-layout-c .line h3 {
        margin: 0;
        font-size: 1rem;
        color: var(--brand);
    }

    .contact-layout-c .line p {
        margin: 4px 0 0;
    }

    .contact-layout-c .social-bar {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .contact-layout-c .social-bar a {
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .contact-layout-c .social-bar a:hover {
        transform: translateY(-2px);
    }

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

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

    .map-note-c3__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 1rem;
    }

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

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

    .map-note-c3__notes {
        margin-top: 1rem;
        display: grid;
        gap: .7rem;
    }

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

    .map-note-c3__notes span {
        display: block;
        margin-top: .3rem;
        color: rgba(255, 255, 255, .84);
    }

    .map-note-c3__embed {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

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

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

.site-header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        z-index: 1001;
    }

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

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-around;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        width: 100%;
        height: 2px;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .main-nav {
        display: block;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0.25rem;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

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

    .nav-link:hover::after {
        width: 100%;
    }

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding-top: 5rem;
            z-index: 1000;
            overflow-y: auto;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

        .nav-list {
            flex-direction: column;
            padding: 0 var(--space-x);
            gap: 1.5rem;
        }

        .nav-link {
            display: block;
            padding: 0.5rem 0;
            font-size: calc(var(--font-size-base) * 1.1);
        }

        .nav-link::after {
            display: none;
        }

        .site-header::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--overlay);
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 999;
        }

        .site-header.menu-open::before {
            opacity: 1;
            visibility: visible;
        }
    }

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    color: #333;
    font-family: sans-serif;
    padding: 2rem 1rem;
    margin-top: 3rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ccc;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0056b3;
  }
  .footer-nav {
    flex: 1;
    min-width: 200px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #003d82;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .footer-contact address ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #0056b3;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-legal {
    text-align: right;
    flex: 1;
    min-width: 300px;
  }
  .footer-legal a {
    color: #666;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  .footer-disclaimer {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #888;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-legal {
      text-align: center;
    }
    .footer-disclaimer {
      margin-left: 0;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__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-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

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

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

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

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

    .policy-layout-e .columns {
        columns: 2 260px;
        column-gap: 14px;
    }

    .policy-layout-e article {
        break-inside: avoid;
        margin-bottom: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 12px;
        background: rgba(255, 255, 255, .05);
    }

    .policy-layout-e h3 {
        margin: 0;
    }

    .policy-layout-e .meta {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

    .policy-layout-e article p:last-child {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

.site-header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        z-index: 1001;
    }

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

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-around;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        width: 100%;
        height: 2px;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .main-nav {
        display: block;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0.25rem;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

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

    .nav-link:hover::after {
        width: 100%;
    }

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding-top: 5rem;
            z-index: 1000;
            overflow-y: auto;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

        .nav-list {
            flex-direction: column;
            padding: 0 var(--space-x);
            gap: 1.5rem;
        }

        .nav-link {
            display: block;
            padding: 0.5rem 0;
            font-size: calc(var(--font-size-base) * 1.1);
        }

        .nav-link::after {
            display: none;
        }

        .site-header::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--overlay);
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 999;
        }

        .site-header.menu-open::before {
            opacity: 1;
            visibility: visible;
        }
    }

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    color: #333;
    font-family: sans-serif;
    padding: 2rem 1rem;
    margin-top: 3rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ccc;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0056b3;
  }
  .footer-nav {
    flex: 1;
    min-width: 200px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #003d82;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .footer-contact address ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #0056b3;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-legal {
    text-align: right;
    flex: 1;
    min-width: 300px;
  }
  .footer-legal a {
    color: #666;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  .footer-disclaimer {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #888;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-legal {
      text-align: center;
    }
    .footer-disclaimer {
      margin-left: 0;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__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-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

.site-header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        z-index: 1001;
    }

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

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-around;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        width: 100%;
        height: 2px;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .main-nav {
        display: block;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0.25rem;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

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

    .nav-link:hover::after {
        width: 100%;
    }

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding-top: 5rem;
            z-index: 1000;
            overflow-y: auto;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

        .nav-list {
            flex-direction: column;
            padding: 0 var(--space-x);
            gap: 1.5rem;
        }

        .nav-link {
            display: block;
            padding: 0.5rem 0;
            font-size: calc(var(--font-size-base) * 1.1);
        }

        .nav-link::after {
            display: none;
        }

        .site-header::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--overlay);
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 999;
        }

        .site-header.menu-open::before {
            opacity: 1;
            visibility: visible;
        }
    }

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    color: #333;
    font-family: sans-serif;
    padding: 2rem 1rem;
    margin-top: 3rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ccc;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0056b3;
  }
  .footer-nav {
    flex: 1;
    min-width: 200px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #003d82;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .footer-contact address ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #0056b3;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-legal {
    text-align: right;
    flex: 1;
    min-width: 300px;
  }
  .footer-legal a {
    color: #666;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  .footer-disclaimer {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #888;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-legal {
      text-align: center;
    }
    .footer-disclaimer {
      margin-left: 0;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__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-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

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

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

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

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

.site-header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        z-index: 1001;
    }

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

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-around;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        width: 100%;
        height: 2px;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .main-nav {
        display: block;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0.25rem;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

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

    .nav-link:hover::after {
        width: 100%;
    }

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding-top: 5rem;
            z-index: 1000;
            overflow-y: auto;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

        .nav-list {
            flex-direction: column;
            padding: 0 var(--space-x);
            gap: 1.5rem;
        }

        .nav-link {
            display: block;
            padding: 0.5rem 0;
            font-size: calc(var(--font-size-base) * 1.1);
        }

        .nav-link::after {
            display: none;
        }

        .site-header::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--overlay);
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 999;
        }

        .site-header.menu-open::before {
            opacity: 1;
            visibility: visible;
        }
    }

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    color: #333;
    font-family: sans-serif;
    padding: 2rem 1rem;
    margin-top: 3rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ccc;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0056b3;
  }
  .footer-nav {
    flex: 1;
    min-width: 200px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #003d82;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .footer-contact address ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #0056b3;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-legal {
    text-align: right;
    flex: 1;
    min-width: 300px;
  }
  .footer-legal a {
    color: #666;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  .footer-disclaimer {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #888;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-legal {
      text-align: center;
    }
    .footer-disclaimer {
      margin-left: 0;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__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-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

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

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

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

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