/* Shared styling for prerendered legal pages (no JS required).
   Mirrors the Hospo design tokens for cream / terracotta / earth / sand. */
:root {
  --cream: #f6f2ea;
  --warm-white: #fbf8f2;
  --earth: #2b261e;
  --clay: #6b5f50;
  --sand: #e3dccd;
  --terracotta: #c2643c;
  --sage: #6b8a6c;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--cream);
  color: var(--earth);
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  line-height: 1.6;
  font-size: 16px;
}
.container { max-width: 760px; margin: 0 auto; padding: 0 24px; }
header.top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; max-width: 1120px; margin: 0 auto; padding-left: 24px; padding-right: 24px;
}
header.top a.back { color: var(--clay); text-decoration: none; font-size: 14px; }
header.top a.back:hover { color: var(--earth); }
header.top .brand { font-family: 'Lora', Georgia, serif; font-size: 20px; color: var(--earth); text-decoration: none; }
.label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay); margin: 0 0 12px; }
h1 { font-family: 'Lora', Georgia, serif; font-size: clamp(32px, 5vw, 48px); margin: 0 0 12px; color: var(--earth); line-height: 1.15; }
h2 { font-family: 'Lora', Georgia, serif; font-size: 24px; color: var(--earth); margin: 32px 0 12px; }
h3 { font-family: 'Lora', Georgia, serif; font-size: 18px; color: var(--earth); margin: 20px 0 8px; }
.updated { font-size: 14px; color: var(--clay); margin-bottom: 40px; }
p { color: #4a4234; margin: 0 0 12px; }
ul { color: #4a4234; padding-left: 24px; }
ul li { margin-bottom: 6px; }
a { color: var(--terracotta); }
a:hover { text-decoration: underline; }
table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 8px 0; }
th { text-align: left; padding: 8px 12px 8px 0; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--clay); border-bottom: 1px solid var(--sand); font-weight: 500; }
td { padding: 8px 12px 8px 0; vertical-align: top; border-bottom: 1px solid rgba(227,220,205,0.5); color: var(--earth); }
main { padding-bottom: 80px; }
.spa-note { margin-top: 48px; padding: 16px 20px; background: var(--warm-white); border: 1px solid var(--sand); border-radius: 16px; font-size: 14px; color: var(--clay); }
.btn { display: inline-block; background: var(--terracotta); color: white; padding: 12px 28px; border-radius: 999px; text-decoration: none; font-weight: 500; border: 0; cursor: pointer; font-size: 16px; }
.btn:hover { background: #a85530; text-decoration: none; }
.form-card { background: var(--warm-white); border: 1px solid var(--sand); border-radius: 16px; padding: 24px; }
.form-group { margin-bottom: 20px; }
label.lbl { display: block; font-size: 14px; font-weight: 500; color: var(--earth); margin-bottom: 6px; }
input[type=email], textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--sand); background: white; border-radius: 8px; font-size: 16px; font-family: inherit; color: var(--earth);
}
textarea { min-height: 100px; resize: vertical; }
.radio-row { display: flex; gap: 24px; }
.radio-row label { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.hint { font-size: 12px; color: var(--clay); margin-top: 6px; }
.success { background: rgba(107, 138, 108, 0.1); border: 1px solid rgba(107, 138, 108, 0.3); padding: 24px; border-radius: 16px; }
.success h2 { margin-top: 0; }
.error { color: #b03a2e; font-size: 14px; margin-top: 8px; }
