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

:root {
    --black: #0a0a0a;
    --white: #f5f2ed;
    --paper: #ede9e2;
    --ink: #1a1a1a;
    --red: #c0392b;
    --grey-light: #e8e4dd;
    --grey-mid: #b0aa9f;
    --grey-dark: #5a5550;
    --border: 1px solid #1a1a1a;
    --border-thin: 1px solid rgba(26,26,26,0.2);
    --font-display: 'DM Serif Display', serif;
    --font-condensed: 'Barlow Condensed', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --nav-h: 56px;
}

html { scroll-behavior: smooth; }

body {
    background: var(--white);
    color: var(--ink);
    font-family: var(--font-condensed);
    overflow-x: hidden;
    cursor: crosshair;
}

a { cursor: crosshair; }
button { cursor: crosshair; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--ink); }

.mono { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; }
.condensed { font-family: var(--font-condensed); }

.ticker {
    background: var(--ink);
    color: var(--white);
    height: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 2000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ticker-inner {
    display: flex;
    gap: 0;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}
.ticker-item {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0 40px;
    color: rgba(255,255,255,0.6);
    border-right: 1px solid rgba(255,255,255,0.15);
    line-height: 32px;
}
.ticker-item span { color: var(--white); }
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.navbar {
    position: fixed; top: 32px; left: 0; width: 100%;
    height: var(--nav-h);
    background: var(--white);
    border-bottom: var(--border);
    z-index: 1000;
    transition: transform 0.4s ease;
}
.navbar.hidden { transform: translateY(calc(-100% - 32px)); }

.nav-inner {
    height: 100%; display: flex; align-items: center;
    justify-content: space-between;
}

.nav-logo-block {
    height: 100%;
    display: flex; align-items: center;
    padding: 0 28px;
    border-right: var(--border);
    flex-shrink: 0;
}
.nav-logo-link {
    display: flex; align-items: center;
    text-decoration: none;
}
.nav-logo-img {
    height: 50px;
    width: auto;
    display: block;
    filter: invert(1);
}

.nav-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    height: 100%;
}
.nav-center-item {
    height: 100%;
    display: flex; align-items: center;
    padding: 0 24px;
    border-right: var(--border-thin);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-dark);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}
.nav-center-item:hover { color: var(--ink); background: var(--grey-light); }

.nav-right {
    height: 100%;
    display: flex; align-items: center;
    padding: 0;
    border-left: var(--border);
    gap: 0;
}

.nav-counter {
    display: flex; flex-direction: column; align-items: flex-end;
    padding: 0 24px;
    gap: 2px;
}
.nav-counter-num {
    font-family: var(--font-condensed);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.nav-counter-label {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-dark);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 56px;
    height: 100%;
    border: none;
    border-left: var(--border);
    background: transparent;
    padding: 0;
    cursor: crosshair;
    flex-shrink: 0;
}
.hamburger-line {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}
.nav-hamburger.open .hamburger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 2100;
    background: var(--ink);
    display: flex; flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    pointer-events: none;
}
.mobile-menu.open {
    transform: translateX(0);
    pointer-events: all;
}

.mobile-menu-inner {
    display: flex; flex-direction: column;
    height: 100%;
    padding: 0;
}

.mobile-menu-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 28px;
    height: calc(32px + var(--nav-h));
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}
.mobile-menu-logo {
    height: 40px;
    width: auto;
    filter: invert(1);
}
.mobile-menu-close {
    background: none; border: none;
    font-family: var(--font-mono);
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    cursor: crosshair;
    transition: color 0.2s;
    padding: 8px;
}
.mobile-menu-close:hover { color: var(--white); }

.mobile-nav {
    flex: 1;
    display: flex; flex-direction: column;
    overflow-y: auto;
}
.mobile-nav-item {
    display: flex; align-items: center;
    gap: 20px;
    padding: 0 28px;
    height: 80px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    color: var(--white);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(30px);
    transition: background 0.2s, opacity 0.4s ease, transform 0.4s ease;
}
.mobile-menu.open .mobile-nav-item:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.15s; }
.mobile-menu.open .mobile-nav-item:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.22s; }
.mobile-menu.open .mobile-nav-item:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.29s; }
.mobile-menu.open .mobile-nav-item:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.36s; }
.mobile-nav-item:hover { background: rgba(255,255,255,0.05); }

