:root {
  --container-width: 1400px;
  --container-padding: 1.5rem;
}

body {
  background: var(--color-bg);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.about-header {
  background: var(--color-navy);
  padding: 5rem 0 4rem;
  border-bottom: 3px solid var(--color-green);
}

.about-header-inner {
  max-width: 680px;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.about-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,173,104,0.5); }
  60%       { box-shadow: 0 0 0 8px rgba(0,173,104,0); }
}

.about-kicker span {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green);
  font-weight: 600;
}

.about-title {
  font-family: var(--font-body);
  font-size: clamp(2.875rem, 4vw, 3.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.about-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.about-body {
  --color-green: #008350;
}

.about-section--dark,
.film-grid-overlay {
  --color-green: #00AD68;
}

.about-body {
  background: var(--color-bg);
}

.about-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.about-section:last-child {
  border-bottom: none;
}

.about-section-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem 5rem;
  align-items: start;
}

.about-section-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green);
  font-weight: 600;
  padding-top: 0.4rem;
}

.about-section-content h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-section-content p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.about-section-content p:last-child {
  margin-bottom: 0;
}

.about-section--dark {
  background: var(--color-navy);
  border-bottom: none;
}

.about-section--dark .about-section-label {
  color: var(--color-green);
}

.about-section--dark .about-section-content h2 {
  color: white;
}

.about-section--dark .about-section-content p {
  color: rgba(255,255,255,0.65);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  border-top: 1px solid var(--color-border);
  padding-top: 1.2rem;
}

.team-member-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.3rem;
}

.team-member-role {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

.credits-rule {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 2rem 0 1.5rem;
}

.credits-line {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 1.5rem;
  line-height: 1.6;
}

.partner-placeholder {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--color-border);
  padding: 0.6rem 1.2rem;
  border-radius: 2px;
}

.about-hero-image {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  position: relative;
}

.about-hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.about-hero-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-green);
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.film-grid-item {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.film-grid-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.film-grid-item:hover img {
  transform: scale(1.03);
}

.film-grid-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(4,24,51,0.92) 0%, rgba(4,24,51,0.55) 55%, rgba(4,24,51,0.05) 100%);
  transition: opacity 0.3s ease;
}

.film-grid-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  display: block;
}

.film-grid-name em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}

.film-grid-topic {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green);
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}

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

@media (max-width: 480px) {
  .film-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

@media (max-width: 900px) {
  .about-section-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

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

.about-mosaic {
  --color-green: #00AD68;
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  background: var(--color-navy);
}

.about-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 2px;
  height: 100%;
  width: 100%;
}

@keyframes about-mosaic-wave {
  0%        { filter: brightness(0.40) saturate(0.72); }
  12%, 22%  { filter: brightness(0.82) saturate(1.05); }
  32%, 100% { filter: brightness(0.40) saturate(0.72); }
}

.about-mosaic-tile {
  position: relative;
  overflow: hidden;
  display: block;
}

.about-mosaic-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  animation: about-mosaic-wave 12s ease-in-out infinite;
  animation-delay: var(--wave-delay, 0s);
  will-change: filter;
}

.about-mosaic-tile:hover img {
  animation-play-state: paused;
  filter: brightness(0.85) saturate(1.08);
  transition: filter 0.3s ease;
}

.about-mosaic::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #00AD68;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 768px) {
  .about-mosaic { height: auto; }
  .about-mosaic-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 140px);
  }

  .about-mosaic-tile {
    pointer-events: none;
  }

  .about-mosaic-tile img {
    animation: none;
    filter: none;
    will-change: auto;
  }
}

@media (max-width: 480px) {
  .about-mosaic-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 110px);
  }
}

.about-section:nth-child(odd) { background: var(--color-bg); }
.about-section:nth-child(even):not(.about-section--dark) {
  background: var(--color-bg-alt);
}

@media (max-width: 768px) {
  .about-editorial-image { height: 280px; }
  .about-editorial-image::after { display: none; }
}
