@font-face {
  font-family: 'Engebrechtre';
  src: url('../fonts/EngebrechtreBold.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #080808;
  --dark: #111111;
  --surface: #1a1a1a;
  --border: #2a2a2a;
  --muted: #555;
  --silver: #999;
  --light: #ccc;
  --white: #f0f0f0;
  --red: #8B0000;
  --red-bright: #cc0000;
  --font-display: 'Engebrechtre', sans-serif;
  --font-body: 'Engebrechtre', sans-serif;
  --nav-height: 90px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Vynutenie fontu všade – aj WordPress elementy */
body, body * {
  font-family: 'Engebrechtre', sans-serif !important;
}

body {
  background: var(--black);
  color: var(--white);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── NAVIGATION ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  transition: background var(--transition), backdrop-filter var(--transition);
}
.site-header.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 48px;
}
.site-nav a {
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--light);
  transition: color var(--transition);
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--red-bright);
  transition: width var(--transition);
}
.site-nav a:hover,
.site-nav a.active { color: var(--white); }
.site-nav a:hover::after,
.site-nav a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 12px;
  position: absolute;
  right: 24px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: width 0.3s ease, transform 0.4s ease, opacity 0.3s ease;
}
.hamburger span:nth-child(1) { width: 32px; }
.hamburger span:nth-child(2) { width: 22px; }
.hamburger span:nth-child(3) { width: 28px; }
.hamburger.open span:nth-child(1) { width: 32px; transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { width: 32px; transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 8vw, 56px);
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu a:hover { color: var(--red-bright); }

/* ─── HERO ─── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: grayscale(60%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(8,8,8,0.3) 0%, rgba(8,8,8,0.85) 100%);
}
.hero-logo {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeInLogo 1.8s ease 0.5s forwards;
  max-width: 676px;
  width: 85%;
  filter: drop-shadow(0 0 40px rgba(139,0,0,0.4));
}
@keyframes fadeInLogo {
  0% { opacity: 0; transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1); }
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeInLogo 1s ease 2s forwards;
}
.hero-scroll span {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--red-bright), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ─── SECTIONS ─── */
.section { padding: 100px 56px; }
.section-label {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-weight: 200;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--red-bright);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 16px;
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── VIDEO SEKCIA ─── */
.video-section {
  padding: 80px 56px;
  position: relative;
  background: var(--black);
}
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
}
.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-overlay-top,
.video-overlay-bottom {
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  z-index: 2;
  pointer-events: none;
}
.video-overlay-top {
  top: 0;
  background: linear-gradient(to bottom, var(--black), transparent);
}
.video-overlay-bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--black), transparent);
}

/* ─── O NÁS ─── */
.about-section {
  padding: 100px 56px;
  background: var(--dark);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-content .section-label { justify-content: flex-start; }
.about-content .section-label::after { display: none; }
.about-content .section-title { text-align: left; }
.about-text {
  font-size: 28px;
  font-weight: 200;
  color: var(--silver);
  line-height: 1.9;
}
.about-members {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.about-member {
  padding: 6px 16px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light);
  transition: border-color var(--transition), color var(--transition);
}
.about-member:hover { border-color: var(--red-bright); color: var(--red-bright); }

/* ─── AKCIE ─── */
.events-section {
  padding: 100px 56px;
  background: var(--black);
}
.events-header {
  text-align: center;
  margin-bottom: 56px;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.event-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
  background: var(--surface);
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.event-card:hover { border-color: var(--red); }
.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: grayscale(20%);
}
.event-card:hover img { transform: scale(1.05); filter: grayscale(0); }
.event-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.event-card:hover .event-card-overlay { opacity: 1; }
.event-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.8;
}

/* ─── PORTFOLIO / ČO HRÁME ─── */
.portfolio-section {
  padding: 100px 56px;
  background: var(--dark);
}
.portfolio-header {
  text-align: center;
  margin-bottom: 56px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.artist-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1;
  background: var(--surface);
  cursor: default;
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.artist-card:hover { border-color: var(--red); }
.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  transition: filter 0.5s ease, transform 0.6s ease;
}
.artist-card:hover img { filter: grayscale(0); transform: scale(1.06); }
.artist-card-name {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 16px 16px;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 100%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.artist-card:hover .artist-card-name { opacity: 1; transform: translateY(0); }
.artist-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

/* ─── GALÉRIA ─── */
.gallery-section {
  padding: 100px 56px;
  background: var(--black);
}
.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}
.ev-grid {
  columns: 3;
  column-gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}
.ev-item {
  break-inside: avoid;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  border-radius: 4px;
}
.ev-item.ev-hidden { display: none; }
.ev-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  filter: grayscale(20%);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.ev-item:hover img { transform: scale(1.03); filter: grayscale(0); }
.ev-overlay {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: rgba(139,0,0,0.2);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.ev-item:hover .ev-overlay { opacity: 1; }
.ev-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--surface);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.8;
}
.ev-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.ev-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 16px 48px;
  cursor: pointer;
  transition: background 0.4s, color 0.4s, border-color 0.4s;
}
.ev-btn:hover { background: var(--red); color: var(--white); border-color: var(--red); }

/* Lightbox */
.ev-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(8,8,8,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.ev-lightbox.active { opacity: 1; pointer-events: all; }
.ev-lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}
.ev-lb-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none; border: none;
  color: var(--white); font-size: 43px;
  cursor: pointer; opacity: 0.6;
  transition: opacity 0.3s; line-height: 1;
}
.ev-lb-close:hover { opacity: 1; }
.ev-lb-prev, .ev-lb-next {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  background: rgba(139,0,0,0.3);
  border: 1px solid var(--red);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 24px;
  transition: background 0.3s;
}
.ev-lb-prev { left: 24px; }
.ev-lb-next { right: 24px; }
.ev-lb-prev:hover, .ev-lb-next:hover { background: var(--red); }

