/* Shared styling for the RSVPji legal pages — same tokens as index.html */
:root {
  --emerald: #6B1F2E;
  --oxblood: #C2611C;
  --bg: #F7EEDD;
  --bg-card: #FBF7EC;
  --ink: #1A0F0F;
  --ink-muted: #6B5848;
  --gold-text: #8A6A2F;
  --border: rgba(107, 31, 46, 0.14);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg); color: var(--ink); line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 760px; margin: 0 auto; padding: 0 24px; }
nav { padding: 24px 0; border-bottom: 1px solid var(--border); }
nav .container { display: flex; align-items: center; justify-content: space-between; }
.brand {
  font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: 22px;
  color: var(--emerald); text-decoration: none; letter-spacing: -0.01em;
}
.brand .dot { color: var(--oxblood); }
nav a.back { color: var(--ink-muted); text-decoration: none; font-size: 14px; font-weight: 500; }
nav a.back:hover { color: var(--emerald); }

main { padding: 64px 0 96px; }
.eyebrow {
  font-size: 13px; font-weight: 600; color: var(--gold-text);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px;
}
h1 {
  font-family: 'Fraunces', Georgia, serif; font-weight: 400; font-size: clamp(34px, 5vw, 48px);
  line-height: 1.1; letter-spacing: -0.025em; color: var(--emerald); margin-bottom: 12px;
}
.updated { color: var(--ink-muted); font-size: 14px; margin-bottom: 48px; }
h2 {
  font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: 24px;
  color: var(--emerald); margin: 44px 0 14px; letter-spacing: -0.015em;
}
h3 { font-size: 16px; font-weight: 600; margin: 26px 0 8px; }
p, li { color: var(--ink-muted); font-size: 16px; }
p { margin-bottom: 14px; }
ul, ol { margin: 0 0 18px 22px; }
li { margin-bottom: 8px; }
a { color: var(--emerald); }
strong { color: var(--ink); font-weight: 600; }
table { width: 100%; border-collapse: collapse; margin: 18px 0 24px; font-size: 15px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-text); font-weight: 600; }
td { color: var(--ink-muted); }
.callout {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
  padding: 20px 22px; margin: 26px 0;
}
.callout p:last-child { margin-bottom: 0; }
footer { border-top: 1px solid var(--border); padding: 32px 0; }
footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
footer, footer a { color: var(--ink-muted); font-size: 14px; }
@media (max-width: 600px) { main { padding: 40px 0 64px; } }
