/* ===== VARIABLES ===== */
:root {
  --bg: #FAFAF8;
  --bg-card: #FFFFFF;
  --text: #1C1C1C;
  --text-muted: #6B6B6B;
  --accent: #C9A96E;
  --accent-hover: #B8935A;
  --accent-light: rgba(201,169,110,0.12);
  --border: #E8D5C0;
  --shadow: rgba(0, 0, 0, 0.06);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-width: 1140px;
  --section-padding: 96px 24px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: 0.032;
  animation: grain 9s steps(8) infinite;
}
@keyframes grain {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(2%, -3%); }
  50%  { transform: translate(-2%, 2%); }
  75%  { transform: translate(3%, 2%); }
  100% { transform: translate(0, 0); }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
h3 { font-size: 1.2rem; margin-bottom: 8px; }

/* ===== UTILITIES ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-padding); }
.section-title { text-align: center; margin-bottom: 56px; }
.section-title h2 {
  letter-spacing: -0.01em;
}
.section-title span {
  display: block;
  height: 1px;
  width: 120px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  margin: 20px auto 0;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in { opacity: 0; transform: translateY(24px) scale(0.99); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0) scale(1); }

/* ===== HEADER ===== */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 0;
}
#header.scrolled {
  background: rgba(250, 250, 248, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fff;
  transition: color 0.3s;
  letter-spacing: 0.02em;
}
#header.scrolled .nav-logo { color: var(--text); }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase; color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
#header.scrolled .nav-links a { color: var(--text); }
#header.scrolled .nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 4px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent-hover) !important; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: #fff; transition: background 0.3s;
}
#header.scrolled .nav-burger span { background: var(--text); }

/* ===== HERO ===== */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: #2C1A0E; /* fallback пока грузится фото */
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  opacity: 0; transition: opacity 1.2s ease;
  transform-origin: center center;
}
.hero-img.loaded {
  opacity: 1;
  animation: hero-kb 28s ease-in-out infinite alternate;
}
@keyframes hero-kb {
  0%   { transform: scale(1.0) translate(0%, 0%); }
  100% { transform: scale(1.09) translate(-1.2%, 0.6%); }
}

