/* =====================================================
   ГЛУХАРЧЕ — Детска занималня
   style.css v1.0  |  Premium Modern Design
===================================================== */

/* ----- Variables ----- */
:root {
  --ann-h:        46px;
  --orange:       #FF8A3D;
  --orange-soft:  #FFF0E6;
  --yellow:       #FFC844;
  --yellow-soft:  #FFF8E1;
  --blue:         #5BA4CF;
  --blue-soft:    #E8F4FD;
  --green:        #6BCB77;
  --green-soft:   #E8F8F0;
  --coral:        #FF6F61;
  --coral-soft:   #FFF0EF;
  --teal:         #4ECDC4;
  --cream:        #FFFDF5;
  --white:        #FFFFFF;
  --dark:         #1E293B;
  --body:         #475569;
  --muted:        #94A3B8;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.12);
  --shadow-card:  0 4px 20px rgba(0,0,0,0.08);
  --radius-sm:    12px;
  --radius-md:    20px;
  --radius-lg:    28px;
  --radius-xl:    40px;
  --radius-full:  999px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --t:            all 0.3s var(--ease);
  --t-slow:       all 0.6s var(--ease);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--body);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--t); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--dark);
  line-height: 1.15;
  font-weight: 700;
}

/* ----- Layout ----- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; margin-bottom: 44px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow-soft);
  color: var(--orange);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.875rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title span {
  background: linear-gradient(135deg, var(--orange), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--body);
  max-width: 560px;
  margin: 0 auto;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--t);
  white-space: nowrap;
}
.btn-lg { padding: 17px 40px; font-size: 1rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--coral));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,138,61,0.38);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(255,138,61,0.50);
}
.btn-secondary {
  background: var(--white);
  color: var(--dark);
  box-shadow: var(--shadow-md);
}
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* =====================================================
   ANNOUNCEMENT BAR
===================================================== */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--ann-h);
  z-index: 1001;
  background: linear-gradient(90deg, #FF8A3D 0%, #FFC844 50%, #6BCB77 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: height 0.3s ease, opacity 0.3s ease;
}
.announcement-bar.ann-hidden { height: 0; opacity: 0; pointer-events: none; }
.ann-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 50px 0 16px;
  width: 100%;
  max-width: 1200px;
  justify-content: center;
}
.ann-icon { font-size: 1.1rem; flex-shrink: 0; }
.ann-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.87rem;
  font-weight: 500;
  color: #1E293B;
  white-space: nowrap;
}
.ann-text strong { font-weight: 800; }
.ann-btn {
  background: rgba(0,0,0,0.14);
  color: #1E293B;
  padding: 5px 15px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.ann-btn:hover { background: rgba(0,0,0,0.24); }
.ann-close {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  font-size: 0.9rem; color: rgba(30,41,59,0.55);
  padding: 6px 8px; line-height: 1;
  border-radius: 6px; transition: var(--t);
}
.ann-close:hover { background: rgba(0,0,0,0.12); color: #1E293B; }

/* =====================================================
   NAVBAR
===================================================== */
.navbar {
  position: fixed;
  top: var(--ann-h); left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--t);
}
.navbar.scrolled {
  background: rgba(255,253,245,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.6);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: var(--t);
}
.nav-logo-img:hover { opacity: 0.85; }
/* Keep these for footer fallback */
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(255,200,68,0.40);
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: var(--t);
}
.nav-link:hover { color: var(--orange); background: var(--orange-soft); }
.nav-cta { padding: 9px 22px; font-size: 0.9rem; }
.nav-cta-mobile { display: none; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--t); }

/* =====================================================
   MAIN HERO
===================================================== */
.main-hero {
  padding-top: calc(80px + var(--ann-h) + 40px);
  padding-bottom: 72px;
  background: var(--cream);
}
.mh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Photo column */
.mh-photo-col { position: relative; }
.mh-photo-wrap { position: relative; padding: 20px 0 20px 20px; }
.mh-photo-deco {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--yellow-soft) 0%, var(--orange-soft) 100%);
  border-radius: 24px;
  transform: rotate(-2deg);
  z-index: 0;
}
.mh-photo-link {
  display: block;
  position: relative;
  z-index: 1;
}
.mh-photo-link:hover .mh-photo {
  opacity: 0.9;
  transition: opacity 0.2s;
}
.mh-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  box-shadow: 0 16px 56px rgba(0,0,0,0.18);
  display: block;
}
.mh-badge {
  position: absolute;
  z-index: 2;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}
.mh-badge--age {
  top: 0; right: -16px;
  display: flex; flex-direction: column; align-items: center;
  padding: 14px 20px;
  text-align: center;
}
.mhb-num { font-size: 1.75rem; font-weight: 800; color: var(--orange); line-height: 1; }
.mhb-lbl { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }
.mh-badge--groups {
  bottom: 12px; left: 8px;
  padding: 10px 16px;
  font-size: 0.875rem;
  color: var(--dark);
}

/* Text column */
.mh-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--yellow-soft), var(--orange-soft));
  border: 1px solid rgba(255,200,68,0.35);
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
}
.mh-tag-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.mh-title {
  font-size: clamp(2.1rem, 3.6vw, 3.3rem);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--dark);
}
.mh-highlight,
.highlight {
  background: linear-gradient(135deg, var(--orange) 0%, var(--coral) 50%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mh-desc {
  font-size: 1.05rem;
  color: var(--body);
  line-height: 1.8;
  margin-bottom: 26px;
  max-width: 460px;
}
.mh-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.mh-checks li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}
.mhc-check {
  width: 20px; height: 20px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green), #3db86a);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.mhc-check::after {
  content: '';
  width: 5px; height: 9px;
  border: 2px solid #fff;
  border-top: none; border-left: none;
  transform: rotate(45deg) translateY(-1px);
  display: block;
}
.mh-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.mh-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.mh-call:hover { color: var(--orange); }
.mh-areas {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 440px;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-top: 16px;
  margin: 0;
}
.mh-areas strong { color: var(--body); }

@media (max-width: 960px) {
  .mh-grid { grid-template-columns: 1fr; gap: 40px; }
  .mh-photo { height: 340px; }
  .mh-photo-wrap { padding: 16px 0 16px 16px; }
  .mh-badge--age { right: 0; }
  .mh-badge--groups { left: 4px; }
}
@media (max-width: 600px) {
  .main-hero { padding-bottom: 48px; }
  .mh-photo { height: 240px; }
  .mh-checks { grid-template-columns: 1fr; }
  .mh-photo-deco { display: none; }
}


/* =====================================================
   STATS STRIP
===================================================== */
.stats-strip {
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 28px 0;
}
.stats-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.strip-item {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  padding: 0 36px;
}
.strip-icon { font-size: 1.25rem; }
.strip-divider {
  width: 1px; height: 28px;
  background: rgba(0,0,0,0.1);
}

