:root {
  --red: #d71920;
  --red-dark: #9f1118;
  --grey: #d8d8d8;
  --ink: #171717;
  --muted: #626262;
  --line: #e5e5e5;
  --off: #f8f8f8;
  --white: #ffffff;
  --panel: #181313;
  --panel-soft: #2b2220;
  --shadow: 0 24px 70px rgba(120, 20, 24, .16);
  --font-main: "Inter", "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Inter", "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-family: var(--font-main);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--off);
  font-family: var(--font-main);
}

a, button, input, textarea, select { font: inherit; }

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 900;
  font-family: var(--font-display);
  white-space: nowrap;
}

.mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--red-dark);
  background: radial-gradient(circle at 32% 28%, #fff 0 19%, var(--grey) 20% 55%, var(--red) 56%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 2vw, 22px);
  flex-wrap: nowrap;
}

.nav a,
.menu-trigger {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 760;
}

.nav a:hover,
.nav a.active,
.menu-trigger.active,
.menu-trigger:hover,
.dropdown-menu:focus-within .menu-trigger {
  color: var(--red);
}

.dropdown-menu {
  position: relative;
}

.menu-trigger {
  min-height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-trigger::after {
  content: "⌄";
  margin-left: 7px;
  font-size: .85rem;
}

.dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 210px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: .16s ease;
}

.dropdown-menu:hover .dropdown,
.dropdown-menu:focus-within .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
}

.dropdown a:hover,
.dropdown a.active {
  background: #f1f1f1;
  color: var(--red);
}

.btn {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: white;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 820;
  text-decoration: none;
  cursor: pointer;
}

.btn.primary {
  border-color: var(--red);
  background: var(--red);
  color: white;
  box-shadow: 0 10px 24px rgba(215,25,32,.22);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: nowrap;
}

.language-trigger {
  gap: 7px;
}

.globe {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.signup-trigger {
  padding-inline: 18px;
}

.menu-trigger::after {
  content: "⌄";
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 88px);
}

.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.eyebrow {
  color: var(--red);
  font-size: .82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(3.15rem, 6.4vw, 6.25rem);
  line-height: .94;
  letter-spacing: 0;
  font-family: var(--font-display);
  font-weight: 950;
}

h2 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(2.15rem, 4vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
  font-family: var(--font-display);
  font-weight: 950;
}

.lead {
  max-width: 690px;
  color: #333;
  font-family: var(--font-main);
  font-size: clamp(1.04rem, 1.55vw, 1.22rem);
  line-height: 1.62;
  font-weight: 430;
}

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

.cinema {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 12%, rgba(215,25,32,.12), transparent 22%),
    linear-gradient(145deg, var(--panel-soft), #0d0b0b);
  box-shadow: var(--shadow);
}

.cinema::after,
.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background-image:
    radial-gradient(circle at 18% 26%, rgba(255,255,255,.08) 0 1px, transparent 1.5px),
    radial-gradient(circle at 76% 52%, rgba(255,255,255,.07) 0 1px, transparent 1.5px);
  background-size: 9px 11px, 14px 18px;
}

.cinema-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  filter: saturate(1.03) contrast(1.02);
}

.hero-visual,
.hero-art,
.policy-art,
.support-art,
.image-card,
.cinema {
  isolation: isolate;
}

.hero-visual img,
.hero-art img,
.policy-art img,
.support-image,
.diagram-image,
.image-card img,
.cinema-img {
  width: 100%;
  object-fit: cover;
}

.hero-visual img,
.hero-art img,
.policy-art img,
.support-image,
.diagram-image {
  border-radius: 24px;
  box-shadow: 0 22px 54px rgba(17,17,17,.12);
}

.cinema-car {
  position: absolute;
  right: 4%;
  bottom: 4%;
  width: min(52%, 360px);
  filter: drop-shadow(0 26px 28px rgba(0,0,0,.42));
}

.cinema-panel {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(340px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(20,16,15,.86);
  color: white;
  backdrop-filter: blur(12px);
}

.cinema-panel strong {
  display: block;
  font-size: 1.65rem;
}

.cinema-panel span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.72);
  font-weight: 760;
  line-height: 1.45;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

.intro-row {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, .55fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.intro-row .lead {
  margin-bottom: 0;
}

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

.stat {
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}

.stat strong {
  display: block;
  color: var(--red);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 820;
  line-height: 1.35;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-weight: 760;
  line-height: 1.45;
}

.detail-list b {
  color: var(--ink);
}

.detail-list .dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: white;
  font-size: .78rem;
  font-weight: 950;
}

.timeline {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.timeline-item span {
  color: var(--red);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.timeline-item h3 {
  margin-bottom: 8px;
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 720;
  line-height: 1.55;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 5vw, 44px);
  border-radius: 22px;
  background: #111;
  color: white;
}

.cta-panel p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255,255,255,.72);
  font-weight: 720;
  line-height: 1.55;
}

