/* adambartha.com — Navy & Teal, editorial redesign */
:root {
  --navy: #002B5C;
  --navy-dark: #001E42;
  --navy-deep: #001530;
  --teal: #0F8B8D;
  --teal-dark: #0B6B6D;
  --ink: #1A1A29;
  --grey: #5C6470;
  --light: #F4F5F7;
  --line: #E2E7EE;
  --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, .serif {
  font-family: 'Source Serif 4', Georgia, serif;
  color: var(--navy);
  line-height: 1.12;
  font-weight: 600;
}

a { color: var(--teal-dark); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }

img { display: block; max-width: 100%; height: auto; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ---------- Navigation: transparent over hero, solid on scroll ---------- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
nav.scrolled, nav.menu-open {
  background: var(--navy-dark);
  box-shadow: 0 2px 24px rgba(0, 15, 40, 0.35);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px;
}
.brand {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.25rem; font-weight: 600;
  color: var(--white); text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: 10px; color: var(--white);
}
.nav-toggle svg { width: 28px; height: 28px; display: block; }
.nav-links { display: flex; gap: 6px; }
.nav-links a {
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-size: 0.92rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 27px 15px; display: block;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); box-shadow: inset 0 -3px 0 var(--teal); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 15px 32px;
  border-radius: 3px; text-decoration: none;
  font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.85); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.14); }

/* ---------- Full-screen hero (home) ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero-bg.bg1 { background-image: url('images/hero-bg-1.webp'); background-position: 66% 27%; }
.hero-bg.bg2 {
  background-image: url('images/hero-bg-2.webp'); background-position: 82% 30%;
  opacity: 0; animation: heroFade 18s ease-in-out infinite;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.07); } }
@keyframes heroFade {
  0%, 42% { opacity: 0; }
  50%, 92% { opacity: 1; }
  100% { opacity: 0; }
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(0,21,48,0.9) 0%, rgba(0,30,66,0.72) 55%, rgba(0,30,66,0.45) 100%);
}
.hero .wrap { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 70px; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  max-width: 15.5em;
  margin-bottom: 26px;
  font-weight: 600;
}
.accent-bar { width: 84px; height: 4px; background: var(--teal); margin-bottom: 34px; }
.hero p.sub {
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  color: #D5E0EE; max-width: 36em;
  margin-bottom: 40px;
}
.hero .cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.75);
  animation: cueBob 2.2s ease-in-out infinite;
}
.scroll-cue svg { width: 26px; height: 26px; }
@keyframes cueBob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,10px); } }

/* ---------- Full-bleed subpage banner ---------- */
.banner {
  position: relative; min-height: 62vh; min-height: 62svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}
