:root {
  --font-family: "DM Sans", sans-serif;
  --font-size-base: 15.7px;
  --line-height-base: 1.87;

  --max-w: 880px;
  --space-x: 1.07rem;
  --space-y: 1.5rem;
  --gap: 0.72rem;

  --radius-xl: 0.71rem;
  --radius-lg: 0.59rem;
  --radius-md: 0.39rem;
  --radius-sm: 0.26rem;

  --shadow-sm: 0 0px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 12px rgba(0,0,0,0.05);
  --shadow-lg: 0 6px 24px rgba(0,0,0,0.06);

  --overlay: rgba(255, 255, 255, 0.85);
  --anim-duration: 310ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 1;

  --brand: #f8b4d9;
  --brand-contrast: #ffffff;
  --accent: #d48bb8;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f9f9f9;
  --neutral-300: #e6e6e6;
  --neutral-600: #999999;
  --neutral-800: #4a4a4a;
  --neutral-900: #1a1a1a;

  --bg-page: #ffffff;
  --fg-on-page: #333333;

  --bg-alt: #fef7fb;
  --fg-on-alt: #5a5a5a;

  --surface-1: #ffffff;
  --surface-2: #fafafa;
  --fg-on-surface: #444444;
  --border-on-surface: #f0d9e5;

  --surface-light: rgba(248, 180, 217, 0.08);
  --fg-on-surface-light: #7c3a5c;
  --border-on-surface-light: rgba(248, 180, 217, 0.2);

  --bg-primary: #f8b4d9;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #f0a2cc;
  --ring: rgba(248, 180, 217, 0.5);

  --bg-accent: #fce8f3;
  --fg-on-accent: #7c3a5c;
  --bg-accent-hover: #f5d0e6;

  --link: #d48bb8;
  --link-hover: #b86e9b;

  --gradient-hero: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(252, 232, 243, 0.9) 100%);
  --gradient-accent: linear-gradient(90deg, #f8b4d9 0%, #f0d9e5 100%);

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

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

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    flex-shrink: 0;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

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

.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
}

.nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-link {
    display: inline-block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .main-nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
        border-top: none;
    }

    .main-nav.active {
        max-height: 300px;
        border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: var(--space-y) var(--space-x);
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
    }

    .nav-link::after {
        bottom: 0.5rem;
        left: 50%;
        transform: translateX(-50%);
    }

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

    .burger-menu.active span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f9f9f9;
        color: #333;
        border-top: 1px solid #eee;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #d17a9a;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        font-style: italic;
        color: #666;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #d17a9a;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #555;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #777;
        line-height: 1.6;
    }
    .footer-links {
        margin-bottom: 0.8rem;
    }
    .footer-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        max-width: 700px;
        margin: 0.8rem auto;
    }
    .footer-copyright {
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
            gap: 3rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            align-self: start;
        }
        .footer-nav ul {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.8rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: center;
        }
    }

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

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.next-c-1 {
        padding: clamp(3.3rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .next-c-1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-c-1__mast {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1.1rem;
    }

    .next-c-1__mast p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-c-1__mast h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-c-1__mast a {
        display: inline-flex;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

    .next-c-1__list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .next-c-1__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .next-c-1__list i {
        font-style: normal;
        display: inline-flex;
        width: 2.3rem;
        height: 2.3rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, .16);
    }

    .next-c-1__list h3 {
        margin: .8rem 0 .35rem;
        font-size: 1.04rem;
    }

    .next-c-1__list p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-c-1__list a {
        display: inline-block;
        margin-top: .75rem;
        color: var(--bg-accent);
        text-decoration: none;
        font-weight: 600;
    }

    /* macro-bg:next-c-1__wrap */
    .next-c-1 {
        overflow: hidden;
    }

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

.values-grid-l2 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

    .values-grid-l2__head {
        margin-bottom: 1.1rem;
    }

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

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

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

    .values-grid-l2__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-grid-l2__grid i {
        font-style: normal;
        font-size: 1.8rem;
        display: block;
    }

    .values-grid-l2__grid h3 {
        margin: .75rem 0 .35rem;
        color: var(--fg-on-surface);
    }

    .values-grid-l2__grid p {
        margin: 0;
        color: var(--neutral-600);
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .values-grid-l2__grid span {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
        font-size: 0.85rem;
        font-weight: 500;
    }

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

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

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

.two-column-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--gap) * 2);
    align-items: center;
}

