@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Barlow+Condensed:wght@300;400;600;700;900&family=IBM+Plex+Mono:wght@300;400;700&display=swap');

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

:root {
    --black: #080808;
    --white: #f0ece5;
    --paper: #e8e4dd;
    --ink: #f0ece5;
    --red: #c0392b;
    --amber: #d4a853;
    --border-dark: 1px solid rgba(240,236,229,0.12);
    --border-light: 1px solid rgba(240,236,229,0.08);
    --font-display: 'DM Serif Display', serif;
    --font-condensed: 'Barlow Condensed', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --nav-h: 56px;
    --side-w: 52px;
    --bottom-h: 92px;
}

html { scroll-behavior: smooth; }
body {
    background: var(--black);
    color: var(--ink);
    font-family: var(--font-condensed);
    overflow-x: hidden;
    cursor: crosshair;
}
a, button { cursor: crosshair; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(240,236,229,0.2); }

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

.ticker {
    background: #1a1a1a;
    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.15);
}
.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: #1a1a1a;
    border-bottom: var(--border-light);
    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-light);
    flex-shrink: 0;
}
.nav-logo-link {
    display: flex; align-items: center;
    text-decoration: none;
}
.nav-logo-img {
    height: 50px;
    width: auto;
    display: block;
    filter: none;
}

.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-light);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(240,236,229,0.4);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}
.nav-center-item:hover { color: var(--ink); background: #4646468a; }

.nav-right {
    height: 100%;
    display: flex; align-items: center;
    padding: 0;
    border-left: var(--border-light);
    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: rgba(240,236,229,0.3);
}

.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-light);
    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(--black);
    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) {
    .nav-center { display: none; }
    .nav-hamburger { display: flex; }
    .nav-counter { padding: 0 16px; }
}

.hero-banner {
    width: 100%;
    height: 100svh; min-height: 550px;
    margin-top: calc(32px + var(--nav-h));
    background: url('/assets/images/banners/monumentos/banner_desktop.jpg') center / cover no-repeat;
    position: relative;
    display: flex; align-items: flex-end;
    overflow: hidden;
}

.banner-noise {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 200px;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: overlay;
    opacity: 0.5;
}

.hero-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
        to top,
        rgba(8,8,8,0.97) 0%,
        rgba(8,8,8,0.65) 35%,
        rgba(8,8,8,0.2) 70%,
        rgba(8,8,8,0.5) 100%
    );
    z-index: 1;
}
.hero-banner::after {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
        0deg, transparent, transparent 3px,
        rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px
    );
    z-index: 1; pointer-events: none;
}

@media (max-width: 1470px) { .hero-banner { background-image: url('/assets/images/banners/monumentos/Banner_tablet.jpg'); } }
@media (max-width: 1260px) { .hero-banner { background-image: url('/assets/images/banners/monumentos/banner_tablet_1260px.jpg'); background-position: center top; } }
@media (max-width: 675px)  { .hero-banner { background-image: url('/assets/images/banners/monumentos/Banner_mobile_675px.jpg'); background-position: center top; } }
@media (max-width: 380px)  { .hero-banner { background-image: url('/assets/images/banners/monumentos/banner_mobile_380px.jpg'); background-position: center top; } }

.banner-overlay {
    position: relative; z-index: 2;
    width: 100%;
    padding: 60px 56px;
    display: flex; flex-direction: column; gap: 32px;
}
.banner-meta-top {
    display: flex; justify-content: space-between; align-items: center;
}
.banner-meta-top span { color: rgba(240,236,229,0.35); }
.banner-date { color: var(--amber) !important; }

.banner-title-block h1 {
    font-family: var(--font-display);
    font-size: clamp(56px, 9vw, 130px);
    font-weight: 400;
    line-height: 0.88;
    color: var(--white);
    letter-spacing: -0.02em;
}
.banner-title-block h1 em {
    font-style: italic;
    color: rgba(240,236,229,0.35);
}

