﻿:root {
  --wine: #7b0d1e;
  --wine-600: #5f0a17;
  --black: #000000;
  --blue: #235A9F;
  --bg: #0b0b0b;
  --muted: #c9c9c9;
  --white: #ffffff;
  --footer-bg: #090909;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  font-size: 0.95rem;
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 100;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-container a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.logo-container a h1 {
  margin: 0;
}

.logo {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(123, 13, 30, 0.35);
  box-shadow: 0 3px 10px rgba(123, 13, 30, 0.25);
  transition: transform 0.6s ease;
}

.logo:hover {
  transform: rotate(360deg);
}

header h1 {
  color: var(--wine);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transform: skew(-5deg);
}

nav.site-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

nav.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 10px 14px;
  position: relative;
  transform: skew(-5deg);
}

nav.site-nav a::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

nav.site-nav a:hover {
  color: var(--white);
  background: rgba(35, 90, 159, 0.08);
  border-radius: 4px;
}

nav.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown .dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown .dropdown-trigger .caret {
  font-size: 0.8rem;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-trigger .caret {
  transform: rotate(180deg);
}

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: #0f0f10;
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-width: 220px;
  display: none;
  flex-direction: column;
  padding: 8px 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  z-index: 150;
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0% 100%);
}

.nav-dropdown:hover .dropdown-menu {
  display: flex;
}

.nav-dropdown .dropdown-menu a {
  padding: 12px 20px;
  color: #e6e6e6;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  transform: none;
}

.nav-dropdown .dropdown-menu a::after {
  display: none;
}

.nav-dropdown .dropdown-menu a:hover {
  background: rgba(123, 13, 30, 0.15);
  border-left-color: var(--blue);
  color: var(--white);
  transform: translateX(4px);
}

.lang-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 20px;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transform: skew(-5deg);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  font-size: 0.9rem;
  font-weight: 500;
}

.lang-trigger .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.lang-trigger .label {
  font-weight: 500;
}

.lang-trigger .caret {
  opacity: .85;
}

.lang-trigger[aria-expanded="true"],
.lang-trigger:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #0f0f10;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px;
  display: none;
  min-width: 170px;
  z-index: 130;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

.lang-menu.active {
  display: block;
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 10px;
  background: transparent;
  color: #e6e6e6;
  border: 0;
  cursor: pointer;
  transition: background .2s ease;
  text-align: left;
}

.lang-item .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.flag-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lang-item[aria-pressed="true"],
.lang-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  margin-left: 20px;
  z-index: 151;
  position: relative;
}

.menu-toggle .burger {
  display: inline-block;
  width: 30px;
  height: 20px;
  position: relative;
}

.menu-toggle .burger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--wine);
  border-radius: 3px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}

.menu-toggle .burger span:nth-child(1) {
  top: 0;
}

.menu-toggle .burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-toggle .burger span:nth-child(3) {
  bottom: 0;
}

.menu-toggle.active .burger span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.active .burger span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}

.menu-toggle.active .burger span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.site-mobile-menu {
  position: fixed !important;
  right: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 320px !important;
  max-width: 85% !important;
  background: #0f0f10 !important;
  transform: translateX(100%) !important;
  opacity: 1 !important;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  z-index: 200 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5) !important;
  visibility: visible !important;
  display: block !important;
  height: 100vh !important;
}

.site-mobile-menu.active {
  transform: translateX(0) !important;
  pointer-events: auto !important;
}

.site-mobile-menu-backdrop {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  z-index: 199;
}

.site-mobile-menu-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.site-mobile-menu-body {
  padding: 100px 30px 40px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  min-height: 100vh;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  z-index: 10;
  padding: 0;
  margin: 0;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--wine);
  color: var(--wine);
  transform: rotate(90deg);
}

.mobile-menu-close:active {
  transform: rotate(90deg) scale(0.95);
}

.mobile-lang-wrapper {
  width: 100%;
  margin-bottom: 20px;
  padding: 0;
  text-align: center;
}

.mobile-lang-wrapper .lang-dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.mobile-lang-wrapper .lang-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-lang-wrapper .lang-menu {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  min-width: 200px;
}

.mobile-lang-wrapper .lang-item {
  padding: 12px 16px;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  font-weight: 500;
}

.mobile-lang-wrapper .lang-trigger .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.mobile-lang-wrapper .lang-trigger .label {
  font-weight: 500;
}

.mobile-lang-wrapper .lang-trigger .caret {
  opacity: .85;
  margin-left: auto;
}

