/* ============================================================
   PAGE: HOME — HERO
============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 1.5rem 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(200, 134, 10, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(74, 103, 65, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(74, 103, 65, 0.15) 0%, transparent 60%);
}

/* Corner ornaments */
.hero-corner {
  position: absolute;
  width: 120px;
  height: 120px;
  opacity: 0.35;
}

.hero-corner svg {
  width: 100%;
  height: 100%;
}

.hero-corner.tl {
  top: 5rem;
  left: 2rem;
}

.hero-corner.tr {
  top: 5rem;
  right: 2rem;
  transform: scaleX(-1);
}

.hero-corner.bl {
  bottom: 2rem;
  left: 2rem;
  transform: scaleY(-1);
}

.hero-corner.br {
  bottom: 2rem;
  right: 2rem;
  transform: scale(-1, -1);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-pretitle {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-family: 'CloisterBlack', var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  color: var(--gold);
  line-height: 0.95;
  text-shadow:
    3px 3px 0 rgba(28, 12, 4, 0.8),
    0 0 60px rgba(232, 168, 32, 0.25);
  margin-bottom: 0.5rem;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 2rem;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-details {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 3rem;
  animation: fadeUp 0.8s 0.3s ease both;
  line-height: 2;
}

.hero-details strong {
  color: var(--amber);
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--rust);
  color: var(--rust);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.35s ease both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}

/* ============================================================
   PAGE: HOME — FEATURES GRID
============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(245, 234, 212, 0.05);
  border: 1px solid rgba(200, 134, 10, 0.25);
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: 3px;
  transition: border-color 0.3s, background 0.3s;
}

.feature-card:hover {
  border-color: var(--amber);
  background: rgba(245, 234, 212, 0.08);
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--tan);
  line-height: 1.6;
}

/* ============================================================
   PAGE: TICKETS
============================================================ */
.tickets-hero {
  background: linear-gradient(180deg, rgba(26, 46, 26, 0.6) 0%, transparent 100%);
  padding: 10rem 1.5rem 4rem;
  text-align: center;
}

.ticket-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.ticket-card {
  background: rgba(28, 12, 4, 0.6);
  border: 2px solid rgba(200, 134, 10, 0.4);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.ticket-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
}

.ticket-card-header {
  background: var(--amber);
  padding: 1.5rem;
  text-align: center;
}

.ticket-card-header h3 {
  font-family: 'CloisterBlack', var(--font-display);
  font-size: 2rem;
  color: var(--bark);
  margin-bottom: 0.2rem;
}

.ticket-card-header .price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--bark);
  font-weight: 700;
}

.ticket-card-header .price-note {
  font-size: 0.75rem;
  color: rgba(44, 26, 14, 0.7);
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
}

.ticket-card-body {
  padding: 2rem;
}

.ticket-features {
  list-style: none;
  margin-bottom: 2rem;
}

.ticket-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(200, 134, 10, 0.15);
  font-size: 0.9rem;
  color: var(--tan);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ticket-features li::before {
  content: '✦';
  color: var(--amber);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.ticket-featured-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--forest);
  color: var(--goldlit);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
}

.embed-placeholder {
  background: rgba(245, 234, 212, 0.04);
  border: 2px dashed rgba(200, 134, 10, 0.3);
  border-radius: 4px;
  padding: 4rem 2rem;
  text-align: center;
  margin-top: 3rem;
}

