/* ================================================================
   MSSound — style.css
   Dark Premium Theme · Gold Accent
   ================================================================ */

/* ----------------------------------------------------------------
   1. Custom Properties
---------------------------------------------------------------- */
:root {
  --bg:          #0d0d0d;
  --bg-alt:      #111111;
  --bg-dark:     #090909;
  --bg-card:     #161616;
  --border:      #1f1f1f;
  --border-soft: #2a2a2a;

  --gold:        #c9a84c;
  --gold-light:  #dfc06a;
  --gold-dim:    rgba(201, 168, 76, 0.15);

  --blue:        #5A85D7;
  --blue-light:  #7ba3e3;
  --blue-dim:    rgba(90, 133, 215, 0.15);

  --text:        #f0f0f0;
  --text-muted:  #888888;
  --text-dim:    #444444;

  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Inter', sans-serif;

  --max-w:       1240px;
  --pad-x:       24px;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --dur:         0.3s;
}

/* ----------------------------------------------------------------
   2. Reset
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ----------------------------------------------------------------
   3. Layout
---------------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section         { padding: 64px 0; background: var(--bg); }
.section--dark   { background: var(--bg-dark); }
.section--alt    { background: var(--bg-alt); }

.section-header  { text-align: center; margin-bottom: 60px; }
.section-sub     { max-width: 580px; margin: 12px auto 0; font-size: 17px; }

/* ----------------------------------------------------------------
   4. Typography
---------------------------------------------------------------- */
.h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.text-muted { color: var(--text-muted); font-size: 16px; line-height: 1.8; }

/* ----------------------------------------------------------------
   5. Buttons
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--dur) var(--ease);
  border: none;
  white-space: nowrap;
}

.btn--gold {
  background: var(--blue);
  color: #000;
}
.btn--gold:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--blue-dim);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn--full { width: 100%; }

/* ----------------------------------------------------------------
   6. Header
---------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: 150px;
  display: flex;
  align-items: center;
  transition: height 0.4s var(--ease), background 0.4s var(--ease), border-bottom 0.4s var(--ease);
}
.header.is-scrolled {
  height: 84px;
  background: rgba(10, 10, 10, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.header .logo__img {
  transition: height 0.4s var(--ease);
  height: 126px;
}
.header.is-scrolled .logo__img {
  height: 56px;
}

.header__inner {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 40px;
}

/* Logo */
.logo {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  line-height: 1;
}
.logo__ms    { color: var(--blue); }
.logo__sound { color: var(--text); }

.logo__img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.logo__img--footer {
  height: 130px;
  opacity: 0.75;
}

/* Nav */
.nav--desktop { margin-left: auto; }
.nav--mobile  { display: none; } /* hidden until is-open */
.nav__list {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--dur);
  padding: 4px 0;
}
.nav__link:hover { color: var(--text); }

.nav__link--experience .nav__link-short { display: none; }

@media (max-width: 1199px) {
  .nav--desktop .nav__item--meyer { display: none; }
  .nav--desktop .nav__link--experience .nav__link-full  { display: none; }
  .nav--desktop .nav__link--experience .nav__link-short { display: inline; }
}

/* Header right */
.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher { display: flex; align-items: center; gap: 8px; }
.lang-sep { color: var(--text-dim); font-size: 11px; }
.lang-btn {
  background: none;
  border: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  padding: 2px 4px;
  transition: color var(--dur);
}
.lang-btn.active { color: var(--blue); }
.lang-btn:hover:not(.active) { color: var(--text-muted); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  width: 28px;
  height: 28px;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--dur), opacity var(--dur);
  transform-origin: center;
}
.burger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ----------------------------------------------------------------
   7. Hero
---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 65% 45%,
    rgba(90, 133, 215, 0.07) 0%,
    transparent 70%),
    var(--bg);
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero__glow {
  position: absolute;
  left: 0;
  top: 0;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(90,133,215,0.11) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(calc(50vw - 280px), calc(50vh - 280px));
  transition: transform 0.08s ease-out;
  will-change: transform;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 140px;
  max-width: 960px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid var(--blue-dim);
  padding: 6px 18px;
  margin-bottom: 36px;
}
.hero__eyebrow em {
  font-style: normal;
  color: #fff;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 28px;
}
.hero__title em,
.h2 em {
  font-style: normal;
  color: var(--blue);
}

