/*
 * Above-the-fold styles for initial render.
 */

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f7f7f7;
    --bg-card: #f0f0f0;
    --text-primary: #050505;
    --text-secondary: #555555;
    --outline-stroke: rgba(0, 0, 0, 0.1);
    --border-color: rgba(0, 0, 0, 0.05);
    --brand-teal: #0b6b61;
    --brand-teal-soft: rgba(13, 148, 136, 0.1);
    --brand-teal-soft-2: rgba(13, 148, 136, 0.08);
    --brand-teal-gradient: linear-gradient(135deg, #0b6b61 0%, #0d9488 55%, #14b8a6 100%);
    --brand-raspberry: #c2185b;
    --brand-raspberry-600: #ad1457;
    --brand-raspberry-700: #880e4f;
    --brand-raspberry-soft: rgba(194, 24, 91, 0.1);
    --brand-raspberry-soft-2: rgba(194, 24, 91, 0.06);
    --brand-raspberry-ring: rgba(194, 24, 91, 0.25);
    --focus-ring-width: 3px;
}

.theme-dark,
.dark {
    --bg-primary: #080808;
    --bg-secondary: #0a0a0a;
    --bg-card: #111111;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --outline-stroke: rgba(255, 255, 255, 0.1);
    --border-color: rgba(255, 255, 255, 0.05);
    --brand-raspberry: #f06292;
    --brand-raspberry-600: #ec407a;
    --brand-raspberry-soft: rgba(240, 98, 146, 0.16);
    --brand-raspberry-soft-2: rgba(240, 98, 146, 0.1);
    --brand-raspberry-ring: rgba(240, 98, 146, 0.32);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 300;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

body.menu-open {
    overflow: hidden;
    height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--brand-raspberry);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--brand-raspberry);
    outline-offset: 3px;
    box-shadow: 0 0 0 var(--focus-ring-width) var(--brand-raspberry-ring);
    border-radius: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 1rem;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px var(--outline-stroke);
    font-weight: 900;
    user-select: none;
    pointer-events: none;
}

.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    border-bottom: 1px solid currentColor;
    display: inline-block;
    padding-bottom: 0.5rem;
    color: var(--text-primary);
    opacity: 0.6;
    margin-bottom: 1rem;
    font-weight: 600;
}

.site {
    min-height: 100vh;
    background: var(--bg-primary);
}

.site-content {
    position: relative;
    z-index: 1;
    padding-top: var(--site-header-offset, var(--site-header-h, 92px));
}

