/* ========================================================================
   MJESEČKI SINOD — Stylesheet
   The Holy Institution of Coffee & Idle Philosophizing
   ======================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  --gold: #C5A55A;
  --gold-light: #E8D5A3;
  --gold-dark: #8B7332;
  --deep-navy: #0A0A1A;
  --burgundy: #6B1D2A;
  --burgundy-light: #8B2E3D;
  --parchment: #F5E6C8;
  --text-light: #E8DCC8;
  --text-gold: #D4B96A;

  --font-display: 'Cinzel Decorative', serif;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', serif;

  --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
  --transition-smooth: 0.35s var(--ease-out-cubic);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-light);
  background-color: var(--deep-navy);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><text y='18' font-size='18'>☕</text></svg>") 12 12, auto;
}

/* Atmospheric gradient overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(197, 165, 90, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(107, 29, 42, 0.06) 0%, transparent 60%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
}

button {
  cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><text y='18' font-size='18'>☕</text></svg>") 12 12, pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ---------- Focus States ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Language Toggle ---------- */
.lang-toggle {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  display: flex;
  gap: 0;
  border: 1px solid rgba(197, 165, 90, 0.4);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(10, 10, 26, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lang-btn {
  padding: 0.45rem 0.9rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-light);
  transition: all var(--transition-smooth);
}

.lang-btn.active {
  background: var(--gold);
  color: var(--deep-navy);
}

.lang-btn:hover:not(.active) {
  background: rgba(197, 165, 90, 0.15);
}

/* ---------- Section Base ---------- */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 4vw, 3rem);
}

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(197, 165, 90, 0.2);
}

.section__subtitle {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--text-gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 1.5rem;
}

/* ---------- Divider ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto 2rem;
  position: relative;
  width: 180px;
}

.divider::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider__diamond,
.divider__coffee {
  position: relative;
  z-index: 1;
  background: var(--deep-navy);
  padding: 0 0.75rem;
  color: var(--gold);
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-cubic), transform 0.8s var(--ease-out-cubic);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback for no-JS */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ========================================================================
   HERO SECTION
   ======================================================================== */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 2rem clamp(1.25rem, 4vw, 3rem);
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(197, 165, 90, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(107, 29, 42, 0.06) 0%, transparent 50%);
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

/* Steam Particles */
.steam-container {
  position: relative;
  width: 60px;
  height: 50px;
  margin-bottom: -0.5rem;
}

.steam-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: steamFloat 2.8s ease-out infinite;
}

.steam-particle:nth-child(1) { left: 15%; animation-delay: 0s; }
.steam-particle:nth-child(2) { left: 35%; animation-delay: 0.5s; }
.steam-particle:nth-child(3) { left: 55%; animation-delay: 1.0s; }
.steam-particle:nth-child(4) { left: 75%; animation-delay: 1.5s; }
.steam-particle:nth-child(5) { left: 45%; animation-delay: 2.0s; }

@keyframes steamFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  20% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-45px) scale(0.3);
  }
}

/* Hero Icon */
.hero__icon {
  font-size: 5rem;
  line-height: 1;
  filter: drop-shadow(0 0 20px rgba(197, 165, 90, 0.4));
  animation: goldenGlow 3s ease-in-out infinite alternate;
}

@keyframes goldenGlow {
  0% { filter: drop-shadow(0 0 15px rgba(197, 165, 90, 0.3)); }
  100% { filter: drop-shadow(0 0 35px rgba(197, 165, 90, 0.6)); }
}

/* Hero Title */
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  color: var(--gold);
  text-shadow:
    0 0 40px rgba(197, 165, 90, 0.3),
    0 0 80px rgba(197, 165, 90, 0.1);
  line-height: 1.15;
}

/* Hero Subtitle */
.hero__subtitle {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(0.8rem, 1.8vw, 1.1rem);
  color: var(--text-gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 0.2rem;
}

/* Hero Quote */
.hero__quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-light);
  opacity: 0.7;
  max-width: 600px;
  line-height: 1.7;
  margin-top: 0.5rem;
  border: none;
  padding: 0;
}

/* Scroll Hint */
.hero__scroll-hint {
  margin-top: 2rem;
  display: inline-block;
  color: var(--gold);
  opacity: 0.5;
  transition: opacity var(--transition-smooth);
}

.hero__scroll-hint:hover {
  opacity: 1;
}

