/* ==============================================
   LIGHT THEME — Ivory & Gold
   Вистава-Подорож · Пасхальний День у Єрусалимі
============================================== */

/* ==============================================
   VARIABLES
============================================== */
:root {
  --gold:        #9a7018;
  --gold-light:  #c89030;
  --gold-pale:   #7a5510;
  --gold-alpha:  rgba(154, 112, 24, 0.10);
  --gold-border: rgba(154, 112, 24, 0.22);

  --bg:          #faf6ee;
  --bg-card:     rgba(255, 252, 246, 0.92);
  --bg-card-h:   #fffdf8;

  --text:        #1e1a0e;
  --text-muted:  #6a5c3a;
  --text-dim:    #9a8c6e;

  --radius:      6px;
  --max-w:       1400px;
  --nav-h:       72px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==============================================
   RESET & BASE
============================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 17px;
  overflow-x: hidden;
}

body {
  font-family: 'EB Garamond', Georgia, serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  max-width: 100%;
  line-height: 1.6;
}

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

/* ==============================================
   SCROLLBAR
============================================== */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: #ede4d0; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ==============================================
   CANVAS BACKGROUND — hidden in light theme
============================================== */
#star-canvas { display: none; }

/* ==============================================
   NOISE OVERLAY
============================================== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ==============================================
   NAVIGATION
============================================== */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(1.5rem, 4vw, 3.5rem);
  background: rgba(250, 246, 238, 0.82);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-block-end: 1px solid rgba(154, 112, 24, 0.14);
  box-shadow: 0 1px 24px rgba(100,70,10,0.06);
  transition: background 0.45s var(--ease-out), box-shadow 0.45s;
}
.nav.is-scrolled {
  background: rgba(250, 246, 238, 0.97);
  box-shadow: 0 2px 32px rgba(100,70,10,0.12);
}

.nav__logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-decoration: none;
  line-height: 1;
}
.nav__logo em { color: var(--gold-pale); font-style: normal; }

.nav__list {
  display: flex;
  gap: 2.8rem;
  list-style: none;
}
.nav__list a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding-block-end: 2px;
  transition: color 0.3s;
}
.nav__list a::after {
  content: '';
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out);
}
.nav__list a:hover         { color: var(--gold); }
.nav__list a:hover::after  { width: 100%; }

.nav__cta {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(105deg, var(--gold) 0%, var(--gold-light) 55%, var(--gold) 100%);
  background-size: 200%;
  padding: 0.6rem 1.7rem;
  border-radius: 3px;
  transition: background-position 0.5s, box-shadow 0.35s, transform 0.3s;
  box-shadow: 0 4px 22px rgba(154,112,24,0.28);
}
.nav__cta:hover {
  background-position: right center;
  transform: translateY(-1px);
  box-shadow: 0 6px 30px rgba(154,112,24,0.45);
}

/* hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(8.25px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-8.25px) rotate(-45deg); }

/* mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  inset-block-start: var(--nav-h);
  inset-inline: 0;
  background: rgba(250, 246, 238, 0.98);
  backdrop-filter: blur(20px);
  border-block-end: 1px solid rgba(154,112,24,0.15);
  box-shadow: 0 8px 30px rgba(100,70,10,0.12);
  padding: 2rem 2rem 2.5rem;
  flex-direction: column;
  gap: 1.8rem;
  z-index: 899;
  transform: translateY(-12px);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.35s;
}
.nav__drawer.is-open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.nav__drawer a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
}
.nav__drawer a:hover { color: var(--gold); }
.nav__drawer .nav__cta { align-self: flex-start; font-size: 0.75rem; }
.nav__drawer__theme {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem !important;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold) !important;
  text-decoration: none;
  border-top: 1px solid rgba(154,112,24,0.15);
  padding-top: 1.2rem;
  margin-top: 0.4rem;
  transition: opacity 0.25s;
}
.nav__drawer__theme:hover { opacity: 0.75; }

/* ==============================================
   HERO
============================================== */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) clamp(1.5rem, 5vw, 4rem) 5rem;
  overflow: hidden;
  background:
    linear-gradient(170deg, #f7efe0 0%, #ede0c4 50%, #e5d5ae 100%);
}

