:root {
  --cream:      #F5F5F5;
  --ink:        #1A1A1A;
  --ink-mid:    #4A4A4A;
  --ink-light:  #808080;
  --terracotta: #2C2C2C;
  --terra-2:    #1A1A1A;
  --rose-dark:  #3A3A3A;
  --sand:       #D8D8D8;
  --sand-deep:  #C0C0C0;
  --gold-light: #EEEEEE;
}

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

html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: var(--ink-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--sand-deep);
  transition: border-color 0.2s, color 0.2s;
}
a:hover { color: var(--ink); border-color: var(--ink); }

/* ============================================================
   HERO (home page)
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: linear-gradient(160deg, var(--terracotta), var(--rose-dark), var(--terra-2));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 640px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.brand h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(72px, 12vw, 120px);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 4px;
}
.brand .sparkle { color: rgba(255,255,255,0.85); }
.brand .tagline {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 64px;
}

.copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.copy p {
  font-size: 15px;
  opacity: 0.85;
  max-width: 460px;
  margin: 0 auto 40px;
}

.coming-soon {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.08);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--cream);
  padding: 24px;
  font-size: 12px;
  color: var(--ink-light);
}
.footer-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
footer nav { display: flex; gap: 18px; }
footer a {
  border: none;
  color: var(--ink-light);
}
footer a:hover { color: var(--ink); }

/* ============================================================
   LEGAL PAGES (privacy, terms)
   ============================================================ */
.legal-page {
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.legal-header {
  padding: 28px 24px 0;
  text-align: center;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 28px;
}
.legal-header h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
}
.legal-header h1 a { color: inherit; border: none; }
.legal-header .tagline {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-top: 2px;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  flex: 1;
}
.legal-content h1 {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 700;
  font-size: 38px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.legal-content .updated {
  color: var(--ink-light);
  font-size: 13px;
  margin-bottom: 32px;
}
.legal-content h2 {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-top: 44px;
  margin-bottom: 14px;
  color: var(--ink);
  letter-spacing: -0.2px;
}
.legal-content h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink);
  margin-top: 24px;
  margin-bottom: 10px;
}
.legal-content p,
.legal-content li {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-content strong { font-weight: 600; }
.legal-content ul, .legal-content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.legal-content hr {
  border: none;
  border-top: 1px solid var(--sand);
  margin: 32px 0;
}
.legal-content .tldr {
  background: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  margin: 24px 0;
  border: 1px solid var(--sand);
  font-style: italic;
  color: var(--ink-mid);
}
.legal-content em.note {
  display: block;
  margin-top: 40px;
  font-size: 13px;
  color: var(--ink-light);
  text-align: center;
}
