/* Entrava — shared styles. Dark luxury to match the app:
   accent #D2C5B3 on #121212, Playfair wordmark, Montserrat body. */
:root {
  --bg: #121212;
  --surface: #1c1c1c;
  --accent: #d2c5b3;
  --text: #ffffff;
  --muted: #8e8e93;
  --border: #2a2a2a;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); }
.wrap { max-width: 760px; margin: 0 auto; padding: 0 22px; }

header.site {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  position: sticky;
  top: 0;
  background: rgba(18, 18, 18, 0.94);
  backdrop-filter: blur(8px);
  z-index: 10;
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
}
nav a { color: var(--muted); text-decoration: none; font-size: 13px; margin-left: 18px; }
nav a:hover { color: var(--accent); }

.hero { padding: 72px 0 56px; border-bottom: 1px solid var(--border); }
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(30px, 6vw, 46px);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 600;
}
.hero p { color: var(--muted); font-size: 17px; max-width: 56ch; margin: 0 0 28px; }
.lede { color: var(--muted); }

.cards { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin: 44px 0; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px; }
.card h3 { margin: 0 0 8px; font-size: 15px; color: var(--accent); font-weight: 600; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }

main { padding: 44px 0 72px; }
main h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 5vw, 34px);
  margin: 0 0 8px;
  font-weight: 600;
}
main h2 { font-size: 16px; margin: 34px 0 10px; color: var(--accent); font-weight: 600; }
main p, main li { color: #ddd; }
main ul { padding-left: 20px; }
.updated { color: var(--muted); font-size: 13px; margin-bottom: 34px; }

.notice {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 24px 0;
}
.notice p:last-child { margin-bottom: 0; }

table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14px; }
th, td { text-align: left; padding: 11px 8px; border-bottom: 1px solid var(--border); }
th { color: var(--accent); font-weight: 600; }

footer.site { border-top: 1px solid var(--border); padding: 30px 0 50px; color: var(--muted); font-size: 13px; }
footer.site a { color: var(--muted); text-decoration: none; margin-right: 16px; display: inline-block; margin-bottom: 6px; }
footer.site a:hover { color: var(--accent); }
