/* ====================================================================
   COMPONENTS.CSS — Buttons, Nav, Cards, Forms, Badges, etc.
   ==================================================================== */


/* ---- NAV LOGO ----------------------------------------------------- */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  transition: opacity var(--t-fast);
}
.nav-logo:hover { opacity: 0.8; }

.nav-logo__abbr {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--clr-orange);
  line-height: 1;
}
.nav-logo__name {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
  display: none;
}
@media (min-width: 600px) {
  .nav-logo__name { display: block; }
}


/* ---- NAVIGATION LINKS -------------------------------------------- */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav-link {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: var(--sp-3); right: var(--sp-3);
  height: 2px;
  background: var(--clr-orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.nav-link:hover,
.nav-link.is-active {
  color: var(--clr-text);
}
.nav-link.is-active::after { transform: scaleX(1); }
.nav-link:hover::after     { transform: scaleX(0.6); }

/* CTA nav link */
.nav-link--cta {
  background: var(--clr-orange);
  color: #fff !important;
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover {
  background: var(--clr-orange-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,100,26,0.40);
}


/* ---- HAMBURGER ---------------------------------------------------- */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  transition: background var(--t-fast);
  z-index: var(--z-above);
}
.hamburger:hover { background: var(--clr-surface); }

.hamburger__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  margin: 0 auto;
  transition: transform var(--t-base), opacity var(--t-base), width var(--t-base);
  transform-origin: center;
}
/* Open state */
.hamburger.is-open .hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open .hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open .hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
@media (max-width: 860px) {
  .primary-nav {
    position: fixed;
    inset: 0;
    background: rgba(10,7,4,0.97);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-base);
    z-index: calc(var(--z-header) - 1);
  }
  .primary-nav.is-open {
    opacity: 1;
    pointer-events: all;
  }
  .nav-links {
    flex-direction: column;
    gap: var(--sp-2);
    text-align: center;
  }
  .nav-link {
    font-size: var(--fs-2xl);
    padding: var(--sp-4) var(--sp-8);
    letter-spacing: 0.08em;
  }
  .nav-link--cta {
    margin-top: var(--sp-4);
    font-size: var(--fs-lg);
  }
}
@media (min-width: 860px) {
  .hamburger { display: none; }
}


/* ---- BUTTONS ------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  padding: 0.75em 2em;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), transform var(--t-fast),
              box-shadow var(--t-fast);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: scale(0.97); }

/* Shimmer on hover */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn:hover::before { transform: translateX(100%); }

/* Primary */
.btn--primary {
  background: linear-gradient(135deg, var(--clr-orange) 0%, var(--clr-red) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(232,100,26,0.30);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--clr-orange-light) 0%, var(--clr-orange) 100%);
  box-shadow: 0 6px 28px rgba(232,100,26,0.45);
  transform: translateY(-2px);
}

/* Red — hero CTA */
.btn--red {
  background: linear-gradient(135deg, #D42020 0%, #A01010 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(180,20,20,0.40);
}
.btn--red:hover {
  background: linear-gradient(135deg, #E83030 0%, #C01818 100%);
  box-shadow: 0 6px 28px rgba(180,20,20,0.55);
  transform: translateY(-2px);
}

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--clr-text);
  border-color: var(--clr-border);
}
.btn--ghost:hover {
  border-color: var(--clr-orange);
  color: var(--clr-orange-light);
  transform: translateY(-2px);
}

/* Outline */
.btn--outline {
  background: transparent;
  color: var(--clr-orange-light);
  border-color: var(--clr-orange);
}
.btn--outline:hover {
  background: rgba(232,100,26,0.10);
  transform: translateY(-2px);
}

/* Sizes */
.btn--lg { font-size: var(--fs-sm); padding: 0.9em 2.4em; }
.btn--sm { font-size: var(--fs-xs); padding: 0.6em 1.4em; }
.btn--full { width: 100%; }

/* Loading spinner inside submit button */
.btn__spinner { display: none; }
.btn__spinner svg { animation: spin 0.9s linear infinite; width: 20px; height: 20px; }
.btn.is-loading .btn__label  { opacity: 0.4; }
.btn.is-loading .btn__spinner { display: flex; }


/* ---- HERO URGENCY ------------------------------------------------- */
.hero__urgency {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--clr-gold-light);
  background: rgba(212,165,64,0.10);
  border: 1px solid rgba(212,165,64,0.25);
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--radius-full);
}
.hero__urgency svg { flex-shrink: 0; color: var(--clr-gold); }

/* ---- HERO TYPOGRAPHY --------------------------------------------- */
.hero__organizer {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-orange-light);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  line-height: 0.88;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-text);
  display: flex;
  flex-direction: column;
}

