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

:root {
    --black: #060606;
    --dark: #0d0b0b;
    --dark-mid: #1a1515;
    --warm-white: #e0d6c8;
    --muted-white: #b8ad9e;
    --red: #c93030;
    --red-dim: #8b2020;
    --sepia: #3a302a;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--black);
    color: var(--warm-white);
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 18px;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ---- NAV ---- */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(6, 6, 6, 0.9);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200, 190, 175, 0.06);
    padding: 0.8rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
    transition: transform 0.3s ease;
}
nav.hidden { transform: translateY(-100%); }

.nav-brand {
    font-family: 'Special Elite', cursive;
    font-size: 0.85rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--muted-white);
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
    color: var(--muted-white); text-decoration: none;
    font-family: 'Crimson Pro', serif; font-size: 0.95rem;
    letter-spacing: 0.05em; transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--red); }

/* ---- HERO ---- */
.hero {
    min-height: 100vh; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
    padding: 2rem; position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(140, 20, 20, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(60, 30, 20, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }

.hero-logo {
    max-width: 400px;
    width: 80%;
    height: auto;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 1.5s ease 0.3s forwards;
}

.logo-text {
    font-family: 'Special Elite', cursive;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--warm-white); line-height: 1.15; margin-bottom: 0.2rem;
}
.logo-subtitle {
    font-family: 'Crimson Pro', serif; font-style: italic; font-weight: 300;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: var(--red); letter-spacing: 0.08em; margin-bottom: 2.5rem;
}
.tagline {
    font-family: 'Crimson Pro', serif; font-style: italic; font-weight: 300;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: var(--muted-white); margin-bottom: 1rem;
    opacity: 0; animation: fadeUp 1.5s ease 0.8s forwards;
}
.tagline-main {
    font-family: 'Crimson Pro', serif; font-weight: 300;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--muted-white); max-width: 550px;
    margin: 0 auto 3rem; opacity: 0; animation: fadeUp 1.5s ease 1.2s forwards;
}
.scroll-hint { opacity: 0; animation: fadeUp 1.5s ease 2s forwards; }
.scroll-hint span {
    display: block; width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--red-dim), transparent);
    margin: 0 auto; animation: pulse 2.5s ease-in-out infinite;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { opacity: 0.3; } 50% { opacity: 0.8; }
}

/* ---- SECTIONS ---- */
section { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }

.section-divider {
    width: 40px; height: 1px;
    background: var(--red-dim); margin: 0 auto 3rem;
}
.section-title {
    font-family: 'Special Elite', cursive;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    letter-spacing: 0.15em; text-transform: uppercase;
    text-align: center; color: var(--warm-white); margin-bottom: 1rem;
}
.section-subtitle {
    font-family: 'Crimson Pro', serif; font-style: italic; font-weight: 300;
    font-size: 1.05rem; color: var(--muted-white);
    text-align: center; margin-bottom: 3rem;
}

/* ---- ABOUT ---- */
.about-text {
    max-width: 700px; margin: 0 auto;
    font-weight: 300; font-size: 1.05rem; color: var(--muted-white);
}
.about-text p { margin-bottom: 1.5rem; }
.about-text em { color: var(--warm-white); font-weight: 400; }

/* ---- WATCH (YouTube) ---- */
.watch-section { max-width: 1200px; }
.yt-featured {
    width: 100%; aspect-ratio: 16 / 9;
    border: 1px solid rgba(200, 190, 175, 0.08);
    max-width: 900px; margin: 0 auto;
}
.yt-featured iframe { width: 100%; height: 100%; border: none; }
.yt-channel-link { text-align: center; margin-top: 2rem; }
.yt-channel-link a {
    display: inline-block; color: var(--warm-white); text-decoration: none;
    font-family: 'Special Elite', cursive; font-size: 0.9rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0.8rem 2rem; border: 1px solid var(--red-dim);
    transition: all 0.3s ease;
}
.yt-channel-link a:hover { background: var(--red-dim); border-color: var(--red); }

/* ---- LISTEN (Podcast) ---- */
.listen-section { text-align: center; }
.podcast-embed {
    max-width: 700px; margin: 0 auto 2rem;
    border: 1px solid rgba(200, 190, 175, 0.08);
    border-radius: 12px; overflow: hidden;
}
.podcast-embed iframe { width: 100%; border: none; }
.listen-platforms {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 1.5rem; margin-top: 2rem;
}
.listen-platforms a {
    color: var(--muted-white); text-decoration: none;
    font-family: 'Crimson Pro', serif; font-size: 0.95rem;
    letter-spacing: 0.03em; padding: 0.5rem 1.2rem;
    border: 1px solid rgba(200, 190, 175, 0.1);
    border-radius: 4px; transition: all 0.3s ease;
}
.listen-platforms a:hover { border-color: var(--red-dim); color: var(--warm-white); }

/* ---- NEWSLETTER ---- */
.newsletter-section { text-align: center; }
.newsletter-description {
    max-width: 600px; margin: 0 auto 2.5rem;
    font-weight: 300; color: var(--muted-white);
}
.substack-embed { max-width: 480px; margin: 0 auto 2.5rem; }
.subscribe-cta { text-align: center; margin-bottom: 2.5rem; }
.subscribe-btn {
    display: inline-block; color: var(--warm-white); text-decoration: none;
    font-family: 'Special Elite', cursive; font-size: 0.9rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0.9rem 2.5rem; border: 1px solid var(--red-dim);
    transition: all 0.3s ease;
}
.subscribe-btn:hover { background: var(--red-dim); border-color: var(--red); }

