/* ==========================================================================
   LIGHTNING ETCH — SITE STYLES
   Theme: dark charcoal, electric blue accents, gold CTAs
   Fonts: Oswald (headings), Inter (body)
   ========================================================================== */

:root {
  --le-bg:          #0e1116;
  --le-bg-2:        #151a22;
  --le-bg-3:        #1c232d;
  --le-hero-fade:   #0A1228;
  --le-line:        #262d38;
  --le-text:        #e8ecf2;
  --le-muted:       #8b95a5;
  --le-blue:        #006CCD;
  --le-blue-light:  #2b8ee8;
  --le-blue-glow:   rgba(0, 108, 205, 0.35);
  --le-gold:        #f5b301;
  --le-gold-soft:   rgba(245, 179, 1, 0.12);
  --le-gold-glow:   rgba(245, 179, 1, 0.45);
  --le-radius:      12px;
  --le-radius-sm:   8px;
  --le-max:         1200px;
  --le-font-head:   'Oswald', 'Barlow Condensed', system-ui, sans-serif;
  --le-font-body:   'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--le-bg);
  color: var(--le-text);
  font-family: var(--le-font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--le-blue-light); text-decoration: none; }
a:hover { color: var(--le-blue); }
h1, h2, h3, h4 {
  font-family: var(--le-font-head);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 16px;
  line-height: 1.05;
}
.le-container { max-width: var(--le-max); margin: 0 auto; padding: 0 24px; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.le-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--le-radius-sm);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.le-btn--gold { background: var(--le-gold); color: #1a1408; }
.le-btn--gold:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -10px var(--le-gold-glow); color: #1a1408; }
.le-btn--blue { background: var(--le-blue); color: white; }
.le-btn--blue:hover { background: var(--le-blue-light); transform: translateY(-1px); color: white; }
.le-btn--ghost { background: transparent; color: var(--le-text); border-color: var(--le-line); }
.le-btn--ghost:hover { border-color: var(--le-blue); color: var(--le-blue-light); }
.le-btn--sm { padding: 10px 18px; font-size: 12px; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.le-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 17, 22, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--le-line);
}
.le-header__inner {
  max-width: var(--le-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}
.le-header__logo img { height: 56px; width: auto; }
.le-header__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.le-header__nav a {
  display: block;
  padding: 10px 16px;
  color: var(--le-text);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--le-radius-sm);
  transition: color 0.15s, background 0.15s;
}
.le-header__nav a:hover { color: var(--le-blue-light); }
.le-header__nav a.is-active { color: var(--le-blue); background: rgba(0, 108, 205, 0.08); }
.le-header__cta { margin-left: 12px; }
.le-header__burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  flex-direction: column;
}
.le-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--le-text);
  transition: transform 0.2s, opacity 0.2s;
}
.le-header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.le-header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.le-header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.le-hero {
  position: relative;
  padding: 80px 24px 100px;
  overflow: hidden;

  background:
    radial-gradient(
      1200px 500px at 30% 30%,
      #182033 0%,
      var(--le-hero-fade) 55%,
      var(--le-bg) 100%
    );
}
.le-hero__inner {
  max-width: var(--le-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.le-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--le-blue);
  margin-bottom: 16px;
}
.le-hero__title {
  font-size: clamp(48px, 7vw, 88px);
  margin: 0 0 20px;
  letter-spacing: 0;
  line-height: 0.98;
}
.le-hero__title .accent { color: var(--le-blue); }
.le-hero__sub {
  font-size: 18px;
  color: var(--le-muted);
  max-width: 520px;
  margin: 0 0 32px;
}
.le-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.le-hero__image { position: relative; }
.le-hero__image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;

  /* Mask the image itself so the left edge dissolves into whatever is behind it */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 8%,
    rgba(0, 0, 0, 0.6) 22%,
    #000 38%,
    #000 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 8%,
    rgba(0, 0, 0, 0.6) 22%,
    #000 38%,
    #000 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* ==========================================================================
   HERO SPARKS — tight, fast, punchy pinpricks
   Adjust .le-hero__sparks left/top to position the origin point.
   ========================================================================== */
.le-hero__sparks {
  position: absolute;
  left: calc(52% + 20px);
  top: calc(34% + 20px);
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 5;
}

.le-hero__sparks i {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  opacity: 0;
  background: #ffffff;
  box-shadow:
    0 0 3px 0.5px rgba(255, 255, 255, 1),
    0 0 7px 1px  rgba(255, 235, 170, 0.9),
    0 0 14px 3px rgba(255, 170, 60, 0.55);
  mix-blend-mode: screen;
  animation-timing-function: cubic-bezier(0.15, 0.5, 0.4, 1);
  animation-iteration-count: infinite;
}

.le-hero__sparks i::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  width: 26px;
  height: 1.5px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 220, 130, 0.85) 40%,
    transparent 100%
  );
}

.le-hero__sparks i:nth-child(n+26) { display: none; }'

