/* ============ ABOUT US — Premium redesign ============ */
.about-us-page {
  --au-accent: #EE3A23;
  --au-accent-glow: rgba(238, 58, 35, 0.42);
  --au-surface: #07080b;
  --au-surface-2: #0f1117;
  --au-surface-3: #161a22;
  --au-line: rgba(255, 255, 255, 0.08);
  --au-text: #f4f5f7;
  --au-muted: rgba(244, 245, 247, 0.62);
  --au-radius: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--au-surface);
  color: var(--au-text);
}

.au-main {
  flex: 1;
  padding-top: 70px;
}

.au-container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/* Hero */
.au-hero {
  position: relative;
  min-height: clamp(420px, 72vh, 680px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.au-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.au-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.02);
}

.au-hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 40%, transparent 0%, rgba(0, 0, 0, 0.55) 100%);
}

.au-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 11, 0.35) 0%, transparent 28%),
    linear-gradient(0deg, rgba(7, 8, 11, 0.95) 0%, rgba(7, 8, 11, 0.45) 42%, transparent 72%);
}

.au-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 clamp(56px, 8vh, 88px);
}

.au-eyebrow {
  margin: 0 0 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--au-accent);
}

.au-eyebrow--dark {
  color: rgba(238, 58, 35, 0.9);
}

.au-hero-copy h1 {
  margin: 0 0 18px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.au-hero-lead {
  max-width: 34rem;
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
  color: var(--au-muted);
}

.au-hero-scroll {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.au-hero-scroll svg {
  width: 18px;
  height: 18px;
  animation: au-bob 2.2s ease-in-out infinite;
}

.au-hero-scroll:hover {
  color: #fff;
}

@keyframes au-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Section nav */
.au-section-nav {
  position: sticky;
  top: 70px;
  z-index: 12;
  background: rgba(7, 8, 11, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--au-line);
}

.au-section-nav-inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 10px 0;
}

.au-section-nav-inner::-webkit-scrollbar { display: none; }

.au-section-nav-link {
  flex-shrink: 0;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--au-muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.au-section-nav-link:hover,
.au-section-nav-link:focus {
  color: #fff;
  border-color: rgba(238, 58, 35, 0.35);
  background: rgba(238, 58, 35, 0.08);
}

/* Story */
.au-story {
  padding: clamp(64px, 9vw, 104px) 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(238, 58, 35, 0.06), transparent 55%),
    #f5f6f8;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: #111;
}

.au-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.au-story-image-frame {
  position: relative;
  border-radius: var(--au-radius);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 24px 64px rgba(0, 0, 0, 0.45);
}

.au-story-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(238, 58, 35, 0.12), transparent 50%);
  pointer-events: none;
}

.au-story-image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.au-story-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #222;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.au-story-badge-flag svg {
  width: 28px;
  height: auto;
  display: block;
  border-radius: 2px;
}

.au-section-title {
  margin: 0 0 20px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #111;
}

.au-section-title--light {
  color: #fff;
}

.au-story-text {
  margin: 0 0 28px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #3a3f48;
}

.au-story-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.au-text-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--au-accent);
}

.au-text-link:hover {
  color: #EE3A23;
}

/* Pillars */
.au-pillars {
  padding: clamp(72px, 10vw, 112px) 0;
  overflow-x: clip;
  background:
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(238, 58, 35, 0.08), transparent 60%),
    var(--au-surface);
}

.au-pillars-header {
  max-width: 720px;
  margin-bottom: clamp(40px, 6vw, 56px);
}

.au-pillars-lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--au-muted);
}

/* Cinema video showcase */
.au-cinema {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
}

.au-cinema-panel {
  position: relative;
}

.au-cinema-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: end;
}

.au-cinema-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 28px);
}

.au-cinema-panel--feature .au-cinema-layout {
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 32px);
}

.au-cinema-panel--feature .au-cinema-frame {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  border-radius: 0;
  max-height: min(56vh, 520px);
}

.au-cinema-panel--feature .au-cinema-copy {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  border-left: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
}

.au-cinema-panel--feature .au-cinema-copy .au-cinema-title {
  grid-column: 1;
}

.au-cinema-panel--feature .au-cinema-copy p {
  grid-column: 2;
  align-self: center;
}

.au-cinema-frame {
  position: relative;
  display: block;
  aspect-ratio: 2.39 / 1;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07),
    0 28px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  isolation: isolate;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.au-cinema-panel--feature .au-cinema-frame {
  aspect-ratio: 2.39 / 1;
}

.au-cinema-panel--half .au-cinema-frame {
  aspect-ratio: 16 / 10;
}

