﻿/* Global reset & base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: radial-gradient(circle at top, #141414 0, #050505 55%, #000 100%);
    color: #f5f5f5;
    font-family: "Times New Roman", Times, serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Page wrapper */
.page {
    flex: 1;
}

/* Typography helpers */
h1,
h2,
h3 {
    font-family: "Times New Roman", Times, serif;
    letter-spacing: 0.04em;
}

h1 {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    margin: 0 0 0.75rem;
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin: 0 0 0.75rem;
}

h3 {
    font-size: 1.3rem;
    margin: 0 0 0.5rem;
}

p {
    line-height: 1.6;
    margin: 0 0 1rem;
}

a {
    color: #f4d58d;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(244, 213, 141, 0.25);
}

.site-header-inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0;
}

    .site-title a {
        color: #fdfbf5;
        text-decoration: none;
    }

.site-nav {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

    .site-nav a {
        color: #e6e6e6;
        text-decoration: none;
    }

        .site-nav a:hover {
            color: #f4d58d;
        }

/* Hero */
.hero {
    max-width: 1040px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-left {
    display: flex;
    justify-content: center;
}

.hero-cover {
    max-width: 320px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(244, 213, 141, 0.35);
}

    .hero-cover img {
        display: block;
        width: 100%;
        height: auto;
    }

.hero-right {
    text-align: left;
}

.hero-kicker {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #d2c4a1;
    margin-bottom: 0.25rem;
}

.hero-title {
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1;
}

.hero-break {
    display: block;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #dcdcdc;
    max-width: 32rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0 1rem;
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    font-size: 0.9rem;
    color: #c8c8c8;
}

    .hero-highlights li::before {
        content: "\2022"; /* bullet */
        font-family: Arial, sans-serif;
        margin-right: 0.35rem;
        color: #f4d58d;
    }

/* Buttons */
.btn {
    border-radius: 999px;
    padding: 0.7rem 1.4rem;
    border: 1px solid rgba(244, 213, 141, 0.7);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

    .btn.primary {
        background: #f4d58d;
        color: #19130f;
        border-color: #f4d58d;
    }

        .btn.primary:hover {
            background: #ffe1a5;
            border-color: #ffe1a5;
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
            text-decoration: none;
        }

    .btn.secondary {
        background: transparent;
        color: #f4d58d;
    }

        .btn.secondary:hover {
            background: rgba(244, 213, 141, 0.06);
            transform: translateY(-1px);
            text-decoration: none;
        }

/* Sections */
.section {
    padding: 2.5rem 1.25rem;
}

    .section.alt {
        background: radial-gradient(circle at top, #151515 0, #050505 55%, #000 100%);
    }

.section-inner {
    max-width: 1040px;
    margin: 0 auto;
}

    .section-inner.two-column {
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
        gap: 2.25rem;
        align-items: flex-start;
    }

.card {
    border-radius: 14px;
    border: 1px solid rgba(244, 213, 141, 0.28);
    background: radial-gradient(circle at top, #17130a 0, #080806 55%, #050505 100%);
    padding: 1.5rem 1.4rem 1.6rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
}

    .card p:last-child {
        margin-bottom: 0;
    }

/* Excerpt */
.excerpt-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #d2c4a1;
    margin-bottom: 0.5rem;
}

.excerpt {
    border-left: 3px solid rgba(244, 213, 141, 0.85);
    padding-left: 1rem;
    margin: 0 0 1rem;
    font-style: italic;
    color: #f2f0e8;
}

/* Details */
.details {
    margin: 0;
}

    .details div {
        display: grid;
        grid-template-columns: 110px minmax(0, 1fr);
        gap: 0.35rem 1.25rem;
        padding: 0.25rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

        .details div:last-child {
            border-bottom: none;
        }

    .details dt {
        font-weight: 600;
        font-size: 0.9rem;
        color: #e8e1cd;
    }

    .details dd {
        margin: 0;
        font-size: 0.95rem;
    }

/* Lists */
.checklist {
    list-style: none;
    padding: 0;
    margin: 0.25rem 0 0;
    font-size: 0.95rem;
}

    .checklist li {
        margin: 0 0 0.5rem;
        padding-left: 1.4rem;
        position: relative;
    }

        .checklist li::before {
            content: "\2713"; /* checkmark */
            font-family: Arial, sans-serif;
            position: absolute;
            left: 0;
            top: 0.1rem;
            font-size: 0.9rem;
            color: #f4d58d;
        }

/* Notes */
.note {
    color: #b2b2b2;
}

    .note.small {
        font-size: 0.85rem;
    }

.muted {
    color: #a8a8a8;
}

/* CTA section */
.cta-section {
    border-top: 1px solid rgba(244, 213, 141, 0.18);
    padding-bottom: 3rem;
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(244, 213, 141, 0.25);
    padding: 1.5rem 1.25rem 1.8rem;
    background: #000;
    color: #bfbfbf;
    text-align: center;
    font-size: 0.85rem;
}

.site-footer-inner {
    max-width: 1040px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

    .footer-links a {
        color: #d8d8d8;
        text-decoration: none;
    }

        .footer-links a:hover {
            color: #f4d58d;
        }

/* Responsive */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
        padding-top: 2rem;
    }

    .hero-right {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-highlights {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .section-inner.two-column {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 600px) {
    .site-header-inner {
        flex-direction: column;
        gap: 0.4rem;
        align-items: flex-start;
    }

    .site-nav {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .hero {
        padding-inline: 1rem;
    }

    .section {
        padding-inline: 1rem;
    }

    .card {
        padding-inline: 1.1rem;
    }
}
/* ============================
   Background Video Styling
   ============================ */

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
    /* Soft aesthetic blur + dim for readability */
    filter: blur(8px) brightness(0.55) saturate(1.2);
    /* Prevent flicker on mobile */
    transform: translateZ(0);
    backface-visibility: hidden;
}