.mobile-lang-wrapper .lang-trigger[aria-expanded="true"],
.mobile-lang-wrapper .lang-trigger:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.mobile-lang-wrapper .lang-menu {
  position: absolute;
  left: 50%;
  right: auto;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  background: #0f0f10;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px;
  display: none;
  min-width: 200px;
  z-index: 130;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

.mobile-lang-wrapper .lang-menu.active {
  display: block;
}

.mobile-lang-wrapper .lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  color: #e6e6e6;
  border: 0;
  cursor: pointer;
  transition: background .2s ease;
  text-align: left;
  font-size: 0.95rem;
}

.mobile-lang-wrapper .lang-item .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.mobile-lang-wrapper .lang-item[aria-pressed="true"],
.mobile-lang-wrapper .lang-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-nav-wrap {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.site-nav-wrap li a {
  display: block;
  padding: 15px 20px;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  background: rgba(123, 13, 30, 0.10);
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  transform: skew(-3deg);
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.site-nav-wrap li a:hover {
  background: rgba(123, 13, 30, 0.18);
  border-left-color: var(--blue);
}

.hero {
  min-height: 100vh;
  padding-top: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(1200px 600px at 80% 20%, rgba(123, 13, 30, 0.15), transparent 60%), radial-gradient(900px 500px at 20% 80%, rgba(35, 90, 159, 0.18), transparent 60%), linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 40%);
  pointer-events: none;
}

.hero-content {
  flex: 0 1 auto;
  padding: 0 50px;
  max-width: 650px;
  z-index: 2;
  width: 100%;
}

.hero-content:not(.center) {
  flex: 1;
}

.hero-content.center {
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
  flex: none;
}

.eyebrow {
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  opacity: 0.85;
}

.hero h2 {
  font-size: 3.2rem;
  margin: 8px 0 18px;
  color: var(--white);
  font-weight: 600;
  line-height: 1.1;
  transform: skew(-2deg);
}

.hero h2 .accent {
  color: var(--wine);
  text-shadow: 0 6px 30px rgba(123, 13, 30, 0.35);
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 34px;
  color: #e6e6e6;
  line-height: 1.8;
  transform: skew(-1deg);
}

.btn {
  display: inline-block;
  padding: 16px 35px;
  border-radius: 0;
  border: 0;
  background: var(--wine);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: skew(-5deg);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(123, 13, 30, 0.35);
}

.btn::after {
  content: '\2192';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.btn:hover {
  background: var(--wine-600);
  transform: skew(-5deg) translateY(-3px);
  padding-right: 50px;
}

.btn:hover::after {
  opacity: 1;
  right: 15px;
}

.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-shape {
  width: 430px;
  height: 430px;
  background: linear-gradient(45deg, rgba(123, 13, 30, 0.85), rgba(35, 90, 159, 0.85));
  clip-path: circle(50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0.95;
  animation: float 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(255, 255, 255, 0.06);
}

.hero-shape--poster {
  width: 380px;
  height: 560px;
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-shape--poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 7, 0.08) 0%, rgba(5, 5, 7, 0.28) 100%);
}

.hero-shape--jabra {
  background-image:
    linear-gradient(180deg, rgba(4, 18, 21, 0.08), rgba(4, 18, 21, 0.32)),
    url("jabra poster final edited.png");
  background-position: center 28%;
}

.slideshow {
  position: absolute;
  inset: 0;
  display: grid;
}

.slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  grid-area: 1/1;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 900ms ease, transform 3000ms ease;
  filter: contrast(1.05) saturate(1.1);
}

.slideshow img.active {
  opacity: 1;
  transform: scale(1);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-18px) rotate(3deg);
  }
}

.main-content {
  padding: 100px 50px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 50px;
  text-align: center;
}

.lead {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #e8e8e8;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  background: linear-gradient(135deg, rgba(123, 13, 30, 0.12), rgba(35, 90, 159, 0.12));
  border-left: 4px solid var(--wine);
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0% 100%);
  animation: slideInLeft 0.8s ease-out;
}

.section {
  margin-bottom: 70px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: calc(var(--i, 0) * 0.15s);
}

.section:nth-child(1) {
  --i: 1;
}

.section:nth-child(2) {
  --i: 2;
}

.section:nth-child(3) {
  --i: 3;
}

.section:nth-child(4) {
  --i: 4;
}

.section:nth-child(5) {
  --i: 5;
}

.section:nth-child(6) {
  --i: 6;
}

.section h3 {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--blue));
}

.section p {
  color: #d6d6d6;
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  line-height: 1.9;
}

.muted {
  color: #cfcfcf;
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 850px;
  margin: 0 auto 18px;
}

.list {
  list-style: none;
  padding: 0;
  margin: 30px auto 0;
  max-width: 900px;
  text-align: left;
  display: grid;
  gap: 16px;
}