.hero__title-line--accent {
  color: var(--clr-orange);
  /* Subtle outline text effect */
  -webkit-text-stroke: 0;
  text-shadow:
    0 0 80px rgba(232,100,26,0.5),
    0 0 120px rgba(212,165,64,0.2);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
}
.hero__meta-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.hero__meta-sep { color: var(--clr-text-muted); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
}


/* ---- HERO COUNTER ------------------------------------------------- */
.hero__counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}

.counter__stat {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
}
.counter__num {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--clr-gold);
  letter-spacing: 0.05em;
}

.counter__bar {
  width: 220px;
  height: 4px;
  background: var(--clr-surface-3);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.counter__bar-fill {
  height: 100%;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, var(--clr-orange-dark), var(--clr-gold));
  border-radius: var(--radius-full);
  transition: width 1.2s var(--ease-out);
}

.counter__hint {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  letter-spacing: 0.03em;
}


/* ---- BADGE -------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--radius-full);
}

.badge--live {
  background: rgba(232,100,26,0.12);
  color: var(--clr-orange-light);
  border: 1px solid rgba(232,100,26,0.30);
}

.badge__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-orange);
  animation: pulse-dot 1.8s ease-in-out infinite;
}


/* ---- SCROLL INDICATOR -------------------------------------------- */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  opacity: 0.45;
}
.scroll-indicator__label {
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
}
.scroll-indicator__mouse {
  width: 22px; height: 36px;
  border: 2px solid var(--clr-text-muted);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-indicator__wheel {
  width: 3px; height: 8px;
  background: var(--clr-text-muted);
  border-radius: 2px;
  animation: scroll-wheel 1.6s ease-in-out infinite;
}


/* ---- ABOUT POSTER IMAGE ------------------------------------------ */
.about__poster {
  width: 100%;
  max-width: 260px;
  border-radius: var(--radius-lg);
  box-shadow:
    var(--shadow-lg),
    0 0 0 2px rgba(232,100,26,0.20),
    0 0 60px rgba(232,100,26,0.12);
  transform: rotate(2deg);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  object-fit: cover;
}
.about__poster:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow:
    var(--shadow-lg),
    0 0 0 2px rgba(232,100,26,0.40),
    0 0 80px rgba(232,100,26,0.20);
}

/* ---- ABOUT SECTION TEXT ------------------------------------------ */
.about__title {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  letter-spacing: 0.03em;
  line-height: 0.95;
  color: var(--clr-text);
  margin-bottom: var(--sp-6);
}
.about__lead {
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--clr-text-dim);
  margin-bottom: var(--sp-4);
  line-height: 1.55;
}
.about__body {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: 1.7;
}
.about__body strong { color: var(--clr-sand); }

.stat__num {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  color: var(--clr-orange);
  letter-spacing: 0.04em;
  line-height: 1;
}
.stat__lbl {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


/* ---- ARTIST CARDS ------------------------------------------------- */
.artist-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  cursor: default;
}
.artist-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-lg), var(--shadow-glow-orange);
}

/* Visual / image area */
.artist-card__visual {
  position: relative;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Per-artist gradient themes */
.artist-card__visual--santos {
  background: linear-gradient(145deg, #3A1408 0%, #6B2015 40%, #B84E12 80%, #E8641A 100%);
}
.artist-card__visual--saint {
  background: linear-gradient(145deg, #0D1A1A 0%, #1A3344 40%, #2A5570 80%, #3A7899 100%);
}
.artist-card__visual--dave {
  background: linear-gradient(145deg, #0A0A08 0%, #1E1A08 40%, #3D3412 80%, #6B5A1A 100%);
}
.artist-card__visual--qubix {
  background: linear-gradient(145deg, #120A1E 0%, #2A0E3F 40%, #481570 80%, #6A1FA0 100%);
}

.artist-card__initials {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.12);
  user-select: none;
  position: relative;
  z-index: 1;
}

.artist-card__glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--t-slow);
}
.artist-card__visual--santos .artist-card__glow {
  background: radial-gradient(circle at 50% 100%, rgba(232,100,26,0.25) 0%, transparent 70%);
}
.artist-card__visual--saint .artist-card__glow {
  background: radial-gradient(circle at 50% 100%, rgba(58,120,153,0.30) 0%, transparent 70%);
}
.artist-card__visual--dave .artist-card__glow {
  background: radial-gradient(circle at 50% 100%, rgba(212,165,64,0.25) 0%, transparent 70%);
}
.artist-card__visual--qubix .artist-card__glow {
  background: radial-gradient(circle at 50% 100%, rgba(106,31,160,0.30) 0%, transparent 70%);
}
.artist-card:hover .artist-card__glow { opacity: 1; }

.artist-card__info {
  padding: var(--sp-4) var(--sp-5) var(--sp-5);
}
.artist-card__slot {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-orange-light);
  display: block;
  margin-bottom: var(--sp-2);
}
.artist-card__name {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  letter-spacing: 0.05em;
  color: var(--clr-text);
  margin-bottom: var(--sp-1);
}
.artist-card__genre {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---- FEATURED ARTIST CARD (La Santos) ----------------------------- */
.artist-card--featured {
  position: relative;
  border-color: rgba(232,100,26,0.35);
  box-shadow: 0 0 0 1px rgba(232,100,26,0.20), var(--shadow-md);
}
.artist-card--featured .artist-card__visual {
  /* On desktop the card is wide, so use a landscape ratio */
  aspect-ratio: 3/4; /* overridden for desktop below */
}
@media (min-width: 900px) {
  .artist-card--featured .artist-card__visual {
    aspect-ratio: 16/9;
  }
  .artist-card--featured .artist-card__name {
    font-size: var(--fs-3xl);
  }
}

/* BEST SELLER badge */
.artist-card__badge {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  z-index: 3;
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-light) 100%);
  color: var(--clr-bg);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--radius-full);
  box-shadow: 0 2px 12px rgba(212,165,64,0.40);
  animation: pulse-badge 2.5s ease-in-out infinite;
}