.mobile-nav-num {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.3);
    flex-shrink: 0;
    width: 20px;
}
.mobile-nav-text {
    font-family: var(--font-condensed);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    flex: 1;
    line-height: 1;
}
.mobile-nav-arrow {
    font-size: 18px;
    color: rgba(255,255,255,0.25);
    transition: color 0.2s, transform 0.2s;
}
.mobile-nav-item:hover .mobile-nav-arrow { color: var(--white); transform: rotate(45deg); }

.mobile-menu-footer {
    padding: 24px 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; justify-content: space-between; align-items: center;
    flex-shrink: 0;
}
.mobile-menu-footer-text {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
}

@media (max-width: 960px) {
    .ticker { display: none; }
    .navbar { top: 0 !important; }
    .navbar.hidden { transform: translateY(-100%); }
    .hero {
        margin-top: var(--nav-h) !important;
        min-height: calc(100svh - var(--nav-h));
    }
    .hero-content { padding: 0 28px 48px; }
    .nav-center { display: none; }
    .nav-hamburger { display: flex; }
    .nav-counter { padding: 0 16px; }
    .mobile-menu-header { height: var(--nav-h); }
}

.hero {
    width: 100%;
    height: 100svh;
    min-height: 700px;
    margin-top: calc(32px + var(--nav-h));
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-rows: 1fr auto;
    background: var(--ink);
}

.hero-img-container {
    position: absolute; inset: 0;
}
.hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: grayscale(1) contrast(1.15) brightness(0.55);
    display: block;
}

.hero-scanlines {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.08) 2px,
        rgba(0,0,0,0.08) 4px
    );
    z-index: 1;
    pointer-events: none;
}

.hero-grid-overlay {
    position: absolute; inset: 0;
    z-index: 1;
    pointer-events: none;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}
.hero-grid-col {
    border-right: 1px solid rgba(255,255,255,0.04);
}

.hero-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 0 60px 64px;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.4) 50%, transparent 100%);
    height: 100%;
}

.hero-tag {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 32px;
}
.hero-tag-line { height: 1px; width: 48px; background: rgba(255,255,255,0.3); }
.hero-tag-text { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.hero-tag-year { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--red); margin-left: auto; }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(72px, 11vw, 160px);
    font-weight: 400;
    line-height: 0.88;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}
.hero-title em {
    font-style: italic;
    color: rgba(255,255,255,0.4);
}

.hero-bottom-bar {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-desc {
    max-width: 480px;
}
.hero-desc p {
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.9;
    color: rgba(255,255,255,0.4);
}

.hero-meta {
    display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.hero-scroll-label {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}
.hero-scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
    0%,100% { opacity:0.4; transform: scaleY(1); }
    50% { opacity:1; transform: scaleY(1.2); }
}

.section-header {
    display: flex; align-items: stretch;
    border-bottom: var(--border);
    height: 52px;
}
.section-header-num {
    display: flex; align-items: center;
    padding: 0 20px;
    border-right: var(--border);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--grey-dark);
    background: var(--grey-light);
    min-width: 64px;
}
.section-header-title {
    display: flex; align-items: center;
    padding: 0 28px;
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    flex: 1;
}
.section-header-meta {
    display: flex; align-items: center;
    padding: 0 20px;
    border-left: var(--border);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    color: var(--grey-dark);
}

.definition {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: var(--border);
}

.definition-left {
    padding: 72px 60px;
    border-right: var(--border);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.def-heading-wrap { position: relative; }

.def-heading {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 68px);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -0.01em;
}
.def-heading em {
    font-style: italic;
    color: var(--grey-dark);
}

.def-body {
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.9;
    color: var(--grey-dark);
    border-left: 2px solid var(--ink);
    padding-left: 20px;
}

