:root {
    --navy: #071525;
    --navy-mid: #0d2340;
    --navy-deep: #040d18;
    --ink: #101a28;
    --muted: #667484;
    --paper: #f4f6f9;
    --paper-soft: #e9eef4;
    --crimson: #c8102e;
    --crimson-deep: #9a0d24;
    --gold: #c4a574;
    --gold-bright: #d8bc8c;
    --gold-soft: rgba(196, 165, 116, 0.28);
    --line: rgba(7, 21, 37, 0.1);
    --white: #ffffff;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --font-display: "Cormorant Garamond", "Times New Roman", serif;
    --font-body: "Manrope", sans-serif;
    --font-ui: var(--font-body);
    --ui-label-size: 0.74rem;
    --ui-label-weight: 600;
    --ui-label-tracking: 0.14em;
    --section-y: clamp(4.25rem, 7vw, 6rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.7;
    background: var(--paper);
    overflow-x: hidden;
}

body.has-cursor {
    cursor: none;
}

body.has-cursor a,
body.has-cursor button,
body.has-cursor input,
body.has-cursor select,
body.has-cursor .package,
body.has-cursor .menu-item {
    cursor: none;
}

body.has-cursor.cursor-native,
body.has-cursor.cursor-native * {
    cursor: auto !important;
}

body.has-cursor.cursor-native .cursor-dot,
body.has-cursor.cursor-native .cursor-ring {
    opacity: 0 !important;
    visibility: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 90;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.wrap {
    width: min(1180px, calc(100% - 2.75rem));
    margin: 0 auto;
}

.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    z-index: 120;
    background: linear-gradient(90deg, var(--gold), var(--crimson));
}

.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 130;
    opacity: 0;
    transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
    will-change: transform;
    transition: opacity 0.3s ease, width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(196, 165, 116, 0.55);
}

body.has-cursor .cursor-dot,
body.has-cursor .cursor-ring {
    opacity: 1;
}

body.cursor-hover .cursor-dot {
    width: 10px;
    height: 10px;
    background: var(--crimson);
}

body.cursor-hover .cursor-ring {
    width: 54px;
    height: 54px;
    border-color: rgba(200, 16, 46, 0.45);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 110;
    padding: 1.45rem 0;
    transition: background 0.45s var(--ease), backdrop-filter 0.45s var(--ease), padding 0.45s var(--ease), border-color 0.45s var(--ease);
    border-bottom: 1px solid transparent;
    transform: none;
    opacity: 1;
    visibility: visible;
}

.site-header.is-scrolled,
body.nav-open .site-header {
    padding: 1rem 0;
    background: rgba(4, 13, 24, 0.78);
    backdrop-filter: blur(18px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header-rail {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
}

.header-right {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.45);
    font-family: var(--font-ui);
    font-size: var(--ui-label-size);
    font-weight: var(--ui-label-weight);
    letter-spacing: var(--ui-label-tracking);
    text-transform: uppercase;
}

.lang-link {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s var(--ease);
}

.lang-link:hover,
.lang-link.is-active {
    color: var(--gold);
}

.lang-link.is-soon {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
}

.lang-switch a.lang-link {
    text-decoration: none;
}

.lang-sep {
    opacity: 0.35;
}

.menu-trigger {
    justify-self: end;
}

.brand {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2vw, 1.85rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--white);
    white-space: nowrap;
    justify-self: start;
}

.header-chapter {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--font-ui);
    font-size: var(--ui-label-size);
    font-weight: var(--ui-label-weight);
    letter-spacing: var(--ui-label-tracking);
    text-transform: uppercase;
    justify-self: center;
}

.header-chapter-index {
    color: var(--gold);
}

.header-chapter-line {
    width: 28px;
    height: 1px;
    background: rgba(196, 165, 116, 0.55);
}

.menu-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.55rem 0.2rem 0.55rem 0.85rem;
    border: 0;
    background: transparent;
    color: var(--white);
    font-family: var(--font-ui);
}

.menu-trigger-label {
    position: relative;
    min-width: 7.5rem;
    text-align: right;
    font-family: var(--font-ui);
    font-size: var(--ui-label-size);
    font-weight: var(--ui-label-weight);
    letter-spacing: var(--ui-label-tracking);
    text-transform: uppercase;
}

.menu-trigger-label::after {
    content: attr(data-open);
}

body.nav-open .menu-trigger-label::after {
    content: attr(data-close);
}

.menu-trigger-mark {
    position: relative;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), background 0.35s var(--ease);
}

.menu-trigger:hover .menu-trigger-mark,
body.nav-open .menu-trigger-mark {
    border-color: var(--gold);
    background: rgba(196, 165, 116, 0.08);
}

.menu-trigger-mark i {
    position: absolute;
    width: 12px;
    height: 1px;
    background: var(--white);
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.menu-trigger-mark i:first-child {
    transform: translateY(-3px);
}

.menu-trigger-mark i:last-child {
    transform: translateY(3px);
}

body.nav-open .menu-trigger-mark i:first-child {
    transform: rotate(45deg);
}

body.nav-open .menu-trigger-mark i:last-child {
    transform: rotate(-45deg);
}

.site-menu {
    position: fixed;
    inset: 0;
    z-index: 105;
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}

.site-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-menu[hidden] {
    display: block;
}

.site-menu-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 520px at 85% 15%, rgba(196, 165, 116, 0.16), transparent 58%),
        linear-gradient(135deg, rgba(4, 13, 24, 0.98), rgba(7, 21, 37, 0.94));
    backdrop-filter: blur(22px);
    transform: scale(1.03);
    transition: transform 0.7s var(--ease-out);
}

.site-menu.is-open .site-menu-bg {
    transform: scale(1);
}

.site-menu-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    min-height: 100%;
    padding-top: 7.5rem;
    padding-bottom: 3rem;
    align-items: center;
}

.site-menu-kicker {
    margin: 0 0 1.6rem;
    color: var(--gold);
    font-family: var(--font-ui);
    font-size: var(--ui-label-size);
    font-weight: var(--ui-label-weight);
    letter-spacing: var(--ui-label-tracking);
    text-transform: uppercase;
}

.site-menu-nav {
    display: grid;
    gap: 0.35rem;
}

.menu-item {
    display: grid;
    grid-template-columns: 3rem 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.72);
    opacity: 0;
    transform: translateY(28px);
    transition: color 0.35s var(--ease), opacity 0.55s var(--ease), transform 0.55s var(--ease), padding-left 0.35s var(--ease);
}

.menu-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-menu.is-open .menu-item {
    opacity: 1;
    transform: none;
}

.site-menu.is-open .menu-item:nth-child(1) { transition-delay: 0.08s; }
.site-menu.is-open .menu-item:nth-child(2) { transition-delay: 0.14s; }
.site-menu.is-open .menu-item:nth-child(3) { transition-delay: 0.2s; }
.site-menu.is-open .menu-item:nth-child(4) { transition-delay: 0.26s; }

.menu-item-index {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    color: var(--gold);
}

.menu-item-copy {
    display: grid;
    gap: 0.2rem;
}

.menu-item-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: inherit;
}

