:root {
  --orange: #FF7323;
  --orange-deep: #FD5B39;
  --orange-light: #FE6827;
  --red: #FE543C;
  --brown: #564743;
  --black: #211B1A;
  --cyan: #2EBFCF;
  --green: #9AD84A;
  --pink: #F49DBA;
  --yellow: #FAC473;
  --white: #FFFFFF;
  --shadow: 0 8px 30px rgba(33, 27, 26, 0.15);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--black);
  background: var(--orange);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body {
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }

/* ===== Header ===== */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: var(--orange);
  color: var(--white);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  height: 96px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(33, 27, 26, 0.18));
}
@media (max-width: 600px) {
  .brand-logo { height: 72px; }
}
.brand-tag {
  font-family: 'Caveat Brush', cursive;
  font-size: 1.3rem;
  color: var(--white);
  opacity: 0.9;
}

/* ===== Nav ===== */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--white);
  padding: 6px 2px;
  position: relative;
  transition: opacity 0.15s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-link:hover { opacity: 0.92; }
.nav-link:hover::after { transform: scaleX(1); }

/* CTA "Boutique en ligne" — white pill that pops on the orange topbar */
.nav-cta {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--orange-deep);
  background: var(--white);
  padding: 10px 20px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(33, 27, 26, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(33, 27, 26, 0.26);
}

/* Burger — hidden on desktop, shown on mobile */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
  margin: 0 auto;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 760px) {
  .topbar { flex-wrap: wrap; }
  .nav-burger { display: flex; }
  .nav {
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
    padding: 0;
  }
  .nav.is-open {
    max-height: 420px;
    padding: 14px 0 8px;
  }
  .nav-link {
    font-size: 1.1rem;
    padding: 10px 2px;
    width: 100%;
  }
  .nav-cta {
    margin-top: 8px;
    align-self: flex-start;
  }
}

