@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Inter:wght@300;400;500&display=swap');

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --flame-orange: #E8720C;
  --flame-yellow: #F5A623;
  --flame-red: #C0392B;
  --ember: #FF6B35;
  --gold: #D4A843;
  --dark-stone: #1A1210;
  --stone: #2C2320;
  --stone-light: #3D322C;
  --ash: #8A7A6E;
  --bone: #D4C5B0;
  --white: #F0E8DC;
}

html, body {
  width: 100%; height: 100%;
  background: var(--dark-stone);
  font-family: 'Inter', sans-serif;
  color: var(--bone);
}

/* ======== POLICY PAGES ======== */
.policy-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--dark-stone);
  padding: 2rem 1.5rem 3rem;
}
.policy-inner {
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}
.policy-back {
  color: var(--flame-orange);
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  text-decoration: none;
  transition: color 0.2s;
}
.policy-back:hover { color: var(--flame-yellow); }
.policy-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  color: var(--flame-yellow);
  margin-bottom: 0.5rem;
}
.policy-date {
  font-size: 0.75rem;
  color: var(--ash);
  margin-bottom: 2rem;
}
.policy-body {
  line-height: 1.75;
  font-size: 0.88rem;
  color: var(--bone);
}
.policy-body h2 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold);
  margin: 1.8rem 0 0.6rem;
}
.policy-body p {
  margin-bottom: 0.9rem;
}
.policy-body a {
  color: var(--flame-orange);
  text-decoration: underline;
}
.policy-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--stone-light);
  font-size: 0.75rem;
  color: var(--ash);
  display: flex;
  gap: 1.5rem;
}
.policy-footer a {
  color: var(--ash);
  text-decoration: none;
  transition: color 0.2s;
}
.policy-footer a:hover { color: var(--flame-yellow); }
