:root {
  --ink: #34232a;
  --muted: #76636a;
  --accent: #dc6b4b;
  --accent-2: #a8557b;
  --paper: rgba(255, 255, 255, 0.82);
  --line: rgba(111, 75, 85, 0.12);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", sans-serif;
  line-height: 1.75;
  background:
    radial-gradient(circle at 90% 8%, rgba(255,255,255,.75) 0 140px, transparent 141px),
    linear-gradient(145deg, #fff5e8 0%, #fbe1da 48%, #eee3f7 100%);
  min-height: 100vh;
}
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(920px, calc(100% - 36px)); margin: 0 auto; }
nav { display:flex; align-items:center; justify-content:space-between; padding:22px 0; }
.brand { display:flex; align-items:center; gap:11px; font-weight:800; letter-spacing:.04em; }
.mark {
  width:42px; height:42px; display:grid; place-items:center; border-radius:14px;
  color:white; background:linear-gradient(135deg,var(--accent),var(--accent-2));
  box-shadow:0 12px 28px rgba(168,85,123,.2);
}
.navlinks { display:flex; gap:16px; font-size:14px; }
.hero { text-align:center; padding:70px 0 44px; }
.eyebrow { color:var(--accent); font-size:12px; font-weight:800; letter-spacing:.18em; text-transform:uppercase; }
h1 { font-family:Georgia,"Songti SC",serif; font-size:clamp(38px,7vw,64px); line-height:1.1; margin:14px 0; }
.lead { max-width:680px; margin:0 auto; color:var(--muted); font-size:18px; }
.panel {
  background:var(--paper); border:1px solid rgba(255,255,255,.7); border-radius:30px;
  padding:clamp(24px,5vw,48px); box-shadow:0 26px 70px rgba(88,48,57,.1);
  backdrop-filter:blur(18px); margin-bottom:30px;
}
h2 { font-size:22px; margin:34px 0 9px; }
h2:first-child { margin-top:0; }
h3 { font-size:17px; margin:22px 0 7px; }
p { margin:8px 0; }
.updated { color:var(--muted); font-size:14px; margin-bottom:28px; }
.notice { padding:18px; border-radius:18px; background:rgba(220,107,75,.09); border:1px solid rgba(220,107,75,.14); }
.grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin:28px 0; }
.card { background:var(--paper); padding:22px; border-radius:22px; border:1px solid var(--line); }
.icon { font-size:24px; margin-bottom:10px; }
.button {
  display:inline-flex; align-items:center; justify-content:center; padding:13px 20px;
  border-radius:15px; color:white; font-weight:700;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  box-shadow:0 14px 30px rgba(168,85,123,.18);
}
.contact { text-align:center; padding:34px; }
footer { text-align:center; color:var(--muted); font-size:13px; padding:22px 0 42px; }
@media(max-width:700px) {
  .grid { grid-template-columns:1fr; }
  .hero { padding-top:44px; }
  .navlinks { gap:10px; }
  .panel { border-radius:24px; }
}
