/* ============================================================
   FIEB MEDIA GROUP — Malpera Fermî
   Zimanê malperê: Kurdî (Kurmancî)
   Versiyon: 2.0 Professional
   ============================================================ */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Playfair+Display:wght@700;900&display=swap');

/* ===== TOKENS ===== */
:root {
  --red:        #c40000;
  --red-dark:   #960000;
  --red-glow:   rgba(196,0,0,0.25);
  --navy:       #003366;
  --navy-deep:  #001f40;
  --dark:       #080f1a;
  --dark2:      #0d1a2e;
  --light:      #ffffff;
  --gray:       #f4f6f9;
  --text:       #1a1a2e;
  --muted:      #6b7280;
  --glass:      rgba(8,15,26,0.82);
  --glass-light:rgba(255,255,255,0.06);
  --border:     rgba(255,255,255,0.10);
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.22);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans', sans-serif;
  background: var(--gray);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
ul  { list-style: none; }
a   { text-decoration: none; color: inherit; }

/* ===== SKIP LINK (Accessibility) ===== */
.skip-link {
  position: absolute;
  top: -50px;
  left: 0;
  background: var(--red);
  color: #fff;
  padding: 8px 16px;
  z-index: 10000;
  border-radius: 0 0 8px 0;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 80px;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

header.scrolled {
  background: rgba(8,15,26,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.logo-link img {
  height: 110px;
  width: auto;
  object-fit: contain;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--light);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--transition);
}

nav a:hover,
nav a.active {
  color: var(--light);
  background: var(--glass-light);
}

nav a:hover::after,
nav a.active::after {
  width: 60%;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: url('../img/hero.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,15,26,0.92) 0%,
    rgba(0,20,50,0.70) 50%,
    rgba(0,0,0,0.20) 100%
  );
}

.hero-content {
  position: relative;
  padding: 120px 60px 80px;
  max-width: 680px;
  color: var(--light);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--red);
  color: var(--light);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--red-glow);
}

.btn-outline {
  background: transparent;
  color: var(--light);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--light);
  background: rgba(255,255,255,0.1);
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.section-title.light { color: var(--light); }

.section-line {
  width: 48px; height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ============================================================
   BRANDS / RADYO
   ============================================================ */
.brands {
  background: var(--light);
  padding: 80px 20px;
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.brand-logos img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  padding: 14px;
  border: 3px solid #e8ecf0;
  cursor: pointer;
  object-fit: contain;
  background: var(--light);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.brand-logos img:hover {
  border-color: var(--red);
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 16px 40px var(--red-glow);
}

.brand-logos img.active-radio {
  border-color: var(--red);
  box-shadow: 0 0 0 4px var(--red-glow);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 80px 20px;
  background: var(--gray);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.stat p {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-images img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-images img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 80px 20px;
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--gray);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(196,0,0,0.15);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: var(--light);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(196,0,0,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--red);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--red);
  color: var(--light);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--red-dark) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -150px; right: -100px;
}

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--light);
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255,255,255,0.70);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  color: var(--light);
  padding: 64px 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 52px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.60);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--light);
  padding-left: 4px;
}

.footer-col address {
  font-style: normal;
  color: rgba(255,255,255,0.60);
  font-size: 0.88rem;
  line-height: 1.8;
}

.footer-col address a {
  color: rgba(255,255,255,0.60);
  transition: var(--transition);
}

.footer-col address a:hover {
  color: var(--light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.40);
  font-size: 0.82rem;
}

.social {
  display: flex;
  gap: 12px;
}

.social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.60);
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}

.social a:hover {
  background: var(--red);
  color: var(--light);
  border-color: var(--red);
  transform: translateY(-2px);
}

/* ============================================================
   RADIO PLAYER
   ============================================================ */
.player {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 860px);
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  color: var(--light);
  z-index: 999;
  opacity: 1;
  transition: opacity 0.5s, transform 0.5s;
}

.player.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}

.player-cover {
  width: 52px; height: 52px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.15);
}

.player-info {
  flex: 1;
  min-width: 0;
}