.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.3px;
  max-width: 560px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.hero__cta .btn {
  flex: 0 0 auto;
  width: auto;
}


/* Hero Speaker Columns */
@keyframes speaker-in-left {
  from { transform: translateX(-120%); opacity: 0; }
  to   { transform: translateX(-12%);  opacity: 0.75; }
}
@keyframes speaker-in-right {
  from { transform: translateX(120%) scaleX(-1); opacity: 0; }
  to   { transform: translateX(12%)  scaleX(-1); opacity: 0.75; }
}
@keyframes speaker-in-down {
  from { opacity: 0; transform: translateX(calc(-50% + 60px)); }
  to   { opacity: 0.35; transform: translateX(-50%); }
}


.hero__speaker {
  position: absolute;
  bottom: 0;
  height: 88%;
  width: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 0%,
    black 18%,
    black 65%,
    transparent 100%);
  mask-image: linear-gradient(to bottom,
    transparent 0%,
    black 18%,
    black 65%,
    transparent 100%);
}
.hero__speaker--left {
  left: 0;
  transform: translateX(-12%);
  animation: speaker-in-left 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.hero__speaker--right {
  right: 0;
  transform: translateX(12%) scaleX(-1);
  animation: speaker-in-right 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.hero__speaker--mobile { display: none; }
@media (max-width: 1100px) {
  .hero__speaker { height: 70%; opacity: 0.5; }
}
@media (max-width: 768px) {
  .hero__speaker { display: none; }
  .hero__speaker--mobile {
    display: block;
    position: absolute;
    bottom: 10%;
    left: 65%;
    transform: translateX(-50%);
    height: 72%;
    width: auto;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 60%, transparent 100%);
    animation: speaker-in-down 2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
  }
}

/* ----------------------------------------------------------------
   8. Ticker
---------------------------------------------------------------- */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-dark);
  overflow: hidden;
  padding: 14px 0;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}
.ticker__track span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  flex-shrink: 0;
}
.ticker__dot {
  color: var(--blue) !important;
  font-size: 16px !important;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ----------------------------------------------------------------
   9. About
---------------------------------------------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__img-wrap {
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  min-height: 420px;
}
.about__img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s var(--ease);
}
.about__img-wrap:hover .about__img { opacity: 0.85; }

.about__left .label { text-align: left; }
.about__left .h2 { margin-bottom: 24px; }
.about__left .text-muted { margin-bottom: 18px; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat__n {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__n span { font-size: 28px; }
.stat__l {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* About visual */
.about__visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 5/6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(90,133,215,0.04) 0%, transparent 70%);
}

.speaker-art {
  position: relative;
  z-index: 1;
  width: 160px;
}
.speaker-art svg { width: 100%; height: auto; }

.about__visual-label {
  position: absolute;
  bottom: 20px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ----------------------------------------------------------------
   10. Meyer Sound
---------------------------------------------------------------- */
.meyer__top { margin-bottom: 56px; }
.meyer__top .label { text-align: left; }

.meyer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.meyer__brand-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-soft);
  position: sticky;
  top: 88px;
}

.meyer__logo-block {
  padding: 40px 32px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.meyer__logo-text {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 12px;
}
.meyer__logo-origin {
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 1px;
}

.meyer__cert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--blue);
}
.meyer__cert-check {
  font-size: 14px;
  color: var(--blue);
}

.meyer__intro { margin-bottom: 40px; }

