@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400&family=Tangerine:wght@400;700&display=swap');
 
* {
  box-sizing: border-box;
}
 
body {
  margin: 0;
  background: #020202;
  color: #f2f0e8;
  font-family: "Cormorant Garamond", serif;
  overflow-x: hidden;
}
 
/* START SCREEN */
 
.start-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.10), transparent 36%),
    radial-gradient(circle at center, rgba(215, 196, 141, 0.08), transparent 52%),
    linear-gradient(to bottom, #020202 0%, #090909 48%, #020202 100%);
}
 
.start-content {
  width: 100%;
  max-width: 900px;
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
 
.hero-logo {
  width: min(620px, 92vw);
  display: block;
  margin: 0 auto clamp(90px, 14vh, 150px);
  opacity: 0;
  animation: logoFadeIn 2.2s ease forwards;
  filter:
    drop-shadow(0 0 22px rgba(255, 255, 255, 0.18))
    drop-shadow(0 0 36px rgba(215, 196, 141, 0.10));
}
 
@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
 
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 
.start-button {
  font-family: "Cinzel", serif;
  background: transparent;
  border: none;
  color: #f2f0e8;
  font-size: clamp(1.1rem, 3.6vw, 1.8rem);
  letter-spacing: clamp(5px, 1.4vw, 10px);
  cursor: pointer;
  opacity: 0;
  animation:
    startAppear 1.4s ease forwards 1.6s,
    breathe 3.2s ease-in-out infinite 3s;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.42);
}
 
.start-button:hover {
  color: #d7c48d;
}
 
@keyframes startAppear {
  to {
    opacity: 1;
  }
}
 
@keyframes breathe {
  0%, 100% {
    opacity: 0.32;
  }
 
  45%, 55% {
    opacity: 1;
  }
}
 
/* TRANSITIONS */
 
.hidden {
  display: none;
}
 
.fade-out {
  animation: fadeOut 1.15s ease forwards;
}
 
@keyframes fadeOut {
  to {
    opacity: 0;
  }
}
 
.black-transition {
  position: fixed;
  inset: 0;
  z-index: 10;
  opacity: 0;
  /* Safety net: even if JS ever leaves "active" and "hidden" on this
     element at the same time again, it must never intercept clicks
     unless it is actually mid-animation. */
  pointer-events: none;
}
 
.black-transition.active {
  display: block;
  pointer-events: auto;
  animation: blackHold 1.65s ease forwards;
}
 
/* Belt-and-suspenders: if "hidden" and "active" ever co-occur, hidden
   must always win. This selector matches both classes together, so its
   specificity (0,2,0) ties .black-transition.active on specificity, and
   being later in source order lets it win the cascade, forcing display:none. */
.black-transition.active.hidden {
  display: none;
  pointer-events: none;
}
 
@keyframes blackHold {
  0% { opacity: 0; }
  28% { opacity: 1; }
  72% { opacity: 1; }
  100% { opacity: 0; }
}
 
/* LETTER PAGE */
 
.letter-screen {
  min-height: 100vh;
  padding: 90px 22px 110px;
  background:
    radial-gradient(circle at center top, rgba(215, 196, 141, 0.08), transparent 36%),
    linear-gradient(rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.96)),
    #050505;
  opacity: 0;
}
 
.letter-screen.fade-in {
  animation: letterReveal 1.8s ease forwards;
}
 
@keyframes letterReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
 
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 
.letter-box {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 78px) clamp(28px, 7vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 14%, transparent 86%, rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.045), transparent 62%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.32)),
    rgba(0, 0, 0, 0.66);
  border: 1px solid rgba(242, 240, 232, 0.22);
  border-radius: 2px;
  box-shadow:
    0 0 90px rgba(0, 0, 0, 0.82),
    inset 0 0 54px rgba(255, 255, 255, 0.035),
    inset 0 0 110px rgba(0, 0, 0, 0.45);
  line-height: 1.86;
  font-size: clamp(1.18rem, 2.25vw, 1.36rem);
}
 
.letter-box::before,
.letter-box::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(242, 240, 232, 0.42), transparent);
  pointer-events: none;
}
 
.letter-box::before {
  top: 22px;
}
 
.letter-box::after {
  bottom: 22px;
}
 
.letter-logo {
  display: block;
  width: min(170px, 42vw);
  margin: 0 auto 34px;
  opacity: 0.78;
  filter: drop-shadow(0 0 14px rgba(215, 196, 141, 0.12));
}
 
.letter-box h1 {
  font-family: "Cinzel", serif;
  text-align: center;
  color: #f2f0e8;
  font-size: clamp(2.1rem, 6vw, 3.3rem);
  font-weight: 400;
  letter-spacing: 5px;
  margin: 0 0 18px;
}
 
.letter-box h1::before,
.letter-box h1::after {
  content: "";
  display: block;
  width: min(220px, 58vw);
  height: 1px;
  margin: 0 auto 24px;
  background: linear-gradient(to right, transparent, rgba(242, 240, 232, 0.62), transparent);
}
 
.letter-box h1::after {
  margin: 24px auto 48px;
}

.letter-box h2 {
  margin: 26px 0 36px;
  font-family: "Cinzel", serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 5vw, 2.65rem);
  letter-spacing: 3px;
  color: #d7c48d;
  text-align: center;
}