.list li {
  padding: 20px 24px;
  background: rgba(123, 13, 30, 0.08);
  border-left: 4px solid var(--wine);
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0% 100%);
  transition: all 0.3s ease;
  animation: slideInRight 0.6s ease-out forwards;
  animation-delay: calc(var(--i, 0) * 0.1s);
  opacity: 0;
}

.list li:nth-child(1) {
  --i: 1;
}

.list li:nth-child(2) {
  --i: 2;
}

.list li:nth-child(3) {
  --i: 3;
}

.list li:nth-child(4) {
  --i: 4;
}

.list li:nth-child(5) {
  --i: 5;
}

.list li:nth-child(6) {
  --i: 6;
}

.list li:hover {
  background: rgba(123, 13, 30, 0.15);
  transform: translateX(8px);
  border-left-color: var(--blue);
}

.list li strong {
  color: var(--white);
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.placeholder {
  font-size: 1.3rem;
  color: #aaa;
  opacity: 0.7;
  padding: 60px 20px;
  text-align: center;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 0.4;
  }
}

.gallery-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.gallery-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px;
  text-align: center;
}

.gallery-card .shape {
  height: 140px;
  background: linear-gradient(135deg, rgba(123, 13, 30, .35), rgba(35, 90, 159, .35));
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  margin-bottom: 10px;
  display: grid;
  place-items: center;
  font-weight: 600;
  color: #fff;
  opacity: .9;
}

.gallery-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  margin-bottom: 8px;
}

.gallery-card p {
  color: #cfcfcf;
  font-size: .9rem;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: #0e0e0f;
}

.marquee-track {
  display: flex;
  gap: 40px;
  padding: 14px 0;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  color: #e6e6e6;
  opacity: .85;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.stat-card {
  background: #101012;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 26px;
  text-align: center;
}

.stat-num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  direction: ltr;
  unicode-bidi: isolate;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--wine);
  text-shadow: 0 6px 30px rgba(123, 13, 30, 0.35);
}

.stat-value {
  direction: ltr;
  unicode-bidi: isolate;
}

.stat-unit {
  direction: inherit;
}

.stat-label {
  color: #cfcfcf;
  margin-top: 6px;
}

.cta-band {
  margin: 70px 0;
  padding: 34px;
  background: linear-gradient(135deg, rgba(123, 13, 30, .28), rgba(35, 90, 159, .28));
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-title {
  font-size: 1.6rem;
  font-weight: 600;
}

.cta-actions {
  display: flex;
  gap: 12px;
}

.btn.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.quote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.quote p {
  font-size: 1.2rem;
  color: #e8e8e8;
}

.quote cite {
  display: block;
  margin-top: 10px;
  color: #cfcfcf;
  opacity: .9;
}

.footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.9);
  padding: 80px 50px 40px;
  text-align: center;
  position: relative;
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20%;
  background: linear-gradient(135deg, var(--wine), var(--blue));
  opacity: 0.12;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  opacity: 0.7;
  font-weight: 300;
}

/* RTL */
html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .hero-content {
  text-align: right;
}

html[dir="rtl"] .hero-content.center,
html[dir="rtl"] .hero-content.center h2,
html[dir="rtl"] .hero-content.center p {
  text-align: center;
}

html[dir="rtl"] header h1 {
  transform: skew(5deg);
}

html[dir="rtl"] nav.site-nav a {
  transform: skew(5deg);
}

html[dir="rtl"] .hero h2 {
  transform: skew(2deg);
}

html[dir="rtl"] .hero p {
  transform: skew(1deg);
}

html[dir="rtl"] .lang-dropdown {
  margin-left: 0;
  margin-right: 20px;
}

html[dir="rtl"] .lang-trigger {
  flex-direction: row-reverse;
  transform: skew(5deg);
}

html[dir="rtl"] .lang-menu {
  right: auto;
  left: 0;
}

html[dir="rtl"] .lang-item {
  flex-direction: row-reverse;
  text-align: right;
}

html[dir="rtl"] .mobile-lang-wrapper .lang-item {
  flex-direction: row-reverse;
  text-align: right;
}

html[dir="rtl"] .nav-dropdown .dropdown-menu {
  left: auto;
  right: 0;
  clip-path: polygon(2% 0, 100% 0, 100% 100%, 0% 100%);
}

html[dir="rtl"] .nav-dropdown .dropdown-menu a {
  border-left: 0;
  border-right: 3px solid transparent;
  text-align: right;
}

html[dir="rtl"] .nav-dropdown .dropdown-menu a:hover {
  border-right-color: var(--blue);
  transform: translateX(-4px);
}

html[dir="rtl"] .btn {
  transform: skew(5deg);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
}

html[dir="rtl"] .btn::after {
  content: '\2192';
  right: auto;
  left: 20px;
}