/* Awards row */
.meyer__awards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 40px;
}
.award-item {
  background: var(--bg-dark);
  padding: 24px 16px;
  text-align: center;
}
.award-item__num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.award-item__num span { font-size: 18px; }
.award-item__desc {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* Features */
.meyer__features { display: flex; flex-direction: column; gap: 24px; }
.feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feat__icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.feat__icon svg { width: 18px; height: 18px; }
.feat__title  { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.feat__desc   { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ----------------------------------------------------------------
   History Slider (inside Meyer Sound section)
---------------------------------------------------------------- */
.history-slider {
  margin-top: 64px;
  padding-top: 40px;
}
/* Progress bar */
.hs-progress-bar {
  height: 2px;
  background: var(--border);
  margin-bottom: 32px;
  border-radius: 2px;
  overflow: hidden;
}
.hs-progress-fill {
  height: 100%;
  background: var(--blue);
  border-radius: 2px;
  transition: width 0.4s ease;
  width: 16.66%;
}

/* Track */
.history-slider__track-wrap { overflow: hidden; width: 100%; }
.history-slider__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

/* Slide */
.hs-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 48px 56px;
  min-height: 200px;
  display: flex;
  align-items: center;
}
.hs-slide__year-bg {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 900;
  font-family: var(--font-head);
  color: transparent;
  -webkit-text-stroke: 1px rgba(90,133,215,0.12);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
}
.hs-slide__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.hs-slide__year-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--blue);
  background: rgba(90,133,215,0.1);
  border: 1px solid rgba(90,133,215,0.25);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hs-slide__title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.3;
}
.hs-slide__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Steps nav */
.hs-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 24px;
  position: relative;
}
.hs-steps::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  height: 1px;
  background: var(--border);
}
.hs-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}
.hs-step__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  transition: background var(--dur), border-color var(--dur), transform var(--dur);
  position: relative;
  z-index: 1;
}
.hs-step:hover .hs-step__dot,
.hs-step--active .hs-step__dot {
  background: var(--blue);
  border-color: var(--blue);
  transform: scale(1.3);
}
.hs-step__year {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  transition: color var(--dur);
}
.hs-step--active .hs-step__year { color: var(--blue); }

@media (max-width: 600px) {
  .hs-slide { padding: 32px 28px; min-height: 180px; flex: 0 0 100%; min-width: 100%; max-width: 100%; }
  .hs-slide__year-bg { font-size: 80px; }
  .hs-step__year { font-size: 10px; }
}

/* ----------------------------------------------------------------
   11. Services
---------------------------------------------------------------- */
.history-services-divider {
  margin-top: 80px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
}

.svc-card {
  background: var(--bg);
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background var(--dur);
}
.svc-card:hover { background: var(--bg-card); }

.svc-card__num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 20px;
}
.svc-card__icon { width: 48px; height: 48px; margin-bottom: 20px; }
.svc-card__title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 12px;
}
.svc-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: auto;
}

/* ----------------------------------------------------------------
   12. Equipment !
---------------------------------------------------------------- */

/* Meyer brand image & video */
.meyer__logo-block--img { padding: 0; overflow: hidden; }
.meyer__video-wrap {
  width: 100%;
  flex: 1;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
  display: flex;
}
.meyer__video {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}
.meyer__brand-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* TIGRA Announce */
.tigra-announce {
  display: block;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 80px;
  min-height: 480px;
}
.tigra-announce__img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) contrast(1.1);
}
.tigra-announce__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 80px);
  max-width: 680px;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 70%, transparent 100%);
}
.tigra-announce__badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(90,133,215,0.12);
  border: 1px solid rgba(90,133,215,0.3);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  width: fit-content;
}
.tigra-announce__headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.tigra-announce__body {
  font-size: clamp(13px, 1.5vw, 15px);
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}
.tigra-announce__body strong {
  color: rgba(255,255,255,0.9);
}
@media (max-width: 600px) {
  .tigra-announce { min-height: 420px; }
  .tigra-announce__img { min-height: 420px; }
}

/* Panther Promo Banner */
.panther-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-soft);
  margin-top: 64px;
  margin-bottom: 0;
  overflow: hidden;
  min-height: 280px;
}
.panther-promo__img-wrap { overflow: hidden; }
.panther-promo__img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.panther-promo:hover .panther-promo__img { transform: scale(1.04); }
.panther-promo__body {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-card);
}
.panther-promo__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.panther-promo__headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 16px;
}
.panther-promo__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

.equip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
}