.letter-subtitle {
  margin: -16px auto 34px;
  max-width: 620px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  color: rgba(242, 240, 232, 0.68);
  text-align: center;
}
 
.letter-box p {
  margin: 0 0 24px;
}
 
.letter-box p:first-of-type,
.final-line {
  font-family: "Tangerine", cursive;
  font-weight: 700;
  text-align: center;
  color: #d7c48d;
  line-height: 1.1;
}
 
.letter-box p:first-of-type {
  font-size: clamp(2.3rem, 6vw, 3.4rem);
  margin-bottom: 42px;
}
 
.final-line {
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  margin-top: 58px;
}
 
/* LETTER SOCIAL LINKS */

.letter-links {
  margin: 56px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.letter-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  padding: 11px 16px;
  color: #f2f0e8;
  border: 1px solid rgba(242, 240, 232, 0.38);
  background: rgba(5, 5, 5, 0.56);
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.letter-links a:hover,
.letter-links a:focus-visible {
  color: #d7c48d;
  border-color: #d7c48d;
  background: rgba(215, 196, 141, 0.06);
  box-shadow: 0 0 14px rgba(215, 196, 141, 0.15);
  outline: none;
}

.letter-links-note {
  width: 100%;
  margin: 0 0 2px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  color: rgba(242, 240, 232, 0.58);
}

/* JOIN FORM */
 
.join-form {
  margin: 64px auto 0;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* Moved out of the mobile-only media query so the form is always
     above any full-page overlay, on every viewport width. */
  position: relative;
  z-index: 20;
}
 
.join-form input,
.join-form button {
  position: relative;
  z-index: 20;
  pointer-events: auto;
}
 
.join-form input {
  width: 100%;
  padding: 15px 16px;
  background: rgba(5, 5, 5, 0.92);
  border: 1px solid rgba(242, 240, 232, 0.42);
  color: #f2f0e8;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.16rem;
  text-align: center;
  outline: none;
}
 
.join-form input::placeholder {
  color: rgba(242, 240, 232, 0.56);
}
 
.join-form input:focus {
  border-color: #d7c48d;
  box-shadow: 0 0 12px rgba(215, 196, 141, 0.18);
}
 
.join-form button {
  padding: 16px;
  background: transparent;
  color: #f2f0e8;
  border: 1px solid rgba(242, 240, 232, 0.62);
  font-family: "Cinzel", serif;
  font-size: 0.95rem;
  letter-spacing: 2.6px;
  cursor: pointer;
  text-transform: uppercase;
}
 
.join-form button:hover {
  border-color: #d7c48d;
  color: #d7c48d;
  box-shadow: 0 0 14px rgba(215, 196, 141, 0.16);
}
 
/* SIMPLE CONTENT SECTIONS */

.content-section {
  max-width: 820px;
  margin: 74px auto 0;
  padding: clamp(34px, 6vw, 56px) clamp(24px, 6vw, 56px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.032), rgba(0, 0, 0, 0.30)),
    rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(242, 240, 232, 0.18);
  box-shadow:
    0 0 70px rgba(0, 0, 0, 0.62),
    inset 0 0 42px rgba(255, 255, 255, 0.025);
}

.content-section h2 {
  margin: 0 0 28px;
  font-family: "Cinzel", serif;
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 400;
  letter-spacing: 2px;
  text-align: center;
  color: #f2f0e8;
}

.content-section h3 {
  margin: 26px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #d7c48d;
}

.content-section p {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.08rem, 2.5vw, 1.22rem);
  line-height: 1.65;
  color: rgba(242, 240, 232, 0.78);
}

.content-section a {
  color: #d7c48d;
  text-decoration: none;
  border-bottom: 1px solid rgba(215, 196, 141, 0.38);
}

.content-section a:hover,
.content-section a:focus-visible {
  color: #f2f0e8;
  border-bottom-color: #f2f0e8;
  outline: none;
}

.faq-item + .faq-item {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(242, 240, 232, 0.12);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.contact-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 12px 16px;
  border: 1px solid rgba(242, 240, 232, 0.38);
  background: rgba(5, 5, 5, 0.56);
  color: #f2f0e8;
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
}

.contact-actions a:hover,
.contact-actions a:focus-visible {
  color: #d7c48d;
  border-color: #d7c48d;
  box-shadow: 0 0 14px rgba(215, 196, 141, 0.15);
  outline: none;
}

/* MOBILE */
 
@media (max-width: 600px) {
  .start-content {
    min-height: 68vh;
  }
 
  .hero-logo {
    width: min(430px, 92vw);
    margin-bottom: 82px;
  }
 
  .letter-screen {
    padding: 46px 16px 64px;
  }
 
  .letter-box {
    line-height: 1.7;
  }
 
  .letter-box p:first-of-type {
    font-size: 2.4rem;
  }
 
  .final-line {
    font-size: 2.6rem;
  }
 
  .start-button {
    letter-spacing: 4px;
  }

  .letter-links {
    gap: 10px;
    margin-top: 42px;
  }

  .letter-links a,
  .contact-actions a {
    width: 100%;
  }

  .content-section {
    margin-top: 52px;
  }
}
 