html[dir="rtl"] .btn:hover {
  transform: skew(5deg) translateY(-3px);
  padding-right: 35px;
  padding-left: 50px;
}

html[dir="rtl"] .btn:hover::after {
  right: auto;
  left: 15px;
}

html[dir="rtl"] .cta-band {
  flex-direction: row;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%);
}

html[dir="rtl"] .cta-description {
  text-align: right;
}

html[dir="rtl"] .cta-actions {
  flex-direction: row;
}

html[dir="rtl"] .footer {
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
}

html[dir="rtl"] .lead {
  border-left: 0;
  border-right: 4px solid var(--wine);
  clip-path: polygon(2% 0, 100% 0, 100% 100%, 0 100%);
}

html[dir="rtl"] .section h3 {
  letter-spacing: 0;
  text-transform: none;
}

html[dir="rtl"] .section > p,
html[dir="rtl"] .section > .muted {
  text-align: right;
}

html[dir="rtl"] .list {
  text-align: right;
}

html[dir="rtl"] .list li {
  border-left: 0;
  border-right: 4px solid var(--wine);
  clip-path: polygon(2% 0, 100% 0, 100% 100%, 0 100%);
  animation-name: slideInLeft;
}

html[dir="rtl"] .list li:hover {
  transform: translateX(-8px);
  border-right-color: var(--blue);
}

html[dir="rtl"] .founder-card .learn-more:hover,
html[dir="rtl"] .board-member-card .learn-more:hover,
html[dir="rtl"] .executive-director-content .learn-more:hover,
html[dir="rtl"] .accountant-content .learn-more:hover {
  transform: translateX(-5px);
}

html[dir="rtl"] .founder-card .learn-more::after,
html[dir="rtl"] .board-member-card .learn-more::after,
html[dir="rtl"] .executive-director-content .learn-more::after,
html[dir="rtl"] .accountant-content .learn-more::after {
  content: '\2192';
  margin-left: 0;
  margin-right: 8px;
}

html[dir="rtl"] .founder-card .learn-more:hover::after,
html[dir="rtl"] .board-member-card .learn-more:hover::after,
html[dir="rtl"] .executive-director-content .learn-more:hover::after,
html[dir="rtl"] .accountant-content .learn-more:hover::after {
  transform: translateX(-5px);
}

html[dir="rtl"] .executive-director,
html[dir="rtl"] .accountant {
  flex-direction: row-reverse;
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
}

html[dir="rtl"] .executive-director-content,
html[dir="rtl"] .accountant-content {
  text-align: center;
}

html[dir="rtl"] .founder-card,
html[dir="rtl"] .board-member-card {
  text-align: center;
}

html[dir="rtl"] .founder-card .role,
html[dir="rtl"] .board-member-card .role {
  text-align: center;
}

html[dir="rtl"] .executive-director-content .learn-more,
html[dir="rtl"] .accountant-content .learn-more {
  display: table;
  margin: 15px auto 0;
}

html[dir="rtl"] .modal-content {
  clip-path: polygon(2% 0, 100% 0, 100% 100%, 0 100%);
}

html[dir="rtl"] .modal-close {
  right: auto;
  left: 15px;
}

html[dir="rtl"] .modal h3,
html[dir="rtl"] .modal p,
html[dir="rtl"] .modal ul {
  text-align: right;
}

html[dir="rtl"] .modal ul {
  padding-left: 0;
  padding-right: 25px;
}

html[dir="rtl"] .modal ul li {
  padding-left: 0;
  padding-right: 25px;
}

html[dir="rtl"] .modal ul li:before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .program-card {
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
}

html[dir="rtl"] .program-card .learn-more:hover {
  transform: translateX(-5px);
}

html[dir="rtl"] .program-card .learn-more::after {
  content: ' \2190';
}

html[dir="rtl"] .program-card .learn-more:hover::after {
  transform: translateX(-5px);
}

html[dir="rtl"] .space-card {
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
}

html[dir="rtl"] .space-card-content {
  text-align: center;
}

html[dir="rtl"] .award-item {
  border-left: 0;
  border-right: 4px solid var(--wine);
  clip-path: polygon(2% 0, 100% 0, 100% 100%, 0 100%);
}

html[dir="rtl"] .award-item:hover {
  transform: translateX(-8px);
  border-right-color: var(--blue);
}

html[dir="rtl"] .donate-currency-tabs {
  flex-direction: row-reverse;
}