/* Radial glow */
.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(200,160,60,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 45% 50% at 20% 80%, rgba(220,180,80,0.06) 0%, transparent 55%);
  pointer-events: none;
}

/* Cross watermark */
.hero__cross {
  position: absolute;
  width: min(700px, 90vw);
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.07;
  pointer-events: none;
  animation: crossBreath 9s ease-in-out infinite;
}
@keyframes crossBreath { 0%,100%{opacity:0.05} 50%{opacity:0.10} }

.hero__particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 860px;
}

.hero__eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s var(--ease-out) forwards;
}

.hero__title {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  line-height: 1.07;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1e1a0e;
  text-shadow: 0 2px 40px rgba(200,150,40,0.15);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s var(--ease-out) forwards;
}
.hero__title .accent { color: var(--gold); }

.hero__divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 40%, var(--gold-light) 60%, transparent);
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s var(--ease-out) forwards;
}

.hero__tagline {
  font-size: clamp(1.08rem, 1.6vw, 1.22rem);
  font-style: italic;
  color: #5a4c2e;
  max-width: 660px;
  line-height: 1.9;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.85s var(--ease-out) forwards;
}

.hero__dates {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp 0.9s 1s var(--ease-out) forwards;
}
.date-chip {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold-pale);
  border: 1px solid rgba(154,112,24,0.35);
  background: rgba(154,112,24,0.07);
  backdrop-filter: blur(6px);
  padding: 0.5rem 1.1rem;
  border-radius: 3px;
}

.hero__badge {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(105deg, var(--gold), var(--gold-light));
  padding: 0.35rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp 0.9s 1.1s var(--ease-out) forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s 1.25s var(--ease-out) forwards;
}

/* Scroll cue */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0;
  animation: fadeUp 0.9s 2s var(--ease-out) forwards;
  cursor: pointer;
  text-decoration: none;
}
.hero__scroll-mouse {
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(154,112,24,0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero__scroll-wheel {
  width: 3px;
  height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: wheelDrop 2s ease-in-out infinite;
}
@keyframes wheelDrop {
  0%   { transform: translateY(0);    opacity: 1; }
  60%  { transform: translateY(10px); opacity: 0; }
  61%  { transform: translateY(0);    opacity: 0; }
  100% { transform: translateY(0);    opacity: 1; }
}

/* =================
   BUTTONS
================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.35s, background-position 0.5s;
  border: none;
  white-space: nowrap;
}
.btn--primary {
  color: #fff;
  background: linear-gradient(105deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200%;
  padding: 0.95rem 2.6rem;
  box-shadow: 0 5px 28px rgba(154,112,24,0.32);
}
.btn--primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(154,112,24,0.48);
}
.btn--outline {
  color: var(--gold);
  background: transparent;
  padding: 0.95rem 2.6rem;
  border: 1.5px solid rgba(154,112,24,0.45);
}
.btn--outline:hover {
  background: rgba(154,112,24,0.07);
  border-color: var(--gold);
  color: var(--gold-pale);
  transform: translateY(-2px);
}
.btn--sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.68rem;
}

/* ==============================================
   SHARED SECTION CHROME
============================================== */
.section { position: relative; z-index: 2; }

.section__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 7rem clamp(1.5rem, 4vw, 2.5rem);
}

.section__header { margin-bottom: 3.5rem; }

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section__label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section__title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 3.1rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1e1a0e;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.section__rule {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  transform-origin: left;
}

/* bg variants */
.section--dark  { background: #f5efe2; }
.section--dark2 { background: #fff8f0; }
.section--dark3 { background: #f0e8d8; }

/* glow divider */
.glow-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 25%, var(--gold-light) 50%, var(--gold) 75%, transparent 100%);
  opacity: 0.45;
  animation: glowPulse 3.5s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{opacity:0.25} 50%{opacity:0.65} }

/* ==============================================
   STATS STRIP
============================================== */
.stats {
  position: relative;
  z-index: 2;
  background: #ece5d3;
  border-block: 1px solid rgba(154,112,24,0.18);
}
.stats__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 3.5rem clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem;
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: rgba(154,112,24,0.18);
}
.stat__number {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  min-width: 4ch;
  text-align: center;
}
.stat__label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
}