.def-stats {
    display: flex;
    gap: 0;
    border-top: var(--border);
    border-bottom: var(--border);
    margin-top: 8px;
}
.def-stat {
    flex: 1;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.def-stat + .def-stat {
    border-left: var(--border);
    padding-left: 24px;
}
.def-stat-num {
    font-family: var(--font-condensed);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.01em;
}
.def-stat-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-dark);
}

.def-tag-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.def-tag {
    border: var(--border);
    padding: 6px 14px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-dark);
    transition: background 0.2s, color 0.2s;
}
.def-tag:hover { background: var(--ink); color: var(--white); }

.definition-right {
    display: flex; flex-direction: column;
}

.timeline-header {
    padding: 24px 40px;
    border-bottom: var(--border);
    display: flex; align-items: center; justify-content: space-between;
}
.timeline-header-title {
    font-family: var(--font-condensed);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.timeline-header-count {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--grey-dark);
}

.timeline-list { flex: 1; }
.timeline-entry {
    display: grid;
    grid-template-columns: 72px 1fr;
    border-bottom: var(--border);
    transition: background 0.2s;
}
.timeline-entry:hover { background: var(--paper); }
.timeline-entry:last-child { border-bottom: none; }

.timeline-year-col {
    padding: 28px 16px;
    border-right: var(--border);
    display: flex; align-items: flex-start; justify-content: center;
    position: relative;
}
.timeline-year-col::after {
    content: '';
    position: absolute;
    right: -4px; top: 36px;
    width: 7px; height: 7px;
    background: var(--grey-light);
    border: 1px solid var(--ink);
    border-radius: 50%;
    transition: background 0.2s;
}
.timeline-entry:hover .timeline-year-col::after { background: var(--ink); }

.timeline-year {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    color: var(--grey-dark);
}

.timeline-content-col {
    padding: 28px 32px;
}
.timeline-content-col h3 {
    font-family: var(--font-condensed);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.timeline-content-col p {
    font-family: var(--font-mono);
    font-size: 10px;
    line-height: 1.75;
    color: var(--grey-dark);
}

.features-section {
    border-bottom: var(--border);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.feature-card {
    padding: 56px 48px;
    border-right: var(--border);
    display: flex; flex-direction: column; gap: 24px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}
.feature-card:last-child { border-right: none; }
.feature-card:hover { background: var(--grey-light); }

.feature-card:hover .feature-badge {
    background: var(--black);
    color: var(--white);
    transition: background 0.6s, color 0.3s;
}

.feature-icon-container { background: var(--grey-light); }

.feature-icon {
    width: 48px; height: 48px;
    border: var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.01em;
}
.feature-card h3 em { font-style: italic; color: var(--grey-dark); }
.feature-card p {
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.85;
    color: var(--grey-dark);
    flex: 1;
}
.feature-badge {
    display: inline-flex;
    align-self: flex-start;
    border: var(--border);
    padding: 5px 12px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 8px;
}

.archive-section {
    border-bottom: var(--border);
}

.archive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 640px;
}

.archive-card {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    min-height: 640px;
    border-right: var(--border);
}
.archive-card:last-child { border-right: none; }

.card-bg-imgs { position: absolute; inset: 0; }
.card-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: opacity 0.7s ease, transform 1s cubic-bezier(0.25,0.46,0.45,0.94);
    opacity: 0;
}
.card-img.active { opacity: 1; z-index: 1; }

.card-monuments .card-img {
    filter: grayscale(1) contrast(1.2) brightness(0.6);
}
.card-monuments .card-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.3) 60%, transparent 100%),
                linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 50%);
}
.card-monuments { background: var(--ink); }

.card-buildings .card-img {
    filter: grayscale(1) contrast(1.1) brightness(0.75) sepia(0.15);
}
.card-buildings .card-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to bottom, rgba(245,242,237,0.1) 0%, rgba(10,10,10,0.85) 100%);
}
.card-buildings { background: var(--paper); }

.card-content {
    position: absolute; inset: 0;
    z-index: 3;
    display: flex; flex-direction: column;
    justify-content: space-between;
    padding: 36px 44px 52px;
}

.card-top { display: flex; justify-content: space-between; align-items: flex-start; }