main {
  flex: 1;
  padding: 16px 32px 64px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* ===== Hero ===== */
.hero {
  text-align: center;
  padding: 48px 16px 32px;
  color: var(--white);
}
.hero-title {
  font-family: 'Bowlby One', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.hero-script {
  font-family: 'Caveat Brush', cursive;
  font-size: 1.1em;
  text-transform: none;
  display: inline-block;
  transform: rotate(-3deg);
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto;
  opacity: 0.95;
}

/* ===== Event grid ===== */
.event-grid {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.event-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(33, 27, 26, 0.22);
}
.event-card-link { display: block; }
.event-card-img {
  height: 180px;
  background-color: var(--orange-light);
  background-size: cover;
  background-position: center;
}
.event-card-body {
  padding: 20px 22px 22px;
}
.event-card-title {
  font-family: 'Bowlby One', sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
  margin: 12px 0 8px;
  line-height: 1.05;
}
.event-card-date {
  color: var(--brown);
  margin: 0 0 4px;
  font-weight: 500;
}
.event-card-meta {
  color: var(--brown);
  margin: 0 0 12px;
  font-size: 0.95rem;
}
.event-card-places { display: none; } /* replaced by .places-box */

.places-box {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(255, 115, 35, 0.08);
  border-left: 4px solid var(--orange-deep);
  border-radius: 6px;
}
.places-box .places-headline {
  margin: 0;
  font-family: 'Bowlby One', sans-serif;
  color: var(--orange-deep);
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.places-box .places-headline strong { font-size: 2.2rem; }
.places-box .places-label {
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
.places-total {
  color: var(--brown);
  opacity: 0.6;
}
.places-box .places-sub {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--brown);
  font-weight: 500;
}

/* Progress bar */
.places-bar {
  margin-top: 10px;
  height: 8px;
  background: rgba(33,27,26,0.10);
  border-radius: 999px;
  overflow: hidden;
}
.places-bar span {
  display: block;
  height: 100%;
  background: var(--orange-deep);
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(.4,.0,.2,1);
}
.places-box--low .places-bar span { background: var(--red); }
.places-box--full .places-bar span { background: var(--brown); width: 100% !important; }
.places-bar--big {
  height: 12px;
  margin-top: 14px;
}
.places-box--low {
  background: rgba(254, 84, 60, 0.10);
  border-left-color: var(--red);
  animation: pulse-low 1.8s ease-in-out infinite;
}
.places-box--low .places-headline { color: var(--red); }
.places-box--low .places-sub { color: var(--red); font-weight: 700; }
.places-box--full {
  background: rgba(33, 27, 26, 0.06);
  border-left-color: var(--brown);
}
.places-box--full .places-headline { color: var(--brown); }

@keyframes pulse-low {
  0%, 100% { background: rgba(254, 84, 60, 0.10); }
  50% { background: rgba(254, 84, 60, 0.22); }
}

/* Detail page banner */
.places-banner {
  background: rgba(255, 115, 35, 0.10);
  border-left: 6px solid var(--orange-deep);
  padding: 18px 22px;
  border-radius: 10px;
}
.places-banner-headline {
  margin: 0;
  font-family: 'Bowlby One', sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--orange-deep);
  text-transform: uppercase;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.places-banner-headline strong { font-size: 3rem; }
.places-banner-label {
  font-size: 1rem;
  letter-spacing: 0.5px;
}
.places-banner-sub {
  margin: 8px 0 0;
  color: var(--brown);
  font-weight: 500;
}
.places-banner--full .places-banner-headline strong { display: none; }
.places-banner--low {
  background: rgba(254, 84, 60, 0.13);
  border-left-color: var(--red);
  animation: pulse-low 1.8s ease-in-out infinite;
}
.places-banner--low .places-banner-headline { color: var(--red); }
.places-banner--low .places-banner-sub { color: var(--red); font-weight: 700; }
.places-banner--full {
  background: rgba(33, 27, 26, 0.06);
  border-left-color: var(--brown);
}
.places-banner--full .places-banner-headline { color: var(--brown); }

.badge--low {
  background: var(--red);
  color: var(--white);
}

/* ===== Badges ===== */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  background: var(--brown);
  margin-right: 6px;
}
.badge--Tournoi   { background: var(--red); }
.badge--Initiation { background: var(--cyan); }
.badge--Soirée    { background: #b46be0; }
.badge--Famille   { background: var(--green); color: var(--black); }
.badge--full {
  background: var(--red);
  color: var(--white);
}
.badge--past {
  background: var(--brown);
  color: var(--white);
}
.event-card-cta {
  margin: 14px 0 0;
  color: var(--orange-deep);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Diagonal ribbon on past event image when gallery exists */
.event-card-img { position: relative; overflow: hidden; }
.gallery-ribbon {
  position: absolute;
  top: 14px;
  right: -42px;
  transform: rotate(35deg);
  background: var(--cyan);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 0.78rem;
  padding: 6px 50px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
.gallery-ribbon-icon { margin-right: 6px; font-size: 0.95rem; }
.event-card--with-gallery {
  opacity: 1;
  filter: none;
}
.event-card--with-gallery:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(33,27,26,0.28);
}

/* Gallery section header */
.gallery-head {
  text-align: center;
  margin: 0 0 24px;
}
.gallery-eyebrow {
  font-family: 'Caveat Brush', cursive;
  font-size: 1.3rem;
  color: var(--orange-deep);
  margin: 0 0 6px;
}
.gallery-title {
  font-family: 'Bowlby One', sans-serif;
  text-transform: uppercase;
  font-size: 2rem;
  margin: 0 0 8px;
  line-height: 1;
}
.gallery-count {
  color: var(--brown);
  font-weight: 500;
  margin: 0;
}

/* Masonry-like gallery with polaroid feel */
.gallery {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 3 200px;
  column-gap: 14px;
}
.gallery-item {
  margin: 0 0 14px;
  break-inside: avoid;
  display: block;
}
.gallery-thumb {
  display: block;
  width: 100%;
  padding: 8px 8px 14px;
  margin: 0;
  border: none;
  background: var(--white);
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(33,27,26,0.18);
  transition: transform 0.25s cubic-bezier(.4,.0,.2,1), box-shadow 0.25s ease;
}
.gallery-item--0 .gallery-thumb { transform: rotate(-1.2deg); }
.gallery-item--1 .gallery-thumb { transform: rotate(1deg); }
.gallery-item--2 .gallery-thumb { transform: rotate(-0.5deg); }
.gallery-item--3 .gallery-thumb { transform: rotate(1.5deg); }
.gallery-item--4 .gallery-thumb { transform: rotate(-1.8deg); }
.gallery-thumb:hover {
  transform: rotate(0) scale(1.04);
  box-shadow: 0 14px 32px rgba(33,27,26,0.30);
  z-index: 2;
  position: relative;
}
.gallery-thumb img {
  width: 100%;
  display: block;
  border-radius: 2px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.15s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,0.25);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-weight: 600;
  background: rgba(0,0,0,0.5);
  padding: 6px 14px;
  border-radius: 999px;
}
@media (max-width: 600px) {
  .lightbox-prev { left: 10px; width: 44px; height: 44px; font-size: 28px; }
  .lightbox-next { right: 10px; width: 44px; height: 44px; font-size: 28px; }
  .lightbox-close { top: 12px; right: 12px; }
}

.section-title {
  font-family: 'Bowlby One', sans-serif;
  text-transform: uppercase;
  font-size: 1.3rem;
  color: var(--white);
  margin: 48px 0 16px;
  letter-spacing: 0.5px;
}
.event-card--past {
  opacity: 0.75;
  filter: grayscale(0.3);
  cursor: default;
}
.event-card-desc {
  color: var(--brown);
  margin: 12px 0 0;
  font-size: 0.95rem;
  line-height: 1.45;
}
.event-card--past:hover {
  transform: none;
  box-shadow: var(--shadow);
}

/* ===== Empty ===== */
.empty {
  text-align: center;
  color: var(--white);
  padding: 80px 16px;
}
.empty-sub {
  font-family: 'Caveat Brush', cursive;
  font-size: 1.4rem;
  opacity: 0.9;
}

/* ===== Detail ===== */
.back-link {
  display: inline-block;
  color: var(--white);
  margin: 8px 0 16px;
  font-weight: 600;
  opacity: 0.9;
}
.back-link:hover { opacity: 1; }

.event-detail {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 820px;
  margin: 0 auto;
}
/* Display the event vignette at its actual aspect ratio (the admin upload
   form lets you crop to 1:1 / 16:9 / 4:3 / libre — we respect whatever was
   chosen). A max-height keeps super-tall portraits from dominating the page
   on desktop, and object-fit:contain ensures we never crop a second time.
   Fallback orange background so the area doesn't flash empty during load. */
.event-hero {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  background-color: var(--orange-light);
}
.event-head {
  padding: 28px 32px 8px;
}
.event-head h1 {
  font-family: 'Bowlby One', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-transform: uppercase;
  margin: 12px 0 8px;
  line-height: 1.05;
}
.event-meta {
  color: var(--brown);
  font-size: 1.05rem;
  margin: 0 0 8px;
}
.event-desc {
  padding: 8px 32px 16px;
  color: var(--black);
  line-height: 1.55;
}
.event-desc p { margin: 0 0 12px; }

.event-places {
  padding: 0 32px 16px;
}
.places-open { color: var(--orange-deep); font-size: 1.1rem; margin: 0; }
.places-full { color: var(--red); font-size: 1.1rem; margin: 0; font-weight: 600; }

/* ===== Forms ===== */
.register {
  padding: 24px 32px 36px;
  border-top: 2px dashed rgba(33,27,26,0.08);
}
.register h2 {
  font-family: 'Bowlby One', sans-serif;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-size: 1.4rem;
}
.register-help {
  color: var(--brown);
  margin: 0 0 18px;
}
.form { display: flex; flex-direction: column; gap: 14px; }
.form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  color: var(--brown);
  font-size: 0.95rem;
}
.form-hint {
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--brown);
  opacity: 0.75;
  margin-top: -2px;
}

.known-identity {
  padding: 14px 18px;
  background: rgba(46, 191, 207, 0.10);
  border-left: 4px solid var(--cyan);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.known-label {
  font-size: 0.82rem;
  color: var(--brown);
  font-weight: 500;
}
.known-identity strong {
  font-size: 1.1rem;
  color: var(--black);
}

.checkbox-label {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 115, 35, 0.08);
  border-radius: 10px;
  border-left: 4px solid var(--orange-deep);
  cursor: pointer;
  font-weight: 400 !important;
}
.checkbox-label input[type="checkbox"] {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--orange-deep);
  cursor: pointer;
}
.checkbox-text {
  font-size: 0.92rem;
  color: var(--brown);
  line-height: 1.45;
}
.checkbox-text strong {
  color: var(--black);
  display: block;
  margin-bottom: 3px;
}
.phone-captured-note {
  margin-top: 18px;
  padding: 12px 16px;
  background: rgba(46, 191, 207, 0.12);
  border-left: 3px solid var(--cyan);
  border-radius: 6px;
  color: var(--brown);
  font-size: 0.95rem;
  text-align: left;
}
.form input, .form select {
  font: inherit;
  padding: 12px 14px;
  border: 2px solid rgba(33,27,26,0.12);
  border-radius: 10px;
  background: #fff;
  color: var(--black);
  transition: border-color 0.15s ease;
}
.form input:focus, .form select:focus {
  outline: none;
  border-color: var(--orange);
}
.btn-primary {
  margin-top: 8px;
  background: var(--orange-deep);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 12px;
  padding: 14px 22px;
  cursor: pointer;
  transition: transform 0.1s ease, background 0.15s ease, opacity 0.15s ease;
  position: relative;
}
.btn-primary:hover { background: var(--red); }
.btn-primary:active { transform: scale(0.98); }
.btn-primary:disabled { cursor: progress; opacity: 0.92; }
.btn-loading { display: none; }
.btn-primary.is-loading .btn-label { display: none; }
.btn-primary.is-loading .btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary.is-loading .btn-loading::before {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.btn-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  color: var(--orange-deep);
  text-decoration: underline;
}

