@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/bebas-neue-v16-latin-400.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-v20-latin-variable.woff2") format("woff2");
}

:root {
  --bg: #031632;
  --surface: transparent;
  --surface-strong: transparent;
  --text: #ffffff;
  --muted: #d7deec;
  --accent: #ff002f;
  --accent-soft: #ff3048;
  --line: rgba(255, 255, 255, 0.28);
  --shadow: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--text);
  background: radial-gradient(circle at 18% -28%, #123a78 0, #0a2d5f 38%, #041428 100%);
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(4, 22, 52, 0.76);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1;
}

.brand-logo {
  height: clamp(3.2rem, 6.5vw, 4.8rem);
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.05em;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
}

.brand-subtitle {
  margin-top: 0.2rem;
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  color: var(--accent-soft);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-nav {
  margin-left: auto;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.4vw, 1.6rem);
}

.nav-link {
  font-weight: 700;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  border-color: var(--accent);
  color: var(--accent-soft);
}

.nav-item {
  position: relative;
}

.subnav {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 821px) {
  .subnav {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.6rem;
    min-width: 220px;
    padding: 0.5rem 0;
    background: rgba(4, 22, 52, 0.96);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 50;
  }

  .nav-item.has-submenu:hover .subnav,
  .nav-item.has-submenu:focus-within .subnav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .subnav-link {
    display: block;
    padding: 0.55rem 1.1rem;
    border-bottom: none !important;
    white-space: nowrap;
  }

  .subnav-link:hover {
    background: rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 820px) {
  .subnav {
    padding-left: 1.2rem;
    margin-top: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .subnav-link {
    font-size: 0.9rem;
    opacity: 0.85;
  }
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

main {
  width: min(1400px, 96vw);
  margin: 1rem auto 0;
  flex: 1;
}

.home-page main {
  width: 100%;
  margin: 0;
}

.landing {
  position: relative;
  display: block;
}

.hero {
  position: relative;
  min-height: 84vh;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #000;
}

.home-page .hero {
  min-height: calc(100vh - 88px);
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.05);
  filter: saturate(0.92) contrast(1.08);
}

.hero-video-local {
  object-fit: cover;
  z-index: 1;
}

.hero-video-youtube {
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 12, 30, 0.22) 0%, rgba(6, 21, 45, 0.46) 40%, rgba(5, 15, 34, 0.78) 100%),
    linear-gradient(120deg, rgba(255, 0, 47, 0.22) 0%, rgba(255, 0, 47, 0) 45%);
}

.hero-content {
  position: absolute;
  inset: auto 0 3.2rem;
  z-index: 2;
  padding: clamp(1rem, 2.4vw, 2rem);
}

.eyebrow {
  margin: 0;
  color: var(--accent-soft);
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
}

.hero-title {
  margin: 0.4rem 0 0.8rem;
  font-size: clamp(1.5rem, 3.8vw, 3rem);
}

.hero-quote {
  margin: 1rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  max-width: 50ch;
}

.news-card {
  position: absolute;
  bottom: 3.9rem;
  right: 1rem;
  width: min(360px, 34vw);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: var(--shadow);
  min-height: auto;
  z-index: 150;
  backdrop-filter: none;
  transition: opacity 1.1s ease, transform 1.1s ease;
}

.news-card.is-hidden {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.news-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.close-instagram-card {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.news-copy {
  color: var(--muted);
  margin: 0.7rem 0 0.9rem;
}

.hero-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(1, 14, 36, 0.78);
}

.hero-ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  padding: 0.65rem 1rem;
  animation: ticker-scroll 22s linear infinite;
}

.hero-ticker-track span {
  white-space: nowrap;
  font-weight: 700;
  color: #ffffff;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.news-card h2,
.section-card h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
}

.news-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.metrics {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.metric {
  background: var(--surface);
  border: 0;
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
}

.metric strong {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.6rem, 2.7vw, 2.2rem);
  letter-spacing: 0.03em;
  color: var(--accent);
}

