/* ============================================
   OUT OF THIN AIR — Components
   ============================================ */

/* === NAVIGATION === */
.site-nav {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
}

.site-nav-inner {
  display: flex; align-items: center;
  padding: 14px 40px 6px;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.site-nav-logo {
  position: absolute; top: 4px; left: 40px; z-index: 201;
  overflow: visible;
}

.site-nav-logo img {
  height: 70px; width: auto;
}

.site-nav-links {
  display: flex; align-items: center;
  justify-content: center;
  gap: 40px;
  padding-left: 180px;
  width: 100%;
  list-style: none;
}

.site-nav-links a {
  color: rgba(0, 238, 255, 0.6);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.5px;
  display: inline-block;
  transform: scale(0.95);
  transform-origin: center center;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.site-nav-links a:hover {
  color: #00eeff;
  transform: scale(1.15);
  text-shadow: 0 0 10px rgba(0, 238, 255, 0.8), 0 0 30px rgba(0, 238, 255, 0.4), 0 0 60px rgba(0, 238, 255, 0.2);
}

.site-nav-links a.active {
  color: rgba(0, 238, 255, 0.7);
}

.site-nav-lang {
  display: flex; gap: 8px;
  font-size: 12px;
  margin-left: auto;
}

.site-nav-lang a {
  color: var(--color-muted);
  transition: color 0.3s;
}

.site-nav-lang a:hover,
.site-nav-lang a.active {
  color: var(--color-white);
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 8px;
  z-index: 202;
}

.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--color-white);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
  animation: hamburger-pulse 2s ease-in-out infinite;
}
.nav-toggle span:nth-child(2) { animation-delay: 0.3s; }
.nav-toggle span:nth-child(3) { animation-delay: 0.6s; }