.substack-feed { max-width: 700px; margin: 0 auto; }
.substack-feed-title {
    font-family: 'Special Elite', cursive; font-size: 0.85rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted-white); margin-bottom: 1.5rem; text-align: center;
}

.feed-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(200, 190, 175, 0.06);
    align-items: flex-start;
}
.feed-item:last-child { border-bottom: none; }
.feed-item a {
    text-decoration: none;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    width: 100%;
}

.feed-item-thumbnail {
    width: 120px;
    min-width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(200, 190, 175, 0.08);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}
.feed-item a:hover .feed-item-thumbnail { opacity: 1; }

.feed-item-content {
    flex: 1;
    text-align: left;
}

.feed-item-title {
    font-family: 'Crimson Pro', serif; font-size: 1.1rem; font-weight: 400;
    color: var(--warm-white); margin-bottom: 0.25rem; transition: color 0.3s ease;
    line-height: 1.35;
}
.feed-item a:hover .feed-item-title { color: var(--red); }

.feed-item-date {
    font-family: 'Courier Prime', monospace; font-size: 0.7rem;
    color: rgba(200, 190, 175, 0.35); letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}
.feed-item-excerpt {
    font-family: 'Crimson Pro', serif; font-weight: 300;
    font-size: 0.88rem; color: var(--muted-white);
    line-height: 1.5;
}

.feed-loading {
    text-align: center; color: rgba(200, 190, 175, 0.3);
    font-style: italic; font-size: 0.9rem;
}
.newsletter-link { margin-top: 2rem; text-align: center; }
.newsletter-link a {
    color: var(--red); text-decoration: none;
    font-style: italic; transition: color 0.3s ease;
}
.newsletter-link a:hover { color: var(--warm-white); }

/* ---- COMMUNITY / CONTACT ---- */
.community-section { text-align: center; }
.social-links {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 2rem; margin-bottom: 3rem;
}
.social-link {
    text-decoration: none; color: var(--muted-white);
    font-family: 'Special Elite', cursive; font-size: 0.85rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.7rem 1.5rem;
    border: 1px solid rgba(200, 190, 175, 0.1);
    transition: all 0.3s ease;
}
.social-link:hover { border-color: var(--red-dim); color: var(--warm-white); }
.share-story {
    max-width: 550px; margin: 2.5rem auto 0;
    font-weight: 300; font-style: italic;
    color: var(--muted-white); font-size: 0.95rem;
}
.contact-email { margin-top: 2rem; }
.contact-email a {
    color: var(--red); text-decoration: none;
    font-family: 'Courier Prime', monospace; font-size: 0.9rem;
    letter-spacing: 0.05em; transition: color 0.3s ease;
}
.contact-email a:hover { color: var(--warm-white); }

/* ---- FOOTER ---- */
footer {
    text-align: center; padding: 3rem 2rem 2rem;
    border-top: 1px solid rgba(200, 190, 175, 0.06);
}
.footer-brand {
    font-family: 'Special Elite', cursive; font-size: 0.75rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(200, 190, 175, 0.3); margin-bottom: 0.5rem;
}
.footer-tagline {
    font-family: 'Crimson Pro', serif; font-style: italic; font-weight: 300;
    font-size: 0.85rem; color: rgba(200, 190, 175, 0.2);
}
.footer-credit {
    font-family: 'Crimson Pro', serif; font-size: 0.75rem;
    color: rgba(200, 190, 175, 0.15); margin-top: 1.5rem;
}
.footer-credit a { color: rgba(200, 190, 175, 0.2); text-decoration: none; }

/* ---- AMBIENT FOG ---- */
.fog-layer {
    position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: 0.4;
}
.fog-layer::before {
    content: ''; position: absolute; width: 200%; height: 200%;
    top: -50%; left: -50%;
    background:
        radial-gradient(ellipse 300px 200px at 20% 30%, rgba(180, 160, 140, 0.015), transparent),
        radial-gradient(ellipse 400px 250px at 80% 60%, rgba(140, 20, 20, 0.01), transparent),
        radial-gradient(ellipse 350px 200px at 50% 80%, rgba(180, 160, 140, 0.01), transparent);
    animation: fogDrift 30s ease-in-out infinite alternate;
}
@keyframes fogDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-3%, -2%); }
}

/* ---- GRAIN OVERLAY ---- */
.grain {
    position: fixed; inset: 0; pointer-events: none; z-index: 999; opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat; background-size: 150px;
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    nav { padding: 0.6rem 1.2rem; }
    .nav-links { gap: 1rem; }
    .nav-links a { font-size: 0.8rem; }
    section { padding: 3.5rem 1.5rem; }
    .social-links { flex-direction: column; align-items: center; gap: 1rem; }
    .listen-platforms { flex-direction: column; align-items: center; }
    .feed-item a { flex-direction: column; gap: 0.8rem; }
    .feed-item-thumbnail { width: 100%; min-width: unset; height: 160px; }
}
@media (max-width: 480px) {
    .nav-brand { font-size: 0.7rem; }
    .nav-links { gap: 0.7rem; }
    .nav-links a { font-size: 0.75rem; }
}