/* ==============================================
   ABOUT
============================================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about__body p {
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
  line-height: 2;
  color: #3a3020;
  margin-bottom: 1.5rem;
}
.about__body p:last-child { margin-bottom: 0; }
.about__body strong { color: var(--gold-pale); font-style: italic; font-weight: 500; }

.about__image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #e8dcc8 0%, #d4c8a8 100%);
}
/* golden frame */
.about__image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(154,112,24,0.35);
  border-radius: var(--radius);
  z-index: 2;
  pointer-events: none;
}
/* bottom gradient */
.about__image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(250,246,238,0.75), transparent);
  z-index: 1;
  pointer-events: none;
}
.about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: sepia(15%) brightness(1) contrast(1.02);
  transition: transform 6s var(--ease-out), filter 0.6s;
}
.about__image-wrap:hover img {
  transform: scale(1.04);
  filter: sepia(8%) brightness(1.04) contrast(1.02);
}
.about__caption {
  position: absolute;
  bottom: 1.2rem; left: 1.2rem; right: 1.2rem;
  z-index: 3;
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(122, 85, 16, 0.8);
}

/* ==============================================
   BIBLE QUOTE
============================================== */
.quote-section {
  position: relative;
  z-index: 2;
  background: linear-gradient(155deg, #e8dcc0 0%, #dfd0a8 100%);
  border-block: 1px solid rgba(154,112,24,0.2);
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,160,40,0.08), transparent 65%);
  pointer-events: none;
}
.quote__inner {
  max-width: 860px;
  margin-inline: auto;
  padding: 6.5rem clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  position: relative;
}
.quote__open {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 7rem;
  line-height: 0.4;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: 1.8rem;
  user-select: none;
}
.quote__text {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-style: italic;
  line-height: 1.8;
  color: #2a2010;
  margin-bottom: 1.6rem;
}
.quote__ref {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ==============================================
   WHY / FEATURES
============================================== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.feature-card {
  background: #fff;
  border: 1px solid rgba(154,112,24,0.18);
  border-radius: var(--radius);
  padding: 2rem 1.8rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(100,70,10,0.06);
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}
.feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(154,112,24,0.38);
  box-shadow: 0 18px 44px rgba(100,70,10,0.14);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-card__icon {
  width: 50px; height: 50px;
  background: rgba(154,112,24,0.08);
  border: 1px solid rgba(154,112,24,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 1.3rem;
}
.feature-card__title {
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 0.8rem;
}
.feature-card__text {
  font-size: clamp(0.96rem, 1vw, 1.02rem);
  line-height: 1.82;
  color: #5a4e38;
}

.features__note {
  margin-top: 3.5rem;
  padding: 1.4rem 1.8rem 1.4rem 1.6rem;
  border-left: 2px solid var(--gold);
  background: rgba(154,112,24,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: clamp(1.05rem, 1.2vw, 1.12rem);
  font-style: italic;
  line-height: 1.9;
  color: #5a4e38;
}
.features__note strong { color: var(--gold-pale); font-weight: 500; }

/* ==============================================
   REGISTRATION
============================================== */
.reg-intro {
  font-size: clamp(1.05rem, 1.3vw, 1.12rem);
  line-height: 1.9;
  color: #5a4e38;
  max-width: 760px;
  margin-bottom: 2.5rem;
}
.reg-intro strong { color: var(--gold-pale); font-weight: 500; }

.reg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.reg-card {
  background: #fff;
  border: 1px solid rgba(154,112,24,0.2);
  border-radius: var(--radius);
  padding: 2rem 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(100,70,10,0.06);
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-out);
  transform-style: preserve-3d;
}
.reg-card:hover {
  border-color: rgba(154,112,24,0.42);
  box-shadow: 0 16px 44px rgba(100,70,10,0.16);
  transform: translateY(-4px);
}
.reg-card__num {
  position: absolute;
  top: 1rem; right: 1.4rem;
  font-family: 'Cinzel', serif;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(154,112,24,0.07);
  pointer-events: none;
  user-select: none;
}
.reg-card__day-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.reg-card__day {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e1a0e;
  letter-spacing: 0.03em;
  margin-bottom: 1.1rem;
}
.reg-card__times {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.time-chip {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  color: var(--gold-pale);
  background: rgba(154,112,24,0.07);
  border: 1px solid rgba(154,112,24,0.22);
  padding: 0.28rem 0.75rem;
  border-radius: 3px;
}
.reg-card__meta {
  font-size: 0.92rem;
  color: #9a8c6e;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.reg-card__meta i { color: var(--gold); }
.reg-card__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.reg-card__links .btn { align-self: flex-start; }

.reg-notice {
  margin-top: 2.5rem;
  padding: 1.4rem 1.8rem;
  background: rgba(154,112,24,0.05);
  border: 1px solid rgba(154,112,24,0.18);
  border-radius: var(--radius);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.reg-notice i { color: var(--gold); font-size: 1rem; margin-top: 0.15rem; flex-shrink: 0; }
.reg-notice p { font-size: 0.97rem; line-height: 1.8; color: #5a4e38; }
.reg-notice strong { color: var(--gold-pale); font-weight: 500; }

/* ==============================================
   VENUE
============================================== */
.venue__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.venue__list { list-style: none; }
.venue__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(154,112,24,0.1);
  font-size: clamp(1rem, 1.2vw, 1.05rem);
  line-height: 1.75;
  color: #3a3020;
  transition: color 0.25s;
}
.venue__list li:last-child { border-bottom: none; }
.venue__list li:hover { color: var(--text); }
.venue__list i { color: var(--gold); width: 18px; text-align: center; flex-shrink: 0; margin-top: 0.22rem; }
.venue__list strong { color: var(--gold-pale); font-weight: 600; }

.venue__transfer {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding: 0.85rem 1.4rem;
  background: linear-gradient(105deg, rgba(154,112,24,0.12), rgba(154,112,24,0.04));
  border: 1px solid rgba(154,112,24,0.28);
  border-radius: 3px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-pale);
}
.venue__transfer i { color: var(--gold); }

.venue__map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(154,112,24,0.25);
  aspect-ratio: 4/3;
  box-shadow: 0 4px 28px rgba(100,70,10,0.12);
}
.venue__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  /* Slight warm tint for the light theme */
  filter: saturate(90%) brightness(1.02);
  transition: filter 0.4s;
}
.venue__map iframe:hover {
  filter: saturate(100%) brightness(1.04);
}
/* gold shimmer frame on top */
.venue__map::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(154,112,24,0.22);
}

/* ==============================================
   CONTACT
============================================== */
.contact__inner {
  max-width: 750px;
  margin-inline: auto;
  padding: 7rem clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}
.contact__lead {
  font-size: clamp(1.05rem, 1.4vw, 1.14rem);
  font-style: italic;
  line-height: 1.9;
  color: #5a4e38;
  margin-bottom: 3rem;
}
.contact__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.contact-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 1.6rem 2.2rem;
  background: #fff;
  border: 1px solid rgba(154,112,24,0.2);
  border-radius: var(--radius);
  min-width: 160px;
  box-shadow: 0 2px 16px rgba(100,70,10,0.07);
  transition: 0.4s var(--ease-out);
}
.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(154,112,24,0.45);
  box-shadow: 0 14px 38px rgba(100,70,10,0.14);
}
.contact-card i { font-size: 1.5rem; color: var(--gold); }
.contact-card__label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.contact-card__value {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  color: var(--gold-pale);
}

