:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-dark: #121215;
  --ink: #111114;
  --ink-inverse: #f4f4f6;
  --muted: #4f4f58;
  --accent: #c81428;
  --accent-dark: #8f0f1d;
  --line: rgba(23, 23, 26, 0.14);
  --shadow: 0 20px 50px rgba(23, 23, 26, 0.12);
  --radius: 22px;
  --max-width: 1120px;
}

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

html,
body {
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  background: #ffffff;
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.page {
  position: relative;
  overflow-x: hidden;
  background: #ffffff;
}

.page::before,
.page::after {
  content: none;
}

header,
section,
footer {
  position: relative;
  z-index: 1;
}

.section-inner,
.hero-inner,
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero {
  padding: 50px 6vw 70px;
  background: #ffffff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 23, 26, 0.1);
  border-radius: 22px;
  padding: 14px 20px;
  box-shadow: 0 16px 34px rgba(23, 23, 26, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(23, 23, 26, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.logo {
  display: block;
  height: 58px;
  width: auto;
  max-width: 40vw;
}

.nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 7px;
  width: calc(100% - 28px);
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a:hover {
  background: rgba(200, 20, 40, 0.06);
  color: var(--accent-dark);
  transform: translateY(-1px);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Prata", "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.04;
  margin: 14px 0 20px;
  letter-spacing: -0.025em;
}

.hero-mark {
  position: relative;
  display: inline-block;
  padding: 0 0.18em 0.08em 0;
  color: #0f0f12;
  text-shadow: 0 8px 22px rgba(23, 23, 26, 0.08);
  font-kerning: normal;
}

.hero-mark::after {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.12em;
  bottom: 0.12em;
  height: 0.28em;
  background: linear-gradient(90deg, rgba(200, 20, 40, 0.18), rgba(200, 20, 40, 0.06));
  border-radius: 999px;
  z-index: -1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(200, 20, 40, 0.34);
}

.btn.ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(27, 27, 27, 0.12);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.hero-stats > div {
  min-width: 0;
  text-align: center;
}

.stat {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  display: block;
}

.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.hero-photo {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 500px;
  width: 100%;
  animation: float 7s ease-in-out infinite;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  bottom: -22px;
  right: 18px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 16px 30px rgba(27, 27, 27, 0.12);
  backdrop-filter: blur(6px);
}

.card-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.card-sub {
  color: var(--muted);
  font-size: 0.95rem;
}

.strip {
  padding: 10px 6vw 20px;
  background: #ffffff;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.strip-item {
  background: var(--surface);
  border-radius: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(23, 23, 26, 0.08);
  box-shadow: 0 12px 24px rgba(23, 23, 26, 0.08);
  border-left: 5px solid var(--accent);
}

.strip-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: var(--ink);
}

.strip-item p {
  color: var(--muted);
}

.about,
.gallery,
.press,
.media,
.services,
.repertoire,
.contact {
  padding: 70px 6vw;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.about h2,
.services h2,
.repertoire h2,
.contact h2,
.gallery h2,
.press h2,
.media h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.about-text p {
  margin-bottom: 14px;
  color: var(--muted);
}

.about-cards {
  display: grid;
  gap: 14px;
}

.mini-card {
  background: var(--surface);
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid rgba(23, 23, 26, 0.08);
  box-shadow: 0 12px 24px rgba(23, 23, 26, 0.08);
}

.services-header,
.gallery-header,
.press-header,
.media-header,
.repertoire-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
}

.services-header p,
.gallery-header p,
.press-header p,
.media-header p,
.repertoire-header p {
  color: var(--muted);
  max-width: 42rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.service-grid article {
  background: var(--surface);
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid rgba(23, 23, 26, 0.08);
  box-shadow: 0 12px 24px rgba(23, 23, 26, 0.08);
  border-left: 5px solid var(--accent);
}

.service-grid article p,
.mini-card p,
.gallery-note,
.card-sub,
.contact-card p {
  line-height: 1.55;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.tab {
  border: 1px solid rgba(23, 23, 26, 0.14);
  background: rgba(255, 255, 255, 0.96);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.tab.active {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(200, 20, 40, 0.32);
}

.tab-panels {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px 28px;
  border: 1px solid rgba(23, 23, 26, 0.08);
  box-shadow: 0 16px 36px rgba(23, 23, 26, 0.1);
}

.panel {
  display: none;
  animation: fadeUp 0.5s ease;
}

.panel.active {
  display: block;
}

.panel ul {
  columns: 2 260px;
  column-gap: 36px;
  list-style: none;
}

.panel li {
  padding: 6px 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-hidden {
  display: none;
}

.gallery-grid figure,
.promo-grid figure {
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 14px 32px rgba(23, 23, 26, 0.14);
}

.gallery-grid img,
.promo-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.4s ease;
}

.gallery-grid figure:hover img,
.promo-grid figure:hover img {
  transform: scale(1.06);
}

.gallery-grid img {
  aspect-ratio: 4 / 5;
}

.press-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.press-block {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid rgba(23, 23, 26, 0.08);
  box-shadow: 0 12px 24px rgba(23, 23, 26, 0.08);
}

.press-block h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.gallery-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.article-list {
  display: grid;
  gap: 12px;
  max-height: 620px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 20, 40, 0.45) rgba(23, 23, 26, 0.08);
}

.article-list::-webkit-scrollbar {
  width: 8px;
}

.article-list::-webkit-scrollbar-track {
  background: rgba(23, 23, 26, 0.08);
  border-radius: 999px;
}

.article-list::-webkit-scrollbar-thumb {
  background: rgba(200, 20, 40, 0.45);
  border-radius: 999px;
}

.article-link {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(23, 23, 26, 0.08);
  border-left: 4px solid var(--accent);
  border-radius: 16px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  font: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.article-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(23, 23, 26, 0.08);
  border-color: rgba(200, 20, 40, 0.2);
}

.article-link:focus-visible,
.tab:focus-visible,
.btn:focus-visible,
.nav-links a:focus-visible,
.gallery-trigger:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(200, 20, 40, 0.22);
  outline-offset: 2px;
}

.article-title {
  font-weight: 700;
  color: var(--ink);
}

.article-meta {
  color: var(--muted);
  font-size: 0.94rem;
}

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

.promo-grid img {
  aspect-ratio: 4 / 5;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  padding: 24px;
  background: rgba(10, 10, 14, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 20;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-stage {
  max-width: min(1100px, 100%);
  margin: 0 auto;
  text-align: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  background: #fff;
}

.lightbox-caption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.lightbox-close,
.lightbox-nav {
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  justify-self: start;
}

.lightbox-next {
  justify-self: end;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  background: var(--surface);
  border-radius: 22px;
  border: 1px solid rgba(23, 23, 26, 0.08);
  box-shadow: 0 14px 30px rgba(23, 23, 26, 0.1);
  overflow: hidden;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
}

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

.contact {
  padding-bottom: 90px;
}

.contact-card {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(23, 23, 26, 0.08);
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 22px;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.form-status {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 600;
}

.form-status.is-success {
  background: rgba(35, 145, 86, 0.12);
  color: #15603a;
  border: 1px solid rgba(35, 145, 86, 0.24);
}

.form-status.is-error {
  background: rgba(200, 20, 40, 0.08);
  color: var(--accent-dark);
  border: 1px solid rgba(200, 20, 40, 0.18);
}

.form-row {
  display: grid;
  gap: 6px;
  text-align: left;
}

.form-row label {
  font-weight: 600;
  color: var(--ink);
}

.form-row input,
.form-row textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(23, 23, 26, 0.18);
  font-family: inherit;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(207, 46, 46, 0.25);
  border-color: rgba(207, 46, 46, 0.6);
}

.form-trap {
  position: absolute;
  left: -9999px;
}

.contact-actions {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.footer {
  padding: 30px 6vw 50px;
  text-align: center;
  color: rgba(244, 244, 246, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0f0f12;
}

.legal-banner {
  margin-top: 14px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #1a1a1f;
  color: var(--ink-inverse);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.legal-banner span {
  font-weight: 600;
}

.footer a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .hero-grid {
    gap: 36px;
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-photo {
    max-width: 460px;
  }
}

.legal {
  padding: 70px 6vw 90px;
}

.legal-card {
  background: #ffffff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(23, 23, 26, 0.08);
}

.legal-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.legal-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  margin: 28px 0 12px;
}

.legal-card p {
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.legal-card a {
  color: var(--accent);
  text-decoration: none;
}

.legal-card a:hover {
  text-decoration: underline;
}

.legal-hero .hero-grid {
  grid-template-columns: 1fr;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero,
  .about,
  .gallery,
  .press,
  .media,
  .services,
  .repertoire,
  .contact {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .nav {
    gap: 18px;
    margin-bottom: 36px;
    padding: 14px 16px;
  }

  .nav-links {
    width: 100%;
  }

  .nav-links a {
    padding: 9px 12px;
    font-size: 0.95rem;
  }

  .services-header,
  .gallery-header,
  .press-header,
  .media-header,
  .repertoire-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .panel ul {
    columns: 1;
  }

  .hero-grid,
  .about-grid {
    gap: 30px;
  }

  .hero-copy {
    max-width: 40rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 8vw, 4.2rem);
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .contact-card,
  .tab-panels {
    padding: 28px;
  }

  .press-layout {
    grid-template-columns: 1fr;
  }

  .press-block,
  .contact-card,
  .tab-panels,
  .service-grid article,
  .mini-card {
    border-radius: 20px;
  }

  .article-list {
    gap: 10px;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .article-link {
    padding: 15px 16px;
  }

  .article-title {
    font-size: 0.98rem;
  }

  .article-meta {
    font-size: 0.9rem;
  }

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

@media (max-width: 700px) {
  .nav {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 28px rgba(23, 23, 26, 0.1);
  }

  .nav-toggle {
    display: inline-flex;
    position: absolute;
    top: 12px;
    right: 12px;
  }

  .logo {
    height: 52px;
    max-width: 62vw;
  }

  .nav-links {
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 10px;
  }

  .nav.is-open .nav-links {
    display: grid;
  }

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

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

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

  .hero {
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-copy .lead {
    max-width: 34rem;
  }

  .hero-media {
    min-height: auto;
    order: -1;
  }

  .hero-card {
    position: static;
    margin-top: 16px;
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-items: start;
  }

  .stat {
    font-size: 1.55rem;
    line-height: 1;
  }

  .stat-label {
    font-size: 0.78rem;
    line-height: 1.2;
    display: block;
    max-width: 10ch;
    margin: 0.2rem auto 0;
    text-wrap: balance;
  }

  .lead {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .about,
  .gallery,
  .press,
  .media,
  .services,
  .repertoire,
  .contact {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section-inner,
  .hero-inner,
  .footer-inner {
    width: min(100%, 38rem);
  }

  .about h2,
  .services h2,
  .repertoire h2,
  .contact h2,
  .gallery h2,
  .press h2,
  .media h2 {
    font-size: 2.1rem;
    margin-bottom: 12px;
  }

  .service-grid,
  .gallery-grid,
  .press-layout,
  .promo-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid,
  .press-layout,
  .promo-grid {
    gap: 16px;
  }

  .gallery-header,
  .press-header {
    margin-bottom: 18px;
  }

  .press-block {
    padding: 18px;
  }

  .press-block h3 {
    font-size: 1.55rem;
  }

  .article-link {
    padding: 14px 15px;
    border-radius: 14px;
  }

  .article-title {
    font-size: 0.95rem;
  }

  .article-meta {
    font-size: 0.86rem;
  }

  .gallery-note {
    margin-top: 14px;
    font-size: 0.9rem;
  }

  .gallery-grid > figure:nth-child(n + 2):not(.gallery-hidden),
  .promo-grid > figure:nth-child(n + 2):not(.gallery-hidden) {
    display: none;
  }

  .gallery-grid img,
  .promo-grid img {
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
    object-position: center top;
    transform: none;
  }

  .contact-card,
  .tab-panels {
    padding: 20px;
  }

  .form-row {
    gap: 8px;
  }

  .form-row input,
  .form-row textarea {
    padding: 13px 14px;
  }

  .footer {
    padding-top: 24px;
    padding-bottom: 36px;
  }

  .legal-banner {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
  }

  .tabs {
    gap: 8px;
  }

  .tab {
    width: 100%;
    text-align: center;
    min-height: 46px;
  }

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

  .lightbox {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .lightbox-stage {
    max-width: 100%;
  }

  .lightbox-image {
    max-height: 82vh;
  }

  .lightbox-prev,
  .lightbox-next {
    position: fixed;
    bottom: 14px;
    width: 44px;
    height: 44px;
    font-size: 1.75rem;
    background: rgba(17, 17, 20, 0.56);
  }

  .lightbox-prev {
    left: 14px;
  }

  .lightbox-next {
    right: 14px;
  }

}

@media (max-width: 520px) {
  .hero {
    padding-top: 22px;
    padding-bottom: 38px;
  }

  .nav {
    padding: 12px 14px;
    margin-bottom: 28px;
  }

  .nav-links a {
    text-align: center;
    min-height: 44px;
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 12vw, 3.2rem);
  }

  .logo {
    max-width: 78vw;
  }

  .hero-stats {
    gap: 8px;
  }

  .stat {
    font-size: 1.35rem;
  }

  .stat-label {
    font-size: 0.69rem;
    max-width: 9ch;
  }

  .gallery-header,
  .press-header {
    margin-bottom: 16px;
  }

  .gallery-grid,
  .press-layout,
  .promo-grid {
    gap: 14px;
  }

  .service-grid article,
  .mini-card,
  .press-block,
  .contact-card,
  .tab-panels {
    padding-left: 16px;
    padding-right: 16px;
  }

  .article-list {
    gap: 9px;
  }

  .article-link {
    padding: 13px 14px;
    border-left-width: 3px;
  }

  .article-title {
    font-size: 0.92rem;
    line-height: 1.25;
  }

  .article-meta {
    font-size: 0.82rem;
  }

  .btn {
    min-height: 48px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-card {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-sub {
    font-size: 0.88rem;
  }

  .video-card {
    border-radius: 18px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
