/* ═══════════════════════════════════════
   VALENARTH — Woodland Theme
   Dark greens, gold accents, serif+sans mix
   ═══════════════════════════════════════ */

:root {
    --bg-dark: #1a1e16;
    --bg-section: #222820;
    --bg-card: #2a3328;
    --bg-card-hover: #323d2f;
    --border: #3a4a2a;
    --border-light: #4a5a3a;
    --gold: #c9a84c;
    --gold-dim: #a08a3c;
    --gold-glow: rgba(201, 168, 76, 0.3);
    --green: #5a8a3a;
    --green-dim: #3a5a2a;
    --green-glow: rgba(90, 138, 58, 0.3);
    --text: #e8dcc8;
    --text-dim: #a09880;
    --text-muted: #6a6a5a;
    --red: #c0392b;
    --red-glow: rgba(192, 57, 43, 0.3);

    --font-heading: 'Georgia', 'Palatino Linotype', 'Book Antiqua', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    --max-width: 1100px;
    --nav-height: 64px;
}

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

/* ─── Page Transitions ─── */

.page-transition {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    background: var(--bg-dark);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

@keyframes pageIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

html { scroll-behavior: smooth; }

/* ─── Scroll Reveal ─── */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

body {
    background: var(--bg-dark);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    animation: pageIn 0.4s ease both;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--text); }

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

/* ─── Typography ─── */

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    letter-spacing: 0.5px;
}

h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 1.8rem; margin-bottom: 1rem; }

.feature-block-text h2::after,
.story-main h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold-dim);
    margin-top: 8px;
    transition: width 0.3s;
}

.feature-block:hover .feature-block-text h2::after,
.story-columns:hover .story-main h2::after {
    width: 80px;
}
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Navigation ─── */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
    background: transparent;
}

.nav.scrolled {
    background: rgba(26, 30, 22, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 40px;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-dim);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.2s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
}

/* ─── Hero ─── */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('/assets/img/bg_hero.jpg') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .hero { background-attachment: scroll; }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(26,30,22,0.92) 0%, rgba(26,30,22,0.7) 50%, rgba(26,30,22,0.3) 100%),
        linear-gradient(180deg, transparent 60%, var(--bg-dark) 100%);
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    min-width: 0;
}

.hero-logo {
    width: 280px;
    margin-bottom: 16px;
    animation: heroFadeIn 1s ease both;
}

.hero-tagline { animation: heroFadeIn 1s 0.2s ease both; }
.hero-desc { animation: heroFadeIn 1s 0.4s ease both; }
.hero-buttons { animation: heroFadeIn 1s 0.6s ease both; }
.hero-screenshot { animation: heroFadeIn 1.2s 0.5s ease both; }

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-dim);
    margin-bottom: 12px;
    font-style: italic;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-dim);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-browser-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.2rem;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
    animation: heroFadeIn 1s 0.5s ease both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-screenshot {
    flex: 1;
    min-width: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: border-color 0.4s, box-shadow 0.4s;
}

.hero-screenshot:hover {
    border-color: var(--gold-dim);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--gold-glow);
}

.hero-screenshot img {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: var(--bg-card);
}

/* ─── Buttons ─── */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
    box-shadow: 0 0 20px var(--gold-glow);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 0 30px var(--gold-glow), 0 0 60px rgba(201,168,76,0.15);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border-light);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ─── Page Header Banner ─── */

.page-header {
    padding: 140px 0 60px;
    background-image: url('/assets/img/bg_subpage.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    text-align: center;
}

@media (max-width: 768px) {
    .page-header { background-attachment: scroll; }
}

.page-header.bg-about { background-image: url('/assets/img/bg_about.jpg'); }
.page-header.bg-screenshots { background-image: url('/assets/img/bg_screenshots.jpg'); }
.page-header.bg-servers { background-image: url('/assets/img/bg_servers.jpg'); }

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,30,22,0.6) 0%, rgba(26,30,22,0.8) 60%, var(--bg-dark) 100%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    animation: headerFadeIn 0.8s ease both;
}

.page-header p {
    animation: headerFadeIn 0.8s 0.2s ease both;
}

