/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:      #0a0806;
  --dark:       #120d08;
  --coal:       #1c1208;
  --red:        #c0280a;
  --orange:     #e85c0d;
  --amber:      #f59e0b;
  --gold:       #fbbf24;
  --light-gold: #fde68a;
  --white:      #fff8f0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
}

/* ── Hero ── */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 3rem 1rem 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 70%, #3a1200 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 90%, #6b1f00 0%, transparent 60%),
    var(--black);
}

/* floating embers */
.ember {
  position: absolute;
  bottom: -10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px 2px var(--orange);
  animation: rise linear infinite;
  pointer-events: none;
}

@keyframes rise {
  0%   { transform: translateY(0) scale(1);   opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 0.6; }
  100% { transform: translateY(-110vh) scale(0.3); opacity: 0; }
}

/* logo */
.logo-wrap {
  position: relative;
}

.logo {
  width: min(480px, 85vw);
  height: auto;
  display: block;
  mix-blend-mode: lighten;
}

.tagline {
  margin-top: 2rem;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-gold);
  text-shadow: 0 0 20px var(--amber);
}

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0.85rem 1rem;
  background: rgba(10, 8, 6, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #3a1800;
}

.nav a {
  color: var(--amber);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--light-gold);
}

/* ── Privacy Section ── */
.privacy-section {
  padding: 5rem 1rem;
  background: linear-gradient(180deg, var(--dark) 0%, var(--coal) 100%);
}

.container {
  max-width: 820px;
  margin: 0 auto;
}

.privacy-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.4rem;
}

.last-updated {
  font-size: 0.85rem;
  color: #a07040;
  margin-bottom: 3rem;
  letter-spacing: 0.04em;
}

.policy-block {
  margin-bottom: 2.4rem;
  padding: 1.6rem 2rem;
  background: rgba(255, 120, 20, 0.04);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  transition: border-color 0.2s, background 0.2s;
}

.policy-block:hover {
  border-color: var(--amber);
  background: rgba(255, 150, 30, 0.08);
}

.policy-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}

.policy-block p,
.policy-block li {
  color: #d4b896;
  font-size: 0.97rem;
}

.policy-block ul {
  margin: 0.6rem 0 0 1.2rem;
}

.policy-block li {
  margin-bottom: 0.4rem;
}

.policy-block strong {
  color: var(--light-gold);
}

.contact-info {
  margin-top: 0.8rem;
  line-height: 2;
}

.contact-info a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info a:hover {
  color: var(--gold);
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--black);
  border-top: 1px solid #2a1000;
  color: #5a3a1a;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .policy-block {
    padding: 1.2rem 1.2rem;
  }
}