/* Световой блик — диагональный прожектор */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    118deg,
    transparent 0%,
    transparent 32%,
    rgba(255, 235, 175, 0.055) 44%,
    rgba(201, 169, 110, 0.11) 50%,
    rgba(255, 235, 175, 0.055) 56%,
    transparent 68%,
    transparent 100%
  );
  background-size: 280% 100%;
  animation: hero-glare 14s ease-in-out infinite;
}
@keyframes hero-glare {
  0%   { background-position: -100% 0; opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { background-position: 160% 0; opacity: 0; }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 50% 52%, rgba(5,2,1,0.5) 0%, transparent 100%),
    linear-gradient(
      to bottom,
      rgba(8,4,2,0.62) 0%,
      rgba(8,4,2,0.38) 30%,
      rgba(8,4,2,0.48) 60%,
      rgba(4,2,1,0.90) 100%
    );
}
[data-theme="dark"] .hero-overlay {
  background:
    radial-gradient(ellipse 75% 65% at 50% 52%, rgba(2,1,0,0.62) 0%, transparent 100%),
    linear-gradient(
      to bottom,
      rgba(4,2,1,0.75) 0%,
      rgba(4,2,1,0.52) 30%,
      rgba(4,2,1,0.62) 60%,
      rgba(2,1,0,0.94) 100%
    );
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center; color: #fff;
  padding-top: 100px;
}
.hero-label {
  font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 14px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.8);
}
.hero-label::before,
.hero-label::after {
  content: '';
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--accent);
  opacity: 0.65;
}
.hero-content h1 {
  color: #fff; margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.7), 0 4px 64px rgba(0,0,0,0.4);
  letter-spacing: 0.01em;
}
.hero-sub {
  font-family: var(--font-accent);
  font-size: 1.35rem; color: rgba(255,255,255,0.85);
  margin-bottom: 40px; line-height: 1.9;
  text-shadow: 0 1px 16px rgba(0,0,0,0.65);
  font-style: italic;
  letter-spacing: 0.02em;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 4px;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; transition: all 0.2s ease; cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary,
.btn-accent { background: var(--accent); color: #fff; }
.btn-primary:hover,
.btn-accent:hover { background: var(--accent-hover); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,169,110,0.4); }
.btn-ghost { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.hero-tv {
  font-size: 0.8rem; color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); animation: bounce 2s infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll { animation: none; }
  .fade-in { transition: none; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-photo { position: relative; }
.about-photo::before {
  content: '';
  position: absolute;
  inset: -10px -10px -10px 10px;
  border: 1px solid rgba(201,169,110,0.28);
  border-radius: 10px;
  z-index: 0;
  pointer-events: none;
}
.photo-placeholder {
  aspect-ratio: 3/4; background: var(--border);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; color: var(--text-muted);
  font-size: 0.9rem;
}
.about-photo img {
  border-radius: 8px; width: 100%;
  position: relative; z-index: 1;
  box-shadow: 0 20px 56px rgba(0,0,0,0.13);
}
.about-label {
  font-family: var(--font-accent);
  font-size: 1rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 12px;
  font-style: italic;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.about-text p strong { color: var(--text); }
.about-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px;
}
.about-tags span {
  padding: 6px 16px; border: 1px solid var(--border);
  border-radius: 100px; font-size: 0.8rem; color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.about-tags span:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== FORMATS ===== */
.formats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.format-card {
  background: var(--bg-card); border-radius: 12px;
  padding: 36px 28px; text-align: center;
  box-shadow: 0 2px 16px var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative; overflow: hidden;
}
.format-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.format-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.11);
}
.format-card:hover::before {
  transform: scaleX(1);
}
.format-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(201,169,110,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--accent);
}
.format-card h3 { margin-bottom: 12px; }
.format-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ===== PLAYER ===== */
.player-grid {
  display: flex; flex-direction: column;
  gap: 12px;
  max-width: 720px; margin: 0 auto;
}
.track-card {
  display: flex; align-items: center; gap: 20px;
  background: var(--bg-card); border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 2px 16px var(--shadow);
  border-left: 3px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-left-color 0.25s ease;
}
.track-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-left-color: var(--accent);
}
.track-num {
  font-family: var(--font-heading);
  font-size: 1.6rem; line-height: 1;
  color: var(--accent); opacity: 0.5;
  min-width: 36px;
}
.track-info { flex: 1; }
.track-title {
  display: block;
  font-size: 1rem; font-weight: 600;
  color: var(--text); margin-bottom: 4px;
}
.track-meta { font-size: 0.8rem; color: var(--text-muted); }
.track-play {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}
.track-card:hover .track-play {
  background: var(--accent-hover);
  transform: scale(1.1);
}
.track-embed {
  margin-top: 10px;
}
.track-embed iframe {
  display: block;
  border-radius: 6px;
  border: none;
}
.track-ext {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  align-self: flex-start;
  color: var(--text-muted);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.track-ext:hover { color: var(--accent); background: rgba(201,169,110,0.08); }

/* ===== VIDEO ===== */
.video-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.video-thumb { display: block; }
.video-wrap {
  position: relative; padding-bottom: 56.25%;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow);
}
.video-wrap iframe,
.video-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background 0.2s;
}
.video-play svg {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.92);
  color: var(--accent); border-radius: 50%;
  padding: 12px; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.video-thumb:hover .video-play { background: rgba(0,0,0,0.4); }
