:root {
  --ink: #14110f;
  --paper: #f3ebe0;
  --sand: #e4d4bf;
  --ember: #c45c26;
  --ember-deep: #9a3f14;
  --mist: rgba(20, 17, 15, 0.08);
  --text: #2a241f;
  --muted: #6a5f55;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 12% -10%, #fff6ea 0%, transparent 55%),
    radial-gradient(900px 600px at 100% 20%, #f0d2b0 0%, transparent 45%),
    linear-gradient(165deg, var(--paper) 0%, var(--sand) 100%);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.07;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

.stage {
  position: relative;
  z-index: 1;
  width: min(40rem, calc(100% - 2.5rem));
  margin: auto;
  padding: clamp(3.5rem, 12vh, 7rem) 0 2rem;
  animation: rise 0.8s ease-out both;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.brand {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  font-size: clamp(3.2rem, 10vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.lead {
  margin: 1.4rem 0 0;
  max-width: 28rem;
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--ember);
  color: #fff8f2;
  box-shadow: 0 10px 28px rgba(196, 92, 38, 0.28);
}

.btn-primary:hover {
  background: var(--ember-deep);
}

.btn-ghost {
  background: rgba(255, 248, 242, 0.55);
  color: var(--ink);
  border: 1px solid var(--mist);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: #fff8f2;
}

.foot {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 1.5rem 1.25rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  animation: rise 1s ease-out 0.15s both;
}

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

@media (prefers-reduced-motion: reduce) {
  .stage,
  .foot,
  .btn {
    animation: none;
    transition: none;
  }
}
