/* Monumental Studios — Fall 2026 brand system, first-principles layout.
   One ground, hairline section breaks, typography-led. */
:root {
  --ink: #161928;
  --panel: #1F2740;
  --slate: #3E414F;
  --slate-2: #464A57;
  --ice: #F2F6FF;
  --muted: #B4B8C3;
  --red: #DA4B57;
  --red-deep: #B52435;
  --navy: #253358;
  --hairline: rgba(180, 184, 195, 0.16);
  --sans: Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--ice);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  min-width: 1180px;
}
a { color: var(--ice); text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; }

.container { max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* ---------- Buttons ---------- */
.btn-red {
  background: var(--red);
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 10px 22px;
  border-radius: 3px;
  display: inline-block;
  text-transform: uppercase;
  transition: background 0.15s ease;
}
.btn-red:hover { background: var(--red-deep); }
.btn-red--lg { font-size: 13px; padding: 14px 30px; }

/* ---------- Logo / Nav ---------- */
.logo { width: 32px; height: 24px; display: block; }

.nav { border-bottom: 1px solid var(--hairline); }
.nav__inner { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; padding-bottom: 22px; }
.nav__brand { display: flex; align-items: center; gap: 14px; }
.nav__name { font-weight: 700; font-size: 13.5px; letter-spacing: 0.3em; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s ease;
}
.nav__links a:hover { color: var(--ice); }
.nav__links a.btn-red { color: #fff; }

/* ---------- Showreel ---------- */
.showreel { padding: 40px 0 0; }
.reel {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: 600px;
  width: 100%;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(37, 51, 88, 0.55), transparent 65%),
    var(--panel);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reel video.is-vertical, .tile video.is-vertical { object-fit: contain; }

/* Blurred self-backdrop behind vertical cuts (broadcast pillarbox) */
.reel__backdrop, .tile__backdrop {
  position: absolute;
  inset: -6% !important;
  width: 112% !important;
  height: 112% !important;
  object-fit: cover !important;
  filter: blur(38px) brightness(0.5);
  display: none;
}
.reel.has-backdrop .reel__backdrop,
.tile.has-backdrop .tile__backdrop { display: block; }
.reel.is-playing .reel__play { opacity: 0; pointer-events: none; }
.reel__badge, .reel__arrows { z-index: 2; }
.reel__badge {
  background: rgba(22, 25, 40, 0.72);
  border-radius: 3px;
  padding: 8px 12px;
}
.reel__sound {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--muted);
  background: rgba(22, 25, 40, 0.72);
  border-radius: 3px;
  padding: 0 12px;
  height: 32px;
  transition: color 0.15s ease;
}
.reel__sound:hover { color: var(--ice); }
.reel__sound.is-on { color: var(--red); }
.reel__arrow { background: rgba(22, 25, 40, 0.72); border-radius: 3px; }
.reel__play {
  position: relative;
  z-index: 2;
  transition: opacity 0.2s ease, background 0.15s ease, border-color 0.15s ease;
  width: 78px; height: 78px;
  border-radius: 50%;
  border: 1.5px solid rgba(242, 246, 255, 0.55);
  color: var(--ice);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.reel__play:hover { background: rgba(218, 75, 87, 0.9); border-color: transparent; }

.reel__badge {
  position: absolute;
  left: 22px; bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.reel__brand { font-weight: 800; font-size: 14px; letter-spacing: 0.24em; text-transform: uppercase; }
.reel__dot { color: var(--red); font-size: 9px; }
.reel__title { font-size: 12px; color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; }

.reel__arrows { position: absolute; right: 22px; bottom: 16px; display: flex; gap: 6px; }
.reel__arrow {
  width: 36px; height: 32px;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease;
}
.reel__arrow:hover { color: var(--ice); }

/* Index strip — text only */
.reelindex {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 22px 0 0;
}
.reelindex button {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.reelindex button:hover { color: var(--ice); }
.reelindex button.is-active { color: var(--ice); border-bottom-color: var(--red); }

/* ---------- Statement ---------- */
.statement { padding: 96px 0 88px; }
.statement h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.005em;
  max-width: 900px;
  text-wrap: balance;
}
.statement__sub {
  margin-top: 26px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--ice);
  max-width: 62ch;
}

/* ---------- Pillars — typography, no boxes ---------- */
.pillars { border-top: 1px solid var(--hairline); padding: 64px 0; }
.pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.pillar h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.34em;
  color: var(--ice);
  margin-bottom: 12px;
}
.pillar p { font-size: 17px; line-height: 1.6; color: var(--ice); opacity: 0.85; max-width: 34ch; }

/* ---------- Section heads ---------- */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 30px;
}
.section-head h2 { font-size: 30px; font-weight: 800; letter-spacing: 0.01em; }
.section-head__note { font-size: 10.5px; font-weight: 700; letter-spacing: 0.24em; color: var(--muted); }

/* ---------- Work ---------- */
.work { border-top: 1px solid var(--hairline); padding: 64px 0 96px; }
.work__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.tile {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(37, 51, 88, 0.5), transparent 70%),
    var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tile { cursor: pointer; }
.tile video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tile__tag {
  z-index: 2;
  text-shadow: 0 1px 6px rgba(22, 25, 40, 0.9);
  position: absolute;
  left: 12px; bottom: 10px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--ice);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.tile:hover .tile__tag { opacity: 1; }

/* ---------- Contact ---------- */
.contact { border-top: 1px solid var(--hairline); padding: 64px 0 96px; }
.contact__row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: start;
  gap: 64px;
}
.contact__lines { display: flex; flex-direction: column; gap: 18px; }
.contact__lead { font-size: 16px; line-height: 1.65; color: var(--muted); max-width: 36ch; }
.contact__direct {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: color 0.15s ease;
}
.contact__direct:hover { color: var(--red); }

.contact__form { display: flex; flex-direction: column; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--slate-2);
  border-radius: 0;
  padding: 8px 0 10px;
  color: var(--ice);
  font-family: var(--sans);
  font-size: 15px;
  resize: vertical;
  transition: border-color 0.15s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--red); }
.form__foot { display: flex; align-items: center; gap: 18px; margin-top: 4px; }
.form__status { font-size: 12px; letter-spacing: 0.06em; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--hairline); }
.footer__inner {
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted);
}
.footer b { color: var(--red); font-weight: 400; }
.footer__social { display: flex; gap: 26px; }
.footer__social a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s ease;
}
.footer__social a:hover { color: var(--ice); }