/* Flip Card */
.equip-card {
  perspective: 1000px;
  height: 300px;
  cursor: pointer;
}
.equip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.equip-card:hover .equip-card__inner {
  transform: rotateY(180deg);
}
.equip-card__front,
.equip-card__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}
.equip-card__front {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.equip-card__photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 20px;
  max-height: 220px;
}
.equip-card__back {
  background: var(--bg-alt);
  transform: rotateY(180deg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
}
.equip-card__icon { width: 48px; height: 48px; margin-bottom: 16px; }
.equip-card__title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.2;
}
.equip-card__desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.equip-card__models {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-bottom: 12px;
}
.equip-card__link {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: opacity var(--dur);
}
.equip-card__link:hover { opacity: 0.7; }

/* ----------------------------------------------------------------
   13. Projects
---------------------------------------------------------------- */
.proj__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.proj-card {
  background: var(--bg-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.proj-card:hover .proj-card__bg { transform: scale(1.05); }

.proj-card--large .proj-card__bg { height: 260px; }

/* Project background photos */
.proj-card__bg {
  flex: 1;
  min-height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
  overflow: hidden;
}

/* Event photos from MSSound archive */
.proj-bg-1  { background-image: url('../photos/venues/venue-gabala.jpg'); }          /* Qəbələ Klassik Musiqi Festivali */
.proj-bg-2  { background-image: url('../photos/venues/slide8_img29_23x1.jpg'); }     /* Formula 1 Grand Prix */
.proj-bg-3  { background-image: url('../photos/proj-mugam.jpg'); }                   /* Muğam Aləmi Festivali */
.proj-bg-4  { background-image: url('../photos/venues/slide8_img19_0x11.png'); }     /* Zəfər Günü səhnə */
.proj-bg-5  { background-image: url('../photos/venues/slide8_img20_8x11.jpg'); }     /* Zəfər Günü kütləvi */
.proj-bg-6  { background-image: url('../photos/venues/slide8_img18_24x9.png'); }     /* Qəbələ açıq hava konserti */
.proj-bg-7  { background-image: url('../images/jazz-fest.png'); }                    /* Baku International Jazz Festival */
.proj-bg-8  { background-image: url('../photos/venues/venue-piano-festival.png'); }  /* Fortepiano Festivali */
.proj-bg-9  { background-image: url('../images/winter-fairy.png'); }                 /* Qış Nağılı Festivali */
.proj-bg-10 { background-image: url('../images/shusha.png'); }                       /* Şuşa Klassik Musiqi Festivali */

.proj-card__body {
  padding: 20px 24px 18px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.proj-card__type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.proj-card__title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}
.proj-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.proj-card__year { color: var(--blue); font-weight: 600; }

/* ----------------------------------------------------------------
   Company History — Timeline
---------------------------------------------------------------- */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tl-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  padding: 24px 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--dur), box-shadow var(--dur);
  border-radius: 2px;
}
.tl-item:hover {
  border-top-color: #7aa3e8;
  box-shadow: 0 4px 24px rgba(90,133,215,0.12);
}
.tl-item:nth-child(2) { border-top-color: #4a9eff; }
.tl-item:nth-child(3) { border-top-color: #6b8fcf; }
.tl-item:nth-child(4) { border-top-color: #5a85d7; }
.tl-item:nth-child(5) { border-top-color: #3d7bd4; }
.tl-item:nth-child(6) { border-top-color: #fff; }

.tl-item__year {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--blue);
  background: rgba(90,133,215,0.1);
  border: 1px solid rgba(90,133,215,0.25);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
}

.tl-item__dot { display: none; }

.tl-item__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}
.tl-item__desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   Company Structure — Org Chart
---------------------------------------------------------------- */
.org-chart { text-align: center; }

.org-top {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.org-node--director {
  background: var(--bg-card);
  border: 1px solid var(--blue);
  padding: 20px 48px;
  display: inline-flex;
  align-items: center;
}
.org-node--director .org-node__title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
}

.org-line {
  width: 1px;
  height: 40px;
  background: var(--border-soft);
  margin: 0 auto;
}

.org-departments {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--border);
}

.org-node {
  background: var(--bg);
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: background var(--dur);
}
.org-node:hover { background: var(--bg-card); }

.org-node__icon {
  width: 36px;
  height: 36px;
  color: var(--blue);
  opacity: 0.7;
}
.org-node__icon svg { width: 100%; height: 100%; }

.org-node__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.3px;
}
.org-node:hover .org-node__title { color: var(--text); }
.org-node:hover .org-node__icon  { opacity: 1; }

/* Responsive */
@media (max-width: 1100px) {
  .org-departments { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 700px) {
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .org-departments { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .timeline { grid-template-columns: 1fr; }
  .org-departments { grid-template-columns: repeat(2, 1fr); }
}

/* ----------------------------------------------------------------
   14. Partners
---------------------------------------------------------------- */
.partners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.partners__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.partners__grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

.partner-card {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background var(--dur), transform var(--dur);
  min-height: 120px;
}
.partner-card:hover {
  background: var(--bg-card);
  transform: scale(1.03);
}

.partner-card__img {
  width: 100%;
  max-width: 180px;
  height: 56px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity var(--dur);
  mix-blend-mode: lighten;
}
.partner-card:hover .partner-card__img { opacity: 1; }

/* Merging logo has white background — invert to match dark theme */
.partner-card__img--invert {
  filter: invert(1);
}
.partner-card__img--lg {
  max-width: 260px;
  height: 80px;
}

/* ----------------------------------------------------------------
   15. Venues ticker
---------------------------------------------------------------- */
.venues-subheader {
  margin-top: 48px;
  margin-bottom: 2px;
}
.venues-subheader--mt { margin-top: 40px; }
.venues-subheader__title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  padding: 0 2px 8px;
}

.venues__grid {
  display: grid;
  gap: 20px;
}
.venues__grid--5 { grid-template-columns: repeat(3, 1fr); }
.venues__grid--4 { grid-template-columns: repeat(4, 1fr); }
.venues__grid--3 { grid-template-columns: repeat(3, 1fr); }

.venue-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg-card);
  cursor: default;
  transition: transform var(--dur), box-shadow var(--dur);
}
.venue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 1;
  position: relative;
}
.venue-card__name {
  padding: 16px 18px 12px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
  transition: color var(--dur);
  flex-shrink: 0;
}
.venue-card:hover .venue-card__name { color: var(--text); }
.venue-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  margin-top: auto;
}
.venue-card__placeholder {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(90,133,215,0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.venue-card__placeholder span {
  font-size: 48px;
  font-weight: 900;
  font-family: var(--font-head);
  color: rgba(90,133,215,0.2);
  line-height: 1;
}

/* ----------------------------------------------------------------
   15. Our Experience
---------------------------------------------------------------- */
.experience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.experience__video-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  display: flex;
  width: 100%;
  flex: 1;
}
.experience__video {
  width: 100%;
  height: 100%;
  max-height: 566px;
  min-height: 300px;
  object-fit: cover;
  display: block;
}
.experience__text { display: flex; flex-direction: column; justify-content: center; }
.experience__text .label { margin-bottom: 16px; }
.experience__text .h2    { margin-bottom: 24px; }
.experience__body {
  font-size: 16px;
  line-height: 1.8;
}
@media (max-width: 900px) {
  .experience__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ----------------------------------------------------------------
   16. Why MSSound
---------------------------------------------------------------- */
.why__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
}

.why-item {
  background: var(--bg-alt);
  padding: 44px 28px;
  transition: background var(--dur);
}
.why-item:hover { background: var(--bg-card); }

.why-item__num {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  color: rgba(90, 133, 215, 0.35);
  line-height: 1;
  margin-bottom: 20px;
}
.why-item__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}
.why-item__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   16. Contact
---------------------------------------------------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.citem {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.citem__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-soft);
  flex-shrink: 0;
}
.citem__icon svg { width: 18px; height: 18px; }
.citem__icon--gold { color: var(--blue); border-color: rgba(90,133,215,0.2); }
.citem__icon--wa   { color: #25D366;    border-color: rgba(37,211,102,0.2); }
.citem__icon--tg   { color: #229ED9;    border-color: rgba(34,158,217,0.2); }
.citem__icon--ig   { color: #E1306C;    border-color: rgba(225,48,108,0.2); }

.footer__social { display: flex; align-items: center; gap: 12px; }
.footer__social-link {
  color: var(--text-dim);
  transition: color var(--dur);
}
.footer__social-link--wa:hover    { color: #25D366; }
.footer__social-link--email:hover { color: var(--blue); }
.footer__social-link--ig:hover    { color: #E1306C; }

.citem__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.citem__val {
  font-size: 15px;
  color: var(--text);
  transition: color var(--dur);
}
a.citem__val:hover { color: var(--blue); }

/* Form */
.cform__group { margin-bottom: 20px; }
.cform__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.cform__input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--dur);
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.cform__input:focus { border-color: var(--blue); }
.cform__input::placeholder { color: var(--text-dim); }
.cform__textarea { resize: vertical; min-height: 110px; }

/* ----------------------------------------------------------------
   17. Footer
---------------------------------------------------------------- */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.footer__tagline {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 10px;
}

.footer__nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--text-dim);
  transition: color var(--dur);
  text-transform: uppercase;
  font-weight: 500;
}
.footer__nav a:hover { color: var(--blue); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy,
.footer__reg {
  font-size: 12px;
  color: var(--text-dim);
}

/* ----------------------------------------------------------------
   18. Mobile nav (overlay)
---------------------------------------------------------------- */
.nav.is-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 150px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.98);
  z-index: 850;
  align-items: center;
  justify-content: center;
}
.header.is-scrolled ~ .nav.is-open {
  top: 84px;
}
.nav.is-open .nav__list {
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.nav.is-open .nav__link {
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.nav.is-open .nav__link:hover { color: var(--blue); }

/* ----------------------------------------------------------------
   19. Responsive
---------------------------------------------------------------- */
@media (max-height: 755px) {
  .hero { min-height: 900px; }
}

@media (max-width: 1100px) {
  .venues__grid--5 { grid-template-columns: repeat(3, 1fr); }
  .venues__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .partners__grid,
  .partners__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .meyer__grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
  .meyer__awards   { grid-template-columns: repeat(2, 1fr); }

  /* 5-item grids: row1=3 items, row2=2 items (6-col base) */
  .services__grid,
  .equip__grid,
  .why__grid,
  .partners__grid--5 { grid-template-columns: repeat(6, 1fr); }

  .services__grid    > *,
  .equip__grid       > *,
  .why__grid         > *,
  .partners__grid--5 > * { grid-column: span 2; }

  .services__grid    > :nth-child(n+4),
  .equip__grid       > :nth-child(n+4),
  .why__grid         > :nth-child(n+4),
  .partners__grid--5 > :nth-child(n+4) { grid-column: span 3; }
}

@media (max-width: 900px) {
  .nav--desktop { display: none; }
  .burger { display: flex; }

  .about__grid  { grid-template-columns: 1fr; gap: 48px; }
  .about__img-wrap { min-height: 280px; padding: 32px 24px; }

  .meyer__grid  { grid-template-columns: 1fr; }
  .meyer__brand-card { position: static; flex-direction: row; }
  .meyer__logo-block { border-bottom: none; border-right: 1px solid var(--border); flex: 1; }
  .meyer__brand-img { height: 100%; min-height: 160px; object-fit: contain; background: var(--bg-card); padding: 12px; }
  .meyer__cert  { flex: 1; }

  .panther-promo { grid-template-columns: 1fr 1fr; }
  .panther-promo__body { padding: 32px 36px; }

  .proj__grid      { grid-template-columns: repeat(2, 1fr); }
  .proj__grid      > :last-child:nth-child(odd) { grid-column: 1 / -1; }
  .partners__grid  { grid-template-columns: repeat(2, 1fr); }

  .contact__grid { grid-template-columns: 1fr; gap: 48px; }

  .venues__grid--5,
  .venues__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .venues__grid--3 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .section { padding: 48px 0; }
  :root { --pad-x: 16px; }

  .panther-promo  { grid-template-columns: 1fr; }
  .panther-promo__img { height: 240px; }
  .panther-promo__body { padding: 28px 24px; }
  .partners__grid { grid-template-columns: repeat(2, 1fr); }

  .about__stats   { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat__n        { font-size: 32px; }

  .meyer__awards  { grid-template-columns: repeat(2, 1fr); }
  .meyer__brand-card { flex-direction: column; }
  .meyer__logo-block { border-right: none; border-bottom: 1px solid var(--border); }
  .meyer__brand-img  { height: auto; max-height: 320px; object-fit: contain; background: var(--bg-card); padding: 16px; }

  .footer__top { flex-direction: column; gap: 24px; }
  .footer__nav { gap: 16px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__title { letter-spacing: -0.5px; }
  .hero__cta   { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }

  .services__grid,
  .equip__grid,
  .why__grid,
  .partners__grid--5 { grid-template-columns: repeat(2, 1fr); }

  .services__grid    > *,
  .equip__grid       > *,
  .why__grid         > *,
  .partners__grid--5 > * { grid-column: span 1; }

  .services__grid    > :nth-child(n+4),
  .equip__grid       > :nth-child(n+4),
  .why__grid         > :nth-child(n+4),
  .partners__grid--5 > :nth-child(n+4) { grid-column: span 1; }

  .services__grid    > :last-child:nth-child(odd),
  .equip__grid       > :last-child:nth-child(odd),
  .why__grid         > :last-child:nth-child(odd),
  .partners__grid--5 > :last-child:nth-child(odd) { grid-column: 1 / -1; }

  .proj__grid        { grid-template-columns: 1fr; }
  .venues__grid--5,
  .venues__grid--4,
  .venues__grid--3   { grid-template-columns: 1fr; }

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

/* ----------------------------------------------------------------
   20. Video play button & modal
---------------------------------------------------------------- */
.meyer__video-wrap,
.experience__video-wrap { position: relative; }

.video-clickable {
  cursor: pointer;
}
.video-play-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 2px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  pointer-events: none;
  transition: background 0.25s, transform 0.25s;
}
.video-clickable:hover .video-play-center {
  background: rgba(255,255,255,0.25);
  transform: translate(-50%, -50%) scale(1.08);
}

/* Modal */
.vmodal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.vmodal.is-open {
  opacity: 1;
  pointer-events: all;
}
.vmodal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
}
.vmodal__inner {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 1100px;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s;
}
.vmodal.is-open .vmodal__inner { transform: scale(1); }
.vmodal--vertical .vmodal__inner { height: 80vh; width: calc(80vh * 9 / 16); max-width: 90vw; }
/* Plyr inside modal */
.vmodal__inner .plyr {
  width: 100%;
  max-height: 80vh;
  --plyr-color-main: #5A85D7;
  --plyr-video-background: #000;
  --plyr-font-family: 'Inter', sans-serif;
  --plyr-control-radius: 4px;
  --plyr-range-thumb-height: 14px;
  --plyr-range-fill-background: #c9a84c;
}

/* ----------------------------------------------------------------
   21. Form validation states
---------------------------------------------------------------- */
.cform__input.is-error {
  border-color: #e05252;
  background: rgba(224, 82, 82, 0.05);
}

.cform__input.is-valid {
  border-color: #4caf72;
}

.cform__error {
  min-height: 18px;
  font-size: 0.75rem;
  color: #e05252;
  margin-top: 5px;
  line-height: 1.4;
}

.cform__success {
  display: none;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 12px;
  text-align: center;
  background: rgba(76, 175, 114, 0.12);
  border: 1px solid #4caf72;
  color: #4caf72;
}

.cform__success.is-visible {
  display: block;
  animation: fadeInDown 0.3s ease;
}

.cform__success.is-error-msg {
  background: rgba(224, 82, 82, 0.1);
  border-color: #e05252;
  color: #e05252;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.btn--loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn--sent {
  background: #2d6a2d !important;
  border-color: #2d6a2d !important;
  cursor: default !important;
  opacity: 0.85;
}

/* ----------------------------------------------------------------
   21. Utility
---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .ticker__track { animation: none; }
}