.player-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}

.player-info p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.4s infinite;
  display: none;
}

.live-dot.show { display: inline-block; }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.play-btn {
  background: var(--red);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--light);
  font-size: 1rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.play-btn:hover {
  background: var(--red-dark);
  transform: scale(1.1);
}

.play-btn.playing {
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(196,0,0,0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(196,0,0,0); }
  100% { box-shadow: 0 0 0 0   rgba(196,0,0,0); }
}

.vol-wrap {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.volume {
  -webkit-appearance: none;
  width: 90px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  outline: none;
  cursor: pointer;
}
.volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
  transition: var(--transition);
}
.volume::-webkit-slider-thumb:hover {
  transform: scale(1.3);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info {
  padding: 80px 20px 60px;
  background: var(--gray);
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.info-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  width: 280px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--red);
  transition: var(--transition);
  text-align: center;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.info-card i {
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 14px;
  display: block;
}

.info-card h3 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.info-card p, .info-card a {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-card a:hover { color: var(--red); }

.map-section {
  padding: 0 20px 64px;
  background: var(--gray);
}

.map-section h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 28px;
}

.map-section iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  max-width: 1100px;
  display: block;
  margin: 0 auto;
}

.contact-form-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
}

.contact-form-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--light);
  text-align: center;
  margin-bottom: 8px;
}

.form-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.50);
  margin-bottom: 40px;
  font-size: 0.98rem;
}

.contact-form {
  background: var(--glass-light);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 48px 44px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.form-row { display: flex; gap: 20px; }

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-bottom: 22px;
}

.contact-form label {
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-form label .req { color: var(--red); margin-left: 3px; }

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 13px 16px;
  color: #fff;
  font-size: 0.97rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.28);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 0 0 3px var(--red-glow);
}

.contact-form input:valid:not(:placeholder-shown),
.contact-form textarea:valid:not(:placeholder-shown) {
  border-color: rgba(50,200,100,0.5);
}

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

.btn-submit {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 0.97rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  width: 100%;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--red-glow);
}

/* ============================================================
   ABOUT PAGE — STATS
   ============================================================ */
.about-stats-row {
  display: flex;
  gap: 0;
  justify-content: center;
  background: var(--dark);
  padding: 48px 20px;
}

.stat-item {
  text-align: center;
  padding: 20px 48px;
  border-right: 1px solid rgba(255,255,255,0.10);
  color: var(--light);
}

.stat-item:last-child { border-right: none; }

.stat-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.stat-item p {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

/* ============================================================
   RADYO PAGE — Cards
   ============================================================ */
.radyo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.radyo-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.radyo-card:hover,
.radyo-card.active {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--red-glow);
}

.radyo-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 24px;
  background: var(--gray);
}

.radyo-card-body {
  padding: 20px 22px;
}

.radyo-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.radyo-card-body p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.radyo-card-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.5px;
}

.site-link-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border: 2px solid transparent;
}

.site-link-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.site-link-card img {
  width: 72px; height: 72px;
  border-radius: 16px;
  object-fit: contain;
  background: var(--gray);
  padding: 8px;
}

.site-link-card-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.site-link-card-info p {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(80vw, 320px);
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 32px;
    gap: 6px;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.5);
    z-index: 1050;
  }

  nav.open { right: 0; }

  nav a {
    font-size: 1.1rem;
    padding: 12px 16px;
    width: 100%;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
  }

  .nav-overlay.show { display: block; }

  header { padding: 0 20px; }
  .hero-content { padding: 110px 24px 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding-bottom: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  footer { padding: 48px 24px 0; }
}

@media (max-width: 640px) {
  .form-row { flex-direction: column; gap: 0; }
  .contact-form { padding: 28px 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-images img:first-child { grid-column: 1; aspect-ratio: 16/7; }
  .player { flex-wrap: wrap; bottom: 10px; width: 96%; padding: 12px 14px; gap: 10px; }
  .vol-wrap { display: none; }
  .stat-item { padding: 16px 28px; }
  .stat-item h3 { font-size: 2.2rem; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}
