/* ============================================
   YOU DID THAT? — LANDING PAGE STYLES
   A cinematic experience for the initiated.
   ============================================ */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette — Vault Aesthetic */
    --color-black: #0a0a0a;
    --color-dark-slate: #1a1a1a;
    --color-charcoal: #2a2a2a;
    --color-smoke: #3a3a3a;
    --color-light-gray: #a0a0a0;
    --color-white: #f5f5f5;
    --color-accent: #c9a961; /* Subtle gold for emphasis */
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 120px 40px;
    --container-max: 1400px;
    --container-narrow: 900px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ===== CONTAINERS ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-light-gray);
    margin-bottom: 1.5rem;
}

strong {
    color: var(--color-white);
    font-weight: 600;
}

.emphasis {
    color: var(--color-accent);
    font-style: italic;
}

.center-text {
    text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 18px 40px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 2px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-white);
    color: var(--color-black);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-ghost {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-smoke);
}

.btn-ghost:hover {
    background-color: var(--color-smoke);
    border-color: var(--color-light-gray);
}

.btn-secondary {
    background-color: var(--color-charcoal);
    color: var(--color-white);
    border: 1px solid var(--color-smoke);
}

.btn-secondary:hover {
    background-color: var(--color-smoke);
    border-color: var(--color-light-gray);
}

.btn-large {
    padding: 24px 60px;
    font-size: 1.125rem;
}

/* ===== SECTION 1: HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="400" height="400" filter="url(%23noise)" opacity="0.03"/></svg>');
    background-size: cover, 200px 200px;
    background-position: center, center;
    padding: var(--section-padding);
}

.hero-content {
    text-align: center;
    max-width: 1100px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    margin-bottom: 2rem;
}

.hero-title .line-1,
.hero-title .line-2 {
    display: block;
}

.hero-title .line-2 {
    color: var(--color-light-gray);
    font-size: 0.6em;
    margin-top: 0.5rem;
    font-weight: 500;
}

.hero-subline {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--color-light-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-smoke);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator span {
    width: 4px;
    height: 10px;
    background-color: var(--color-light-gray);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

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

/* ===== SECTION 2: IDENTITY CALLOUT ===== */
.identity-callout {
    padding: var(--section-padding);
    background-color: var(--color-dark-slate);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse > * {
    direction: ltr;
}

.col-text h2 {
    margin-bottom: 1.5rem;
}

.subtext {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.check-icon {
    color: var(--color-accent);
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.check-item span:last-child {
    font-size: 1.125rem;
    color: var(--color-white);
    font-weight: 500;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-smoke) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-smoke);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="grain"><feTurbulence type="fractalNoise" baseFrequency="1.5" numOctaves="3" stitchTiles="stitch"/></filter><rect width="200" height="200" filter="url(%23grain)" opacity="0.05"/></svg>');
    background-size: 100px 100px;
}

.placeholder-text {
    font-size: 1rem;
    color: var(--color-light-gray);
    text-align: center;
    z-index: 1;
    font-style: italic;
    opacity: 0.6;
}

/* ===== SECTION 3: HOST REVEAL ===== */
.host-reveal {
    padding: var(--section-padding);
    background-color: var(--color-black);
}

.portrait {
    aspect-ratio: 3/4;
}

.portrait-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid var(--color-smoke);
}

.documentary-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid var(--color-smoke);
}

.bio h2 {
    margin-bottom: 2rem;
    color: var(--color-accent);
}

.bio-story p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.bio-story .emphasis {
    font-size: 1.25rem;
    font-weight: 600;
    display: block;
    margin: 2rem 0;
}

.bio-story .transformation {
    color: var(--color-white);
    font-style: italic;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 2;
    margin: 2rem 0;
}

.bio-story .final {
    font-weight: 600;
    color: var(--color-white);
}

.bio .btn {
    margin-top: 2rem;
}

