@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --bg: #0f1410;
  --bg-2: #1a2218;
  --gold: #d4a017;
  --gold-soft: #e8c547;
  --cream: #f3ebe0;
  --muted: rgba(243, 235, 224, 0.72);
  --line: rgba(212, 160, 23, 0.35);
  --accent: #8b1e1e;
}

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

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: 'Outfit', sans-serif;
  color: var(--cream);
  background:
    radial-gradient(ellipse 90% 70% at 10% 0%, #2a3d28 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, #3d1a1a 0%, transparent 45%),
    linear-gradient(160deg, #0f1410 0%, #161c14 50%, #0c100c 100%);
  background-attachment: fixed;
}

a { color: inherit; text-decoration: none; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(1100px, 92vw);
  margin: 0 auto;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-bottom: 1px solid transparent;
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand span { color: var(--gold-soft); }

.nav-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.85;
}

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

.nav-links a.active { color: var(--gold-soft); }

/* Hero */
.hero {
  min-height: calc(100vh - 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 0 4rem;
  animation: rise 1s ease-out both;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 10vw, 5.8rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.02em;
  max-width: 12ch;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
}

.lead {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  font-weight: 300;
  color: var(--muted);
  max-width: 34rem;
  line-height: 1.55;
  margin-bottom: 2rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 2px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
  color: #1a1408;
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--cream);
  background: transparent;
}

.btn-ghost:hover { border-color: var(--gold); }

/* Page content */
.page {
  padding: 3.5rem 0 5rem;
  animation: rise 0.8s ease-out both;
}

.page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.page .intro {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 38rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold-soft);
  margin: 2.5rem 0 1rem;
}

.prose {
  color: var(--muted);
  line-height: 1.7;
  max-width: 42rem;
}

.prose p + p { margin-top: 1rem; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.tile {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  padding: 1.4rem 1.3rem;
  border-radius: 4px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.tile:hover {
  border-color: var(--gold);
  background: rgba(212, 160, 23, 0.06);
}

.tile h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.tile p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

.steps {
  counter-reset: step;
  list-style: none;
  max-width: 40rem;
}

.steps li {
  position: relative;
  padding: 1.2rem 0 1.2rem 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  line-height: 1.55;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}

.steps strong {
  display: block;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.prize-list {
  list-style: none;
  max-width: 36rem;
}

.prize-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
}

.prize-list strong { color: var(--gold-soft); font-weight: 500; }

.form {
  max-width: 28rem;
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.form label {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.form input, .form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--line);
  color: var(--cream);
  font: inherit;
  border-radius: 2px;
}

.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form button {
  margin-top: 0.5rem;
  cursor: pointer;
  border: none;
}

.note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(243, 235, 224, 0.5);
}

footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0 2.5rem;
  color: rgba(243, 235, 224, 0.45);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 700px) {
  .nav { flex-direction: column; align-items: flex-start; gap: 0.85rem; }
  .nav-links { gap: 0.85rem; }
}