.banner-meta-bottom {
    display: flex; align-items: flex-end; justify-content: space-between;
    padding-top: 20px;
    border-top: var(--border-dark);
}
.banner-stat { display: flex; flex-direction: column; gap: 4px; }
.banner-stat-num {
    font-family: var(--font-condensed);
    font-size: 48px; font-weight: 600;
    line-height: 1; letter-spacing: -0.03em;
    color: rgba(240,236,229,0.08);
}
.banner-stat-label { color: rgba(240,236,229,0.3); }
.banner-scroll-hint { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.banner-scroll-hint span { color: rgba(240,236,229,0.25); }
.banner-scroll-arrow {
    font-size: 20px; color: rgba(240,236,229,0.3);
    animation: bounceDown 2s ease-in-out infinite;
}
@keyframes bounceDown {
    0%,100%{transform:translateY(0); opacity:0.3}
    50%{transform:translateY(6px); opacity:0.7}
}

.side-pagination {
    position: fixed;
    left: 0; top: 50%;
    transform: translateY(-50%);
    display: flex; flex-direction: column;
    z-index: 900;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.side-pagination:not(.visible) {
    opacity: 0;
    transform: translateY(-50%) translateX(-12px);
    pointer-events: none;
}
.side-pagination.visible {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    pointer-events: all;
}

.nav-item {
    width: var(--side-w); height: 40px;
    background: rgba(8,8,8,0.95);
    border: var(--border-dark);
    border-left: none;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono); font-weight: 700; font-size: 10px;
    cursor: crosshair;
    color: rgba(240,236,229,0.4);
    transition: background 0.15s, color 0.15s;
    user-select: none;
    margin-bottom: -1px;
}
.nav-item:hover { background: rgba(240,236,229,0.05); color: var(--white); }
.nav-item.active {
    background: rgba(240,236,229,0.1);
    color: var(--white);
    border-left: 2px solid rgba(240,236,229,0.5);
}

.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    height: var(--bottom-h);
    background: rgba(8,8,8,0.98);
    border-top: var(--border-dark);
    z-index: 900;
    flex-direction: column;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.bottom-nav.visible { opacity: 1; pointer-events: all; }

.bottom-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 36px;
    border-bottom: var(--border-dark);
    flex-shrink: 0;
    gap: 12px;
}
.bottom-nav-tag {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(240,236,229,0.2);
    flex-shrink: 0;
    white-space: nowrap;
}
.bottom-nav-current-name {
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(240,236,229,0.75);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    text-align: right;
    transition: opacity 0.25s ease;
}
.bottom-nav-counter-tag {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.12em;
    color: var(--amber);
    flex-shrink: 0;
    white-space: nowrap;
}

.bottom-nav-inner {
    display: flex;
    align-items: center;
    height: calc(var(--bottom-h) - 36px);
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
    min-width: 100%;
}
.bottom-nav-inner::-webkit-scrollbar { display: none; }

.bottom-nav-item {
    flex: 1;
    min-width: 44px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 10px;
    border-right: var(--border-dark);
    cursor: crosshair;
    transition: background 0.15s, color 0.15s;
    background: rgba(20,20,20,0.95);
    color: rgba(240,236,229,0.4);
    user-select: none;
    white-space: nowrap;
    position: relative;
}
.bottom-nav-item:first-child { border-left: var(--border-dark); }
.bottom-nav-item:hover {
    background: rgba(240,236,229,0.08);
    color: rgba(240,236,229,0.75);
}
.bottom-nav-item.active {
    background: rgba(240,236,229,0.12);
    color: var(--white);
}
.bottom-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--amber);
}

.canvas-container {
    display: flex; justify-content: center;
    padding: 60px var(--side-w) 60px calc(var(--side-w) + 16px);
    background: #0d0d0d;
    min-height: 100vh;
}

.figma-frame {
    width: 100%; max-width: 1540px;
    min-height: 680px;
    border: var(--border-dark);
    display: flex;
    background: #0f0f0f;
    position: relative;
}

.frame-left {
    width: 48%;
    border-right: var(--border-dark);
    display: flex; flex-direction: column;
    position: relative;
}

.panel-header {
    display: flex; align-items: stretch;
    border-bottom: var(--border-dark);
    height: 52px;
}
.panel-header-cell {
    display: flex; flex-direction: column;
    justify-content: center;
    padding: 0 24px;
    gap: 2px;
    flex: 1;
}
.panel-header-cell--right {
    flex: 0 0 auto;
    border-left: var(--border-dark);
    min-width: 100px;
    align-items: flex-end;
}
.cell-label { color: rgba(240,236,229,0.25); font-size: 9px; }
.cell-value {
    font-family: var(--font-condensed);
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--white);
}
.panel-header-divider { width: 0; }