/* =====================================================
   BENEFITS
===================================================== */
.benefits { padding: 100px 0; background: var(--white); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.benefit-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.benefit-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.benefit-card:nth-child(1)::after { background: var(--orange); }
.benefit-card:nth-child(2)::after { background: var(--yellow); }
.benefit-card:nth-child(3)::after { background: var(--blue); }
.benefit-card:nth-child(4)::after { background: var(--green); }
.benefit-card:nth-child(5)::after { background: var(--coral); }
.benefit-card:nth-child(6)::after { background: var(--teal); }
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); background: var(--white); }
.benefit-card:hover::after { transform: scaleX(1); }
.benefit-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.benefit-card:nth-child(1) .benefit-icon { background: var(--orange-soft); }
.benefit-card:nth-child(2) .benefit-icon { background: var(--yellow-soft); }
.benefit-card:nth-child(3) .benefit-icon { background: var(--blue-soft); }
.benefit-card:nth-child(4) .benefit-icon { background: var(--green-soft); }
.benefit-card:nth-child(5) .benefit-icon { background: var(--coral-soft); }
.benefit-card:nth-child(6) .benefit-icon { background: #E6FFFE; }
.benefit-title { font-size: 1.075rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.benefit-desc { font-size: 0.9375rem; color: var(--body); line-height: 1.7; }

/* =====================================================
   ADVENTURES
===================================================== */
.adventures { padding: 64px 0; background: var(--white); }
.adventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.adv-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.adv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.13);
}
.adv-card-link { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.adv-photo-wrap { position: relative; overflow: hidden; aspect-ratio: 1/1; flex-shrink: 0; }
.adv-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s var(--ease);
  display: block;
}
.adv-card:hover .adv-photo { transform: scale(1.06); }
.adv-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,0.18) 100%);
}
.adv-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.76rem; font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  letter-spacing: 0.02em;
}
.adv-badge--hike { background: rgba(255,200,68,0.92); color: #5a3a00; }
.adv-badge--trip  { background: rgba(107,203,119,0.92); color: #1a4a22; }
.adv-badge--art   { background: rgba(91,164,207,0.92);  color: #0a2a4a; }
.adv-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.adv-date {
  display: block;
  font-size: 0.75rem; color: var(--muted); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 10px;
}
.adv-title {
  font-size: 1.05rem; font-weight: 700; line-height: 1.42;
  color: var(--dark); margin-bottom: 10px; flex: 1;
}
.adv-excerpt {
  font-size: 0.875rem; color: var(--body); line-height: 1.72;
  margin-bottom: 18px;
}
.adv-read {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.875rem; font-weight: 700; color: var(--orange);
  transition: gap 0.2s;
  margin-top: auto;
}
.adv-card:hover .adv-read { gap: 10px; }
@media (max-width: 900px) { .adventures-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px)  { .adventures-grid { grid-template-columns: 1fr; } }
.adventures-footer { text-align: center; margin-top: 52px; }
.btn-adv-all {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 34px;
  border: 2px solid var(--orange);
  border-radius: var(--radius-full);
  color: var(--orange); font-weight: 700; font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), gap 0.2s;
}
.btn-adv-all:hover {
  background: var(--orange); color: var(--white); gap: 13px;
}

/* =====================================================
   UPCOMING ADVENTURES
===================================================== */
.upcoming { padding: 64px 0; background: var(--cream); }

/* --- Featured card (photo left | content right) --- */
.upc-card--featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 36px rgba(0,0,0,0.10);
  margin-bottom: 28px;
  transition: box-shadow 0.35s var(--ease);
}
.upc-card--featured:hover { box-shadow: 0 16px 56px rgba(0,0,0,0.15); }
.upc-feat-photo { position: relative; overflow: hidden; }
.upc-feat-photo .upc-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.65s var(--ease);
}
.upc-card--featured:hover .upc-feat-photo .upc-photo { transform: scale(1.05); }

/* --- Small cards row --- */
.upc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.upc-card {
  border-radius: 20px; overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 18px rgba(0,0,0,0.07);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.upc-card:hover { transform: translateY(-6px); box-shadow: 0 14px 44px rgba(0,0,0,0.13); }
.upc-photo-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.upc-photo-wrap .upc-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.5s var(--ease);
}
.upc-card:hover .upc-photo-wrap .upc-photo { transform: scale(1.06); }

/* --- Dark gradient overlay on photos --- */
.upc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.22) 100%);
}