.video-thumb:hover .video-play svg { transform: scale(1.1); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.video-caption {
  margin-top: 12px; font-size: 0.85rem;
  color: var(--text-muted); text-align: center;
}

/* ===== VOLGA24 CARD ===== */
.video-placeholder {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.volga24-bg {
  background: linear-gradient(135deg, #0d1f4a 0%, #1e3a7d 55%, #0d1f4a 100%);
  display: flex; align-items: center; justify-content: center;
}
.volga24-badge {
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.12em;
  font-style: italic;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* ===== GALLERY ===== */
.gallery-track-outer {
  overflow: hidden;
  position: relative;
  padding: 8px 0 40px;
}
.gallery-track-outer::before,
.gallery-track-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 40px;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.gallery-track-outer::before { left: 0; background: linear-gradient(to right, #F3EDE4, transparent); }
.gallery-track-outer::after  { right: 0; background: linear-gradient(to left, #F3EDE4, transparent); }
.gallery-track {
  display: flex;
  gap: 12px;
  animation: gallery-scroll 170s linear infinite;
  width: max-content;
  will-change: transform;
}
.gallery-track-outer:hover .gallery-track {
  animation-play-state: paused;
}
@keyframes gallery-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.gallery-photo {
  width: 240px; height: 240px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  cursor: pointer;
  position: relative;
}
.gallery-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
  border-radius: 10px;
}
.gallery-photo:hover::after {
  background: rgba(0,0,0,0.18);
}
.gallery-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-photo:hover img {
  transform: scale(1.07);
}

/* ===== VIDEO MODAL ===== */
.video-modal {
  position: fixed; inset: 0; z-index: 10001;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-modal.active { opacity: 1; pointer-events: all; }
.video-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(5,2,1,0.94); cursor: pointer;
}
.video-modal-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none;
  color: rgba(255,255,255,0.6); font-size: 1.8rem;
  cursor: pointer; z-index: 2; line-height: 1;
  transition: color 0.2s; font-family: var(--font-body);
}
.video-modal-close:hover { color: var(--accent); }
.video-modal-content {
  position: relative; z-index: 1;
  width: 90vw; max-width: 960px;
}
.video-modal-wrap {
  position: relative; padding-bottom: 56.25%;
  border-radius: 12px; overflow: hidden;
  background: #000;
  box-shadow: 0 32px 80px rgba(0,0,0,0.8);
}
.video-modal-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}

/* ===== PHOTO MODAL ===== */
.photo-modal {
  position: fixed; inset: 0;
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.photo-modal.active {
  opacity: 1; pointer-events: all;
}
.photo-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(10,5,2,0.93);
  cursor: pointer;
}
.photo-modal-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none;
  color: rgba(255,255,255,0.6); font-size: 1.8rem;
  cursor: pointer; z-index: 1; line-height: 1;
  transition: color 0.2s; font-family: var(--font-body);
}
.photo-modal-close:hover { color: var(--accent); }
.photo-modal-img {
  position: relative; z-index: 1;
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  transition: opacity 0.2s ease;
}
.photo-modal-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  width: 48px; height: 48px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
  font-size: 1.2rem;
}
.photo-modal-nav:hover { background: rgba(201,169,110,0.25); color: var(--accent); }
.photo-modal-prev { left: 20px; }
.photo-modal-next { right: 20px; }
.photo-modal-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.45);
  font-size: 0.78rem; letter-spacing: 0.1em;
  font-family: var(--font-body);
}

/* ===== NEWS ===== */
.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px; align-items: start;
}
.news-card {
  background: var(--bg-card); border-radius: 12px;
  padding: 32px; box-shadow: 0 2px 16px var(--shadow);
  position: relative;
}
.news-card--featured { border-top: 3px solid var(--accent); }
.news-badge {
  display: inline-block;
  background: var(--accent); color: #fff;
  font-family: var(--font-accent);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em;
  font-style: italic; padding: 3px 14px;
  border-radius: 100px; margin-bottom: 12px;
}
.news-date {
  display: block; font-size: 0.8rem;
  color: var(--text-muted); margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.news-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.news-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.news-link {
  display: inline-block; margin-top: 16px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--accent); transition: color 0.2s;
}
.news-link:hover { color: var(--accent-hover); }

