:root {
  --bg: #f7e9ea;
  --paper: #fff9f6;
  --ink: #5a0010;
  --muted: #7a5a60;
  --line: #ead7d9;
  --accent: #8f1731;
  --accent-soft: #f3d7dc;
  --shadow: 0 18px 50px rgba(90, 0, 16, 0.10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display",
               "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.65), transparent 28%),
    radial-gradient(circle at 90% 0%, rgba(255,255,255,.55), transparent 24%),
    var(--bg);
  color: var(--ink);
  line-height: 1.65;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.shell { width: min(980px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; gap: 18px;
}
.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700; font-size: 1.28rem; letter-spacing: -0.02em; color: var(--ink);
}
.nav { display: flex; gap: 18px; flex-wrap: wrap; font-size: .96rem; }
.hero {
  min-height: 70vh; display: grid; place-items: center;
  text-align: center; padding: 56px 0 88px;
}
.hero-card {
  max-width: 760px; background: rgba(255, 249, 246, .86);
  backdrop-filter: blur(12px); border: 1px solid rgba(234, 215, 217, .9);
  border-radius: 36px; padding: 54px 34px; box-shadow: var(--shadow);
}
.eyebrow {
  display: inline-block; padding: 7px 12px; border-radius: 999px;
  background: var(--accent-soft); font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em; line-height: 1.12;
}
h1 { font-size: clamp(3rem, 8vw, 6.6rem); margin: 0 0 18px; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-top: 2.2em; }
h3 { font-size: 1.2rem; margin-top: 1.8em; }
.lead {
  color: var(--muted); font-size: clamp(1.05rem, 2.1vw, 1.25rem);
  max-width: 620px; margin: 0 auto 28px;
}
.cta-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 20px; border-radius: 999px;
  background: var(--ink); color: white; font-weight: 700;
}
.button.secondary { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.content-wrap { padding: 24px 0 76px; }
.paper {
  background: var(--paper); border: 1px solid var(--line); border-radius: 28px;
  padding: clamp(24px, 5vw, 56px); box-shadow: var(--shadow);
}
.meta { color: var(--muted); margin-bottom: 34px; }
.paper p, .paper li { color: #4a3840; }
.paper ul { padding-left: 1.2rem; }
.notice {
  background: #f5e4e7; border: 1px solid #e8c8cf;
  border-radius: 18px; padding: 18px 20px; margin: 24px 0;
}
.contact-card {
  display: grid; gap: 12px; background: var(--paper); border: 1px solid var(--line);
  border-radius: 28px; padding: 32px; box-shadow: var(--shadow);
}
footer { padding: 28px 0 42px; color: var(--muted); font-size: .9rem; }
.footer-row { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
@media (max-width: 640px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  .hero-card { padding: 38px 22px; border-radius: 28px; }
  .paper { border-radius: 22px; }
}