.menu-item-en {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.menu-item-arrow {
    font-size: 1.1rem;
    opacity: 0;
    transform: translate(-8px, 8px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.menu-item:hover,
.menu-item.is-active,
.menu-item.is-focus {
    color: var(--white);
    padding-left: 0.55rem;
}

.menu-item:hover .menu-item-arrow,
.menu-item.is-active .menu-item-arrow,
.menu-item.is-focus .menu-item-arrow {
    opacity: 1;
    transform: none;
}

.site-menu-right {
    display: grid;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease) 0.18s, transform 0.6s var(--ease) 0.18s;
}

.site-menu.is-open .site-menu-right {
    opacity: 1;
    transform: none;
}

.menu-preview-frame {
    position: relative;
    overflow: hidden;
    min-height: 22rem;
    border: 1px solid rgba(196, 165, 116, 0.28);
}

.menu-preview-frame::after {
    content: "";
    position: absolute;
    inset: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.menu-preview-image {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.08);
    transition: transform 0.9s var(--ease-out), opacity 0.45s var(--ease);
}

.site-menu.is-open .menu-preview-image,
.menu-preview-image.is-ready {
    transform: scale(1);
}

.menu-preview-note {
    margin: 1rem 0 0;
    max-width: 28ch;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.98rem;
}

.menu-meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-meta-label {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.menu-meta a {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.menu-meta a:hover {
    color: var(--gold);
}

.menu-meta-cta {
    flex-shrink: 0;
}

.site-menu-stamp {
    position: absolute;
    right: -1.5rem;
    bottom: 18%;
    z-index: 0;
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 9rem);
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.035);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    pointer-events: none;
    user-select: none;
}

body.nav-open {
    overflow: hidden;
}

.btn {
    appearance: none;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.9rem 1.6rem;
    border-radius: 2px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: linear-gradient(135deg, #d31838, var(--crimson-deep));
    color: var(--white);
    box-shadow: 0 14px 40px rgba(200, 16, 46, 0.28);
}

.btn-primary:hover {
    box-shadow: 0 18px 48px rgba(200, 16, 46, 0.38);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
}

.section {
    position: relative;
    padding: var(--section-y) 0;
}

.section-text,
.section-head p:not(.section-kicker) {
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 100%;
}

.section-title,
.section-head h2,
.approach-head h2 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.section-kicker {
    margin: 0 0 0.9rem;
    color: var(--crimson);
    font-family: var(--font-ui);
    font-size: var(--ui-label-size);
    font-weight: var(--ui-label-weight);
    letter-spacing: var(--ui-label-tracking);
    line-height: 1.35;
    text-transform: uppercase;
}

.section-head {
    max-width: 100%;
    margin-bottom: clamp(2rem, 3.5vw, 2.75rem);
}

.gold-rule {
    width: 72px;
    height: 1px;
    margin: 1.5rem 0;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: end;
    color: var(--white);
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: -10%;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    will-change: transform;
}

.hero-media-pan {
    position: absolute;
    inset: -12%;
    background-image: inherit;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.1) translate3d(0, 0, 0);
    transform-origin: center center;
    will-change: transform;
    backface-visibility: hidden;
}

.hero-home .hero-media {
    background-image: url("/assets/img/site/hero-nyc.jpg");
}

.hero-page .hero-media {
    background-image: var(--hero-image);
}

.hero-veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4, 13, 24, 0.28) 0%, rgba(4, 13, 24, 0.55) 42%, rgba(4, 13, 24, 0.94) 100%),
        linear-gradient(90deg, rgba(4, 13, 24, 0.72) 0%, rgba(4, 13, 24, 0.28) 55%, transparent 100%);
}

.hero-glow {
    position: absolute;
    width: 42vw;
    height: 42vw;
    right: -8%;
    bottom: -10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 165, 116, 0.22), transparent 68%);
    filter: blur(10px);
    animation: pulseGlow 7s ease-in-out infinite;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 8.5rem 0 5rem;
}

.hero-page .hero-inner {
    padding-bottom: 4.5rem;
}

.hero-brand {
    margin: 0 0 1.15rem;
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 9vw, 6.2rem);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.035em;
}

.hero h1 {
    margin: 0 0 1.15rem;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.6vw, 2.7rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 16ch;
}

.hero-home .hero-brand,
.hero-home h1,
.hero-home .hero-lead,
.hero-home .hero-actions {
    max-width: 100%;
}

.hero-page h1 {
    max-width: 18ch;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.page-method .hero-page h1,
.page-method .hero-page .hero-lead {
    max-width: 100%;
}

.page-formats .hero-page h1,
.page-formats .hero-page .hero-lead {
    max-width: 100%;
}

.page-contact .hero-page h1,
.page-contact .hero-page .hero-lead {
    max-width: 100%;
}

.hero-lead {
    margin: 0 0 2.2rem;
    max-width: 36ch;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

.hero-home .hero-lead {
    max-width: 100%;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero-scroll {
    position: absolute;
    right: max(1.25rem, calc((100% - 1180px) / 2));
    bottom: 2rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
    animation: scrollPulse 2.2s ease-in-out infinite;
}

.page-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 2rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.page-hero-meta span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.marquee {
    overflow: hidden;
    border-block: 1px solid rgba(7, 21, 37, 0.08);
    background: rgba(255, 255, 255, 0.55);
    padding: 1rem 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 2.5rem;
    animation: marquee 32s linear infinite;
}

.marquee-track span {
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.04em;
    color: var(--navy);
    opacity: 0.72;
}

.marquee-track span::after {
    content: "✦";
    margin-left: 2.5rem;
    color: var(--gold);
}

.manifesto {
    background:
        radial-gradient(900px 420px at 80% 0%, rgba(196, 165, 116, 0.12), transparent 60%),
        linear-gradient(180deg, #f8fafc, var(--paper));
}

.manifesto-quote {
    margin: 0;
    max-width: 100%;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4.4rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--navy);
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
    margin-top: 1.1rem;
}

.manifesto-copy .gold-rule {
    margin: 0 0 1.1rem;
}

.manifesto-copy p {
    margin: 0 0 1.1rem;
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 100%;
}

.manifesto-copy p:last-child {
    margin-bottom: 0;
}

.manifesto-horizon {
    margin-top: clamp(2rem, 3.5vw, 2.75rem);
    padding: 0;
    background: none;
    overflow: visible;
}

.approach {
    background: var(--navy-deep);
    color: var(--white);
    overflow: hidden;
}

.approach::before {
    content: "";
    position: absolute;
    inset: auto -10% -20% auto;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 165, 116, 0.12), transparent 70%);
    pointer-events: none;
}

.approach .section-kicker { color: var(--gold); }
.approach .section-text { color: rgba(255, 255, 255, 0.68); }

.approach-head {
    margin-bottom: clamp(2rem, 3.5vw, 2.75rem);
}

.approach-head h2,
.approach-head .section-text {
    max-width: 100%;
}

.approach-body {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: stretch;
}

.approach-visual {
    position: relative;
    min-height: 32rem;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.approach-visual-img {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(4, 13, 24, 0.15), rgba(4, 13, 24, 0.55)),
        url("/assets/img/site/hero-office.jpg") center / cover no-repeat;
    transform: scale(1.08);
    transition: transform 1.4s var(--ease-out);
}

.approach-visual.is-visible .approach-visual-img {
    transform: scale(1);
}

.approach-visual-frame {
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(196, 165, 116, 0.35);
    pointer-events: none;
}

.approach-points {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
    min-height: 32rem;
    align-self: stretch;
}

.approach-points li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 0.25rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    transition: padding-left 0.45s var(--ease);
}

.approach-points li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.approach-points li:hover {
    padding-left: 0.6rem;
}

.approach-points strong {
    display: block;
    margin-bottom: 0.4rem;
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.approach-points p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
}

.life {
    background: linear-gradient(180deg, #f7f9fc, #eef2f7);
}

.life-list,
.feature-grid,
.package-grid,
.steps-grid,
.ritual-grid {
    display: grid;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.life-list,
.feature-grid {
    grid-template-columns: repeat(3, 1fr);
}

.life-item,
.feature-card {
    position: relative;
    padding: 2rem 1.5rem 1.7rem;
    min-height: 16rem;
    border: 1px solid transparent;
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(145deg, rgba(196, 165, 116, 0.55), rgba(7, 21, 37, 0.08)) border-box;
    overflow: hidden;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.life-item::before,
.feature-card::before {
    content: "";
    position: absolute;
    inset: auto -20% -40% auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.08), transparent 70%);
    transition: transform 0.6s var(--ease);
}

.life-item:hover,
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(7, 21, 37, 0.1);
}

.life-item:hover::before,
.feature-card:hover::before {
    transform: scale(1.35);
}

