* {
  box-sizing: border-box;
}

:root {
  --bg: #0f172a;
  --panel-light: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --light-text: #f8fafc;
  --gold: #d6a84f;
  --gold-dark: #9b7021;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.96);
  color: var(--light-text);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: -1px;
}

.brand-text span,
.brand-text strong {
  display: block;
  line-height: 1.1;
}

.brand-text span {
  font-size: 0.88rem;
  opacity: 0.82;
}

.brand-text strong {
  font-size: 1.05rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0.9;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  opacity: 1;
}

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

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--light-text);
}

.hero {
  min-height: 640px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.70)),
    radial-gradient(circle at top right, rgba(214, 168, 79, 0.32), transparent 34%),
    var(--bg);
  color: var(--light-text);
  padding: 92px 0;
}

.films-hero {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.72)),
    radial-gradient(circle at top right, rgba(214, 168, 79, 0.36), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.10), transparent 30%),
    var(--bg);
}

.hero-content,
.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(248, 250, 252, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  background: var(--gold);
  color: #111827;
}

.button.secondary {
  color: var(--light-text);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.message-section,
.division-section {
  padding: 86px 0;
}

.message-section {
  background: var(--panel-light);
}

.message-section h2,
.division-section h2 {
  max-width: 840px;
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.message-section p:not(.section-label) {
  max-width: 760px;
  margin: 0;
  font-size: 1.12rem;
  color: var(--muted);
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.division-card {
  padding: 26px;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
}

.division-card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

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

.division-card a {
  font-weight: 800;
  color: var(--gold-dark);
  text-decoration: none;
}

.contact-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 72px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 28px;
  background: var(--bg);
  color: var(--light-text);
  box-shadow: var(--shadow);
}

.contact-band h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.08;
}

/* Expanded footer keeps the Release 1.7.1 homepage intact while adding leadership links. */
.site-footer {
  background: #07101f;
  color: rgba(248, 250, 252, 0.78);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0 34px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 34px;
  text-align: left;
}

.footer-column h3,
.footer-column h4 {
  margin: 0 0 14px;
  color: #ffffff;
}

.footer-column h3 {
  font-size: 1.18rem;
}

.footer-column h4 {
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-column p {
  margin: 0;
  max-width: 360px;
}

.footer-column a {
  display: block;
  text-decoration: none;
  font-weight: 700;
  margin: 0 0 9px;
  color: rgba(248, 250, 252, 0.82);
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 18px 16px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 68px;
  }

  .brand-text strong {
    font-size: 0.94rem;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: #101a31;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding: 72px 0;
  }

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

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .hero-content,
  .section-shell,
  .contact-band,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }

  .brand-text span {
    font-size: 0.75rem;
  }

  .brand-text strong {
    font-size: 0.84rem;
  }

  .hero {
    padding: 58px 0;
  }

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

  .button {
    padding: 13px 18px;
  }

  .message-section,
  .division-section {
    padding: 60px 0;
  }

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

  .division-card {
    padding: 22px;
  }
}

/* Contact form — Public Release 1.8.0 */
.contact-page {
  padding: 82px 0;
  background: var(--panel-light);
}

.contact-shell {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-intro h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.contact-intro p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-form {
  position: relative;
  padding: 30px;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

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

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

.form-field textarea {
  resize: vertical;
  min-height: 170px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(214, 168, 79, 0.25);
  border-color: var(--gold-dark);
}

.form-submit {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  margin-bottom: 20px;
  padding: 13px 15px;
  border-radius: 12px;
  font-weight: 700;
}

.form-status.success {
  background: #ecfdf5;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-status.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 760px) {
  .contact-shell,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-shell {
    gap: 30px;
  }
}

@media (max-width: 560px) {
  .contact-page {
    padding: 58px 0;
  }

  .contact-shell {
    width: min(100% - 24px, 980px);
  }

  .contact-form {
    padding: 22px;
  }
}