.scroll-arrow {
  display: block;
  font-size: 1.8rem;
  animation: bobDown 1.8s ease-in-out infinite;
}

@keyframes bobDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ========================================================================
   ABOUT SECTION
   ======================================================================== */
.about__text {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
  opacity: 0.85;
}

/* ========================================================================
   COUNCIL SECTION
   ======================================================================== */
.council__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.member-card {
  position: relative;
  background: rgba(197, 165, 90, 0.03);
  border: 1px solid rgba(197, 165, 90, 0.12);
  border-radius: 6px;
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.member-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 165, 90, 0.4);
  box-shadow: 0 8px 40px rgba(197, 165, 90, 0.12);
}

.member-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #1A2744;
}

.member-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-cubic);
}

.member-card:hover .member-card__image-wrap img {
  transform: scale(1.05);
}

.member-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--deep-navy) 100%);
  pointer-events: none;
}

.member-card__info {
  padding: 1.2rem 1rem 1.5rem;
}

.member-card__rank {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(0.6rem, 1vw, 0.72rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.member-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.member-card__jurisdiction {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(0.8rem, 1.1vw, 0.92rem);
  color: var(--text-light);
  opacity: 0.6;
  line-height: 1.5;
}

/* ========================================================================
   SACRED COMMANDMENTS
   ======================================================================== */
.commandments__list {
  max-width: 800px;
  margin: 2rem auto 0;
  text-align: left;
}

.commandment {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--gold);
  margin-bottom: 0.75rem;
  background: rgba(197, 165, 90, 0.02);
  transition: background var(--transition-smooth), transform var(--transition-smooth);
  border-radius: 0 4px 4px 0;
}

.commandment:hover {
  background: rgba(197, 165, 90, 0.06);
  transform: translateX(5px);
}

.commandment__numeral {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--gold);
  flex-shrink: 0;
  min-width: 2.5rem;
}

.commandment__text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: var(--text-light);
  opacity: 0.9;
}

/* ========================================================================
   COFFEE ORACLE
   ======================================================================== */
.oracle {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(107, 29, 42, 0.12) 0%, transparent 60%);
}

.oracle__cup-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0 1.5rem;
}

/* CSS Coffee Cup */
.oracle__cup {
  position: relative;
  padding: 0;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition-smooth);
}

.oracle__cup:hover {
  transform: scale(1.05);
}

.oracle__cup:active {
  transform: scale(0.97);
}

.oracle__cup-steam {
  position: relative;
  width: 60px;
  height: 30px;
  margin-bottom: 4px;
}

.oracle__steam-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: steamFloat 2.4s ease-out infinite;
}

.oracle__steam-dot:nth-child(1) { left: 20%; animation-delay: 0s; }
.oracle__steam-dot:nth-child(2) { left: 50%; animation-delay: 0.7s; }
.oracle__steam-dot:nth-child(3) { left: 75%; animation-delay: 1.4s; }

.oracle__cup-body {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.oracle__cup-mug {
  width: 90px;
  height: 70px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 4px 4px 22px 22px;
  box-shadow: inset 0 -8px 16px rgba(0, 0, 0, 0.3);
}

.oracle__cup-handle {
  width: 24px;
  height: 36px;
  border: 4px solid var(--gold);
  border-left: none;
  border-radius: 0 14px 14px 0;
  margin-top: 10px;
  margin-left: -2px;
}

.oracle__cup-saucer {
  width: 120px;
  height: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  margin-top: -3px;
  box-shadow: 0 4px 16px rgba(197, 165, 90, 0.2);
}

.oracle__instruction {
  font-family: var(--font-heading);
  font-size: clamp(0.8rem, 1.3vw, 0.95rem);
  color: var(--text-gold);
  opacity: 0.7;
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
}

/* Oracle Result */
.oracle__result {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.oracle__wisdom {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--parchment);
  text-shadow: 0 0 20px rgba(197, 165, 90, 0.15);
  max-width: 600px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out-cubic), transform 0.8s var(--ease-out-cubic);
}

.oracle__wisdom.show {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================================================
   HOLY STIR COUNTER
   ======================================================================== */
.counter__display {
  margin: 2rem auto 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.counter__number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--gold);
  text-shadow: 0 0 40px rgba(197, 165, 90, 0.3);
  line-height: 1.1;
}

