@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,400..700&display=swap');

:root {
  --canopy: #3e5c3f;
  --canopy-deep: #2f4830;
  --cream: #f7f3ec;
  --card: #fffdf9;
  --earth: #43302a;
  --earth-soft: #6b5a50;
  --stone: #a9a49b;
  --line: #e6ded0;
  --gold: #c2a14d;
  --radius: 12px;
  --display: "Fraunces", Georgia, serif;
  --ui: "Figtree", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 180ms;
  --dur-slow: 720ms;
}

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

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

body {
  background: var(--cream);
  color: var(--earth-soft);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 6vw, 56px) 20px;
  background:
    radial-gradient(ellipse 55% 40% at 50% 0%, rgba(62, 92, 63, 0.1), transparent 65%),
    var(--cream);
}

.gate__inner {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gate__logo {
  display: block;
  width: 72px;
  height: auto;
  margin-bottom: 24px;
}

.gate__eyebrow {
  margin: 0 0 12px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--canopy);
}

.gate__headline {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.1rem, 7vw, 2.6rem);
  font-weight: 560;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--earth);
}

.gate__question {
  margin: 12px 0 28px;
  max-width: 30ch;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--earth-soft);
}

.gate__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.btn-yes {
  width: 100%;
  min-height: 52px;
  padding: 14px 24px;
  border: none;
  border-radius: 999px;
  font-family: var(--ui);
  font-size: 0.94rem;
  font-weight: 700;
  color: #fff;
  background: var(--canopy);
  cursor: pointer;
  transition:
    transform var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}

.btn-yes:hover {
  background: var(--canopy-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(47, 72, 48, 0.28);
}

.btn-yes:active { transform: scale(0.99); }

.link-no,
.btn-leave {
  appearance: none;
  width: 100%;
  min-height: 48px;
  padding: 12px 24px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  font-family: var(--ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--earth-soft);
  cursor: pointer;
  transition:
    border-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out);
}

.link-no:hover,
.btn-leave:hover {
  border-color: var(--canopy);
  color: var(--canopy);
}

.gate__denied {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.gate__denied h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 560;
  color: var(--earth);
}

.gate__denied p {
  margin: 0 0 6px;
  max-width: 30ch;
  font-size: 0.92rem;
  color: var(--earth-soft);
}

.back-link {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  font-family: var(--ui);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--canopy);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.is-denied .gate__eyebrow,
body.is-denied .gate__headline,
body.is-denied .gate__question,
body.is-denied .gate__actions { display: none; }

body.is-denied .gate__denied { display: flex; }

.enter-veil {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--canopy);
  transform: translateY(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  pointer-events: none;
}

.enter-veil.show {
  transform: translateY(0);
  pointer-events: auto;
}

.enter-veil__text {
  margin: 0;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal { animation: rise 560ms var(--ease-out) both; }
  .reveal.d1 { animation-delay: 40ms; }
  .reveal.d2 { animation-delay: 140ms; }
  .reveal.d3 { animation-delay: 240ms; }

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