.le-hero__sparks i:nth-child(1)  { animation-name: le-spark-1;  animation-duration: 750ms; animation-delay: 0s;    }
.le-hero__sparks i:nth-child(2)  { animation-name: le-spark-2;  animation-duration: 660ms; animation-delay: 0.03s; }
.le-hero__sparks i:nth-child(3)  { animation-name: le-spark-3;  animation-duration: 810ms; animation-delay: 0.06s; }
.le-hero__sparks i:nth-child(4)  { animation-name: le-spark-4;  animation-duration: 690ms; animation-delay: 0.09s; }
.le-hero__sparks i:nth-child(5)  { animation-name: le-spark-5;  animation-duration: 840ms; animation-delay: 0.12s; }
.le-hero__sparks i:nth-child(6)  { animation-name: le-spark-6;  animation-duration: 720ms; animation-delay: 0.15s; }
.le-hero__sparks i:nth-child(7)  { animation-name: le-spark-7;  animation-duration: 795ms; animation-delay: 0.18s; }
.le-hero__sparks i:nth-child(8)  { animation-name: le-spark-8;  animation-duration: 675ms; animation-delay: 0.21s; }
.le-hero__sparks i:nth-child(9)  { animation-name: le-spark-9;  animation-duration: 870ms; animation-delay: 0.24s; }
.le-hero__sparks i:nth-child(10) { animation-name: le-spark-10; animation-duration: 750ms; animation-delay: 0.27s; }
.le-hero__sparks i:nth-child(11) { animation-name: le-spark-11; animation-duration: 900ms; animation-delay: 0.30s; }
.le-hero__sparks i:nth-child(12) { animation-name: le-spark-12; animation-duration: 705ms; animation-delay: 0.33s; }
.le-hero__sparks i:nth-child(13) { animation-name: le-spark-13; animation-duration: 780ms; animation-delay: 0.36s; }
.le-hero__sparks i:nth-child(14) { animation-name: le-spark-14; animation-duration: 645ms; animation-delay: 0.39s; }
.le-hero__sparks i:nth-child(15) { animation-name: le-spark-15; animation-duration: 855ms; animation-delay: 0.42s; }
.le-hero__sparks i:nth-child(16) { animation-name: le-spark-16; animation-duration: 720ms; animation-delay: 0.45s; }
.le-hero__sparks i:nth-child(17) { animation-name: le-spark-17; animation-duration: 825ms; animation-delay: 0.48s; }
.le-hero__sparks i:nth-child(18) { animation-name: le-spark-18; animation-duration: 690ms; animation-delay: 0.51s; }
.le-hero__sparks i:nth-child(19) { animation-name: le-spark-19; animation-duration: 885ms; animation-delay: 0.54s; }
.le-hero__sparks i:nth-child(20) { animation-name: le-spark-20; animation-duration: 735ms; animation-delay: 0.57s; }
.le-hero__sparks i:nth-child(21) { animation-name: le-spark-21; animation-duration: 810ms; animation-delay: 0.60s; }
.le-hero__sparks i:nth-child(22) { animation-name: le-spark-22; animation-duration: 660ms; animation-delay: 0.63s; }
.le-hero__sparks i:nth-child(23) { animation-name: le-spark-23; animation-duration: 870ms; animation-delay: 0.66s; }
.le-hero__sparks i:nth-child(24) { animation-name: le-spark-24; animation-duration: 750ms; animation-delay: 0.69s; }
.le-hero__sparks i:nth-child(25) { animation-name: le-spark-25; animation-duration: 795ms; animation-delay: 0.72s; }

/* 25-spark 360° radial burst, jittered throw distances 170–265px */

