:root {
  --red: #C41E1E;
  --red-dark: #8B0000;
  --red-light: #FEF2F2;
  --black: #0A0A0A;
  --black-soft: #1A0606;
  --white: #FFFFFF;
  --cream: #FAFAF7;
  --gray: #888888;
  --gray-light: #E8E8E5;
  --border: rgba(0,0,0,0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1240px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--black); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease; }
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

.btn { display: inline-block; padding: 14px 28px; font-family: var(--font-body); font-size: 14px; font-weight: 600; text-decoration: none; letter-spacing: 0.02em; border-radius: 4px; border: 2px solid transparent; cursor: pointer; transition: all 0.2s ease; white-space: nowrap; }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--black); }
.btn-ghost-light { background: transparent; color: var(--black); border-color: var(--black); }
.btn-ghost-light:hover { background: var(--black); color: var(--white); }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: var(--red); border-color: var(--red); }
.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { background: var(--black); color: var(--white); }

.announcement { background: var(--black); color: var(--white); text-align: center; padding: 10px 24px; font-size: 13px; letter-spacing: 0.02em; }
.announcement a { color: var(--red); font-weight: 600; margin-left: 8px; }
.announcement a:hover { color: var(--white); }

.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; gap: 32px; }
.brand-logo { height: 44px; width: auto; }
.main-nav { display: flex; gap: 32px; margin-left: auto; }
.main-nav a { font-size: 14px; font-weight: 500; color: var(--black); position: relative; padding: 4px 0; }
.main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--red); transition: width 0.2s ease; }
.main-nav a:hover::after { width: 100%; }
.main-nav a:hover { color: var(--red); }
.nav-cta { padding: 10px 22px; font-size: 13px; }
.mobile-menu-toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.mobile-menu-toggle span { display: block; width: 22px; height: 2px; background: var(--black); transition: all 0.2s ease; }

.hero { background: var(--black-soft); color: var(--white); position: relative; overflow: hidden; min-height: 600px; display: flex; align-items: center; padding: 80px 0; }
.hero-bg-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--font-display); font-weight: 900; font-size: clamp(140px, 22vw, 320px); color: rgba(196, 30, 30, 0.06); letter-spacing: -0.04em; pointer-events: none; user-select: none; z-index: 0; white-space: nowrap; }
.hero-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-content { animation: heroFadeUp 0.9s ease-out; }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.25em; color: var(--red); text-transform: uppercase; margin-bottom: 24px; display: inline-block; padding-bottom: 6px; border-bottom: 2px solid var(--red); }
.hero-headline { font-family: var(--font-display); font-size: clamp(40px, 6vw, 76px); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 28px; color: var(--white); }
.hero-headline .accent { color: var(--red); font-style: italic; font-weight: 400; }
.hero-bio { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.85); max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image-wrap { position: relative; animation: heroImageReveal 1.1s ease-out 0.2s backwards; }
@keyframes heroImageReveal { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
.hero-image-frame { position: relative; border: 4px solid var(--red); overflow: hidden; transform: rotate(1deg); box-shadow: -20px 20px 0 -4px var(--red); }
.hero-image-frame::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 70%, rgba(196,30,30,0.15) 100%); z-index: 1; pointer-events: none; }
.hero-image { width: 100%; height: auto; display: block; transition: transform 0.6s ease; }
.hero-image-frame:hover .hero-image { transform: scale(1.03); }
.hero-image-tag { position: absolute; bottom: -16px; right: -16px; background: var(--white); color: var(--black); padding: 10px 20px; font-family: var(--font-display); font-style: italic; font-size: 18px; font-weight: 700; z-index: 2; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }

.stats-bar { background: var(--red); color: var(--white); padding: 28px 0; }
.stats-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; min-width: 120px; }
.stat-number { font-family: var(--font-display); font-size: 32px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
.stat-label { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.85; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.3); }

.section-header { margin-bottom: 60px; text-align: left; max-width: 720px; }
.section-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.25em; color: var(--red); text-transform: uppercase; margin-bottom: 16px; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(32px, 4.5vw, 54px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--black); }

.pillars { padding: 100px 0; background: var(--cream); }
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 0; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.pillar { padding: 40px 32px; background: var(--white); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; transition: background 0.3s ease; }
.pillar:hover { background: var(--red-light); }
.pillar-dark { background: var(--black); color: var(--white); }
.pillar-dark:hover { background: var(--red); }
.pillar-number { font-family: var(--font-display); font-size: 14px; font-weight: 500; letter-spacing: 0.1em; color: var(--red); margin-bottom: 24px; display: inline-block; }
.pillar-dark .pillar-number { color: var(--white); opacity: 0.6; }
.pillar-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.01em; }
.pillar-amp { color: var(--red); font-style: italic; font-weight: 400; }
.pillar-dark .pillar-amp { color: var(--white); }
.pillar-desc { font-size: 15px; line-height: 1.6; color: var(--gray); }
.pillar-dark .pillar-desc { color: rgba(255,255,255,0.8); }