.two-column-section__media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    display: block;
}

.two-column-section__text h2 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
}

.two-column-section__text p {
    margin-bottom: var(--space-y);
    color: var(--neutral-600);
}

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

.two-column-section__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-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);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    flex-shrink: 0;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

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

.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
}

.nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-link {
    display: inline-block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .main-nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
        border-top: none;
    }

    .main-nav.active {
        max-height: 300px;
        border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: var(--space-y) var(--space-x);
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
    }

    .nav-link::after {
        bottom: 0.5rem;
        left: 50%;
        transform: translateX(-50%);
    }

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

    .burger-menu.active span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f9f9f9;
        color: #333;
        border-top: 1px solid #eee;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #d17a9a;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        font-style: italic;
        color: #666;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #d17a9a;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #555;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #777;
        line-height: 1.6;
    }
    .footer-links {
        margin-bottom: 0.8rem;
    }
    .footer-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        max-width: 700px;
        margin: 0.8rem auto;
    }
    .footer-copyright {
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
            gap: 3rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            align-self: start;
        }
        .footer-nav ul {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.8rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: center;
        }
    }

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

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

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

.product-list {

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

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

    .product-list .product-list__h {
        text-align: center;
        margin-bottom: clamp(24px, 4vw, 40px);
    }

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

    .product-list .product-list__h p {
        font-size: clamp(16px, 2.2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .product-list .product-list__toolbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: clamp(24px, 4vw, 40px);
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .product-list .product-list__filters {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        flex: 1;
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .product-list .product-list__filters > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-list .product-list__filter {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-size: 0.875rem;
    }

    .product-list .product-list__filter:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .product-list .product-list__view-toggle {
        display: flex;
        gap: 0.5rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        padding: 0.25rem;
        background: var(--bg-page);
    }

    .product-list .product-list__view-btn {
        padding: 0.5rem 0.75rem;
        border: none;
        background: transparent;
        color: var(--neutral-600);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        border-radius: var(--radius-sm);
        font-size: 1.125rem;
    }

    .product-list .product-list__view-btn.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .product-list .product-list__container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: clamp(16px, 2.5vw, 24px);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .product-list .product-list__container > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-list .product-list__card {
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        flex-direction: column;
    }

    .product-list .product-list__card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: var(--bg-primary);
    }

    .product-list .product-list__image-container {
        position: relative;
        width: 100%;
        height: 200px;
        overflow: hidden;
        background: var(--bg-alt);
    }

    .product-list .product-list__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__image {
        transform: scale(1.15);
    }

    .product-list .product-list__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;

        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__overlay {
        opacity: 1;
    }

    .product-list .product-list__quick-view {
        padding: 0.75rem 1.5rem;
        background: var(--bg-page);
        color: var(--fg-on-page);
        text-decoration: none;
        border-radius: var(--radius-md);
        font-weight: 600;
        transform: translateY(10px);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__quick-view {
        transform: translateY(0);
    }

    .product-list .product-list__content {
        padding: clamp(16px, 2vw, 20px);
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        flex: 1;
    }

    .product-list .product-list__header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .product-list h3 {
        margin: 0;
        font-size: clamp(16px, 2vw, 18px);
        color: var(--fg-on-page);
        font-weight: 600;
        flex: 1;
        line-height: 1.4;
    }

    .product-list .product-list__wishlist {
        width: 32px;
        height: 32px;
        border: 1px solid var(--ring);
        border-radius: 50%;
        background: var(--bg-page);
        color: var(--neutral-600);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .product-list .product-list__wishlist:hover {
        border-color: var(--bg-primary);
        color: var(--bg-primary);
        transform: scale(1.1);
    }

    .product-list .product-list__price {
        font-size: 1.375rem;
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0;
    }

    .product-list .product-list__footer {
        display: flex;
        gap: 0.5rem;
        margin-top: auto;
    }

    .product-list .product-list__btn {
        flex: 1;
        padding: 0.625rem 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        font-size: 0.875rem;
        text-align: center;
    }

    .product-list .product-list__btn:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

    .product-list .product-list__cart-btn {
        width: 40px;
        height: 40px;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-size: 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-list .product-list__cart-btn:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
        transform: scale(1.1);
    }

    @media (max-width: 767px) {
        .product-list .product-list__container {
            grid-template-columns: repeat(2, 1fr);
            gap: clamp(12px, 2vw, 16px);
        }

        .product-list .product-list__image-container {
            height: 160px;
        }
    }

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

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    flex-shrink: 0;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

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

.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
}

.nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-link {
    display: inline-block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .main-nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
        border-top: none;
    }

    .main-nav.active {
        max-height: 300px;
        border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: var(--space-y) var(--space-x);
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
    }

    .nav-link::after {
        bottom: 0.5rem;
        left: 50%;
        transform: translateX(-50%);
    }

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

    .burger-menu.active span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f9f9f9;
        color: #333;
        border-top: 1px solid #eee;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #d17a9a;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        font-style: italic;
        color: #666;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #d17a9a;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #555;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #777;
        line-height: 1.6;
    }
    .footer-links {
        margin-bottom: 0.8rem;
    }
    .footer-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        max-width: 700px;
        margin: 0.8rem auto;
    }
    .footer-copyright {
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
            gap: 3rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            align-self: start;
        }
        .footer-nav ul {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.8rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: center;
        }
    }

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

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

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

.product-item {

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

    .product-item .product-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .product-item .product-item__c {
            grid-template-columns: 1fr 1fr;
        }

        /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

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

    .product-item .product-item__thumbnails {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-md);
        cursor: pointer;
        border: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__thumb:hover {
        border-color: var(--bg-primary);
    }

    .product-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .product-item .product-item__price {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0 0 1.5rem;
    }

    .product-item .product-item__description {
        color: var(--neutral-300);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-item .product-item__add-cart,
    .product-item .product-item__wishlist {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__add-cart:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .product-item .product-item__wishlist {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring);
    }

    .product-item .product-item__wishlist:hover {
        background: var(--surface-1);
    }

.gallery--light-v6 {
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

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

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

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

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

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

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    flex-shrink: 0;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

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

.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
}

.nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-link {
    display: inline-block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .main-nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
        border-top: none;
    }

    .main-nav.active {
        max-height: 300px;
        border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: var(--space-y) var(--space-x);
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
    }

    .nav-link::after {
        bottom: 0.5rem;
        left: 50%;
        transform: translateX(-50%);
    }

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

    .burger-menu.active span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f9f9f9;
        color: #333;
        border-top: 1px solid #eee;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #d17a9a;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        font-style: italic;
        color: #666;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #d17a9a;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #555;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #777;
        line-height: 1.6;
    }
    .footer-links {
        margin-bottom: 0.8rem;
    }
    .footer-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        max-width: 700px;
        margin: 0.8rem auto;
    }
    .footer-copyright {
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
            gap: 3rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            align-self: start;
        }
        .footer-nav ul {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.8rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: center;
        }
    }

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

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

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