/* ===== GEO ===== */
.geo-wrap {
  display: flex; gap: 40px; align-items: center;
  max-width: 720px; margin: 0 auto;
}
.geo-icon {
  flex-shrink: 0; width: 80px; height: 80px;
  background: rgba(201,169,110,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.geo-wrap h2 { margin-bottom: 12px; }
.geo-wrap p { color: var(--text-muted); }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start;
}
.pricing-card {
  background: var(--bg-card); border-radius: 16px;
  padding: 40px 32px; position: relative;
  box-shadow: 0 2px 16px var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.11);
}
.pricing-card--featured {
  border: 2px solid var(--accent);
  background: linear-gradient(160deg, var(--bg-card) 55%, rgba(201,169,110,0.06));
  padding: 52px 32px 40px;
  box-shadow: 0 8px 40px rgba(201,169,110,0.18);
}
.pricing-card--featured:hover { transform: translateY(-5px); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-family: var(--font-accent); font-style: italic;
  font-size: 0.9rem; padding: 4px 20px; border-radius: 100px;
  white-space: nowrap;
}
.pricing-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--accent);
}
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.pricing-duration {
  font-family: var(--font-accent); font-style: italic;
  color: var(--accent); font-size: 1rem; margin-bottom: 24px;
}
.pricing-features {
  list-style: none; margin-bottom: 32px;
}
.pricing-features li {
  font-size: 0.88rem; color: var(--text-muted);
  padding: 9px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px; line-height: 1.5;
}
.pricing-features li::before {
  content: '◆'; color: var(--accent);
  font-size: 0.45rem; flex-shrink: 0;
}
.pricing-cta { width: 100%; justify-content: center; }
.pricing-note {
  text-align: center; color: var(--text-muted);
  font-family: var(--font-accent); font-style: italic;
  font-size: 1rem; margin-top: 48px;
  max-width: 540px; margin-left: auto; margin-right: auto;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  background: var(--bg-card); border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 2px 16px var(--shadow); position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 12px; left: 22px;
  font-family: var(--font-heading); font-size: 6rem; line-height: 1;
  color: rgba(201,169,110,0.13); pointer-events: none;
}
.testimonial-card p {
  font-family: var(--font-accent); font-style: italic;
  font-size: 1.2rem; line-height: 1.85;
  color: var(--text); margin-bottom: 24px; position: relative; z-index: 1;
}
.testimonial-card footer {
  border-top: 1px solid var(--border); padding-top: 16px;
}
.testimonial-card footer strong {
  display: block; font-size: 0.9rem; color: var(--text); margin-bottom: 3px;
}
.testimonial-card footer span {
  font-size: 0.8rem; color: var(--accent); letter-spacing: 0.03em;
}

/* ===== BOOKING FORM ===== */
.contacts-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start;
}
.booking-form {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--bg-card); border-radius: 16px;
  padding: 36px; box-shadow: 0 2px 16px var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 11px 14px;
  font-size: 0.93rem; font-family: var(--font-body);
  color: var(--text); transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(107,107,107,0.4); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px; cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 88px; line-height: 1.6; }
.form-submit { margin-top: 6px; width: 100%; justify-content: center; }
.contacts-info h3 { font-size: 1.5rem; margin-bottom: 12px; }
.contacts-info .contacts-sub { text-align: left; color: var(--text-muted); margin-bottom: 28px; }
.contacts-info .contacts-actions {
  flex-direction: column; align-items: stretch;
  margin-bottom: 36px; gap: 10px;
}
.contacts-info .contacts-links {
  flex-direction: column; gap: 14px; align-items: flex-start;
}
.contacts-info .contacts-actions .btn { width: 100%; justify-content: center; }

/* ===== CONTACTS ===== */
#contacts { position: relative; overflow: hidden; }
#contacts::before {
  content: '♪';
  position: absolute;
  right: -2%; top: 50%; transform: translateY(-50%);
  font-size: clamp(18rem, 28vw, 32rem);
  font-family: var(--font-heading);
  color: rgba(201,169,110,0.04);
  line-height: 1;
  pointer-events: none; user-select: none;
}
.contacts-sub { line-height: 1.8; }
.contacts-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.contacts-links { display: flex; flex-wrap: wrap; gap: 16px; }
.contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: var(--text-muted);
  transition: color 0.2s;
}
.contact-item:hover { color: var(--accent); }

/* ===== THEME TOGGLE ===== */
.nav-theme {
  background: none; border: none; cursor: pointer; padding: 6px;
  border-radius: 6px; line-height: 0;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s, background 0.2s;
  margin-right: 4px;
}
.nav-theme:hover { color: var(--accent); }
#header.scrolled .nav-theme { color: var(--text-muted); }
#header.scrolled .nav-theme:hover { color: var(--accent); }
.theme-icon { display: block; }
.theme-moon { display: none; }
[data-theme="dark"] .theme-sun { display: none; }
[data-theme="dark"] .theme-moon { display: block; }

