/* ---------- Base (LIGHT THEME) ---------- */
:root{
  --bg:#ffffff;            /* page background */
  --panel:#ffffff;         /* card/section background */
  --ink:#111827;           /* primary text (near black) */
  --muted:#4b5563;         /* secondary text */
  --ring:#e5e7eb;          /* borders/dividers */
  --steel:#6b7280;         /* subtle accents */
  --brand:#1f2937;         /* link/body accent (dark gray) */
  --crimson:#dc2626;       /* brand red */
  --crimson-2:#991b1b;     /* darker red for borders/hover */
  --radius:14px; 
  --shadow:0 10px 30px rgba(17,24,39,.08);
  --max:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; background:var(--bg); color:var(--ink);
  font:16px/1.6 system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
}

img{max-width:100%; height:auto; border-radius:12px; display:block}

/* ---------- Layout ---------- */
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

/* Header */
.site-header{
  position:sticky; top:0; z-index:40; backdrop-filter:saturate(1.1) blur(8px);
  background:rgba(255,255,255,.85); border-bottom:1px solid var(--ring)
}
.header-inner{display:flex; align-items:center; justify-content:space-between; height:64px}
.brand{text-decoration:none; color:#111; font-weight:800; letter-spacing:.3px}
.nav a{color:var(--brand); opacity:.9; text-decoration:none; margin-left:20px}
.nav a:hover{opacity:1}
.nav .cta{padding:10px 14px; border:1px solid var(--steel); border-radius:999px}

/* Hero */
.hero{
  position:relative; padding:96px 0 120px; overflow:hidden; border-bottom:1px solid var(--ring)
}
.hero h1{
  margin:0 0 10px; font-size:clamp(36px,4vw,56px); text-align:center; color:#b91c1c; /* red */
}
.lead{color:var(--muted); text-align:center; margin:0 auto 24px; max-width:820px}
.hero-actions{display:flex; justify-content:center; gap:12px}

/* If you keep a hero background image, make it LIGHT */
.hero-bg{
  position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(80% 60% at 80% 10%, rgba(220,38,38,.10), transparent 60%),
    radial-gradient(50% 50% at 10% 20%, rgba(156,163,175,.12), transparent 60%),
    url('/img/hero.jpg') center/cover no-repeat;
  filter:saturate(.95) brightness(1);   /* no darkening */
}

.btn{
  display:inline-block; padding:12px 18px; border-radius:12px; text-decoration:none;
  color:var(--ink); border:1px solid var(--ring); box-shadow:var(--shadow); background:#fff
}
.btn.primary{background:var(--crimson); border-color:var(--crimson-2); color:#fff}
.btn.primary:hover{filter:brightness(1.06)}
.btn.ghost{background:transparent}

/* Intro */
.intro{padding:40px 0 24px}
.intro p{max-width:900px; margin:0 auto; color:var(--brand); text-align:center}

/* Pillars / Cards / Grids */
.pillars{padding:56px 0}
.grid-3{display:grid; gap:20px; grid-template-columns:repeat(3,minmax(0,1fr))}
@media (max-width:980px){.grid-3{grid-template-columns:1fr}}
.grid-2{display:grid; gap:28px; grid-template-columns:1.1fr .9fr}
@media (max-width:900px){.grid-2{grid-template-columns:1fr}}
.card{
  background:var(--panel); border:1px solid var(--ring); border-radius:var(--radius); padding:22px; box-shadow:var(--shadow)
}
.card h3{margin:0 0 6px}

/* Links & Lists */
a{color:#b91c1c}
a:hover{color:#991b1b}
.link{color:var(--brand); text-decoration:none; border-bottom:1px dashed var(--steel)}
.link:hover{color:#111; border-color:#111}
.checks{list-style:none; padding:0; margin:0}
.checks li{position:relative; padding-left:28px; margin:8px 0; color:var(--brand)}
.checks li::before{content:"✓"; position:absolute; left:0; top:0; color:var(--crimson); font-weight:700}

/* Learn section */
.learn{padding:56px 0; border-top:1px solid var(--ring); border-bottom:1px solid var(--ring)}
.media img{border:1px solid var(--ring)}

/* Ethos */
.ethos{padding:44px 0}
.ethos blockquote{margin:0; padding:22px; text-align:center; color:var(--brand); font-size:1.2rem}

/* Quote block (Mishima image + creed) */
.quote-block{
  text-align:center; margin:60px auto; max-width:720px;
}
.quote-block img{
  max-width:320px; margin:0 auto 20px; border-radius:12px;
  box-shadow:0 6px 18px rgba(0,0,0,.12);
  background:none; filter:none; mix-blend-mode:normal; /* keep original color */
}
.quote-block figcaption{
  font-size:1.1rem; line-height:1.65; color:#374151; font-style:italic;
}

/* Callout */
.callout{
  padding:56px 0; background:linear-gradient(180deg, rgba(220,38,38,.06), transparent 70%);
  border-top:1px solid var(--ring)
}
.callout-inner{display:flex; gap:18px; align-items:center; justify-content:space-between; flex-wrap:wrap}
.callout h2{margin:0}

/* Footer */
.site-footer{
  padding:40px 0 20px; border-top:1px solid var(--ring); background:#f9fafb; color:#111
}
.footer-grid{display:grid; gap:20px; grid-template-columns:2fr 1fr 1fr}
.footer-grid a{color:#374151; text-decoration:none; display:block; margin:6px 0}
.footer-grid a:hover{color:#111}
.tiny{color:#6b7280; font-size:.9rem; padding-top:12px}
