/* Far - Trip Planner — shared editorial style for legal pages.
   Mirrors the in-app palette (cream / navy / amber) so the website
   feels continuous with the mobile app for users opening the link
   from inside Far. Inlined into each HTML so we never have a
   broken <link> at runtime. */
:root {
  --bg: #F6F5F2;
  --bg-muted: #EAE8E3;
  --surface: #FFFFFF;
  --border: #E2DFD8;
  --ink: #0B192C;
  --ink-muted: #737985;
  --accent: #F29C38;
  --secondary: #789486;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 8px;
}
h1 {
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
  font-weight: 700;
}
.updated {
  color: var(--ink-muted);
  font-size: 13px;
  margin: 0 0 32px;
}
h2 {
  font-size: 22px;
  margin: 40px 0 12px;
  letter-spacing: -0.3px;
  font-weight: 700;
}
h3 {
  font-size: 17px;
  margin: 24px 0 8px;
  font-weight: 600;
}
p { margin: 0 0 16px; }
ul, ol { padding-left: 22px; margin: 0 0 16px; }
li { margin-bottom: 6px; }
strong { color: var(--ink); font-weight: 600; }
a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}
a:hover { text-decoration-color: var(--ink); }
table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}
th, td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
th {
  background: var(--bg-muted);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink-muted);
}
hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 56px 0;
}
.lang-divider {
  text-align: center;
  margin: 56px 0 32px;
  color: var(--ink-muted);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--ink-muted);
  text-align: center;
}
.footer a { color: var(--ink-muted); }