.counter__label {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(0.8rem, 1.3vw, 0.95rem);
  color: var(--text-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 0.5rem;
}

.counter__btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  letter-spacing: 0.1em;
  color: var(--deep-navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 0.9rem 2.5rem;
  border-radius: 4px;
  border: 1px solid var(--gold);
  transition: all var(--transition-smooth);
  text-transform: uppercase;
}

.counter__btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 4px 20px rgba(197, 165, 90, 0.3);
  transform: translateY(-2px);
}

.counter__btn:active {
  transform: translateY(0);
}

/* Flying Spoon */
.flying-spoon {
  position: fixed;
  pointer-events: none;
  font-size: 1.8rem;
  z-index: 9999;
  animation: flySpoon 1s var(--ease-out-cubic) forwards;
}

@keyframes flySpoon {
  0% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-120px) rotate(360deg);
  }
}

/* ========================================================================
   MEMBERSHIP APPLICATION
   ======================================================================== */
.membership__form {
  position: relative;
  max-width: 600px;
  margin: 2rem auto 0;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(197, 165, 90, 0.25);
  border-radius: 6px;
  background: rgba(10, 10, 26, 0.5);
}

.form__ornament-top,
.form__ornament-bottom {
  text-align: center;
  font-size: 1.5rem;
  opacity: 0.4;
  color: var(--gold);
}

.form__ornament-top {
  margin-bottom: 1.5rem;
}

.form__ornament-bottom {
  margin-top: 1.5rem;
}

.form__group {
  margin-bottom: 1.25rem;
  text-align: left;
}

.form__label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-light);
  background: rgba(197, 165, 90, 0.05);
  border: 1px solid rgba(197, 165, 90, 0.2);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition-smooth), background var(--transition-smooth);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--gold);
  background: rgba(197, 165, 90, 0.08);
  outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(232, 220, 200, 0.3);
}

/* Custom Select */
.form__select-wrap {
  position: relative;
}

.form__select-wrap::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--gold);
  pointer-events: none;
}

.form__select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
}

/* Range Slider */
.form__range-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form__range {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: rgba(197, 165, 90, 0.2);
  border-radius: 2px;
  outline: none;
}

.form__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><text y='18' font-size='18'>☕</text></svg>") 12 12, pointer;
  box-shadow: 0 0 8px rgba(197, 165, 90, 0.4);
}

.form__range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(197, 165, 90, 0.4);
}

.form__range-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--gold);
  min-width: 2rem;
  text-align: center;
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

/* Submit Button */
.form__submit {
  display: block;
  width: 100%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--deep-navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 1rem;
  margin-top: 0.5rem;
  transition: all var(--transition-smooth);
}

.form__submit:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 4px 20px rgba(197, 165, 90, 0.3);
  transform: translateY(-2px);
}

.form__submit:active {
  transform: translateY(0);
}

/* Rejection Message */
.membership__rejection {
  max-width: 600px;
  margin: 2rem auto 0;
  padding: 1.5rem 2rem;
  border: 1px solid var(--burgundy);
  border-radius: 6px;
  background: rgba(107, 29, 42, 0.15);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out-cubic), transform 0.8s var(--ease-out-cubic);
}

.membership__rejection.show {
  opacity: 1;
  transform: translateY(0);
}

.rejection__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.rejection__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--burgundy-light);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rejection__text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
  opacity: 0.85;
}

/* ========================================================================
   HOLY NAME GENERATOR
   ======================================================================== */
.holyname__body {
  max-width: 600px;
  margin: 0 auto;
}

.holyname__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.holyname__btn {
  display: block;
  width: 100%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--deep-navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 1rem;
  transition: all var(--transition-smooth);
}

.holyname__btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 4px 20px rgba(197, 165, 90, 0.3);
  transform: translateY(-2px);
}

.holyname__btn:active {
  transform: translateY(0);
}

.holyname__result {
  margin-top: 1.5rem;
}

.holyname__card {
  padding: 2rem;
  border: 1px solid rgba(197, 165, 90, 0.3);
  border-radius: 6px;
  background: rgba(197, 165, 90, 0.04);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out-cubic), transform 0.8s var(--ease-out-cubic);
}

.holyname__card.show {
  opacity: 1;
  transform: translateY(0);
}

.holyname__card-ornament {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.75rem;
  opacity: 0.5;
}