/* ===== DARK THEME ===== */
[data-theme="dark"] {
  --bg: #120E0B;
  --bg-card: #1C1712;
  --text: #EDE4D5;
  --text-muted: #8A7A68;
  --border: #3A2E22;
  --shadow: rgba(0, 0, 0, 0.45);
  --accent-light: rgba(201,169,110,0.1);
}
[data-theme="dark"] .section--alt { background: #18130F; }
[data-theme="dark"] #header.scrolled {
  background: rgba(18,14,11,0.97);
  box-shadow: 0 1px 0 #3A2E22;
}
[data-theme="dark"] .gallery-track-outer::before { background: linear-gradient(to right, #18130F, transparent); }
[data-theme="dark"] .gallery-track-outer::after  { background: linear-gradient(to left, #18130F, transparent); }
[data-theme="dark"] .nav-links {
  background: rgba(18,14,11,0.98);
}
[data-theme="dark"] .pricing-card--featured {
  background: linear-gradient(160deg, #221C15 55%, rgba(201,169,110,0.08));
}
[data-theme="dark"] body::after { opacity: 0.05; }

/* ===== SECTION VARIANTS ===== */
.section--alt { background: #F3EDE4; }

/* ===== ABOUT STATS ===== */
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; margin-top: 56px;
  border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; background: var(--border);
}
.stat-item {
  background: var(--bg-card);
  padding: 28px 24px; text-align: center;
  display: flex; flex-direction: column; gap: 6px;
  transition: background 0.2s;
}
.stat-item:hover { background: var(--accent-light); }
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--accent); line-height: 1;
}
.stat-label {
  font-size: 0.78rem; color: var(--text-muted);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 2px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item[open] {
  box-shadow: 0 4px 24px var(--shadow);
}
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600; font-size: 0.97rem;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem; font-weight: 300;
  color: var(--accent); flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.75;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 9000;
  width: 60px; height: 60px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}
.whatsapp-float::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: wa-pulse 2.5s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ===== FOOTER ===== */
#footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
}
#footer p { font-size: 0.8rem; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .formats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card--featured { padding: 52px 28px 40px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .video-grid .video-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }
  .contacts-grid { grid-template-columns: 1fr; gap: 48px; }
  .contacts-info .contacts-actions { flex-direction: row; }
  .contacts-info .contacts-actions .btn { width: auto; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card--featured { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-padding: 64px 20px; }

  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: fixed; inset: 72px 0 0 0;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(12px);
    padding: 32px 24px;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: 16px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text) !important;
    font-size: 1rem;
  }
  .nav-cta { border: none !important; padding: 16px 0 !important; }
  .nav-burger { display: flex; }

  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  .formats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .format-card { padding: 28px 20px; }

  .video-grid { grid-template-columns: 1fr; }
  .video-grid .video-card:last-child { max-width: 100%; }

  .track-embed { display: none; }
  .track-ext {
    width: 44px; height: 44px;
    background: var(--accent); border-radius: 50%;
    color: #fff;
  }
  .track-ext:hover { background: var(--accent-hover); }

  .news-grid { grid-template-columns: 1fr; }
  .news-card--featured { grid-column: auto; }

  .pricing-grid { max-width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contacts-info .contacts-actions { flex-direction: column; }
  .contacts-info .contacts-actions .btn { width: 100%; justify-content: center; }

  .geo-wrap { flex-direction: column; text-align: center; gap: 24px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }

  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .formats-grid { grid-template-columns: 1fr; }
}

/* ===== QUIZ STEPPER ===== */
.quiz-wrap {
  background: var(--bg-card); border-radius: 16px;
  padding: 36px; box-shadow: 0 2px 16px var(--shadow);
}
.quiz-progress {
  height: 3px; background: var(--border); border-radius: 2px;
  margin-bottom: 28px; overflow: hidden;
}
.quiz-progress-bar {
  height: 100%; background: var(--accent);
  transition: width 0.4s ease; border-radius: 2px;
  width: 33%;
}
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-step-num {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.quiz-q { font-size: 1.25rem; margin-bottom: 20px; color: var(--text); }
.quiz-options {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 4px;
}
.quiz-opt {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 18px 12px; background: var(--bg);
  border: 1.5px solid var(--border); border-radius: 12px; cursor: pointer;
  font-size: 0.9rem; font-family: var(--font-body); color: var(--text);
  transition: all 0.2s;
}
.quiz-opt:hover, .quiz-opt.selected {
  border-color: var(--accent); background: var(--accent-light); color: var(--accent);
}
.quiz-opt-icon { font-size: 1.8rem; line-height: 1; }
.quiz-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 20px; }
.quiz-back-btn {
  background: none; border: 1.5px solid var(--border);
  color: var(--text-muted); font-size: 0.85rem; padding: 10px 20px;
}
.quiz-back-btn:hover { border-color: var(--accent); color: var(--accent); }
.quiz-checks { display: flex; flex-direction: column; gap: 8px; }
.quiz-check-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  border: 1.5px solid var(--border); border-radius: 8px; cursor: pointer;
  transition: all 0.2s; font-size: 0.9rem; color: var(--text);
}
.quiz-check-item:hover { border-color: var(--accent); background: var(--accent-light); }
.quiz-check-item input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--accent);
  flex-shrink: 0; cursor: pointer;
}
.quiz-check-item:has(input:checked) { border-color: var(--accent); background: var(--accent-light); }