html[dir="rtl"] .donate-currency-tabs button {
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

html[dir="rtl"] .donate-info {
  border-left: 0;
  border-right: 4px solid var(--wine);
  clip-path: polygon(2% 0, 100% 0, 100% 100%, 0 100%);
}

html[dir="rtl"] .contact-form,
html[dir="rtl"] .contact-info,
html[dir="rtl"] .map-container {
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
}

html[dir="rtl"] .contact-form,
html[dir="rtl"] .contact-info,
html[dir="rtl"] .map-item {
  text-align: center;
}

html[dir="rtl"] .contact-form input,
html[dir="rtl"] .contact-form textarea {
  text-align: center;
}

html[dir="rtl"] .news-platform-switch {
  flex-direction: row-reverse;
}

html[dir="rtl"] .news-status,
html[dir="rtl"] .ig-caption {
  text-align: right;
}

html[dir="rtl"] body[data-page="space"] .section > p,
html[dir="rtl"] body[data-page="space"] .section > .muted {
  text-align: center;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Program Cards */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.program-card {
  background: #101012;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0;
  text-align: center;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
  overflow: hidden;
}

.program-card:hover {
  transform: translateY(-8px);
  border-color: rgba(123, 13, 30, 0.4);
  box-shadow: 0 15px 40px rgba(123, 13, 30, 0.25);
}

.program-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(123, 13, 30, 0.35), rgba(35, 90, 159, 0.35));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.program-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-card-image--poster {
  height: 320px;
  background: #050507;
  align-items: stretch;
  justify-content: stretch;
}

.program-card h4 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 12px;
  padding: 0 20px;
}

.program-card p {
  color: #cfcfcf;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0 20px 20px;
  margin: 0;
}

.program-card .learn-more {
  display: inline-block;
  margin: 0 20px 20px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.program-card .learn-more:hover {
  color: var(--wine);
  transform: translateX(5px);
}

.program-card .learn-more::after {
  content: ' \2192';
  transition: transform 0.3s ease;
}

.program-card .learn-more:hover::after {
  transform: translateX(5px);
}

/* Play Lists */
.play-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 12px;
}

.play-list li {
  padding: 14px 20px;
  background: rgba(123, 13, 30, 0.08);
  border-left: 3px solid var(--wine);
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0% 100%);
  transition: all 0.3s ease;
}

.play-list li:hover {
  background: rgba(123, 13, 30, 0.15);
  transform: translateX(6px);
  border-left-color: var(--blue);
}

/* Board Slideshow */
.board-slideshow {
  position: relative;
  max-width: 900px;
  margin: 40px auto;
  overflow: hidden;
}

.board-slideshow-container {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
}

.board-member-card {
  min-width: 280px;
  background: #101012;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.board-member-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(123, 13, 30, 0.35), rgba(35, 90, 159, 0.35));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.board-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-member-card h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.board-member-card .role {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.board-member-card p {
  color: #cfcfcf;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.board-member-card .learn-more {
  display: inline-block;
  margin-top: 15px;
  color: var(--wine);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.board-member-card .learn-more:hover {
  color: var(--white);
  transform: translateX(5px);
}

.board-member-card .learn-more::after {
  content: '\2192';
  margin-left: 8px;
  transition: all 0.3s ease;
}

.board-member-card .learn-more:hover::after {
  transform: translateX(5px);
}

.board-slideshow-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.board-slideshow-nav button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.board-slideshow-nav button.active {
  background: var(--wine);
  width: 32px;
  border-radius: 6px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: #101012;
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  border-color: rgba(123, 13, 30, 0.4);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.1);
}

.gallery-item .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(123, 13, 30, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  pointer-events: none;
}

.program-media-section {
  margin-top: 40px;
}

.program-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.program-media-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18, 18, 21, 0.98), rgba(9, 9, 11, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.program-media-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 13, 30, 0.42);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);
}

.program-media-frame {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
}

.program-media-frame--image {
  cursor: zoom-in;
}

.program-media-frame img,
.program-media-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #08080a;
}

.program-media-frame--image img {
  transition: transform 0.35s ease;
}

.program-media-card:hover .program-media-frame--image img {
  transform: scale(1.05);
}

.program-media-frame video {
  aspect-ratio: 16 / 9;
}

.program-media-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(12, 12, 14, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

html[dir="rtl"] .program-media-badge {
  left: auto;
  right: 12px;
}

.program-media-modal-content {
  max-width: min(1100px, 92vw);
  padding: 24px;
  background: transparent;
  border: 0;
  clip-path: none;
  box-shadow: none;
}

.program-media-modal-content .modal-image {
  margin-bottom: 0;
  max-height: 82vh;
  border-radius: 20px;
  background: #08080a;
}

.program-media-modal-content .modal-close {
  top: 4px;
  right: 4px;
  background: rgba(15, 15, 16, 0.8);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #0f0f10;
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 40px;
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0% 100%);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--wine);
  color: var(--wine);
  transform: rotate(90deg);
}