/* ---- MYSTERY / CONFERENCIA SORPRESA CARD -------------------------- */
.artist-card--mystery {
  border-color: rgba(148,100,200,0.25);
  background: linear-gradient(145deg, var(--clr-surface-2), rgba(30,15,50,0.8));
}
.artist-card__visual--mystery {
  background: linear-gradient(145deg, #0E0814 0%, #1E1030 40%, #2E1848 80%, #3E2060 100%);
}
@media (min-width: 900px) {
  .artist-card--mystery .artist-card__visual {
    aspect-ratio: 21/9;
  }
  .artist-card--mystery .artist-card__initials {
    font-size: 6rem;
    color: rgba(148,100,200,0.18);
  }
}
.artist-card--mystery .artist-card__slot { color: #9864c8; }
.artist-card--mystery:hover {
  border-color: rgba(148,100,200,0.55);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(100,50,180,0.20);
}
.artist-card__visual--mystery .artist-card__glow {
  background: radial-gradient(circle at 50% 100%, rgba(100,50,180,0.30) 0%, transparent 70%);
}

/* ---- VENUE QR CARD ------------------------------------------------ */
.venue-card--qr {
  border-color: rgba(212,165,64,0.25);
  background: linear-gradient(135deg, var(--clr-surface), rgba(40,30,8,0.8));
}
.venue-card--qr .venue-card__icon { color: var(--clr-gold); }
.venue-card--qr strong { color: var(--clr-gold-light); }


/* ---- PILLAR CARDS ------------------------------------------------- */
.pillar-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-orange-dark), var(--clr-gold), var(--clr-orange-dark));
  transform: scaleX(0);
  transition: transform var(--t-base);
}
.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-md), 0 0 30px rgba(232,100,26,0.10);
}
.pillar-card:hover::before { transform: scaleX(1); }

.pillar-card__icon {
  width: 64px; height: 64px;
  margin-inline: auto;
  margin-bottom: var(--sp-5);
  color: var(--clr-orange);
  transition: color var(--t-base), transform var(--t-base);
}
.pillar-card:hover .pillar-card__icon {
  color: var(--clr-gold);
  transform: scale(1.08);
}

.pillar-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  letter-spacing: 0.04em;
  color: var(--clr-text);
  margin-bottom: var(--sp-3);
}
.pillar-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
}


/* ---- REGISTRATION INFO ------------------------------------------- */
.registration__desc {
  font-size: var(--fs-lg);
  color: var(--clr-text-dim);
  margin-bottom: var(--sp-6);
  line-height: 1.55;
}

.perks {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}
.perk {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
}
.perk__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(232,100,26,0.15);
  color: var(--clr-orange);
  font-size: var(--fs-xs);
  font-weight: 700;
  flex-shrink: 0;
}

.urgency-block { margin-top: var(--sp-2); }
.urgency-bar {
  height: 6px;
  background: var(--clr-surface-3);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--sp-2);
}
.urgency-bar__fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--clr-orange-dark), var(--clr-gold));
  border-radius: var(--radius-full);
  transition: width 1.4s var(--ease-out);
}
.urgency-bar.is-visible .urgency-bar__fill { width: 68%; }
.urgency-bar__label {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}
.urgency-bar__label strong { color: var(--clr-orange-light); }


/* ---- REGISTRATION FORM ------------------------------------------- */
.reg-form {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 480px) {
  .reg-form { padding: var(--sp-6); }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-label {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--clr-text-dim);
}
.req-star { color: var(--clr-orange); margin-left: 2px; }