.banner > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  /* object-position is face-anchored per page via inline style */
}
.banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,21,48,0.42) 0%, rgba(0,21,48,0.2) 40%, rgba(0,21,48,0.88) 100%);
}
.banner .wrap { position: relative; z-index: 2; width: 100%; padding-top: 130px; padding-bottom: 56px; }
.banner h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  margin-bottom: 18px;
}
.banner p { color: #D9E3F0; font-size: clamp(1.05rem, 1.5vw, 1.22rem); max-width: 46em; }

/* ---------- Stat band ---------- */
.stats { background: var(--white); padding: 74px 0; border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.stat { text-align: center; }
.stat .icon { display: flex; justify-content: center; margin-bottom: 14px; }
.stat .icon svg { width: 34px; height: 34px; }
.stat .num {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(2.6rem, 4vw, 3.7rem); font-weight: 700;
  color: var(--navy); line-height: 1;
}
.stat .num span { color: var(--teal); }
.stat .lbl { color: var(--grey); font-size: 0.99rem; margin-top: 12px; }

/* ---------- Sections ---------- */
section.block { padding: 100px 0; }
section.block.tint { background: var(--light); }
.kicker {
  text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 0.8rem; font-weight: 700; color: var(--teal-dark);
  margin-bottom: 16px;
}
h2.section-title { font-size: clamp(2rem, 3.6vw, 3rem); margin-bottom: 18px; }
.section-lead { max-width: 46em; color: var(--grey); margin-bottom: 52px; font-size: 1.1rem; }

/* ---------- Reveal on scroll (slow, staggered per element) ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1.15s ease, transform 1.15s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-bg { animation: none !important; }
  .scroll-cue { animation: none; }
}

/* ---------- Editorial split: statement + pillar rows ---------- */
.editorial { display: grid; grid-template-columns: 5fr 6fr; gap: 72px; align-items: start; }
.editorial .statement h2 { font-size: clamp(2.1rem, 3.8vw, 3.1rem); margin-bottom: 22px; }
.editorial .statement p { color: var(--grey); font-size: 1.1rem; max-width: 30em; }
.editorial .statement .statement-photo { margin-top: 34px; }
.editorial .statement .statement-photo img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 6px;
  box-shadow: 0 18px 44px rgba(0,20,50,0.18);
}
.editorial .statement .statement-photo figcaption { font-size: 0.88rem; color: var(--grey); margin-top: 10px; }
.pillar-rows { border-top: 1px solid var(--line); }
.pillar-row {
  display: flex; gap: 26px; align-items: flex-start;
  padding: 30px 0; border-bottom: 1px solid var(--line);
}
.pillar-row svg { flex-shrink: 0; width: 46px; height: 46px; margin-top: 4px; }
.pillar-row h3 { font-size: 1.5rem; margin-bottom: 8px; }
.pillar-row p { color: var(--grey); font-size: 1rem; }

/* ---------- Video cards ---------- */
.videos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.video-card { text-decoration: none; display: block; }
.video-card .frame {
  display: block;
  position: relative; border-radius: 4px; overflow: hidden;
  background: var(--navy-dark); aspect-ratio: 16 / 9;
}
.video-card .frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.video-card:hover .frame img { transform: scale(1.05); }
.video-card .frame iframe, .short-card .frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.video-card .play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.video-card .play span {
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(0, 43, 92, 0.82);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.video-card:hover .play span { background: var(--teal); transform: scale(1.08); }
.video-card .play svg { width: 23px; height: 23px; margin-left: 3px; }
.video-card .cap {
  display: block;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.12rem; color: var(--navy); margin-top: 14px; font-weight: 600;
}
.video-card .cap small {
  display: block; font-family: 'Inter', sans-serif;
  color: var(--grey); font-weight: 400; font-size: 0.9rem; margin-top: 3px;
}

/* ---------- Shorts (vertical video cards) ---------- */
.shorts-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.shorts-row.three { grid-template-columns: repeat(3, 1fr); max-width: 860px; }
.short-card { text-decoration: none; display: block; }
.short-card .frame {
  display: block; position: relative;
  border-radius: 10px; overflow: hidden;
  background: var(--navy-dark); aspect-ratio: 9 / 16;
}
.short-card .frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.short-card:hover .frame img { transform: scale(1.05); }
.short-card .play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.short-card .play span {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(0, 43, 92, 0.82);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.short-card:hover .play span { background: var(--teal); transform: scale(1.1); }
.short-card .play svg { width: 19px; height: 19px; margin-left: 2px; }
.short-card .cap {
  display: block; font-size: 0.95rem; font-weight: 500;
  color: var(--ink); margin-top: 12px; line-height: 1.4;
}

/* ---------- Full-bleed connector band ---------- */
.connector {
  position: relative; padding: 110px 0; color: var(--white);
  overflow: hidden; background: var(--navy-deep);
}
.connector > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.connector::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(0,21,48,0.93) 0%, rgba(0,30,66,0.8) 100%);
}
.connector .wrap { position: relative; z-index: 2; text-align: center; }
.connector h2 { color: var(--white); font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin: 0 auto 18px; max-width: 22em; }
.connector p { color: #C7D6EA; max-width: 44em; margin: 0 auto 36px; font-size: 1.1rem; }

/* ---------- Mixed grid: talks + photos ---------- */
.mix-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.talk-card {
  background: var(--white); border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 5px; padding: 26px 26px 24px;
  display: flex; flex-direction: column; justify-content: center;
  min-height: 190px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.talk-card:hover { box-shadow: 0 14px 32px rgba(10,20,40,0.12); transform: translateY(-4px); }
.talk-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.talk-card p { color: var(--grey); font-size: 0.99rem; }
.talk-card .flag { display: block; margin-bottom: 14px; }
.talk-card .flag svg {
  width: 30px; height: 20px; border-radius: 3px; display: block;
  box-shadow: 0 1px 3px rgba(10,20,40,0.25);
}
.mix-grid figure { position: relative; overflow: hidden; border-radius: 5px; min-height: 190px; background: #E5EAF0; }
.mix-grid figure img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.5s ease;
}
.mix-grid figure:hover img { transform: scale(1.05); }
.mix-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 42px 18px 14px;
  color: #E8EEF6; font-size: 0.9rem;
  background: linear-gradient(180deg, transparent, rgba(0,21,48,0.88));
}

/* ---------- Topics ---------- */
.topic-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.topic {
  background: var(--white); border-left: 4px solid var(--teal);
  padding: 20px 24px; border-radius: 0 4px 4px 0;
  box-shadow: 0 1px 5px rgba(10,20,40,0.08);
  font-weight: 500; font-size: 1.02rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.topic:hover { box-shadow: 0 12px 26px rgba(10,20,40,0.13); transform: translateY(-3px); }

/* ---------- Journalist box ---------- */
.journo {
  background: var(--white); border: 1px solid var(--line);
  border-left: 6px solid var(--teal);
  padding: 36px 40px; border-radius: 4px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 30px; flex-wrap: wrap;
  box-shadow: 0 6px 26px rgba(10,20,40,0.06);
}
.journo h3 { font-size: 1.5rem; margin-bottom: 10px; }
.journo p { color: var(--grey); max-width: 44em; }

.outlet-strip { display: flex; flex-wrap: wrap; gap: 12px 16px; align-items: center; }
.outlet-strip span {
  background: var(--white); color: var(--navy);
  border: 1px solid var(--line);
  padding: 10px 20px; border-radius: 3px; font-size: 0.96rem; font-weight: 500;
}
.tint .outlet-strip span { background: var(--white); }
.block:not(.tint) .outlet-strip span { background: var(--light); border-color: transparent; }

/* ---------- Rolling outlet logo marquee ---------- */
.logo-marquee {
  overflow: hidden; position: relative; padding: 10px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.logo-track {
  display: flex; gap: 20px; width: max-content; align-items: stretch;
  animation: marquee 38s linear infinite;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-tile {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid var(--line); border-radius: 6px;
  padding: 26px 40px; min-width: 220px; min-height: 96px;
}
.logo-tile .wordmark {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.55rem; font-weight: 700; color: var(--navy);
  white-space: nowrap; letter-spacing: 0.01em;
}
.logo-tile .wordmark.sans {
  font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0.03em;
}
.logo-tile img { max-height: 54px; max-width: 210px; width: auto; object-fit: contain; }
@media (prefers-reduced-motion: reduce) {
  .logo-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .logo-track { animation: none; }
}

/* ---------- Feature list (op-eds, chairing) ---------- */
.feature-list { list-style: none; border-top: 1px solid var(--line); }
.feature-list li { padding: 22px 0; border-bottom: 1px solid var(--line); }
.feature-list strong { color: var(--navy); font-size: 1.08rem; }
.feature-list strong a { color: var(--navy); text-decoration: none; border-bottom: 2px solid var(--teal); padding-bottom: 1px; }
.feature-list strong a:hover { color: var(--teal-dark); }
.feature-list .sub { color: var(--grey); }

/* ---------- Carousel ---------- */
.carousel {
  overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.carousel-track { display: flex; gap: 20px; width: max-content; animation: marquee 48s linear infinite; }
.carousel:hover .carousel-track { animation-play-state: paused; }
.carousel figure { flex-shrink: 0; width: min(460px, 80vw); position: relative; border-radius: 5px; overflow: hidden; background: #E5EAF0; }
.carousel figure img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.carousel figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 42px 20px 16px;
  color: #E8EEF6; font-size: 0.92rem;
  background: linear-gradient(180deg, transparent, rgba(0,21,48,0.85));
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .carousel { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .carousel-track { animation: none; }
}

/* ---------- Gallery with overlay captions ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery figure { position: relative; overflow: hidden; border-radius: 5px; }
.gallery figure img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 46px 18px 15px;
  color: #E8EEF6; font-size: 0.92rem;
  background: linear-gradient(180deg, transparent, rgba(0,21,48,0.88));
}

/* ---------- About split (home) ---------- */
.about-split { display: grid; grid-template-columns: 4fr 6fr; gap: 72px; align-items: center; }
.about-split img { border-radius: 5px; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; box-shadow: 0 26px 60px rgba(0,20,50,0.22); }
.about-split h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); margin-bottom: 20px; }
.about-split p { color: var(--grey); font-size: 1.08rem; margin-bottom: 16px; }

/* ---------- Contact band (Cavallo style) ---------- */
.contact-band {
  position: relative; padding: 110px 0; color: var(--white);
  overflow: hidden; background: var(--navy-deep);
}
.contact-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.contact-band::after { content: ''; position: absolute; inset: 0; background: rgba(0,21,48,0.9); }
.contact-band .wrap { position: relative; z-index: 2; max-width: 720px; }
.contact-band .kicker { color: #7FC6C7; text-align: center; }
.contact-band h2 { color: var(--white); text-align: center; font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 44px; }
.contact-band form label {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0);
}
.contact-band form input, .contact-band form select, .contact-band form textarea {
  width: 100%; padding: 15px 6px; margin-bottom: 22px;
  font: inherit; color: var(--white);
  background: transparent;
  border: 0; border-bottom: 1px solid rgba(255,255,255,0.5);
  border-radius: 0;
}
.contact-band form ::placeholder { color: rgba(255,255,255,0.72); }
.contact-band form select { color: rgba(255,255,255,0.9); }
.contact-band form select option { color: var(--ink); }
.contact-band form textarea { min-height: 110px; resize: vertical; }
.contact-band form input:focus, .contact-band form select:focus, .contact-band form textarea:focus {
  outline: none; border-bottom-color: var(--teal);
}
.contact-band form button { border: 0; cursor: pointer; display: block; margin: 14px auto 0; }
.contact-band .form-note { text-align: center; color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-top: 18px; }
.captcha-row {
  display: flex; align-items: center; gap: 16px;
  margin: 6px 0 10px; flex-wrap: wrap;
}
.captcha-row label.visible {
  position: static; width: auto; height: auto; overflow: visible; clip: auto;
  color: rgba(255,255,255,0.9); font-weight: 500;
}
.captcha-row input { width: 110px; margin-bottom: 0; text-align: center; }
.hp-field { position: absolute; left: -6000px; top: auto; height: 1px; overflow: hidden; }
.form-error { color: #FFB4A6; text-align: center; font-size: 0.95rem; margin-top: 12px; display: none; }

/* ---------- Info cards under contact ---------- */
.info-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.side-box { background: var(--light); border-radius: 5px; padding: 34px 34px; }
.side-box h3 { font-size: 1.3rem; margin-bottom: 12px; }
.side-box p, .side-box li { color: var(--grey); font-size: 0.99rem; }
.side-box a.dl { display: block; margin-top: 10px; font-weight: 600; }

/* ---------- Bios ---------- */
.bio-block h3 { font-size: 1.4rem; }
.bio-block p { max-width: 52em; color: var(--ink); }

/* ---------- Footer ---------- */
footer { background: var(--navy-deep); color: #A9BBD1; padding: 76px 0 44px; font-size: 0.97rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-grid .f-brand {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--white); font-size: 1.6rem; font-weight: 700; margin-bottom: 14px;
}
.footer-grid p { max-width: 26em; }
.footer-grid h4 {
  color: var(--white); font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: 0.16em; margin-bottom: 16px;
}
.footer-grid a { display: block; color: #C3D2E4; text-decoration: none; padding: 5px 0; }
.footer-grid a:hover { color: var(--white); }
.footer-base {
  border-top: 1px solid rgba(255,255,255,0.14); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.9rem; color: #8FA3BC;
}
.social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s ease;
}
.social-icon:hover { background: var(--teal); }
.social-icon svg { width: 20px; height: 20px; fill: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--navy-dark); padding: 6px 28px 18px;
    box-shadow: 0 18px 30px rgba(0,10,30,0.4);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 2px; border-top: 1px solid rgba(255,255,255,0.09); }

  .hero { min-height: 88vh; min-height: 88svh; }
  .hero::after {
    background: linear-gradient(180deg, rgba(0,21,48,0.82) 0%, rgba(0,21,48,0.72) 100%);
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .editorial, .about-split { grid-template-columns: 1fr; gap: 44px; }
  .about-split img { max-width: 420px; }
  .topic-grid { grid-template-columns: 1fr; }
  .videos, .gallery { grid-template-columns: 1fr 1fr; }
  .mix-grid { grid-template-columns: 1fr 1fr; }
  .shorts-row, .shorts-row.three { grid-template-columns: repeat(2, 1fr); }
  .info-cols { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .banner { min-height: 52vh; }
  section.block { padding: 68px 0; }
}
@media (max-width: 580px) {
  body { font-size: 16px; }
  .videos, .gallery, .mix-grid { grid-template-columns: 1fr; }
  .shorts-row, .shorts-row.three { grid-template-columns: 1fr 1fr; }
  section.block { padding: 56px 0; }
  .banner .wrap { padding-top: 110px; }
}