.product-item--light-v6 {
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

.product-item__inner {
    max-width: 640px;
    margin: 0 auto;
}

.product-item__inner h1 {
    margin: 0 0 4px;
    font-size: clamp(22px,3.5vw,28px);
}

.product-item__price {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bg-primary);
}

.product-item__desc {
    margin: 0;
    font-size: 0.95rem;
    color: var(--neutral-700);
}

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

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    flex-shrink: 0;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

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

.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
}

.nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-link {
    display: inline-block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .main-nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
        border-top: none;
    }

    .main-nav.active {
        max-height: 300px;
        border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: var(--space-y) var(--space-x);
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
    }

    .nav-link::after {
        bottom: 0.5rem;
        left: 50%;
        transform: translateX(-50%);
    }

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

    .burger-menu.active span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f9f9f9;
        color: #333;
        border-top: 1px solid #eee;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #d17a9a;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        font-style: italic;
        color: #666;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #d17a9a;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #555;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #777;
        line-height: 1.6;
    }
    .footer-links {
        margin-bottom: 0.8rem;
    }
    .footer-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        max-width: 700px;
        margin: 0.8rem auto;
    }
    .footer-copyright {
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
            gap: 3rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            align-self: start;
        }
        .footer-nav ul {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.8rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: center;
        }
    }

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

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

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