.contact__social {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  border: 1px solid rgba(154,112,24,0.22);
  padding: 0.65rem 1.3rem;
  border-radius: 3px;
  transition: 0.3s;
}
.social-pill i { font-size: 0.95rem; }
.social-pill:hover { color: var(--gold); border-color: var(--gold); background: rgba(154,112,24,0.05); }

/* ==============================================
   THEME SWITCHER RIBBON
============================================== */
.theme-switch {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 950;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  background: #fff;
  border: 1px solid rgba(154,112,24,0.3);
  border-radius: 3px;
  padding: 0.6rem 1.1rem;
  box-shadow: 0 4px 22px rgba(100,70,10,0.14);
  transition: 0.3s;
}
.theme-switch:hover {
  background: rgba(154,112,24,0.07);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(100,70,10,0.2);
}
.theme-switch i { font-size: 0.8rem; }

/* ==============================================
   FOOTER
============================================== */
.footer {
  position: relative;
  z-index: 2;
  background: #e8dcc8;
  border-top: 1px solid rgba(154,112,24,0.15);
  padding: 2.8rem clamp(1.5rem, 4vw, 3rem);
}
.footer__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer__logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.18em;
}
.footer__copy {
  font-family: 'Raleway', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}

/* ==============================================
   REGISTRATION MODAL
============================================== */
.reg-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.reg-modal[hidden] { display: none; }
.reg-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(30,18,5,0.65);
  backdrop-filter: blur(8px) saturate(110%);
  cursor: pointer;
}
.reg-modal__panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 560px; max-height: 92svh; overflow-y: auto;
  background: #fff;
  border: 1px solid rgba(154,112,24,0.22);
  border-radius: 8px;
  padding: 2.4rem 2.4rem 2rem;
  box-shadow: 0 0 0 1px rgba(154,112,24,0.07), 0 32px 70px rgba(80,50,10,0.22);
  animation: modalSlideIn 0.42s var(--ease-out);
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(28px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    }
}
.reg-modal__close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: 1px solid rgba(154,112,24,0.18);
  color: var(--text-muted);
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; transition: 0.25s;
}
.reg-modal__close:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-alpha); }
.reg-modal__header { text-align: center; margin-bottom: 1.8rem; }
.reg-modal__cross-icon { display: block; font-size: 2rem; color: var(--gold); opacity: 0.65; margin-bottom: 0.7rem; }
.reg-modal__title {
  font-family: 'Cinzel', serif; font-size: clamp(1.15rem, 3vw, 1.45rem); font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; color: #1e1a0e; margin-bottom: 0.25rem;
}
.reg-modal__subtitle { font-family: 'EB Garamond', serif; font-style: italic; font-size: 1rem; color: var(--text-muted); }
.reg-form { display: flex; flex-direction: column; gap: 1rem; }
.reg-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.reg-form__group { display: flex; flex-direction: column; gap: 0.35rem; }
.reg-form__label {
  font-family: 'Raleway', sans-serif; font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
}
.reg-form__input,
.reg-form__select {
  font-family: 'EB Garamond', serif; font-size: 1rem; color: var(--text);
  background: rgba(0,0,0,0.025); border: 1px solid rgba(154,112,24,0.2);
  border-radius: 4px; padding: 0.68rem 0.9rem;
  outline: none; width: 100%;
  transition: border-color 0.28s, background 0.28s, box-shadow 0.28s;
  appearance: none; -webkit-appearance: none;
}
.reg-form__input::placeholder { color: var(--text-dim); opacity: 0.75; }
.reg-form__input:focus,
.reg-form__select:focus {
  border-color: var(--gold);
  background: rgba(154,112,24,0.04);
  box-shadow: 0 0 0 3px rgba(154,112,24,0.08);
}
.reg-form__textarea { resize: vertical; min-height: 58px; }
.reg-form__sel-wrap { position: relative; }
.reg-form__sel-wrap::after {
  content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; right: 0.8rem; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 0.7rem; pointer-events: none;
}
.reg-form__select option { background: #fff; color: var(--text); }
.reg-form__select option:disabled,
.reg-form__select option[data-past] { color: var(--text-dim); text-decoration: line-through; }
.reg-form__count {
  display: inline-flex; align-items: stretch;
  border: 1px solid rgba(154,112,24,0.2); border-radius: 4px; overflow: hidden; width: fit-content;
}
.reg-form__count-btn {
  background: rgba(154,112,24,0.06); border: none; border-radius: 0; color: var(--gold);
  width: 38px; height: 38px; font-size: 1.25rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.reg-form__count-btn:hover { background: rgba(154,112,24,0.14); }
.reg-form__count-val {
  font-family: 'Cinzel', serif; font-size: 1rem; color: var(--text);
  background: transparent; border: none; width: 44px;
  text-align: center; outline: none; padding: 0;
  -moz-appearance: textfield;
}
.reg-form__count-val::-webkit-inner-spin-button,
.reg-form__count-val::-webkit-outer-spin-button { display: none; }
.reg-form__error {
  font-family: 'Raleway', sans-serif; font-size: 0.82rem; color: #c04040;
  padding: 0.6rem 1rem;
  background: rgba(200,60,60,0.06); border: 1px solid rgba(200,60,60,0.18); border-radius: 4px;
}
.reg-form__submit { width: 100%; justify-content: center; padding: 0.95rem; margin-top: 0.3rem; gap: 0.6rem; }
.reg-form__spinner { width: 17px; height: 17px; flex-shrink: 0; animation: modalSpin 0.85s linear infinite; }
@keyframes modalSpin { to { transform: rotate(360deg); } }
.reg-form__submit.is-loading .reg-form__submit-text { opacity: 0.4; }
.reg-form__submit.is-loading .reg-form__arrow { display: none; }
.reg-form__submit.is-loading .reg-form__spinner { display: inline !important; }
.reg-modal__success { text-align: center; padding: 1.5rem 0 0.5rem; }
.reg-modal__success-cross { font-size: 2.8rem; color: var(--gold); opacity: 0.7; margin-bottom: 1rem; }
.reg-modal__success-title {
  font-family: 'Cinzel', serif; font-size: 1.6rem; font-weight: 700;
  color: #1e1a0e; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.8rem;
}
.reg-modal__success-text {
  font-family: 'EB Garamond', serif; font-style: italic; font-size: 1.1rem;
  color: var(--text-muted); line-height: 1.85; margin-bottom: 2rem;
}
.reg-modal__panel::-webkit-scrollbar { width: 3px; }
.reg-modal__panel::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
@media (max-width: 480px) {
  .reg-modal__panel { padding: 1.8rem 1.4rem 1.5rem; }
  .reg-form__row { grid-template-columns: 1fr; }
}

/* ==============================================
   KEYFRAMES
============================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ==============================================
   AOS CUSTOM EASE
============================================== */
[data-aos] { --aos-easing: cubic-bezier(0.22, 1, 0.36, 1); }

/* ==============================================
   RESPONSIVE
============================================== */
@media (max-width: 1100px) {
  .features { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .about__grid   { grid-template-columns: 1fr; }
  .venue__grid   { grid-template-columns: 1fr; }
  .about__image-wrap { aspect-ratio: 16/9; order: -1; }
  .stats__inner  { grid-template-columns: repeat(2, 1fr); }
  .stat + .stat::before { display: none; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .reg-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .theme-switch { display: none; }

  .nav__list  { display: none; }
  .nav__cta   { display: none; }
  .nav__burger { display: flex; }

  /* hero */
  .hero {
    padding-top: calc(var(--nav-h) + 1.5rem);
    padding-inline: 1.25rem;
    padding-bottom: 3.5rem;
  }
  .hero__content { max-width: 100%; }
  .hero__eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    margin-bottom: 1rem;
    width: 100%;
    overflow-wrap: break-word;
  }
  .hero__title {
    font-size: clamp(1.7rem, 7.5vw, 2.4rem);
    letter-spacing: 0.01em;
    margin-bottom: 0.9rem;
    line-height: 1.1;
  }
  .hero__divider { margin-bottom: 1.1rem; }
  .hero__tagline {
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 1.6rem;
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .hero__tagline br { display: none; }
  .hero__dates {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.4rem;
  }
  .date-chip {
    width: 100%;
    max-width: 340px;
    text-align: center;
    font-size: 0.72rem;
  }
  .hero__badge {
    letter-spacing: 0.07em;
    font-size: 0.6rem;
    padding: 0.45rem 0.9rem;
    margin-bottom: 1.6rem;
    white-space: normal;
    text-align: center;
    line-height: 1.55;
    max-width: 260px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
    margin-inline: auto;
  }
  .hero__actions .btn { justify-content: center; }

  /* sections */
  .section__inner { padding: 4rem clamp(1rem, 4vw, 1.8rem); }
  .section__header { margin-bottom: 2rem; }
  .section__title { word-break: break-word; }

  .hero__scroll { display: none !important; visibility: hidden !important; opacity: 0 !important; animation: none !important; }

  /* grids */
  .reg-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .feature-card { padding: 1.5rem 1.3rem; }
  .reg-card { padding: 1.6rem 1.4rem; }
  .reg-card__links { flex-direction: column; }
  .reg-card__links .btn { width: 100%; justify-content: center; }

  /* stats */
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat__number { font-size: clamp(2rem, 8vw, 3rem); }

  /* contact */
  .contact__cards { flex-direction: column; align-items: center; }
  .contact-card { min-width: 0; width: 100%; max-width: 340px; }

  /* venue */
  .venue__list li { word-break: break-word; }
  .venue__transfer { font-size: 0.65rem; padding: 0.7rem 1rem; white-space: normal; }

  /* footer */
  .footer__inner { flex-direction: column; text-align: center; gap: 0.7rem; }
  .footer__copy { font-size: 0.72rem; word-break: break-word; }

  .reg-notice p { font-size: 0.88rem; }
}

@media (max-width: 480px) {
  .hero {
    padding-top: calc(var(--nav-h) + 1rem);
    padding-inline: 1rem;
  }
  .hero__eyebrow { font-size: 0.54rem; letter-spacing: 0.1em; }
  .hero__title { font-size: clamp(1.5rem, 6.5vw, 2rem); }
  .hero__tagline { font-size: 0.93rem; }
  .hero__badge { max-width: 230px; font-size: 0.58rem; }
  .hero__actions { max-width: 260px; }

  .stats__inner { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .features { grid-template-columns: 1fr; }
  .quote__text { font-size: clamp(1.1rem, 5vw, 1.5rem); word-break: break-word; }
  .quote__inner { padding: 3.5rem clamp(1rem, 4vw, 1.8rem); }
  .reg-card__links .btn { align-self: stretch; justify-content: center; width: 100%; }
  .btn--primary, .btn--outline { padding: 0.8rem 1.4rem; font-size: 0.7rem; }
  .about__image-wrap { aspect-ratio: 4/3; }
  .section__label { font-size: 0.59rem; letter-spacing: 0.18em; }
  .section__title { font-size: clamp(1.4rem, 6.5vw, 2.2rem); }
  .contact-card { padding: 1.4rem 1.2rem; }
  .contact-card__value { font-size: 0.88rem; word-break: break-all; }
  .social-pill { font-size: 0.72rem; padding: 0.55rem 1rem; }
  .reg-notice { padding: 1rem 1.1rem; }
  .footer__copy { font-size: 0.67rem; }
  .time-chip { font-size: 0.65rem; padding: 0.3rem 0.6rem; }
}