.cta-panel .btn:not(.primary) {
  border-color: rgba(255,255,255,.28);
  background: transparent;
  color: white;
}

.card,
.image-card,
.job,
.post,
.form {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 18px 48px rgba(17,17,17,.075);
}

.card {
  min-height: 230px;
  padding: 24px;
}

.card p,
.job p,
.post p,
.contact-card p {
  color: var(--muted);
  line-height: 1.55;
  font-weight: 720;
}

.image-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 22px;
  color: white;
  background:
    radial-gradient(circle at 20% 16%, rgba(215,25,32,.10), transparent 26%),
    linear-gradient(145deg, #2b2220, #111);
}

.image-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  margin-bottom: 18px;
  border-radius: 14px;
  box-shadow: 0 18px 32px rgba(0,0,0,.28);
}

.offering-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 70% 24%, rgba(215,25,32,.20), transparent 34%),
    #111;
  color: white;
  box-shadow: 0 16px 34px rgba(17,17,17,.14);
}

.offering-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.image-card p {
  color: rgba(255,255,255,.72);
  line-height: 1.55;
  font-weight: 720;
}

.info-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 84% 14%, rgba(215,25,32,.18), transparent 28%),
    linear-gradient(145deg, #221c1c, #111);
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
}

.info-card .info-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  background: var(--red);
  color: white;
}

.info-card:nth-child(even) .info-icon {
  background: white;
  color: var(--red);
}

.info-card svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card h3 {
  margin-bottom: 10px;
}

.info-card p {
  color: rgba(255,255,255,.72);
  line-height: 1.55;
  font-weight: 720;
}

.info-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.info-card li {
  color: rgba(255,255,255,.86);
  font-weight: 820;
}

.info-card li::before {
  content: "+";
  margin-right: 8px;
  color: var(--red);
  font-weight: 950;
}

.band {
  background: var(--panel);
  color: white;
}

.band .lead,
.band .card p {
  color: rgba(255,255,255,.74);
}

.band .card {
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: none;
}

.job,
.post,
.contact-card {
  padding: 22px;
}

.job {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.post span {
  color: var(--red);
  font-weight: 950;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
}

.form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.legal-hero {
  min-height: auto;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .55fr);
  align-items: stretch;
}

.legal-summary {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 10%, rgba(215,25,32,.12), transparent 26%),
    linear-gradient(145deg, #fff, #f7f7f7);
  box-shadow: var(--shadow);
}

.legal-summary strong {
  font-size: 1.15rem;
  font-family: var(--font-display);
}

.legal-summary p {
  margin: 0;
  color: var(--muted);
  font-weight: 720;
  line-height: 1.55;
}

.legal-nav {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.legal-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
}

.legal-nav a::after {
  content: ">";
  color: var(--red);
  font-weight: 950;
}

.legal-shell {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 18px 44px rgba(17,17,17,.07);
}

.legal-aside strong {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
}

.legal-aside a {
  padding: 9px 10px;
  border-radius: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 820;
}

.legal-aside a:hover {
  background: #f3f3f3;
  color: var(--red);
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 18px 48px rgba(17,17,17,.065);
}

.legal-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 2.8vw, 2.7rem);
}

.legal-card h3 {
  margin: 22px 0 8px;
  font-size: 1.14rem;
}

.legal-card p,
.legal-card li {
  color: #444;
  line-height: 1.62;
  font-weight: 620;
}

.legal-card ul,
.legal-card ol {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-callout {
  padding: 18px;
  border: 1px solid rgba(215,25,32,.22);
  border-radius: 18px;
  background: #fff2f3;
}

.legal-callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--red-dark);
}

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

.policy-mini {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fafafa;
}

.policy-mini strong {
  display: block;
  margin-bottom: 6px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

input, textarea, select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 14px;
  background: white;
}

textarea {
  min-height: 140px;
  padding-top: 12px;
  resize: vertical;
}

@media (max-width: 1050px) {
  .hero,
  .legal-hero,
  .legal-shell,
  .layout,
  .intro-row,
  .cta-panel,
  .grid-2,
  .grid-3,
  .grid-4,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav {
    justify-content: flex-end;
  }

  .header-actions {
    justify-content: flex-start;
  }
}

@media (min-width: 901px) {
  .site-header {
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav,
  .header-actions {
    flex-wrap: nowrap;
  }
}

@media (max-width: 620px) {
  .section { padding: 44px 16px; }
  h1 { font-size: 3.05rem; }
  .site-header { align-items: center; }
  .brand span:last-child { display: none; }
  .nav { gap: 9px; font-size: .9rem; }
  .menu-trigger { padding: 0; }
  .dropdown { right: auto; left: 0; }
  .cinema { min-height: 420px; }
  .job { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; }
  .policy-grid { grid-template-columns: 1fr; }
  .legal-aside { position: static; }
}
