* { box-sizing: border-box; }

body {
  margin: 0;
  background: #080604;
  color: #e8ddc9;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 70% 45% at 50% 110%, rgba(249, 115, 22, 0.10), transparent),
    radial-gradient(ellipse 45% 30% at 85% 8%, rgba(139, 92, 246, 0.05), transparent);
}

/* drifting embers */
.embers { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.embers i {
  position: absolute;
  bottom: -4vh;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #f97316;
  opacity: 0;
  animation: rise linear infinite;
  filter: blur(0.5px);
}
.embers i:nth-child(1) { left: 12%; animation-duration: 11s; animation-delay: 0s; }
.embers i:nth-child(2) { left: 28%; animation-duration: 14s; animation-delay: 3s; width: 4px; height: 4px; }
.embers i:nth-child(3) { left: 45%; animation-duration: 10s; animation-delay: 6s; }
.embers i:nth-child(4) { left: 60%; animation-duration: 16s; animation-delay: 1.5s; width: 6px; height: 6px; }
.embers i:nth-child(5) { left: 74%; animation-duration: 12s; animation-delay: 8s; }
.embers i:nth-child(6) { left: 86%; animation-duration: 15s; animation-delay: 4.5s; width: 4px; height: 4px; }
.embers i:nth-child(7) { left: 38%; animation-duration: 13s; animation-delay: 10s; }
.embers i:nth-child(8) { left: 66%; animation-duration: 9s; animation-delay: 2s; width: 3px; height: 3px; }
@keyframes rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 0.9; }
  60%  { opacity: 0.5; }
  100% { transform: translateY(-108vh) translateX(4vw); opacity: 0; }
}

main {
  position: relative;
  z-index: 1;
  width: min(760px, 92vw);
  padding: 12vh 0 4vh;
  flex: 1;
  text-align: center;
}

.kicker {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #a3855c;
  margin: 0 0 1.2rem;
}

h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(3.2rem, 10vw, 5rem);
  margin: 0 0 0.8rem;
  color: #f7f0dd;
  text-shadow: 0 0 44px rgba(249, 115, 22, 0.35);
}

.tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #9c8c6e;
  margin: 0 0 4rem;
}

section { margin-bottom: 3.5rem; text-align: left; }

section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #f7f0dd;
  margin: 0 0 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #2b2113;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
@media (max-width: 620px) { .cards { grid-template-columns: 1fr; } }

.card {
  display: block;
  background: rgba(28, 19, 10, 0.65);
  border: 1px solid #3a2c17;
  border-radius: 14px;
  padding: 1.4rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.card:hover {
  border-color: #f97316;
  box-shadow: 0 0 28px rgba(249, 115, 22, 0.18);
  transform: translateY(-3px);
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}
.card-icon { font-size: 1.6rem; }
.card-link {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #a3855c;
}
.card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.6rem;
  color: #f7f0dd;
}
.card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #b3a586;
  margin: 0;
}

.prose {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #b3a586;
  margin: 0;
}
.prose.small { font-size: 0.86rem; color: #8a7554; }
.prose a { color: #fbbf24; text-decoration: none; border-bottom: 1px dotted #fbbf24; }
.prose a:hover { border-bottom-style: solid; }
.prose strong { color: #e8ddc9; font-weight: 500; }

footer { position: relative; z-index: 1; padding: 0 1rem 2.2rem; text-align: center; }
footer p { font-size: 0.72rem; letter-spacing: 0.14em; color: #4a3f2c; margin: 0; }