.holyname__card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--gold);
  text-shadow: 0 0 20px rgba(197, 165, 90, 0.2);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.holyname__card-title {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--parchment);
  line-height: 1.6;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.holyname__card-eparchy {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
}

.holyname__download {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 1.25rem auto 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(197, 165, 90, 0.35);
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  transition: all var(--transition-smooth);
}

.holyname__download:hover {
  background: var(--gold);
  color: var(--deep-navy);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(197, 165, 90, 0.25);
}

/* ========================================================================
   EXCOMMUNICATION CHECK
   ======================================================================== */
.excomm {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(107, 29, 42, 0.08) 0%, transparent 60%);
}

.excomm__body {
  max-width: 600px;
  margin: 0 auto;
}

.excomm__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.excomm__btn {
  display: block;
  width: 100%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--deep-navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 1rem;
  transition: all var(--transition-smooth);
}

.excomm__btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 4px 20px rgba(197, 165, 90, 0.3);
  transform: translateY(-2px);
}

.excomm__btn:active {
  transform: translateY(0);
}

.excomm__result {
  min-height: 100px;
  margin-top: 1.5rem;
}

.excomm__verdict {
  padding: 1.5rem 2rem;
  border: 1px solid var(--burgundy);
  border-radius: 6px;
  background: rgba(107, 29, 42, 0.15);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out-cubic), transform 0.8s var(--ease-out-cubic);
}

.excomm__verdict.show {
  opacity: 1;
  transform: translateY(0);
}

.excomm__verdict-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.excomm__verdict-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--burgundy-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.excomm__verdict-confession {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  opacity: 0.75;
  font-style: italic;
}

.excomm__verdict-reason {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--parchment);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.excomm__verdict-sentence {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ========================================================================
   HERESY DETECTOR
   ======================================================================== */
.heresy__quiz {
  max-width: 650px;
  margin: 2rem auto 0;
  text-align: left;
}

.heresy__question {
  border: none;
  margin-bottom: 1.5rem;
  padding: 0;
}

.heresy__legend {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  display: block;
}

.heresy__option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.8rem;
  margin-bottom: 0.35rem;
  border-radius: 4px;
  cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><text y='18' font-size='18'>☕</text></svg>") 12 12, pointer;
  transition: background var(--transition-smooth);
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-light);
}

.heresy__option:hover {
  background: rgba(197, 165, 90, 0.06);
}

/* Hide native radio */
.heresy__radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Custom radio mark */
.heresy__radio-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(197, 165, 90, 0.35);
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--transition-smooth);
}

.heresy__radio:checked + .heresy__radio-mark {
  border-color: var(--gold);
}

.heresy__radio:checked + .heresy__radio-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--gold);
}

.heresy__radio:focus-visible + .heresy__radio-mark {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.heresy__submit {
  display: block;
  width: 100%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--deep-navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 1rem;
  margin-top: 1rem;
  transition: all var(--transition-smooth);
}

.heresy__submit:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 4px 20px rgba(197, 165, 90, 0.3);
  transform: translateY(-2px);
}

.heresy__submit:active {
  transform: translateY(0);
}

/* Heresy Result */
.heresy__result {
  max-width: 650px;
  margin: 2rem auto 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out-cubic), transform 0.8s var(--ease-out-cubic);
}

.heresy__result.show {
  opacity: 1;
  transform: translateY(0);
}

.heresy__meter {
  width: 100%;
  height: 12px;
  background: rgba(197, 165, 90, 0.1);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid rgba(197, 165, 90, 0.15);
}

.heresy__meter-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--burgundy-light));
  border-radius: 6px;
  transition: width 1.5s var(--ease-out-cubic);
}

.heresy__percent {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--gold);
  text-shadow: 0 0 30px rgba(197, 165, 90, 0.25);
  display: block;
  margin-bottom: 0.5rem;
}

.heresy__comment {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--parchment);
  line-height: 1.6;
  opacity: 0.85;
}

/* ========================================================================
   HOLY CALENDAR
   ======================================================================== */
.calendar__wrap {
  max-width: 700px;
  margin: 0 auto;
}

.calendar__header {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.25rem;
}

.calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}

