:root {
  --void: #1A100C;
  --void-deep: #120B08;
  --void-lift: #241710;
  --cream: #F3E6C8;
  --cream-muted: rgba(243, 230, 200, 0.72);
  --cream-faint: rgba(243, 230, 200, 0.45);
  --gold: #E8B84A;
  --gold-soft: rgba(232, 184, 74, 0.85);
  --tomato: #C23B2A;
  --line: rgba(243, 230, 200, 0.18);
  --line-strong: rgba(243, 230, 200, 0.34);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .logo,
  .scroll-cue-chevron {
    animation: none !important;
  }
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  min-height: 100%;
  font-family: var(--sans);
  background: var(--void-deep);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* ——— Hero poster ——— */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(90, 52, 28, 0.35) 0%, transparent 65%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(0, 0, 0, 0.45) 0%, transparent 55%),
    var(--void);
  overflow: hidden;
}

.hero-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: min(80vmin, 92vw);
  animation: reveal 1.1s var(--ease) both;
}

.logo {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.55));
  animation: float 7s ease-in-out infinite;
  will-change: transform;
}

.hero-line {
  margin-top: clamp(1.25rem, 3.5vh, 2rem);
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(1.25rem, 4vh, 2.5rem);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--cream-faint);
  transition: color 0.25s var(--ease);
  animation: reveal 1.1s var(--ease) 0.35s both;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  color: var(--gold);
}

.scroll-cue:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 6px;
}

.scroll-cue-text {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.scroll-cue-chevron {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  animation: bounce 2.2s ease-in-out infinite;
}

/* ——— Interest / form ——— */

.interest {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, var(--void) 0%, var(--void-lift) 40%, #2A1A12 100%);
  padding: clamp(4rem, 10vh, 7rem) 1.5rem;
}

.interest-inner {
  width: min(100%, 420px);
  animation: reveal 0.9s var(--ease) both;
}

.interest-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.interest-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.85rem;
}

.interest-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.interest-lede {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--cream-muted);
}

#interest-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.optional {
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--cream-faint);
  margin-left: 0.35rem;
}

.required {
  color: var(--gold);
}

input,
textarea {
  width: 100%;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0.65rem 0 0.85rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(243, 230, 200, 0.28);
  font-style: italic;
}

input:hover:not(:focus),
textarea:hover:not(:focus) {
  border-bottom-color: var(--line-strong);
}

input:focus,
textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
  box-shadow: 0 1px 0 0 var(--gold);
}

input.error-field,
textarea.error-field {
  border-bottom-color: var(--tomato);
  box-shadow: 0 1px 0 0 var(--tomato);
}

textarea {
  resize: vertical;
  min-height: 5.5rem;
  line-height: 1.45;
}

.error {
  min-height: 1rem;
  font-size: 0.8rem;
  color: #e07060;
}

.turnstile-container {
  display: flex;
  justify-content: center;
  min-height: 65px;
  padding-top: 0.35rem;
}

.submit-btn {
  position: relative;
  width: 100%;
  margin-top: 0.75rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--cream);
  border: none;
  border-radius: 0;
  padding: 1.15rem 1.5rem;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.submit-btn:hover:not(:disabled) {
  background: var(--gold);
  color: var(--void-deep);
}

.submit-btn:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

.submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.submit-btn.loading .btn-text {
  opacity: 0;
}

.submit-btn.loading .btn-loader {
  opacity: 1;
}

.btn-loader {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1.1rem;
  height: 1.1rem;
  border: 1.5px solid transparent;
  border-top-color: var(--void);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  animation: spin 0.75s linear infinite;
}

.success-message {
  display: none;
  text-align: center;
  padding: 2rem 0;
  animation: reveal 0.6s var(--ease) both;
}

.success-message.show {
  display: block;
}

.success-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.75rem;
}

.success-message h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.success-message p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream-muted);
}

footer {
  text-align: center;
  padding: 2rem 1.5rem 2.5rem;
  background: #2A1A12;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

footer p {
  margin: 0;
}

footer .footer-sub {
  margin-top: 0.6rem;
  letter-spacing: 0.14em;
  opacity: 0.72;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 0.55;
  }
  50% {
    transform: rotate(45deg) translateY(4px);
    opacity: 1;
  }
}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 480px) {
  .hero-stage {
    width: min(82vmin, 90vw);
  }

  .hero-line {
    letter-spacing: 0.18em;
  }
}

#form-error {
  min-height: 1.2rem;
  text-align: center;
}

.success-message[hidden] {
  display: none !important;
}

form[hidden] {
  display: none !important;
}
