:root {
  --bg: #f9f9f7;
  --fg: #1a1a1a;
  --muted: #78716c;
  --accent: #c4a484;
  --line: rgba(26, 26, 26, 0.12);
  --panel: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(249, 249, 247, 0.92);
  backdrop-filter: blur(12px);
}

.brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
}

.back-link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
}

main {
  width: min(760px, 92vw);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 10vw, 120px);
}

.kicker {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 40px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h2 {
  margin: 40px 0 12px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
}

p,
li {
  color: #57534e;
  font-size: 1rem;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9em;
  color: #44403c;
}

ul {
  margin: 12px 0 0 1.2rem;
}

li + li {
  margin-top: 6px;
}

.legal-card {
  margin: 28px 0 36px;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 12px 40px rgba(26, 26, 26, 0.04);
}

.legal-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--fg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.legal-address {
  color: var(--fg);
  font-size: 1.05rem;
  line-height: 1.65;
}

.placeholder-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  background: #f5f0ea;
  color: #6b6158;
  font-size: 0.9rem;
}

.site-footer {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--fg);
}