.btn-secondary {
  background: transparent;
  color: var(--brown);
  border: 2px solid rgba(33,27,26,0.2);
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  padding: 14px 22px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
  position: relative;
}
.btn-secondary:hover {
  background: rgba(33,27,26,0.05);
  border-color: var(--brown);
}
.btn-secondary:disabled { cursor: progress; opacity: 0.85; }
.btn-secondary.is-loading .btn-label { display: none; }
.btn-secondary.is-loading .btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-secondary.is-loading .btn-loading::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 2px solid rgba(86,71,67,0.35);
  border-top-color: var(--brown);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.form--choice {
  gap: 12px;
}


.alert {
  background: #fff0ec;
  border: 2px solid var(--red);
  color: var(--red);
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.alert p { margin: 0 0 6px; }
.alert p:last-child { margin-bottom: 0; }
.alert-help { font-weight: 500; }

.success-box {
  text-align: center;
  padding: 24px 16px;
}
.success-box h2 {
  font-family: 'Bowlby One', sans-serif;
  text-transform: uppercase;
  font-size: 1.6rem;
  margin: 0 0 12px;
  color: var(--orange-deep);
}
.success-meta {
  color: var(--brown);
  margin-top: 8px;
}
.status-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
}

/* ===== Venue banner (full-bleed) ===== */
.venue {
  position: relative;
  margin: 80px calc(-50vw + 50%) 0;
  width: 100vw;
  min-height: 480px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.venue-image {
  position: absolute;
  inset: 0;
  background-image: url('/static/boutique.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 6s ease;
}
.venue:hover .venue-image { transform: scale(1.06); }
.venue-overlay {
  position: relative;
  width: 100%;
  background: linear-gradient(
    100deg,
    rgba(33,27,26,0.78) 0%,
    rgba(33,27,26,0.45) 45%,
    rgba(33,27,26,0.05) 70%,
    rgba(33,27,26,0) 100%
  );
  display: flex;
  align-items: center;
  padding: 64px 8vw;
}
.venue-inner {
  max-width: 520px;
  color: var(--white);
}
.venue-eyebrow {
  font-family: 'Caveat Brush', cursive;
  font-size: 1.4rem;
  margin: 0 0 12px;
  color: var(--orange);
  letter-spacing: 0.5px;
}
.venue-title {
  font-family: 'Bowlby One', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-transform: uppercase;
  margin: 0 0 18px;
  line-height: 1;
}
.venue-script {
  font-family: 'Caveat Brush', cursive;
  text-transform: none;
  font-size: 0.85em;
  display: inline-block;
  transform: rotate(-3deg);
  color: var(--orange);
}
.venue-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.venue-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 500;
}
.venue-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.venue-contact a {
  color: var(--white);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
  transition: border-color 0.15s ease;
}
.venue-contact a:hover { border-bottom-color: var(--orange); }
.venue-cta {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 700px) {
  .venue { min-height: 420px; margin-top: 56px; }
  .venue-overlay {
    padding: 40px 24px;
    background: linear-gradient(
      180deg,
      rgba(33,27,26,0.25) 0%,
      rgba(33,27,26,0.75) 60%,
      rgba(33,27,26,0.92) 100%
    );
    align-items: flex-end;
  }
  .venue-inner { max-width: 100%; }
}

/* ===== Footer ===== */
/* Newsletter band — above footer */
.news-band { background: #2b211d; color: #fff; padding: 36px 24px; }
.news-inner {
  max-width: 1100px; margin: 0 auto; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.news-text h2 {
  font-family: 'Bowlby One', sans-serif; text-transform: uppercase;
  font-size: 1.5rem; margin: 0 0 6px; color: var(--orange);
}
.news-text p { margin: 0; opacity: 0.85; font-size: 0.98rem; }
.news-form { display: flex; gap: 8px; flex: 1; min-width: 280px; max-width: 460px; }
.news-form input {
  flex: 1; border: 2px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06);
  color: #fff; border-radius: 999px; padding: 13px 20px; font: inherit; font-size: 1rem; outline: none;
}
.news-form input::placeholder { color: rgba(255,255,255,0.5); }
.news-form input:focus { border-color: var(--orange); }
.news-form button {
  background: var(--orange); color: #fff; border: 0; border-radius: 999px;
  padding: 13px 26px; font-family: 'Bowlby One', sans-serif; text-transform: uppercase;
  letter-spacing: 0.5px; font-size: 0.85rem; cursor: pointer; transition: transform 0.15s ease, background 0.15s ease;
}
.news-form button:hover { transform: translateY(-1px); background: var(--orange-deep); }
.news-toast {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: #2a6; color: #fff; padding: 14px 24px; border-radius: 999px;
  font-weight: 600; box-shadow: 0 10px 30px rgba(0,0,0,0.25); z-index: 9999;
}
.news-toast.is-err { background: #c33; }

.footer {
  padding: 40px 32px 32px;
  color: var(--white);
  background: var(--black);
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-legal {
  max-width: 1100px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
  opacity: 0.75;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-legal a { color: var(--white); }
.footer-legal a:hover { text-decoration: underline; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12); color: var(--white);
  transition: background 0.15s ease, transform 0.15s ease;
}
.footer-social a:hover { background: var(--orange); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-brand p {
  margin: 12px 0 0;
  opacity: 0.75;
  font-size: 0.95rem;
  max-width: 280px;
}
.footer-logo {
  height: 64px;
  width: auto;
}
.footer-label {
  font-family: 'Bowlby One', sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  margin: 0 0 12px;
  color: var(--orange);
}
.footer-contact p { margin: 0 0 8px; line-height: 1.45; }
.footer-contact a {
  color: var(--white);
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding-bottom: 1px;
}
.footer-contact a:hover { border-bottom-color: var(--orange); }
.footer-phone {
  font-family: 'Bowlby One', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  border-bottom: none !important;
}
@media (max-width: 700px) {
  .footer { padding: 32px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 600px) {
  main { padding: 16px 16px 48px; }
  .topbar { padding: 18px 18px; }
  .brand-tag { display: none; }
  .event-head, .event-desc, .event-places, .register { padding-left: 20px; padding-right: 20px; }
}