.life-index,
.feature-index {
    display: block;
    margin-bottom: 2.2rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.life-item h3,
.feature-card h3 {
    position: relative;
    margin: 0 0 0.7rem;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.life-item p,
.feature-card p {
    position: relative;
    margin: 0;
    color: var(--muted);
}

.teachers {
    background: linear-gradient(180deg, #eef2f7, #f7f9fc);
}

.teacher-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.teacher-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem 1.7rem;
    min-height: 16rem;
    border: 1px solid transparent;
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(145deg, rgba(196, 165, 116, 0.55), rgba(7, 21, 37, 0.08)) border-box;
    overflow: hidden;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.teacher-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(7, 21, 37, 0.1);
}

.teacher-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.teacher-index {
    display: block;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.teacher-play {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold-soft);
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}

.teacher-play:hover {
    border-color: var(--gold);
    transform: scale(1.06);
}

.teacher-play:disabled {
    cursor: default;
    opacity: 0.4;
    transform: none;
}

.teacher-play-icon {
    position: relative;
    display: block;
    width: 0.85rem;
    height: 0.85rem;
}

.teacher-play-icon::before,
.teacher-play-icon::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    background: var(--ink);
    border-radius: 1px;
    transition: left 0.2s var(--ease), width 0.2s var(--ease), clip-path 0.2s var(--ease), opacity 0.15s var(--ease);
}

.teacher-play-icon::before {
    left: 0;
    width: 100%;
    clip-path: polygon(12% 4%, 12% 96%, 96% 50%);
}

.teacher-play-icon::after {
    left: 100%;
    width: 0;
    opacity: 0;
}

.teacher-card.is-playing .teacher-play-icon::before {
    left: 8%;
    width: 30%;
    clip-path: none;
}

.teacher-card.is-playing .teacher-play-icon::after {
    left: 62%;
    width: 30%;
    opacity: 1;
}

.teacher-info {
    position: relative;
    flex: 1 1 auto;
}

.teacher-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.teacher-lang {
    display: inline-block;
    margin-top: 0.35rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.teacher-bio {
    margin: 0.6rem 0 0;
    color: var(--muted);
}

.teacher-progress {
    position: relative;
    margin-top: 1.2rem;
    height: 3px;
    border-radius: 2px;
    background: var(--line);
    overflow: hidden;
}

.teacher-progress-fill {
    display: block;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
    transition: width 0.1s linear;
}

.teacher-status {
    display: block;
    margin-top: 0.5rem;
    min-height: 1.1em;
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

.teacher-card.is-unavailable .teacher-play {
    opacity: 0.5;
}

.teacher-photo {
    width: 4.5rem;
    height: 4.5rem;
    margin-bottom: 1.1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold-soft);
}

.teacher-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.directions {
    background: linear-gradient(180deg, #f7f9fc, #eef2f7);
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.direction-item {
    position: relative;
    padding: 1.7rem 1.4rem 1.5rem;
    min-height: 11rem;
    border: 1px solid transparent;
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(145deg, rgba(196, 165, 116, 0.55), rgba(7, 21, 37, 0.08)) border-box;
    overflow: hidden;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.direction-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(7, 21, 37, 0.1);
}

.direction-index {
    display: block;
    margin-bottom: 1.1rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.direction-item h3 {
    position: relative;
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.direction-item p {
    position: relative;
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.editorial {
    background: var(--navy);
    color: var(--white);
}

.editorial-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: stretch;
}

.editorial-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 100%;
}

.editorial-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    height: 100%;
    min-height: 100%;
    padding: 2rem;
    border: 1px solid rgba(196, 165, 116, 0.28);
    background: rgba(255, 255, 255, 0.03);
}

.editorial-panel h3 {
    margin: 0 0 0.8rem;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
}

.editorial-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.editorial .section-kicker { color: var(--gold); }
.editorial .section-text { color: rgba(255, 255, 255, 0.68); }

.format-bridge {
    background: var(--navy);
    color: var(--white);
    padding: 0;
    margin: 0;
}

.format-bridge-inner {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.format-bridge-rule {
    flex: 1 1 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 165, 116, 0.42), transparent);
}

.format-bridge-mark {
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border: 1px solid rgba(196, 165, 116, 0.7);
    transform: rotate(45deg);
}

.format-bridge-label {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.42);
    font-family: var(--font-ui);
    font-size: var(--ui-label-size);
    font-weight: var(--ui-label-weight);
    letter-spacing: var(--ui-label-tracking);
    text-transform: uppercase;
    white-space: nowrap;
}

.packages,
.formats-page {
    background: var(--navy);
    color: var(--white);
}

.packages .section-kicker,
.formats-page .section-kicker { color: var(--gold); }

.packages .section-text,
.formats-page .section-text { color: rgba(255, 255, 255, 0.68); }

.package-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}

.package {
    appearance: none;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-align: left;
    padding: 2rem 1.6rem 1.7rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.03);
    color: inherit;
    overflow: hidden;
    transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.package::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(196, 165, 116, 0.12), transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.8s var(--ease);
}

.package:hover,
.package.is-selected {
    border-color: rgba(196, 165, 116, 0.55);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
}

.package:hover::before,
.package.is-selected::before {
    transform: translateX(120%);
}

.package-name {
    position: relative;
    margin: 0 0 0.7rem;
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.package-desc {
    position: relative;
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    flex: 1 1 auto;
}

.package-action {
    position: relative;
    margin-top: 1.5rem;
    color: var(--gold);
    font-family: var(--font-ui);
    font-size: var(--ui-label-size);
    font-weight: var(--ui-label-weight);
    letter-spacing: var(--ui-label-tracking);
    text-transform: uppercase;
}

.cta {
    background:
        linear-gradient(135deg, rgba(4, 13, 24, 0.92), rgba(7, 21, 37, 0.78)),
        url("/assets/img/site/hero-bridge.jpg") center / cover no-repeat;
    color: var(--white);
}

.cta-panel,
.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
}

.cta .section-kicker { color: var(--gold); }

.cta .section-text { color: rgba(255, 255, 255, 0.72); }

.cta-form,
.contact-form {
    display: grid;
    gap: 0.95rem;
    padding: 1.7rem;
    border: 1px solid rgba(196, 165, 116, 0.28);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.field {
    display: grid;
    gap: 0.4rem;
}

.field label {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 3.1rem;
    padding: 0.8rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.field textarea {
    min-height: 7rem;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-soft);
}

.form-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.84rem;
}

.form-consent-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.78rem;
    line-height: 1.45;
}

.field-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin: 0.2rem 0 0.35rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
    line-height: 1.4;
    cursor: pointer;
}

.field-consent input {
    margin-top: 0.2rem;
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
    accent-color: var(--crimson);
}

.form-status {
    min-height: 1.25rem;
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
}

