:root {
    --bg: #050505;
    --bg-soft: #111111;
    --panel: rgba(255, 255, 255, 0.06);
    --panel-strong: rgba(255, 255, 255, 0.1);
    --text: #f6f1e8;
    --muted: #b0a79b;
    --line: rgba(255, 255, 255, 0.12);
    --accent: #f59b2f;
    --accent-strong: #ffcb75;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(245, 155, 47, 0.18), transparent 26%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06), transparent 20%),
        linear-gradient(180deg, #080808 0%, #050505 100%);
    color: var(--text);
    font-family: 'Manrope', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.site-shell {
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
}

.site-header,
.site-footer,
.hero,
.feature-band,
.content-grid,
.timeline,
.cta-strip,
.page-content,
.inner-hero {
    position: relative;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(245, 155, 47, 0.15));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.brand-mark img,
.brand-mark .custom-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-mark span,
.brand-title,
h1,
h2,
h3,
.button,
.section-tag,
.eyebrow {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.04em;
}

.brand-title {
    display: block;
    font-size: 1.7rem;
}

.brand-subtitle {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
    padding: 10px 14px;
    border-radius: 999px;
}

.menu-list,
.menu-fallback {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list a,
.menu-fallback a {
    color: var(--muted);
    font-weight: 700;
    font-size: 0.92rem;
}

.menu-list a:hover,
.menu-fallback a:hover {
    color: var(--accent-strong);
}

.hero {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 28px;
    padding: 72px 0 32px;
}

.hero-copy,
.hero-panel,
.feature-band,
.content-card,
.timeline-list article,
.cta-strip,
.page-content,
.inner-hero,
.post-card {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 44px;
    border-radius: 36px;
}

.hero-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 22px;
    border-radius: 36px;
    min-height: 100%;
}

.eyebrow,
.section-tag {
    margin: 0 0 14px;
    color: var(--accent-strong);
    font-size: 1rem;
}

h1 {
    margin: 0;
    font-size: clamp(3rem, 8vw, 6.4rem);
    line-height: 0.92;
}

h2 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 0.98;
}

h3 {
    margin: 0 0 14px;
    font-size: 1.8rem;
    line-height: 1;
}

.hero-text,
.feature-band p,
.content-card p,
.timeline-list p,
.page-content,
.site-footer p,
.post-card p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 1rem;
}

.button-primary {
    background: linear-gradient(135deg, var(--accent), #ffd89b);
    color: #111;
}

.button-secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.panel-card {
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(245, 155, 47, 0.14), rgba(255, 255, 255, 0.03));
}

.panel-card span,
.panel-grid span,
.timeline-list span {
    color: var(--accent-strong);
}

.panel-card strong,
.panel-grid strong {
    display: block;
    margin-top: 10px;
    font-size: 2rem;
    line-height: 1;
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.panel-grid article {
    padding: 20px;
    border-radius: 24px;
    background: var(--panel);
}

.feature-band,
.cta-strip,
.inner-hero,
.page-content {
    display: grid;
    gap: 24px;
    padding: 34px;
    margin-top: 28px;
    border-radius: 32px;
}

.feature-band {
    grid-template-columns: 1fr 1fr;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 28px;
}

.content-card {
    padding: 30px;
    border-radius: 28px;
}

.accent-card {
    background: linear-gradient(170deg, rgba(245, 155, 47, 0.15), rgba(255, 255, 255, 0.04));
}

.timeline {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    padding: 28px 0;
    margin-top: 16px;
}

.timeline-list {
    display: grid;
    gap: 18px;
}

.timeline-list article {
    padding: 26px;
    border-radius: 26px;
}

.timeline-list span {
    display: inline-block;
    margin-bottom: 12px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
}

.cta-strip {
    justify-items: start;
    margin-bottom: 28px;
}

.social-gallery {
    display: grid;
    gap: 24px;
    padding: 34px;
    margin-top: 28px;
    border-radius: 32px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow);
}

.social-gallery-head p {
    margin: 0;
    color: var(--muted);
}

.social-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.post-text-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    padding: 20px;
}

.post-text {
    margin: 0;
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.8;
}

.post-source {
    margin: 12px 0 0;
    color: var(--muted);
}

.post-source a {
    color: var(--accent-strong);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.photo-card {
    margin: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
}

.photo-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 14px;
}

.photo-card figcaption {
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.prose-block > *:first-child {
    margin-top: 0;
}

.post-card {
    padding: 28px;
    border-radius: 28px;
    margin-bottom: 18px;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 0 40px;
    border-top: 1px solid var(--line);
}

.footer-title {
    color: var(--text);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 960px) {
    .hero,
    .feature-band,
    .timeline,
    .content-grid,
    .photo-grid {
        grid-template-columns: 1fr;
    }

    .panel-grid {
        grid-template-columns: 1fr;
    }

    .site-header {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        width: 100%;
        display: none;
    }

    .site-nav.is-open {
        display: block;
    }

    .menu-list,
    .menu-fallback {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 10px;
    }

    .hero-copy,
    .hero-panel,
    .feature-band,
    .content-card,
    .inner-hero,
    .page-content,
    .cta-strip,
    .social-gallery {
        padding: 24px;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .site-shell {
        width: min(calc(100% - 20px), var(--max-width));
    }

    .hero {
        padding-top: 32px;
    }

    h1 {
        font-size: 3.3rem;
    }
}