.svg-container {
    flex: 1;
    display: flex; align-items: center; justify-content: center;
    padding: 32px;
    position: relative;
    min-height: 220px;
    border-bottom: var(--border-dark);
    background: #080808;
}
.svg-frame-corners { position: absolute; inset: 10px; pointer-events: none; }
.corner {
    position: absolute;
    width: 14px; height: 14px;
    border-color: rgba(240,236,229,0.15);
    border-style: solid;
}
.corner.tl { top:0; left:0; border-width: 1px 0 0 1px; }
.corner.tr { top:0; right:0; border-width: 1px 1px 0 0; }
.corner.bl { bottom:0; left:0; border-width: 0 0 1px 1px; }
.corner.br { bottom:0; right:0; border-width: 0 1px 1px 0; }

.tech-svg {
    width: 100%; max-width: 380px; height: auto;
    overflow: visible;
    filter: invert(1) opacity(0.7);
}
.svg-label-tl {
    position: absolute; top: 12px; left: 16px;
    font-size: 9px; color: rgba(240,236,229,0.2);
    letter-spacing: 0.14em;
}
.svg-label-br {
    position: absolute; bottom: 12px; right: 16px;
    font-size: 9px; color: rgba(240,236,229,0.2);
    letter-spacing: 0.14em;
}

.info-block { flex-shrink: 0; }
.info-title-row {
    padding: 20px 28px;
    border-bottom: var(--border-dark);
    background: rgba(255,255,255,0.02);
}
.monument-title {
    font-family: var(--font-display);
    font-size: clamp(15px, 1.8vw, 24px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -0.01em;
}

.info-desc-row {
    padding: 20px 28px;
    display: flex; flex-direction: column; gap: 14px;
}
.info-desc-label {
    display: flex; align-items: center; gap: 12px;
}
.info-desc-label span { color: rgba(240,236,229,0.3); flex-shrink: 0; }
.info-desc-line { flex: 1; height: 1px; background: rgba(240,236,229,0.08); }

.info-desc-box {
    border: var(--border-dark);
    border-left: 2px solid rgba(240,236,229,0.2);
    padding: 16px 20px;
    background: rgba(255,255,255,0.015);
}
.mono-desc {
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.8;
    color: rgba(240,236,229,0.55);
    font-weight: 300;
}

.info-location {
    display: flex; align-items: center; gap: 10px;
    padding-top: 4px;
}
.location-prefix { color: rgba(240,236,229,0.2); flex-shrink: 0; }
.mono-loc {
    font-family: var(--font-mono);
    font-size: 10px; letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
}

.node { width: 6px; height: 6px; border: 1px solid rgba(240,236,229,0.2); position: absolute; }
.node.tl { top: -3px; left: -3px; }
.node.bl { bottom: -3px; left: -3px; }
.node.tr { top: -3px; right: -3px; }
.node.br { bottom: -3px; right: -3px; }

.frame-right {
    width: 52%; display: flex; flex-direction: column;
    padding: 20px; position: relative;
    background: #080808;
}

.image-shell {
    flex: 1;
    position: relative;
    overflow: hidden;
    border: var(--border-dark);
}

.image-bg {
    width: 100%; height: 100%;
    min-height: 440px;
    background-size: cover; background-position: center;
    filter: grayscale(1) contrast(1.2) brightness(0.75);
    transition: filter 0.5s ease, transform 0.8s ease;
}
.image-shell:hover .image-bg {
    filter: grayscale(1) contrast(1.1) brightness(0.85);
}

.image-vignette {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(8,8,8,0.6) 100%);
    pointer-events: none;
}

.image-top-bar {
    position: absolute; top: 0; left: 0; right: 0;
    padding: 12px 16px;
    display: flex; justify-content: space-between;
    background: linear-gradient(to bottom, rgba(8,8,8,0.8), transparent);
}
.img-id { color: rgba(240,236,229,0.25); font-size: 9px; }
.img-counter { color: rgba(240,236,229,0.5); font-size: 10px; }