@keyframes le-spark-1  { 0% { transform: translate(0,0) rotate(7deg)    scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(7deg)    scale(1); opacity: 1; } 100% { transform: translate(228px, 28px)    rotate(7deg)   scale(0.2); opacity: 0; } }
@keyframes le-spark-2  { 0% { transform: translate(0,0) rotate(22deg)   scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(22deg)   scale(1); opacity: 1; } 100% { transform: translate(181px, 73px)    rotate(22deg)  scale(0.2); opacity: 0; } }
@keyframes le-spark-3  { 0% { transform: translate(0,0) rotate(36deg)   scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(36deg)   scale(1); opacity: 1; } 100% { transform: translate(210px, 153px)   rotate(36deg)  scale(0.2); opacity: 0; } }
@keyframes le-spark-4  { 0% { transform: translate(0,0) rotate(51deg)   scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(51deg)   scale(1); opacity: 1; } 100% { transform: translate(132px, 163px)   rotate(51deg)  scale(0.2); opacity: 0; } }
@keyframes le-spark-5  { 0% { transform: translate(0,0) rotate(65deg)   scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(65deg)   scale(1); opacity: 1; } 100% { transform: translate(74px, 159px)    rotate(65deg)  scale(0.2); opacity: 0; } }
@keyframes le-spark-6  { 0% { transform: translate(0,0) rotate(79deg)   scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(79deg)   scale(1); opacity: 1; } 100% { transform: translate(47px, 240px)    rotate(79deg)  scale(0.2); opacity: 0; } }
@keyframes le-spark-7  { 0% { transform: translate(0,0) rotate(94deg)   scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(94deg)   scale(1); opacity: 1; } 100% { transform: translate(-15px, 219px)   rotate(94deg)  scale(0.2); opacity: 0; } }
@keyframes le-spark-8  { 0% { transform: translate(0,0) rotate(108deg)  scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(108deg)  scale(1); opacity: 1; } 100% { transform: translate(-59px, 181px)   rotate(108deg) scale(0.2); opacity: 0; } }
@keyframes le-spark-9  { 0% { transform: translate(0,0) rotate(122deg)  scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(122deg)  scale(1); opacity: 1; } 100% { transform: translate(-140px, 225px)  rotate(122deg) scale(0.2); opacity: 0; } }
@keyframes le-spark-10 { 0% { transform: translate(0,0) rotate(137deg)  scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(137deg)  scale(1); opacity: 1; } 100% { transform: translate(-150px, 140px)  rotate(137deg) scale(0.2); opacity: 0; } }
@keyframes le-spark-11 { 0% { transform: translate(0,0) rotate(151deg)  scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(151deg)  scale(1); opacity: 1; } 100% { transform: translate(-210px, 116px)  rotate(151deg) scale(0.2); opacity: 0; } }
@keyframes le-spark-12 { 0% { transform: translate(0,0) rotate(166deg)  scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(166deg)  scale(1); opacity: 1; } 100% { transform: translate(-175px, 44px)   rotate(166deg) scale(0.2); opacity: 0; } }
@keyframes le-spark-13 { 0% { transform: translate(0,0) rotate(180deg)  scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(180deg)  scale(1); opacity: 1; } 100% { transform: translate(-255px, 0)      rotate(180deg) scale(0.2); opacity: 0; } }
@keyframes le-spark-14 { 0% { transform: translate(0,0) rotate(194deg)  scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(194deg)  scale(1); opacity: 1; } 100% { transform: translate(-209px, -52px)  rotate(194deg) scale(0.2); opacity: 0; } }
@keyframes le-spark-15 { 0% { transform: translate(0,0) rotate(209deg)  scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(209deg)  scale(1); opacity: 1; } 100% { transform: translate(-171px, -95px)  rotate(209deg) scale(0.2); opacity: 0; } }
@keyframes le-spark-16 { 0% { transform: translate(0,0) rotate(223deg)  scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(223deg)  scale(1); opacity: 1; } 100% { transform: translate(-172px, -160px) rotate(223deg) scale(0.2); opacity: 0; } }
@keyframes le-spark-17 { 0% { transform: translate(0,0) rotate(238deg)  scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(238deg)  scale(1); opacity: 1; } 100% { transform: translate(-93px, -149px)  rotate(238deg) scale(0.2); opacity: 0; } }
@keyframes le-spark-18 { 0% { transform: translate(0,0) rotate(252deg)  scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(252deg)  scale(1); opacity: 1; } 100% { transform: translate(-77px, -238px)  rotate(252deg) scale(0.2); opacity: 0; } }
@keyframes le-spark-19 { 0% { transform: translate(0,0) rotate(266deg)  scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(266deg)  scale(1); opacity: 1; } 100% { transform: translate(-15px, -219px)  rotate(266deg) scale(0.2); opacity: 0; } }
@keyframes le-spark-20 { 0% { transform: translate(0,0) rotate(281deg)  scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(281deg)  scale(1); opacity: 1; } 100% { transform: translate(38px, -196px)   rotate(281deg) scale(0.2); opacity: 0; } }
@keyframes le-spark-21 { 0% { transform: translate(0,0) rotate(295deg)  scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(295deg)  scale(1); opacity: 1; } 100% { transform: translate(110px, -236px)  rotate(295deg) scale(0.2); opacity: 0; } }
@keyframes le-spark-22 { 0% { transform: translate(0,0) rotate(310deg)  scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(310deg)  scale(1); opacity: 1; } 100% { transform: translate(119px, -142px)  rotate(310deg) scale(0.2); opacity: 0; } }
@keyframes le-spark-23 { 0% { transform: translate(0,0) rotate(324deg)  scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(324deg)  scale(1); opacity: 1; } 100% { transform: translate(182px, -132px)  rotate(324deg) scale(0.2); opacity: 0; } }
@keyframes le-spark-24 { 0% { transform: translate(0,0) rotate(338deg)  scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(338deg)  scale(1); opacity: 1; } 100% { transform: translate(195px, -79px)   rotate(338deg) scale(0.2); opacity: 0; } }
@keyframes le-spark-25 { 0% { transform: translate(0,0) rotate(353deg)  scale(0.3); opacity: 0; } 8% { transform: translate(0,0) rotate(353deg)  scale(1); opacity: 1; } 100% { transform: translate(243px, -30px)   rotate(353deg) scale(0.2); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .le-hero__sparks i { animation: none; opacity: 0; }
}

/* ==========================================================================
   CATEGORY GRID
   ========================================================================== */
.le-cats { padding: 96px 24px; border-top: 1px solid var(--le-line); }
.le-cats__header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.le-cats__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--le-blue);
  font-weight: 700;
  margin-bottom: 12px;
}
.le-cats__title { font-size: clamp(32px, 5vw, 52px); margin: 0 0 12px; }
.le-cats__title .accent { color: var(--le-blue); }
.le-cats__sub { color: var(--le-muted); font-size: 16px; }
.le-cats__grid {
  max-width: var(--le-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.le-cat {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--le-radius);
  background: var(--le-bg-2);
  border: 1px solid var(--le-line);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: var(--le-text);
  aspect-ratio: 4 / 3;
}
.le-cat:hover {
  transform: translateY(-4px);
  border-color: var(--le-blue);
  box-shadow: 0 20px 40px -20px var(--le-blue-glow);
}
.le-cat__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
}
.le-cat__img::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(14, 17, 22, 0) 0%, rgba(14, 17, 22, 0.7) 100%);
  opacity: 0.25;
  transition: opacity 0.3s ease;
}
.le-cat:hover .le-cat__img::after { opacity: 1; }
.le-cat__title {
  font-family: var(--le-font-head);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.6);
}
.le-cat:hover .le-cat__title { text-shadow: none; }
.le-cat__body {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.le-cat__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--le-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.le-cat:hover .le-cat__arrow { transform: translateX(4px); }
.le-cat.is-placeholder .le-cat__img {
  background: linear-gradient(135deg, #1c232d 0%, #0e1116 100%);
}
.le-cat.is-placeholder .le-cat__img::before {
  content: '\26A1';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(0, 108, 205, 0.15);
}

/* ==========================================================================
   SCHEDULE
   ========================================================================== */
.le-schedule {
  background: radial-gradient(1200px 500px at 50% -10%, #1a2130 0%, var(--le-bg) 60%);
  padding: 96px 24px 120px;
  border-top: 1px solid var(--le-line);
}
.le-schedule__inner { max-width: 1080px; margin: 0 auto; }
.le-schedule__header { text-align: center; margin-bottom: 48px; }
.le-schedule__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--le-blue);
  font-weight: 700;
  margin-bottom: 12px;
}
.le-schedule__title { font-size: clamp(32px, 5vw, 52px); margin: 0 0 12px; }
.le-schedule__title .accent { color: var(--le-blue); }
.le-schedule__sub { color: var(--le-muted); max-width: 640px; margin: 0 auto; font-size: 15px; }
.le-schedule__list { display: flex; flex-direction: column; gap: 12px; }
.le-schedule__loading { text-align: center; color: var(--le-muted); padding: 32px 0; font-size: 14px; }

.le-row {
  background: var(--le-bg-2);
  border: 1px solid var(--le-line);
  border-radius: var(--le-radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.le-row:hover { border-color: var(--le-blue); transform: translateY(-1px); box-shadow: 0 8px 24px -12px var(--le-blue-glow); }
.le-row__summary {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
}
.le-row__date { display: flex; flex-direction: column; align-items: flex-start; }
.le-row__dow { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--le-muted); font-weight: 700; }
.le-row__daynum { font-family: var(--le-font-head); font-size: 32px; font-weight: 700; line-height: 1; margin-top: 2px; }
.le-row__month { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--le-muted); margin-top: 2px; }
.le-row__info { min-width: 0; }
.le-row__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
  background: rgba(0, 108, 205, 0.15);
  color: var(--le-blue);
  border: 1px solid rgba(0, 108, 205, 0.35);
}
.le-row__location { font-size: 18px; font-weight: 700; margin: 0 0 4px; color: var(--le-text); }
.le-row__time { font-size: 13px; color: var(--le-muted); }
.le-row__chevron { color: var(--le-muted); transition: transform 0.25s, color 0.2s; font-size: 20px; }
.le-row.is-open .le-row__chevron { transform: rotate(180deg); color: var(--le-blue); }
.le-row.is-highlight {
  background: linear-gradient(180deg, var(--le-gold-soft) 0%, var(--le-bg-2) 100%);
  border-color: var(--le-gold);
  box-shadow: 0 0 0 1px var(--le-gold-glow), 0 12px 32px -16px var(--le-gold-glow);
}
.le-row.is-highlight .le-row__badge { background: var(--le-gold); color: #1a1408; border-color: var(--le-gold); }
.le-row.is-highlight .le-row__daynum { color: var(--le-gold); }
.le-row__pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: le-pulse 2s infinite;
}
@keyframes le-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(245, 179, 1, 0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(245, 179, 1, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 179, 1, 0); }
}
.le-row.is-empty .le-row__location { color: var(--le-muted); font-style: italic; font-weight: 500; }
.le-row.is-empty .le-row__badge { opacity: 0.7; }
.le-row__details { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; border-top: 1px solid transparent; }
.le-row.is-open .le-row__details { max-height: 400px; border-top-color: var(--le-line); }
.le-row__details-inner {
  padding: 18px 22px 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
}
.le-row__address { font-size: 14px; color: var(--le-text); line-height: 1.55; margin: 0 0 8px; }
.le-row__desc { font-size: 13px; color: var(--le-muted); line-height: 1.6; margin: 0; }
.le-btn-maps {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--le-gold);
  color: #1a1408;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: var(--le-radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}
