:root {
    --black: #0B0B0B;
    --surface: #161616;
    --red: #E50914;
    --gray: #B3B3B3;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', sans-serif;
    --purple: #A78BFA;
}

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

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-sans);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── NAV ── */
header {
    border-bottom: 1px solid #222;
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--red);
    font-weight: 700;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    transition: color 0.2s;
}

nav a:hover {
    color: var(--gray);
}

nav a.cta {
    border: 1px solid var(--red);
    padding: 8px 16px;
    border-radius: 4px;
    color: var(--red);
    transition: all 0.2s;
}

nav a.cta:hover {
    background: var(--red);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    height: 2px;
    width: 24px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
    padding: 90px 0 80px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1.1;
    color: var(--red);
    margin-bottom: 8px;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.badge {
    border: 1px solid var(--red);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
}

.badge-purple {
    border-color: var(--purple);
}

.hero-p {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 30px;
    max-width: 520px;
}

.hero-location {
    font-size: 0.85rem;
    color: var(--gray);
}

.hero-location span {
    margin-right: 6px;
}

.headshot-placeholder {
    background: linear-gradient(145deg, #1c1c1c, #232323);
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 4 / 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #555;
    font-size: 0.85rem;
    gap: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.headshot-placeholder svg {
    opacity: 0.3;
}

/* ── SECTION HEADING ── */
.section-heading {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 40px;
    padding-left: 16px;
    position: relative;
}

.section-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: var(--red);
    border-radius: 2px;
}

section {
    padding: 70px 0;
}

section + section {
    border-top: 1px solid #1e1e1e;
}

/* ── VIDEO GRID ── */
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.video-card {
    background: var(--surface);
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
}

.video-card iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border: none;
}
.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    overflow: hidden;
    background: #000;
}
.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s;
}
.video-thumb:hover img { opacity: 0.8; }
.play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 64px; height: 64px;
    background: rgba(0,0,0,0.72);
    border: 3px solid rgba(255,255,255,0.9);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    padding-left: 4px;
}
.video-thumb:hover .play-btn {
    background: var(--red);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card-body {
    padding: 18px 20px;
}

.video-card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.video-card p {
    color: var(--gray);
    font-size: 0.88rem;
}

.watch-more {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--red);
    border-bottom: 1px solid var(--red);
    padding-bottom: 1px;
    transition: opacity 0.2s;
}

.watch-more:hover {
    opacity: 0.7;
}

/* ── SPOTLIGHT RIBBON ── */
.spotlight-ribbon {
    background: linear-gradient(90deg, #1a0103 0%, var(--black) 100%);
    border-top: 1px solid var(--red);
    border-bottom: 1px solid var(--red);
    padding: 48px 0;
    text-align: center;
}

.ribbon-badge {
    display: inline-block;
    background: var(--red);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 14px;
}

.spotlight-ribbon h3 {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    margin-bottom: 10px;
}

.spotlight-ribbon p {
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.ribbon-role {
    font-size: 0.9rem;
    color: #aaa;
    font-style: italic;
    margin-top: -6px !important;
    margin-bottom: 10px !important;
}

.ribbon-meta {
    font-size: 0.82rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px !important;
}

.ribbon-date {
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 14px !important;
}

.ribbon-credits {
    font-size: 0.82rem;
    color: #666;
    margin-top: 14px !important;
    text-align: left;
}

.ribbon-credits p {
    margin: 0 auto 6px;
    color: #999;
    max-width: 560px;
}

.ribbon-credits ul {
    max-width: 560px;
    margin: 0 auto;
    padding-left: 1.2em;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ribbon-credits li {
    color: #666;
}

.ribbon-credits strong {
    color: #999;
}

/* ── PILLARS ── */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
}

.pillar-card {
    background: var(--surface);
    border: 1px solid #222;
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
}

.pillar-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.pillar-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.pillar-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ── TESTIMONIALS ── */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid #222;
    border-radius: 8px;
    padding: 28px 24px;
}

.testimonial-score {
    color: var(--red);
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-serif);
    margin-bottom: 12px;
}

.testimonial-quote {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-attribution {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #888;
}

/* ── CONTACT FORM ── */
.form-panel {
    max-width: 660px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid #222;
    border-radius: 8px;
    padding: 44px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--gray);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--black);
    border: 1px solid #333;
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--purple);
}

.form-field select option {
    background: #1a1a1a;
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--purple);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-weight: 700;
    font-family: var(--font-sans);
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: opacity 0.2s;
}

.submit-btn:hover {
    opacity: 0.88;
}

/* ── FOOTER ── */
footer {
    border-top: 1px solid #1e1e1e;
    padding: 40px 0;
    text-align: center;
    color: #555;
    font-size: 0.82rem;
}

footer a {
    color: #777;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--white);
}

footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 14px;
}

/* ── BLOG PAGE ── */
.blog-header {
    padding: 70px 0 50px;
    border-bottom: 1px solid #1e1e1e;
}

.blog-header h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--red);
    margin-bottom: 10px;
}

.blog-header p {
    color: var(--gray);
    font-size: 1rem;
}

.blog-stream {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.blog-post {
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid #1e1e1e;
}

.blog-post:last-child {
    border-bottom: none;
}

.post-tag {
    display: inline-block;
    border: 1px solid #333;
    border-radius: 3px;
    padding: 3px 9px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--red);
    margin-bottom: 14px;
}

.blog-post h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 8px;
}

.post-meta {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 20px;
}

.blog-post p {
    color: var(--gray);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.read-more {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--red);
    border-bottom: 1px solid var(--red);
    padding-bottom: 2px;
    margin-top: 6px;
    transition: opacity 0.2s;
}

.read-more:hover {
    opacity: 0.7;
}

/* ── POST EXPANDER ── */
.post-expander {
    margin-top: 16px;
}

.post-expander summary {
    display: inline-block;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--red);
    border-bottom: 1px solid var(--red);
    padding-bottom: 1px;
    list-style: none;
    margin-bottom: 20px;
}

.post-expander summary::-webkit-details-marker {
    display: none;
}

.post-expander summary::after {
    content: ' →';
}

.post-expander[open] summary::after {
    content: ' ↑';
}

.post-expander p {
    color: var(--gray);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black);
        border-bottom: 1px solid #222;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
        gap: 18px;
    }

    nav.open {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 50px 0 40px;
        gap: 36px;
    }

    .hero-headline {
        font-size: 2.8rem;
    }

    .headshot-placeholder {
        max-width: 280px;
        margin: 0 auto;
    }

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-panel {
        padding: 28px 20px;
    }

    .section-heading {
        font-size: 1.8rem;
    }
}