.input-wrap {
  position: relative;
}
.input-icon {
  position: absolute;
  left: var(--sp-4);
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--clr-text-muted);
  pointer-events: none;
  transition: color var(--t-fast);
}
.form-input:focus ~ .input-icon,
.input-wrap:focus-within .input-icon {
  color: var(--clr-orange-light);
}

.form-input {
  width: 100%;
  background: var(--clr-surface-3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  color: var(--clr-text);
  font-size: var(--fs-base);
  padding: 0.75rem var(--sp-4) 0.75rem calc(var(--sp-4) + 24px);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  appearance: none;
}
.form-input::placeholder { color: var(--clr-text-muted); }
.form-input:focus {
  outline: none;
  border-color: var(--clr-orange);
  box-shadow: 0 0 0 3px rgba(232,100,26,0.18);
  background: rgba(51,34,12,0.80);
}
.form-input.is-error {
  border-color: var(--clr-error);
  box-shadow: 0 0 0 3px rgba(232,85,85,0.15);
}
.form-input.is-valid { border-color: var(--clr-success); }

/* Checkbox */
.form-group--check { gap: var(--sp-1); }
.check-label {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  cursor: pointer;
}
.check-input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.check-box {
  width: 20px; height: 20px;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-sm);
  background: var(--clr-surface-3);
  flex-shrink: 0;
  margin-top: 2px;
  transition: background var(--t-fast), border-color var(--t-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-box::after {
  content: '';
  width: 5px; height: 9px;
  border: 2px solid #fff;
  border-top: none; border-left: none;
  transform: rotate(45deg) scale(0);
  transition: transform var(--t-fast);
}
.check-input:checked + .check-box {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
}
.check-input:checked + .check-box::after { transform: rotate(45deg) scale(1); }
.check-input:focus-visible + .check-box {
  outline: 2px solid var(--clr-orange);
  outline-offset: 2px;
}
.check-text {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.5;
}
.check-text strong { color: var(--clr-text-dim); }
.form-link {
  color: var(--clr-orange-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--t-fast);
}
.form-link:hover { color: var(--clr-gold-light); }

.field-error {
  font-size: var(--fs-xs);
  color: var(--clr-error);
  min-height: 1.2em;
  display: block;
}

.form-disclaimer {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  text-align: center;
  line-height: 1.5;
}


/* ---- FORM SUCCESS STATE ------------------------------------------ */
.form-success {
  background: var(--clr-surface-2);
  border: 1px solid rgba(91,173,114,0.25);
  border-radius: var(--radius-xl);
  padding: var(--sp-10) var(--sp-8);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(91,173,114,0.08);
  animation: success-appear 0.5s var(--ease-spring) both;
}
.form-success[hidden] { display: none; }

.form-success__icon {
  width: 80px; height: 80px;
  animation: success-pop 0.6s var(--ease-spring) 0.15s both;
}
.form-success__title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  letter-spacing: 0.04em;
  color: var(--clr-text);
}
.form-success__msg {
  font-size: var(--fs-base);
  color: var(--clr-text-dim);
  line-height: 1.55;
}
.form-success__msg strong { color: var(--clr-orange-light); }
.form-success__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  background: var(--clr-surface-3);
  border-radius: var(--radius-md);
  padding: var(--sp-5) var(--sp-6);
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
  width: 100%;
  text-align: left;
}


/* ---- VENUE CARDS -------------------------------------------------- */
.venue-card {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--t-fast);
}
.venue-card:hover { border-color: var(--clr-border-hover); }

.venue-card__icon {
  width: 22px; height: 22px;
  color: var(--clr-orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.venue-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: var(--sp-1);
}
.venue-card__text {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.venue__maps-btn {
  margin-top: var(--sp-2);
}


/* ---- FOOTER COMPONENTS ------------------------------------------- */
.footer__logo-text {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  letter-spacing: 0.04em;
  color: var(--clr-orange);
  margin-bottom: var(--sp-3);
}
.footer__tagline {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
}
.footer__tagline strong { color: var(--clr-text-dim); }
.footer__disclaimer {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  line-height: 1.5;
  padding: var(--sp-3) var(--sp-4);
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-md);
  border-left: 2px solid var(--clr-orange-dark);
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-4);
}
.footer__nav-link {
  display: block;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  padding-block: var(--sp-2);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.footer__nav-link:hover {
  color: var(--clr-orange-light);
  padding-left: var(--sp-2);
}

.social-links {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: var(--clr-surface-3);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition: background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), transform var(--t-fast);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
  color: #fff;
  transform: translateY(-2px);
}

.footer__handle {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-5);
}
.footer__email {
  font-size: var(--fs-sm);
  color: var(--clr-orange-light);
  transition: color var(--t-fast);
  word-break: break-all;
}
.footer__email:hover { color: var(--clr-gold-light); }

.footer__copy {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}
.footer__legal {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  opacity: 0.6;
}