.card-badge {
    padding: 6px 14px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.14em;
    font-weight: 700;
    text-transform: uppercase;
}
.card-monuments .card-badge {
    background: var(--white);
    color: var(--ink);
}
.card-buildings .card-badge {
    border: 1px solid rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.7);
}

.card-index {
    font-family: var(--font-mono);
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.03em;
    color: rgba(255,255,255,0.07);
    user-select: none;
}

.card-dots {
    display: flex; gap: 5px; align-items: center;
}
.card-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: rgba(255,255,255,0.25);
    transition: background 0.3s, transform 0.3s;
}
.card-dot.active { background: var(--white); transform: scale(1.4); }

.card-bottom { display: flex; flex-direction: column; gap: 20px; }

.card-collection-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.card-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 400;
    line-height: 0.92;
    color: var(--white);
    letter-spacing: -0.02em;
}
.card-title em { font-style: italic; opacity: 0.6; }

.card-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.card-count {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
}
.card-arrow {
    width: 44px; height: 44px;
    border: 1px solid rgba(255,255,255,0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: background 0.25s, border-color 0.25s, transform 0.35s;
}
.archive-card:hover .card-arrow {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
    transform: rotate(45deg);
}
.archive-card:hover .card-img.active {
    transform: scale(1.05);
}

.manifesto {
    background: var(--ink);
    color: var(--white);
    padding: 96px 60px;
    border-bottom: var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.manifesto-left-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 14px;
}
.manifesto-left-label::before {
    content: '';
    display: block;
    width: 32px; height: 1px;
    background: rgba(255,255,255,0.25);
}

.manifesto-quote {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 48px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--white);
    padding-left: 28px;
    border-left: 2px solid var(--white);
}
.manifesto-quote em {
    font-style: normal;
    color: rgba(255,255,255,0.3);
}

.manifesto-right { display: flex; flex-direction: column; gap: 28px; }
.manifesto-text {
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.9;
    color: rgba(255,255,255,0.5);
}
.manifesto-tags {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.manifesto-tag {
    border: 1px solid rgba(255,255,255,0.15);
    padding: 6px 14px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    transition: border-color 0.2s, color 0.2s;
}
.manifesto-tag:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

.site-footer {
    background: var(--ink);
    color: var(--white);
    border-top: var(--border);
}
.footer-top {
    display: grid;
    grid-template-columns: 280px 1fr 1fr;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col {
    padding: 48px 40px;
    border-right: 1px solid rgba(255,255,255,0.1);
    display: flex; flex-direction: column; gap: 12px;
}
.footer-col:last-child { border-right: none; }
.footer-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 4px;
}
.footer-project-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.footer-project-sub {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    margin-top: 4px;
}
.footer-body {
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
}
.footer-link {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    transition: color 0.2s;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-link:last-child { border-bottom: none; }
.footer-link:hover { color: var(--white); }
.footer-bottom {
    padding: 18px 40px;
    display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom span {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
    .definition { grid-template-columns: 1fr; }
    .definition-left { padding: 48px 28px; border-right: none; border-bottom: var(--border); }
    .definition-right { padding: 0; }

    .features-grid { grid-template-columns: 1fr; }
    .feature-card { border-right: none; border-bottom: var(--border); padding: 40px 28px; }
    .feature-card:last-child { border-bottom: none; }

    .archive-grid { grid-template-columns: 1fr; }
    .archive-card { min-height: 520px; border-right: none; border-bottom: var(--border); }

    .manifesto { grid-template-columns: 1fr; gap: 40px; padding: 60px 28px; }

    .footer-top { grid-template-columns: 1fr; }
    .footer-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 36px 28px; }
    .footer-bottom { flex-direction: column; gap: 8px; padding: 20px 28px; text-align: center; }
}

@media (max-width: 500px) {
    .nav-logo-text { display: none; }
    .hero-title { font-size: 56px; }
    .def-stats { flex-direction: column; gap: 0; }
    .def-stat + .def-stat { border-left: none; border-top: var(--border); padding-left: 0; padding-top: 16px; }
}