.image-bottom-bar {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 12px 16px;
    display: flex; justify-content: space-between; align-items: center;
    background: linear-gradient(to top, rgba(8,8,8,0.85), transparent);
}
.image-bottom-bar span { color: rgba(240,236,229,0.2); font-size: 9px; }
.image-dots { display: flex; gap: 5px; }
.image-dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: rgba(240,236,229,0.2);
    transition: background 0.3s, transform 0.3s;
}
.image-dot.active { background: rgba(240,236,229,0.6); transform: scale(1.5); }

@keyframes svg-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes svg-zoom-in {
    from { opacity: 0; transform: scale(0.75); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes svg-rotate-in {
    from { opacity: 0; transform: rotate(-10deg) scale(0.88); }
    to   { opacity: 1; transform: rotate(0deg) scale(1); }
}
@keyframes svg-slide-right {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes svg-flip-x {
    from { opacity: 0; transform: rotateX(60deg) scaleY(0.7); }
    to   { opacity: 1; transform: rotateX(0deg) scaleY(1); }
}
.tech-svg.anim-fade-up     { animation: svg-fade-up     0.5s cubic-bezier(0.22, 1, 0.36, 1) both; }
.tech-svg.anim-zoom-in     { animation: svg-zoom-in     0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.tech-svg.anim-rotate-in   { animation: svg-rotate-in   0.5s cubic-bezier(0.22, 1, 0.36, 1) both; }
.tech-svg.anim-slide-right { animation: svg-slide-right 0.45s cubic-bezier(0.22, 1, 0.36, 1) both; }
.tech-svg.anim-flip-x      { animation: svg-flip-x      0.5s cubic-bezier(0.22, 1, 0.36, 1) both; perspective: 600px; }

.site-footer {
    background: var(--black);
    border-top: var(--border-dark);
    color: var(--white);
    padding: 0;
}
.footer-inner {
    display: grid; grid-template-columns: 240px 1fr 1fr;
    border-bottom: var(--border-dark);
}
.footer-col {
    padding: 44px 36px;
    border-right: var(--border-dark);
    display: flex; flex-direction: column; gap: 10px;
}
.footer-col:last-child { border-right: none; }
.footer-label { color: rgba(240,236,229,0.25); font-size: 9px; margin-bottom: 4px; }
.footer-title {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 400;
    line-height: 1.1; letter-spacing: -0.01em;
    font-style: italic;
}
.footer-sub { color: rgba(240,236,229,0.3); font-size: 9px; margin-top: 4px; }
.footer-body {
    font-family: var(--font-mono);
    font-size: 11px; line-height: 1.8;
    color: rgba(240,236,229,0.4);
}
.footer-link {
    font-family: var(--font-mono);
    font-size: 10px; letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(240,236,229,0.35);
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 1px solid rgba(240,236,229,0.06);
    transition: color 0.2s;
}
.footer-link:last-child { border-bottom: none; }
.footer-link:hover { color: var(--white); }
.footer-bottom {
    padding: 16px 36px;
    display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom span { font-size: 9px; color: rgba(240,236,229,0.18); letter-spacing: 0.12em; }

@media (max-width: 900px) {
    .hero-banner {
        margin-top: var(--nav-h) !important;
    }
    .canvas-container { padding: 32px 12px calc(var(--bottom-h) + 32px); }
    .figma-frame { flex-direction: column; }
    .frame-left { width: 100%; border-right: none; border-bottom: var(--border-dark); }
    .frame-right { width: 100%; background: #0a0a0a; }
    .image-bg { min-height: 320px; }
    .side-pagination { display: none !important; }
    .bottom-nav { display: flex; }
    .nav-center { display: none; }
    .banner-overlay { padding: 36px 24px 48px; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-col { border-right: none; border-bottom: var(--border-dark); padding: 32px 24px; }
    .footer-bottom { flex-direction: column; gap: 6px; padding: 16px 24px; text-align: center; }
    .nav-inner { padding: 0; }
}
@media (max-width: 500px) {
    .nav-logo-text { display: none; }
    .nav-right { padding: 0; gap: 0; }
}