.le-btn-maps:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -8px var(--le-gold-glow); color: #1a1408; }
.le-schedule__footnote { text-align: center; color: var(--le-muted); font-size: 13px; margin-top: 32px; }
.le-schedule__footnote a { color: var(--le-blue); font-weight: 600; margin-left: 6px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.le-footer { background: #080a0d; border-top: 1px solid var(--le-line); padding: 64px 24px 32px; margin-top: 0; }
.le-footer__inner {
  max-width: var(--le-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.le-footer__brand img { height: 60px; margin-bottom: 14px; }
.le-footer__tagline { color: var(--le-muted); font-size: 14px; max-width: 300px; }
.le-footer__col h4 { font-size: 12px; letter-spacing: 0.25em; color: var(--le-blue); margin: 0 0 20px; }
.le-footer__col ul { list-style: none; margin: 0; padding: 0; }
.le-footer__col li { margin-bottom: 10px; }
.le-footer__col a { color: var(--le-text); font-size: 14px; text-decoration: none; }
.le-footer__col a:hover { color: var(--le-blue-light); }
.le-footer__contact li { color: var(--le-muted); font-size: 14px; }
.le-footer__social { display: flex; gap: 12px; margin-top: 20px; }
.le-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--le-bg-2);
  border: 1px solid var(--le-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--le-text);
  transition: all 0.2s;
}
.le-footer__social a:hover { background: var(--le-blue); border-color: var(--le-blue); color: white; transform: translateY(-2px); }
.le-footer__legal {
  max-width: var(--le-max);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--le-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--le-muted);
  font-size: 12px;
}

/* ==========================================================================
   SERVICES / PAGE HERO
   ========================================================================== */
.le-page-hero { padding: 80px 24px 60px; text-align: center; border-bottom: 1px solid var(--le-line); }
.le-page-hero h1 { font-size: clamp(40px, 6vw, 64px); margin: 0 0 12px; }
.le-page-hero h1 .accent { color: var(--le-blue); }
.le-page-hero p { color: var(--le-muted); max-width: 640px; margin: 0 auto; font-size: 17px; }
.le-services { padding: 80px 24px; }
.le-services__inner { max-width: var(--le-max); margin: 0 auto; display: flex; flex-direction: column; gap: 32px; }
.le-service {
  display: grid;
  grid-template-columns: 320px 1fr auto;
  gap: 32px;
  align-items: center;
  background: var(--le-bg-2);
  border: 1px solid var(--le-line);
  border-radius: var(--le-radius);
  overflow: hidden;
  padding: 24px;
}
.le-service__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--le-radius-sm);
  background-size: cover;
  background-position: center;
  background-color: var(--le-bg-3);
}
.le-service__body h3 { font-size: 26px; margin: 0 0 10px; }
.le-service__body p { color: var(--le-muted); margin: 0; font-size: 15px; }
.le-service__price {
  text-align: center;
  padding: 20px 24px;
  min-width: 140px;
  background: var(--le-bg-3);
  border-radius: var(--le-radius-sm);
  border: 1px dashed var(--le-line);
}
.le-service__price .label { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--le-muted); }
.le-service__price .value { font-family: var(--le-font-head); font-size: 28px; color: var(--le-gold); font-weight: 700; margin-top: 4px; }