.book-feature { padding: 100px 0; background: var(--black); color: var(--white); position: relative; overflow: hidden; }
.book-feature::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: var(--red); opacity: 0.08; border-radius: 50%; filter: blur(80px); }
.book-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.book-cover-wrap { position: relative; text-align: center; }
.book-cover-img { width: 100%; max-width: 380px; margin: 0 auto; box-shadow: 0 30px 80px rgba(196,30,30,0.25), 0 10px 30px rgba(0,0,0,0.6); transform: rotate(-2deg); transition: transform 0.4s ease; }
.book-cover-wrap:hover .book-cover-img { transform: rotate(0deg) scale(1.02); }
.book-badge { position: absolute; top: 20px; right: 0; background: var(--red); color: var(--white); padding: 10px 20px; font-size: 11px; font-weight: 700; letter-spacing: 0.25em; transform: rotate(8deg); z-index: 2; }
.book-content { max-width: 560px; }
.book-title-large { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); font-weight: 900; line-height: 1; letter-spacing: -0.03em; margin-bottom: 16px; color: var(--white); }
.book-subtitle { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.7); margin-bottom: 28px; letter-spacing: 0.02em; }
.book-quote { font-family: var(--font-display); font-style: italic; font-size: 22px; line-height: 1.4; color: var(--red); border-left: 3px solid var(--red); padding-left: 20px; margin-bottom: 28px; }
.book-desc { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 36px; }
.book-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.book-actions .btn-ghost-light { color: var(--white); border-color: rgba(255,255,255,0.4); }
.book-actions .btn-ghost-light:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.videos-feature { padding: 100px 0; background: var(--white); }
.video-embed { position: relative; width: 100%; padding-bottom: 56.25%; background: var(--black); overflow: hidden; margin-bottom: 32px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.video-cta { text-align: center; }

.offerings { padding: 100px 0; background: var(--cream); }
.offerings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.offering { background: var(--white); padding: 40px 32px; border: 1px solid var(--border); position: relative; transition: all 0.3s ease; text-align: left; }
.offering:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--red); }
.offering-feature { background: var(--black); color: var(--white); border-color: var(--black); }
.offering-feature:hover { border-color: var(--red); box-shadow: 0 20px 60px rgba(196,30,30,0.3); }
.offering-icon { width: 48px; height: 48px; color: var(--red); margin-bottom: 24px; }
.offering-icon svg { width: 100%; height: 100%; }
.offering-badge { position: absolute; top: 20px; right: 20px; background: var(--red); color: var(--white); padding: 4px 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.offering-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; line-height: 1.2; margin-bottom: 12px; }
.offering-desc { font-size: 15px; line-height: 1.6; color: var(--gray); margin-bottom: 24px; min-height: 60px; }
.offering-feature .offering-desc { color: rgba(255,255,255,0.75); }
.offering-link { font-size: 14px; font-weight: 600; color: var(--red); letter-spacing: 0.02em; }
.offering-link:hover { color: var(--black); letter-spacing: 0.04em; }
.offering-feature .offering-link { color: var(--white); }
.offering-feature .offering-link:hover { color: var(--red); }

.suggest-topic { background: var(--red); color: var(--white); padding: 60px 0; }
.suggest-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.suggest-content { flex: 1; min-width: 280px; }
.suggest-title { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 40px); font-weight: 700; line-height: 1.2; margin-bottom: 8px; }
.suggest-desc { font-size: 15px; line-height: 1.6; opacity: 0.9; max-width: 600px; }