.form-status.is-ok { color: #b7f0c4; }
.form-status.is-error { color: #ffc9d0; }

.page-method .content-band,
.page-formats .content-band,
.page-contact .content-band {
    background: var(--paper);
}

.formats-included-head {
    width: min(1180px, calc(100% - 2.75rem));
    max-width: 100%;
    margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.formats-included-head .section-title {
    max-width: 100%;
}

.formats-included-head .gold-rule {
    margin-bottom: 0;
}

.formats-included-body {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: stretch;
    width: min(1180px, calc(100% - 2.75rem));
    max-width: 100%;
}

.formats-included-body > * {
    min-width: 0;
    min-height: 0;
}

.formats-included-points {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    height: 100%;
    min-height: 26rem;
    color: inherit;
    width: 100%;
    max-width: 100%;
}

.formats-included-points li {
    border-color: var(--line);
    justify-content: center;
    padding: 1rem 0;
    min-width: 0;
}

.formats-included-points p {
    color: var(--muted);
}

.formats-included-visual {
    height: 100%;
    min-height: 26rem;
    align-self: stretch;
}

.steps-grid {
    grid-template-columns: repeat(4, 1fr);
}

.step-card {
    padding: 1.6rem 1.3rem;
    border-top: 1px solid var(--gold);
    background: rgba(255, 255, 255, 0.72);
}

.step-card strong {
    display: block;
    margin: 1.2rem 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 500;
}

.step-card p {
    margin: 0;
    color: var(--muted);
}

.ritual-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.ritual-visual {
    min-height: 26rem;
    border-radius: 4px;
    background:
        linear-gradient(160deg, rgba(4, 13, 24, 0.2), rgba(4, 13, 24, 0.55)),
        url("/assets/img/site/hero-city.jpg") center / cover no-repeat;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.page-contact .hero,
.contact-page .hero {
    min-height: 72svh;
}

.contact-section {
    background: var(--paper);
    color: var(--ink);
}

.contact-head {
    margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.contact-head .section-kicker {
    color: var(--crimson);
}

.contact-head .section-title {
    max-width: 100%;
    color: var(--ink);
}

.contact-head .section-text {
    max-width: 100%;
    color: var(--muted);
}

.contact-body {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: stretch;
}

.contact-body > * {
    min-width: 0;
}

.contact-aside {
    display: grid;
    gap: 1.2rem;
    align-content: stretch;
    grid-auto-rows: 1fr;
    height: 100%;
}

.contact-aside-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    padding: 1.4rem 1.3rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
}

.contact-aside-card strong {
    display: block;
    margin-bottom: 0.4rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--ink);
}

.contact-aside-card p,
.contact-aside-card a {
    margin: 0;
    color: var(--muted);
}

.page-contact .contact-form {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 48px rgba(4, 13, 24, 0.08);
    color: var(--ink);
    height: 100%;
    align-content: start;
}

.page-contact .field label {
    color: rgba(4, 13, 24, 0.62);
}

.page-contact .field input,
.page-contact .field select,
.page-contact .field textarea {
    border-color: rgba(4, 13, 24, 0.14);
    background: #fff;
    color: var(--ink);
}

.page-contact .form-note {
    color: var(--muted);
}

.page-contact .wizard-progress {
    background: rgba(4, 13, 24, 0.08);
}

.page-contact .wizard-summary {
    border-color: var(--line);
    background: rgba(4, 13, 24, 0.03);
    color: var(--ink);
}

.page-contact .ritual-step {
    color: rgba(4, 13, 24, 0.38);
}

.page-contact .ritual-step.is-active {
    color: var(--ink);
}

.page-contact .contact-form .btn-ghost {
    color: var(--ink);
    border-color: rgba(4, 13, 24, 0.22);
}

.page-contact .contact-form .btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.site-footer {
    padding: 3.5rem 0 2rem;
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.62);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-brand {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
}

.footer-tag {
    margin: 0;
    max-width: 28ch;
}

.footer-label {
    margin: 0 0 0.9rem;
    color: var(--gold);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 0.55rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.8rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.84rem;
}

.footer-credit-link {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(196, 165, 116, 0.45);
    text-underline-offset: 0.18em;
    transition: color 0.35s var(--ease), text-decoration-color 0.35s var(--ease);
}

.footer-credit-link:hover {
    color: var(--gold);
    text-decoration-color: var(--gold);
}

.footer-hotkeys {
    position: relative;
    display: inline-flex;
    justify-self: end;
}

.footer-hotkeys-trigger {
    appearance: none;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: rgba(196, 165, 116, 0.4);
    text-underline-offset: 0.18em;
    transition: color 0.35s var(--ease), text-decoration-color 0.35s var(--ease);
}

.footer-hotkeys-trigger:hover,
.footer-hotkeys.is-open .footer-hotkeys-trigger {
    color: var(--gold);
    text-decoration-color: var(--gold);
}

.footer-hotkeys-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 0.75rem);
    z-index: 40;
    width: min(34rem, calc(100vw - 2rem));
    padding: 1rem 1.1rem 1.05rem;
    border: 1px solid rgba(196, 165, 116, 0.28);
    background: rgba(4, 13, 24, 0.96);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
}

.footer-hotkeys:hover .footer-hotkeys-panel,
.footer-hotkeys:focus-within .footer-hotkeys-panel,
.footer-hotkeys.is-open .footer-hotkeys-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}

.footer-hotkeys-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
}

.footer-hotkeys-os {
    margin: 0 0 0.7rem;
    color: var(--gold);
    font-family: var(--font-ui);
    font-size: var(--ui-label-size);
    font-weight: var(--ui-label-weight);
    letter-spacing: var(--ui-label-tracking);
    text-transform: uppercase;
}

.footer-hotkeys-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.footer-hotkeys-col li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.45rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    line-height: 1.35;
}

.footer-hotkeys-col kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.35rem;
    padding: 0.12rem 0.38rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.page-veil {
    position: fixed;
    inset: 0;
    z-index: 140;
    background: var(--navy-deep);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s var(--ease);
}

.page-veil.is-active {
    opacity: 1;
    pointer-events: auto;
}

.ambient {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(520px 520px at var(--mx, 50%) var(--my, 40%), rgba(196, 165, 116, 0.09), transparent 55%);
    transition: opacity 0.4s ease;
}

body.has-cursor .ambient {
    opacity: 1;
}

html.session-ready body.is-loading .preloader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-root {
    display: block;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 150;
    display: grid;
    place-items: center;
    background: var(--navy-deep);
    color: var(--white);
    transition: opacity 0.55s var(--ease), visibility 0.55s var(--ease);
}

.preloader.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    width: min(320px, calc(100% - 2rem));
    text-align: center;
}

.preloader-brand {
    margin-bottom: 1.4rem;
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: -0.03em;
}

.preloader-bar {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.preloader-bar span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--crimson));
    transition: width 0.2s linear;
}

.preloader-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

html.welcome-pending body.is-loading > *:not(.preloader):not(.welcome-gate):not(.cursor-dot):not(.cursor-ring):not(script),
html.welcome-pending body.is-welcoming > *:not(.preloader):not(.welcome-gate):not(.cursor-dot):not(.cursor-ring):not(script) {
    visibility: hidden !important;
}

body.is-welcoming.has-cursor {
    cursor: none;
}

body.is-welcoming.has-cursor .cursor-dot,
body.is-welcoming.has-cursor .cursor-ring {
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 160;
    pointer-events: none !important;
}

body.is-loading.has-cursor .cursor-dot,
body.is-loading.has-cursor .cursor-ring {
    visibility: visible !important;
    opacity: 1;
    z-index: 160;
}

body.is-welcoming.has-cursor a,
body.is-welcoming.has-cursor button,
body.is-welcoming.has-cursor .welcome-lang,
body.is-welcoming.has-cursor .welcome-continue-cta {
    cursor: none;
}

html.welcome-skip .welcome-gate {
    display: none !important;
}

body.is-loading,
body.is-welcoming {
    overflow: hidden;
}

body.is-welcoming .site-header,
body.is-welcoming .float-dock,
body.is-welcoming .chapter-rail,
body.is-welcoming .time-chip,
body.is-welcoming .visit-chip,
body.is-welcoming .to-top {
    opacity: 0;
    pointer-events: none;
}

.welcome-gate {
    position: fixed;
    inset: 0;
    z-index: 145;
    color: var(--white);
    background: var(--navy-deep);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    touch-action: pan-y;
    min-height: 100vh;
    min-height: 100dvh;
    padding:
        max(0px, env(safe-area-inset-top))
        max(0px, env(safe-area-inset-right))
        max(0px, env(safe-area-inset-bottom))
        max(0px, env(safe-area-inset-left));
}

html.welcome-skip .welcome-gate,
.welcome-gate.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.85s var(--ease-out), visibility 0.85s var(--ease-out);
}

.welcome-stage {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.welcome-layer {
    position: absolute;
    inset: -6%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.12);
    transition: opacity 1.1s var(--ease-out), transform 1.4s var(--ease-out);
    filter: saturate(1.05) contrast(1.05);
}

.welcome-layer.is-active {
    opacity: 1;
    transform: scale(1.04);
}

.welcome-veil {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 18% 12%, rgba(196, 165, 116, 0.22), transparent 36%),
        linear-gradient(105deg, rgba(4, 13, 24, 0.88) 12%, rgba(4, 13, 24, 0.55) 48%, rgba(4, 13, 24, 0.82) 100%),
        linear-gradient(180deg, rgba(4, 13, 24, 0.35), rgba(4, 13, 24, 0.92));
}