.modal-image {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  margin-bottom: 20px;
}

.modal h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.modal p {
  color: #cfcfcf;
  line-height: 1.8;
}

.modal ul {
  color: #cfcfcf;
  line-height: 1.8;
  margin: 20px 0;
  padding-left: 25px;
  list-style-type: none;
}

.modal ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  line-height: 1.8;
}

.modal ul li:before {
  content: '\2022';
  color: var(--white);
  font-size: 1rem;
  position: absolute;
  left: 0;
  line-height: 1.8;
  top: 0;
  height: 1.8em;
  display: flex;
  align-items: center;
}

.modal ul li:last-child {
  margin-bottom: 0;
}

/* Donate Modal */
.donate-currency-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}

.donate-currency-tabs button {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--muted);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.donate-currency-tabs button.active {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
}

.donate-currency-tabs button:hover {
  background: rgba(123, 13, 30, 0.3);
  color: var(--white);
}

.donate-info {
  background: rgba(123, 13, 30, 0.08);
  padding: 24px;
  border-left: 4px solid var(--wine);
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0% 100%);
  margin-top: 20px;
}

.donate-info h4 {
  color: var(--white);
  margin-bottom: 12px;
}

.donate-info p {
  color: #cfcfcf;
  line-height: 1.8;
  margin: 8px 0;
}

/* Contact Form */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.contact-form {
  background: #101012;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--wine);
  background: rgba(123, 13, 30, 0.1);
}

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

.contact-info {
  background: #101012;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.contact-info h4 {
  color: var(--white);
  margin-bottom: 20px;
}

.contact-info p {
  color: #cfcfcf;
  margin-bottom: 12px;
  line-height: 1.8;
}

.contact-info a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--wine);
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  justify-content: center;
}

.social-links a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123, 13, 30, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.social-links a svg {
  width: 20px;
  height: 20px;
}

.social-links a:hover {
  background: var(--wine);
  border-color: var(--wine);
  transform: translateY(-3px);
}

.maps-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.map-item {
  width: 100%;
}

.map-container {
  margin-top: 20px;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.festival-video-grid {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  align-items: start;
  gap: 32px;
  margin-top: 28px;
}

.festival-video-card {
  background: linear-gradient(180deg, #17171c 0%, #0d0d10 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  align-self: start;
}

.festival-video-card--instagram {
  width: 100%;
}

.festival-video-card--facebook {
  width: 100%;
}

.festival-video-frame {
  position: relative;
  width: 100%;
  background: #050507;
}

.festival-video-frame--instagram {
  height: 760px;
}

.festival-video-frame--facebook {
  aspect-ratio: 16 / 9;
}

.festival-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.festival-video-meta {
  padding: 20px 22px 24px;
}

.festival-video-source {
  display: inline-block;
  margin-bottom: 10px;
  color: #f3ccd5;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.festival-video-meta h4 {
  margin-bottom: 10px;
}

.festival-video-meta .muted {
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .maps-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .festival-video-grid {
    grid-template-columns: 1fr;
  }

  .festival-video-frame--instagram {
    height: 620px;
  }
}

/* Awards */
.awards-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  gap: 20px;
}

.award-item {
  padding: 20px 24px;
  background: rgba(123, 13, 30, 0.08);
  border-left: 4px solid var(--wine);
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0% 100%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.award-item:hover {
  background: rgba(123, 13, 30, 0.15);
  transform: translateX(8px);
  border-left-color: var(--blue);
}

.award-item:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.award-item h4 {
  color: var(--wine);
  margin-bottom: 8px;
}

.award-item p {
  color: #cfcfcf;
  margin: 0;
}

/* Space Cards */
.space-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.space-card {
  background: #101012;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
  transition: all 0.3s ease;
}

.space-card:hover {
  transform: translateY(-8px);
  border-color: rgba(123, 13, 30, 0.4);
}

.space-card-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, rgba(123, 13, 30, 0.35), rgba(35, 90, 159, 0.35));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
}

.space-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.space-card-content {
  padding: 24px;
}