.metric span {
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 0.9rem;
}

.clients {
  margin-top: 0.55rem;
  background: var(--surface);
  border: 0;
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
}

.clients h2 {
  width: 100%;
  margin: 0 0 1rem;
  text-align: center !important;
}

.footer-rights-block {
  display: inline;
  margin-left: 0.35rem;
}

.logo-row {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.logo-chip {
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 0.9rem;
  text-align: center;
  color: var(--muted);
}

.page-hero {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem;
  background: linear-gradient(130deg, rgba(255, 0, 47, 0.24), rgba(8, 29, 63, 0.54));
}

.page-hero.plain-hero {
  border: 0;
  background: transparent;
}

.page-hero h1 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.04em;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.page-hero p {
  margin: 0.9rem 0 0;
  max-width: 60ch;
  font-size: 1.05rem;
  color: var(--muted);
}

.about-superpowers {
  margin: 0.9rem 0 0;
  max-width: 60ch;
  font-size: 1.05rem;
  color: var(--muted);
  padding-left: 1.2rem;
}

.about-superpowers li {
  margin: 0.3rem 0;
}

.sections-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.video-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 1.2rem;
}

.video-card-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

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

.video-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  background: #000;
  display: block;
}

.video-facade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.video-facade-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-facade-play::before {
  content: "";
  border-style: solid;
  border-width: 0.6rem 0 0.6rem 1rem;
  border-color: transparent transparent transparent #fff;
  margin-left: 0.15rem;
}

.video-facade-consent {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.4rem 0.6rem;
  font-size: 0.72rem;
  line-height: 1.3;
  color: var(--muted);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
  text-align: center;
  pointer-events: none;
}

.video-facade-consent a {
  color: inherit;
  text-decoration: underline;
  pointer-events: auto;
}

.video-facade-consent a:hover,
.video-facade-consent a:focus-visible {
  color: #fff;
}

.video-facade:hover .video-facade-play,
.video-facade:focus-visible .video-facade-play {
  background: var(--accent-soft);
}

.video-card h2 {
  margin: 1rem 0 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.04em;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
}

.video-card p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.film-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.film-bubble {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 290px;
  background: #000;
}

.film-bubble video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-bubble-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 20, 44, 0.08), rgba(6, 20, 44, 0.72));
}

.film-bubble-label {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1rem;
  z-index: 2;
}

.film-bubble-label h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.04em;
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
}

.video-single {
  margin-top: 1.2rem;
  max-width: 720px;
}

.section-heading {
  margin: 1.6rem 0 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.04em;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.audio-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.audio-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 1.2rem;
}

.audio-card h2 {
  margin: 0 0 0.8rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.04em;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
}

.audio-card audio {
  width: 100%;
}

.video-card-note {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-soft);
}

.about-layout {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-video,
.about-cv-frame {
  width: 100%;
  border: 0;
  border-radius: 14px;
  background: rgba(4, 13, 30, 0.82);
}

.about-video {
  min-height: 260px;
}

.about-cv-card,
.about-video-card {
  grid-column: 1 / -1;
}

.about-cv-frame {
  min-height: 640px;
  border: 0;
}

.about-cv-mobile-link {
  display: none;
  margin-top: 0.9rem;
}

.cv-toggle-section {
  margin-top: 1.4rem;
}

.cv-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.04em;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease;
}

.cv-toggle:hover {
  border-color: rgba(255, 255, 255, 0.54);
}