/* ─── KONTAKT ─── */
.contact-section {
  padding: 100px 56px;
  background: var(--dark);
}
.contact-header { text-align: center; margin-bottom: 64px; }
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 40px; }
.contact-block h3 {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 12px;
  font-weight: 200;
}
.contact-block a,
.contact-block p {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--white);
  transition: color var(--transition);
}
.contact-block a:hover { color: var(--red-bright); }
.contact-social { display: flex; gap: 12px; margin-top: 12px; }
.social-link {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver);
  transition: var(--transition);
}
.social-link:hover { border-color: var(--red-bright); color: var(--red-bright); }

/* ─── FOOTER ─── */
.site-footer {
  padding: 32px 56px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 13px;
  font-weight: 200;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.footer-logo img { height: 40px; width: auto; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 72px 20px; }
  .about-section, .events-section, .portfolio-section, .gallery-section, .contact-section { padding: 72px 20px; }
  .site-header { padding: 0 20px; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .hero-logo { width: 75%; }
  .about-content .section-label { justify-content: center; }
  .about-content .section-title { text-align: center; }
  .about-members { justify-content: center; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ev-grid { columns: 2; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .contact-social { justify-content: center; }
  .site-footer { flex-direction: column; gap: 16px; text-align: center; }
  .ev-lb-prev { left: 8px; }
  .ev-lb-next { right: 8px; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: 1fr; }
  .ev-grid { columns: 1; }
  .hero-logo { width: 90%; }
}

/* ─── SECTION DESC ─── */
.section-desc {
  font-size: 28px;
  font-weight: 200;
  color: var(--silver);
  line-height: 1.8;
  max-width: 680px;
  margin: 16px auto 0;
  text-align: center;
}
.section-header { text-align: center; margin-bottom: 48px; }

/* ─── AKCIE – info overlay ─── */
.event-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.event-card:hover .event-card-overlay { opacity: 1; }
.event-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.event-card-date {
  font-size: 12px;
  font-weight: 400;
  color: var(--red-bright);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* ─── O NÁS – hover na memberov ─── */
.about-section { background: var(--dark); }
.about-inner {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-image-wrap {
  position: relative;
  width: 480px;
}
.about-main-photo {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 9/16;
}
.about-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: opacity 0.4s ease;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-text {
  font-size: 28px;
  font-weight: 200;
  color: var(--silver);
  line-height: 1.9;
}
.about-members {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-member {
  padding: 10px 0;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color var(--transition);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
}
.about-member::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background var(--transition);
}
.about-member:hover { color: var(--white); }
.about-member:hover::before { background: var(--red-bright); }

/* ─── GALÉRIA CSS COLUMNS ─── */
.gallery-section { padding: 100px 56px; background: var(--black); }
.gallery-header { text-align: center; margin-bottom: 48px; }
.ev-grid { columns: 3; column-gap: 10px; max-width: 1100px; margin: 0 auto; }
.ev-item { break-inside: avoid; margin-bottom: 10px; position: relative; overflow: hidden; cursor: pointer; display: block; border-radius: 4px; }
.ev-item.ev-hidden { display: none; }
.ev-item img { width: 100%; height: auto; display: block; border-radius: 4px; filter: grayscale(20%); transition: transform 0.5s ease, filter 0.5s ease; }
.ev-item:hover img { transform: scale(1.03); filter: grayscale(0); }
.ev-overlay { position: absolute; inset: 0; border-radius: 4px; background: rgba(139,0,0,0.2); opacity: 0; transition: opacity 0.4s ease; }
.ev-item:hover .ev-overlay { opacity: 1; }
.ev-placeholder { width: 100%; aspect-ratio: 4/3; background: var(--surface); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; line-height: 1.8; }
.ev-more { display: flex; justify-content: center; margin-top: 40px; }
.ev-btn { background: none; border: 1px solid var(--border); color: var(--white); font-family: var(--font-body); font-size: 11px; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; padding: 16px 48px; cursor: pointer; transition: background 0.4s, color 0.4s, border-color 0.4s; }
.ev-btn:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.ev-lightbox { position: fixed; inset: 0; z-index: 9000; background: rgba(8,8,8,0.97); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.ev-lightbox.active { opacity: 1; pointer-events: all; }
.ev-lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; display: block; border-radius: 4px; }
.ev-lb-close { position: absolute; top: 24px; right: 32px; background: none; border: none; color: var(--white); font-size: 36px; cursor: pointer; opacity: 0.6; transition: opacity 0.3s; }
.ev-lb-close:hover { opacity: 1; }
.ev-lb-prev, .ev-lb-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(139,0,0,0.3); border: 1px solid var(--red); color: var(--white); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 20px; transition: background 0.3s; }
.ev-lb-prev { left: 24px; } .ev-lb-next { right: 24px; }
.ev-lb-prev:hover, .ev-lb-next:hover { background: var(--red); }

/* ─── RESPONSIVE O NÁS ─── */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .ev-grid { columns: 2; }
}
@media (max-width: 768px) {
  .section-desc { font-size: 15px; }
  .ev-grid { columns: 1; }
  .gallery-section, .about-section { padding: 72px 20px; }
}
