:root { --ink:#151515; --muted:#6e6a64; --line:#dfdbd3; --paper:#f6f3ed; --card:#fffdf9; --red:#ed3f2f; --red-dark:#b9271c; --yellow:#ffc857; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
* { box-sizing:border-box; }
body { margin:0; color:var(--ink); background:var(--paper); }
a { color:inherit; }
.site-header, main, footer { width:min(1120px, calc(100% - 36px)); margin:0 auto; }
.site-header { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:24px 0; }
.brand { font-size:1.15rem; font-weight:950; letter-spacing:-.08em; text-decoration:none; }
.brand span { color:var(--red); }
.header-note { color:var(--muted); font-size:.75rem; font-weight:800; letter-spacing:.04em; text-transform:uppercase; }
.breadcrumbs { margin:18px 0 28px; color:var(--muted); font-size:.78rem; }
.breadcrumbs a { text-underline-offset:3px; }
.hero { display:grid; grid-template-columns:minmax(0, 1.35fr) minmax(240px, .65fr); gap:36px; align-items:end; padding:58px clamp(24px, 6vw, 74px); color:#fff; background:var(--ink); }
.eyebrow { margin:0 0 13px; color:var(--yellow); font-size:.72rem; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
h1 { max-width:800px; margin:0 0 20px; font-size:clamp(3rem, 7vw, 6.8rem); line-height:.9; letter-spacing:-.085em; }
.hero-lead { max-width:680px; margin:0; color:#d1ccc4; font-size:1.08rem; line-height:1.58; }
.hero-side { padding:22px; border:1px solid #4a4741; }
.hero-side strong { display:block; margin-bottom:9px; color:var(--yellow); font-size:1.1rem; }
.hero-side p { margin:0; color:#d1ccc4; font-size:.86rem; line-height:1.55; }
.actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:28px; }
.button { display:inline-flex; align-items:center; justify-content:center; min-height:44px; padding:11px 17px; border-radius:999px; font-size:.82rem; font-weight:900; text-decoration:none; }
.button--primary { color:#fff; background:var(--red); }
.button--secondary { color:var(--ink); background:#ebe6dc; }
.intro { display:grid; grid-template-columns:.65fr 1.35fr; gap:30px; padding:42px 0 25px; border-bottom:1px solid var(--line); }
.intro h2, .method h2, .questions h2, .cta-band h2 { margin:0; font-size:clamp(1.75rem, 4vw, 3.1rem); line-height:.98; letter-spacing:-.07em; }
.intro p, .method p, .cta-band p { margin:0; color:var(--muted); line-height:1.65; }
.section-label { margin:44px 0 16px; color:var(--red-dark); font-size:.72rem; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
.questions { padding-bottom:12px; }
.question-grid { display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:14px; }
.question { padding:23px; border:1px solid var(--line); border-top:5px solid var(--red); background:var(--card); }
.question:nth-child(even) { border-top-color:var(--ink); }
.question h3 { margin:0 0 14px; font-size:1.25rem; line-height:1.12; letter-spacing:-.035em; }
.question p { margin:0 0 13px; color:var(--muted); font-size:.9rem; line-height:1.55; }
.question p:last-child { margin-bottom:0; }
.question strong { color:var(--ink); }
.method { display:grid; grid-template-columns:.7fr 1.3fr; gap:30px; margin:36px 0 46px; padding:30px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.steps { display:grid; grid-template-columns:repeat(3, 1fr); gap:12px; }
.step { padding:18px; background:#eae5dc; }
.step b { display:block; margin-bottom:11px; color:var(--red-dark); font-size:.76rem; letter-spacing:.08em; }
.step h3 { margin:0 0 8px; font-size:1.05rem; letter-spacing:-.03em; }
.step p { font-size:.82rem; line-height:1.5; }
.related { margin:0 0 44px; color:var(--muted); font-size:.85rem; line-height:1.8; }
.related a { color:var(--ink); font-weight:800; text-underline-offset:3px; }
.cta-band { display:flex; align-items:center; justify-content:space-between; gap:24px; margin-bottom:48px; padding:30px; color:#fff; background:var(--red-dark); }
.cta-band p { max-width:620px; color:#ffe3df; font-size:.9rem; }
.cta-band .button { flex:none; color:var(--ink); background:var(--yellow); }
footer { display:flex; justify-content:space-between; gap:18px; padding:22px 0 38px; color:#878078; font-size:.72rem; }
footer a { text-underline-offset:3px; }
@media (max-width:760px) {
  .site-header, main, footer { width:min(100% - 28px, 1120px); }
  .header-note { display:none; }
  .hero, .intro, .method { grid-template-columns:1fr; }
  .hero { padding:38px 22px; }
  h1 { font-size:clamp(3.1rem, 16vw, 5.4rem); }
  .question-grid, .steps { grid-template-columns:1fr; }
  .cta-band, footer { align-items:flex-start; flex-direction:column; }
}
