/* ==============================================================
   RHEA REIGNS  ·  WORSHIP PAGE
   Hero · Manifesto · Words form · Wishlist · Tributes · Code
   ============================================================== */

/* ============ HERO ============ */
.worship-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 200px 40px 160px;
  overflow: hidden;
}
.worship-hero__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
.worship-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 9, 8, 0.78) 0%,
    rgba(10, 9, 8, 0.92) 100%);
}
.worship-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.worship-hero__kicker {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 48px;
}
.worship-hero__title {
  font-family: 'Italiana', serif;
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 1.04;
  letter-spacing: 0.01em;
  color: var(--bone);
  margin: 0 0 44px;
  font-weight: 400;
}
.worship-hero__title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.worship-hero__lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.6;
  color: var(--bone);
  letter-spacing: 0.005em;
  max-width: 620px;
  margin: 0 auto 56px;
}
.worship-hero__lede em { color: var(--gold); }

/* Ornament (rule + diamond + rule) */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.ornament .rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.ornament .dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.7;
}

/* ============ SHARED · section heads ============ */
.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 96px;
  padding: 0 40px;
}
.worship-numeral {
  font-family: 'Italiana', serif;
  font-size: 13px;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 32px;
}
.section-head__title {
  font-family: 'Italiana', serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--bone);
  margin: 0 0 28px;
  font-weight: 400;
}
.section-head__title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.section-head__sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--bone-dim);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto;
}

/* ============ I · MANIFESTO ============ */
.worship-manifesto {
  padding: 180px 40px 160px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 720px 600px at center,
      rgba(176, 141, 87, 0.04) 0%,
      transparent 65%);
}
.worship-manifesto__inner {
  max-width: 760px;
  margin: 0 auto;
}
.worship-manifesto__title {
  font-family: 'Italiana', serif;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--bone);
  margin: 32px 0 56px;
  font-weight: 400;
}
.worship-manifesto__title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
}
.worship-manifesto__body {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.75;
  color: var(--bone);
  letter-spacing: 0.003em;
}
.worship-manifesto__body p {
  margin: 0 0 28px;
}
.worship-manifesto__body p:last-child { margin-bottom: 0; }
.worship-manifesto__body em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

/* ============ II · WORDS FORM ============ */
.words {
  padding: 140px 40px 160px;
  background: var(--ink-soft);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.words-form {
  max-width: 680px;
  margin: 0 auto;
  background:
    linear-gradient(180deg,
      rgba(20, 17, 15, 0.6) 0%,
      rgba(10, 9, 8, 0.4) 100%);
  border: 1px solid var(--rule);
  padding: 72px 64px;
  position: relative;
}
.words-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.4;
}
.field {
  margin-bottom: 36px;
}
.field:last-of-type { margin-bottom: 44px; }
.field__label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 14px;
}
.field__label .opt {
  color: var(--bone-fade);
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 11px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  margin-left: 8px;
}
.field__input,
.field__textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  color: var(--bone);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.6;
  padding: 14px 0;
  letter-spacing: 0.005em;
  transition: border-color .35s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.field__textarea {
  resize: vertical;
  min-height: 160px;
  font-size: 19px;
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
}
.field__input:focus,
.field__textarea:focus {
  border-bottom-color: var(--gold);
}
.field__input::placeholder,
.field__textarea::placeholder {
  color: var(--bone-fade);
  font-style: italic;
  opacity: 0.7;
}

/* Radio group */
.radio-group {
  border: none;
  padding: 0;
  margin: 0 0 36px;
}
.radio-group__legend {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 18px;
  padding: 0;
}
.radio-group__opts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.radio-opt {
  flex: 1;
  min-width: 200px;
  position: relative;
  cursor: pointer;
}
.radio-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-opt__label {
  display: block;
  text-align: center;
  padding: 18px 20px;
  border: 1px solid var(--rule);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--bone-dim);
  transition: all .35s ease;
  user-select: none;
}
.radio-opt:hover .radio-opt__label {
  color: var(--bone);
  border-color: var(--gold-soft);
}
.radio-opt input:checked + .radio-opt__label {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(176, 141, 87, 0.05);
}
.radio-opt input:focus-visible + .radio-opt__label {
  outline: 1px solid var(--gold);
  outline-offset: 2px;
}

/* Honeypot */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* Submit */
.words-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 22px 48px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--bone);
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color .35s ease;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}
.words-form__submit::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 100%;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .55s cubic-bezier(.6, 0, 0.4, 1);
  z-index: -1;
}
.words-form__submit:hover { color: var(--ink); }
.words-form__submit:hover::before { transform: translateX(0); }
.words-form__submit .arrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0;
  transition: transform .4s ease;
}
.words-form__submit:hover .arrow { transform: translateX(5px); }

.words-form__success {
  text-align: center;
  padding: 48px 0;
  display: none;
}
.words-form__success.is-shown { display: block; }
.words-form__success-mark {
  font-family: 'Italiana', serif;
  font-size: 13px;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.words-form__success-msg {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.5;
  color: var(--bone);
  max-width: 420px;
  margin: 0 auto;
}

/* Privacy note (below submit) */
.words-form__note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--bone-fade);
  text-align: center;
  margin: 24px 0 0;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* Submit disabled state (during send) */