.au-cinema-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.au-cinema-frame:hover,
.au-cinema-frame:focus-visible {
  transform: scale(1.012);
  box-shadow:
    0 0 0 1px rgba(238, 58, 35, 0.22),
    0 36px 96px rgba(0, 0, 0, 0.62),
    0 0 48px rgba(238, 58, 35, 0.12);
}

.au-cinema-frame:hover img,
.au-cinema-frame:focus-visible img {
  transform: scale(1.05);
  filter: brightness(0.92);
}

.au-cinema-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.au-cinema-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, transparent 38%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, transparent 48%),
    radial-gradient(ellipse 90% 80% at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.35) 100%);
}

.au-cinema-chapter {
  position: absolute;
  z-index: 4;
  right: clamp(12px, 2vw, 22px);
  bottom: clamp(8px, 1.5vw, 14px);
  font-family: "Oswald", sans-serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  user-select: none;
}

.au-cinema-play {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.92;
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.au-cinema-play-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(238, 58, 35, 0.94);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 12px 40px rgba(238, 58, 35, 0.45);
  backdrop-filter: blur(6px);
}

.au-cinema-panel--half .au-cinema-play-icon {
  width: 58px;
  height: 58px;
}

.au-cinema-play-icon svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

.au-cinema-panel--half .au-cinema-play-icon svg {
  width: 20px;
  height: 20px;
}

.au-cinema-play-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.au-cinema-frame:hover .au-cinema-play,
.au-cinema-frame:focus-visible .au-cinema-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.06);
}

.au-cinema-copy {
  padding: clamp(18px, 2.5vw, 28px) 0 clamp(8px, 1.5vw, 16px);
  border-left: 2px solid rgba(238, 58, 35, 0.55);
  padding-left: clamp(18px, 2.5vw, 24px);
}

.au-cinema-copy--compact {
  padding: 18px 0 0;
  border-left: none;
  padding-left: 0;
  border-top: 1px solid var(--au-line);
  margin-top: 16px;
}

.au-cinema-title {
  margin: 0 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.au-cinema-panel--feature .au-cinema-title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.au-cinema-copy p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--au-muted);
}

.au-cinema-panel--feature .au-cinema-copy p {
  font-size: 1rem;
}

/* Letterbox bars on featured film */
.au-cinema-panel--feature .au-cinema-frame::before,
.au-cinema-panel--feature .au-cinema-frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 6;
  height: 6%;
  background: #000;
  pointer-events: none;
}

.au-cinema-panel--feature .au-cinema-frame::before { top: 0; }
.au-cinema-panel--feature .au-cinema-frame::after { bottom: 0; }

@media (max-width: 1024px) {
  .au-cinema-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .au-cinema-copy {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--au-line);
    padding-top: 20px;
  }

  .au-cinema-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .au-cinema-chapter {
    font-size: 3rem;
  }

  .au-cinema-play-icon {
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .au-cinema-frame,
  .au-cinema-frame img,
  .au-cinema-play {
    transition: none;
  }
}

/* CTA band */
.au-cta-band {
  padding: clamp(56px, 8vw, 80px) 0;
  background:
    linear-gradient(135deg, rgba(238, 58, 35, 0.14), transparent 55%),
    var(--au-surface-2);
  border-top: 1px solid var(--au-line);
}

.au-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.au-cta-copy .au-section-title {
  margin-bottom: 0;
}

.au-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.au-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.au-btn-primary {
  background: var(--au-accent);
  color: #fff;
  box-shadow: 0 8px 24px var(--au-accent-glow);
}

.au-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px var(--au-accent-glow);
}

.au-btn-ghost {
  border: 1px solid var(--au-line);
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.au-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

/* Reveal */
.js .au-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .au-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.about-us-page .mission-divider,
.about-us-page .site-footer {
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 1024px) {
  .au-story-grid {
    grid-template-columns: 1fr;
  }

  .au-cinema-panel--feature .au-cinema-copy {
    grid-template-columns: 1fr;
    width: min(1200px, calc(100% - 28px));
  }

  .au-cinema-panel--feature .au-cinema-copy p {
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  .au-container {
    width: min(1200px, calc(100% - 28px));
  }

  .au-hero-inner {
    width: min(1200px, calc(100% - 28px));
  }

  .au-section-nav-inner {
    width: min(1200px, calc(100% - 28px));
  }

  .au-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .au-cta-actions {
    width: 100%;
  }

  .au-btn {
    flex: 1;
    min-width: 140px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .au-hero-scroll svg,
  .js .au-reveal {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}