/* ===== SECTION 4: PURPOSE ===== */
.purpose {
    padding: var(--section-padding);
    background-color: var(--color-white);
    color: var(--color-black);
}

.purpose h2 {
    color: var(--color-black);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.emphasis-large {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--color-charcoal);
    margin-bottom: 3rem;
}

.emphasis-large strong {
    color: var(--color-black);
    font-weight: 800;
}

.purpose-statement {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.purpose-statement p {
    color: var(--color-charcoal);
    font-size: 1.25rem;
    line-height: 1.8;
}

.purpose-statement strong {
    color: var(--color-black);
}

.truth-list {
    list-style: none;
    margin: 2rem 0;
    padding-left: 0;
}

.truth-list li {
    font-size: 1.25rem;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.closing-statement {
    margin-top: 3rem;
    text-align: center;
}

.big-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.6;
}

/* ===== SECTION 5: TOPICS ===== */
.topics {
    padding: var(--section-padding);
    background-color: var(--color-dark-slate);
}

.three-card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.card {
    background-color: var(--color-charcoal);
    padding: 40px 30px;
    border: 1px solid var(--color-smoke);
    transition: var(--transition-smooth);
}

.card:hover {
    background-color: var(--color-smoke);
    border-color: var(--color-light-gray);
    transform: translateY(-5px);
}

.card h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.card p {
    color: var(--color-light-gray);
    font-size: 1.125rem;
    line-height: 1.6;
}

/* ===== SECTION 6: SOCIAL PROOF ===== */
.social-proof {
    padding: 80px 40px;
    background-color: var(--color-black);
    border-top: 1px solid var(--color-smoke);
    border-bottom: 1px solid var(--color-smoke);
}

.stage-photo-container {
    max-width: 1000px;
    margin: 0 auto 60px;
    overflow: hidden;
    border-radius: 4px;
}

.stage-photo {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--color-smoke);
}

.logo-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-smoke);
    text-transform: uppercase;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.logo:hover {
    opacity: 1;
    color: var(--color-light-gray);
}

/* ===== SECTION 7: INVITATION ===== */
.invitation {
    padding: var(--section-padding);
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.95) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="400" height="400" filter="url(%23noise)" opacity="0.03"/></svg>');
    background-size: cover, 200px 200px;
}

.invitation-copy {
    margin-bottom: 3rem;
}

.invitation-copy .lead {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--color-white);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.invitation-copy .emphasis {
    color: var(--color-accent);
}

.invitation-copy .strong {
    font-weight: 700;
    color: var(--color-white);
}

.secondary-note {
    margin-top: 2rem;
    font-size: 1rem;
    color: var(--color-light-gray);
    font-style: italic;
}

/* ===== SECTION 8: FAQ ===== */
.faq {
    padding: var(--section-padding);
    background-color: var(--color-dark-slate);
}

.faq h2 {
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-smoke);
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    padding: 30px 0;
    background: none;
    border: none;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-question .icon {
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-light-gray);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 30px;
}

.faq-answer p {
    color: var(--color-light-gray);
    font-size: 1.125rem;
    line-height: 1.8;
}

/* ===== SECTION 9: FINAL CLOSE ===== */
.final-close {
    padding: var(--section-padding);
    background-color: var(--color-black);
    border-top: 1px solid var(--color-smoke);
}

.closing-line {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--color-white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.signature {
    font-size: 1.25rem;
    color: var(--color-accent);
    font-style: italic;
    margin-bottom: 3rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 30px;
    }
    
    .two-col {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .three-card-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .logo-row {
        gap: 30px 20px;
    }
    
    .logo {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
    }
    
    .container,
    .container-narrow {
        padding: 0 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        padding: 16px 30px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .logo-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .faq-question {
        font-size: 1.125rem;
        padding: 25px 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.875rem;
    }
    
    .hero-subline {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 18px 40px;
        font-size: 1rem;
    }
}
