:root {
  --black: #070707;
  --soft-black: #0d0d0d;
  --ivory: #f6f1e7;
  --muted: #b9b0a2;
  --gold: #c9aa6a;
  --gold-light: #ead7a5;
  --line: rgba(201, 170, 106, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 18% 22%, rgba(201, 170, 106, 0.08), transparent 32%),
    radial-gradient(circle at 82% 72%, rgba(201, 170, 106, 0.06), transparent 36%),
    linear-gradient(135deg, #050505 0%, #0a0a0a 52%, #050505 100%);
  font-family: "Manrope", Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.014) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 88%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.page-shell {
  width: min(1500px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 42px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  position: relative;
}

.site-header,
.site-footer {
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-color: var(--line);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--muted);
  position: relative;
  z-index: 5;
}

.site-header {
  border-bottom: 1px solid var(--line);
}

.site-footer {
  border-top: 1px solid var(--line);
}

.brand-mini {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ivory);
  font-weight: 500;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.header-link {
  transition: color 180ms ease;
}

.header-link:hover {
  color: var(--gold-light);
}

.hero {
  min-height: calc(100vh - 156px);
  display: grid;
  place-items: center;
  padding: 58px 20px;
  position: relative;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(201, 170, 106, 0.12);
  border-radius: 50%;
  z-index: -1;
}

.hero::before {
  width: 520px;
  height: 520px;
}

.hero::after {
  width: 680px;
  height: 680px;
  opacity: 0.35;
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  opacity: 0.16;
  z-index: -2;
}

.ambient-one {
  width: 260px;
  height: 260px;
  background: #a98039;
  top: 15%;
  left: 20%;
}

.ambient-two {
  width: 220px;
  height: 220px;
  background: #7b5b29;
  right: 19%;
  bottom: 12%;
}

.hero-content {
  width: min(780px, 100%);
  text-align: center;
  position: relative;
  z-index: 2;
}

.logo-wrap {
  width: 136px;
  height: 136px;
  margin: 0 auto 28px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(234, 215, 165, 0.2),
    0 18px 50px rgba(0, 0, 0, 0.55);
}

.logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  font-weight: 500;
}

h1 {
  max-width: 760px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.intro {
  width: min(620px, 100%);
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  font-weight: 300;
  line-height: 1.85;
}

.divider {
  width: 220px;
  margin: 34px auto 22px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.divider span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.divider span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.divider i {
  width: 8px;
  height: 8px;
  display: block;
  border: 1px solid var(--gold-light);
  transform: rotate(45deg);
}

.tagline {
  margin: 0;
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  letter-spacing: 0.06em;
}

.notify-form {
  width: min(540px, 100%);
  margin: 34px auto 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 58px;
  padding: 5px;
  border: 1px solid rgba(201, 170, 106, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px);
}

.form-row:focus-within {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(201, 170, 106, 0.1);
}

.form-row input {
  min-width: 0;
  padding: 0 22px;
  color: var(--ivory);
  background: transparent;
  border: 0;
  outline: none;
}

.form-row input::placeholder {
  color: #827c73;
}

.form-row button {
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  color: #17120a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.form-row button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.form-row button:active {
  transform: translateY(0);
}

.form-status {
  margin: 12px 0 0;
  min-height: 20px;
  color: #8f887e;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.form-status.success {
  color: var(--gold-light);
}

.form-status.error {
  color: #e3a09a;
}

.social-links {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  color: #817a71;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-links a {
  transition: color 180ms ease;
}

.social-links a:hover {
  color: var(--gold-light);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: reveal 700ms cubic-bezier(.2,.7,.2,1) forwards;
}

.reveal-one { animation-delay: 80ms; }
.reveal-two { animation-delay: 160ms; }
.reveal-three { animation-delay: 240ms; }
.reveal-four { animation-delay: 320ms; }
.reveal-five { animation-delay: 400ms; }
.reveal-six { animation-delay: 480ms; }
.reveal-seven { animation-delay: 560ms; }
.reveal-eight { animation-delay: 640ms; }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 720px) {
  .page-shell {
    padding: 0 20px;
  }

  .site-header,
  .site-footer {
    min-height: 68px;
  }

  .hero {
    min-height: calc(100vh - 136px);
    padding: 44px 0;
  }

  .hero::before {
    width: 330px;
    height: 330px;
  }

  .hero::after {
    width: 440px;
    height: 440px;
  }

  .logo-wrap {
    width: 112px;
    height: 112px;
    margin-bottom: 24px;
  }

  .eyebrow {
    font-size: 0.58rem;
    line-height: 1.8;
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 5rem);
  }

  .intro {
    max-width: 540px;
    line-height: 1.7;
  }

  .site-footer {
    gap: 20px;
    font-size: 0.58rem;
  }
}

@media (max-width: 520px) {
  .form-row {
    grid-template-columns: 1fr;
    padding: 5px;
    border-radius: 24px;
  }

  .form-row input {
    min-height: 50px;
    text-align: center;
  }

  .form-row button {
    min-height: 48px;
  }

  .site-footer {
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    text-align: center;
  }
}

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