.calendar__weekdays span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--text-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem 0;
  opacity: 0.6;
}

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  color: var(--text-light);
  background: rgba(197, 165, 90, 0.03);
  border: 1px solid rgba(197, 165, 90, 0.08);
  border-radius: 4px;
  cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><text y='18' font-size='18'>☕</text></svg>") 12 12, pointer;
  transition: all var(--transition-smooth);
  position: relative;
}

.calendar__day:hover {
  background: rgba(197, 165, 90, 0.1);
  border-color: rgba(197, 165, 90, 0.3);
}

.calendar__day.is-today {
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(197, 165, 90, 0.2);
}

.calendar__day.is-holiday {
  background: rgba(197, 165, 90, 0.08);
  border-color: var(--gold);
  color: var(--gold);
}

.calendar__day.is-holiday::after {
  content: '☕';
  position: absolute;
  top: 2px;
  right: 3px;
  font-size: 0.55rem;
  opacity: 0.7;
}

.calendar__day.selected {
  background: rgba(197, 165, 90, 0.15);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.calendar__day.empty {
  background: none;
  border-color: transparent;
  cursor: default;
}

.calendar__detail {
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(197, 165, 90, 0.15);
  border-radius: 6px;
  background: rgba(197, 165, 90, 0.03);
  min-height: 80px;
  text-align: center;
}

.calendar__detail-text {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--text-light);
  line-height: 1.6;
  opacity: 0.75;
}

.calendar__detail-holiday {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--gold);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.4rem;
}

/* ========================================================================
   SACRED MERCHANDISE
   ======================================================================== */
.merch__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.merch__card {
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(197, 165, 90, 0.12);
  border-radius: 6px;
  background: rgba(197, 165, 90, 0.03);
  text-align: center;
  transition: border-color var(--transition-smooth), background var(--transition-smooth);
}

.merch__card:hover {
  border-color: rgba(197, 165, 90, 0.3);
  background: rgba(197, 165, 90, 0.06);
}

.merch__icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.merch__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.merch__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-light);
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.merch__price {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--text-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 0.75rem;
}

.merch__btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-gold);
  background: transparent;
  border: 1px solid rgba(197, 165, 90, 0.2);
  border-radius: 4px;
  padding: 0.5rem 1.5rem;
  opacity: 0.5;
  cursor: default;
}

/* ========================================================================
   SYNOD BLEND
   ======================================================================== */
.blend__body {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.blend__visual {
  font-size: 5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(197, 165, 90, 0.3));
}

.blend__badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep-navy);
  background: var(--gold);
  padding: 0.4rem 1.25rem;
  border-radius: 3px;
  margin-bottom: 1.25rem;
}

.blend__desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-light);
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.blend__signup {
  text-align: left;
}

.blend__signup-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.blend__signup-row .form__input {
  flex: 1;
}

.blend__signup-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep-navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
  transition: all var(--transition-smooth);
}

.blend__signup-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 4px 20px rgba(197, 165, 90, 0.3);
}

.blend__signup-msg {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  opacity: 0.8;
  margin-top: 0.75rem;
  text-align: center;
}

/* ========================================================================
   INSTAGRAM
   ======================================================================== */
.instagram {
  padding-top: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 4rem);
}

.instagram__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.9rem 2rem;
  border: 1px solid rgba(197, 165, 90, 0.35);
  border-radius: 4px;
  transition: all var(--transition-smooth);
}

.instagram__link:hover {
  background: var(--gold);
  color: var(--deep-navy);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(197, 165, 90, 0.25);
}

.instagram__icon {
  transition: color var(--transition-smooth);
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
}

.footer__line {
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1.5rem;
  opacity: 0.3;
}

.footer__icon {
  display: block;
  font-size: 1.2rem;
  opacity: 0.25;
  margin-bottom: 0.75rem;
}

.footer__text {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--gold);
  opacity: 0.4;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ========================================================================
   RESPONSIVE
   ======================================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .council__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .council__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .commandment {
    flex-direction: column;
    gap: 0.4rem;
  }

  .membership__form {
    padding: 2rem 1.25rem;
  }

  .merch__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .blend__signup-row {
    flex-direction: column;
  }

  .heresy__option {
    font-size: 0.95rem;
    padding: 0.5rem 0.6rem;
  }

  .calendar__day {
    font-size: 0.8rem;
  }

  .lang-toggle {
    top: 1rem;
    right: 1rem;
  }
}

/* ========================================================================
   NO-JS FALLBACK
   ======================================================================== */
@media (scripting: none) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