.cv-toggle-icon {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.cv-toggle-icon::before,
.cv-toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.cv-toggle-icon::before {
  width: 12px;
  height: 2px;
}

.cv-toggle-icon::after {
  width: 2px;
  height: 12px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cv-toggle[aria-expanded="true"] .cv-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.cv-panel {
  margin-top: 0.9rem;
}

.cv-panel[hidden] {
  display: none;
}

.cv-frame {
  width: 100%;
  min-height: 640px;
  border: 0;
  border-radius: 14px;
  background: rgba(4, 13, 30, 0.82);
}

.cv-mobile-link {
  display: none;
  margin-top: 0.9rem;
}

.section-card.about-contact-card,
.section-card.about-cv-card {
  border: 0;
}

.section-card.about-video-card,
.section-card.about-portraits-card {
  border: 0;
}

.about-portraits-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-portraits-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  border: 0;
}

.press-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.press-tile {
  display: block;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: transparent;
  padding: 1rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.press-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  aspect-ratio: 16 / 9;
  margin-bottom: 0.9rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  color: var(--muted);
}

.press-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-thumb svg {
  width: 34px;
  height: 34px;
  opacity: 0.55;
}

.press-thumb-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

.press-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.54);
}

.press-type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 0, 47, 0.86);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.press-tile h2 {
  margin: 0.7rem 0 0.4rem;
  font-size: 1.25rem;
}

.press-tile p {
  margin: 0;
  color: var(--muted);
}

.section-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 1.2rem;
}

.section-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(8, 12, 18, 0.8);
  margin-top: 2.4rem;
}

.footer-inner {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.footer-links {
  display: inline-flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer-email {
  color: var(--accent-soft);
  font-weight: 700;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-legal a {
  color: var(--muted);
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--accent-soft);
}

.footer-cookie-note {
  width: min(1200px, 92vw);
  margin: 0.6rem auto 0;
  padding: 0.8rem 0 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
  opacity: 0.85;
}

.footer-cookie-note a {
  color: var(--muted);
  text-decoration: underline;
}

.footer-cookie-note a:hover,
.footer-cookie-note a:focus-visible {
  color: var(--accent-soft);
}

.footer-legal-btn {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  color: var(--muted);
  cursor: pointer;
}

.footer-legal-btn:hover,
.footer-legal-btn:focus-visible {
  color: var(--accent-soft);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 1rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.cookie-banner-inner {
  width: min(920px, 96vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: space-between;
  background: rgba(3, 12, 28, 0.96);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.cookie-banner-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1 1 420px;
}

.cookie-banner-text a {
  color: var(--accent-soft);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions {
    justify-content: flex-end;
  }
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent-soft);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.btn {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.55rem 0.95rem;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border-color: transparent;
}

@media (max-width: 980px) {
  .landing {
    display: grid;
    grid-template-columns: 1fr;
  }

  .news-card {
    display: none !important;
  }

  .hero {
    min-height: 62vh;
  }

  .home-page .hero {
    min-height: 72vh;
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .video-grid,
  .audio-grid,
  .film-grid,
  .about-layout,
  .press-grid,
  .about-portraits-grid {
    grid-template-columns: 1fr;
  }

  .about-cv-frame {
    min-height: 520px;
    display: none;
  }

  .about-cv-mobile-link {
    display: inline-flex;
  }

  .cv-frame {
    min-height: 520px;
    display: none;
  }

  .cv-mobile-link {
    display: inline-flex;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .footer-center {
    width: 100%;
  }

  .footer-email {
    width: 100%;
    text-align: center;
  }

  .mobile-center-title .page-hero h1 {
    text-align: center !important;
  }

  .footer-rights-block {
    display: block;
    margin-left: 0;
  }
}

@media (min-width: 981px) {
  .about-cv-card h2 {
    text-align: center;
  }
}

@media (max-width: 820px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .main-nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }

  .main-nav.is-open {
    max-height: 60vh;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.6rem 0 0.8rem;
  }

  .nav-link {
    font-size: 1rem;
  }
}

@media (max-width: 540px) {
  .brand-title {
    font-size: 2.2rem;
  }

  .brand-subtitle {
    font-size: 0.8rem;
  }

  main {
    margin-top: 1.2rem;
  }

  .hero {
    border-radius: 18px;
  }

  .hero-video {
    transform: scale(1.28);
  }

  .hero-ticker-track {
    padding: 0.6rem 0.8rem;
    animation-duration: 16s;
  }

  .news-card {
    display: none !important;
  }

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