:root {
  --bg: #fffaf7;
  --surface: #ffffff;
  --text: #2d2522;
  --muted: #6f625c;
  --brand: #a94f62;
  --brand-dark: #7f3648;
  --accent: #f2d6d0;
  --line: #eadfd9;
  --success: #2f6f57;
  --danger: #a23a3a;
  --shadow: 0 16px 40px rgba(63, 40, 34, 0.08);
  --radius: 20px;
  --max: 1080px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
a { color: var(--brand-dark); }
a:hover { color: var(--brand); }
.skip-link {
  position: absolute; left: -9999px; top: 0;
}
.skip-link:focus {
  left: 16px; top: 16px; z-index: 1000;
  background: #fff; padding: 10px 14px; border-radius: 8px;
}
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 250, 247, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max); margin: 0 auto; padding: 14px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  text-decoration: none; color: var(--text); font-weight: 800;
}
.brand-mark {
  width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), #d17a87);
  color: white; font-size: 18px; box-shadow: var(--shadow);
}
nav { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
nav a { text-decoration: none; font-size: .95rem; font-weight: 650; color: var(--muted); }
nav a:hover { color: var(--brand-dark); }
.hero {
  max-width: var(--max); margin: 0 auto; padding: 84px 22px 62px;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 46px; align-items: center;
}
.eyebrow {
  display: inline-flex; padding: 6px 11px; border-radius: 999px;
  background: var(--accent); color: var(--brand-dark); font-weight: 750; font-size: .86rem;
}
h1, h2, h3 { line-height: 1.15; margin-top: 0; }
h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); letter-spacing: -.045em; margin: 18px 0; }
h2 { font-size: clamp(1.7rem, 3vw, 2.45rem); letter-spacing: -.025em; }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 650px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 11px 18px; border-radius: 999px;
  text-decoration: none; font-weight: 750; border: 1px solid transparent;
}
.button-primary { background: var(--brand); color: white; }
.button-primary:hover { background: var(--brand-dark); color: white; }
.button-secondary { background: var(--surface); border-color: var(--line); color: var(--text); }
.hero-card {
  min-height: 380px; border-radius: 34px; padding: 30px;
  background: linear-gradient(155deg, #fff, #f5ded8);
  border: 1px solid var(--line); box-shadow: var(--shadow);
  display: flex; flex-direction: column; justify-content: space-between;
}
.metric {
  background: rgba(255,255,255,.84); border: 1px solid var(--line);
  border-radius: 18px; padding: 18px;
}
.metric + .metric { margin-top: 14px; }
.metric-label { color: var(--muted); font-size: .88rem; }
.metric-value { font-size: 1.55rem; font-weight: 800; margin-top: 2px; }
.section { max-width: var(--max); margin: 0 auto; padding: 34px 22px 72px; }
.grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px;
}
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px; box-shadow: 0 8px 28px rgba(63,40,34,.045);
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin-bottom: 0; }
.notice {
  border-left: 5px solid var(--brand); background: #fff;
  border-radius: 12px; padding: 16px 18px; margin: 22px 0;
}
.notice.warning { border-left-color: #b77a1f; background: #fffaf0; }
.notice.danger { border-left-color: var(--danger); background: #fff6f6; }
.page-shell {
  max-width: 860px; margin: 0 auto; padding: 66px 22px 86px;
}
.page-shell h1 { font-size: clamp(2.35rem, 5vw, 3.9rem); }
.page-shell h2 { margin-top: 38px; }
.page-shell h3 { margin-top: 28px; }
.page-meta { color: var(--muted); margin-bottom: 32px; }
.page-shell li { margin-bottom: 8px; }
.kicker { color: var(--brand-dark); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
.contact-box {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; margin: 24px 0;
}
.site-footer {
  border-top: 1px solid var(--line); background: #fff;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 30px 22px;
  display: grid; grid-template-columns: 1fr 2fr; gap: 26px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 18px; align-content: start; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: .92rem; }
.small { color: var(--muted); font-size: .9rem; }
.divider { border: 0; border-top: 1px solid var(--line); margin: 34px 0; }
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; padding-top: 58px; }
  .grid { grid-template-columns: 1fr; }
  .header-inner { align-items: flex-start; flex-direction: column; }
  nav { gap: 10px 14px; }
  .footer-inner { grid-template-columns: 1fr; }
}