.product-item {

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

    .product-item .product-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .product-item .product-item__c {
            grid-template-columns: 1fr 1fr;
        }

        /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

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

    .product-item .product-item__thumbnails {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-md);
        cursor: pointer;
        border: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__thumb:hover {
        border-color: var(--bg-primary);
    }

    .product-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .product-item .product-item__price {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0 0 1.5rem;
    }

    .product-item .product-item__description {
        color: var(--neutral-300);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-item .product-item__add-cart,
    .product-item .product-item__wishlist {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__add-cart:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .product-item .product-item__wishlist {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring);
    }

    .product-item .product-item__wishlist:hover {
        background: var(--surface-1);
    }

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

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    flex-shrink: 0;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

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

.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
}

.nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-link {
    display: inline-block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .main-nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
        border-top: none;
    }

    .main-nav.active {
        max-height: 300px;
        border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: var(--space-y) var(--space-x);
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
    }

    .nav-link::after {
        bottom: 0.5rem;
        left: 50%;
        transform: translateX(-50%);
    }

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

    .burger-menu.active span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f9f9f9;
        color: #333;
        border-top: 1px solid #eee;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #d17a9a;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        font-style: italic;
        color: #666;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #d17a9a;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #555;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #777;
        line-height: 1.6;
    }
    .footer-links {
        margin-bottom: 0.8rem;
    }
    .footer-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        max-width: 700px;
        margin: 0.8rem auto;
    }
    .footer-copyright {
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
            gap: 3rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            align-self: start;
        }
        .footer-nav ul {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.8rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: center;
        }
    }

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

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

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

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

    .support-cv3__wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .support-cv3__head {
        margin-bottom: 14px;
    }

    .support-cv3__head h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 42px);
        color: var(--fg-on-surface);
    }

    .support-cv3__head p {
        margin: 8px 0 0;
        opacity: .92;
        color: var(--fg-on-surface);
    }

    .support-cv3__list {
        display: grid;
        gap: 10px;
    }

    .support-cv3__item {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-light);
        overflow: hidden;
        color: var(--fg-on-surface-light);
    }

    .support-cv3__item button {
        width: 100%;
        border: 0;
        background: transparent;
        color: inherit;
        text-align: left;
        font: inherit;
        font-weight: 700;
        padding: 11px 12px;
        cursor: pointer;
        color: var(--fg-on-surface-light);
    }

    .support-cv3__item p {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 12px;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        opacity: .95;
        color: var(--fg-on-surface-light);
    }

    .support-cv3__item.is-open p {
        max-height: 220px;
        padding: 0 12px 12px;
    }

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

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

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

        transform: translateY(-18px);
    }

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

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

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

    .index-recommendations-light__card {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-md);
        padding: clamp(18px, 3vw, 26px);

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

    .index-recommendations-light__card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 15%, rgba(248, 225, 231, 0.45), transparent 55%);
        pointer-events: none;
    }

    .index-recommendations-light__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
    }

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

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

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

    .index-recommendations-light__card p {
        margin: 0 0 14px;
        position: relative;
        z-index: 1;
        color: var(--fg-on-surface-light);
        font-size: 14px;
        line-height: 1.65;
    }

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

    .index-recommendations-light__cta::after {
        content: '->';
        font-size: 12px;
    }

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

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

    .form-layout-c .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

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

    .form-layout-c .steps {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
    }

    .form-layout-c .row {
        display: grid;
        gap: 10px;
    }

    .form-layout-c .row.two {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .form-layout-c .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-top: 2px;
    }

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

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

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

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

    .contact-layout-b .section-head {
        margin-bottom: 16px;
    }

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

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

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

    .contact-layout-b .item-card {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
        box-shadow: var(--shadow-sm);
    }

    .contact-layout-b .item-card h3 {
        margin: 0;
        color: var(--brand);
    }

    .contact-layout-b .item-card p {
        margin: 8px 0 0;
        color: var(--neutral-700, var(--neutral-600));
    }

    .contact-layout-b footer {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .contact-layout-b .social {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .contact-layout-b .social a {
        text-decoration: none;
        color: var(--link);
        padding: 6px 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: 999px;
    }

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

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    flex-shrink: 0;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

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

.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
}

.nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-link {
    display: inline-block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .main-nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
        border-top: none;
    }

    .main-nav.active {
        max-height: 300px;
        border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: var(--space-y) var(--space-x);
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
    }

    .nav-link::after {
        bottom: 0.5rem;
        left: 50%;
        transform: translateX(-50%);
    }

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

    .burger-menu.active span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f9f9f9;
        color: #333;
        border-top: 1px solid #eee;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #d17a9a;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        font-style: italic;
        color: #666;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #d17a9a;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #555;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #777;
        line-height: 1.6;
    }
    .footer-links {
        margin-bottom: 0.8rem;
    }
    .footer-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        max-width: 700px;
        margin: 0.8rem auto;
    }
    .footer-copyright {
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
            gap: 3rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            align-self: start;
        }
        .footer-nav ul {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.8rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: center;
        }
    }

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

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    flex-shrink: 0;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

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

