:root {
  --red: #D12229;
  --red-dark: #a81b20;
  --red-light: #e8434a;
  --bg: #121218;
  --bg-light: #f5f5f7;
  --bg-card: #ffffff;
  --bg-elevated: #eaeaef;
  --bg-subtle: #ededf0;
  --white: #ffffff;
  --text: #222222;
  --text-light: #e0e0e0;
  --text-muted: #666666;
  --text-muted-light: #999999;
  --text-dim: #999999;
  --text-dim-light: #555555;
  --border: rgba(0,0,0,0.08);
  --border-light: rgba(255,255,255,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-light);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

/* ==================== NAV ==================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(18,18,24,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(18,18,24,0.97);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-logo span { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: #c0c0c8;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.lang-toggle {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 2px;
}

.lang-btn {
  padding: 0.3rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--text-dim);
  border-radius: 4px;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lang-btn.active {
  background: var(--red);
  color: var(--white);
}

.nav-donate-btn {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 6px;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  transition: background 0.2s !important;
}

.nav-donate-btn:hover {
  background: var(--red-dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg);
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(209,34,41,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(209,34,41,0.08) 0%, transparent 50%);
}

.hero-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  transform: translateX(-50%);
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.hero-logo {
  display: block;
  width: 160px;
  height: auto;
  margin: 0 auto 2rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red-light);
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.hero h1 .red { color: var(--red); }

.hero h1 .you-too {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--text-muted-light);
  font-weight: 400;
  font-style: italic;
  margin-top: 1rem;
  text-transform: none;
  letter-spacing: 0;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto 3rem;
  font-weight: 400;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.3s;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator:hover {
  color: rgba(255,255,255,0.6);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ==================== SECTIONS ==================== */
.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  line-height: 1.1;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 550px;
  line-height: 1.7;
}

/* ==================== VIDEO ==================== */
.video-section {
  padding: 8rem 2rem;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #e8e8ec;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.85rem;
  font-weight: 500;
}

.play-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.play-icon svg { opacity: 0.4; color: #555; }

/* ==================== DONATE CTA ==================== */
.donate-section {
  padding: 8rem 2rem;
  background: var(--red);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.donate-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 20% 100%, rgba(0,0,0,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 90% 0%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.donate-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
}

.donate-section .section-label {
  color: rgba(255,255,255,0.6);
}

.donate-section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  text-transform: uppercase;
  line-height: 1.05;
}

.donate-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--red);
  padding: 1rem 2.8rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s ease;
}

.donate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ==================== STORY ==================== */
.story-section {
  padding: 8rem 2rem;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.story-header {
  text-align: center;
  margin-bottom: 4rem;
}

.story-grid {
  max-width: 900px;
  margin: 0 auto;
}

.story-text {
  font-size: 1.05rem;
  line-height: 2;
  color: #333;
}

.story-text p {
  margin-bottom: 1.8rem;
}

.story-text .author {
  font-weight: 700;
  color: var(--red);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-style: normal;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.story-quote {
  background: #f0f0f4;
  border-left: 3px solid var(--red);
  padding: 2rem 2.5rem;
  border-radius: 0 8px 8px 0;
  margin: 2.5rem 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: #1a1a2e;
  line-height: 1.7;
  font-style: italic;
}

/* Language content toggle */
[data-lang] { display: none; }
[data-lang].active { display: block; }

/* ==================== STORY VISUALS ==================== */
.story-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin: 3rem -3rem;
  padding: 2.5rem 3rem;
  background: var(--bg-subtle);
  border-radius: 16px;
}

.story-visual--reverse {
  direction: rtl;
}

.story-visual--reverse > * {
  direction: ltr;
}

.story-visual__img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
}

.story-visual__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
}

.story-visual__text {
  font-size: 1.15rem;
  font-weight: 500;
  color: #1a1a2e;
  line-height: 1.7;
  font-style: italic;
}

.story-visual__text .visual-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  font-style: normal;
  margin-bottom: 1rem;
}

.story-visual__text .visual-caption {
  display: block;
  font-size: 0.8rem;
  color: #888;
  font-style: normal;
  font-weight: 400;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .story-visual {
    grid-template-columns: 1fr;
    margin: 2rem -0.5rem;
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .story-visual--reverse {
    direction: ltr;
  }
}

/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a2e;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 2rem;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-banner.visible { display: block; }

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
  font-size: 0.85rem;
  color: #ccc;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--red-light);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.cookie-btn--accept {
  background: var(--red);
  color: var(--white);
}

.cookie-btn--accept:hover {
  background: var(--red-dark);
}

.cookie-btn--decline {
  background: transparent;
  color: #aaa;
  border: 1px solid rgba(255,255,255,0.15);
}

.cookie-btn--decline:hover {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

@media (max-width: 768px) {
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; justify-content: center; }
}

/* ==================== FOOTER ==================== */
.footer {
  background: #1a1a2e;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 4rem 2rem 3rem;
  color: #ccc;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand .footer-logo {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.footer-brand .footer-logo span { color: var(--red); }

.footer-brand p {
  font-size: 0.82rem;
  color: #999;
  line-height: 1.6;
  max-width: 280px;
}

.footer-nav h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #aaa;
  margin-bottom: 1rem;
}

.footer-nav a {
  display: block;
  color: #999;
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1000px;
  margin: 3rem auto 0;
  padding: 2rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #777;
}

.footer-bottom a {
  color: var(--red);
  text-decoration: none;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(18,18,24,0.98);
    backdrop-filter: blur(24px);
    padding: 1.5rem 2rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .hamburger { display: flex; }

  .hero { min-height: 90vh; padding: 7rem 1.5rem 3rem; }
  .hero h1 { letter-spacing: -1px; }

  .video-section,
  .donate-section,
  .story-section { padding: 5rem 1.5rem; }

  .story-quote { padding: 1.5rem 1.8rem; font-size: 1.05rem; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-brand p { max-width: none; }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
}