.embed-placeholder p {
  color: var(--tan);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.embed-placeholder .embed-note {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
}

/* ============================================================
   PAGE: VENDORS
============================================================ */
.vendor-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.vendor-benefit {
  background: rgba(245, 234, 212, 0.05);
  border: 1px solid rgba(200, 134, 10, 0.2);
  padding: 1.8rem;
  border-radius: 3px;
  text-align: center;
}

.vendor-benefit .vb-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.vendor-benefit h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.vendor-benefit p {
  font-size: 0.85rem;
  color: var(--tan);
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.rule-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(245, 234, 212, 0.03);
  border: 1px solid rgba(200, 134, 10, 0.15);
  border-radius: 3px;
}

.rule-num {
  font-family: 'CloisterBlack', var(--font-display);
  font-size: 1.8rem;
  color: var(--amber);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

.rule-text {
  font-size: 0.88rem;
  color: var(--tan);
  line-height: 1.6;
}

/* ============================================================
   PAGE: ABOUT
============================================================ */
.about-lead {
  font-size: 1.1rem;
  color: var(--cream);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1rem;
  line-height: 1.9;
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.committee-card {
  background: rgba(28, 12, 4, 0.5);
  border: 1px solid rgba(200, 134, 10, 0.3);
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: 4px;
  position: relative;
  transition: border-color 0.3s;
}

.committee-card:hover {
  border-color: var(--amber);
}

.committee-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(200, 134, 10, 0.15);
  border: 2px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
}

.committee-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.committee-role {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}

.committee-chair {
  border-color: var(--amber);
  background: rgba(200, 134, 10, 0.08);
}

.benefit-highlight {
  background: rgba(26, 46, 26, 0.5);
  border: 2px solid rgba(74, 103, 65, 0.5);
  border-radius: 6px;
  padding: 3rem;
  text-align: center;
  margin-top: 4rem;
  position: relative;
}

.benefit-highlight::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(74, 103, 65, 0.2);
  border-radius: 4px;
  pointer-events: none;
}

.benefit-highlight .leaf {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-highlight h3 {
  font-family: 'CloisterBlack', var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.benefit-highlight p {
  color: var(--tan);
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================================
   PAGE: GALLERY
============================================================ */
.gallery-intro {
  text-align: center;
  color: var(--tan);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 0.95rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  background: rgba(245, 234, 212, 0.06);
  border: 1px solid rgba(200, 134, 10, 0.2);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: border-color 0.3s;
}

.gallery-item:hover {
  border-color: var(--amber);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(200, 134, 10, 0.3);
}

.gallery-placeholder .gp-icon {
  font-size: 2.5rem;
}

.gallery-placeholder .gp-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-upload-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--tan);
}

.gallery-upload-note code {
  background: rgba(245, 234, 212, 0.1);
  padding: 0.1rem 0.4rem;
  border-radius: 2px;
  font-size: 0.8rem;
  color: var(--amber);
}

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.section--no-top {
  padding-top: 0;
}

/* ============================================================
   BUTTON UTILITIES
============================================================ */
.btn-full {
  width: 100%;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-group--mt {
  margin-top: 1.5rem;
}

/* ============================================================
   INFO NOTE MODIFIERS
============================================================ */
.info-note--mb {
  margin-bottom: 2rem;
}

.info-note--mb-sm {
  margin-bottom: 1.5rem;
}

.info-note--mt {
  margin-top: 2rem;
}

.info-note--mt-sm {
  margin-top: 1rem;
}

.info-note--sm {
  font-size: 0.82rem;
}

/* ============================================================
   ORNAMENT LINE MODIFIERS
============================================================ */
.ornament-line--my {
  margin: 3rem 0;
}

.ornament-line--about {
  margin: 2rem 0;
}

/* ============================================================
   PAGE: HOME — COUNTDOWN SECTION
============================================================ */
.countdown-section {
  padding: 0 1.5rem 4rem;
  background: rgba(20, 8, 2, 0.4);
}

.countdown-section-inner {
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================================
   PAGE: TICKETS — CARD MODIFIERS
============================================================ */
.ticket-card--featured {
  border-color: rgba(200, 134, 10, 0.6);
}

.ticket-card-header--forest {
  background: var(--forest);
  color: var(--gold);
}

.ticket-card-header--bark {
  background: var(--bark);
  border-bottom: 1px solid var(--amber);
}

/* ============================================================
   PAGE: TICKETS — EMBED PLACEHOLDER
============================================================ */
.embed-placeholder--mt {
  margin-top: 3rem;
}

.embed-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.embed-body-mb {
  margin-bottom: 1.5rem;
}

/* ============================================================
   PAGE: VENDORS — SECTION HEADINGS
============================================================ */
.section-h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 1rem;
}

.section-h3--lg {
  font-size: 2.2rem;
}

.section-h3--mb {
  margin-bottom: 2rem;
}

/* ============================================================
   PAGE: VENDORS — INTRO TEXT
============================================================ */
.vendors-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
  color: var(--tan);
}

/* ============================================================
   PAGE: VENDORS — FORM MODIFIERS
============================================================ */
.form-wrap--mt {
  margin-top: 2rem;
}

.textarea-short {
  min-height: 80px;
}

/* ============================================================
   PAGE: VENDORS — PANEL & PRICING MODIFIERS
============================================================ */
.vendor-panel--hidden {
  display: none;
}

.spot-pricing--centered {
  justify-content: center;
}

.spot-price-card--static {
  max-width: 320px;
  cursor: default;
}

/* ============================================================
   PAGE: VENDORS / TICKETS — SUCCESS MESSAGE
============================================================ */
.success-p {
  color: var(--tan);
  margin-bottom: 1rem;
}

.success-p-sm {
  color: var(--tan);
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.success-p-xs {
  color: var(--tan);
  font-size: 0.85rem;
}

/* ============================================================
   PAGE: ABOUT — BODY TEXT
============================================================ */
.about-body-text {
  text-align: center;
  color: var(--tan);
  max-width: 680px;
  margin: 0 auto 3rem;
  font-size: 0.95rem;
}

/* ============================================================
   PAGE: ABOUT — COMMITTEE
============================================================ */
.committee-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.5rem;
}

.committee-subtitle {
  text-align: center;
  color: var(--tan);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.committee-bio {
  font-size: 0.8rem;
  color: var(--tan);
  margin-top: 0.8rem;
}

/* ============================================================
   PAGE: GALLERY — SOCIAL CONNECT MODIFIER
============================================================ */
.social-connect--mt {
  margin-top: 3rem;
}

/* ============================================================
   FOOTER — LEGAL MODIFIERS
============================================================ */
.footer-legal-note {
  margin-top: 0.5rem;
}

.footer-legal-copy {
  margin-top: 0.5rem;
  font-size: 0.72rem;
}

/* ============================================================
   PAGE: VOLUNTEER
============================================================ */

/* ── Time slot selector cards ──────────────────────────────── */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-bottom: 0.5rem;
}

.slot-card {
  background: rgba(245, 234, 212, 0.05);
  border: 2px solid rgba(200, 134, 10, 0.3);
  border-radius: 4px;
  padding: 1.75rem 1.4rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  position: relative;
}

.slot-card:hover {
  border-color: var(--amber);
  background: rgba(200, 134, 10, 0.08);
  transform: translateY(-2px);
}

.slot-card.selected {
  border-color: var(--amber);
  background: rgba(200, 134, 10, 0.12);
}

.slot-check {
  position: absolute;
  top: 0.55rem;
  right: 0.7rem;
  font-size: 0.9rem;
  color: var(--amber);
  opacity: 0;
  transition: opacity 0.2s;
}

.slot-card.selected .slot-check {
  opacity: 1;
}

.slot-time {
  font-family: 'CloisterBlack', var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.slot-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.slot-desc {
  font-size: 0.8rem;
  color: var(--tan);
  line-height: 1.5;
}