.newsletter { background: var(--cream); padding: 80px 0; text-align: center; }
.newsletter-inner { max-width: 560px; margin: 0 auto; }
.newsletter .section-eyebrow { margin-bottom: 12px; }
.newsletter-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 12px; color: var(--black); }
.newsletter-desc { font-size: 15px; color: var(--gray); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 8px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-input { flex: 1; min-width: 200px; padding: 14px 18px; font-family: var(--font-body); font-size: 15px; border: 2px solid var(--black); background: var(--white); border-radius: 4px; outline: none; transition: border-color 0.2s ease; }
.newsletter-input:focus { border-color: var(--red); }

.site-footer { background: var(--black); color: var(--white); padding-top: 80px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer-brand .footer-logo { height: 56px; width: auto; margin-bottom: 20px; }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--red); margin-bottom: 20px; }
.footer-meta { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer-col h4 { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 10px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; font-size: 13px; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { color: rgba(255,255,255,0.5); }
.footer-credits { font-family: var(--font-display); font-style: italic; color: var(--red) !important; }

@media (max-width: 900px) {
  .header-inner { gap: 16px; }
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; gap: 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; border-bottom: 1px solid var(--border); }
  .main-nav.open { max-height: 400px; }
  .main-nav a { padding: 16px 24px; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-cta { display: none; }
  .mobile-menu-toggle { display: flex; }
  .hero { padding: 60px 0; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { max-width: 380px; margin: 0 auto; }
  .stats-inner { gap: 16px; }
  .stat-number { font-size: 22px; }
  .stat-divider { display: none; }
  .stat { min-width: 80px; }
  .pillars, .videos-feature, .offerings, .book-feature { padding: 70px 0; }
  .book-inner { grid-template-columns: 1fr; gap: 50px; text-align: left; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .suggest-inner { text-align: center; flex-direction: column; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .stats-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* ==========================================================================
   SECOND CHANNEL — NEZE PEPEREMPE
   ========================================================================== */
.second-channel { padding: 100px 0; background: linear-gradient(135deg, #1A0606 0%, #0a0a0a 100%); color: var(--white); position: relative; overflow: hidden; }
.second-channel::before { content: ''; position: absolute; top: -150px; left: -150px; width: 500px; height: 500px; background: var(--red); opacity: 0.08; border-radius: 50%; filter: blur(100px); }
.second-channel-inner { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto; }
.second-channel .section-eyebrow.light { color: var(--red); }
.second-channel-title { font-family: var(--font-display); font-size: clamp(32px, 4.5vw, 54px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 18px; color: var(--white); }
.second-channel-desc { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.second-channel-meta { display: flex; align-items: center; justify-content: center; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.second-channel-stat { font-size: 18px; color: var(--white); }
.second-channel-stat strong { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--red); }
.second-channel-tags { font-size: 13px; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }

/* Accessibility utility */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Mobile tweaks for new section */
@media (max-width: 900px) {
  .second-channel { padding: 70px 0; }
  .second-channel-meta { gap: 16px; flex-direction: column; }
}

/* ==========================================================================
   VIDEO PREVIEW CARD (replaces embed)
   ========================================================================== */
.video-preview { display: block; position: relative; width: 100%; padding-bottom: 56.25%; background: var(--black); overflow: hidden; margin-bottom: 32px; box-shadow: 0 20px 60px rgba(0,0,0,0.25); cursor: pointer; transition: transform 0.4s ease, box-shadow 0.4s ease; text-decoration: none; }
.video-preview:hover { transform: translateY(-4px); box-shadow: 0 30px 80px rgba(196,30,30,0.3); }
.video-preview-thumbnail { position: absolute; inset: 0; background: radial-gradient(circle at center, #2a0a0a 0%, #0a0a0a 70%); display: flex; align-items: center; justify-content: center; }
.video-preview-thumbnail::before { content: 'NEZEVILLE'; position: absolute; font-family: var(--font-display); font-weight: 900; font-size: clamp(80px, 16vw, 200px); color: rgba(196,30,30,0.08); letter-spacing: -0.04em; pointer-events: none; user-select: none; }
.video-preview-play { width: 90px; height: 90px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); position: relative; z-index: 2; transition: transform 0.3s ease, background 0.3s ease; box-shadow: 0 12px 40px rgba(196,30,30,0.5); }
.video-preview-play svg { width: 36px; height: 36px; margin-left: 4px; }
.video-preview:hover .video-preview-play { transform: scale(1.1); background: #E60000; }
.video-preview-overlay { position: absolute; bottom: 24px; left: 24px; z-index: 2; display: flex; flex-direction: column; gap: 4px; }
.video-preview-label { font-size: 11px; font-weight: 600; letter-spacing: 0.25em; color: var(--red); }
.video-preview-channel { font-size: 18px; font-weight: 600; color: var(--white); font-family: var(--font-display); }

@media (max-width: 560px) {
  .video-preview-play { width: 64px; height: 64px; }
  .video-preview-play svg { width: 24px; height: 24px; }
  .video-preview-overlay { bottom: 16px; left: 16px; }
  .video-preview-channel { font-size: 14px; }
}
