:root{
  --bg: #E3DCD1;
  --ink: #3B2F27;
  --ink-soft: rgba(59,47,39,.72);
  --muted: rgba(59,47,39,.52);
  --btn: #E2C5A1;
  --btn-ink: #3B2F27;
  --shadow: rgba(59,47,39,.10);
}

*{ box-sizing: border-box; }

html, body{ height: 100%; }

body{
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow: hidden;
}

.stage{
  height: 100svh;
  height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(22px, 4vw, 44px);
  position: relative;

  background:
    radial-gradient(900px 540px at 70% 40%, rgba(255,255,255,.45), rgba(255,255,255,0)),
    radial-gradient(760px 460px at 25% 60%, rgba(255,255,255,.22), rgba(255,255,255,0));
}

/* Subtle grain */
.stage::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity: .10;
  mix-blend-mode: multiply;
  background-size: 220px 220px;
  background-repeat: repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.content{
  width: min(920px, 100%);
  text-align: center;
  position: relative;
  padding: 0;
}

.kicker{
  margin: 0 0 14px 0;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .01em;
}

.headline{
  margin: 0 0 16px 0;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
  font-size: clamp(34px, 6vw, 74px);
}

.subline{
  margin: 0 0 16px 0;
  color: var(--ink-soft);
  line-height: 1.45;
  font-size: clamp(16px, 1.8vw, 19px);
}

.bridge{
  margin: 0 0 22px 0;
  color: rgba(59,47,39,.62);
  line-height: 1.45;
  font-size: clamp(14px, 1.6vw, 17px);
}

.cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  color: var(--btn-ink);
  background: var(--btn);
  border: 1px solid rgba(59,47,39,.10);
  box-shadow: 0 16px 34px rgba(59,47,39,.12);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  white-space: nowrap;
  animation: ctaPulse 2.6s ease-in-out infinite;
}

.cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 52px rgba(59,47,39,.16);
  filter: saturate(1.03);
  animation-play-state: paused;
}

.cta:active{
  transform: translateY(0);
  box-shadow: 0 14px 30px rgba(59,47,39,.12);
}

.cta:focus-visible{
  outline: 3px solid rgba(226,197,161,.75);
  outline-offset: 3px;
  animation-play-state: paused;
}

.ctaArrow{
  display:inline-block;
  transform: translateX(0);
  animation: arrowNudge 1.4s ease-in-out infinite;
}

.cta:hover .ctaArrow,
.cta:focus-visible .ctaArrow{
  animation-play-state: paused;
}

@keyframes ctaPulse{
  0%   { transform: translateY(0);    box-shadow: 0 16px 34px rgba(59,47,39,.12); }
  50%  { transform: translateY(-1px); box-shadow: 0 22px 52px rgba(59,47,39,.16); }
  100% { transform: translateY(0);    box-shadow: 0 16px 34px rgba(59,47,39,.12); }
}

@keyframes arrowNudge{
  0%   { transform: translateX(0); }
  50%  { transform: translateX(4px); }
  100% { transform: translateX(0); }
}

.legal{
  margin: 18px auto 0 auto;
  font-size: 12px;
  color: rgba(59,47,39,.46);
  line-height: 1.45;
  max-width: 92ch;
}

@media (max-width: 520px){
  .kicker{ margin-bottom: 12px; }
  .bridge{ margin-bottom: 18px; }
}

@media (prefers-reduced-motion: reduce){
  .cta, .ctaArrow{ animation: none; transition: none; }
}
