/* ─── Tokens ─────────────────────────────────────────────── */
    :root {
      --bg:        oklch(97% 0.009 80);
      --bg-alt:    oklch(93% 0.012 78);
      --bg-dark:   oklch(22% 0.055 15);
      --plum:      oklch(28% 0.072 10);
      --plum-mid:  oklch(38% 0.072 10);
      --gold:      oklch(68% 0.13  75);
      --gold-lt:   oklch(82% 0.10  80);
      --text:      oklch(18% 0.012 60);
      --text-mid:  oklch(42% 0.012 60);
      --text-lt:   oklch(62% 0.010 60);
      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans:  'DM Sans', system-ui, sans-serif;
      --max: 1180px;
    }

    /* ─── Reset ──────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { background: var(--bg); color: var(--text); font-family: var(--sans); font-size: 16px; line-height: 1.7; }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }

	    .section-title em, h2 em, h1 em, .about-text h2 em {
	      font-style: normal;
	    }
	#navbar {
	  position: fixed;
	  top: 0;
	  left: 0;
	  right: 0;
	  z-index: 201;

	  display: flex;
	  align-items: center;
	  justify-content: space-between;

	  padding: 0 clamp(20px, 4vw, 60px);
	  height: 68px;

	  background: color-mix(in oklch, var(--bg) 92%, transparent);
	  backdrop-filter: blur(12px);
	  border-bottom: 1px solid oklch(88% 0.012 78);
	  transition: box-shadow 0.3s;
	}

	#navbar.scrolled {
	  box-shadow: 0 2px 24px oklch(0% 0 0 / 0.08);
	}
    .nav-logo {
      font-family: var(--serif); font-size: 1.25rem; font-weight: 500; letter-spacing: 0.01em;
      color: var(--plum);
    }
    .nav-logo em { font-style: normal; color: var(--gold); }
    .footer-logo { font-family: var(--serif); color: oklch(70% 0.01 80); font-size: 1.1rem; }
    .footer-logo em { color: var(--gold); font-style: normal; }
    .nav-links { display: flex; gap: clamp(14px, 2vw, 32px); list-style: none; }
    .nav-links a {
      font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--text-mid); transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--plum); }
    .nav-links a.active { color: var(--plum); }
    .nav-cta {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 8px 20px; border-radius: 100px;
      background: var(--plum); color: #fff;
      font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
      transition: background 0.2s, transform 0.15s;
    }
    .nav-cta:hover { background: var(--plum-mid); transform: translateY(-1px); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--plum); border-radius: 2px; transition: 0.3s; }

    /* ─── Mobile nav ─────────────────────────────────────────── */
    @media (max-width: 768px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .mobile-menu {
        display: none; position: fixed; inset: 68px 0 0 0; z-index: 200;
        background: #f5f0ea; padding: 32px clamp(20px,4vw,60px);
        flex-direction: column; gap: 24px; overflow-y: auto;
        border-top: 1px solid #e0d8cc;
      }
      .mobile-menu a { font-size: 1.4rem; font-family: var(--serif); color: #5a1a20; font-weight: 500; }
      .mobile-menu .m-cta {
        margin-top: 8px; display: inline-block;
        padding: 12px 28px; background: #5a1a20; color: #fff; border-radius: 100px;
        font-family: var(--sans); font-size: 0.9rem; font-weight: 500;
        width: fit-content;
      }
      .mobile-menu.open { display: flex; }
    }

	html.menu-open,
	body.menu-open {
	  overflow: hidden;
	}

	@media (max-width: 768px) {
	  .mobile-menu {
		overscroll-behavior: contain;
	  }
	}

    /* ─── Hero ───────────────────────────────────────────────── */
    .hero {
      min-height: 100svh; display: flex; align-items: center; justify-content: center;
      text-align: center; position: relative; overflow: hidden;
      padding: 120px clamp(20px,6vw,80px) 80px;
      background: var(--bg-dark);
    }
	    .hero-bg {
	      position: absolute; inset: 0;
	      background:
	        radial-gradient(ellipse 80% 60% at 50% 30%, oklch(35% 0.08 15 / 0.6) 0%, transparent 70%),
	        linear-gradient(180deg, oklch(16% 0.05 12) 0%, oklch(22% 0.055 15) 100%);
	    }
	    .hero-bg.has-image {
	      background-size: cover;
	      background-position: center;
	    }
    /* Decorative curtain SVG lines */
    .hero-curtain {
      position: absolute; inset: 0; pointer-events: none; opacity: 0.07;
      background: repeating-linear-gradient(
        to right,
        oklch(80% 0.12 60) 0px,
        oklch(80% 0.12 60) 1px,
        transparent 1px,
        transparent 60px
      );
    }
    .hero-content { position: relative; z-index: 2; max-width: 780px; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--gold); font-weight: 500; margin-bottom: 28px;
    }
    .hero-eyebrow::before, .hero-eyebrow::after {
      content: ''; display: block; width: 40px; height: 1px; background: var(--gold); opacity: 0.6;
    }
	    .hero h1 {
	      font-family: var(--serif); font-size: clamp(3.2rem, 8vw, 6.5rem);
	      font-weight: 300; line-height: 1.05; color: #fff;
	      letter-spacing: 0; margin-bottom: 8px;
	    }
	    .hero h1 em { font-style: normal; color: inherit; display: inline; }
	    .hero-quote {
	      margin: 36px auto 0; max-width: 540px;
	      font-family: var(--serif); font-size: 1.15rem; font-style: normal;
	      color: oklch(85% 0.01 80); line-height: 1.6;
	    }
    .hero-quote cite {
      display: block; font-style: normal; font-family: var(--sans);
      font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--gold); margin-top: 10px; font-weight: 500;
    }
    .hero-actions { margin-top: 48px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-primary {
      padding: 14px 36px; border-radius: 100px; background: var(--gold);
      color: var(--text); font-weight: 500; font-size: 0.9rem; letter-spacing: 0.04em;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px oklch(68% 0.13 75 / 0.35); }
    .btn-ghost {
      padding: 14px 36px; border-radius: 100px;
      border: 1px solid oklch(100% 0 0 / 0.25); color: #fff;
      font-size: 0.9rem; letter-spacing: 0.04em;
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-ghost:hover { border-color: oklch(100% 0 0 / 0.5); background: oklch(100% 0 0 / 0.06); }
    .hero-scroll {
      position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: oklch(70% 0 0); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
      animation: bob 2s ease-in-out infinite;
    }
    .hero-scroll svg { opacity: 0.5; }
    @keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

    /* ─── Section shell ──────────────────────────────────────── */
    section { padding: clamp(64px, 8vw, 120px) clamp(20px, 5vw, 60px); }
    .container { max-width: var(--max); margin: 0 auto; }
    .section-label {
      font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); font-weight: 500; margin-bottom: 14px;
    }
    .section-title {
      font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 400; line-height: 1.15; color: var(--plum);
    }
    .section-title em { font-style: normal; }
    .section-lead {
      font-size: 1.05rem; color: var(--text-mid); max-width: 640px; line-height: 1.75;
      margin-top: 16px;
    }
    .divider {
      width: 48px; height: 2px; background: var(--gold); margin: 24px 0; border-radius: 2px;
    }

    /* ─── Oznamy ─────────────────────────────────────────────── */
    #oznamy {
      background: var(--bg-alt);
      padding-top: clamp(52px, 6vw, 88px);
      padding-bottom: clamp(56px, 7vw, 96px);
    }
    .announcements-shell {
      background: var(--bg);
      border: 1px solid oklch(87% 0.014 78);
      border-radius: 14px;
      padding: clamp(24px, 4vw, 44px);
      box-shadow: 0 10px 38px oklch(0% 0 0 / 0.045);
    }
    .announcements-header {
      display: flex; align-items: flex-start; justify-content: space-between;
      gap: 24px; margin-bottom: 28px;
    }
    .announcement-controls {
      display: flex; gap: 8px; flex-shrink: 0;
    }
    .announcement-control {
      width: 40px; height: 40px; border-radius: 50%;
      border: 1px solid oklch(83% 0.026 78);
      background: transparent; color: var(--plum);
      display: inline-flex; align-items: center; justify-content: center;
      cursor: pointer; transition: background 0.2s, border-color 0.2s, transform 0.15s;
    }
    .announcement-control:hover {
      background: oklch(96% 0.012 78);
      border-color: var(--gold);
      transform: translateY(-1px);
    }
    .announcements-carousel { overflow: hidden; }
    .announcements-track {
      display: grid; grid-template-columns: 1fr;
    }
    .announcement-card {
      grid-area: 1 / 1;
      background: linear-gradient(135deg, oklch(99% 0.006 78), oklch(94% 0.018 78));
      border: 1px solid oklch(87% 0.014 78);
      border-radius: 12px;
      padding: clamp(24px, 4vw, 36px);
      min-height: 210px;
      opacity: 0;
      visibility: hidden;
      transform: translateX(20px);
      transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
    }
    .announcement-card.active {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
    }
    .announcement-date {
      display: inline-flex; align-items: center;
      margin-bottom: 16px; padding: 5px 12px;
      border-radius: 100px; background: oklch(90% 0.035 15);
      color: var(--plum); font-size: 0.74rem; font-weight: 600;
      letter-spacing: 0.04em; text-transform: uppercase;
    }
    .announcement-card h3 {
      font-family: var(--serif); font-size: clamp(1.55rem, 3vw, 2.25rem);
      line-height: 1.18; font-weight: 400; color: var(--plum);
      margin-bottom: 14px;
    }
    .announcement-text {
      max-width: 760px; color: var(--text-mid); font-size: 1rem; line-height: 1.78;
    }
    .announcement-text p { margin-bottom: 12px; }
    .announcement-text p:last-child { margin-bottom: 0; }
    .announcement-link {
      display: inline-flex; align-items: center; margin-top: 22px;
      color: var(--plum); font-size: 0.86rem; font-weight: 600;
      letter-spacing: 0.04em; border-bottom: 1px solid oklch(70% 0.07 10 / 0.3);
      padding-bottom: 2px; transition: border-color 0.2s, color 0.2s;
    }
    .announcement-link:hover { color: var(--plum-mid); border-color: var(--plum); }
    .announcement-empty {
      background: oklch(96% 0.012 78);
      border: 1px dashed oklch(82% 0.026 78);
      border-radius: 12px;
      color: var(--text-mid);
      padding: 24px;
      font-size: 0.95rem;
    }
    .announcement-dots {
      display: flex; justify-content: center; gap: 8px; margin-top: 20px;
    }
    .announcement-dot {
      width: 8px; height: 8px; border-radius: 50%;
      border: none; background: oklch(78% 0.025 78);
      cursor: pointer; transition: width 0.25s, background 0.25s;
    }
    .announcement-dot.active {
      width: 26px; border-radius: 100px; background: var(--gold);
    }
    @media (max-width: 640px) {
      .announcements-header { flex-direction: column; align-items: stretch; gap: 18px; }
      .announcement-controls { align-self: flex-end; }
      .announcement-card { min-height: 260px; }
    }

    /* ─── O nás ──────────────────────────────────────────────── */
    #o-nas { background: var(--bg); }
    .about-grid {
      display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: start;
    }
    .about-text h2 { font-family: var(--serif); font-size: clamp(1.9rem,3.5vw,2.8rem); font-weight: 400; color: var(--plum); line-height: 1.2; margin-bottom: 24px; }
    .about-text p { color: var(--text-mid); margin-bottom: 18px; font-size: 1rem; }
    .about-text p:last-child { margin-bottom: 0; }
    .about-text strong { color: var(--text); font-weight: 500; }
    .img-placeholder {
      display: flex; align-items: center; justify-content: center;
      background: var(--bg-alt); color: var(--text-lt); font-size: 0.78rem;
      letter-spacing: 0.08em; text-align: center; padding: 20px;
      font-family: var(--sans); text-transform: uppercase;
    }
    .about-photos {
      display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
      padding-top: 8px; gap: 10px;
    }
    .about-founder-image {
      border-radius: 12px; width: 200px; aspect-ratio: 3/5; object-fit: cover;
      font-size: 0.72rem; line-height: 1.5; overflow: hidden;
    }
    .about-photos figcaption {
      font-size: 0.78rem; color: var(--text-lt); text-align: center;
      font-style: normal; font-family: var(--serif); line-height: 1.5;
    }
    @media (max-width: 860px) {
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-photos { align-items: flex-start; }
    }

    /* ─── Poslanie ───────────────────────────────────────────── */
    #poslanie { background: var(--bg-alt); }
    .mission-intro { max-width: 680px; margin-bottom: 64px; }
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .value-card {
      background: var(--bg); padding: 48px 36px;
      transition: background 0.3s;
    }
    .value-card:first-child { border-radius: 12px 0 0 12px; }
    .value-card:last-child { border-radius: 0 12px 12px 0; }
    .value-card:hover { background: oklch(100% 0 0); }
    .value-icon {
      width: 52px; height: 52px; border-radius: 50%;
      background: oklch(90% 0.035 15); display: flex; align-items: center; justify-content: center;
      margin-bottom: 24px;
    }
    .value-icon svg { color: var(--plum); }
    .value-card h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 500; color: var(--plum); margin-bottom: 14px; }
    .value-card p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.75; }
    @media (max-width: 860px) {
      .values-grid { grid-template-columns: 1fr; gap: 2px; }
      .value-card:first-child { border-radius: 12px 12px 0 0; }
      .value-card:last-child { border-radius: 0 0 12px 12px; }
    }

    /* ─── Aktivity ───────────────────────────────────────────── */
    #aktivity { background: var(--bg-dark); }
    #aktivity .section-title { color: var(--gold-lt); }
    #aktivity .section-lead { color: oklch(72% 0.01 80); }
    #aktivity .section-label { color: oklch(65% 0.09 75); }
    .activities-layout {
      display: grid; grid-template-columns: 1fr 1.6fr; gap: 20px;
      margin-top: 56px; border-radius: 16px; overflow: visible;
      align-items: center;
    }
    .activities-list { display: flex; flex-direction: column; border-radius: 16px; overflow: hidden; }
    .activity-item {
      padding: 22px 28px; cursor: pointer; position: relative;
      border-bottom: 1px solid oklch(100% 0 0 / 0.06);
      transition: background 0.25s; background: oklch(26% 0.05 12);
      display: flex; gap: 18px; align-items: flex-start; flex: 1;
    }
    .activity-item:last-child { border-bottom: none; }
    .activity-item::before {
      content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
      background: var(--gold); transform: scaleY(0);
      transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); transform-origin: top;
    }
    .activity-item.active { background: oklch(29% 0.058 12); }
    .activity-item.active::before { transform: scaleY(1); }
    .activity-item:hover:not(.active) { background: oklch(28% 0.052 12); }
    .activity-item-num {
      font-family: var(--serif); font-size: 3rem; font-weight: 300; line-height: 1;
      color: oklch(36% 0.04 15); flex-shrink: 0; width: 48px; text-align: right;
      transition: color 0.3s; padding-top: 2px;
    }
    .activity-item.active .activity-item-num { color: var(--gold); opacity: 0.75; }
    .activity-item-text { flex: 1; min-width: 0; }
    .activity-item h3 {
      font-family: var(--serif); font-size: 1.1rem; font-weight: 400;
      color: oklch(65% 0.01 80); margin-bottom: 6px; transition: color 0.25s; line-height: 1.3;
    }
    .activity-item.active h3 { color: var(--gold-lt); }
    .activity-item p {
      font-size: 0.83rem; color: oklch(46% 0.01 80); line-height: 1.65; transition: color 0.3s;
    }
    .activity-item.active p { color: oklch(64% 0.01 80); }
    .activities-visual {
      position: sticky; top: 88px;
      background: oklch(20% 0.04 12); overflow: hidden;
      border-radius: 12px;
      aspect-ratio: 16/9; width: 100%;
      align-self: center;
    }
    .activity-visual-slide {
      position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s ease;
      display: flex; align-items: center; justify-content: center;
    }
    .activity-visual-slide.active { opacity: 1; }
    .activity-visual-slide .img-placeholder {
      width: 100%; height: 100%; font-size: 0.75rem; color: oklch(38% 0 0);
      background: none; border-radius: 0; text-transform: none; letter-spacing: 0;
    }
    .activity-image {
      width: 100%; height: 100%; object-fit: cover;
    }
    .activity-visual-caption {
      position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 28px;
      background: linear-gradient(to top, oklch(0% 0 0 / 0.65) 0%, transparent 100%);
      color: #fff; font-family: var(--serif); font-size: 1.05rem; font-style: normal;
    }
    .activity-inline-img { display: none; }
    @media (max-width: 860px) {
      .activities-layout { grid-template-columns: 1fr; border-radius: 16px; overflow: hidden; }
      .activities-visual { display: none; }
      .activities-list { border-radius: 16px; }
      .activity-item { gap: 14px; padding: 18px 20px; }
      .activity-item-num { font-size: 2.2rem; width: 38px; }
      .activity-inline-img {
        display: block; max-height: 0; overflow: hidden;
        transition: max-height 0.6s cubic-bezier(0.4,0,0.2,1); border-radius: 8px; margin-top: 0;
      }
      .activity-item.active .activity-inline-img { max-height: 300px; margin-top: 12px; }
      .activity-inline-img .img-placeholder {
        width: 100%; height: 200px; border-radius: 8px; font-size: 0.72rem;
        color: oklch(40% 0 0); background: oklch(20% 0.04 12); text-transform: none; letter-spacing: 0;
      }
      .activity-inline-img .activity-image {
        width: 100%; height: 200px; border-radius: 8px; object-fit: cover;
      }
    }

    /* ─── Podujatia ──────────────────────────────────────────── */
    #podujatia { background: var(--bg); }
    .events-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
    .events-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      align-items: start;
    }
    .event-card {
      background: var(--bg-alt); border-radius: 14px; overflow: hidden;
      display: flex; flex-direction: column;
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .event-card:hover { box-shadow: 0 10px 40px oklch(0% 0 0 / 0.1); transform: translateY(-2px); }
    .event-img {
      width: 100%; aspect-ratio: 3/2; object-fit: cover; background: var(--bg-dark);
      display: flex; align-items: center; justify-content: center;
      font-family: monospace; font-size: 0.7rem; color: oklch(45% 0 0);
      text-align: center; padding: 16px;
    }
    .event-body { padding: 22px 24px 20px; flex: 1; display: flex; flex-direction: column; }
    .event-meta-row {
      display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 14px;
    }
    .event-date-pill {
      display: inline-flex; align-items: center; gap: 5px;
      padding: 4px 10px; border-radius: 100px;
      background: oklch(90% 0.035 15); color: var(--plum);
      font-size: 0.73rem; font-weight: 600; letter-spacing: 0.03em;
    }
    .event-location {
      font-size: 0.78rem; color: var(--text-lt); font-weight: 500;
      display: flex; align-items: center; gap: 4px;
    }
    .event-location strong { color: var(--text-mid); }
    .event-type-badge {
      margin-left: auto; padding: 3px 9px; border-radius: 100px;
      border: 1px solid oklch(82% 0.035 15); color: var(--plum-mid);
      font-size: 0.7rem; font-weight: 500; letter-spacing: 0.05em; white-space: nowrap;
    }
    .event-body h3 {
      font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
      color: var(--plum); margin-bottom: 10px; line-height: 1.25;
    }
    .event-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.72; margin-bottom: 18px; flex: 1; }
    .event-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: auto; }
    .event-cta {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 10px 20px; border-radius: 100px; background: var(--plum); color: #fff;
      font-size: 0.82rem; font-weight: 500; letter-spacing: 0.03em;
      transition: background 0.2s, transform 0.15s;
    }
    .event-cta:hover { background: var(--plum-mid); transform: translateY(-1px); }
    .event-toggle {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 0.8rem; font-weight: 500; color: var(--text-lt);
      background: none; border: none; cursor: pointer; padding: 0;
      letter-spacing: 0.03em; transition: color 0.2s; font-family: var(--sans);
    }
    .event-toggle:hover { color: var(--plum); }
    .event-toggle svg { transition: transform 0.3s; flex-shrink: 0; }
    .event-toggle.open svg { transform: rotate(180deg); }
    .event-toggle.open { color: var(--plum); }
    /* Expand */
    .event-expand {
      max-height: 0; overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1);
    }
    .event-expand.open { border-top: 1px solid oklch(88% 0.01 80); }
    .event-expand-inner { padding: 20px 24px 24px; }
    .event-expand-block { margin-bottom: 16px; }
    .event-expand-block:last-child { margin-bottom: 0; }
    .event-expand-block h4 {
      font-family: var(--serif); font-size: 0.95rem; font-weight: 500; color: var(--plum);
      margin-bottom: 8px;
    }
    .event-expand-block ul { list-style: none; padding: 0; }
    .event-expand-block ul li {
      padding: 5px 0; border-bottom: 1px solid oklch(90% 0.01 80);
      font-size: 0.84rem; color: var(--text-mid); line-height: 1.6;
    }
    .event-expand-block ul li:last-child { border-bottom: none; }
    .event-expand-block ul li strong { color: var(--text); font-weight: 500; display: inline-block; min-width: 80px; }
    .event-expand-block p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.72; }
    @media (max-width: 1024px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) { .events-grid { grid-template-columns: 1fr; } }

    /* ─── Galéria ────────────────────────────────────────────── */
    #galeria { background: var(--bg-alt); }
    .gallery-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
    .gallery-older {
      max-height: 0; overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1);
      display: flex; flex-direction: column; gap: 2px;
    }
    .gallery-older.open { max-height: 1200px; }
    .gallery-showmore {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      width: 100%; padding: 16px; margin-top: 2px;
      background: var(--bg); border: none; border-radius: 10px; cursor: pointer;
      font-family: var(--sans); font-size: 0.85rem; font-weight: 500;
      color: var(--plum); letter-spacing: 0.04em;
      transition: background 0.2s;
    }
    .gallery-showmore:hover { background: oklch(100% 0 0 / 0.7); }
    .gallery-showmore svg { transition: transform 0.35s; }
    .gallery-showmore.open svg { transform: rotate(180deg); }
    .gallery-page-link {      display: inline-flex; align-items: center; gap: 6px;
      font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em;
      color: var(--plum); border-bottom: 1px solid oklch(70% 0.07 10 / 0.3);
      padding-bottom: 2px; transition: border-color 0.2s;
    }
    .gallery-page-link:hover { border-color: var(--plum); }

    /* Accordion events list */
    .gallery-accordion { display: flex; flex-direction: column; gap: 2px; }
    .gallery-event {
      background: var(--bg); border-radius: 10px; overflow: hidden;
      transition: box-shadow 0.25s;
    }
    .gallery-event.open { box-shadow: 0 6px 32px oklch(0% 0 0 / 0.07); }

    /* Row = clickable header */
    .gallery-event-row {
      display: flex; align-items: center; gap: 20px;
      padding: 20px 24px; cursor: pointer;
      transition: background 0.2s;
    }
    .gallery-event-row:hover { background: oklch(100% 0 0 / 0.7); }
    .gallery-event.open .gallery-event-row { background: oklch(100% 0 0 / 0.5); }

    .gallery-strip { display: flex; gap: 6px; flex-shrink: 0; }
    .gallery-strip-thumb {
      width: 72px; height: 72px; border-radius: 8px; overflow: hidden; flex-shrink: 0;
      background: var(--bg-dark);
    }
    .gallery-strip-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
    .gallery-strip-thumb:last-child { opacity: 0.6; }
    @media (max-width: 640px) {
      .gallery-strip-thumb { width: 56px; height: 56px; }
      .gallery-strip-thumb:nth-child(2),
      .gallery-strip-thumb:nth-child(3) { display: none; }
    }

    .gallery-event-info { flex: 1; min-width: 0; }
    .gallery-event-title {
      font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--plum);
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .gallery-event-meta {
      display: flex; gap: 14px; margin-top: 4px; flex-wrap: wrap;
    }
    .gallery-event-meta span {
      display: inline-flex; align-items: center; gap: 4px;
      font-size: 0.76rem; color: var(--text-lt); font-weight: 500;
    }
    .gallery-event-count {
      flex-shrink: 0; font-size: 0.75rem; color: var(--text-lt); white-space: nowrap;
    }
    .gallery-chevron {
      flex-shrink: 0; color: var(--text-lt); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    }
    .gallery-event.open .gallery-chevron { transform: rotate(180deg); }

    /* Expandable grid */
    .gallery-expand {
      max-height: 0; overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1);
    }
    .gallery-expand-inner {
      padding: 0 24px 24px;
    }
    .gallery-grid {
      display: grid; gap: 4px;
      grid-template-columns: repeat(4, 1fr);
    }
    .gallery-item {
      overflow: hidden; border-radius: 4px; background: var(--bg-dark);
      cursor: pointer; aspect-ratio: 1;
    }
    .gallery-item img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.5s cubic-bezier(0.25,0,0,1), filter 0.3s;
      filter: brightness(0.92);
    }
    .gallery-item img:hover { transform: scale(1.05); filter: brightness(1.05); }
    @media (max-width: 640px) {
      .gallery-grid { grid-template-columns: repeat(3, 1fr); }
      .gallery-event-row { gap: 12px; padding: 16px; }
    }

    /* ─── Lightbox ───────────────────────────────────────────── */
    .lightbox {
      display: none; position: fixed; inset: 0; z-index: 200;
      background: oklch(0% 0 0 / 0.9); align-items: center; justify-content: center;
      padding: 20px;
    }
    .lightbox.open { display: flex; }
    .lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 6px; }
    .lightbox-close {
      position: absolute; top: 20px; right: 28px;
      font-size: 2rem; color: #fff; cursor: pointer; opacity: 0.7; transition: opacity 0.2s;
      background: none; border: none; line-height: 1;
    }
    .lightbox-close:hover { opacity: 1; }

    /* ─── Kontakt ────────────────────────────────────────────── */
    #kontakt { background: var(--plum); padding-top: clamp(64px, 8vw, 120px); }
    #kontakt .section-label { color: var(--gold); }
    #kontakt .section-title { color: #fff; }
    .contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 420px); gap: clamp(40px, 7vw, 80px); align-items: start; margin-top: 0; }
    .contact-info p { color: oklch(80% 0.01 80); font-size: 1rem; line-height: 1.8; margin-bottom: 32px; margin-top: 24px; }
    .contact-detail { display: flex; flex-direction: column; gap: 16px; }
    .contact-item { display: flex; gap: 14px; align-items: flex-start; }
    .contact-item-icon {
      width: 40px; height: 40px; border-radius: 50%;
      background: oklch(100% 0 0 / 0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .contact-item-icon svg { color: var(--gold); }
    .contact-item-text { font-size: 0.9rem; color: oklch(85% 0.01 80); padding-top: 10px; }
    .contact-item-text strong { display: block; color: #fff; font-weight: 500; margin-bottom: 2px; }
    .contact-email { color: #fff; border-bottom: 1px solid oklch(68% 0.13 75 / 0.5); overflow-wrap: anywhere; transition: color 0.2s, border-color 0.2s; }
    .contact-email:hover { color: var(--gold); border-color: var(--gold); }
    .contact-card { background: oklch(100% 0 0 / 0.06); border-radius: 8px; padding: clamp(28px, 4vw, 40px); }
    .contact-card h3 { font-family: var(--serif); font-size: 1.5rem; color: #fff; margin-bottom: 16px; font-weight: 400; }
    .contact-card p { color: oklch(80% 0.01 80); font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; }
    .contact-button {
      display: inline-flex; align-items: center; justify-content: center;
      width: 100%; padding: 14px 20px; border-radius: 100px;
      background: var(--gold); color: var(--text); font-family: var(--sans); font-size: 0.9rem; font-weight: 500;
      letter-spacing: 0.04em; transition: opacity 0.2s, transform 0.15s;
    }
    .contact-button:hover { opacity: 0.9; transform: translateY(-1px); }
    .contact-note { display: block; margin-top: 14px; font-size: 0.82rem; color: oklch(78% 0.01 80); text-align: center; overflow-wrap: anywhere; }
    @media (max-width: 860px) {
      .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    }

    /* ─── Footer ─────────────────────────────────────────────── */
    footer {
      background: oklch(16% 0.04 12); color: oklch(55% 0.01 80);
      padding: 40px clamp(20px,5vw,60px);
    }
    .footer-inner {
      max-width: var(--max); margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    }
    .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
    .footer-links a { font-size: 0.8rem; color: oklch(45% 0.01 80); transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy { font-size: 0.78rem; text-align: right; }

    /* ─── Animations ─────────────────────────────────────────── */
    .fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up-delay-1 { transition-delay: 0.1s; }
    .fade-up-delay-2 { transition-delay: 0.2s; }
    .fade-up-delay-3 { transition-delay: 0.3s; }