.space-card h4 {
  color: var(--wine);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.space-card p {
  color: #cfcfcf;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Founders Section */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.founder-card {
  background: #101012;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.founder-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(123, 13, 30, 0.35), rgba(35, 90, 159, 0.35));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-card h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.founder-card .role {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.founder-card .learn-more {
  display: inline-block;
  margin-top: 15px;
  color: var(--wine);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.founder-card .learn-more:hover {
  color: var(--white);
  transform: translateX(5px);
}

.founder-card .learn-more::after {
  content: '\2192';
  margin-left: 8px;
  transition: all 0.3s ease;
}

.founder-card .learn-more:hover::after {
  transform: translateX(5px);
}

/* Executive Director */
.executive-director {
  background: #101012;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px;
  display: flex;
  gap: 30px;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.executive-director-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(123, 13, 30, 0.35), rgba(35, 90, 159, 0.35));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  flex-shrink: 0;
}

.executive-director-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.executive-director-content h4 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.executive-director-content .role {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.executive-director-content p {
  color: #cfcfcf;
  line-height: 1.8;
}

.executive-director-content .learn-more {
  display: inline-block;
  margin-top: 15px;
  color: var(--wine);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.executive-director-content .learn-more:hover {
  color: var(--white);
  transform: translateX(5px);
}

.executive-director-content .learn-more::after {
  content: '\2192';
  margin-left: 8px;
  transition: all 0.3s ease;
}

.executive-director-content .learn-more:hover::after {
  transform: translateX(5px);
}

/* Accountant */
.accountant {
  background: #101012;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px;
  display: flex;
  gap: 30px;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.accountant-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(123, 13, 30, 0.35), rgba(35, 90, 159, 0.35));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  flex-shrink: 0;
}

.accountant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accountant-content h4 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.accountant-content .role {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.accountant-content p {
  color: #cfcfcf;
  line-height: 1.8;
}

.accountant-content .learn-more {
  display: inline-block;
  margin-top: 15px;
  color: var(--wine);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.accountant-content .learn-more:hover {
  color: var(--white);
  transform: translateX(5px);
}

.accountant-content .learn-more::after {
  content: '\2192';
  margin-left: 8px;
  transition: all 0.3s ease;
}

.accountant-content .learn-more:hover::after {
  transform: translateX(5px);
}

.artistic-directors-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

/* Home Page Cards */
.home-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.home-card {
  background: #101012;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
  transition: all 0.3s ease;
}

.home-card:hover {
  transform: translateY(-5px);
  border-color: rgba(123, 13, 30, 0.4);
}

.home-card-icon {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.home-card h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.home-card p {
  color: #cfcfcf;
  line-height: 1.6;
}

/* News */
.news-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 980px;
  margin: 40px auto 0;
}

.news-platform-switch {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.news-source-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123, 13, 30, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.news-source-btn svg {
  width: 20px;
  height: 20px;
}

.news-source-btn:hover {
  background: var(--wine);
  border-color: var(--wine);
  transform: translateY(-3px);
}

.news-source-btn.active {
  background: var(--wine);
  border-color: var(--wine);
}

.news-source-btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}

.news-card {
  background: linear-gradient(180deg, #15151a 0%, #0d0d10 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  min-height: 100%;
  width: 100%;
}

.news-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  opacity: 0.75;
  background: linear-gradient(90deg, rgba(123, 13, 30, 0.15), rgba(200, 88, 113, 0.8));
  z-index: 1;
}

.news-card--instagram::before {
  background: linear-gradient(90deg, rgba(186, 73, 23, 0.2), rgba(242, 164, 62, 0.82));
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(208, 120, 140, 0.4);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.3);
}

.news-card-body {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.news-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 24px 16px;
  font-size: 0.82rem;
}

.news-card-platform {
  color: #f3ccd5;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.news-card-date {
  color: rgba(255, 255, 255, 0.58);
  white-space: nowrap;
}

.news-card-story-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 24px 16px;
}

.news-card-story-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(123, 13, 30, 0.16);
  border: 1px solid rgba(208, 120, 140, 0.2);
  color: #f3ccd5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-card-story {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  line-height: 1.6;
  white-space: pre-line;
  text-align: start;
}

.news-card.is-shared-post .news-card-story {
  color: rgba(255, 255, 255, 0.84);
}

.news-card-message {
  margin: 0;
  color: #e3e3e6;
  font-size: 1rem;
  line-height: 1.7;
  padding: 0 24px 18px;
  white-space: pre-line;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: start;
}

.news-card-media-slot {
  margin-top: auto;
}

.news-card-media-link {
  display: block;
  text-decoration: none;
}

.news-card-media {
  background: #07080b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  min-height: 320px;
  max-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card-image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 580px;
  object-fit: contain;
  background: #050507;
  display: block;
}

.news-card-media--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 320px;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(123, 13, 30, 0.18), transparent 38%),
    linear-gradient(180deg, #111218 0%, #0a0a0d 100%);
}

.news-card--instagram .news-card-media--placeholder {
  background:
    radial-gradient(circle at top right, rgba(202, 103, 41, 0.18), transparent 38%),
    linear-gradient(180deg, #111218 0%, #0a0a0d 100%);
}

.news-card-placeholder-art {
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card-placeholder-emblem {
  width: 138px;
  height: 138px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(11, 11, 15, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 18px 35px rgba(0, 0, 0, 0.18);
}

.news-card-placeholder-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 18px;
}

.news-card-placeholder-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}

.news-card-placeholder-kicker {
  color: #d8aeb8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.news-card-placeholder-title {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px 22px;
}

.news-card-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
  text-align: start;
}

