:root {
  --bg: #fdf6ef;
  --card: #ffffff;
  --ink: #2b2a33;
  --muted: #8a8794;
  --line: #efe8df;
  --accent: #6b5bd6;
  --mortgage: #b8d8c4;
  --mortgage-ink: #2f5d44;
  --school: #f5c9b8;
  --school-ink: #7a3a25;
  --owner: #b8d8c4;
  --owner-ink: #2f5d44;
  --guest: #e9d8f5;
  --guest-ink: #5e3a7a;
  --shadow: 0 6px 20px rgba(60, 50, 80, 0.08);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  padding: 24px 16px 80px;
}
.wrap { max-width: 720px; margin: 0 auto; }

.role-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-size: 13px;
}
.role-bar .who { color: var(--muted); }
.role-bar .role-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.role-pill.owner { background: var(--owner); color: var(--owner-ink); }
.role-pill.guest { background: var(--guest); color: var(--guest-ink); }

h1 {
  font-size: 28px;
  margin: 0 0 4px;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.sub { color: var(--muted); font-size: 14px; }

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
  z-index: 100;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.guest-warning { background: var(--guest-ink); }
