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

:root {
    --black: #0a0a0a;
    --white: #fafaf9;
    --warm: #f5f0e8;
    --accent: #b8450a;
    --gray: #999;
    --gray-mid: #666;
    --gray-light: #ddd8ce;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--black);
    color: var(--warm);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--black);
    background: var(--warm);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
}

/* FADE IN ON SCROLL */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* NAV */
nav {
    padding: 40px 48px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

.logo {
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(10,10,10,0.3);
}

.logo-img {
    height: 120px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 1;
}

/* HERO */
.hero {
    background: var(--warm);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/hero-sand.jpg') center 70% / cover no-repeat;
    opacity: 0.9;
    filter: saturate(0.9);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(245,240,232,0.15) 0%,
        rgba(245,240,232,0) 30%,
        rgba(245,240,232,0) 70%,
        rgba(245,240,232,0.2) 100%
    );
}

.hero-content {
    padding: 0 32px;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.tagline {
    color: var(--accent);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 1s ease 0.2s forwards;
}

.hero h1 {
    color: var(--black);
    font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(3.2rem, 9vw, 7.5rem);
    font-weight: 400;
    line-height: 0.92;
    margin-bottom: 48px;
    letter-spacing: -0.03em;
    opacity: 0;
    animation: fadeUp 1s ease 0.4s forwards;
}

.hero h1 em {
    font-style: italic;
}

.hero-sub {
    color: rgba(10, 10, 10, 0.5);
    font-size: 0.95rem;
    max-width: 420px;
    margin: 0 auto 64px;
    line-height: 1.9;
    font-weight: 400;
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
}

.cta-btn {
    display: inline-block;
    background: transparent;
    color: var(--black);
    font-weight: 400;
    font-size: 0.7rem;
    padding: 16px 52px;
    border: 1px solid rgba(10,10,10,0.25);
    border-radius: 0;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.5s ease;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-family: inherit;
    opacity: 0;
    animation: fadeUp 1s ease 0.8s forwards;
}

.cta-btn:hover {
    color: var(--white);
    background: var(--black);
    border-color: var(--black);
}

.hero-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    margin-top: 64px;
    opacity: 0;
    animation: fadeUp 1s ease 1s forwards;
}

.hero-logos img {
    height: 28px;
    opacity: 0.4;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.hero-logos img:hover {
    opacity: 0.7;
}

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

/* SCROLL INDICATOR */
.scroll-hint {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, rgba(10,10,10,0.2), transparent);
    animation: breathe 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes breathe {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.6; }
}

/* SECTION LABEL */
.section-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 40px;
}

/* VISION */
.vision {
    padding: 180px 0;
    background: var(--warm);
}

.vision h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin-bottom: 80px;
    max-width: 560px;
    color: var(--black);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--gray-light);
}

.vision-card {
    padding: 48px 40px 48px 0;
    border-bottom: 1px solid var(--gray-light);
}

.vision-card:nth-child(even) {
    padding-left: 40px;
    padding-right: 0;
    border-left: 1px solid var(--gray-light);
}

.vision-card h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--black);
}

.vision-card p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.75;
}

/* STREAMING */
.streaming {
    padding: 64px 0;
    background: var(--warm);
    border-top: 1px solid var(--gray-light);
}

.streaming-label {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gray);
    text-align: center;
    margin-bottom: 32px;
}

.streaming-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.streaming-logo {
    height: 32px;
    width: auto;
    opacity: 0.25;
    transition: opacity 0.4s ease;
    filter: grayscale(1);
}

.streaming-logo:hover {
    opacity: 0.6;
}

/* MARQUEE */
.marquee-section {
    background: var(--warm);
    padding: 64px 0;
    overflow: hidden;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
}

