/* Hey Apple — Redesign Mockup 2026 */

:root {
  --green: #8ac017;
  --green-dark: #559d2b;
  --green-deep: #0f532e;
  --green-glow: rgba(138, 192, 23, 0.25);
  --bg: #0a0a0b;
  --bg-elevated: #121214;
  --bg-card: #18181b;
  --bg-card-hover: #1f1f23;
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  --header-h: 80px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --container: min(1200px, calc(100% - 3rem));
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }

a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: #a8d63a; }

.container { width: var(--container); margin-inline: auto; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--green);
  color: #000;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* ── Header ── */
.site-topbar {
  width: 100%;
  height: 100%;
}

.site-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

.site-header-row {
  position: fixed;
  inset: 0 0 auto;
  z-index: 130;
  height: var(--header-h);
  background: rgba(10, 10, 11, 0.35);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header-row.is-scrolled {
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
}

.nav-backdrop {
  display: none;
}

@media (min-width: 769px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: clamp(1rem, 4vw, 2rem);
    z-index: 131;
    height: var(--header-h);
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0;
    background: transparent;
    transform: none;
    box-shadow: none;
    border: 0;
    overflow: visible;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.brand:hover { color: var(--text); }
.brand-logo { width: 36px; height: auto; flex-shrink: 0; }
.brand--image { gap: 0; }
.brand-logo--full {
  width: auto;
  height: 44px;
  max-width: min(180px, 42vw);
  object-fit: contain;
}
.brand-text em { font-style: normal; color: var(--green); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover,
.nav-link.is-active { color: var(--text); background: rgba(255,255,255,0.06); }

.nav-link--cta {
  background: var(--green) !important;
  color: #0a0a0b !important;
  font-weight: 600;
}
.nav-link--cta:hover { background: #9ed42a !important; color: #000 !important; }

.lang-switch {
  display: flex;
  gap: 0.25rem;
  padding: 0.25rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
}

.lang {
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}
.lang:hover { color: var(--text); }
.lang.is-active { background: var(--green); color: #000; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: #0a0a0b;
  border-color: var(--green);
}
.btn-primary:hover {
  background: #9ed42a;
  border-color: #9ed42a;
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--green-glow);
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border-color: transparent;
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); color: var(--text); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 0 0;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1.15);
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 45%, rgba(10, 10, 11, 0.65) 0%, rgba(10, 10, 11, 0.28) 55%, rgba(10, 10, 11, 0.08) 100%),
    linear-gradient(180deg, rgba(10, 10, 11, 0.45) 0%, transparent 22%, transparent 88%, rgba(10, 10, 11, 0.35) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-copy {
  max-width: 680px;
  margin-inline: auto;
  padding: 1.5rem 0;
  text-align: center;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.5vw, 3.85rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-title-line {
  display: block;
  font-size: 0.72em;
  font-weight: 700;
  color: #f4f4f5;
}

.text-accent { color: var(--green); }

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(138, 192, 23, 0.14);
  border: 1px solid rgba(138, 192, 23, 0.28);
  border-radius: var(--radius-pill);
}

.hero-lead {
  margin: 0 auto 1.25rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.hero-chips li {
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}

.hero-chips strong {
  color: var(--green);
  font-weight: 800;
  margin-right: 0.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.scroll-hint {
  position: absolute;
  bottom: 11rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--text-dim);
  animation: bounce 2s infinite;
}
.scroll-hint:hover { color: var(--green); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Stats bar (inside hero) */
.stats-bar {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: auto;
  padding: 2rem 0 2.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 11, 0.5) 30%, rgba(10, 10, 11, 0.88) 100%);
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.25rem 1rem;
  background: rgba(24, 24, 27, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}

.stat-item:hover {
  border-color: rgba(138, 192, 23, 0.35);
  transform: translateY(-2px);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.reveal--left { transform: translateX(-32px); }
.reveal.reveal--right { transform: translateX(32px); }
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox[hidden] { display: none; }

.lightbox__figure {
  margin: 0;
  max-width: min(1100px, 92vw);
  max-height: 85vh;
}

.lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  margin-inline: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  border: 1px solid var(--border-strong);
  background: rgba(24, 24, 27, 0.85);
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}

.lightbox__close {
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.25rem;
}

.lightbox__nav--prev { left: 1.25rem; }
.lightbox__nav--next { right: 1.25rem; }

.lightbox__close:hover,
.lightbox__nav:hover {
  border-color: var(--green);
  color: var(--green);
}

.gallery-item { cursor: zoom-in; }

/* ── Sections ── */
.section {
  padding: 6rem 0;
}

.section--dark {
  background: var(--bg-elevated);
}

.section-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

.section-head { margin-bottom: 3rem; max-width: 640px; }
.section-head--center { text-align: center; margin-inline: auto; }

.section-head h2,
.split-content h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 280px;
}

.split-media img {
  display: block;
  width: 100%;
  height: 280px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius);
}

.media-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  padding: 0.6rem 1.1rem;
  background: rgba(10,10,11,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
}

.split-content p { color: var(--text-muted); margin: 0 0 1rem; }

.feature-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--text);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Repertoár */
.repertoire-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.rep-card {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.rep-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(138,192,23,0.3);
  transform: translateY(-3px);
}

.rep-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}

.rep-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.rep-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-dim);
}