.welcome-noise {
    position: absolute;
    inset: 0;
    opacity: 0.045;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.welcome-track {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
}

.welcome-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: end;
    padding: clamp(1.4rem, 4vw, 3.5rem);
    padding-bottom: clamp(5.5rem, 10vh, 7rem);
    opacity: 0;
    visibility: hidden;
    transform: translateY(36px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), visibility 0.7s;
    pointer-events: none;
}

.welcome-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}

.welcome-slide.is-exit-up {
    opacity: 0;
    transform: translateY(-28px);
}

.welcome-slide.is-exit-down {
    opacity: 0;
    transform: translateY(28px);
}

.welcome-slide-inner {
    width: min(920px, 100%);
}

.welcome-choose {
    margin: 1.6rem 0 1rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.welcome-lang > *,
.welcome-continue-cta > * {
    pointer-events: none;
}

.welcome-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: min(100%, 28rem);
}

.welcome-langs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 0;
}

.welcome-lang {
    width: 100%;
    min-height: 3rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 2px;
    background: rgba(4, 13, 24, 0.55);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    contain: layout paint;
    transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.welcome-lang:hover,
.welcome-lang:focus-visible {
    border-color: rgba(196, 165, 116, 0.7);
    color: var(--gold-bright);
    outline: none;
}

.welcome-lang.is-active {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: var(--navy-deep);
}

.welcome-lang.is-active:hover,
.welcome-lang.is-active:focus-visible {
    color: var(--navy-deep);
    border-color: var(--gold);
}

.welcome-continue-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    width: 100%;
    box-sizing: border-box;
    min-height: 3.35rem;
    padding: 0.95rem 1.55rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(135deg, #d31838, var(--crimson-deep));
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    contain: layout paint;
    box-shadow: 0 20px 48px rgba(200, 16, 46, 0.3);
    transition: border-color 0.15s ease, opacity 0.15s ease;
}

.welcome-continue-cta i {
    font-style: normal;
}

.welcome-continue-cta:hover:not(:disabled),
.welcome-continue-cta:focus-visible:not(:disabled) {
    border-color: rgba(255, 255, 255, 0.35);
    outline: none;
}

.welcome-continue-cta:disabled {
    opacity: 0.38;
    cursor: not-allowed;
    box-shadow: none;
}

.welcome-continue-hint {
    margin: 0.15rem 0 0;
    color: rgba(255, 255, 255, 0.48);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.45;
    text-align: center;
}

.welcome-continue-hint[hidden] {
    display: none;
}

.welcome-index {
    display: block;
    margin-bottom: 1rem;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 500;
    line-height: 0.85;
    letter-spacing: -0.04em;
    opacity: 0.9;
}

.welcome-kicker {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.welcome-brand {
    margin: 0 0 0.85rem;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.welcome-title {
    margin: 0;
    max-width: min(38ch, 100%);
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 5.8vw, 4.35rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.028em;
}

.welcome-title-line {
    display: block;
}

.welcome-title-dash {
    margin: 0 0.28em;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
}

.welcome-begin-group {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    gap: 0.35em;
}

.welcome-begin {
    display: inline-block;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gold-bright);
    font-family: inherit;
    font-size: inherit;
    font-weight: 600;
    font-style: inherit;
    line-height: inherit;
    letter-spacing: -0.02em;
    text-decoration: underline;
    text-decoration-color: rgba(196, 165, 116, 0.9);
    text-decoration-thickness: 0.06em;
    text-underline-offset: 0.14em;
    cursor: pointer;
    vertical-align: baseline;
    transition: color 0.3s var(--ease), text-decoration-color 0.3s var(--ease);
}

.welcome-begin:hover,
.welcome-begin:focus-visible {
    color: var(--white);
    text-decoration-color: rgba(255, 255, 255, 0.9);
    outline: none;
}

.welcome-begin.is-armed {
    pointer-events: none;
    opacity: 0.7;
}

.welcome-begin-cue {
    position: absolute;
    left: calc(100% + 0.55em);
    bottom: 0.15em;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    pointer-events: none;
    white-space: nowrap;
}

.welcome-begin-cue-arrow {
    position: relative;
    width: 1.7rem;
    height: 0.85rem;
    opacity: 0.9;
    animation: welcomeCueSlide 1.55s var(--ease) infinite;
}

.welcome-begin-cue-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--gold-bright));
    transform: translateY(-50%);
}

.welcome-begin-cue-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0.42rem;
    height: 0.42rem;
    border-left: 1.5px solid var(--gold-bright);
    border-bottom: 1.5px solid var(--gold-bright);
    transform: translateY(-50%) rotate(45deg);
}

.welcome-begin-cue-label {
    color: rgba(216, 188, 140, 0.78);
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    animation: welcomeCuePulse 1.55s var(--ease) infinite;
}

.welcome-begin-group:has(.welcome-begin:hover) .welcome-begin-cue-arrow,
.welcome-begin-group:has(.welcome-begin:focus-visible) .welcome-begin-cue-arrow {
    animation-duration: 0.85s;
}

.welcome-begin.is-armed ~ .welcome-begin-cue,
.welcome-begin-group:has(.welcome-begin.is-armed) .welcome-begin-cue {
    opacity: 0;
    transition: opacity 0.35s var(--ease);
}

@keyframes welcomeCueSlide {
    0%, 100% { transform: translateX(0); opacity: 0.45; }
    50% { transform: translateX(-8px); opacity: 1; }
}

@keyframes welcomeCuePulse {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.95; }
}

@media (prefers-reduced-motion: reduce) {
    .welcome-begin-cue-arrow,
    .welcome-begin-cue-label {
        animation: none;
        opacity: 0.75;
    }
}

.welcome-lead,
.welcome-text,
.welcome-finale {
    margin: 0;
    max-width: 52rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.05rem, 2.1vw, 1.28rem);
    line-height: 1.65;
}

.welcome-lead {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.94);
}

.welcome-lead-line {
    margin: 0;
}

.welcome-lead-line + .welcome-lead-line {
    margin-top: 0.85rem;
}

.welcome-finale {
    margin-bottom: 1.6rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.welcome-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-height: 3.35rem;
    padding: 0.95rem 1.55rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(135deg, #d31838, var(--crimson-deep));
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
    box-shadow: 0 20px 48px rgba(200, 16, 46, 0.3);
}

.welcome-cta i {
    font-style: normal;
    transition: transform 0.35s var(--ease);
}

.welcome-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.35);
}

.welcome-cta:hover i {
    transform: translateX(5px);
}


.welcome-footer {
    position: absolute;
    left: clamp(1.4rem, 4vw, 3.5rem);
    right: clamp(1.4rem, 4vw, 3.5rem);
    bottom: clamp(1.4rem, 3vh, 2.2rem);
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 1.25rem;
}

.welcome-progress {
    position: relative;
    width: min(180px, 34vw);
    height: 1px;
    background: rgba(255, 255, 255, 0.16);
    overflow: hidden;
    margin-bottom: 0.85rem;
}

.welcome-progress i {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--crimson));
    transition: transform 0.55s var(--ease-out);
    transform: scaleX(0.25);
    transform-origin: left center;
}





