@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg:       #ffffff;
  --surface:  #f7f7f7;
  --surface2: #f0f0f0;
  --border:   #e0e0e0;
  --accent:   #cc0000;
  --accent2:  #ff3322;
  --text:     #1a1a1a;
  --muted:    #5a5a5a;
  --heading:  #0a0a0a;
  --radius:   10px;
  --max-w:    1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; color: var(--heading); line-height: 1.25; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── HEADER ───────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none !important; }
.logo img.logo-img { height: 38px; width: auto; }
.logo-mark {
  font-family: 'Playfair Display', serif;
  font-size: 21px; font-weight: 900; color: var(--heading); letter-spacing: -0.5px;
}
.logo-mark span { color: var(--accent); }

nav ul { display: flex; gap: 26px; }
nav a { font-size: 14px; color: var(--muted); font-weight: 500; transition: color 0.2s; }
nav a:hover, nav a.active { color: var(--accent); text-decoration: none; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; font-size: 22px; }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 64px 24px; text-align: left;
  background: #0d0d0d;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(204,0,0,.15) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 100% 0%, rgba(204,0,0,.07) 0%, transparent 55%);
}
/* ── split layout ── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.hero-content { position: relative; }
.hero-video { position: relative; }
.hero-video .yt-embed-wrap {
  max-width: 100%; margin: 0;
  box-shadow: 0 16px 48px rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.08);
}
.hero-tag {
  display: inline-block;
  background: rgba(204,0,0,.08); border: 1px solid rgba(204,0,0,.22);
  color: var(--accent); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 100px; margin-bottom: 26px;
}
.hero .hero-tag {
  background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; margin-bottom: 18px;
  color: #ffffff;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p {
  font-size: clamp(.95rem, 1.6vw, 1.08rem); color: rgba(255,255,255,.65);
  max-width: 100%; margin: 0 0 36px;
}
.btn-group { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; }
.btn {
  padding: 13px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all .2s; text-decoration: none !important;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary { background: var(--accent); color: #ffffff; }
.btn-primary:hover { background: #aa0000; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(204,0,0,.35); }
.hero .btn-outline { border: 1.5px solid rgba(255,255,255,.3); color: rgba(255,255,255,.85); background: transparent; }
.hero .btn-outline:hover { border-color: #fff; color: #fff; }
.btn-outline { border: 1.5px solid var(--border); color: var(--text); background: #fff; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── SECTIONS ─────────────────────────────────────── */
.section { padding: 56px 24px; }
.section-alt { background: var(--surface); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; color: var(--heading); }
.section-sub { color: var(--muted); margin-bottom: 40px; max-width: 560px; }

/* ── CARDS ────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; transition: border-color .2s, transform .2s, box-shadow .2s;
}
.card:hover { border-color: rgba(204,0,0,.3); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(204,0,0,.08); }
.card-icon { font-size: 26px; margin-bottom: 12px; }
.card h3 { font-size: 1.02rem; margin-bottom: 8px; color: var(--heading); }
.card p { font-size: .9rem; color: var(--muted); line-height: 1.65; }
.card-accent { border-top: 3px solid var(--accent); }

/* ── STEPS ────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(204,0,0,.09); border: 1.5px solid rgba(204,0,0,.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700; color: var(--accent); font-size: 1rem;
}
.step-body h3 { font-size: .95rem; margin-bottom: 4px; color: var(--heading); }
.step-body p { font-size: .88rem; color: var(--muted); }

/* ── BADGE LIST ───────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 100px; padding: 5px 14px;
  font-size: 13px; color: var(--muted);
  transition: border-color .2s, color .2s;
}
.badge:hover { border-color: var(--accent); color: var(--accent); }
.badge-list { display: flex; flex-wrap: wrap; gap: 10px; }

/* ── NOTICE ───────────────────────────────────────── */
.notice {
  background: rgba(204,0,0,.05); border: 1px solid rgba(204,0,0,.2);
  border-radius: var(--radius); padding: 18px 24px;
  color: #880000; font-size: .9rem;
  display: flex; align-items: flex-start; gap: 12px;
}
.notice-icon { font-size: 20px; flex-shrink: 0; }
.notice strong { color: var(--accent); }