.repertoire-note {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.service-card__img {
  display: block;
  width: 100%;
  height: 180px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 25%;
}

.service-card__body {
  padding: 1.75rem 2rem 2rem;
}

.service-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card--featured {
  border-color: rgba(138,192,23,0.35);
  background: linear-gradient(145deg, rgba(138,192,23,0.08) 0%, var(--bg-card) 60%);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  color: var(--green);
  background: rgba(138, 192, 23, 0.1);
  border-radius: var(--radius-sm);
}

.service-card__body h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
}

.service-card__body p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Reviews */
.reviews-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 min(380px, 85vw);
  scroll-snap-align: start;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stars {
  color: var(--green);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.review-card blockquote {
  margin: 0 0 1.25rem;
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.review-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}

.reviews-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.reviews-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
}
.reviews-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }

/* Video */
.video-block {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.video-featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card h3 {
  margin: 0.85rem 0 0;
  font-size: 1rem;
  font-weight: 600;
}

.video-shorts {
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.video-subtitle {
  margin: 0 0 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
}

.shorts-track {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}

.short-card {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: min(220px, 70vw);
}

.short-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
}

.short-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.short-card__title {
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
}

.video-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: rgba(138,192,23,0.92);
  color: #000;
  font-size: 1.25rem;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}
.play-btn:hover {
  transform: scale(1.08);
  background: var(--green);
}

/* Events */
.events-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 640px;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.event-item:hover { border-color: rgba(138,192,23,0.3); }

.event-item time {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  padding: 0.5rem;
  background: rgba(138,192,23,0.1);
  border-radius: var(--radius-sm);
}

.event-day {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.event-month {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.event-info strong {
  display: block;
  margin-bottom: 0.2rem;
}

.event-info span {
  font-size: 0.875rem;
  color: var(--text-dim);
}

/* Partners */
.section--partners {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partners-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 1.5rem;
}

.partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  filter: grayscale(1);
  transition: opacity var(--transition), filter var(--transition);
}

.partner-logo img {
  width: auto;
  max-width: 140px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* Contact */
.section--contact {
  background: var(--bg-elevated);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info > p { color: var(--text-muted); margin: 0 0 2rem; }

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-card {
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.contact-role {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.contact-card a {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.social-row {
  display: flex;
  gap: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
  overflow: hidden;
}

.social-link img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.social-link:hover {
  border-color: var(--green);
  background: rgba(138,192,23,0.08);
  transform: translateY(-2px);
}

/* Form */
.contact-form {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-row label span { color: var(--green); }

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
}

.form-row textarea { resize: vertical; min-height: 120px; }

.form-consent {
  margin: 0 0 1.25rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.form-errors {
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  color: #f87171;
}

.flash {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.flash--success {
  background: rgba(138, 192, 23, 0.12);
  border: 1px solid rgba(138, 192, 23, 0.35);
  color: var(--green);
}

.flash--error {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.35);
  color: #f87171;
}

.form-row--checkbox {
  display: none;
}

/* Footer */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.footer-brand p {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: var(--text-dim);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.footer-nav a:hover { color: var(--green); }

.footer-credit {
  margin: 0;
  text-align: right;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  transition: border-color var(--transition), background var(--transition);
}

.footer-social-link:hover {
  border-color: var(--green);
  background: rgba(140, 198, 63, 0.12);
}

.footer-social-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: min(720px, calc(100% - 2rem));
  padding: 1.25rem 1.5rem;
  background: rgba(24,24,27,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cookie-banner.is-hidden { display: none; }

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.cookie-inner h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.cookie-inner p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 420px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-left: auto;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .split,
  .contact-grid,
  .services-grid,
  .video-featured {
    grid-template-columns: 1fr;
  }

  .split { gap: 2.5rem; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand .footer-social {
    justify-content: center;
  }

  .footer-credit { text-align: center; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }

  .site-header-row {
    background: #0a0a0b;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  }

  .site-header-row.is-scrolled,
  .site-header-row.menu-open {
    background: #0a0a0b;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(5, 5, 6, 0.92);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition);
  }

  .nav-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .stat-item { padding: 1rem 0.75rem; }

  .brand-logo--full { height: 36px; }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(10, 10, 11, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  }

  .nav-toggle span {
    background: #fff;
  }

  .hero-overlay {
    background:
      radial-gradient(ellipse 100% 75% at 50% 45%, rgba(10, 10, 11, 0.72) 0%, rgba(10, 10, 11, 0.35) 100%),
      linear-gradient(180deg, rgba(10, 10, 11, 0.5) 0%, transparent 20%, transparent 85%, rgba(10, 10, 11, 0.4) 100%);
  }

  .stats-bar {
    padding: 1.5rem 0 2rem;
  }

  .split-media,
  .split-media img {
    max-height: 220px;
    height: 220px;
  }

  .service-card__img {
    height: 160px;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 140;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    height: auto;
    padding: 1.5rem 1.25rem 2rem;
    gap: 1.5rem;
    background: #0a0a0b;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }

  .main-nav.is-open { transform: translateX(0); }

  .main-nav ul {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #f4f4f5;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link:hover,
  .nav-link.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
  }

  .lang-switch {
    align-self: center;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .section { padding: 4rem 0; }

  .repertoire-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { margin-left: 0; justify-content: stretch; }
  .cookie-actions .btn { flex: 1; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .repertoire-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
}