@keyframes headerFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-header p {
    color: var(--text-dim);
    font-size: 1.1rem;
}

/* ─── Section ─── */

.section {
    padding: 80px 0;
}

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

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    margin-bottom: 8px;
}

.section-title p {
    color: var(--text-dim);
    font-size: 1.05rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* ─── Feature Blocks (alternating image + text) ─── */

.feature-block {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
}

.feature-block:last-child {
    border-bottom: none;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.feature-block-img {
    flex: 0 0 320px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: border-color 0.3s, transform 0.3s;
}

.feature-block:hover .feature-block-img {
    border-color: var(--gold-dim);
    transform: scale(1.02);
}

.feature-block-img img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.feature-block-text {
    flex: 1;
    min-width: 0;
}

.feature-block-text h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.feature-block-text p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.8;
}

/* ─── Features Grid (about page) ─── */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
    border-color: var(--green);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.feature-card h3 {
    color: var(--text);
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .feature-block,
    .feature-block.reverse {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .feature-block-img {
        flex: none;
        width: 100%;
        max-width: 300px;
    }
}

/* ─── Story Columns (about page) ─── */

.story-columns {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.story-columns.reverse { flex-direction: row-reverse; }

.story-main {
    flex: 1;
    min-width: 0;
}

.story-main h2 { margin-bottom: 16px; }

.story-main p {
    color: var(--text-dim);
    line-height: 1.9;
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.story-side { flex: 0 0 340px; }

.story-art {
    width: 100%;
    border-radius: 12px;
    border: 2px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* ─── Pillars (3-column feature highlights) ─── */

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pillar { text-align: center; }

.pillar-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--border);
    margin-bottom: 16px;
    transition: border-color 0.3s;
}

.pillar:hover .pillar-img { border-color: var(--gold); box-shadow: 0 0 24px var(--gold-glow); }

.pillar h3 { color: var(--text); font-size: 1.1rem; margin-bottom: 8px; }
.pillar p { color: var(--text-dim); font-size: 14px; line-height: 1.7; }

/* ─── Timeline (roadmap) ─── */

.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-bottom: 32px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: -28px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--bg-dark);
}

.timeline-item.done .timeline-dot { background: var(--green); border-color: var(--green); }
.timeline-item.current .timeline-dot { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 8px var(--gold-glow); animation: pulse-gold 2s ease-in-out infinite; }
.timeline-item.planned .timeline-dot { background: var(--bg-card); border-color: var(--text-muted); }

.timeline-content h3 { font-size: 1rem; color: var(--text); margin-bottom: 4px; }
.timeline-content p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }

.timeline-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    display: block;
}

.timeline-item.done .timeline-label { color: var(--green); }
.timeline-item.current .timeline-label { color: var(--gold); }
.timeline-item.planned .timeline-label { color: var(--text-muted); }

/* ─── Gallery Equal ─── */

.gallery-equal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.gallery-equal.three {
    grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 768px) {
    .gallery-equal,
    .gallery-equal.three {
        grid-template-columns: 1fr;
    }
}

/* ─── Server Cards ─── */

.server-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.server-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.server-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.server-card.online:hover {
    border-color: rgba(46,204,113,0.4);
}

.server-card {
    position: relative;
    overflow: hidden;
}