/* --- Type badge (bottom-left of photo) --- */
.upc-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.76rem; font-weight: 700;
  padding: 5px 12px; border-radius: var(--radius-full);
  backdrop-filter: blur(8px); letter-spacing: 0.02em; z-index: 2;
}
.upc-badge--camp { background: rgba(255,200,68,0.93);  color: #5a3a00; }
.upc-badge--hike { background: rgba(107,203,119,0.93); color: #1a4a22; }
.upc-badge--art  { background: rgba(91,164,207,0.93);  color: #0a2a4a; }

/* --- Urgency pill (top-right of photo) --- */
.upc-urgency {
  position: absolute; top: 14px; right: 14px;
  font-size: 0.75rem; font-weight: 700;
  padding: 5px 11px; border-radius: var(--radius-full);
  backdrop-filter: blur(8px); letter-spacing: 0.02em; z-index: 2;
}
.upc-urgency--hot  {
  background: rgba(232,50,50,0.92); color: #fff;
  animation: pulse-urgent 2s ease-in-out infinite;
}
.upc-urgency--warn { background: rgba(255,180,50,0.93); color: #5a3a00; }
.upc-urgency--ok   { background: rgba(107,203,119,0.93); color: #1a4a22; }
@keyframes pulse-urgent {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.07); }
}

/* --- Featured body --- */
.upc-feat-body {
  padding: 22px 36px;
  display: flex; flex-direction: column; gap: 12px; justify-content: center;
}
/* Desktop: compact featured card with a fixed height; the photo fills
   that full height (object-fit: cover) so there's no gap underneath */
@media (min-width: 861px) {
  .upc-card--featured { height: 480px; }
  .upc-feat-body { padding: 18px 36px; gap: 9px; overflow: hidden; }
  .upc-feat-top { gap: 5px; }
}
.upc-feat-top { display: flex; flex-direction: column; gap: 8px; }
.upc-date {
  display: block; font-size: 0.78rem; font-weight: 700;
  color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase;
}
.upc-title {
  font-size: 1.25rem; font-weight: 800; line-height: 1.35; color: var(--dark); margin: 0;
}
.upc-card--featured .upc-title { font-size: 1.55rem; }
.upc-desc { font-size: 0.9rem; color: var(--body); line-height: 1.75; margin: 0; }

/* --- Highlights list (featured only) --- */
.upc-highlights {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px;
}
.upc-highlights li {
  font-size: 0.84rem; color: var(--body); font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}

/* --- Seats progress bar --- */
.upc-seats-wrap { display: flex; flex-direction: column; gap: 6px; }
.upc-seats-bar {
  height: 7px; background: #EBEBEB; border-radius: 10px; overflow: hidden;
}
.upc-seats-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--coral));
  border-radius: 10px;
  transition: width 1.2s var(--ease);
}
.upc-seats-label { font-size: 0.78rem; color: var(--muted); margin: 0; }
.upc-seats-hot   { color: #D92B2B; }

/* --- Countdown --- */
.upc-cd-label {
  font-size: 0.7rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px;
}
.upc-cd-boxes { display: flex; align-items: center; gap: 5px; }
.upc-cd-box {
  background: var(--white); border: 1.5px solid #FFD580;
  border-radius: 10px; padding: 8px 10px; text-align: center;
  min-width: 52px; box-shadow: 0 2px 8px rgba(255,180,0,0.10);
}
.upc-card--featured .upc-cd-box { min-width: 60px; }
.upc-cd-box span {
  display: block; font-size: 1.3rem; font-weight: 800; color: var(--orange);
  line-height: 1; font-variant-numeric: tabular-nums;
}
.upc-cd-box small {
  font-size: 0.58rem; color: var(--muted); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.upc-cd-sep {
  font-size: 1.2rem; font-weight: 800; color: var(--orange);
  margin-bottom: 12px; line-height: 1; user-select: none;
}
/* Small countdown variant */
.upc-countdown--sm .upc-cd-box { min-width: 42px; padding: 6px 8px; }
.upc-countdown--sm .upc-cd-box span { font-size: 1rem; }

/* --- Featured actions row --- */
.upc-feat-actions {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding-top: 10px; border-top: 1px solid rgba(255,200,68,0.3);
}
.upc-meta-pill {
  font-size: 0.8rem; font-weight: 600; color: var(--body);
  background: #F6F3EE; padding: 7px 15px; border-radius: var(--radius-full);
  white-space: nowrap;
}

/* --- Small card body --- */
.upc-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 12px; }

/* --- Reserve CTA link (small cards) --- */
.btn-upc-reserve {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.875rem; font-weight: 700; color: var(--orange);
  text-decoration: none; transition: gap 0.2s; margin-top: auto;
}
.upc-card:hover .btn-upc-reserve { gap: 10px; }

/* --- Responsive --- */
@media (max-width: 860px) {
  .upc-card--featured { grid-template-columns: 1fr; }
  .upc-feat-photo { aspect-ratio: 16/9; }
  .upc-feat-body { padding: 26px 28px; }
  .upc-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .upc-row { grid-template-columns: 1fr; }
  /* Full-width "Резервирай сега" button on the featured card */
  .upc-feat-actions .btn { width: 100%; justify-content: center; }
}

/* Small phones: keep the featured card + countdown inside the viewport */
@media (max-width: 480px) {
  /* Smaller, flatter main photo with tighter corners */
  .upc-card--featured { border-radius: 16px; margin-bottom: 20px; }
  .upc-feat-photo { aspect-ratio: 3/2; }
  .upc-feat-body { padding: 18px 18px 20px; gap: 10px; }

  /* Title / urgency badge sizes down a touch */
  .upc-card--featured .upc-title { font-size: 1.25rem; }
  .upc-urgency, .upc-badge { font-size: 0.68rem; padding: 4px 9px; top: 10px; }
  .upc-badge { left: 10px; }
  .upc-urgency { right: 10px; }

  /* Countdown must fit: shrink boxes, gaps and drop the ":" separators */
  .upc-cd-boxes { gap: 4px; justify-content: flex-start; }
  .upc-cd-sep { display: none; }
  .upc-card--featured .upc-cd-box,
  .upc-cd-box { min-width: 0; flex: 1 1 0; padding: 7px 4px; }
  .upc-cd-box span { font-size: 1.05rem; }
  .upc-cd-box small { font-size: 0.52rem; }
}

/* Extra category badge colours for DB-driven adventures */
.adv-badge--поход     { background: rgba(255,200,68,0.92);  color: #5a3a00; }
.adv-badge--арт       { background: rgba(91,164,207,0.92);  color: #0a2a4a; }
.adv-badge--занималня { background: rgba(255,138,61,0.92);  color: #5a2000; }
.adv-badge--лагер     { background: rgba(107,203,119,0.92); color: #1a4a22; }
.adv-badge--игри      { background: rgba(78,205,196,0.92);  color: #0a3a38; }
.adv-badge--природа   { background: rgba(107,203,119,0.92); color: #1a4a22; }
.adv-badge--екскурзия { background: rgba(107,203,119,0.92); color: #1a4a22; }
.adv-badge--изненада  { background: rgba(255,100,97,0.92);  color: #5a0000; }

/* =====================================================
   ADVENTURES LIST PAGE  (/adventures)
===================================================== */
.adv-list-section {
  padding: calc(92px + var(--ann-h)) 0 72px;
  background: var(--cream);
}
.adv-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
/* Make adv-card a block link */
a.adv-card, a.adv-list-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
a.adv-card:hover, a.adv-list-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.13);
}
a.adv-card:hover .adv-photo  { transform: scale(1.06); }
a.adv-card:hover .adv-read   { gap: 10px; }
.adv-photo-placeholder {
  width: 100%; height: 100%; aspect-ratio: 4/3;
  background: var(--orange-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.adv-empty {
  text-align: center; padding: 80px 0;
}
.adv-empty-icon { font-size: 4rem; margin-bottom: 20px; }
.adv-empty h3 { font-size: 1.4rem; margin-bottom: 12px; }
.adv-empty p { color: var(--muted); }
@media (max-width: 900px) { .adv-list-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .adv-list-grid { grid-template-columns: 1fr; } }

/* =====================================================
   ADVENTURE DETAIL PAGE  (/adventures/{slug})
===================================================== */

/* Hero */
.adv-hero {
  position: relative;
  padding: calc(92px + var(--ann-h)) 0 56px;
  min-height: 280px;
  display: flex; align-items: flex-end;
  background: var(--dark);
  overflow: hidden;
}
/* Split layout: no background image, image shown inline left */
.adv-hero--split {
  background: var(--cream);
  min-height: unset;
  display: block;
  padding: calc(92px + var(--ann-h)) 0 56px;
}
.adv-breadcrumb-top { margin-bottom: 28px; }
.adv-hero--split .ev-breadcrumb2 a,
.adv-hero--split .ev-breadcrumb2 span { color: var(--muted); }
.adv-hero--split .ev-breadcrumb2 a:hover { color: var(--orange); }

/* Two-column grid */
.adv-hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.adv-hero-split-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.adv-hero-split-img {
  width: 100%; height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.adv-hero-split-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}
.adv-hero--split .adv-hero-badge {
  background: var(--orange-soft);
  color: var(--orange);
  align-self: flex-start;
}
.adv-hero--split .adv-hero-title {
  color: var(--dark);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.adv-hero--split .adv-hero-title .highlight {
  background: linear-gradient(135deg, var(--orange), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.adv-hero-split-excerpt {
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--body);
  font-style: italic;
  border-left: 3px solid var(--orange);
  padding-left: 16px;
  margin: 0;
}
.adv-hero--split .adv-hero-meta {
  color: var(--body);
  font-size: 0.9rem;
  flex-wrap: wrap;
}
.adv-hero--split .adv-meta-sep { color: var(--muted); }
.adv-hero-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.adv-hero-tags .adv-tag { font-size: 0.8rem; }
@media (max-width: 860px) {
  .adv-hero-split-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* No-bg fallback (kept for reference) */
.adv-hero--no-bg {
  background: var(--cream);
  min-height: unset;
}
.adv-hero--no-bg .adv-hero-title { color: var(--dark); }
.adv-hero--no-bg .adv-hero-meta  { color: var(--body); }
.adv-hero--no-bg .ev-breadcrumb2 a,
.adv-hero--no-bg .ev-breadcrumb2 span { color: var(--muted); }
.adv-hero--no-bg .ev-breadcrumb2 a:hover { color: var(--orange); }
.adv-hero--no-bg .adv-hero-badge { background: var(--orange-soft); color: var(--orange); }
.adv-hero-bg {
  position: absolute; inset: 0;
}
.adv-hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.adv-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,15,30,0.3) 0%, rgba(10,15,30,0.75) 100%);
}
.adv-hero-inner {
  position: relative; z-index: 2;
}
.adv-hero-inner .ev-breadcrumb2 a,
.adv-hero-inner .ev-breadcrumb2 span { color: rgba(255,255,255,0.7); }
.adv-hero-inner .ev-breadcrumb2 a:hover { color: #fff; }
.adv-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 700;
  background: rgba(255,138,61,0.9);
  color: #fff;
  margin: 16px 0 20px;
}
.adv-hero-title {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  color: #fff; font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 800px;
}
.adv-hero-title .highlight {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.adv-hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem; font-weight: 600;
}
.adv-meta-sep { color: rgba(255,255,255,0.4); }

/* Story section */
.adv-story-section {
  padding: 36px 0;
  background: var(--white);
}
.adv-story-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.adv-story-lead {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--orange-soft);
}
.adv-story-richtext {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--body);
}
.adv-story-richtext h2, .adv-story-richtext h3 {
  color: var(--dark); margin: 28px 0 12px;
}
.adv-story-richtext p { margin-bottom: 18px; }
.adv-story-richtext img { border-radius: var(--radius-md); margin: 24px 0; max-width: 100%; }
.adv-story-richtext ul { padding-left: 20px; margin-bottom: 18px; }
.adv-story-richtext li { margin-bottom: 6px; }
.adv-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.adv-tag {
  padding: 6px 16px;
  background: var(--orange-soft);
  color: var(--orange);
  border-radius: var(--radius-full);
  font-size: 0.82rem; font-weight: 700;
}

/* Gallery section */
.adv-gallery-section {
  padding: 64px 0;
  background: var(--cream);
}

/* Social share */
.adv-share-section {
  padding: 64px 0;
  background: linear-gradient(135deg, #fff8f0 0%, #fff3e8 100%);
}
.adv-share-card {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 52px 40px;
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 8px 40px rgba(255,138,61,0.12);
}
.adv-share-emoji { font-size: 3.5rem; margin-bottom: 16px; }
.adv-share-title {
  font-size: 1.75rem; font-weight: 800;
  color: var(--dark); margin-bottom: 14px;
}
.adv-share-text {
  font-size: 1rem; color: var(--body); line-height: 1.7;
  max-width: 480px; margin: 0 auto 32px;
}
.adv-share-btns {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
}
.adv-share-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-size: 0.875rem; font-weight: 700;
  cursor: pointer; border: none;
  text-decoration: none;
  transition: var(--t);
}
.adv-share-btn--fb    { background: #1877F2; color: #fff; }
.adv-share-btn--fb:hover { background: #0f5dbf; }
.adv-share-btn--viber { background: #7360F2; color: #fff; }
.adv-share-btn--viber:hover { background: #5b48d8; }
.adv-share-btn--wa    { background: #25D366; color: #fff; }
.adv-share-btn--wa:hover { background: #1db553; }
.adv-share-btn--copy  {
  background: var(--orange-soft); color: var(--orange);
  font-family: inherit; font-size: 0.875rem;
  transition: background 0.3s, color 0.3s;
}
.adv-share-btn--copy:hover { background: var(--orange); color: #fff; }
@media (max-width: 620px) {
  .adv-share-card { padding: 40px 24px; }
  .adv-share-btns { flex-direction: column; align-items: stretch; }
  .adv-share-btn { justify-content: center; }
}

/* Related adventures */
.adv-related-section {
  padding: 64px 0 80px;
  background: var(--white);
}

@media (max-width: 760px) {
  .adv-hero { min-height: 360px; }
  /* Keep horizontal padding so the story text doesn't touch screen edges */
  .adv-story-wrap { padding: 0 20px; }
}

/* =====================================================
===================================================== */
.events-list-upcoming { padding: calc(92px + var(--ann-h)) 0 64px; background: var(--cream); }

/* Breadcrumb inside the upcoming section */
.ev-breadcrumb2--list {
  margin-bottom: 32px;
}

/* --- Clickable card (entire card is a link) --- */
a.upc-card, a.upc-card--featured { display: block; text-decoration: none; color: inherit; }
a.upc-card--featured { display: grid; }
.ev-list-link .upc-title { color: var(--dark); }

/* --- Past event card --- */
.upc-card--past { opacity: 0.82; }
.upc-card--past .upc-photo-wrap .upc-photo {
  filter: grayscale(70%) brightness(0.92);
  transition: filter 0.4s var(--ease), transform 0.5s var(--ease);
}
.upc-card--past:hover .upc-photo-wrap .upc-photo {
  filter: grayscale(30%) brightness(0.98);
  transform: scale(1.03);
}
.upc-card--past:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.10); }

/* Past badge (replaces urgency) */
.upc-past-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 0.75rem; font-weight: 700;
  padding: 5px 12px; border-radius: var(--radius-full);
  background: rgba(60,60,60,0.82); color: #e8e8e8;
  backdrop-filter: blur(8px); letter-spacing: 0.03em; z-index: 2;
}

/* "Виж снимки" link for past cards */
.btn-upc-past {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.875rem; font-weight: 700; color: var(--muted);
  text-decoration: none; transition: gap 0.2s, color 0.2s; margin-top: auto;
}
.upc-card--past:hover .btn-upc-past { gap: 10px; color: var(--orange); }

/* Past section */
.ev-list-past { padding: 56px 0 72px; background: var(--white); }

/* Pagination */
.ev-list-pagination {
  display: flex; justify-content: center;
  margin-top: 44px;
  gap: 6px;
}
.ev-list-pagination .pagination { display: flex; list-style: none; padding: 0; gap: 6px; }
.ev-list-pagination .page-item .page-link {
  display: flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border: 1.5px solid #E5E0D8;
  border-radius: var(--radius-full);
  font-size: 0.875rem; font-weight: 600;
  color: var(--dark); background: var(--white);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.ev-list-pagination .page-item.active .page-link,
.ev-list-pagination .page-item .page-link:hover {
  background: var(--orange); border-color: var(--orange); color: #fff;
}
.ev-list-pagination .page-item.disabled .page-link { opacity: 0.4; pointer-events: none; }

/* Empty state */
.ev-list-empty {
  text-align: center; padding: 64px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.ev-list-empty-icon { font-size: 3rem; }
.ev-list-empty h2 { font-size: 1.5rem; color: var(--dark); margin: 0; }
.ev-list-empty p { color: var(--muted); margin: 0; }

/* =====================================================
   GALLERY
===================================================== */
.gallery { padding: 64px 0; background: var(--white); }
.gallery-masonry {
  columns: 4;
  column-gap: 14px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  height: auto;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(30,41,59,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--t);
  color: white;
  border-radius: var(--radius-md);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* =====================================================
   LIGHTBOX
===================================================== */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(10,12,18,0.94);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.lb-open { display: flex; }
.lb-img-wrap { position: relative; }
.lb-img {
  max-width: 90vw; max-height: 85vh;
  width: auto; height: auto;
  display: block;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lb-counter {
  position: absolute; bottom: -30px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem; font-weight: 600;
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.lb-close {
  position: fixed; top: 20px; right: 22px;
  background: rgba(255,255,255,0.12);
  border: none; color: white;
  font-size: 1.3rem;
  width: 44px; height: 44px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 2001;
}
.lb-close:hover { background: rgba(255,255,255,0.28); }
.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none; color: white;
  font-size: 2.4rem;
  width: 54px; height: 54px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 2001; line-height: 1;
}
.lb-prev { left: 18px; }
.lb-next { right: 18px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.28); }

/* =====================================================
   TESTIMONIALS — Google Reviews style
===================================================== */
.testimonials { padding: 64px 0; background: #f8f9fa; }
.testimonials-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 20px;
  padding-bottom: 12px;
  scrollbar-width: none;
}
.testimonials-grid::-webkit-scrollbar { display: none; }
/* Slider nav */
.slider-wrap { position: relative; }
.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid #dadce0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #3c4043;
  transition: all 0.18s;
}
.slider-btn:hover { background: #f8f9fa; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.slider-btn:disabled { opacity: 0.35; cursor: default; }
/* Google rating summary widget */
.g-rating-summary {
  display: inline-flex; align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid #e8eaed;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
  padding: 16px 28px;
  margin: 24px 0 0;
}
.g-rating-score { font-size: 2.8rem; font-weight: 800; color: #202124; line-height: 1; }
.g-rating-right { text-align: left; }
.g-rating-stars-big { display: flex; gap: 2px; }
.g-star-big { color: #fbbc04; font-size: 1.25rem; }
.g-rating-count { font-size: 0.8rem; color: #70757a; margin-top: 3px; }
/* Card */
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08), 0 3px 12px rgba(0,0,0,0.04);
  border: 1px solid #e8eaed;
  transition: var(--t);
  position: relative;
  flex: 0 0 320px;
  scroll-snap-align: start;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 6px 24px rgba(0,0,0,0.13); }
.testimonial-accent { display: none; }
.t-quote { display: none; }
/* Google G badge top-right */
.t-google-badge { position: absolute; top: 16px; right: 16px; line-height: 0; }
/* Author row */
.t-author { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.t-avatar-1 { background: #e37400; }
.t-avatar-2 { background: #1a73e8; }
.t-avatar-3 { background: #1e8e3e; }
.t-reviewer-info { flex: 1; min-width: 0; }
.t-reviewer-info strong { display: block; font-size: 0.9375rem; font-weight: 600; color: #202124; }
.t-reviewer-meta { font-size: 0.8125rem; color: #70757a; }
.t-local-guide { color: #1a73e8; }
/* Stars + date */
.t-stars-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.t-stars-gold { display: flex; }
.g-star { color: #fbbc04; font-size: 1rem; line-height: 1; }
.t-date { font-size: 0.8rem; color: #70757a; }
/* Text */
.t-text { font-size: 0.9rem; color: #3c4043; line-height: 1.75; margin: 0; font-style: normal; }
.t-more-btn { background: none; border: none; color: #4285F4; font-size: 0.85rem; font-weight: 600; cursor: pointer; padding: 4px 0 0; display: inline-block; }
.t-more-btn:hover { text-decoration: underline; }
.t-stars { display: none; }

/* =====================================================
   TIMELINE
===================================================== */
.timeline-section { padding: 100px 0; background: var(--white); }
.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 24px; bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--yellow), var(--orange), var(--coral), var(--blue));
  transform: translateX(-50%);
  border-radius: 2px;
}
.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 44px);
  margin-bottom: 48px;
  position: relative;
}
.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 44px);
}
.timeline-node {
  position: absolute;
  left: 50%; top: 16px;
  transform: translateX(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  z-index: 2;
  transition: var(--t);
}
.timeline-item:hover .timeline-node { transform: translateX(-50%) scale(1.15); }
.tl-1 { background: linear-gradient(135deg, var(--yellow), var(--orange)); }
.tl-2 { background: linear-gradient(135deg, var(--coral), var(--orange)); }
.tl-3 { background: linear-gradient(135deg, var(--blue), var(--teal)); }
.tl-4 { background: linear-gradient(135deg, var(--green), var(--teal)); }
.tl-5 { background: linear-gradient(135deg, var(--orange), var(--yellow)); }
.timeline-content {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 22px;
  max-width: 330px;
  box-shadow: var(--shadow-card);
  transition: var(--t);
}
.timeline-content:hover { box-shadow: var(--shadow-md); transform: scale(1.02); }
.tl-time {
  font-size: 0.78rem; font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.tl-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.tl-desc { font-size: 0.9rem; color: var(--body); line-height: 1.6; }

/* =====================================================
   CONTACT SECTION
===================================================== */
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--cream) 0%, #FFF0E6 50%, #FFF8E1 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}

/* --- Info column --- */
.ci-tag { margin-bottom: 18px; }
.ci-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--dark);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.ci-lead {
  font-size: 1.025rem;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 28px;
}
.ci-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2e7d50;
  background: #e6f7ee;
  border: 1px solid #b7e5cb;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 32px;
}
.ci-trust-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34c47c;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.ci-contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ci-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ci-contact-icon {
  width: 42px; height: 42px;
  background: var(--white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.ci-contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 2px;
}
.ci-contact-val {
  font-size: 0.975rem;
  color: var(--dark);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
a.ci-contact-val:hover { color: var(--orange); }

/* --- Form card --- */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; position: relative; }
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cf-group { display: flex; flex-direction: column; gap: 6px; }
.cf-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
}
.cf-req { color: var(--orange); margin-left: 1px; }
.cf-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--dark);
  background: #fafbfc;
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  box-sizing: border-box;
}
.cf-input:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 121, 0, 0.1);
}
.cf-input.cf-error { border-color: #e53e3e; }
.cf-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.cf-textarea { resize: vertical; min-height: 100px; }

/* Interest pills */
.cf-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cf-pill {
  cursor: pointer;
}
.cf-pill input[type="radio"] { display: none; }
.cf-pill span {
  display: inline-block;
  padding: 7px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--body);
  background: #fafbfc;
  transition: all 0.18s;
  cursor: pointer;
  user-select: none;
}
.cf-pill input[type="radio"]:checked + span {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  font-weight: 600;
}
.cf-pill:hover span { border-color: var(--orange); color: var(--orange); }

/* Submit row */
.cf-bottom { display: flex; flex-direction: column; gap: 10px; }
.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  background: var(--orange);
  color: var(--white);
  font-size: 1.025rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 18px rgba(255,121,0,0.28);
}
.btn-submit:hover {
  background: #e06c00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,121,0,0.36);
}
.btn-submit:active { transform: translateY(0); }
.btn-submit-text { pointer-events: none; }
.cf-privacy {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

/* Success state */
.cf-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 32px 24px;
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  z-index: 10;
}
.cf-success.show { display: flex; }
.cf-success-icon { font-size: 3rem; }
.cf-success-title { font-size: 1.3rem; font-weight: 800; color: var(--dark); }
.cf-success-text { font-size: 0.975rem; color: var(--body); line-height: 1.7; }



/* =====================================================
   ABOUT US
===================================================== */
.about-us {
  padding: 80px 0;
  background: var(--white);
}
.au-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 56px;
}

/* Photo column */
.au-photo-col { position: relative; }
.au-photo-frame {
  position: relative;
  display: block;
}
.au-photo-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}
.au-photo-blob--warm {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,179,71,0.55), transparent);
  bottom: -30px; left: -30px;
}
.au-photo-blob--green {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(52,196,124,0.4), transparent);
  top: -20px; right: -20px;
}
.au-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  box-shadow: 0 28px 72px rgba(0,0,0,0.18);
  display: block;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.au-photo-frame:hover .au-photo {
  transform: scale(1.02);
  box-shadow: 0 36px 88px rgba(0,0,0,0.22);
}
.au-photo-pill {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 50px;
  padding: 11px 22px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  z-index: 2;
  white-space: nowrap;
  border: 2px solid #fff3e6;
}
.au-pill-icon { font-size: 1.5rem; line-height: 1; }
.au-photo-pill strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--dark); }
.au-photo-pill small { font-size: 0.775rem; color: var(--muted); display: block; margin-top: 1px; }

/* Content column */
.au-content { padding-top: 8px; }
.au-story-lead {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.78;
  color: var(--dark);
  margin-bottom: 18px;
  padding-left: 20px;
  border-left: 4px solid var(--orange);
}
.au-story-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--body);
  margin-bottom: 28px;
}
.au-founder {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: 14px;
  margin-bottom: 28px;
}
.au-founder-avatar {
  font-size: 1.6rem;
  width: 48px; height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.au-founder-name { font-size: 0.9375rem; font-weight: 700; color: var(--dark); }
.au-founder-role { font-size: 0.825rem; color: var(--muted); margin-top: 2px; }

/* Stats */
.au-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.au-stat {
  background: linear-gradient(145deg, var(--cream), #fff3e6);
  border-radius: 18px;
  padding: 26px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255,121,0,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}
.au-stat:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(255,121,0,0.14); }
.au-stat-num {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.au-stat-lbl {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Trust badges */
.au-trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 48px;
  border-top: 1px solid #f0f1f3;
}
.au-trust-badge {
  text-align: center;
  padding: 28px 18px 24px;
  background: #fafbfc;
  border-radius: 18px;
  border: 1px solid #eef0f3;
  transition: all 0.22s;
}
.au-trust-badge:hover {
  background: var(--white);
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  transform: translateY(-4px);
  border-color: #e2e8f0;
}
.au-tb-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.au-tb-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 7px;
}
.au-tb-text {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 30px;
  position: relative; overflow: hidden;
}
.footer-deco { position: absolute; inset: 0; pointer-events: none; }
.footer-blob { position: absolute; border-radius: 50%; opacity: 0.06; }
.footer-blob-1 { width: 380px; height: 380px; background: var(--orange); top: -80px; right: -80px; }
.footer-blob-2 { width: 280px; height: 280px; background: var(--blue); bottom: -40px; left: 160px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  margin-bottom: 56px;
  position: relative; z-index: 2;
}
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  /* Invert to white for dark footer */
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer .logo-text { color: var(--white); }
.footer-tagline { font-size: 0.9375rem; line-height: 1.75; margin-bottom: 22px; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
  color: rgba(255,255,255,0.65);
}
.social-link:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.footer-heading { font-size: 0.9375rem; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: var(--t); }
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 11px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.9rem; color: rgba(255,255,255,0.55); }
.ci { flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { font-size: 0.85rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.75); }

/* =====================================================
   SCROLL REVEAL
===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
/* Предпазна мярка: при изключени анимации показваме съдържанието веднага,
   за да не остане текст скрит, ако reveal не се задейства. */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =====================================================
   EVENT DETAIL PAGE
===================================================== */

/* Hero */
.ev-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  overflow: hidden;
}
.ev-hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ev-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.ev-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.15) 0%,
    rgba(10,10,10,0.30) 40%,
    rgba(10,10,10,0.82) 100%
  );
}
.ev-hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(80px + var(--ann-h) + 48px);
}
.ev-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
}
.ev-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.18s; }
.ev-breadcrumb a:hover { color: var(--white); }
.ev-breadcrumb span { color: rgba(255,255,255,0.4); }
.ev-hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.ev-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.ev-type-badge--camp   { background: rgba(255,121,0,0.92); color: #fff; }
.ev-type-badge--hike   { background: rgba(34,139,70,0.92); color: #fff; }
.ev-type-badge--art    { background: rgba(139,92,246,0.92); color: #fff; }
.ev-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}
.ev-urgency-badge--hot  { background: rgba(239,68,68,0.88);  color: #fff; }
.ev-urgency-badge--warn { background: rgba(234,179,8,0.88);  color: #1a1a1a; }
.ev-urgency-badge--ok   { background: rgba(34,197,94,0.88);  color: #fff; }
.ev-hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 12px;
  max-width: 800px;
}
.ev-hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 22px;
  font-weight: 400;
}
.ev-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.ev-meta-pill {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--white);
  font-weight: 500;
}
.ev-hero-countdown {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.ev-cd-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  white-space: nowrap;
}
.ev-cd-boxes {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ev-cd-box {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 8px 12px;
  text-align: center;
  min-width: 54px;
}
.ev-cd-box span {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ev-cd-box small {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 3px;
}
.ev-cd-sep { color: rgba(255,255,255,0.5); font-size: 1.2rem; font-weight: 700; }
.ev-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.ev-hero-call {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s;
}
.ev-hero-call:hover { color: var(--white); }

/* ── Event Hero V2 (2-column: photo | info) ─────────────────────── */
.ev-hero2 {
  background: var(--cream);
  padding: calc(92px + var(--ann-h)) 0 56px;
}
.ev-breadcrumb2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.ev-breadcrumb2 a { color: var(--muted); text-decoration: none; transition: color 0.18s; }
.ev-breadcrumb2 a:hover { color: var(--orange); }
.ev-breadcrumb2 span:not(a) { color: #c0c4cc; }
.ev-hero2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.ev-hero2-photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}
.ev-hero2-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.ev-hero2-photo-wrap .ev-type-badge {
  position: absolute;
  top: 16px;
  left: 16px;
}
.ev-hero2-photo-wrap .ev-urgency-badge {
  position: absolute;
  top: 16px;
  right: 16px;
}
.ev-hero2-info {
  padding-top: 4px;
}
.ev-hero2-title {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.ev-hero2-sub {
  font-size: 1.05rem;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: 20px;
}
.ev-hero2-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.ev-hero2-pill {
  background: var(--white);
  border: 1px solid #e4e7ec;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--body);
  font-weight: 500;
}
.ev-hero2-cd {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.ev-hero2-cd-label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ev-cd-box--light {
  background: var(--white);
  border: 1px solid #e4e7ec;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  border-radius: 10px;
  padding: 8px 12px;
  text-align: center;
  min-width: 52px;
}
.ev-cd-box--light span {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ev-cd-box--light small {
  font-size: 0.62rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 3px;
}
.ev-cd-sep--dark { color: #adb5bd; font-size: 1.1rem; font-weight: 700; }
.ev-hero2-call {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s;
}
.ev-hero2-call:hover { color: var(--orange); }
.ev-hero2-deadline {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--muted);
}
/* Upcoming section inside event page — remove top bg gradient */
.ev-related-upcoming { background: var(--cream); }

/* Facts strip */
.ev-facts-strip {
  background: var(--white);
  border-bottom: 1px solid #eef0f3;
  padding: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  position: relative;
  z-index: 10;
}
.ev-facts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.ev-fact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 16px;
  border-right: 1px solid #eef0f3;
}
.ev-fact:last-child { border-right: none; }
.ev-fact-icon { font-size: 1.4rem; flex-shrink: 0; }
.ev-fact > div { display: flex; flex-direction: column; gap: 2px; }
.ev-fact-lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-weight: 600; }
.ev-fact strong { font-size: 0.9rem; color: var(--dark); font-weight: 700; }

/* Main 2-col grid */
.ev-main { padding: 60px 0 80px; background: #f8f9fa; }
.ev-main-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* Content blocks */
.ev-block {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 36px;
  margin-bottom: 24px;
  border: 1px solid #eef0f3;
}
.ev-block:last-child { margin-bottom: 0; }
.ev-block-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0f1f3;
}
.ev-block-text {
  font-size: 0.975rem;
  line-height: 1.85;
  color: var(--body);
}

/* Rich text от админ RichEditor — възстановяваме отстоянията, които глобалният
   reset (`* { margin:0 }`, `ul { list-style:none }`) премахва, за да изглежда
   текстът на сайта подреден като в админ панела. */
.ev-description > *:last-child { margin-bottom: 0; }
.ev-description p { margin: 0 0 0.9em; }
/* Авторът често слага празни параграфи за нов ред — те не бива да трупат
   излишно празно пространство; отстоянието идва от margin-а на реалните абзаци. */
.ev-description p:empty { display: none; }
.ev-description h2,
.ev-description h3 {
  color: var(--dark);
  font-weight: 800;
  line-height: 1.3;
  margin: 1.6em 0 0.5em;
}
.ev-description h2 { font-size: 1.35rem; }
.ev-description h3 { font-size: 1.12rem; }
.ev-description ul,
.ev-description ol {
  margin: 0 0 1em;
  padding-left: 1.5em;
}
.ev-description ul { list-style: disc; }
.ev-description ol { list-style: decimal; }
.ev-description li { margin: 0 0 0.4em; }
.ev-description a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ev-description a:hover { opacity: 0.8; }
.ev-description strong,
.ev-description b { font-weight: 700; color: var(--dark); }

/* Timeline (program) */
.ev-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 28px;
}
.ev-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 10px; bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--yellow));
  border-radius: 2px;
}
.ev-tl-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  position: relative;
}
.ev-tl-dot {
  position: absolute;
  left: -28px;
  top: 16px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--orange);
  border: 2.5px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange);
  z-index: 1;
}
.ev-tl-time {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
  padding-top: 1px;
}
.ev-tl-text {
  font-size: 0.9375rem;
  color: var(--body);
  line-height: 1.6;
}