.words-form__submit:disabled {
  cursor: wait;
  opacity: 0.7;
}
.words-form__submit:disabled::before { transform: translateX(-101%); }
.words-form__submit:disabled:hover { color: var(--bone); }

/* Error state */
.words-form__error {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(176, 80, 60, 0.4);
  background: rgba(176, 80, 60, 0.05);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: #d6a899;
  text-align: center;
  letter-spacing: 0.005em;
}
.words-form__error.is-shown { display: block; }

/* ============ III · WISHLIST ============ */
.wishlist {
  padding: 160px 40px 160px;
}
.wishlist-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.wish {
  padding: 64px 56px 56px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background .5s ease;
}
.wish:hover {
  background: rgba(176, 141, 87, 0.025);
}
.wish__num {
  font-family: 'Italiana', serif;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 20px;
}
.wish__cat {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--bone-fade);
  margin-bottom: 24px;
}
.wish__name {
  font-family: 'Italiana', serif;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--bone);
  margin: 0 0 24px;
  font-weight: 400;
}
.wish__desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--bone);
  letter-spacing: 0.003em;
  margin: 0 0 36px;
  flex-grow: 1;
}
.wish__link {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: gap .4s ease;
  align-self: flex-start;
}
.wish__link:hover { gap: 18px; }
.wish__link .arrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0;
}

/* ============ IV · TRIBUTES ============ */
.tributes {
  padding: 140px 40px 160px;
  background: var(--ink-soft);
  border-top: 1px solid var(--rule);
}
.tribute-list {
  max-width: 880px;
  margin: 0 auto;
}
.tribute {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding .4s ease;
}
.tribute:first-child { border-top: 1px solid var(--rule); }
.tribute:hover {
  padding-left: 16px;
}
.tribute__num {
  font-family: 'Italiana', serif;
  font-size: 24px;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.tribute__body { min-width: 0; }
.tribute__name {
  font-family: 'Italiana', serif;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.15;
  color: var(--bone);
  margin: 0 0 8px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.tribute__desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--bone-dim);
  margin: 0;
  letter-spacing: 0.003em;
}
.tribute__link {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: gap .4s ease;
}
.tribute__link:hover { gap: 18px; }
.tribute__link .arrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0;
}

/* ============ V · CODE ============ */
.code-of-worship {
  padding: 200px 40px 200px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 720px 600px at center,
      rgba(176, 141, 87, 0.05) 0%,
      transparent 65%);
}
.code-of-worship__inner {
  max-width: 760px;
  margin: 0 auto;
}
.code-of-worship__numeral {
  font-family: 'Italiana', serif;
  font-size: 13px;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 36px;
}
.code-of-worship__title {
  font-family: 'Italiana', serif;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--bone);
  margin: 0 0 80px;
  font-weight: 400;
}
.code-of-worship__title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
}
.code-of-worship__verses {
  position: relative;
  padding: 72px 0;
}
.code-of-worship__verses::before,
.code-of-worship__verses::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: var(--rule);
  margin: 0 auto;
}
.code-of-worship__verses::before { margin-bottom: 72px; }
.code-of-worship__verses::after { margin-top: 72px; }
.code-of-worship__verse {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.55;
  color: var(--bone);
  letter-spacing: 0.005em;
  margin: 0 0 44px;
}
.code-of-worship__verse:last-child { margin-bottom: 0; }
.code-of-worship__verse em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .wishlist-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .worship-hero {
    padding: 140px 22px 110px;
    min-height: 80vh;
  }
  .worship-hero__kicker { font-size: 10px; letter-spacing: 0.42em; margin-bottom: 32px; }
  .worship-hero__lede { font-size: 17px; margin-bottom: 40px; }

  .worship-manifesto { padding: 100px 22px 90px; }
  .worship-manifesto__title { margin: 24px 0 36px; }
  .worship-manifesto__body { font-size: 17px; }

  .words { padding: 90px 22px 100px; }
  .words-form { padding: 48px 28px; }
  .field__textarea { font-size: 17px; min-height: 140px; }
  .radio-group__opts { flex-direction: column; gap: 10px; }

  .wishlist { padding: 90px 22px 90px; }
  .wish { padding: 48px 32px 44px; }
  .wish__name { font-size: 26px; }
  .wish__desc { font-size: 16px; margin-bottom: 28px; }

  .tributes { padding: 90px 22px 100px; }
  .tribute {
    grid-template-columns: 36px 1fr;
    gap: 16px 18px;
    padding: 28px 0;
  }
  .tribute__num { font-size: 20px; }
  .tribute__name { font-size: 22px; }
  .tribute__link {
    grid-column: 1 / -1;
    margin-top: 4px;
    font-size: 10px;
    letter-spacing: 0.36em;
  }

  .code-of-worship { padding: 110px 22px 110px; }
  .code-of-worship__title { margin-bottom: 44px; }
  .code-of-worship__verses { padding: 48px 0; }
  .code-of-worship__verses::before { margin-bottom: 44px; }
  .code-of-worship__verses::after { margin-top: 44px; }
  .code-of-worship__verse { font-size: 18px; margin-bottom: 28px; }

  .section-head { margin-bottom: 56px; padding: 0 22px; }
}