/* ── YOUTUBE EMBED ────────────────────────────────── */
.yt-embed-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16 / 9; max-width: 860px; margin: 0 auto;
  box-shadow: 0 16px 48px rgba(204,0,0,.18);
}
.yt-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ── LEGAL PAGES ──────────────────────────────────── */
.legal-header { padding: 56px 24px 32px; border-bottom: 1px solid var(--border); background: var(--surface); }
.legal-header .container { max-width: 760px; }
.legal-header h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.legal-header .subtitle { color: var(--muted); margin-top: 10px; font-size: .95rem; }
.last-updated { color: var(--muted); font-size: .82rem; margin-top: 6px; }

.legal-content { padding: 44px 24px 80px; }
.legal-content .container { max-width: 760px; }
.legal-content h2 {
  font-size: 1.25rem; margin: 36px 0 12px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.legal-content h3 { font-size: 1rem; margin: 24px 0 8px; color: var(--accent); font-family: 'Inter', sans-serif; font-weight: 600; }
.legal-content p { color: var(--muted); margin-bottom: 14px; font-size: .94rem; }
.legal-content ul { padding-left: 20px; list-style: disc; margin-bottom: 14px; }
.legal-content ul li { color: var(--muted); margin-bottom: 7px; font-size: .94rem; }
.legal-content a { color: var(--accent); }
.legal-content .toc { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 32px; }
.legal-content .toc h3 { color: var(--heading); margin-top: 0; font-size: .9rem; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }
.legal-content .toc ul { list-style: none; padding-left: 0; }
.legal-content .toc li { margin-bottom: 5px; }
.legal-content .toc a { font-size: .88rem; color: var(--muted); }
.legal-content .toc a:hover { color: var(--accent); }
.contact-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin-top: 40px;
}
.contact-box h3 { font-family: 'Inter', sans-serif; color: var(--heading); font-weight: 600; font-size: .95rem; margin-bottom: 8px; }
.contact-box p { margin-bottom: 6px; font-size: .9rem; }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: #0a0a0a;
  border-top: 3px solid var(--accent);
  padding: 48px 24px 28px;
  color: #ccc;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand img { height: 34px; width: auto; margin-bottom: 12px; filter: brightness(0) invert(1); }
.footer-brand p { color: #888; font-size: .85rem; margin-top: 12px; max-width: 300px; line-height: 1.6; }
.footer-col h4 {
  font-family: 'Inter', sans-serif; font-size: .75rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #888; margin-bottom: 16px;
}
.footer-col li { margin-bottom: 2px; }
.footer-col a { font-size: .88rem; color: #888; transition: color .2s; display: block; padding: 3px 0; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid #222; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 16px;
}
.footer-bottom-left p { font-size: .8rem; color: #666; }
.footer-bottom-left a { color: #666; }
.footer-bottom-left .disclaimer {
  margin-top: 8px; font-size: .75rem; color: #555; opacity: .85;
  max-width: 560px; line-height: 1.5;
}
.footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal-links a { font-size: .8rem; color: #666; }
.footer-legal-links a:hover { color: #fff; text-decoration: none; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  nav ul { display: none; }
  .nav-toggle { display: block; }
  .hero { padding: 48px 24px; text-align: center; }
  .hero-split { grid-template-columns: 1fr; gap: 32px; }
  .hero-video { order: -1; }
  .btn-group { justify-content: center; }
  .section { padding: 44px 24px; }
}
@media (max-width: 480px) {
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .footer-bottom { flex-direction: column; }
}

/* ── NAV MOBILE OPEN ──────────────────────────────── */
@media (max-width: 768px) {
  nav ul.open,
  #main-nav.open ul { display: flex; flex-direction: column; position: absolute; top: 66px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 14px; box-shadow: 0 4px 16px rgba(0,0,0,.07); }
}