/* Included/Not included */
.ev-included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ev-included-h {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.ev-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ev-check-list li {
  font-size: 0.9rem;
  color: var(--body);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.ev-check-list--yes li::before {
  content: '✓';
  position: absolute; left: 0;
  color: #22c55e;
  font-weight: 700;
}
.ev-check-list--no li::before {
  content: '✕';
  position: absolute; left: 0;
  color: #ef4444;
  font-weight: 700;
}

/* Bring list */
.ev-bring-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ev-bring-list li {
  font-size: 0.9rem;
  color: var(--body);
  background: #fafbfc;
  border: 1px solid #eef0f3;
  border-radius: 10px;
  padding: 10px 14px;
  line-height: 1.4;
}

/* Gallery */
.ev-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 200px 180px;
  gap: 10px;
}
.ev-gallery-item { overflow: hidden; border-radius: 14px; }
.ev-gallery-item--big {
  grid-column: span 2;
  grid-row: span 2;
}
.ev-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
  display: block;
}
.ev-gallery-item:hover img { transform: scale(1.05); }

/* FAQ */
.ev-faq { display: flex; flex-direction: column; gap: 8px; }
.ev-faq-item {
  background: #fafbfc;
  border: 1px solid #eef0f3;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.ev-faq-item[open] { border-color: var(--orange); background: var(--white); }
.ev-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  list-style: none;
  user-select: none;
  gap: 16px;
}
.ev-faq-q::-webkit-details-marker { display: none; }
.ev-faq-arrow {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--muted);
}
.ev-faq-item[open] .ev-faq-arrow { transform: rotate(180deg); color: var(--orange); }
.ev-faq-a {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--body);
}