.le-catchall {
  padding: 100px 24px;
  text-align: center;
  background: radial-gradient(800px 300px at 50% 0%, rgba(0, 108, 205, 0.08) 0%, var(--le-bg) 60%);
  border-top: 1px solid var(--le-line);
}
.le-catchall__inner { max-width: 720px; margin: 0 auto; }
.le-catchall__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--le-gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.le-catchall h2 { font-size: clamp(32px, 5vw, 52px); margin: 0 0 16px; }
.le-catchall p { color: var(--le-muted); font-size: 17px; margin: 0 0 32px; }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.le-gallery { padding: 60px 24px 100px; }
.le-gallery__inner { max-width: var(--le-max); margin: 0 auto; }
.le-gallery__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  padding: 8px;
  background: var(--le-bg-2);
  border-radius: 999px;
  border: 1px solid var(--le-line);
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.le-gallery__tab {
  padding: 10px 20px;
  border: 0;
  background: transparent;
  color: var(--le-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.2s;
  font-family: var(--le-font-body);
}
.le-gallery__tab:hover { color: var(--le-text); }
.le-gallery__tab.is-active { background: var(--le-blue); color: white; }
.le-gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.le-gallery__tile {
  aspect-ratio: 1;
  background: var(--le-bg-2);
  border: 1px solid var(--le-line);
  border-radius: var(--le-radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--le-muted);
  font-size: 14px;
  background-size: cover;
  background-position: center;
  transition: transform 0.25s, border-color 0.25s;
}
.le-gallery__tile:hover { transform: scale(1.02); border-color: var(--le-blue); }
.le-gallery__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--le-muted);
  font-style: italic;
}
/* ==========================================================================
   ABOUT — Section container, typography, and pull-quotes
   ========================================================================== */
.le-about {
  padding: 72px 24px 96px;
  background: var(--le-bg);
}

.le-about__inner {
  max-width: 880px;
  margin: 0 auto;
}

.le-about__section {
  margin: 0 0 56px;
}

.le-about__section:last-child {
  margin-bottom: 0;
}

.le-about__section h2 {
  font-family: var(--le-font-head);
  font-size: clamp(26px, 3.4vw, 36px);
  color: var(--le-blue);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--le-line);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.le-about__section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--le-text);
  margin: 0 0 16px;
}

.le-about__section p:last-child { margin-bottom: 0; }

.le-about__section a {
  color: var(--le-blue-light);
  border-bottom: 1px solid rgba(43, 142, 232, 0.35);
  transition: color 0.15s, border-color 0.15s;
}
.le-about__section a:hover {
  color: var(--le-blue);
  border-bottom-color: var(--le-blue);
}

/* Pull-quote block between sections */
.le-about__quote {
  font-family: var(--le-font-head);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 500;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.35;
  color: var(--le-text);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  padding: 28px 32px;
  position: relative;
  border-left: 3px solid var(--le-gold);
  border-right: 3px solid var(--le-gold);
  background: linear-gradient(180deg, var(--le-gold-soft) 0%, rgba(245, 179, 1, 0) 100%);
  border-radius: var(--le-radius-sm);
}

/* Fade-in on scroll (works with any [data-fade] IntersectionObserver hook) */
/* Fade-in on scroll — visible by default; JS adds .le-fade-init to enable hiding */
[data-fade] { opacity: 1; transform: none; transition: opacity 0.6s ease, transform 0.6s ease; }
.le-fade-init [data-fade] { opacity: 0; transform: translateY(16px); }
.le-fade-init [data-fade].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 640px) {
  .le-about { padding: 48px 20px 72px; }
  .le-about__section { margin-bottom: 40px; }
  .le-about__quote {
    padding: 22px 20px;
    margin-bottom: 40px;
  }
}
/* ==========================================================================
   ABOUT — Photo + copy layout
   Heading spans full section width; photo and copy sit in a 2-col grid below.
   ========================================================================== */