.server-card.online { border-left: 3px solid #2ecc71; }
.server-card.offline { border-left: 3px solid var(--red); }
.server-card.inactive { border-left: 3px solid var(--text-muted); opacity: 0.6; }

.server-card.dev { background: rgba(120, 100, 220, 0.08); border-color: rgba(120, 100, 220, 0.25); }
.server-card.dev.online { border-left: 3px solid #a08aef; }
.server-card.dev.offline { border-left: 3px solid #7b68c4; }
.server-card.dev:hover { border-color: rgba(120, 100, 220, 0.4); box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 20px rgba(120, 100, 220, 0.1); }
.server-card.dev .status-dot { background: #a08aef !important; box-shadow: 0 0 8px rgba(120, 100, 220, 0.5) !important; }
.server-card.dev .server-card-header h3::after { content: 'DEV'; margin-left: 8px; font-size: 0.6rem; font-weight: 800; letter-spacing: 2px; padding: 2px 8px; border-radius: 100px; background: rgba(120, 100, 220, 0.2); color: #a08aef; vertical-align: middle; }

.server-ribbon {
    position: absolute;
    top: 20px;
    right: -40px;
    transform: rotate(45deg);
    width: 170px;
    text-align: center;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 1;
}

.server-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.server-card-header h3 { color: var(--text); font-size: 1.1rem; margin: 0; }
.server-card-region { font-size: 12px; color: var(--text-muted); }

.server-card-status .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.server-card.online .status-dot { background: #2ecc71; box-shadow: 0 0 8px rgba(46,204,113,0.5); animation: pulse-green 2s ease-in-out infinite; }
.server-card.offline .status-dot { background: var(--red); }

.server-card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.server-stat-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.server-stat-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

/* Signal bars */
.signal-bars {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
}

.signal-bar {
    display: block;
    width: 6px;
    border-radius: 1px;
    background: var(--border);
}

.signal-bar.bar-1 { height: 6px; }
.signal-bar.bar-2 { height: 12px; }
.signal-bar.bar-3 { height: 18px; }

.signal-bars.good .bar-1,
.signal-bars.good .bar-2,
.signal-bars.good .bar-3 { background: #2ecc71; }

.signal-bars.warn .bar-1,
.signal-bars.warn .bar-2 { background: #f39c12; }

.signal-bars.bad .bar-1 { background: var(--red); }

.server-play-btn {
    width: 100%;
    justify-content: center;
}

.server-loading {
    text-align: center;
    color: var(--text-muted);
    padding: 40px;
}

.server-note {
    text-align: center;
    color: var(--text-muted);
    margin-top: 32px;
    font-size: 14px;
}

.server-note strong { color: var(--gold); }

/* ─── Responsive additions ─── */

@media (max-width: 768px) {
    .story-columns,
    .story-columns.reverse {
        flex-direction: column;
    }
    .story-side {
        flex: none;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }
    .pillars {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .gallery-stagger .gallery-item.large {
        grid-column: span 1;
    }
}

/* ─── Screenshots Gallery ─── */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
}

.gallery-item:hover {
    border-color: var(--gold);
    transform: scale(1.02);
}

.gallery-item img {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: var(--bg-card);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active { display: flex; }

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    background: none;
    border: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }


/* ─── Lore ─── */

.lore-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.lore-block p {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
    font-style: italic;
}

/* ─── Legal Pages ─── */

.legal {
    max-width: 800px;
}

.legal h2 {
    font-size: 1.25rem;
    margin-top: 40px;
    margin-bottom: 12px;
    color: var(--gold);
}

.legal h2:first-child {
    margin-top: 0;
}

.legal h3 {
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.legal p {
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal ul {
    color: var(--text-dim);
    line-height: 1.8;
    margin: 0 0 12px 24px;
    list-style: disc;
}

.legal li {
    margin-bottom: 4px;
}

.legal a {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: rgba(201,171,105,0.3);
}

.legal a:hover {
    text-decoration-color: var(--gold);
}

/* ─── Animations ─── */

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 8px var(--gold-glow); }
    50% { box-shadow: 0 0 18px var(--gold-glow), 0 0 30px rgba(201,168,76,0.15); }
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 6px rgba(46,204,113,0.4); }
    50% { box-shadow: 0 0 14px rgba(46,204,113,0.6), 0 0 24px rgba(46,204,113,0.2); }
}

/* ─── Gold accent line between sections ─── */

.section + .section-alt::before,
.section-alt + .section::before {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
    margin: 0 auto;
    position: relative;
    top: -1px;
}

/* ─── Footer ─── */

.footer {
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    padding: 32px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-left {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-dim);
}

.footer-links a:hover { color: var(--gold); }

/* ─── Responsive ─── */

@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }

    .nav-links { display: none; }
    .nav-mobile-toggle { display: block; }
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(26, 30, 22, 0.98);
        padding: 16px 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero-desc { max-width: none; }
    .hero-buttons { justify-content: center; }
    .hero-logo { width: 200px; }

    .section { padding: 48px 0; }

    .gallery-grid { grid-template-columns: 1fr; }
}