/* Sidebar */
.ev-sidebar { position: sticky; top: calc(80px + var(--ann-h) + 24px); }
.ev-sidebar-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid #eef0f3;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ev-sb-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ev-sb-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.02em;
}
.ev-sb-price-bgn {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  margin-top: 2px;
}
.ev-fact-bgn {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 1px;
}
.ev-sb-age-badge {
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--cream);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.ev-sb-seats { display: flex; flex-direction: column; gap: 6px; }
.ev-sb-seats-bar {
  height: 8px;
  background: #eef0f3;
  border-radius: 10px;
  overflow: hidden;
}
.ev-sb-seats-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: 10px;
  transition: width 0.6s var(--ease);
}
.ev-sb-seats-txt { font-size: 0.825rem; color: var(--body); }
.ev-seats-hot { color: #ef4444; }
.ev-sb-deadline {
  font-size: 0.825rem;
  color: var(--body);
  background: #fefce8;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 10px 14px;
}
.ev-sb-form { display: flex; flex-direction: column; gap: 14px; position: relative; }
.ev-sb-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ev-sb-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.18s;
}
.ev-sb-contact-btn--phone {
  background: #f8f9fa;
  color: var(--dark);
  border: 1.5px solid #e2e8f0;
}
.ev-sb-contact-btn--phone:hover { background: var(--dark); color: var(--white); }
.ev-sb-contact-btn--wa {
  background: #25d366;
  color: var(--white);
}
.ev-sb-contact-btn--wa:hover { background: #1ebe5a; }
.ev-sb-contact-btn--viber {
  background: #7360f2;
  color: var(--white);
}
.ev-sb-contact-btn--viber:hover { background: #5a4bd4; }

/* Related events */
.ev-related { padding: 64px 0; background: var(--white); }
.ev-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.ev-rel-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eef0f3;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  background: var(--white);
}
.ev-rel-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ev-rel-photo-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.ev-rel-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.ev-rel-card:hover .ev-rel-photo { transform: scale(1.06); }
.ev-rel-photo-wrap .ev-type-badge { position: absolute; top: 14px; left: 14px; }
.ev-rel-body { padding: 20px 22px 24px; }
.ev-rel-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin: 6px 0 5px;
  letter-spacing: -0.01em;
}
.ev-rel-sub { font-size: 0.875rem; color: var(--body); margin-bottom: 14px; }
.ev-rel-cta {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orange);
}

