:root {
    --color-orange: #f97316;
    --color-orange-dark: #c2410c;
    --color-black: #111111;
    --color-surface: #fff7ed;
    --color-muted: #6b7280;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    color: #1f2937;
    background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

.site-logo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.site-logo-nav {
    max-height: 56px;
    width: clamp(140px, 20vw, 260px);
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: var(--color-orange) !important;
}

.hero {
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #000;
}

.hero .hero-background {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    filter: brightness(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(0, 0, 0, 0.78), rgba(249, 115, 22, 0.22));
}

.hero-content {
    position: absolute;
    text-align: center;
    max-width: 900px;
    padding: 1rem;
}

.site-logo-hero {
    width: clamp(220px, 42vw, 560px);
    max-height: 210px;
    margin-left: auto;
    margin-right: auto;
}

.hero-slogan-top,
.hero-slogan-bottom {
    font-size: clamp(1rem, 2.1vw, 1.5rem);
    font-weight: 600;
}

.section-title {
    border-left: 0.3rem solid var(--color-orange);
    padding-left: 0.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.pdf-viewer {
    width: 100%;
    min-height: 75vh;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
}

.content-card {
    border: 1px solid #fed7aa;
    border-radius: 0.75rem;
    background: #fff;
    box-shadow: 0 10px 25px rgba(17, 17, 17, 0.05);
}

.content-card .card-header {
    background: var(--color-black);
    color: #fff;
    font-weight: 700;
}

.list-legal a {
    color: var(--color-orange-dark);
    font-weight: 600;
    text-decoration: none;
}

.list-legal a:hover {
    text-decoration: underline;
}

.gallery-card img {
    height: 220px;
    object-fit: cover;
    cursor: pointer;
}

.video-placeholder {
    border: 2px dashed #fdba74;
    border-radius: 0.75rem;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    color: var(--color-muted);
    font-weight: 700;
}

.site-footer {
    background: var(--color-black);
    color: #fff;
    border-top: 4px solid var(--color-orange);
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.social-links a {
    color: #fff;
    font-size: 1.3rem;
}

.social-links a:hover {
    color: var(--color-orange);
}

@media (max-width: 991px) {
    .site-logo-nav {
        max-height: 46px;
        width: clamp(130px, 38vw, 210px);
    }

    .site-logo-hero {
        width: clamp(180px, 62vw, 360px);
        max-height: 160px;
    }

    .hero .hero-background {
        height: 68vh;
    }
}