.news-card.is-shared-post .news-card-note {
  color: rgba(255, 255, 255, 0.8);
}

.news-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  color: var(--white);
  background: rgba(123, 13, 30, 0.18);
  border: 1px solid rgba(123, 13, 30, 0.35);
  text-decoration: none;
  padding: 11px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.news-card--instagram .news-card-action {
  background: rgba(202, 103, 41, 0.18);
  border-color: rgba(202, 103, 41, 0.35);
}

.news-card-action:hover {
  background: var(--wine);
  border-color: var(--wine);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(123, 13, 30, 0.22);
}

.news-card--instagram .news-card-action:hover {
  background: #c75d2e;
  border-color: #c75d2e;
  box-shadow: 0 12px 24px rgba(199, 93, 46, 0.22);
}

.news-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.news-status {
  margin-top: 16px;
  color: #cfcfcf;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  header {
    padding: 0 20px;
    height: 70px;
  }

  nav.site-nav {
    display: none;
  }

  .lang-dropdown {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-mobile-menu {
    clip-path: none;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 70px;
    justify-content: flex-start;
    min-height: auto;
    height: auto;
    padding-bottom: 40px;
  }

  .hero-content {
    padding: 40px 30px;
    max-width: 100%;
    width: 100%;
  }

  .hero-content.center {
    max-width: 100%;
  }

  .hero h2 {
    font-size: 2.5rem;
    transform: none;
  }

  .hero p {
    transform: none;
  }

  .btn {
    transform: none;
    clip-path: none;
  }

  .hero-shape {
    width: 260px;
    height: 260px;
  }

  .hero-shape--poster {
    width: 280px;
    height: 410px;
  }

  .main-content {
    padding: 60px 20px;
  }

  .footer {
    padding: 60px 20px 30px;
    clip-path: none;
  }

  .site-mobile-menu {
    clip-path: none;
    top: 70px;
  }

  .site-mobile-menu-body {
    padding: 80px 20px 40px;
  }

  .logo {
    width: 38px;
    height: 38px;
  }

  .main {
    padding: 50px 22px;
  }

  .lead {
    font-size: 1.15rem;
    padding: 20px;
  }

  .section h3 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .section p,
  .muted {
    font-size: 1rem;
  }

  .list {
    text-align: center;
  }

  .list li {
    text-align: left;
  }

  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .cta-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn.secondary {
    width: 100%;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .space-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }

  .founders-grid {
    grid-template-columns: 1fr;
  }

  .executive-director {
    flex-direction: column;
    text-align: center;
  }

  .executive-director-image {
    margin: 0 auto;
  }

  .accountant {
    flex-direction: column;
    text-align: center;
  }

  .accountant-image {
    margin: 0 auto;
  }

  .home-cards {
    grid-template-columns: 1fr;
  }

  .news-grid {
    max-width: 100%;
  }

  .news-card-header {
    padding: 20px 20px 14px;
  }

  .news-card-story-block {
    padding: 0 20px 14px;
  }

  .news-card-message {
    padding: 0 20px 16px;
  }

  .news-card-footer {
    padding: 16px 20px 20px;
  }

  .board-slideshow-container {
    gap: 20px;
  }

  .board-member-card {
    min-width: 260px;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    display: none;
    margin-top: 0;
    margin-left: 20px;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .nav-dropdown.active .dropdown-menu {
    display: flex;
  }
}

@media (max-width: 700px) {
  .news-grid {
    gap: 22px;
  }

  .news-card {
    border-radius: 14px;
  }

  .news-card-header {
    padding: 18px 16px 12px;
    flex-wrap: wrap;
  }

  .news-card-story-block {
    padding: 0 16px 12px;
  }

  .news-card-story-badge {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .news-card-story {
    font-size: 0.9rem;
  }

  .news-card-message {
    padding: 0 16px 14px;
    font-size: 0.95rem;
  }

  .news-card-media {
    min-height: 220px;
    max-height: 420px;
  }

  .news-card-media--placeholder {
    min-height: 220px;
    padding: 22px;
  }

  .news-card-placeholder-emblem {
    width: 112px;
    height: 112px;
    padding: 12px;
  }

  .news-card-footer {
    padding: 14px 16px 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .news-card-action {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

@media (max-width: 1023px) {
  .site-nav {
    display: none;
  }

  .lang-dropdown {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-mobile-menu {
    display: block !important;
  }
}