/* Final CTA strip */
.ev-cta-strip {
  background: var(--orange);
  padding: 28px 0;
}
.ev-cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.ev-cta-strip-title {
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 3px;
}
.ev-cta-strip-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
.ev-cta-strip .btn-primary {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}
.ev-cta-strip .btn-primary:hover { background: var(--cream); }

/* =====================================================
   ANIMATIONS
===================================================== */
@keyframes blobPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%       { transform: scale(1.14) rotate(4deg); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(0.75); }
}
@keyframes seedFloat {
  0%   { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
  8%   { opacity: 0.9; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-110vh) translateX(var(--drift, 60px)) rotate(var(--spin, 540deg)); opacity: 0; }
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-subtitle { margin: 0 auto 40px; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { max-width: 440px; margin: 0 auto; }
  .hero-float-card { display: none; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { gap: 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-masonry { columns: 3; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-wrap { padding: 32px 28px; }
  .au-grid { grid-template-columns: 1fr; gap: 36px; }
  .au-photo { aspect-ratio: 2 / 3; }
  .au-photo-pill { bottom: -16px; }
  .au-content { padding-top: 36px; }
  .au-trust-row { grid-template-columns: repeat(2, 1fr); }
  .ev-main-grid { grid-template-columns: 1fr; }
  .ev-sidebar { position: static; }
  .ev-facts-grid { grid-template-columns: repeat(3, 1fr); }
  .ev-bring-list { grid-template-columns: 1fr; }
  .ev-hero2-grid { grid-template-columns: 1fr; gap: 28px; }
  /* Match the /events list top spacing so the breadcrumb clears the
     fixed navbar instead of tucking up underneath it */
  .ev-hero2 { padding: calc(92px + var(--ann-h)) 0 40px; }
}

@media (max-width: 768px) {
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Keep logo + toggle above the fullscreen overlay */
  .navbar { z-index: 1200; }
  /* Solid bar behind logo/toggle so overlay scroll never bleeds through.
     Also drop backdrop-filter: it creates a containing block that would
     trap the fixed .nav-menu inside the navbar instead of the viewport,
     which clipped the menu to a thin strip when scrolled down. */
  body.menu-open .navbar,
  body.menu-open .navbar.scrolled {
    background: var(--cream);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* ── Mobile fullscreen menu overlay ── */
  .nav-menu {
    /* Fill the whole screen, sit above page content */
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    padding: calc(88px + var(--ann-h)) 28px 40px;
    background: var(--cream);
    /* Hidden state: slide up + fade out */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    transition: opacity 0.35s var(--ease),
                transform 0.4s var(--ease),
                visibility 0s linear 0.4s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.35s var(--ease),
                transform 0.45s var(--ease),
                visibility 0s linear 0s;
  }

  /* Each item is a distinct row with a soft separator */
  .nav-menu li {
    border-bottom: 1px solid rgba(30,41,59,0.08);
  }
  .nav-menu li:last-of-type { border-bottom: none; }

  .nav-menu .nav-link {
    display: block;
    text-align: center;
    padding: 18px 14px;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    border-radius: 0;
  }
  .nav-menu .nav-link:hover,
  .nav-menu .nav-link:active {
    background: transparent;
    color: var(--orange);
  }

  /* CTA shown inside the open menu */
  .nav-menu .nav-cta-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 32px auto 0;
    padding: 16px 40px;
    font-size: 1.05rem;
  }

  /* Staggered slide-in for items when menu opens */
  .nav-menu.open li,
  .nav-menu.open .nav-cta-mobile {
    animation: navItemIn 0.4s var(--ease) both;
  }
  .nav-menu.open li:nth-child(1) { animation-delay: 0.06s; }
  .nav-menu.open li:nth-child(2) { animation-delay: 0.10s; }
  .nav-menu.open li:nth-child(3) { animation-delay: 0.14s; }
  .nav-menu.open li:nth-child(4) { animation-delay: 0.18s; }
  .nav-menu.open li:nth-child(5) { animation-delay: 0.22s; }
  .nav-menu.open li:nth-child(6) { animation-delay: 0.26s; }
  .nav-menu.open li:nth-child(7) { animation-delay: 0.30s; }
  .nav-menu.open .nav-cta-mobile { animation-delay: 0.34s; }

  @keyframes navItemIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Toggle stays clickable above the overlay; turns into an X */
  .nav-toggle { z-index: 1200; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Lock body scroll while menu is open */
  body.menu-open { overflow: hidden; }
  .stats-strip-inner { gap: 16px; flex-direction: column; }
  .strip-divider { width: 40px; height: 1px; }
  .strip-item { padding: 0; }
  .benefits-grid, .programs-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 calc(100vw - 80px); }
  .program-card--featured { grid-template-columns: 1fr; }
  .featured-highlights { grid-template-columns: 1fr; }
  .program-featured-image .program-card-img-bg { min-height: 200px; }
  .featured-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .gallery-masonry { columns: 2; }
  .timeline::before { left: 20px; }
  .timeline-item,
  .timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 68px;
  }
  .timeline-node { left: 20px; transform: translateX(-50%); }
  .timeline-item:hover .timeline-node { transform: translateX(-50%) scale(1.15); }
  .timeline-content { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .au-trust-row { grid-template-columns: repeat(2, 1fr); }
  /* Facts: compact 2-col tiles — icon above a small label + value,
     centered. Last odd item (price) spans the full width for balance. */
  .ev-facts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #eef0f3;
  }
  .ev-fact {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
    padding: 9px 8px;
    border-right: none;
    background: var(--white);
  }
  .ev-fact-icon { font-size: 1.05rem; }
  .ev-fact > div { align-items: center; gap: 0; }
  .ev-fact-lbl { font-size: 0.6rem; }
  .ev-fact strong { font-size: 0.8rem; }
  .ev-fact:last-child { grid-column: 1 / -1; }
  .ev-included-grid { grid-template-columns: 1fr; }
  .ev-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .ev-gallery-item--big { grid-column: span 2; grid-row: span 1; }
  .ev-related-grid { grid-template-columns: 1fr; }
  .ev-cta-strip-inner { flex-direction: column; text-align: center; }
  .ev-block { padding: 24px 20px; }

  /* Event hero: smaller title + badges, tighter photo corners on mobile */
  .ev-hero2-title { font-size: 1.5rem; margin-bottom: 10px; }
  .ev-hero2-photo-wrap { border-radius: var(--radius-md); }
  .ev-hero2-photo-wrap .ev-type-badge,
  .ev-hero2-photo-wrap .ev-urgency-badge {
    font-size: 0.7rem;
    padding: 4px 11px;
  }
  .ev-hero2-photo-wrap .ev-type-badge { top: 10px; left: 10px; }
  .ev-hero2-photo-wrap .ev-urgency-badge { top: 10px; right: 10px; }

  /* Countdown "До събитието:" — boxes span the full width, evenly
     distributed edge-to-edge and equal-sized on every resolution */
  .ev-hero2-cd { flex-direction: column; align-items: stretch; gap: 8px; }
  .ev-hero2-cd-label { align-self: flex-start; }
  .ev-cd-boxes { width: 100%; gap: 6px; }
  .ev-cd-boxes .ev-cd-box--light {
    flex: 1 1 0;
    min-width: 0;
    padding: 8px 4px;
  }
  .ev-cd-boxes .ev-cd-sep--dark { flex: 0 0 auto; }

  /* Full-width "Резервирай сега" button; phone link sits below it */
  .ev-hero-actions { gap: 12px; }
  .ev-hero-actions .btn { width: 100%; justify-content: center; }
  .ev-hero2-call { width: 100%; justify-content: center; }

  /* Breadcrumb: keep the full path on one line; truncate the long event
     title with an ellipsis instead of wrapping onto a second line */
  .ev-breadcrumb2 { flex-wrap: nowrap; min-width: 0; }
  .ev-breadcrumb2 .bc-crumb,
  .ev-breadcrumb2 .bc-sep { flex-shrink: 0; white-space: nowrap; }
  .ev-breadcrumb2 .bc-current {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 600px) {
  :root { --ann-h: 0px; }
  .announcement-bar { display: none; }
}
@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .cf-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 18px; }
}

/* ── Cookie Consent Banner ──────────────────────────────────────────────── */
#cookie-consent {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 680px;
  background: #1e1e2e;
  color: #e2e8f0;
  border-radius: 14px;
  padding: 18px 20px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: .93rem;
  line-height: 1.55;
}
#cookie-consent[hidden] { display: none !important; }
#cookie-consent p { margin: 0; }
.cc-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
#cc-accept {
  flex: 1 1 auto;
  padding: 10px 22px;
  font-size: .92rem;
  font-weight: 600;
  white-space: nowrap;
}
.cc-close-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: #94a3b8;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: .9rem;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.cc-close-btn:hover { border-color: rgba(255,255,255,.55); color: #e2e8f0; }
@media (max-width: 480px) {
  #cookie-consent { bottom: 12px; left: 12px; right: 12px; width: auto; transform: none; }
  #cc-accept { min-width: 100%; }
}