.le-about__section--with-photo .le-about__photo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: center;
  margin-top: 8px;
}

.le-about__photo {
  margin: 0;
}

.le-about__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--le-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.le-about__photo-caption {
  margin: 10px 0 0;
  font-size: 13px;
  font-style: italic;
  color: var(--le-muted);
  text-align: center;
}

.le-about__photo-copy > p:first-child {
  margin-top: 0;
}

@media (max-width: 820px) {
  .le-about__section--with-photo .le-about__photo-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .le-about__photo {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.le-contact { padding: 80px 24px 120px; }
.le-contact__inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.le-contact__info h3 { font-size: 24px; margin: 0 0 20px; color: var(--le-blue); }
.le-contact__info p { color: var(--le-muted); margin: 0 0 32px; }
.le-contact__detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.le-contact__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0, 108, 205, 0.12);
  color: var(--le-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.le-contact__detail-body h4 {
  margin: 0 0 4px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--le-muted);
  font-family: var(--le-font-body);
  font-weight: 600;
}
.le-contact__detail-body p,
.le-contact__detail-body a { margin: 0; color: var(--le-text); font-size: 16px; }
.le-form { background: var(--le-bg-2); border: 1px solid var(--le-line); border-radius: var(--le-radius); padding: 32px; }
.le-form h3 { font-size: 24px; margin: 0 0 24px; }
.le-form__row { margin-bottom: 20px; }
.le-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--le-muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.le-form input,
.le-form select,
.le-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--le-bg);
  color: var(--le-text);
  border: 1px solid var(--le-line);
  border-radius: var(--le-radius-sm);
  font-family: var(--le-font-body);
  font-size: 15px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.le-form input:focus,
.le-form select:focus,
.le-form textarea:focus {
  outline: 0;
  border-color: var(--le-blue);
  box-shadow: 0 0 0 3px rgba(0, 108, 205, 0.15);
}
.le-form textarea { min-height: 120px; resize: vertical; }
.le-form__honeypot { position: absolute; left: -9999px; }
.le-form__submit { width: 100%; justify-content: center; margin-top: 8px; }
.le-form__msg {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--le-radius-sm);
  font-size: 14px;
  display: none;
}
.le-form__msg.is-success { display: block; background: rgba(46, 204, 113, 0.12); color: #2ecc71; border: 1px solid rgba(46, 204, 113, 0.3); }
.le-form__msg.is-error { display: block; background: rgba(231, 76, 60, 0.12); color: #e74c3c; border: 1px solid rgba(231, 76, 60, 0.3); }

/* ==========================================================================
   GALLERY LIGHTBOX
   ========================================================================== */
.le-lightbox {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background: rgba(8, 10, 13, 0.94);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.le-lightbox.is-open {
  display: flex;
  opacity: 1;
}
.le-lightbox__img {
  max-width: 92vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: var(--le-radius);
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
  object-fit: contain;
  display: block;
}
.le-lightbox__caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--le-muted);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 16px;
  background: rgba(14, 17, 22, 0.7);
  border: 1px solid var(--le-line);
  border-radius: 999px;
  max-width: 80vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.le-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(14, 17, 22, 0.7);
  color: var(--le-text);
  border: 1px solid var(--le-line);
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}
.le-lightbox__close:hover {
  background: var(--le-blue);
  border-color: var(--le-blue);
  color: white;
  transform: rotate(90deg);
}
.le-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(14, 17, 22, 0.7);
  color: var(--le-text);
  border: 1px solid var(--le-line);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}
.le-lightbox__nav:hover {
  background: var(--le-blue);
  border-color: var(--le-blue);
  color: white;
}
.le-lightbox__nav--prev { left: 24px; }
.le-lightbox__nav--next { right: 24px; }

/* ==========================================================================
   LIGHTBOX — LIGHTNING TRANSITION
   Sequence (driven by JS timing):
     0ms     → bolt fires and crackles for the buildup
     ~750ms  → JS swaps image src, adds flash + image reveal classes
     ~1300ms → everything settled
   All CSS delays intentionally set to 0 — JS orchestrates timing.
   ========================================================================== */

/* --- Full-screen electric flash overlay --- */
.le-lightbox__flash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 10001;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(120, 200, 255, 0.75) 25%,
    rgba(0, 108, 205, 0.35) 55%,
    rgba(0, 108, 205, 0) 80%
  );
  mix-blend-mode: screen;
}