@media (max-width: 720px) {
    .welcome-slide {
        align-items: center;
        padding-bottom: clamp(4rem, 12vh, 7rem);
    }

    .welcome-title {
        max-width: none;
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .welcome-cta {
        width: 100%;
        justify-content: center;
    }

    .welcome-footer {
        justify-content: center;
    }
}

@media (max-height: 520px) {
    .welcome-slide {
        align-items: flex-start;
        padding-top: 4.5rem;
        padding-bottom: 2.5rem;
        overflow-y: auto;
    }

    .welcome-title {
        font-size: clamp(1.7rem, 7vh, 2.4rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .welcome-layer,
    .welcome-slide,
    .welcome-progress i,
    .welcome-gate.is-done {
        transition: none;
    }
}

.chapter-journey {
    display: none;
    margin-top: 0.7rem;
    padding-top: 0.55rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    --p: 0;
}

.chapter-journey-inner {
    display: grid;
    gap: 0.42rem;
}

.chapter-journey-labels {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 0.85rem;
}

.chapter-journey-label {
    position: relative;
    min-width: 0;
    height: 1.15rem;
    border: 0;
    background: transparent;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.35s var(--ease);
}

.chapter-journey-label.is-next {
    color: rgba(255, 255, 255, 0.38);
}

.chapter-journey-label.is-next.is-finale {
    color: rgba(196, 165, 116, 0.55);
}

.chapter-journey-label:disabled {
    cursor: default;
}

.chapter-journey-reel {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.chapter-journey-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    line-height: 1;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 88%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 88%, transparent 100%);
    transition:
        transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.38s ease;
}

.chapter-journey-label.is-current .chapter-journey-text {
    justify-content: flex-start;
}

.chapter-journey-label.is-next .chapter-journey-text {
    justify-content: flex-end;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 100%);
}

.chapter-journey-label.is-next .chapter-journey-text.is-marquee {
    justify-content: flex-start;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.chapter-journey-label.is-current .chapter-journey-text.is-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.chapter-journey-text-inner {
    display: inline-block;
    max-width: none;
    font-family: var(--font-ui);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
    will-change: transform;
}

.chapter-journey-label.is-finale .chapter-journey-text-inner {
    letter-spacing: 0.16em;
}

.chapter-journey-text.is-marquee .chapter-journey-text-inner {
    animation: chapterJourneyMarquee 5.2s ease-in-out infinite;
}

.chapter-journey-text.is-active {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.chapter-journey-text.is-prep-up {
    transform: translate3d(0, 115%, 0);
    opacity: 0;
}

.chapter-journey-text.is-prep-down {
    transform: translate3d(0, -115%, 0);
    opacity: 0;
}

.chapter-journey-text.is-out-up {
    transform: translate3d(0, -115%, 0);
    opacity: 0;
}

.chapter-journey-text.is-out-down {
    transform: translate3d(0, 115%, 0);
    opacity: 0;
}

@keyframes chapterJourneyMarquee {
    0%, 18% { transform: translate3d(0, 0, 0); }
    82%, 100% { transform: translate3d(var(--marquee-x, 0px), 0, 0); }
}

.chapter-journey-track {
    position: relative;
    height: 0.55rem;
    display: flex;
    align-items: center;
}

.chapter-journey-line {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.chapter-journey-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: calc(var(--p, 0) * 100%);
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gold), var(--crimson));
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .chapter-journey-text {
        transition: none;
    }

    .chapter-journey-text.is-marquee .chapter-journey-text-inner {
        animation: none;
    }
}

.chapter-rail {
    position: fixed;
    left: 1.1rem;
    top: 50%;
    z-index: 60;
    display: none;
    transform: translateY(-50%);
    gap: 0.75rem;
}

.chapter-rail.has-items {
    display: grid;
    gap: 0.62rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.chapter-dot {
    position: relative;
    width: 10px;
    height: 10px;
    padding: 0;
    border: 1px solid rgba(196, 165, 116, 0.55);
    border-radius: 50%;
    background: rgba(7, 21, 37, 0.35);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.35);
    transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.chapter-dot::after {
    content: attr(data-label);
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%) translateX(-4px);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    padding: 0.25rem 0.45rem;
    border-radius: 2px;
    background: rgba(4, 13, 24, 0.82);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.chapter-dot:hover::after,
.chapter-dot.is-active::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.chapter-dot.is-active {
    background: var(--crimson);
    border-color: var(--crimson);
    transform: scale(1.2);
}

.time-chip {
    position: fixed;
    right: 1.2rem;
    bottom: calc(1rem + 60px + 0.7rem);
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(4, 13, 24, 0.72);
    backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.time-chip-label {
    color: var(--gold);
}

.time-chip-sep {
    opacity: 0.35;
}

.visit-chip {
    position: fixed;
    left: 1.2rem;
    bottom: 1.2rem;
    z-index: 60;
    padding: 0.55rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(4, 13, 24, 0.72);
    backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.visit-chip.is-visible {
    opacity: 1;
    transform: none;
}

.fx-canvas {
    position: fixed;
    inset: 0;
    z-index: 155;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fx-canvas.is-on {
    opacity: 1;
}

.link-preview {
    position: fixed;
    z-index: 125;
    width: min(280px, calc(100vw - 2rem));
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 0.75rem;
    padding: 0.65rem;
    border: 1px solid rgba(196, 165, 116, 0.3);
    background: rgba(4, 13, 24, 0.94);
    color: var(--white);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s var(--ease);
    pointer-events: none;
}

.link-preview.is-visible {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.link-preview[hidden] {
    display: grid;
}

.link-preview-image {
    min-height: 84px;
    background-position: center;
    background-size: cover;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.link-preview-kicker {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--gold);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.link-preview-copy strong {
    display: block;
    margin-bottom: 0.25rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
}

.link-preview-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
    line-height: 1.4;
}

body.is-idle .hero-media-pan {
    filter: saturate(1.08) contrast(1.05);
}

.clip-reveal {
    clip-path: inset(12% 12% 12% 12%);
    transition: clip-path 1.1s var(--ease-out);
}

.clip-reveal.is-visible,
.approach-visual.is-visible .clip-reveal {
    clip-path: inset(0 0 0 0);
}

.skew-on-scroll {
    transition: transform 0.2s linear;
}

.to-top {
    position: fixed;
    right: 1.2rem;
    bottom: calc(1rem + 60px + 0.7rem + 2.6rem + 0.7rem);
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(4, 13, 24, 0.72);
    backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.2;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.to-top:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.grecaptcha-badge {
    z-index: 55 !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 1.5rem;
    z-index: 160;
    transform: translateX(-50%) translateY(16px);
    padding: 0.85rem 1.1rem;
    border: 1px solid rgba(196, 165, 116, 0.35);
    background: rgba(4, 13, 24, 0.92);
    color: var(--white);
    font-size: 0.88rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.float-dock {
    position: fixed;
    left: 50%;
    bottom: 1.15rem;
    z-index: 70;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: calc(100vw - 1.5rem);
    gap: 0.45rem;
    padding: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(4, 13, 24, 0.72);
    backdrop-filter: blur(14px);
    transform: translateX(-50%);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease), transform 0.35s var(--ease);
}

.float-dock.is-away {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(14px);
}

.time-chip.is-away {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease), transform 0.35s var(--ease);
}

.dock-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.4rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-align: center;
    text-transform: none;
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.dock-btn:hover,
.dock-btn.is-on {
    color: var(--gold);
    border-color: rgba(196, 165, 116, 0.45);
}

.dock-btn-accent {
    background: linear-gradient(135deg, #d31838, var(--crimson-deep));
    border-color: transparent;
    color: var(--white);
}

.command-palette {
    position: fixed;
    inset: 0;
    z-index: 170;
    display: grid;
    place-items: start center;
    padding: 12vh 1rem 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.command-palette.is-open {
    opacity: 1;
    visibility: visible;
}

.command-palette[hidden] {
    display: grid;
}

.command-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 13, 24, 0.62);
    backdrop-filter: blur(10px);
}

.command-panel {
    position: relative;
    width: min(560px, 100%);
    border: 1px solid rgba(196, 165, 116, 0.28);
    background: rgba(7, 21, 37, 0.94);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.command-head,
.command-foot {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.command-input {
    width: 100%;
    border: 0;
    border-block: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    color: var(--white);
    padding: 1rem;
    font-size: 1.05rem;
    outline: none;
}

.command-list {
    max-height: 320px;
    overflow: auto;
}

.command-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.85rem;
    align-items: center;
    width: 100%;
    padding: 0.9rem 1rem;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    text-align: left;
}

.command-item.is-active,
.command-item:hover {
    background: rgba(196, 165, 116, 0.1);
    color: var(--white);
}

.command-item-key {
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}

.command-item-hint {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

.horizon {
    position: relative;
    padding: 2.5rem 0 3rem;
    overflow: hidden;
}

.manifesto-horizon.horizon {
    padding: 0;
}

.horizon-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.horizon-card {
    position: relative;
    padding: 1.55rem 1.35rem 1.45rem;
    border: 1px solid rgba(7, 21, 37, 0.1);
    background: rgba(255, 255, 255, 0.78);
    overflow: hidden;
    transition:
        transform 0.5s var(--ease),
        border-color 0.5s var(--ease),
        box-shadow 0.5s var(--ease),
        background 0.5s var(--ease);
}

.horizon-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), rgba(196, 165, 116, 0.05));
    transition: width 1.05s var(--ease-out);
    transition-delay: calc(var(--d, 0s) + 0.28s);
    pointer-events: none;
    z-index: 2;
}

.horizon-card.is-visible::after {
    width: 100%;
}

.horizon-card:hover {
    border-color: rgba(196, 165, 116, 0.42);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(7, 21, 37, 0.06);
}

.horizon-index {
    display: block;
    margin-bottom: 1.2rem;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    transform: translateY(8px);
    opacity: 0.25;
    transition:
        opacity 0.7s var(--ease-out),
        transform 0.7s var(--ease-out),
        letter-spacing 0.5s var(--ease);
    transition-delay: calc(var(--d, 0s) + 0.12s);
}

.horizon-card.is-visible .horizon-index {
    opacity: 1;
    transform: none;
}

.horizon-card:hover .horizon-index {
    letter-spacing: 0.22em;
}

.horizon-card strong {
    display: block;
    margin-bottom: 0.45rem;
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 500;
}

.horizon-card p {
    margin: 0;
    color: var(--muted);
}

.horizon-card .horizon-sheen {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(
        115deg,
        transparent 32%,
        rgba(255, 255, 255, 0.45) 48%,
        transparent 64%
    );
    transform: translateX(-130%);
    opacity: 0;
}

.horizon-card.is-visible .horizon-sheen {
    animation: horizonSheen 1.35s var(--ease-out) both;
    animation-delay: calc(var(--d, 0s) + 0.45s);
}

.horizon-card .horizon-index,
.horizon-card strong,
.horizon-card p {
    position: relative;
    z-index: 2;
}

.ritual-steps {
    display: grid;
    gap: 0.55rem;
    margin: 0 0 1.2rem;
}

.ritual-step {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ritual-step span {
    color: var(--gold);
}

.ritual-step.is-active {
    color: rgba(255, 255, 255, 0.9);
}

.ritual-steps-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    margin: 0 0 1rem;
}

.ritual-steps-row .ritual-step {
    flex: 0 0 auto;
    gap: 0.45rem;
    font-size: 0.74rem;
}

.ritual-steps-row .ritual-step:nth-child(1) {
    justify-content: flex-start;
    text-align: left;
}

.ritual-steps-row .ritual-step:nth-child(2) {
    justify-content: center;
    text-align: center;
}

.ritual-steps-row .ritual-step:nth-child(3) {
    justify-content: flex-end;
    text-align: right;
}

.page-contact .ritual-steps-row .ritual-step {
    color: rgba(4, 13, 24, 0.4);
}

.page-contact .ritual-steps-row .ritual-step.is-active {
    color: var(--ink);
}

.page-contact .ritual-steps-row .ritual-step span {
    color: var(--gold);
}

.wizard-progress {
    height: 2px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.wizard-progress-bar {
    display: block;
    width: 33%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--crimson));
    transition: width 0.35s var(--ease);
}

.wizard-pane {
    display: none;
    gap: 0.95rem;
}

.wizard-pane.is-active {
    display: grid;
}

.wizard-kicker {
    margin: 0;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.wizard-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}

.wizard-summary {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
}

.parallax-layer {
    will-change: transform;
}

.grain-burst {
    position: fixed;
    inset: 0;
    z-index: 145;
    pointer-events: none;
    opacity: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    transition: opacity 0.35s ease;
}

.grain-burst.is-on {
    opacity: 0.08;
}

.tilt {
    transform-style: preserve-3d;
    transition: transform 0.35s var(--ease);
}

.spotlight {
    position: relative;
    overflow: hidden;
}

.spotlight::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(420px 220px at var(--sx, 50%) var(--sy, 50%), rgba(196, 165, 116, 0.16), transparent 55%);
    opacity: 0;
    transition: opacity 0.35s var(--ease);
    pointer-events: none;
    z-index: 0;
}

.spotlight:hover::before {
    opacity: 1;
}

.spotlight > * {
    position: relative;
    z-index: 1;
}

.magnetic {
    will-change: transform;
}

.form-success {
    display: none;
    gap: 0.8rem;
    padding: 1.2rem;
    border: 1px solid rgba(196, 165, 116, 0.35);
    background: rgba(255, 255, 255, 0.04);
}

.form-success.is-visible {
    display: grid;
}

.form-success strong {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
}

.form-success p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.page-contact .form-success {
    background: rgba(4, 13, 24, 0.03);
    border-color: var(--line);
}

.page-contact .form-success strong {
    color: var(--ink);
}

.page-contact .form-success p {
    color: var(--muted);
}

.js-consult-form.is-sent .field,
.js-consult-form.is-sent .btn,
.js-consult-form.is-sent .field-consent,
.js-consult-form.is-sent .form-note,
.js-consult-form.is-sent .form-consent-note,
.js-consult-form.is-sent .form-status,
.js-consult-form.is-sent .wizard-pane,
.js-consult-form.is-sent .wizard-progress {
    display: none;
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
    transition-delay: var(--d, 0s);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal-left.is-visible {
    opacity: 1;
    transform: none;
}

.hero-brand,
.hero h1,
.hero-lead,
.hero-actions,
.hero-scroll,
.page-hero-meta {
    opacity: 0;
    transform: translateY(24px);
    animation: rise 1.1s var(--ease-out) forwards;
}

.hero h1 { animation-delay: 0.15s; }
.hero-lead { animation-delay: 0.3s; }
.hero-actions,
.page-hero-meta { animation-delay: 0.45s; }
.hero-scroll { animation-delay: 0.7s; }

@keyframes rise {
    to { opacity: 1; transform: none; }
}

@keyframes horizonSheen {
    0% {
        opacity: 0;
        transform: translateX(-130%);
    }
    18% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(130%);
    }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.08); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.35; transform: scaleX(0.7); }
    50% { opacity: 1; transform: scaleX(1); }
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
    .header-rail {
        grid-template-columns: 1fr auto;
    }

    .header-chapter {
        display: none;
    }

    .header-right {
        gap: 0.7rem;
    }

    .site-menu-shell {
        grid-template-columns: 1fr;
        align-content: start;
        padding-top: 6.5rem;
    }

    .menu-preview-frame {
        min-height: 14rem;
    }

    .menu-meta {
        flex-direction: column;
        align-items: start;
    }

    .menu-meta-cta {
        width: 100%;
    }

    .site-menu-stamp {
        display: none;
    }

    .horizon-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .chapter-rail,
    .chapter-rail.has-items,
    .time-chip,
    .visit-chip,
    .to-top,
    .float-dock,
    .link-preview {
        display: none !important;
    }

    .chapter-journey.has-items {
        display: block;
    }

    .site-header:has(.chapter-journey.has-items) {
        padding-bottom: 0.55rem;
    }

    body:has(.chapter-journey.has-items) .hero-inner,
    body:has(.chapter-journey.has-items) .hero-page .hero-inner {
        padding-top: 8.4rem;
    }

    body:has(.chapter-journey.has-items) .site-menu-shell {
        padding-top: 8rem;
    }

    .section[id],
    .hero[id],
    .manifesto-horizon[id] {
        scroll-margin-top: 7.4rem;
    }

    .manifesto-grid,
    .approach-body,
    .cta-panel,
    .contact-grid,
    .contact-body,
    .editorial-grid,
    .ritual-grid,
    .life-list,
    .feature-grid,
    .package-grid,
    .steps-grid,
    .footer-grid,
    .horizon-track,
    .teacher-grid,
    .directions-grid {
        grid-template-columns: 1fr;
    }

    .life-item,
    .feature-card,
    .teacher-card,
    .direction-item {
        min-height: 0;
    }

    .approach-points {
        min-height: 0;
        grid-template-rows: none;
        height: auto;
    }

    .approach-points li {
        padding: 1.2rem 0;
        justify-content: flex-start;
    }

    .formats-included-head,
    .formats-included-body {
        width: min(1180px, calc(100% - 1.5rem));
    }

    .formats-included-body {
        grid-template-columns: 1fr;
    }

    .formats-included-points {
        min-height: 0;
        height: auto;
        grid-template-rows: none;
    }

    .formats-included-points li {
        justify-content: flex-start;
        padding: 1.2rem 0;
    }

    .formats-included-visual {
        min-height: 0;
        height: auto;
        aspect-ratio: 4 / 3;
        order: -1;
    }

    .approach-visual,
    .ritual-visual {
        min-height: 0;
        height: auto;
        aspect-ratio: 4 / 3;
        order: -1;
    }

    .hero-scroll {
        display: none;
    }

    .page-contact .hero,
    .contact-page .hero {
        min-height: 0;
    }

    .contact-body {
        gap: 1.5rem;
    }

    .contact-aside {
        order: 2;
        height: auto;
        grid-auto-rows: auto;
        align-content: start;
        gap: 0.85rem;
    }

    .contact-aside-card {
        justify-content: flex-start;
        padding: 1.15rem 1.1rem;
    }

    .contact-aside-card strong {
        font-size: 1.2rem;
    }

    .contact-aside-card a {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .page-contact .contact-form {
        order: 1;
        height: auto;
    }

    .ritual-steps-row {
        gap: 0.35rem;
    }

    .ritual-steps-row .ritual-step {
        flex-direction: column;
        align-items: inherit;
        gap: 0.2rem;
        font-size: 0.68rem;
        letter-spacing: 0.06em;
        line-height: 1.25;
    }

    .ritual-steps-row .ritual-step:nth-child(1) {
        align-items: flex-start;
    }

    .ritual-steps-row .ritual-step:nth-child(2) {
        align-items: center;
    }

    .ritual-steps-row .ritual-step:nth-child(3) {
        align-items: flex-end;
    }

    .wizard-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    :root {
        --section-y: clamp(3rem, 9vw, 4rem);
    }

    .wrap {
        width: min(1180px, calc(100% - 1.5rem));
    }

    .brand {
        font-size: 1.05rem;
        letter-spacing: 0.08em;
    }

    .menu-trigger-label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .header-right {
        gap: 0.45rem;
    }

    .lang-switch {
        gap: 0.2rem;
    }

    .site-header {
        padding-top: max(0.85rem, env(safe-area-inset-top));
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }

    .menu-trigger {
        min-width: 2.75rem;
        min-height: 2.75rem;
        justify-content: center;
        gap: 0;
    }

    .format-bridge-inner {
        gap: 0.55rem;
    }

    .format-bridge-label {
        white-space: normal;
        text-align: center;
        max-width: 11rem;
        line-height: 1.35;
    }

    .hero-inner {
        padding-top: 6.5rem;
        padding-bottom: 3rem;
    }

    body:has(.chapter-journey.has-items) .hero-inner,
    body:has(.chapter-journey.has-items) .hero-page .hero-inner {
        padding-top: 8.6rem;
    }

    body:has(.chapter-journey.has-items) .section[id],
    body:has(.chapter-journey.has-items) .hero[id],
    body:has(.chapter-journey.has-items) .manifesto-horizon[id] {
        scroll-margin-top: 7.8rem;
    }

    .hero-home .hero-brand {
        font-size: clamp(2.35rem, 12vw, 3.4rem);
        max-width: 100%;
    }

    .hero-home h1,
    .section-title,
    .section-head h2,
    .approach-head h2,
    .manifesto-quote {
        font-size: clamp(1.85rem, 9vw, 2.55rem);
        max-width: 100%;
    }

    .hero-home .hero-lead,
    .hero-home .hero-actions {
        max-width: 100%;
    }

    .hero-actions {
        display: grid;
        gap: 0.75rem;
    }

    .btn,
    .hero-actions .btn,
    .cta-form .btn,
    .contact-form .btn {
        width: 100%;
    }

    .horizon-card {
        padding: 1.25rem 1.1rem;
    }

    .horizon-card strong,
    .approach-points strong {
        font-size: 1.3rem;
    }

    .approach-visual {
        aspect-ratio: 16 / 10;
    }

    .package {
        padding: 1.45rem 1.25rem 1.35rem;
    }

    .package-name {
        font-size: 1.55rem;
    }

    .package:hover,
    .package.is-selected {
        transform: none;
    }

    .cta-form,
    .contact-form {
        padding: 1.15rem 1rem;
    }

    .page-contact .hero-page h1 {
        font-size: clamp(1.85rem, 8.5vw, 2.6rem);
    }

    .page-contact .hero-page .hero-lead {
        font-size: 0.98rem;
        margin-bottom: 0;
    }

    .page-contact .hero-inner {
        padding-bottom: 3.2rem;
    }

    .contact-head {
        margin-bottom: 1.35rem;
    }

    .contact-head .section-title {
        font-size: clamp(1.85rem, 8vw, 2.5rem);
    }

    .contact-aside-card strong {
        font-size: 1.15rem;
    }

    .ritual-steps-row .ritual-step {
        font-size: 0.62rem;
        max-width: 32%;
    }

    .wizard-summary {
        font-size: 0.9rem;
        padding: 0.9rem;
    }

    .wizard-actions .btn,
    .contact-form .wizard-back {
        width: 100%;
    }

    .editorial-panel {
        padding: 1.35rem 1.2rem;
    }

    .editorial-panel h3 {
        font-size: 1.55rem;
    }

    .footer-links a {
        overflow-wrap: anywhere;
    }

    .footer-hotkeys {
        width: 100%;
    }

    .footer-hotkeys-trigger {
        min-height: 2.75rem;
        padding: 0.55rem 0;
        display: inline-flex;
        align-items: center;
    }

    .footer-hotkeys-panel {
        left: 0;
        right: 0;
        width: auto;
    }

    .footer-hotkeys-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
    }

    .life-item,
    .feature-card,
    .teacher-card {
        min-height: 0;
        padding: 1.25rem 1.1rem;
    }

    .teacher-play {
        width: 2.6rem;
        height: 2.6rem;
    }

    .hero-brand,
    .hero h1,
    .hero-page h1,
    .manifesto-quote,
    .section-title,
    .section-head h2,
    .approach-head h2,
    .horizon-card strong,
    .approach-points strong,
    .life-item h3,
    .feature-card h3,
    .package-name,
    .editorial-panel h3,
    .step-card strong,
    .welcome-title,
    .menu-item-title,
    .footer-brand {
        font-weight: 700;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .reveal,
    .reveal-left,
    .hero-brand,
    .hero h1,
    .hero-lead,
    .hero-actions,
    .hero-scroll,
    .page-hero-meta,
    .hero-media,
    .hero-media-pan,
    .hero-glow,
    .hero-scroll-line,
    .marquee-track,
    .horizon-card,
    .horizon-card::after,
    .horizon-index,
    .horizon-sheen {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
        filter: none;
        width: auto;
    }

    .horizon-card::after {
        width: 100%;
    }

    .preloader,
    .page-veil,
    .ambient,
    .chapter-rail,
    .time-chip,
    .visit-chip,
    .to-top,
    .float-dock,
    .grain-burst,
    .fx-canvas,
    .link-preview {
        display: none !important;
    }

    body.is-loading {
        overflow: auto;
    }

    body.has-cursor,
    body.has-cursor a,
    body.has-cursor button {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}

@media (hover: none), (pointer: coarse) {
    body.has-cursor,
    body.has-cursor a,
    body.has-cursor button {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    .footer-hotkeys:hover .footer-hotkeys-panel,
    .footer-hotkeys:focus-within .footer-hotkeys-panel {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(6px);
    }

    .footer-hotkeys.is-open .footer-hotkeys-panel {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .package:hover {
        transform: none;
        box-shadow: none;
    }

    .horizon-card:hover,
    .signature-card:hover,
    .life-item:hover,
    .feature-card:hover,
    .teacher-card:hover {
        transform: none;
    }
}