/* ===== REPERTOIRE ===== */
.repertoire-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 36px;
}
.rep-filter {
  padding: 8px 20px; background: none;
  border: 1.5px solid var(--border); border-radius: 100px; cursor: pointer;
  font-size: 0.83rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--text-muted); font-family: var(--font-body); transition: all 0.2s;
}
.rep-filter:hover { border-color: var(--accent); color: var(--accent); }
.rep-filter.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.repertoire-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 32px;
}
.rep-item {
  display: flex; align-items: center; gap: 10px; padding: 13px 16px;
  background: var(--bg-card); border-radius: 10px;
  box-shadow: 0 1px 8px var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.25s;
}
.rep-item:hover { transform: translateY(-2px); box-shadow: 0 4px 16px var(--shadow); }
.rep-item.hidden { display: none; }
.rep-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.rep-dot--own    { background: var(--accent); }
.rep-dot--pop    { background: #E57373; }
.rep-dot--rock   { background: #7986CB; }
.rep-dot--shanson { background: #66BB6A; }
.rep-title { font-size: 0.87rem; font-weight: 500; color: var(--text); line-height: 1.3; flex: 1; }
.rep-tag {
  font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.05em;
  text-transform: uppercase; background: var(--bg); border-radius: 4px;
  padding: 2px 7px; flex-shrink: 0; white-space: nowrap;
}
.rep-item[data-genre="own"] .rep-tag { background: var(--accent-light); color: var(--accent); }
.repertoire-note {
  text-align: center; color: var(--text-muted);
  font-family: var(--font-accent); font-style: italic; font-size: 1rem;
}
@media (max-width: 1024px) { .repertoire-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .repertoire-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .repertoire-grid { grid-template-columns: 1fr; } }

/* ===== AVAILABILITY ===== */
.avail-block {
  margin-top: 48px; border-top: 1px solid var(--border); padding-top: 40px;
}
.avail-block h3 { font-size: 1.2rem; margin-bottom: 4px; }
.avail-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.avail-months { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.avail-month-name {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}
.avail-days {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px;
}
.avail-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 500; border-radius: 4px; line-height: 1;
}
.avail-day--past   { color: var(--border); }
.avail-day--busy   { background: rgba(201,169,110,0.15); color: var(--accent); text-decoration: line-through; }
.avail-day--free   { background: rgba(102,187,106,0.15); color: #4CAF50; font-weight: 600; }
.avail-legend { display: flex; gap: 20px; margin-top: 16px; flex-wrap: wrap; }
.avail-legend-item { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-muted); }
.avail-legend-dot { width: 10px; height: 10px; border-radius: 2px; }
.avail-legend-dot--free { background: rgba(102,187,106,0.4); }
.avail-legend-dot--busy { background: rgba(201,169,110,0.4); }
@media (max-width: 768px) { .avail-months { grid-template-columns: 1fr; } }

/* ===== REPLY BADGE ===== */
.reply-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.25);
  border-radius: 100px; padding: 4px 14px;
  font-size: 0.75rem; font-weight: 600; color: #219C58;
  letter-spacing: 0.04em; margin-bottom: 16px;
}
.reply-badge::before { content: '⚡'; font-size: 0.9em; }
[data-theme="dark"] .reply-badge { color: #66BB6A; background: rgba(37,211,102,0.08); }