@keyframes hamburger-pulse {
  0%, 100% { background: #fff; box-shadow: 0 0 4px rgba(255,255,255,0.5); }
  50% { background: #00d2d3; box-shadow: 0 0 8px rgba(0,210,211,0.6); }
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.nav-mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 28px;
  transition: color 0.3s;
}

.nav-mobile-menu a:hover { color: var(--color-cyan); }

.nav-mobile-lang {
  display: flex; gap: 16px;
  margin-top: 20px;
  font-size: 14px;
}

.nav-mobile-lang a { color: var(--color-muted); }
.nav-mobile-lang a.active { color: var(--color-white); }

/* === HERO VIDEO === */
.hero {
  position: relative; width: 100vw; height: 55vh;
  overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
  background: #000;
}

.hero iframe {
  position: absolute; top: 50%; left: 50%;
  width: 200vh; min-width: 120%; height: 120vh; min-height: 120%;
  transform: translate(-50%, -50%);
  border: 0; pointer-events: none;
  z-index: 1; opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero iframe.active { opacity: 1; z-index: 2; }

.hero-mirror {
  position: absolute; top: 50%; left: 50%;
  width: 300vh; min-width: 250%; height: 120vh; min-height: 120%;
  transform: translate(-50%, -50%) scaleX(-1);
  border: 0; pointer-events: none;
  z-index: 0; opacity: 0;
  filter: blur(4px);
  transition: opacity 0.8s ease-in-out;
}
.hero-mirror.active { opacity: 1; }

@media (max-width: 1200px) {
  .hero-mirror { display: none; }
}

.hero-fallback {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2; text-align: center; padding: 20px 20px 25px;
}

.hero h1 {
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.tagline-bar {
  text-align: center; padding: 20px var(--gap);
  font-family: var(--font-body);
  font-size: 17px; color: var(--color-cyan); font-style: italic;
  letter-spacing: 1px;
}

/* === INTRO SECTION === */
.intro {
  max-width: 900px; margin: 60px auto; padding: 0 var(--gap);
  border-left: 3px solid var(--color-cyan); padding-left: 30px;
}

.intro-label {
  font-size: 11px; letter-spacing: 2px; color: var(--color-cyan);
  text-transform: uppercase; margin-bottom: 10px;
}

.intro p {
  font-size: 17px; line-height: 1.7;
}

/* === DIVIDER === */
.section-divider { text-align: center; padding: 50px 0 30px; }

.section-divider span {
  font-size: 11px; letter-spacing: 4px; color: var(--color-cyan);
  text-transform: uppercase;
}

.section-divider::after {
  content: ''; display: block; width: 60px; height: 2px;
  background: var(--color-cyan); margin: 10px auto 0;
}

/* === FEATURED ACT CARD === */
.featured-act {
  display: flex; gap: var(--gap); align-items: center;
  max-width: var(--max-width); margin: 30px auto; padding: 30px var(--gap);
  background: var(--color-card); border-radius: 16px;
}

.featured-act-reverse { flex-direction: row-reverse; }

.featured-act-visual {
  flex: 1.3;
  background: linear-gradient(135deg, #1a1a2e, #222);
  border-radius: 12px; min-height: 280px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.featured-act-visual img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 12px;
}

/* Multi-image crossfade — first image in flow sets height, rest overlay */
.crossfade { position: relative; width: 100%; }

.crossfade img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 12px;
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.crossfade img:first-child { position: relative; }
.crossfade img.cf-active { opacity: 1; }

.featured-act-info { flex: 1; }

.featured-act-tag {
  font-size: 11px; color: var(--color-cyan); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 10px;
}

.featured-act h2 { margin-bottom: 12px; }

.featured-act-desc {
  color: var(--color-muted); font-family: var(--font-body);
  font-size: 15px; line-height: 1.6; margin-bottom: 20px;
}

/* === CTA BUTTONS === */
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.cta-wa {
  background: var(--color-green); color: var(--color-white);
  padding: 10px 22px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.cta-connect {
  background: transparent; color: var(--color-cyan);
  padding: 10px 22px; border-radius: 8px;
  font-size: 14px; border: 1px solid var(--color-cyan);
  transition: background 0.3s, transform 0.2s;
}

.cta-connect:hover {
  background: rgba(0,210,211,0.1);
  transform: translateY(-2px);
}

/* === GRID === */
.grid-section {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 var(--gap) var(--gap);
}

.grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.grid-card {
  background: var(--color-card2); border-radius: 12px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,210,211,0.12);
}

/* === PORTFOLIO SLOT SYSTEM — clean room from WP snippet #50 === */
/* Grid layout */
.pf-grid { display: grid; gap: 20px; margin: 10px auto 30px; max-width: 1200px; padding: 0 15px; }
.pf-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.pf-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

/* Slot base */
.pf-slot {
  position: relative; aspect-ratio: 4/3; border-radius: 6px;
  overflow: hidden; background: #1a1a1a; cursor: pointer;
  transition: transform 0.4s ease, z-index 0s 0.4s;
}

/* Transform origins — 3-col */
.pf-grid.cols-3 .pf-slot:nth-child(1) { transform-origin: left center; }
.pf-grid.cols-3 .pf-slot:nth-child(2) { transform-origin: center center; }
.pf-grid.cols-3 .pf-slot:nth-child(3) { transform-origin: right center; }
/* Transform origins — 2-col */
.pf-grid.cols-2 .pf-slot:nth-child(1) { transform-origin: left center; }
.pf-grid.cols-2 .pf-slot:nth-child(2) { transform-origin: right center; }

/* Images — absolute stacked for crossfade */
.pf-slot img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s ease;
}
.pf-slot img.pf-active { opacity: 1; }

/* Caption overlay */
.pf-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 40px 14px 12px; z-index: 2;
  opacity: 0; transition: opacity 0.4s ease, transform 0.4s ease;
}
.pf-caption .pf-title { font-weight: 600; font-size: 14px; color: #fff; }
.pf-caption .pf-meta { font-size: 12px; color: #aaa; margin-top: 3px; }

/* Hover: only on devices with a real pointer (not touch) */
@media (hover: hover) {
  .pf-grid:hover .pf-slot:not(:hover) {
    transform: scale(0.9); opacity: 0.5;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  .pf-grid.cols-3:has(.pf-slot:nth-child(1):hover) .pf-slot:nth-child(2) { transform: scale(0.9) translateX(8%); transform-origin: right center; }
  .pf-grid.cols-3:has(.pf-slot:nth-child(1):hover) .pf-slot:nth-child(3) { transform: scale(0.9) translateX(3%); transform-origin: right center; }
  .pf-grid.cols-3:has(.pf-slot:nth-child(3):hover) .pf-slot:nth-child(2) { transform: scale(0.9) translateX(-8%); transform-origin: left center; }
  .pf-grid.cols-3:has(.pf-slot:nth-child(3):hover) .pf-slot:nth-child(1) { transform: scale(0.9) translateX(-3%); transform-origin: left center; }
  .pf-grid.cols-3:has(.pf-slot:nth-child(2):hover) .pf-slot:nth-child(1) { transform: scale(0.9) translateX(-5%); transform-origin: left center; }
  .pf-grid.cols-3:has(.pf-slot:nth-child(2):hover) .pf-slot:nth-child(3) { transform: scale(0.9) translateX(5%); transform-origin: right center; }
  .pf-grid.cols-2:has(.pf-slot:nth-child(1):hover) .pf-slot:nth-child(2) { transform: scale(0.9) translateX(6%); transform-origin: right center; }
  .pf-grid.cols-2:has(.pf-slot:nth-child(2):hover) .pf-slot:nth-child(1) { transform: scale(0.9) translateX(-6%); transform-origin: left center; }
  .pf-slot:hover {
    transform: scale(1.5); z-index: 20; overflow: visible;
    transition: transform 0.4s ease, z-index 0s 0s;
  }
  .pf-grid.cols-2 .pf-slot:hover { transform: scale(1.3); }
  .pf-grid.portrait-grid .pf-slot:hover { transform: scale(1.01); }
}
.pf-slot:hover img.pf-active { transform: scale(1.03); transition: transform 0.3s, opacity 1s ease; }
.pf-slot:hover .pf-caption {
  opacity: 1; transform: translateY(100%);
  background: rgba(0,0,0,0.9); padding: 8px 14px;
}

/* Video slots */
.pf-slot.pf-video { aspect-ratio: 16/9; }
.pf-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70px; height: 70px; border-radius: 50%;
  border: 3px solid #28f7ff; background: rgba(0,0,0,0.6);
  z-index: 3; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.pf-play-btn::after {
  content: ""; display: block;
  border-style: solid; border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent #28f7ff;
  margin-left: 4px;
}
.pf-slot:hover .pf-play-btn {
  background: rgba(40,247,255,0.25);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Video slot label */
.pf-slot-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding: 50px 16px 14px; z-index: 2;
  opacity: 0; transition: opacity 0.4s ease, transform 0.4s ease;
}
.pf-slot-label .pf-label-title {
  font-weight: 700; font-size: 15px; color: #fff;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.pf-slot-label .pf-label-desc { font-size: 12px; color: #999; margin-top: 4px; font-style: italic; }
.pf-slot:hover .pf-slot-label {
  opacity: 1; transform: translateY(100%);
  background: rgba(0,0,0,0.9); padding: 8px 16px;
}

/* Lightbox — photos */
.pf-lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95);
  z-index: 9999; display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.pf-lightbox.active { display: flex; opacity: 1; }
.pf-lightbox img {
  max-width: 90vw; max-height: 85vh; object-fit: contain;
  border-radius: 4px; box-shadow: 0 0 60px rgba(0,0,0,0.5);
}
.pf-lb-caption {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%); text-align: center; color: #fff;
}
.pf-lb-caption .pf-title { font-size: 16px; font-weight: 600; }
.pf-lb-caption .pf-meta { font-size: 13px; color: #aaa; margin-top: 4px; }
.pf-lb-close {
  position: absolute; top: 20px; right: 24px;
  color: #fff; font-size: 28px; cursor: pointer;
  opacity: 0.6; transition: opacity 0.2s;
  background: none; border: none; z-index: 10;
}
.pf-lb-close:hover { opacity: 1; }
.pf-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 36px; cursor: pointer;
  opacity: 0.4; transition: opacity 0.2s;
  background: none; border: none; padding: 20px; z-index: 10;
}
.pf-lb-nav:hover { opacity: 0.9; }
.pf-lb-prev { left: 10px; }
.pf-lb-next { right: 10px; }
.pf-lb-counter { position: absolute; top: 24px; left: 24px; color: #aaa; font-size: 13px; }

/* Lightbox — video */
.pf-vd-lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95);
  z-index: 9999; display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.pf-vd-lightbox.active { display: flex; opacity: 1; }
.pf-vd-wrap { position: relative; width: 90vw; max-width: 1200px; aspect-ratio: 16/9; }
.pf-vd-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: 4px; }
.pf-vd-lightbox .pf-lb-close {
  position: absolute; top: 20px; right: 24px;
  color: #fff; font-size: 28px; cursor: pointer;
  opacity: 0.6; transition: opacity 0.2s;
  background: none; border: none; z-index: 10;
}
.pf-vd-lightbox .pf-lb-close:hover { opacity: 1; }

/* Portrait crop control — data-fit attribute */
.pf-slot img[data-fit="top"]    { object-position: center 20%; }
.pf-slot img[data-fit="center"] { object-position: center 50%; }
.pf-slot img[data-fit="bottom"] { object-position: center 80%; }
.pf-slot img[data-fit="left"]   { object-position: 20% center; }
.pf-slot img[data-fit="right"]  { object-position: 80% center; }

/* Portrait grid — taller aspect ratio for art installations */
.pf-grid.portrait-grid .pf-slot { aspect-ratio: 3/4; }

/* Mobile */
@media (max-width: 768px) {
  .pf-grid.cols-3, .pf-grid.cols-2 { grid-template-columns: 1fr; }
  .pf-slot { aspect-ratio: 16/10; }
  .pf-slot.pf-video { aspect-ratio: 16/9; }
  .pf-slot:hover { transform: none; z-index: auto; overflow: hidden; }
  .pf-grid:hover .pf-slot:not(:hover) { transform: none; opacity: 1; }
  .pf-grid.portrait-grid { grid-template-columns: 1fr; }
  .pf-grid.portrait-grid .pf-slot { aspect-ratio: 3/4; }
}

/* ═══════════════════════════════════════════════════════
   Portrait Pair — Strategic portrait placement
   Variant A (.portrait-pair): two photos, 40px gap
   Variant C (.portrait-pair.featured): spacer with animated text
   ═══════════════════════════════════════════════════════ */

/* Base grid */
.portrait-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Slot — portrait container */
.portrait-pair .pp-slot {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}

.portrait-pair .pp-slot img {
  width: 100%;
  height: 100%;
  /* object-fit: cover + 3:4 slot = no cropping when portrait photos are used.
     Ratios match perfectly, so photos fill without stretching or letterboxing. */
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Hover removed per Micha's feedback — not needed on portrait pairs */

/* Overlay — gradient at bottom */
.portrait-pair .pp-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

/* Name label */
.portrait-pair .pp-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 32px);
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

/* ── Variant C: Featured (with spacer) ── */
.portrait-pair.featured {
  grid-template-columns: 1fr 180px 1fr;
  gap: 0;
}

/* Spacer column */
.pp-spacer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
  position: relative;
}

/* Cascading act name letters */
.cascade-letter {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(14px, 1.5vw, 24px);
  color: rgba(0, 210, 211, 0.15);
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.12em;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.cascade-letter.lit {
  color: #00d2d3;
  text-shadow: 0 0 12px rgba(0, 210, 211, 0.5), 0 0 24px rgba(0, 210, 211, 0.2);
}

/* Floating client names */
.float-name {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(8px, 0.8vw, 14px);
  color: rgba(0, 210, 211, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  white-space: nowrap;
  opacity: 0;
  /* Animation driven by JS */
  transition: opacity 0.4s ease;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .portrait-pair,
  .portrait-pair.featured {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pp-spacer { display: none; }

  .portrait-pair .pp-slot { aspect-ratio: 3/4; }

  .portrait-pair .pp-slot img { transform-origin: center center; }

  .portrait-pair .pp-name {
    font-size: clamp(20px, 5vw, 28px);
  }
}

/* Mobile landscape prompt */
.pf-rotate-prompt {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
}
.pf-rotate-inner { text-align: center; padding: 40px; color: #fff; }
.pf-rotate-icon { font-size: 48px; margin-bottom: 20px; animation: pf-rotate-wiggle 2s ease-in-out infinite; }
.pf-rotate-inner p { font-size: 16px; margin-bottom: 16px; color: #ccc; }
.pf-fullscreen-btn {
  background: #00d2d3; color: #000; border: none;
  padding: 12px 24px; border-radius: 8px; font-size: 15px;
  font-weight: 600; cursor: pointer; display: block; margin: 0 auto 16px;
}
.pf-rotate-dismiss { font-size: 12px; color: #666; cursor: pointer; }
@keyframes pf-rotate-wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-15deg); }
  75% { transform: rotate(90deg); }
}

.grid-thumb {
  background: linear-gradient(135deg, #1a1a2e, #222);
  height: 220px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.grid-thumb img { width: 100%; height: 100%; object-fit: cover; }

.grid-body { padding: 20px; }
.grid-body h3 { margin-bottom: 8px; }

.grid-body .card-desc {
  color: #888; font-family: var(--font-body);
  font-size: 14px; line-height: 1.6; margin-bottom: 14px;
}

.card-link {
  font-size: 14px; color: var(--color-cyan); text-decoration: none;
  transition: letter-spacing 0.3s; cursor: pointer;
}
.grid-card:hover .card-link { letter-spacing: 1px; }

/* Expand-on-hover detail */
.card-expand {
  max-height: 0; padding: 0 16px; opacity: 0; overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.3s ease-out;
  border-top: 1px solid #222;
}

.grid-card:hover .card-expand,
.grid-card.expanded .card-expand {
  max-height: 200px; padding: 12px 16px; opacity: 1;
}

.card-expand .card-desc-full {
  color: var(--color-muted); font-size: 13px; line-height: 1.6; margin-bottom: 12px;
}

/* === GRID CTA CARDS === */
.cta-card {
  border-radius: 12px; padding: 24px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
  min-height: 280px;
}

.cta-card:hover { transform: translateY(-6px); }

.cta-card-wa {
  background: linear-gradient(135deg, #1a3a2a, #0d2818);
  border: 1px solid rgba(37,211,102,0.25);
}
.cta-card-wa:hover { box-shadow: 0 12px 40px rgba(37,211,102,0.15); }

.cta-card-connect {
  background: linear-gradient(135deg, #0a2a2a, #0d1828);
  border: 1px solid rgba(0,210,211,0.2);
}
.cta-card-connect:hover { box-shadow: 0 12px 40px rgba(0,210,211,0.15); }

.cta-card .cta-icon { font-size: 36px; margin-bottom: 14px; }
.cta-card h3 { font-size: 20px; margin-bottom: 8px; }
.cta-card-wa h3 { color: var(--color-green); }
.cta-card-connect h3 { color: var(--color-cyan); }
.cta-card p { font-size: 13px; color: #999; line-height: 1.5; margin-bottom: 16px; }

.cta-card .cta-btn {
  padding: 10px 24px; border-radius: 8px; font-size: 14px;
  font-weight: 600; display: inline-block; transition: transform 0.2s;
}

.cta-card:hover .cta-btn { transform: scale(1.05); }
.cta-card-wa .cta-btn { background: var(--color-green); color: var(--color-white); }
.cta-card-connect .cta-btn { background: transparent; color: var(--color-cyan); border: 1px solid var(--color-cyan); }

.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; margin-bottom: 12px;
  animation: pulse-dot 2s ease-in-out infinite;
}

.cta-card-wa .pulse-dot { background: var(--color-green); box-shadow: 0 0 12px rgba(37,211,102,0.5); }
.cta-card-connect .pulse-dot { background: var(--color-cyan); box-shadow: 0 0 12px rgba(0,210,211,0.5); }

/* === BOTTOM CTA === */
.bottom-cta {
  max-width: var(--max-width); margin: 40px auto; padding: 50px var(--gap);
  background: linear-gradient(135deg, #0a2a2a, #1a1a2e);
  border-radius: 16px; text-align: center;
  border: 1px solid rgba(0,210,211,0.12);
  position: relative; overflow: hidden;
}

.bottom-cta::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(0,210,211,0.06), transparent 50%);
  animation: pulse-glow 4s ease-in-out infinite;
}

.bottom-cta h2 { font-size: 28px; margin-bottom: 10px; position: relative; }
.bottom-cta p { color: var(--color-muted); font-size: 15px; margin-bottom: 24px; position: relative; }
.bottom-cta .cta-row { justify-content: center; position: relative; }

/* === FAQ ACCORDION === */
.faq-list {
  max-width: 900px; margin: 0 auto;
  padding: 10px 0 40px;
}

.faq-item {
  border-bottom: 1px solid #333;
  padding: 0;
  border-left: 3px solid transparent;
  margin-bottom: 5px;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-left-color: var(--color-cyan);
}

.faq-question {
  width: 100%; background: none; border: none;
  color: var(--color-white); font-family: var(--font-body);
  font-size: 16px; font-weight: 400;
  padding: 20px 40px 20px 16px;
  text-align: left; cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--color-cyan); }

.faq-question::after {
  content: '+'; position: absolute; right: 12px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px; color: var(--color-cyan);
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-item.open .faq-question {
  color: var(--color-cyan);
}

.faq-item.open .faq-question::after {
  content: '\2212';
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-answer-inner {
  padding: 0 16px 20px;
  color: #ccc;
  font-size: 15px; line-height: 1.7;
}

.faq-answer-inner a {
  color: var(--color-cyan);
  transition: opacity 0.3s;
}

.faq-answer-inner a:hover { opacity: 0.7; }

.faq-item.open .faq-answer { max-height: 800px; }

/* === VIDEO LIGHTBOX === */
.video-lightbox {
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.video-lightbox.active { opacity: 1; }

.video-lightbox-inner {
  position: relative;
  width: 90vw; max-width: 1000px;
  cursor: default;
}

.video-lightbox-close {
  position: absolute; top: -40px; right: 0;
  background: none; border: none;
  color: var(--color-white); font-size: 32px;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}

.video-lightbox-close:hover { color: var(--color-cyan); }

.video-lightbox-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0; overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.video-lightbox-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* === VIDEO GRID — 16:9 aspect ratio for video thumbnails === */
.grid-card[data-vimeo] .grid-thumb {
  aspect-ratio: 16 / 9;
  position: relative;
}

.grid-card[data-vimeo] .grid-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Play button hover effect */
.grid-card[data-vimeo]:hover .grid-thumb > div:last-child > div {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0,210,211,0.4);
}

/* === FOOTER === */
.site-footer {
  border-top: 1px solid #1a1a1a;
  padding: 40px var(--gap) 30px;
  text-align: center;
}

.footer-social {
  display: flex; justify-content: center; gap: 20px;
  margin-bottom: 20px;
}

.footer-social a {
  color: var(--color-muted);
  font-size: 20px;
  min-width: 44px; min-height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color 0.3s, transform 0.2s;
}

.footer-social a:hover {
  color: var(--color-cyan);
  transform: translateY(-2px);
}

.footer-nav {
  display: flex; justify-content: center; gap: 24px;
  margin-bottom: 16px;
  list-style: none;
}

.footer-nav a {
  color: var(--color-muted); font-size: 13px;
  min-height: 44px; display: inline-flex; align-items: center;
  transition: color 0.3s;
}

.footer-nav a:hover { color: var(--color-white); }

.footer-lang {
  display: flex; justify-content: center; gap: 12px;
  margin-bottom: 16px;
}

.footer-lang a {
  color: var(--color-muted); font-size: 12px;
  transition: color 0.3s;
}

.footer-lang a.active { color: var(--color-white); }

.footer-copy {
  color: #555; font-size: 12px;
}

/* === WHATSAPP FLOATING BUTTON === */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@media (max-width: 768px) {
  .wa-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
  .wa-float svg {
    width: 28px;
    height: 28px;
  }
}

/* === HOMEPAGE: OVERVIEW GRID === */
.overview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  padding-top: 40px; padding-bottom: 40px;
}

.overview-card {
  background: var(--color-card); border-radius: 12px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.overview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,210,211,0.12);
}

.overview-card-img { overflow: hidden; position: relative; padding-bottom: 100%; }
.overview-card-img a { position: absolute; inset: 0; display: block; }
.overview-card-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.overview-card h2 {
  padding: 20px 20px 8px;
  font-size: 24px;
}

.overview-card h2 a { transition: color 0.3s; }
.overview-card h2 a:hover { color: var(--color-cyan); }

.overview-card p {
  padding: 0 20px; font-size: 14px; line-height: 1.6;
  color: var(--color-muted);
}

.overview-card .card-link {
  display: block; padding: 16px 20px;
  font-size: 14px; color: var(--color-cyan);
}

/* === HOMEPAGE: CONNECT BANNER === */
.connect-banner {
  display: flex; gap: 30px; align-items: center;
  max-width: var(--max-width); margin: 20px auto; padding: 0 var(--gap);
}

.connect-banner-img {
  flex: 1; border-radius: 12px; overflow: hidden; max-height: 300px;
}

.connect-banner-img img { width: 100%; height: 100%; object-fit: cover; }

.connect-banner-content { flex: 1; }
.connect-banner-content h2 { margin-bottom: 12px; }
.connect-banner-content h2 a { transition: color 0.3s; }
.connect-banner-content h2 a:hover { color: var(--color-cyan); }
.connect-banner-content p { color: var(--color-muted); font-size: 15px; line-height: 1.6; margin-bottom: 16px; }

/* === HOMEPAGE: TRUSTED BY === */
.trusted-section {
  max-width: var(--max-width); margin: 40px auto; padding: 40px var(--gap);
  text-align: center;
}

.trusted-section h2 {
  font-size: 14px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--color-muted); margin-bottom: 24px; font-family: var(--font-body);
}

.trusted-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px;
}

.trusted-name {
  font-size: 14px; color: #555;
  transition: color 0.3s;
  cursor: default;
}

.trusted-name:hover { color: var(--color-cyan); }

/* === CONTACT OPTIONS === */
.contact-options {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  align-items: start;
}

.contact-details {
  padding: 30px;
  background: var(--color-card); border-radius: 12px;
}

.contact-details p {
  margin-bottom: 12px; font-size: 15px;
}

/* === CONNECT PAGE: FORM + LAYOUT === */
.connect-form {
  max-width: 600px; margin: 0 auto;
}

.connect-form h2 {
  font-family: var(--font-display); font-size: 26px; font-weight: 300;
  font-style: italic; letter-spacing: 0.03em;
  margin-bottom: 28px; text-align: center;
  color: var(--color-white);
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block; font-size: 11px; color: rgba(255,255,255,0.5);
  margin-bottom: 6px; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 400;
}

.form-field input,
.form-field textarea {
  width: 100%; padding: 14px 18px;
  background: transparent; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; color: var(--color-white);
  font-family: var(--font-body); font-size: 15px; font-weight: 300;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--color-cyan);
  box-shadow: 0 0 15px rgba(0,210,211,0.15);
}

.form-field textarea { min-height: 180px; resize: vertical; }

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,0.25); font-weight: 300;
}

/* Company info — subtle centered text, no card */
.connect-info {
  text-align: center; max-width: 500px; margin: 0 auto;
  padding: 0;
}

.connect-info .ci-company {
  font-family: var(--font-display); font-size: 18px; font-weight: 400;
  font-style: italic; color: var(--color-white);
  margin-bottom: 6px; letter-spacing: 0.02em;
}

.connect-info .ci-address {
  font-size: 13px; color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em; margin-bottom: 4px;
}

.connect-info .ci-phone a {
  font-size: 13px; color: var(--color-cyan);
  text-decoration: none; letter-spacing: 0.06em;
  transition: color 0.3s;
}

.connect-info .ci-phone a:hover {
  color: var(--color-white);
}

/* === QUICK CONTACT BUTTONS (compact pill style, staggered entrance) === */
.quick-contact {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin: 30px auto 40px; max-width: 700px;
}

.qc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  color: var(--color-white);
  font-family: var(--font-body); font-size: 13px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: transparent;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s, transform 0.2s, box-shadow 0.3s;
}

/* Staggered entrance delays */
.quick-contact .qc-btn:nth-child(1) { transition-delay: 0s; }
.quick-contact .qc-btn:nth-child(2) { transition-delay: 0.12s; }
.quick-contact .qc-btn:nth-child(3) { transition-delay: 0.24s; }
.quick-contact .qc-btn:nth-child(4) { transition-delay: 0.36s; }
.quick-contact .qc-btn:nth-child(5) { transition-delay: 0.48s; }

.quick-contact.visible .qc-btn {
  opacity: 1; transform: translateY(0);
}

.qc-btn:hover {
  background: var(--color-cyan); color: #000;
  border-color: var(--color-cyan);
  box-shadow: 0 0 25px rgba(0,210,211,0.3);
}

.qc-btn.qc-wa {
  border-color: rgba(255,255,255,0.3); color: var(--color-white);
  background: transparent;
}

.qc-btn.qc-wa:hover {
  background: var(--color-green); border-color: var(--color-green);
  box-shadow: 0 0 25px rgba(37,211,102,0.3); color: #fff;
}

/* === TYPE SELECTOR (anti-spam step 1) === */
.type-label {
  font-size: 11px; color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em; text-transform: uppercase;
  text-align: center; margin-bottom: 16px;
}

.type-selector {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-bottom: 32px;
}

.type-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: var(--color-white);
  font-family: var(--font-body); font-size: 14px; font-weight: 400;
  letter-spacing: 0.08em;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.type-btn:hover {
  border-color: var(--color-cyan);
  box-shadow: 0 0 20px rgba(0,210,211,0.15);
  transform: scale(1.03);
}

.type-btn.active {
  background: var(--color-cyan); color: #000;
  border-color: var(--color-cyan);
  box-shadow: 0 0 25px rgba(0,210,211,0.3);
}

/* === CHALLENGE AREA (anti-spam step 2) === */
.challenge-area {
  max-width: 600px; margin: 0 auto 24px;
  animation: fadeSlideIn 0.3s ease-out;
}

.challenge-buttons {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px;
}

.challenge-btn {
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: var(--color-white);
  font-family: var(--font-body); font-size: 13px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.challenge-btn:hover {
  border-color: var(--color-cyan);
}

.challenge-btn.active {
  background: var(--color-cyan); color: #000;
  border-color: var(--color-cyan);
}

.challenge-input {
  width: 100%; padding: 14px 18px;
  background: transparent; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; color: var(--color-white);
  font-family: var(--font-body); font-size: 15px; font-weight: 300;
  transition: border-color 0.3s, box-shadow 0.3s;
  margin-top: 8px;
}

.challenge-input:focus {
  outline: none; border-color: var(--color-cyan);
  box-shadow: 0 0 15px rgba(0,210,211,0.15);
}

.challenge-input::placeholder {
  color: rgba(255,255,255,0.25);
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE: CONNECT === */
@media (max-width: 600px) {
  .quick-contact { gap: 8px; margin: 20px 15px 30px; }
  .qc-btn { padding: 9px 16px; font-size: 12px; gap: 6px; letter-spacing: 0.08em; }
  .qc-btn svg { width: 15px; height: 15px; }
  .connect-form { margin: 0 15px; }
  .connect-form h2 { font-size: 22px; }
  .connect-info { margin: 0 15px; }
  .btn-submit { padding: 12px 40px; }
  .type-selector { gap: 8px; }
  .type-btn { padding: 10px 16px; font-size: 12px; }
  .challenge-buttons { gap: 6px; }
  .challenge-btn { padding: 8px 14px; font-size: 12px; }
}

/* === RESPONSIVE: HOMEPAGE === */
@media (max-width: 900px) {
  .overview-grid { grid-template-columns: 1fr; }
  .connect-banner { flex-direction: column; }
  .contact-options { grid-template-columns: 1fr; }
}

/* === SHIMMER PLACEHOLDER === */
.shimmer {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  color: #555; font-size: 14px;
}

.shimmer::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(0,210,211,0.06) 50%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

/* === RESPONSIVE — TABLET === */
@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}

/* === RESPONSIVE — SMALL TABLET === */
@media (max-width: 900px) {
  .featured-act, .featured-act-reverse { flex-direction: column !important; }
  .featured-act-visual { width: 100%; min-height: 200px; }
  .featured-act { padding: 20px; gap: 20px; margin: 15px 10px; }
  .featured-act-desc { font-size: 14px; }
  .intro { margin: 40px auto; padding: 0 20px; padding-left: 20px; }
  .grid-section { padding: 0 15px 40px; }
  .section-divider { padding: 35px 0 20px; }

  .site-nav-links { display: none; }
  .site-nav-lang { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
}

/* === RESPONSIVE — MOBILE === */
@media (max-width: 600px) {

  /* Hero: taller, video fills height */
  .hero { min-height: 75vh; }
  .hero iframe {
    width: 300vw !important; min-width: 300vw !important;
    height: 100vh !important; min-height: 100% !important;
  }
  .tagline-bar { font-size: 14px; padding: 15px 20px; }

  /* Intro compact */
  .intro { margin: 25px 15px; padding: 0; padding-left: 15px; border-left-width: 2px; }
  .intro p { font-size: 15px; }
  .section-divider { padding: 30px 0 20px; }
  .section-divider span { font-size: 18px; letter-spacing: 3px; }

  /* Featured acts — full width photos, no card boxing */
  .featured-act {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 0 30px 0 !important;
    gap: 0 !important;
  }
  .featured-act-visual {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    min-height: auto !important; height: auto !important;
    border-radius: 0 !important;
  }
  .featured-act-visual img {
    width: 100% !important; height: auto !important;
    object-fit: contain !important; border-radius: 0 !important;
  }
  .featured-act-info { padding: 15px 20px 0; }
  .featured-act-tag { font-size: 10px; margin-bottom: 6px; }
  .featured-act-desc { font-size: 14px; line-height: 1.5; margin-bottom: 12px; }

  .cta-row {
    gap: 8px; display: flex !important;
    justify-content: space-between !important; width: 100%;
  }
  .cta-wa { font-size: 13px; padding: 10px 16px; flex: 1; justify-content: center; }
  .cta-connect {
    font-size: 13px; padding: 10px 16px; flex: 1; text-align: center;
    background: var(--color-cyan) !important; color: #000 !important;
    border: none !important; font-weight: 600;
  }

  /* Grid — full width, no card boxing */
  .grid { grid-template-columns: 1fr !important; gap: 0 !important; }
  .grid-section { padding: 0 !important; }
  .grid-card {
    background: transparent !important;
    border-radius: 0 !important; margin-bottom: 25px;
  }
  .grid-card:hover { transform: none !important; box-shadow: none !important; }
  .grid-thumb {
    height: auto !important; border-radius: 0 !important;
    width: 100vw; margin-left: calc(-50vw + 50%);
  }
  .grid-thumb img { width: 100% !important; height: auto !important; object-fit: contain !important; }
  .grid-body { padding: 12px 20px !important; }

  /* Hide "More info" — show full description + CTA's directly */
  .card-link { display: none !important; }
  .grid-body .card-desc { display: none !important; }
  .card-expand {
    max-height: none !important; padding: 0 20px 5px !important;
    opacity: 1 !important; border-top: none !important;
  }
  .card-expand .card-desc-full { font-size: 14px; }

  /* CTA cards — compact */
  .cta-card { min-height: 150px; padding: 20px; margin: 0 15px 25px; border-radius: 12px !important; }
  .cta-card .cta-icon { font-size: 28px; margin-bottom: 10px; }
  .cta-card h3 { font-size: 18px; }
  .cta-card p { font-size: 12px; }

  /* Bottom CTA */
  .bottom-cta { margin: 15px; padding: 25px 20px; border-radius: 12px; }
  .bottom-cta h2 { font-size: 20px; }
  .bottom-cta p { font-size: 13px; }

  /* Crossfade mobile */
  .crossfade { position: relative; }
  .crossfade img {
    width: 100% !important; height: auto !important;
    object-fit: cover !important; border-radius: 0 !important;
  }
  .crossfade img:first-child { position: relative !important; }
  .crossfade img:not(:first-child) {
    position: absolute !important; inset: 0 !important; height: 100% !important;
  }
}

/* === QUICK CONTACT: BRANDED HOVER VARIANTS === */
.qc-btn.qc-call:hover {
  background: var(--color-cyan); border-color: var(--color-cyan);
  box-shadow: 0 0 25px rgba(0,210,211,0.3); color: #000;
}

.qc-btn.qc-ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #dc2743;
  box-shadow: 0 0 25px rgba(220,39,67,0.3); color: #fff;
}

.qc-btn.qc-signal:hover {
  background: #3A76F0; border-color: #3A76F0;
  box-shadow: 0 0 25px rgba(58,118,240,0.3); color: #fff;
}

.qc-btn.qc-msg:hover {
  background: var(--color-cyan); border-color: var(--color-cyan);
  box-shadow: 0 0 25px rgba(0,210,211,0.3); color: #000;
}

.qc-btn .qc-icon { font-size: 16px; }
.qc-btn svg { flex-shrink: 0; width: 16px; height: 16px; }

/* === SUBMIT BUTTON (pill style, scroll-reveal) === */
.btn-submit {
  display: block; margin: 30px auto 0;
  padding: 14px 48px;
  background: var(--color-cyan); color: #000;
  border: 1px solid var(--color-cyan);
  border-radius: 50px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.btn-submit:hover {
  background: var(--color-white); border-color: var(--color-white);
  box-shadow: 0 0 25px rgba(255,255,255,0.2);
}

/* === SOCIAL ICONS (circular, staggered directional entrance) === */
.social-icons {
  display: flex; justify-content: center; gap: 18px; flex-wrap: wrap;
  margin-top: 50px; padding: 40px 0;
}

.social-icons a {
  width: 64px; height: 64px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  transition: background 0.3s, border-color 0.3s;
  color: var(--color-white); font-size: 22px;
}

.social-icons a svg { width: 22px; height: 22px; fill: currentColor; }

/* Branded hover colors per platform */
.social-icons a.si-facebook:hover { background: #1877F2; border-color: #1877F2; }
.social-icons a.si-instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: #dc2743; }
.social-icons a.si-youtube:hover { background: #FF0000; border-color: #FF0000; }
.social-icons a.si-vimeo:hover { background: #1AB7EA; border-color: #1AB7EA; }
.social-icons a.si-linkedin:hover { background: #0A66C2; border-color: #0A66C2; }
.social-icons a.si-whatsapp:hover { background: #25D366; border-color: #25D366; }

/* === KITT SCANNER SEPARATOR === */
.kitt-divider {
  border: none; position: relative;
  height: 4px; overflow: hidden;
  max-width: 100%; margin: 30px 0;
}

.kitt-divider::before {
  content: ""; position: absolute;
  top: 1px; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.08);
}

.kitt-divider::after {
  content: ""; position: absolute;
  top: 0; left: 0;
  width: 120px; height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-cyan), var(--color-cyan), transparent);
  border-radius: 2px;
  box-shadow: 0 0 15px var(--color-cyan), 0 0 30px rgba(0,210,211,0.4);
  animation: kitt 3s ease-in-out infinite;
}

/* === FOUNDER SECTION === */
.founder-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  max-width: 1000px; margin: 30px auto; align-items: start;
}

.founder-subtitle {
  color: var(--color-cyan); font-style: italic;
  margin-bottom: 20px; font-size: 17px;
}

.founder-heading {
  font-size: 20px; margin: 24px 0 10px;
  color: var(--color-white);
}

.founder-text p {
  margin-bottom: 16px;
}

.founder-photo {
  border-radius: 12px; overflow: hidden;
  position: sticky; top: 100px;
}

.founder-photo img {
  width: 100%; height: auto; object-fit: cover;
  border-radius: 12px;
}

/* === HIGHLIGHTS LIST === */
.highlights-list {
  list-style: none; padding: 0; margin-top: 16px;
}

.highlight-item {
  padding: 12px 0; border-bottom: 1px solid #222;
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
}

.highlight-check {
  color: var(--color-cyan); font-size: 16px;
  flex-shrink: 0;
}

/* === CTA PRIMARY (solid cyan) === */
.cta-primary {
  background: var(--color-cyan); color: #000;
  padding: 10px 22px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,210,211,0.3);
  color: #000;
}

/* === BLOG LISTING === */
.blog-listing {
  padding-top: 40px; padding-bottom: 60px;
}

.blog-listing-header {
  max-width: 700px; margin: 0 auto 40px;
  text-align: center;
}

.blog-listing-header h1 {
  font-size: 36px; margin-bottom: 12px;
}

.blog-listing-header p {
  color: var(--color-muted); font-size: 16px; line-height: 1.6;
}

.blog-grid {
  display: flex; flex-direction: column; gap: 20px;
  max-width: 1000px; margin: 0 auto;
}

.blog-card {
  position: relative; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,210,211,0.12);
  border-color: rgba(0,210,211,0.15);
}

.blog-card-img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; position: absolute; inset: 0;
}

.blog-card-fade {
  position: absolute; top: 0; height: 100%; z-index: 1;
}

.blog-card-body {
  position: absolute; top: 0; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 24px 28px; z-index: 2;
}

.blog-card-date {
  font-size: 11px; color: rgba(255,255,255,0.5);
  letter-spacing: 0.8px; margin-bottom: 6px;
  font-family: var(--font-body); text-transform: uppercase;
}

.blog-card-body h2 {
  font-size: 20px; margin-bottom: 8px; line-height: 1.25;
}

.blog-card-body h2 a {
  color: #fff; transition: color 0.3s;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8), 0 0 4px rgba(0,0,0,0.6);
}

.blog-card-body h2 a:hover {
  color: var(--color-cyan);
}

.blog-card-desc {
  color: rgba(255,255,255,0.8); font-size: 13px; line-height: 1.5;
  margin-bottom: 12px; font-style: italic;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

.blog-card-link {
  font-size: 13px; color: var(--color-cyan);
  transition: opacity 0.3s;
}

.blog-card-link:hover { opacity: 0.7; }

.blog-card-tags {
  display: flex; flex-wrap: wrap; gap: 5px;
  margin-bottom: 10px;
}

.blog-tag {
  font-size: 10px; color: var(--color-cyan);
  background: rgba(0,210,211,0.15);
  padding: 2px 8px; border-radius: 10px;
  letter-spacing: 0.3px;
}

/* Card: landscape — foto links, tekst rechts, 240px */
.blog-card.card-landscape { height: 360px; }
.blog-card.card-landscape .blog-card-fade {
  right: 0; width: 55%;
  background: linear-gradient(to right, transparent 0%, rgba(10,10,10,0.6) 25%, rgba(10,10,10,0.9) 50%, #0a0a0a 70%);
}
.blog-card.card-landscape .blog-card-body {
  right: 0; width: 40%;
}

/* Card: portrait — tekst links, foto rechts, 480px (2x landscape) */
.blog-card.card-portrait { height: 480px; }
.blog-card.card-portrait .blog-card-fade {
  left: 0; width: 55%;
  background: linear-gradient(to left, transparent 0%, rgba(10,10,10,0.6) 25%, rgba(10,10,10,0.9) 50%, #0a0a0a 70%);
}
.blog-card.card-portrait .blog-card-body {
  left: 0; width: 40%;
}

/* Mobile: altijd verticaal */
@media (max-width: 768px) {
  .blog-card.card-landscape,
  .blog-card.card-portrait { height: auto; min-height: 0; }
  .blog-card-img {
    position: relative; height: 200px;
    object-position: center top !important;
  }
  .blog-card-fade { display: none; }
  .blog-card-body {
    position: relative; width: 100% !important;
    left: auto !important; right: auto !important;
    background: var(--color-card2); padding: 20px;
  }
  .blog-card-body h2 a { text-shadow: none; }
  .blog-card-desc { text-shadow: none; color: var(--color-muted); font-style: normal; }
}

/* === BLOG POST === */
.blog-post {
  max-width: 1000px; margin: 0 auto;
  padding-top: 80px; padding-bottom: 60px;
}

.blog-back {
  display: inline-block; margin-bottom: 20px;
  font-size: 14px; color: var(--color-cyan);
  transition: opacity 0.3s;
}

.blog-back:hover { opacity: 0.7; }

.blog-post-header {
  margin-bottom: 16px;
}

/* Blog post — photo reveal (full image, no gradient) */
.blog-post-reveal {
  border-radius: 12px; overflow: hidden;
  margin-bottom: 20px; cursor: pointer;
}
.blog-post-reveal img {
  width: 100%; height: auto; display: block;
}
.blog-post-reveal:hover img { opacity: 0.9; transition: opacity 0.3s; }
.blog-post-meta {
  margin-bottom: 30px;
}
.blog-post-meta h1 {
  font-size: 36px; line-height: 1.2; margin-bottom: 8px;
  color: var(--color-white);
}
.blog-post-meta time {
  font-size: 13px; color: var(--color-muted);
  letter-spacing: 0.5px;
}

@media (max-width: 600px) {
  .blog-post-meta h1 { font-size: 28px; }
}

/* Blog post body typography */
.blog-post-content {
  max-width: 760px; font-size: 16px; line-height: 1.8;
  color: var(--color-text);
}

.blog-post-content h2 {
  font-size: 26px; margin: 40px 0 16px;
  color: var(--color-white);
}

.blog-post-content h3 {
  font-size: 20px; margin: 32px 0 12px;
  color: var(--color-white);
}

.blog-post-content p {
  margin-bottom: 20px;
}

.blog-post-content a {
  color: var(--color-cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s;
}

.blog-post-content a:hover { opacity: 0.7; }

.blog-post-content strong {
  color: var(--color-white); font-weight: 600;
}

.blog-post-content em {
  font-style: italic;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 0 0 20px 24px;
}

.blog-post-content li {
  margin-bottom: 8px;
}

/* Magazine: drop cap */
.blog-post-content > p:first-of-type::first-letter {
  float: left; font-size: 3.5em; line-height: 0.8;
  padding: 4px 10px 0 0; font-family: var(--font-heading);
  color: var(--color-cyan); font-weight: 700;
}

/* Magazine: pull-quotes from blockquotes */
.blog-post-content blockquote {
  border: none; margin: 32px 0; padding: 0 0 0 20px;
  border-left: 3px solid var(--color-cyan);
  font-size: 20px; font-style: italic; color: #fff;
  font-family: var(--font-heading); line-height: 1.4;
  background: none; border-radius: 0;
}
.blog-post-content blockquote p {
  font-size: inherit; color: inherit; font-style: inherit;
  margin-bottom: 0;
}

/* Magazine: inline images — breakout on desktop */
.blog-post-content img {
  width: 100%; height: auto; border-radius: 8px;
  margin: 24px 0 8px; cursor: pointer;
  transition: opacity 0.3s;
}
.blog-post-content img:hover { opacity: 0.85; }
.blog-post-content figure { margin: 24px 0; }
.blog-post-content figcaption {
  font-size: 12px; color: #666; font-style: italic;
  margin-top: 6px;
}

@media (min-width: 1200px) {
  .blog-post-content blockquote {
    font-size: 22px; margin: 40px -40px; padding: 0 0 0 24px;
  }
  .blog-post-content img,
  .blog-post-content figure {
    margin-left: -60px; margin-right: -60px;
    width: calc(100% + 120px); max-width: none;
  }
  .blog-post-content figcaption { padding: 0 60px; }
  .blog-post-content h2 {
    font-size: 30px; margin: 48px 0 18px;
  }
  .blog-post-content h3 {
    font-size: 22px; margin: 36px 0 14px;
  }
}

.blog-post-content pre {
  background: var(--color-card); padding: 20px;
  border-radius: 8px; overflow-x: auto;
  margin: 24px 0; font-size: 14px;
  border: 1px solid #222;
}

.blog-post-content code {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.9em;
}

.blog-post-content p code {
  background: var(--color-card); padding: 2px 6px;
  border-radius: 4px; font-size: 0.85em;
}

.blog-post-content img {
  border-radius: 8px; margin: 24px 0;
}

.blog-post-content hr {
  border: none; border-top: 1px solid #222;
  margin: 40px 0;
}

/* Blog post navigation (prev/next) */
.blog-post-nav {
  display: flex; justify-content: space-between; gap: 20px;
  margin-top: 50px; padding-top: 30px;
  border-top: 1px solid #1a1a1a;
}

.blog-post-nav a {
  font-size: 14px; color: var(--color-cyan);
  transition: opacity 0.3s;
  max-width: 45%;
}

.blog-post-nav a:hover { opacity: 0.7; }

.blog-nav-label {
  display: block; font-size: 11px; color: var(--color-muted);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 4px;
}

.blog-nav-next {
  text-align: right; margin-left: auto;
}

/* === RESPONSIVE: BLOG === */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .blog-post-header h1 { font-size: 28px; }
  .blog-post-content h2 { font-size: 22px; }
  .blog-post-hero { border-radius: 0; margin-left: -20px; margin-right: -20px; width: calc(100% + 40px); }
  .blog-post-nav { flex-direction: column; }
  .blog-post-nav a { max-width: 100%; }
  .blog-nav-next { text-align: left; margin-left: 0; }
}

/* === RESPONSIVE: FOUNDER === */
@media (max-width: 900px) {
  .founder-section { grid-template-columns: 1fr; }
  .founder-photo { position: static; }
}
