
:root { --brand-red: #d32f2f; --ink: #111; --bg: #fff; }
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif; color: var(--ink); }
.body-bg {
  position: fixed; inset: 0;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(211,47,47,0.06), transparent 60%),
    radial-gradient(1000px 500px at 110% 110%, rgba(211,47,47,0.05), transparent 65%),
    var(--bg);
  z-index: 0;
}
.wrapper { position: relative; z-index: 1; min-height: 100%; display: flex; align-items: center; justify-content: center; padding: 7vh 1.5rem; }
.card { width: 100%; max-width: 920px; background: rgba(255,255,255,0.96); border: 1px solid rgba(0,0,0,0.06); border-radius: 22px; padding: clamp(1.6rem, 3vw, 3rem); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.logo { display:block; height: 120px; max-width: 100%; width: auto; margin: 0 auto 1rem; }
.tag { display:inline-block; background: var(--brand-red); color:#fff; font-weight: 700; padding:.4rem .8rem; border-radius:999px; letter-spacing:.3px; margin-bottom: .75rem; }
h1 { margin:.25rem 0 0.5rem; font-size: clamp(2rem, 4vw, 2.6rem); letter-spacing:.5px; }
.lead { font-size: 1.06rem; line-height: 1.65; margin:.6rem 0 1.2rem; }
.grid { display:grid; grid-template-columns: 1fr; gap:.5rem; }
@media (min-width: 640px) { .grid { grid-template-columns: 1fr 1fr; } }
.kv { display:flex; justify-content:space-between; gap:1rem; padding:.55rem .9rem; border:1px dashed rgba(0,0,0,0.12); border-radius:12px; }
.kv b { color: var(--brand-red); }
.address { margin-top: 1rem; padding: .9rem 1rem; border-left: 4px solid var(--brand-red); background:#fff; border-radius: 10px; }
.btn { display:inline-block; margin-top:1rem; padding:.75rem 1.1rem; border-radius:999px; border:2px solid var(--brand-red); color: var(--ink); text-decoration:none; font-weight:700; }
.btn:hover { background: var(--brand-red); color:#fff; }
.footer { margin-top: 1.25rem; font-size:.92rem; color:#444; }
.small { font-size:.9rem; color:#444; }
nav.top { display:flex; justify-content:flex-end; gap:.75rem; margin-bottom:.5rem; }
nav.top a { text-decoration:none; color: var(--ink); border-bottom:1px solid transparent; }
nav.top a:hover { border-color: var(--brand-red); }
