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

:root {
  --navy:       #0D1B2A;
  --deep:       #12243A;
  --gold:       #C9A96E;
  --gold-light: #E8CFA0;
  --cream:      #F5F0E8;
  --warm-white: #FDFAF5;
  --muted:      #7A8FA3;
  --border:     rgba(201,169,110,0.18);
}

/* ── BASE ── */
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--cream);
  overflow-x: hidden;
}

/* ── LEGAL PAGES (privacy, terms) ── */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.8rem 5rem; border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
}
.nav-back {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.nav-back:hover { color: var(--gold); }

.page { max-width: 760px; margin: 0 auto; padding: 5rem 2rem 8rem; }
.page-tag {
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
h1 {
  font-family: 'Cormorant Garamond', serif; font-size: 3rem;
  font-weight: 300; color: var(--warm-white); margin-bottom: 0.75rem;
}
.effective {
  font-size: 0.78rem; color: var(--muted);
  margin-bottom: 3.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border);
}
h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
  font-weight: 400; color: var(--warm-white); margin: 2.5rem 0 1rem;
}
p {
  font-size: 0.92rem; line-height: 1.85; color: var(--muted);
  margin-bottom: 1.2rem; font-weight: 300;
}
ul { margin: 0.5rem 0 1.2rem 1.5rem; }
li {
  font-size: 0.92rem; line-height: 1.85; color: var(--muted);
  margin-bottom: 0.4rem; font-weight: 300;
}
strong { color: var(--cream); font-weight: 500; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

footer {
  border-top: 1px solid var(--border); padding: 2rem 5rem;
  display: flex; justify-content: space-between; align-items: center;
  background: #080F1A;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.footer-links { display: flex; gap: 2.5rem; }
.footer-links a {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.68rem; color: rgba(122,143,163,0.35); }

/* ── SUCCESS PAGE ── */
.success-wrap {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 2rem; text-align: center;
}
.success-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 3rem; text-decoration: none; display: block;
}
.success-icon {
  width: 56px; height: 56px; border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 2rem; font-size: 1.5rem;
}
.success-wrap h1 {
  font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1.2rem;
}
.success-wrap h1 em { font-style: italic; color: var(--gold-light); }
.success-wrap p {
  max-width: 440px; margin: 0 auto 2.5rem;
}
.btn-back {
  display: inline-block; border: 1px solid var(--border); color: var(--muted);
  padding: 0.8rem 2rem; font-size: 0.75rem; letter-spacing: 0.16em;
  text-transform: uppercase; text-decoration: none; transition: border-color 0.2s, color 0.2s;
}
.btn-back:hover { border-color: var(--gold); color: var(--gold); text-decoration: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.success-wrap > * {
  opacity: 0; animation: fadeUp 0.7s ease forwards;
}
.success-logo { animation-delay: 0.1s; }
.success-icon  { animation-delay: 0.2s; }
.success-wrap h1 { animation-delay: 0.35s; }
.success-wrap p  { animation-delay: 0.5s; }
.btn-back        { animation-delay: 0.65s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav, footer { padding: 1.4rem 2rem; }
  .page { padding: 3rem 1.5rem 5rem; }
  h1 { font-size: 2.2rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-links { flex-direction: column; gap: 1rem; align-items: center; }
}
