:root {
  --bg: #F4F5F7;
  --ink: #1D1D1F;
  --muted: #6E6E73;
  --line: rgba(29, 29, 31, 0.16);
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.9);
  --radius: 18px;
  --primary: #1B2A4A;
  --secondary: #C9A227;
  --accent-bg: #F5F1E9;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

h1, h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.2;
  pointer-events: none;
}

.blob-1 {
  width: 480px;
  height: 480px;
  background: var(--primary);
  top: -200px;
  left: -160px;
}

.blob-2 {
  width: 420px;
  height: 420px;
  background: var(--secondary);
  bottom: -200px;
  right: -160px;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: 0 8px 36px -14px rgba(29, 29, 31, 0.14);
}

header.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.5rem;
  margin: 0.875rem 1.5rem;
  position: sticky;
  top: 14px;
  z-index: 30;
}

.logo {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5625rem;
}

.brand-mark {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.brand-mark span {
  display: block;
}

.brand-mark .q1 { background: #1B2A4A; }
.brand-mark .q2 { background: #00B7C2; }
.brand-mark .q3 { background: #D9541E; }
.brand-mark .q4 { background: #6FA8C9; }

.brand-mark .cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
}

.brand-mark .cross::before,
.brand-mark .cross::after {
  content: "";
  position: absolute;
  background: #fff;
}

.brand-mark .cross::before {
  top: 0;
  left: 4px;
  width: 4px;
  height: 12px;
}

.brand-mark .cross::after {
  top: 4px;
  left: 0;
  width: 12px;
  height: 4px;
}

.back-link {
  font-size: 0.84rem;
  color: var(--muted);
  text-decoration: none;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 5rem;
  position: relative;
  z-index: 1;
}

.page-card {
  padding: 2.75rem;
}

.page-card h1 {
  font-size: 2rem;
  margin-bottom: 0.375rem;
}

.placeholder-note {
  background: var(--accent-bg);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 1.125rem 0 1.875rem;
}

section {
  margin-bottom: 1.75rem;
}

section h2 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

section p, section address {
  font-size: 0.92rem;
  color: var(--ink);
  font-style: normal;
}

.muted {
  color: var(--muted);
}

.see-also {
  font-size: 0.82rem;
}

footer.site-footer {
  padding: 2.25rem 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
}