.marquee-track {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-track + .marquee-track {
    margin-top: 16px;
}

.marquee-inner {
    display: inline-block;
    white-space: nowrap;
}

.marquee-left .marquee-inner {
    animation: scrollLeft 120s linear infinite;
}

.marquee-right .marquee-inner {
    animation: scrollRight 120s linear infinite;
}

.marquee-inner span {
    display: inline-block;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 400;
    color: rgba(10,10,10,0.12);
    padding: 0 32px;
    letter-spacing: 0.02em;
    transition: color 0.4s ease;
}

.marquee-inner span:hover {
    color: rgba(10,10,10,0.4);
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ERIE SECTION */
.erie {
    padding: 180px 0;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.erie::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/lake.jpg') center center / cover no-repeat;
    opacity: 0.35;
    filter: brightness(0.4) saturate(0.5);
}

.erie .container {
    position: relative;
    z-index: 1;
}

.erie .section-label {
    color: var(--accent);
}

.erie h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--white);
}

.erie-date {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-bottom: 60px;
    font-weight: 400;
}

.erie-quote {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.3);
    line-height: 1.6;
    margin-bottom: 64px;
    max-width: 500px;
    border: none;
    padding: 0;
}

.erie-quote cite {
    display: block;
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
}

.erie-content p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.95rem;
    line-height: 1.95;
    margin-bottom: 20px;
    max-width: 520px;
}

.erie-content strong {
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

.erie-highlights {
    list-style: none;
    margin-top: 56px;
    padding-top: 56px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.erie-highlights li {
    padding: 16px 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 20px;
    letter-spacing: 0.01em;
}

.erie-highlights li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* SIGNUP */
.signup {
    padding: 180px 0;
    background: var(--warm);
}

.signup .section-label {
    text-align: center;
}

.signup h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    text-align: center;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.signup-sub {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    max-width: 400px;
    margin: 0 auto 80px;
    line-height: 1.8;
}

.signup-form {
    max-width: 560px;
    margin: 0 auto;
}

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

.form-group {
    margin-bottom: 36px;
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--gray-mid);
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--gray-light);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.4s ease;
    background: transparent;
    color: var(--black);
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #c5c0b6;
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--black);
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: var(--gray-mid);
    cursor: pointer;
    transition: color 0.3s ease;
}

.checkbox-label:hover {
    color: var(--black);
}

.checkbox-label input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--black);
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    margin-top: 24px;
    background: var(--black);
    color: var(--warm);
    border: 1px solid var(--black);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.5s ease;
    font-family: inherit;
    border-radius: 0;
    opacity: 1;
    animation: none;
}

.submit-btn:hover {
    background: transparent;
    color: var(--black);
}

/* ALERTS */
.alert {
    max-width: 560px;
    margin: 0 auto 64px;
    padding: 48px 32px;
    text-align: center;
}

.alert.success {
    background: transparent;
    color: var(--black);
    border: none;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
}

.alert.success strong {
    display: block;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.alert.success p,
.alert.success span {
    color: var(--gray);
    font-size: 0.9rem;
}

.alert.error {
    background: transparent;
    color: var(--accent);
    border: none;
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
    font-size: 0.9rem;
}

/* FOOTER */
footer {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/hero-sand.jpg') center 95% / cover no-repeat;
    filter: saturate(0.7);
}

footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        var(--warm) 0%,
        rgba(245,240,232,0.4) 40%,
        transparent 100%
    );
}

footer .container {
    position: relative;
    z-index: 1;
}

footer .logo {
    display: inline-block;
}

footer .logo-img {
    height: 140px;
    opacity: 0.85;
}

footer .logo .accent {
    color: rgba(10,10,10,0.7);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 24px;
    }

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

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

    .hero-logos {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-logos img {
        height: 22px;
    }

    .vision, .erie, .signup {
        padding: 120px 0;
    }

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

    .vision-card {
        padding: 36px 0;
    }

    .vision-card:nth-child(even) {
        padding-left: 0;
        border-left: none;
    }

    nav {
        padding: 28px 24px;
    }

    .container {
        padding: 0 24px;
    }
}