.le-lightbox__flash.is-firing {
  animation: le-lb-flash 550ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes le-lb-flash {
  0%   { opacity: 0;   transform: scale(0.85); }
  15%  { opacity: 1;   transform: scale(1.05); }
  40%  { opacity: 0.6; }
  100% { opacity: 0;   transform: scale(1.15); }
}

/* --- Image reveal (fires with the flash, after JS swaps the src) --- */
.le-lightbox__img.is-open {
  animation: le-lb-zap-in 600ms cubic-bezier(0.15, 0.85, 0.3, 1) both;
}
.le-lightbox__img.is-next {
  animation: le-lb-zap-next 600ms cubic-bezier(0.15, 0.85, 0.3, 1) both;
}
.le-lightbox__img.is-prev {
  animation: le-lb-zap-prev 600ms cubic-bezier(0.15, 0.85, 0.3, 1) both;
}

@keyframes le-lb-zap-in {
  0%   { transform: scale(0.88);              opacity: 0; filter: blur(8px) brightness(1.6); }
  60%  { opacity: 1;                          filter: blur(2px) brightness(1.15); }
  100% { transform: scale(1);                 opacity: 1; filter: blur(0)   brightness(1); }
}
@keyframes le-lb-zap-next {
  0%   { transform: translateX(50px) scale(0.9);  opacity: 0; filter: blur(8px) brightness(1.6); }
  60%  { opacity: 1;                               filter: blur(2px) brightness(1.15); }
  100% { transform: translateX(0)     scale(1);    opacity: 1; filter: blur(0)   brightness(1); }
}
@keyframes le-lb-zap-prev {
  0%   { transform: translateX(-50px) scale(0.9); opacity: 0; filter: blur(8px) brightness(1.6); }
  60%  { opacity: 1;                               filter: blur(2px) brightness(1.15); }
  100% { transform: translateX(0)     scale(1);    opacity: 1; filter: blur(0)   brightness(1); }
}

/* --- Logo bolt strike (fires FIRST, before the flash) --- */
.le-lightbox__bolt {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 480px;
  transform: translate(-50%, -50%) scale(0.3);
  pointer-events: none;
  opacity: 0;
  z-index: 10002;
  filter: drop-shadow(0 0 24px rgba(120, 200, 255, 0.9))
          drop-shadow(0 0 48px rgba(0, 108, 205, 0.7))
          drop-shadow(0 0 80px rgba(0, 108, 205, 0.5));
}

.le-lightbox__bolt-shape {
  fill: #ffffff;
  stroke: rgba(120, 200, 255, 0.9);
  stroke-width: 1.5;
  stroke-linejoin: round;
}

.le-lightbox__bolt.is-striking {
  animation: le-bolt-strike 1300ms cubic-bezier(0.15, 0.9, 0.3, 1);
}
.le-lightbox__bolt.is-striking.is-next {
  animation: le-bolt-strike-next 1300ms cubic-bezier(0.15, 0.9, 0.3, 1);
}
.le-lightbox__bolt.is-striking.is-prev {
  animation: le-bolt-strike-prev 1300ms cubic-bezier(0.15, 0.9, 0.3, 1);
}

@keyframes le-bolt-strike {
  0%   { opacity: 0;    transform: translate(-50%, -50%) scale(0.2)  rotate(-8deg); }
  6%   { opacity: 1;    transform: translate(-50%, -50%) scale(1.2)  rotate(3deg); }
  10%  { opacity: 0.85; transform: translate(-50%, -50%) scale(1.05) rotate(-2deg); }
  14%  { opacity: 1;    transform: translate(-50%, -50%) scale(1.15) rotate(2deg); }
  22%  { opacity: 0.9;  transform: translate(-50%, -50%) scale(1.0)  rotate(-1deg); }
  35%  { opacity: 1;    transform: translate(-50%, -50%) scale(1.08) rotate(1deg); }
  50%  { opacity: 0.95; transform: translate(-50%, -50%) scale(1.05) rotate(-0.5deg); }
  60%  { opacity: 1;    transform: translate(-50%, -50%) scale(1.1)  rotate(0.5deg); }
  75%  { opacity: 0.9;  transform: translate(-50%, -50%) scale(1.12) rotate(0deg); }
  90%  { opacity: 0.4;  transform: translate(-50%, -50%) scale(1.2)  rotate(0deg); }
  100% { opacity: 0;    transform: translate(-50%, -50%) scale(1.35) rotate(0deg); }
}
@keyframes le-bolt-strike-next {
  0%   { opacity: 0;    transform: translate(-50%, -50%) scale(0.2)  rotate(15deg); }
  6%   { opacity: 1;    transform: translate(-50%, -50%) scale(1.2)  rotate(8deg); }
  10%  { opacity: 0.85; transform: translate(-50%, -50%) scale(1.05) rotate(11deg); }
  14%  { opacity: 1;    transform: translate(-50%, -50%) scale(1.15) rotate(9deg); }
  22%  { opacity: 0.9;  transform: translate(-50%, -50%) scale(1.0)  rotate(12deg); }
  35%  { opacity: 1;    transform: translate(-50%, -50%) scale(1.08) rotate(10deg); }
  50%  { opacity: 0.95; transform: translate(-50%, -50%) scale(1.05) rotate(10deg); }
  60%  { opacity: 1;    transform: translate(-50%, -50%) scale(1.1)  rotate(10deg); }
  75%  { opacity: 0.9;  transform: translate(-50%, -50%) scale(1.12) rotate(10deg); }
  90%  { opacity: 0.4;  transform: translate(-50%, -50%) scale(1.2)  rotate(10deg); }
  100% { opacity: 0;    transform: translate(-50%, -50%) scale(1.35) rotate(10deg); }
}
@keyframes le-bolt-strike-prev {
  0%   { opacity: 0;    transform: translate(-50%, -50%) scale(0.2)  rotate(-15deg); }
  6%   { opacity: 1;    transform: translate(-50%, -50%) scale(1.2)  rotate(-8deg); }
  10%  { opacity: 0.85; transform: translate(-50%, -50%) scale(1.05) rotate(-11deg); }
  14%  { opacity: 1;    transform: translate(-50%, -50%) scale(1.15) rotate(-9deg); }
  22%  { opacity: 0.9;  transform: translate(-50%, -50%) scale(1.0)  rotate(-12deg); }
  35%  { opacity: 1;    transform: translate(-50%, -50%) scale(1.08) rotate(-10deg); }
  50%  { opacity: 0.95; transform: translate(-50%, -50%) scale(1.05) rotate(-10deg); }
  60%  { opacity: 1;    transform: translate(-50%, -50%) scale(1.1)  rotate(-10deg); }
  75%  { opacity: 0.9;  transform: translate(-50%, -50%) scale(1.12) rotate(-10deg); }
  90%  { opacity: 0.4;  transform: translate(-50%, -50%) scale(1.2)  rotate(-10deg); }
  100% { opacity: 0;    transform: translate(-50%, -50%) scale(1.35) rotate(-10deg); }
}

@media (prefers-reduced-motion: reduce) {
  .le-lightbox__flash.is-firing,
  .le-lightbox__img.is-open,
  .le-lightbox__img.is-next,
  .le-lightbox__img.is-prev,
  .le-lightbox__bolt.is-striking,
  .le-lightbox__bolt.is-striking.is-next,
  .le-lightbox__bolt.is-striking.is-prev { animation: none; }
}

/* ==========================================================================
   UNDER DEVELOPMENT BANNER
   Delete this section when the site goes live.
   ========================================================================== */
.le-devbanner {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 12px 20px;
  background-color: #b02a2a;
  background-image: linear-gradient(90deg, #7a1a1a 0%, #b02a2a 50%, #7a1a1a 100%);
  color: #ffffff;
  border-bottom: 2px solid #ff4444;
  text-align: center;
  font-family: var(--le-font-body);
  font-size: 13px;
  line-height: 1.45;
  position: relative;
  z-index: 101;
  box-shadow: 0 4px 12px -4px rgba(255, 40, 40, 0.4);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.le-devbanner.is-hidden { display: none; }

.le-devbanner__inner {
  max-width: var(--le-max);
  margin: 0 auto;
  padding: 0 44px 0 32px;
  position: relative;
  display: block;
  text-align: center;
}
.le-devbanner__icon {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  color: #ffd166;
  margin-right: 8px;
  vertical-align: middle;
  animation: le-devbanner-pulse 2s ease-in-out infinite;
}
@keyframes le-devbanner-pulse {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.15); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}
.le-devbanner__text {
  display: inline;
  color: rgba(255, 255, 255, 0.95);
}
.le-devbanner__text strong {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 13px;
  color: #ffd166;
  margin-right: 6px;
}
.le-devbanner__close {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  z-index: 2;
  font-family: var(--le-font-body);
}
.le-devbanner__close:hover { background: rgba(255, 255, 255, 0.2); }
.le-devbanner__close:active { background: rgba(255, 255, 255, 0.3); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .le-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .le-cats__grid { grid-template-columns: repeat(2, 1fr); }
  .le-service { grid-template-columns: 1fr; text-align: center; }
  .le-service__img { max-width: 320px; margin: 0 auto; }
  .le-service__price { max-width: 240px; margin: 0 auto; }
  .le-footer__inner { grid-template-columns: 1fr 1fr; }
  .le-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .le-contact__inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .le-header__burger { display: flex; }
  .le-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--le-bg-2);
    border-bottom: 1px solid var(--le-line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .le-header__nav.is-open { max-height: 480px; }
  .le-header__nav ul { flex-direction: column; align-items: stretch; padding: 12px; gap: 4px; }
  .le-header__cta { margin: 12px 0 0; text-align: center; }
  .le-hero { padding: 48px 20px 60px; }
  .le-cats { padding: 64px 20px; }
  .le-cats__grid { grid-template-columns: 1fr; }
  .le-schedule { padding: 64px 16px 88px; }
  .le-row__summary { grid-template-columns: 88px 1fr auto; gap: 14px; padding: 14px 16px; }
  .le-row__daynum { font-size: 26px; }
  .le-row__location { font-size: 16px; }
  .le-row__details-inner { grid-template-columns: 1fr; }
  .le-btn-maps { width: 100%; justify-content: center; }
  .le-footer__inner { grid-template-columns: 1fr; }
  .le-footer__legal { flex-direction: column; gap: 8px; text-align: center; }
  .le-gallery__grid { grid-template-columns: 1fr; }
  .le-lightbox { padding: 20px 12px; }
  .le-lightbox__close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .le-lightbox__nav { width: 40px; height: 40px; font-size: 22px; }
  .le-lightbox__nav--prev { left: 8px; }
  .le-lightbox__nav--next { right: 8px; }
  .le-lightbox__caption { bottom: 12px; font-size: 11px; }
  .le-devbanner { padding: 12px 14px; font-size: 12px; }
  .le-devbanner__inner { padding: 0 40px 0 8px; }
  .le-devbanner__icon { font-size: 16px; }
  .le-devbanner__text strong { display: block; margin: 0 0 4px; font-size: 12px; }
  .le-devbanner__close { width: 30px; height: 30px; font-size: 18px; right: 2px; }
}
/* ==========================================================================
   ABOUT — Photo + copy layout
   Heading spans full section width; photo and copy sit in a 2-column grid below.
   ========================================================================== */

.le-about__section--with-photo .le-about__photo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: center;
  margin-top: 8px;
}

.le-about__photo {
  margin: 0;
}

.le-about__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--le-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.le-about__photo-caption {
  margin: 10px 0 0;
  font-size: 13px;
  font-style: italic;
  color: var(--le-muted);
  text-align: center;
}

.le-about__photo-copy > p:first-child {
  margin-top: 0;
}

@media (max-width: 820px) {
  .le-about__section--with-photo .le-about__photo-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .le-about__photo {
    max-width: 480px;
    margin: 0 auto;
  }
}