@media (max-width: 1023px) {
    .site-content {
        padding-top: calc(var(--site-header-offset, var(--site-header-h, 92px)) + env(safe-area-inset-top, 0px));
    }
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.lightbox[aria-hidden="false"],
.lightbox.is-active {
    display: flex;
    visibility: visible;
    pointer-events: auto;
}

.site-main {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.home .site-main > *:not(:first-child) {
    content-visibility: auto;
    contain-intrinsic-size: auto 960px;
}

.page-content,
.section > .container-wide,
.site-main > .page-content,
.site-main > section {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1600px) {
    .page-content {
        max-width: 1440px;
    }
}

.section {
    padding: 8rem 1.5rem;
    position: relative;
}

@media (min-width: 768px) {
    .section {
        padding: 8rem clamp(2rem, 5vw, 6rem);
    }
}

.section > * {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.section--bordered {
    border-top: 1px solid var(--border-color);
}

.section--secondary {
    background: var(--bg-secondary);
}

.container-wide {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container-wide {
        padding: 0 clamp(2rem, 5vw, 6rem);
    }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.25rem;
    z-index: 110;
    color: var(--text-primary);
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
    isolation: isolate;
}

@media (min-width: 768px) {
    .site-header {
        padding: 1.5rem 2rem;
    }
}

.site-header.is-sticky {
    background: #ffffff;
    color: #0a0a0a;
    border-bottom-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.site-header.is-hidden {
    transform: translate3d(0, -120%, 0);
}

.site-header.is-sticky.is-dark {
    background: #0a0a0a;
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.site-header.is-on-light:not(.is-sticky) {
    color: var(--text-primary);
}

.site-header.is-on-dark:not(.is-sticky) {
    color: #ffffff;
}

.site-header__socials {
    display: none !important;
}

.site-header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: inherit;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .site-header__logo {
        font-size: 1.75rem;
    }
}

.site-header__logo a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.site-header__logo .custom-logo {
    display: block;
    height: 28px;
    width: auto;
}

@media (min-width: 768px) {
    .site-header__logo .custom-logo {
        height: 32px;
    }
}

.site-header__logo .accent {
    color: var(--brand-teal);
}

.site-header__logo .light {
    font-weight: 300;
}

.site-header__logo .brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    line-height: 1;
}

.site-header__logo .brand__logo-set {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    max-width: 100%;
}

.site-header__logo .brand__logo {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    flex: 0 0 auto;
    max-height: 32px;
}

@media (min-width: 768px) {
    .site-header__logo .brand__logo {
        max-height: 38px;
    }
}

.site-header__logo .brand__logo--dark {
    display: none;
}

.dark .site-header__logo .brand__logo--light,
.site-header.is-dark .site-header__logo .brand__logo--light,
.site-header.is-on-dark .site-header__logo .brand__logo--light {
    display: none;
}

.dark .site-header__logo .brand__logo--dark,
.site-header.is-dark .site-header__logo .brand__logo--dark,
.site-header.is-on-dark .site-header__logo .brand__logo--dark {
    display: block;
}

.site-header.is-sticky .site-header__logo .brand__logo--light,
body.menu-open .site-header .site-header__logo .brand__logo--light {
    display: block;
}

.site-header.is-sticky .site-header__logo .brand__logo--dark,
body.menu-open .site-header .site-header__logo .brand__logo--dark {
    display: none;
}

.dark .site-header.is-sticky .site-header__logo .brand__logo--light,
.dark body.menu-open .site-header .site-header__logo .brand__logo--light,
.site-header.is-sticky.is-dark .site-header__logo .brand__logo--light {
    display: none;
}

.dark .site-header.is-sticky .site-header__logo .brand__logo--dark,
.dark body.menu-open .site-header .site-header__logo .brand__logo--dark,
.site-header.is-sticky.is-dark .site-header__logo .brand__logo--dark {
    display: block;
}

.site-header__logo a.brand:hover .brand__logo {
    filter: brightness(1.03);
}

.site-header__nav {
    display: none;
    flex: 1;
    justify-content: center;
    margin: 0;
    justify-self: center;
}

@media (min-width: 1024px) {
    .site-header__nav {
        display: flex;
    }
}

.site-header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.site-header__nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.site-header__nav-link {
    color: inherit;
    text-decoration: none;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    padding: 0.5rem 0;
    transition: color 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
}

.site-header__nav-link:hover,
.site-header__nav-item.is-open > .site-header__nav-link,
.site-header__nav-link.is-current {
    color: var(--brand-raspberry);
}

.site-header__nav-caret {
    appearance: none;
    background: none;
    border: 0;
    color: inherit;
    cursor: pointer;
    padding: 0.25rem;
    display: inline-flex;
    align-items: center;
    opacity: 0.6;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header__nav-item.is-open .site-header__nav-caret {
    transform: rotate(180deg);
    opacity: 1;
}

.site-header__dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 220px;
    background: #ffffff;
    color: #0a0a0a;
    list-style: none;
    margin: 0;
    padding: 0.75rem 0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 60;
    isolation: isolate;
    counter-reset: header-dropdown-counter;
}

.site-header.is-sticky.is-dark .site-header__dropdown {
    background: #0a0a0a;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.site-header.is-sticky.is-dark .site-header__dropdown a {
    color: #ffffff;
}

.site-header.is-sticky.is-dark .site-header__dropdown a:hover {
    background: var(--brand-raspberry);
    color: #ffffff;
}

.site-header__nav-item.is-open .site-header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.site-header__nav-item.has-dropdown--flip .site-header__dropdown {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(-6px);
}

.site-header__nav-item.has-dropdown--flip.is-open .site-header__dropdown {
    transform: translateX(0) translateY(0);
}

.site-header__dropdown li {
    margin: 0;
    counter-increment: header-dropdown-counter;
}

.site-header__dropdown a {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.625rem 1.25rem;
    color: #0a0a0a;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}

.site-header__dropdown a::before {
    content: counter(header-dropdown-counter, decimal-leading-zero);
    font-size: 1.3em;
    font-weight: 300;
    opacity: 0.55;
    color: var(--brand-raspberry);
    transform: translateY(-0.05em);
    flex: 0 0 auto;
}

.site-header__dropdown a:hover::before,
.site-header__dropdown a:focus-visible::before {
    color: #ffffff;
    opacity: 1;
}

.site-header__dropdown a:hover {
    background: var(--brand-raspberry);
    color: #ffffff;
}

.site-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    color: inherit;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.65rem 1.25rem;
    border: 1px solid currentColor;
    border-radius: 9999px;
    transition: all 0.2s ease;
    background: transparent;
}

.site-header__cta-mobile {
    display: none;
}

.site-header__cta:hover {
    background: var(--brand-raspberry);
    color: #ffffff !important;
    border-color: var(--brand-raspberry);
}

.site-header__burger {
    display: inline-flex;
}

@media (min-width: 1024px) {
    .site-header {
        grid-template-columns: auto 1fr auto auto auto;
        grid-template-areas: "logo nav cta actions menu";
    }

    .site-header__logo { grid-area: logo; }
    .site-header__nav { grid-area: nav; }
    .site-header__cta { grid-area: cta; }
    .site-header__actions { grid-area: actions; }
    .site-header__burger { grid-area: menu; }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .site-header__actions {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
        grid-template-areas: "menu logo cta";
        gap: 0.75rem;
        padding: 0.9rem 1rem;
    }

    .site-header__logo { grid-area: logo; justify-self: center; }
    .site-header__nav { display: none !important; }
    .site-header__actions { display: none !important; }
    .site-header__cta {
        grid-area: cta;
        justify-self: end;
        padding: 0.5rem 0.85rem;
        font-size: 0.72rem;
        min-width: 96px;
        justify-content: center;
    }
    .site-header__burger {
        grid-area: menu;
        justify-self: start;
        flex-direction: row-reverse;
        width: 48px;
        justify-content: flex-start;
        padding: 0.25rem 0;
    }
    .burger-lines { width: 30px; gap: 5px; }
}

@media (max-width: 480px) {
    .site-header__logo .brand__logo-set {
        max-width: min(132px, 100%);
    }

    .site-header {
        gap: 0.4rem;
        padding: 0.6rem 0.6rem;
    }

    .site-header__logo .brand__logo {
        max-height: 26px;
    }

    .site-header__cta {
        padding: 0.4rem 0.6rem;
        font-size: 0.62rem;
        letter-spacing: 0.06em;
        min-width: 0;
    }

    .site-header__cta-desktop {
        display: none;
    }

    .site-header__cta-mobile {
        display: inline;
    }
}

@media (max-width: 1023px) {
    .site-header.is-sticky {
        padding: 0.75rem 1rem;
    }

    body.menu-open .site-header {
        padding: 0.65rem 1rem;
    }

    .site-header__logo .custom-logo {
        height: 24px;
    }
}

.menu-overlay__theme-toggle {
    appearance: none;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 9999px;
    padding: 0.5rem 0.85rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    color: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

.menu-overlay__theme-label--dark { display: none; }
.dark .menu-overlay__theme-label--light { display: none; }
.dark .menu-overlay__theme-label--dark { display: inline; }

@media (max-width: 1023px) {
    .menu-overlay__meta {
        border-left: 0;
        padding-left: 0;
    }
}

body.menu-open .site-header {
    background: transparent !important;
    box-shadow: none !important;
    border-bottom-color: transparent !important;
    color: var(--text-primary) !important;
    z-index: 950;
}

@media (max-width: 1023px) {
    body.menu-open .site-header {
        background: #ffffff !important;
        color: #0a0a0a !important;
        border-bottom-color: rgba(0, 0, 0, 0.08) !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
    }

    .dark body.menu-open .site-header,
    .theme-dark body.menu-open .site-header {
        background: #0a0a0a !important;
        color: #ffffff !important;
        border-bottom-color: rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5) !important;
    }
}

.menu-overlay__langs .theme-toggle--overlay {
    width: 42px;
    height: 42px;
    border: 1px solid currentColor;
    border-radius: 9999px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu-overlay__langs .theme-toggle--overlay svg {
    width: 18px;
    height: 18px;
}

.lang-switcher {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .lang-switcher {
        display: block;
    }
}

.lang-switcher__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 42px;
    padding: 0.5rem 0.85rem;
    background: transparent;
    color: inherit;
    border: 1px solid currentColor;
    border-radius: 9999px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    font-family: inherit;
}

.lang-switcher__toggle:hover,
.lang-switcher.is-open .lang-switcher__toggle {
    background: var(--brand-raspberry);
    color: #ffffff !important;
    border-color: var(--brand-raspberry);
}

.lang-switcher__caret {
    transition: transform 0.2s ease;
}

.lang-switcher.is-open .lang-switcher__caret {
    transform: rotate(180deg);
}

.lang-switcher__list {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 110px;
    list-style: none;
    margin: 0;
    padding: 0.4rem;
    background: #ffffff;
    color: #0a0a0a;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 65;
    isolation: isolate;
}

.site-header.is-sticky.is-dark .lang-switcher__list {
    background: #0a0a0a;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.lang-switcher.is-open .lang-switcher__list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-switcher__option {
    display: block;
    padding: 0.55rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 2px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.lang-switcher__option:hover,
.lang-switcher__option:focus-visible {
    background: var(--brand-raspberry-soft);
    color: var(--brand-raspberry);
}

.lang-switcher__option.is-current {
    color: var(--brand-raspberry);
    background: var(--brand-raspberry-soft-2);
}

.menu-overlay__langs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.menu-overlay__langs a,
.menu-overlay__theme-toggle {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.5rem 0.85rem;
    border: 1px solid currentColor;
    border-radius: 9999px;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.menu-overlay__langs a:hover,
.menu-overlay__langs a:focus-visible,
.menu-overlay__theme-toggle:hover,
.menu-overlay__theme-toggle:focus-visible {
    background: var(--brand-raspberry);
    color: #ffffff;
    border-color: var(--brand-raspberry);
}

.menu-overlay__langs a.is-current {
    background: var(--brand-raspberry);
    color: #ffffff;
    border-color: var(--brand-raspberry);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-self: end;
}

@media (min-width: 768px) {
    .site-header__actions {
        gap: 2rem;
    }
}

.theme-toggle,
.burger-container {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font: inherit;
    color: inherit;
}

.burger-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 40px;
}

.burger-lines .line {
    height: 2px;
    background: currentColor;
    transition: all 0.4s cubic-bezier(0.7, 0, 0.3, 1);
    width: 100%;
}

.burger-lines .line-2 {
    width: 60%;
    align-self: flex-end;
}

.burger-container:hover .line-2 {
    width: 100%;
}

.burger-container.active .line-1 {
    transform: translateY(4px) rotate(45deg);
}

.burger-container.active .line-2 {
    transform: translateY(-4px) rotate(-45deg);
    width: 100%;
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(10deg);
}

.theme-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

.theme-toggle .sun {
    display: none;
}

.theme-toggle .moon {
    display: block;
}

.theme-dark .theme-toggle .sun,
.dark .theme-toggle .sun {
    display: block;
}

.theme-dark .theme-toggle .moon,
.dark .theme-toggle .moon {
    display: none;
}

.burger-container__label {
    display: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.gleam-sparkle {
    animation: sparkle 1.5s ease-in-out infinite;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    clip-path: circle(0% at 95% 5%);
    transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 900;
    display: flex;
    align-items: center;
    overflow: hidden;
    pointer-events: none;
    color: var(--text-primary);
}

.dark .menu-overlay {
    background: #080808;
    color: #ffffff;
}

.menu-overlay.active {
    clip-path: circle(150% at 95% 5%);
    pointer-events: auto;
}

.menu-overlay__inner {
    width: 100%;
    padding: 5rem 1.5rem;
    position: relative;
    max-height: 100vh;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .menu-overlay__inner {
        padding: 5rem clamp(2rem, 5vw, 6rem);
    }
}

@media (max-width: 767px) {
    .menu-overlay {
        align-items: flex-start;
    }

    .menu-overlay__inner {
        min-height: 100dvh;
        padding-top: calc(var(--site-header-h, 64px) + env(safe-area-inset-top, 0px) + 0.75rem);
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px) + 1rem);
    }

    .menu-overlay__scroll {
        max-height: calc(100dvh - var(--site-header-h, 64px) - env(safe-area-inset-top, 0px) - 2rem);
    }
}

.menu-overlay__scroll {
    width: 100%;
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0.5rem;
    scrollbar-width: thin;
    position: relative;
    --fade-color: var(--bg-primary);
}

.dark .menu-overlay__scroll {
    --fade-color: #080808;
}

.menu-overlay__scroll::after {
    content: "";
    position: sticky;
    bottom: -1px;
    left: 0;
    right: 0;
    display: block;
    height: 60px;
    margin-top: -60px;
    background: linear-gradient(to bottom, transparent, var(--fade-color));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.menu-overlay__scroll.is-overflowing-bottom::after {
    opacity: 1;
}

.menu-overlay__grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .menu-overlay__grid {
        grid-template-columns: 2fr 1fr;
        gap: 5rem;
    }
}

.menu-overlay__nav {
    display: block;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item {
    margin: 0;
    line-height: 1;
}

.nav-link {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    color: inherit;
    text-decoration: none;
    padding: 0.125rem 0;
    width: 100%;
}

.nav-link:hover,
.nav-link.is-current,
.nav-item--current > .nav-link {
    color: var(--brand-raspberry);
}

.nav-link:hover {
    transform: translateX(20px);
}

.nav-link--has-children {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.nav-link--has-children::after {
    content: "+";
    font-size: 0.5em;
    font-weight: 400;
    margin-left: 0.25rem;
    color: currentColor;
    opacity: 0.4;
    transition: transform 0.3s ease, opacity 0.2s ease;
    display: inline-block;
    width: 1.5em;
    text-align: center;
    line-height: 1;
}

.nav-item.is-open > .nav-link--has-children::after {
    transform: rotate(45deg);
    opacity: 1;
    color: var(--brand-raspberry);
}

.nav-submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-left: 1px solid var(--border-color);
    margin-left: 0.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin 0.3s ease, padding 0.3s ease;
    counter-reset: submenu-counter;
}

.nav-submenu .nav-item {
    counter-increment: submenu-counter;
}

.nav-item.is-open > .nav-submenu {
    max-height: 2000px;
    opacity: 1;
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.nav-submenu--depth-1 {
    border-left-color: var(--brand-raspberry);
}

.nav-submenu .nav-link {
    font-size: clamp(1.125rem, 2.2vw, 1.75rem);
    font-weight: 600;
    opacity: 0.7;
    text-transform: none;
    padding: 0.25rem 0;
    display: flex;
    align-items: baseline;
}

.nav-submenu .nav-link::before {
    content: counter(submenu-counter, decimal-leading-zero);
    font-size: 1.5em;
    font-weight: 300;
    margin-right: 0.75rem;
    opacity: 0.4;
    color: inherit;
    transform: translateY(-0.05em);
    transition: color 0.3s ease, opacity 0.3s ease;
}

.nav-submenu .nav-link:hover,
.nav-submenu .nav-link.is-current {
    opacity: 1;
    color: var(--brand-raspberry);
    transform: translateX(10px);
}

.nav-submenu .nav-link:hover::before,
.nav-submenu .nav-link.is-current::before {
    color: var(--brand-raspberry);
    opacity: 1;
}

.nav-caret {
    font-size: 0.5em;
    opacity: 0.5;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-link--has-children:hover .nav-caret {
    transform: rotate(-90deg);
    opacity: 1;
}

.menu-overlay__meta {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-left: 0;
    padding-left: 0;
}

@media (min-width: 520px) and (max-width: 1023px) {
    .menu-overlay__meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 1.5rem;
        row-gap: 2rem;
    }

    .menu-overlay__meta-block:nth-child(n + 3),
    .menu-overlay__meta > :not(.menu-overlay__meta-block) {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1024px) {
    .menu-overlay__meta {
        padding-left: 3rem;
    }
}

.menu-overlay__meta-block .menu-overlay__meta-title {
    color: var(--brand-raspberry);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0 0 1rem;
}

.menu-overlay__meta-block p,
.menu-overlay__meta-block a {
    font-size: 1.0625rem;
    line-height: 1.5;
    color: inherit;
    text-decoration: none;
    display: block;
    padding: 0.2rem 0;
    transition: color 0.2s ease, transform 0.2s ease;
    opacity: 0.7;
}

.menu-overlay__meta-block a:hover {
    opacity: 1;
    color: var(--brand-raspberry);
    transform: translateX(4px);
}

.menu-overlay__meta-block .menu-overlay__langs a,
.menu-overlay__meta-block .menu-overlay__theme-toggle {
    opacity: 1;
    font-size: 0.875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.5rem 0.85rem;
    border: 1px solid currentColor;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.menu-overlay__meta-block .menu-overlay__langs a {
    min-width: 56px;
}

.menu-overlay__meta-block .menu-overlay__langs a.is-current {
    background: var(--brand-raspberry);
    color: #ffffff;
    border-color: var(--brand-raspberry);
}

.menu-overlay__meta-block .menu-overlay__langs a:hover,
.menu-overlay__meta-block .menu-overlay__langs a:focus-visible,
.menu-overlay__meta-block .menu-overlay__theme-toggle:hover,
.menu-overlay__meta-block .menu-overlay__theme-toggle:focus-visible {
    background: var(--brand-raspberry);
    color: #ffffff;
    border-color: var(--brand-raspberry);
}

.menu-overlay__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.875rem 1.5rem;
    background: var(--brand-raspberry);
    color: #ffffff !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    border-radius: 9999px;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    align-self: flex-start;
    text-decoration: none;
    opacity: 1 !important;
}

.menu-overlay__cta:hover {
    background: var(--brand-raspberry-600);
    transform: translateX(4px) !important;
    box-shadow: 0 6px 20px var(--brand-raspberry-ring);
}

.menu-overlay__cta:active {
    background: var(--brand-raspberry-700);
}

.dark .menu-overlay__cta {
    background: #c2185b;
}

.dark .menu-overlay__cta:hover {
    background: #0f766e;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

.hero {
    position: relative;
    height: 760px;
    min-height: 760px;
    max-height: 760px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-primary);
    color: var(--text-primary);
}

@media (max-width: 767px) {
    .hero {
        height: auto;
        min-height: max(640px, calc(100svh - var(--site-header-offset, var(--site-header-h, 92px))));
        max-height: none;
        justify-content: flex-start;
        padding-top: 1.5rem;
    }

    .hero__text {
        padding-top: 0.5rem;
        padding-bottom: 3rem;
    }
}

.hero__map {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 35%, rgba(255, 122, 0, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(255, 122, 0, 0.05) 0%, transparent 70%),
        var(--bg-primary);
    overflow: hidden;
    font-family: "Consolas", "Courier New", monospace;
    color: var(--text-muted, #6b7280);
}

.dark .hero__map,
.dark .hero {
    background: #080808;
    color: #ffffff;
}

.dark .hero__map {
    background: radial-gradient(circle at center, #0a1118 0%, #010204 100%);
}

.hero__map canvas {
    display: block;
    z-index: 1;
    position: absolute;
}

.hero__hex-bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='69.282' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 17.32l-20 11.547L0 17.32V0h40v17.32zm0 34.64l-20 11.548-20-11.548V34.64h40v17.32z' fill='none' stroke='%23000000' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 60px 103.92px;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.hero__ui {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
}

@media (max-width: 1023px) {
    .hero__ui {
        display: none;
    }
}

.hero__hud {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
}

.hero__hud--bl {
    bottom: 7.5rem;
    right: 2.5rem;
}

.hero__hud strong {
    color: #ffffff;
    font-weight: 700;
}

.hero__hud .divider {
    margin: 0 0.5rem;
    color: #4a6b82;
}

.dark .hero__hud .divider {
    color: var(--text-secondary);
}

.hero__hud .accent {
    color: var(--brand-raspberry);
}

.hero__gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12rem;
    z-index: 10;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 0%, var(--bg-primary) 100%);
    transition: background 0.5s ease;
}

.hero__letter {
    position: absolute;
    left: -5rem;
    top: 25%;
    font-size: clamp(15rem, 20vw, 35rem);
    line-height: 1;
    opacity: 0.08;
    z-index: 10;
    pointer-events: none;
    color: var(--text-primary);
}

.dark .hero__letter {
    opacity: 0.2;
    color: #ffffff;
}

.hero__text {
    position: relative;
    z-index: 20;
    padding: 0 1.5rem 5rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    pointer-events: auto;
    color: var(--text-primary);
}

.dark .hero__text {
    color: #ffffff;
}

@media (min-width: 768px) {
    .hero__text {
        padding: 0 clamp(2rem, 5vw, 6rem) 5rem;
    }
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    margin: 0;
}

.hero__title .muted {
    opacity: 0.3;
}

.hero__subtitle {
    margin-top: 2rem;
    max-width: 36rem;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.75;
}

.hero__cta {
    margin-top: 2rem;
    display: inline-flex;
    color: var(--text-primary);
}

.hero__cta:hover {
    color: var(--brand-raspberry);
}

.dark .hero__cta {
    color: #ffffff;
}

.marquee {
    --gap: 2.5rem;
    position: relative;
    z-index: 20;
    pointer-events: none;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.marquee--hero {
    position: absolute;
    bottom: 0;
    left: 0;
}

.marquee--page {
    position: relative;
    margin: 0;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
}

.marquee__strip {
    display: block;
    position: relative;
    overflow: hidden;
    clip-path: inset(0);
    width: 100%;
    height: 70px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 1.25rem;
    line-height: 1;
}

.marquee__strip--light {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.marquee__strip--dark {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.marquee__track {
    display: flex;
    align-items: center;
    height: 100%;
    width: max-content;
    will-change: transform;
    animation-duration: 40s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.marquee__strip:hover .marquee__track {
    animation-play-state: paused;
}

.marquee__strip[data-direction="left"] .marquee__track {
    animation-name: marquee-scroll-left;
}

.marquee__strip[data-direction="right"] .marquee__track {
    animation-name: marquee-scroll-right;
}

.marquee__content {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: var(--gap, 2.5rem);
    padding: 0 1.25rem;
    white-space: nowrap;
}

.marquee__item {
    white-space: nowrap;
    color: inherit;
}

.marquee__dot {
    width: 8px;
    height: 8px;
    background: var(--brand-raspberry);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.marquee__strip--light .marquee__dot,
.marquee__strip--dark .marquee__dot {
    background: var(--brand-teal);
}

@keyframes marquee-scroll-left {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(calc(var(--marquee-shift, 100vw) * -1), 0, 0); }
}

@keyframes marquee-scroll-right {
    from { transform: translate3d(calc(var(--marquee-shift, 100vw) * -1), 0, 0); }
    to { transform: translate3d(0, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .marquee__track {
        animation: none !important;
    }
}

@media (max-width: 767px) {
    .marquee {
        --gap: 1.5rem;
    }

    .marquee__strip {
        min-height: 64px;
        height: auto;
        font-size: 1rem;
        line-height: 1.15;
        clip-path: none;
    }

    .marquee__track {
        min-height: 64px;
    }

    .marquee__content {
        min-height: 64px;
        padding: 0.45rem 1rem;
    }
}

.stamp {
    position: fixed;
    top: 6rem;
    left: 2.5rem;
    z-index: 40;
    width: 6rem;
    height: 6rem;
    color: #ffffff;
    mix-blend-mode: difference;
}

@media (max-width: 767px) {
    .stamp {
        display: none;
    }
}

.stamp svg {
    width: 100%;
    height: 100%;
    animation: rotateText 20s linear infinite;
    transform-origin: center;
}

.stamp__center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.sidebar-info {
    display: none;
    position: fixed;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 3rem;
    z-index: 40;
    opacity: 0.3;
    mix-blend-mode: difference;
    color: #ffffff;
}

@media (min-width: 1024px) {
    .sidebar-info {
        display: flex;
    }
}

.sidebar-info span {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 300;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.page-hero {
    padding: clamp(10rem, 18vw, 14rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vw, 6rem);
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.page-hero__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-hero__title {
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.035em;
    margin: 1rem 0 1.5rem;
    color: var(--text-primary);
    text-wrap: balance;
}

.page-hero__lead {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 3rem;
    opacity: 0.75;
}

.page-hero__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.page-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.page-hero__stat-num {
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1;
    color: var(--text-primary);
}

.page-hero__stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

.page-hero--contact {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding-top: 11rem;
    padding-bottom: 5rem;
}

@media (min-width: 1024px) {
    .page-hero--contact {
        padding: 14rem clamp(2rem, 5vw, 6rem) 7rem;
    }
}

.page-hero--contact .page-hero__letter {
    position: absolute;
    inset: auto 0 0 0;
    transform: none;
    color: rgba(13, 148, 136, 0.08);
    font-size: clamp(8rem, 22vw, 24rem);
    line-height: 0.9;
    text-align: right;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    font-weight: 900;
    text-transform: uppercase;
    z-index: 1;
}

.page-hero--contact .page-hero__inner {
    position: relative;
    z-index: 5;
}

.page-hero__contacts {
    list-style: none;
    margin: 3rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .page-hero__contacts {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.page-hero__contacts .eyebrow {
    display: block;
    margin-bottom: 0.4rem;
}

.page-hero__contact-link {
    display: inline-block;
    font-size: clamp(1.125rem, 1.6vw, 1.5rem);
    font-weight: 700;
    color: inherit;
    text-decoration: none;
    word-break: break-word;
    transition: color 0.2s ease;
}

.page-hero__contact-link:hover {
    color: var(--brand-raspberry);
}

.page-hero--about {
    text-align: center;
    position: relative;
    padding-bottom: 8rem;
}

.page-hero--about .page-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-hero__letter {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(20%, -25%);
    font-size: clamp(15rem, 35vw, 40rem);
    line-height: 0.85;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--outline-stroke);
    z-index: 0;
    user-select: none;
    pointer-events: none;
    letter-spacing: -0.05em;
}

.dark .page-hero__letter {
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.08);
}

.page-hero__geo {
    font-size: 0.8125rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.4;
    margin: 0 0 3rem;
}

.page-hero--about .eyebrow,
.page-hero--about .page-hero__title,
.page-hero--about .page-hero__lead,
.page-hero--about .page-hero__geo,
.page-hero--about .page-hero__stats {
    position: relative;
    z-index: 2;
}

.page-hero--sut {
    text-align: left;
    position: relative;
    padding-bottom: 6rem;
}

.page-hero--sut .page-hero__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
    text-align: left;
}

@media (min-width: 768px) {
    .page-hero--sut .page-hero__inner {
        padding: 0 clamp(2rem, 5vw, 6rem);
    }
}

.page-hero__title-accent {
    color: var(--brand-raspberry);
}

.archive-hero {
    position: relative;
    padding: 11rem 0 5rem;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.archive-hero__inner {
    position: relative;
    z-index: 2;
    padding: 0 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .archive-hero__inner {
        padding: 0 4rem;
    }
}

.archive-hero__breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.55;
    margin-bottom: 2.5rem;
}

.archive-hero__breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.archive-hero__breadcrumb a:hover {
    opacity: 0.7;
}

.archive-hero__breadcrumb span[aria-hidden="true"] {
    opacity: 0.4;
}

.archive-hero__breadcrumb-current {
    color: var(--text-primary);
    opacity: 0.9;
}

.archive-hero__title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.02;
    margin: 0.5rem 0 1.5rem;
    max-width: 28ch;
}

.archive-hero__desc {
    font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
    line-height: 1.7;
    font-weight: 300;
    opacity: 0.7;
    max-width: 60ch;
    margin: 0 0 1.75rem;
}

.archive-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1.25rem;
    margin-top: 1.5rem;
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.55;
}

.archive-hero__watermark {
    position: absolute;
    right: -2rem;
    bottom: -2rem;
    z-index: 1;
    font-size: clamp(6rem, 14vw, 16rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
    opacity: 0.1;
}

@keyframes rotateText {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}