.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
}

.nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-link {
    display: inline-block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .main-nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
        border-top: none;
    }

    .main-nav.active {
        max-height: 300px;
        border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: var(--space-y) var(--space-x);
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
    }

    .nav-link::after {
        bottom: 0.5rem;
        left: 50%;
        transform: translateX(-50%);
    }

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

    .burger-menu.active span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f9f9f9;
        color: #333;
        border-top: 1px solid #eee;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #d17a9a;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        font-style: italic;
        color: #666;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #d17a9a;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #555;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #777;
        line-height: 1.6;
    }
    .footer-links {
        margin-bottom: 0.8rem;
    }
    .footer-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        max-width: 700px;
        margin: 0.8rem auto;
    }
    .footer-copyright {
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
            gap: 3rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            align-self: start;
        }
        .footer-nav ul {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.8rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: center;
        }
    }

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

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

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

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

    .policy-layout-f .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

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

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

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

    .policy-layout-f .rows {
        display: grid;
        gap: 10px;
    }

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

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

    .policy-layout-f .head span {
        min-width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .policy-layout-f .head h3 {
        margin: 0;
    }

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

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

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    flex-shrink: 0;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

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

.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
}

.nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-link {
    display: inline-block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .main-nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
        border-top: none;
    }

    .main-nav.active {
        max-height: 300px;
        border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: var(--space-y) var(--space-x);
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
    }

    .nav-link::after {
        bottom: 0.5rem;
        left: 50%;
        transform: translateX(-50%);
    }

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

    .burger-menu.active span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f9f9f9;
        color: #333;
        border-top: 1px solid #eee;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #d17a9a;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        font-style: italic;
        color: #666;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #d17a9a;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #555;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #777;
        line-height: 1.6;
    }
    .footer-links {
        margin-bottom: 0.8rem;
    }
    .footer-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        max-width: 700px;
        margin: 0.8rem auto;
    }
    .footer-copyright {
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
            gap: 3rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            align-self: start;
        }
        .footer-nav ul {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.8rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: center;
        }
    }

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

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    flex-shrink: 0;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

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

.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
}

.nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-link {
    display: inline-block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .main-nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
        border-top: none;
    }

    .main-nav.active {
        max-height: 300px;
        border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: var(--space-y) var(--space-x);
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
    }

    .nav-link::after {
        bottom: 0.5rem;
        left: 50%;
        transform: translateX(-50%);
    }

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

    .burger-menu.active span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f9f9f9;
        color: #333;
        border-top: 1px solid #eee;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #d17a9a;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        font-style: italic;
        color: #666;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #d17a9a;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #555;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #777;
        line-height: 1.6;
    }
    .footer-links {
        margin-bottom: 0.8rem;
    }
    .footer-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        max-width: 700px;
        margin: 0.8rem auto;
    }
    .footer-copyright {
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
            gap: 3rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            align-self: start;
        }
        .footer-nav ul {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.8rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: center;
        }
    }

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

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

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

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

    .err-slab-f .chip {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        position: relative;
    }

    .err-slab-f .chip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        background: var(--gradient-accent);
    }

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

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

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