:root {
  --black: #030303;
  --panel: #111111;
  --paper: #f8f4ec;
  --white: #ffffff;
  --text: #17130d;
  --muted: #746a5d;
  --gold: #f7b640;
  --gold-soft: #ffe0a1;
  --red: #c84634;
  --teal: #23828a;
  --line: rgba(255, 255, 255, 0.18);
  --paper-line: rgba(23, 19, 13, 0.14);
  --shadow: 0 24px 55px rgba(0, 0, 0, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.brand-rail {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 260px;
  padding: 26px 22px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.92), rgba(3, 3, 3, 0.98)),
    url("assets/diamond-galaxy/event-crowd-floor.jpg");
  background-position: center;
  background-size: cover;
  border-right: 1px solid var(--line);
}

.rail-logo {
  display: block;
  width: 165px;
  height: 118px;
}

.rail-logo img {
  object-fit: contain;
}

.rail-nav {
  display: grid;
  align-content: center;
  gap: 14px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.rail-nav a {
  width: max-content;
  color: rgba(255, 255, 255, 0.78);
}

.rail-nav a:hover,
.rail-nav a:focus-visible,
.rail-nav a[aria-current="page"] {
  color: var(--gold);
}

.rail-contact {
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  min-width: 0;
}

.rail-contact a,
.contact-links a,
.l4-contact a {
  overflow-wrap: anywhere;
}

.rail-contact a:first-child {
  color: var(--gold);
  font-size: 18px;
  font-weight: 800;
}

.page,
.footer {
  margin-left: 260px;
}

.opening {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
  gap: 28px;
  min-height: 100vh;
  padding: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(247, 182, 64, 0.16), transparent 34%),
    linear-gradient(135deg, #030303 0%, #121212 54%, #2d1110 100%);
}

.opening-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: calc(100vh - 68px);
  padding: 42px;
  border: 1px solid var(--line);
}

.overline {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.opening h1 {
  max-width: 780px;
  margin: 0;
  font-size: 64px;
  line-height: 0.98;
}

.opening-copy p:not(.overline) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.opening-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.solid-button,
.line-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.solid-button {
  color: #080603;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border: 1px solid transparent;
}

.line-button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.solid-button:hover,
.line-button:hover,
.solid-button:focus-visible,
.line-button:focus-visible {
  transform: translateY(-2px);
}

.poster-board {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: calc(100vh - 68px);
}

.poster-board figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.poster-board figure::after,
.work-item::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  content: "";
}

.poster-main {
  grid-row: span 2;
}

.poster-board figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.scene-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.8fr 1fr;
  height: 310px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.scene-strip img {
  min-width: 0;
  border-right: 1px solid var(--line);
}

.home-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  color: var(--white);
  background: var(--line);
}

.home-directory article {
  display: grid;
  align-content: end;
  min-height: 360px;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.58), rgba(3, 3, 3, 0.9)),
    url("assets/diamond-galaxy/event-storefront.jpg");
  background-position: center;
  background-size: cover;
}

.home-directory article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.56), rgba(3, 3, 3, 0.9)),
    url("assets/diamond-galaxy/meeting-room.jpg");
  background-position: center;
  background-size: cover;
}

.home-directory article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.56), rgba(3, 3, 3, 0.9)),
    url("assets/diamond-galaxy/opening-crowd.jpg");
  background-position: center;
  background-size: cover;
}

.home-directory article:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.56), rgba(3, 3, 3, 0.9)),
    url("assets/diamond-galaxy/stage-group.jpg");
  background-position: center;
  background-size: cover;
}

.home-directory span,
.services-matrix b,
.process-stack span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-directory h2 {
  margin: 12px 0;
  font-size: 30px;
  line-height: 1.04;
}

.home-directory p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.76);
}

.home-directory a {
  width: max-content;
  color: var(--gold-soft);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.work-board {
  padding: 82px 5vw;
  color: var(--text);
  background: var(--paper);
}

.board-title,
.service-title {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 32px;
}

.board-title h2,
.service-title h2,
.contact-card h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.04;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.95fr;
  grid-auto-rows: 260px;
  gap: 14px;
}

.work-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--panel);
}

.work-item.tall {
  grid-row: span 2;
}

.work-item > div {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 1;
}

.work-item span,
.work-item.accent > span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.work-item h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

.work-item.accent {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(200, 70, 52, 0.94), rgba(35, 130, 138, 0.92)),
    var(--red);
}

.work-item.accent::after {
  display: none;
}

.service-stage {
  padding: 86px 5vw 96px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.86), rgba(3, 3, 3, 0.96)),
    url("assets/diamond-galaxy/meeting-room.jpg");
  background-position: center;
  background-size: cover;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.service-list article {
  display: grid;
  grid-template-columns: 52px 0.72fr 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.service-list b {
  color: var(--gold);
  font-size: 13px;
}

.service-list h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
}

.service-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 22px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.88), rgba(3, 3, 3, 0.7)),
    url("assets/diamond-galaxy/opening-crowd.jpg");
  background-position: center;
  background-size: cover;
}

.contact-card,
.contact-form {
  min-width: 0;
  min-height: 560px;
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(3, 3, 3, 0.62);
  backdrop-filter: blur(8px);
}

.contact-card h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1.02;
}

.contact-only {
  min-height: calc(100vh - 85px);
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-links a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.contact-links span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  background: rgba(248, 244, 236, 0.94);
  color: var(--text);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-width: 0;
  width: 100%;
  min-height: 48px;
  padding: 12px;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(23, 19, 13, 0.2);
  border-radius: 0;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 5vw;
  color: var(--white);
  background: var(--black);
  border-top: 1px solid var(--line);
}

.footer strong {
  color: var(--gold);
}

.sub-hero {
  display: grid;
  align-content: end;
  min-height: 520px;
  padding: 56px 5vw;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.86), rgba(3, 3, 3, 0.36)),
    url("assets/diamond-galaxy/stage-group.jpg");
  background-position: center;
  background-size: cover;
}

.services-hero {
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.88), rgba(3, 3, 3, 0.46)),
    url("assets/diamond-galaxy/meeting-room.jpg");
  background-position: center;
  background-size: cover;
}

.sub-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: 60px;
  line-height: 0.98;
}

.gallery-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.gallery-wall figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--panel);
}

.gallery-wall .wide {
  grid-column: span 2;
}

.gallery-wall .tall {
  grid-row: span 2;
}

.gallery-wall figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.case-split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  padding: 76px 5vw;
  color: var(--text);
  background: var(--paper);
}

.case-split h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.05;
}

.case-split > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.services-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  color: var(--white);
  background: var(--line);
}

.services-matrix article {
  min-height: 270px;
  padding: 32px;
  background: var(--panel);
}

.services-matrix article:nth-child(3n + 2) {
  background: #17100a;
}

.services-matrix article:nth-child(3n) {
  background: #0e2022;
}

.services-matrix h2 {
  margin: 18px 0 12px;
  font-size: 34px;
  line-height: 1.04;
}

.services-matrix p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.process-stack {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: var(--text);
  background: var(--paper);
  border-top: 1px solid var(--paper-line);
}

.process-stack div {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--paper-line);
}

.process-stack h3 {
  margin: 18px 0 0;
  font-size: 24px;
  line-height: 1.12;
}

.choice-body {
  color: var(--white);
  background:
    radial-gradient(circle at 92% 8%, rgba(247, 182, 64, 0.18), transparent 32%),
    #050505;
}

.choice-header,
.l2-header,
.l3-header,
.l4-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 5vw;
  color: var(--white);
  background: rgba(3, 3, 3, 0.94);
  border-bottom: 1px solid var(--line);
}

.choice-header img,
.l2-header img,
.l3-header img,
.l4-header img {
  width: 128px;
  height: 62px;
  object-fit: contain;
}

.choice-header nav,
.l2-header nav,
.l3-header nav,
.l4-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 14px;
  font-weight: 900;
}

.choice-header nav a:hover,
.l2-header nav a:hover,
.l3-header nav a:hover,
.l4-header nav a:hover {
  color: var(--gold);
}

.choice-main {
  padding: 62px 5vw 82px;
}

.choice-hero {
  max-width: 920px;
  margin-bottom: 36px;
}

.choice-hero h1 {
  margin: 0;
  font-size: 60px;
  line-height: 0.98;
}

.choice-hero p:not(.overline) {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

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

.choice-grid article {
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line);
}

.choice-grid img {
  height: 250px;
}

.choice-grid div {
  padding: 22px;
}

.choice-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.choice-grid h2 {
  margin: 10px 0;
  font-size: 26px;
  line-height: 1.05;
}

.choice-grid p {
  min-height: 66px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.68);
}

.choice-grid a {
  color: var(--gold-soft);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.layout-two {
  color: var(--white);
  background: #050505;
}

.l2-hero {
  position: relative;
  display: grid;
  min-height: 760px;
  overflow: hidden;
}

.l2-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.l2-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.94), rgba(3, 3, 3, 0.36)),
    linear-gradient(180deg, rgba(3, 3, 3, 0.08), rgba(3, 3, 3, 0.72));
  content: "";
}

.l2-hero > div {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 760px;
  padding: 78px 5vw;
}

.l2-hero h1 {
  margin: 0;
  font-size: 76px;
  line-height: 0.92;
}

.l2-hero p:not(.overline) {
  max-width: 620px;
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.l2-ticket-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.l2-ticket-row article {
  min-height: 260px;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.94), rgba(37, 18, 11, 0.96));
}

.l2-ticket-row span {
  color: var(--gold);
  font-weight: 900;
}

.l2-ticket-row h2 {
  margin: 18px 0 12px;
  font-size: 34px;
  line-height: 1;
}

.l2-ticket-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.l2-film-strip {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.9fr 1fr;
  height: 360px;
}

.l2-film-strip img {
  border-right: 1px solid var(--line);
}

.layout-three {
  color: var(--text);
  background: #f9f5ed;
}

.l3-header {
  color: var(--text);
  background: rgba(249, 245, 237, 0.96);
  border-bottom: 1px solid var(--paper-line);
}

.l3-header nav a:hover {
  color: var(--deep-gold, #b16a16);
}

.l3-hero {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 46px;
  align-items: end;
  padding: 88px 5vw 46px;
}

.l3-hero h1 {
  margin: 0;
  font-size: 70px;
  line-height: 0.94;
}

.l3-hero > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 20px;
}

.l3-lookbook {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 320px;
  gap: 18px;
  padding: 0 5vw 58px;
}

.l3-lookbook figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #ddd;
}

.l3-lookbook .large {
  grid-row: span 2;
}

.l3-lookbook figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: var(--text);
  background: rgba(249, 245, 237, 0.88);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.l3-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--paper-line);
  border-top: 1px solid var(--paper-line);
}

.l3-services article {
  min-height: 230px;
  padding: 32px 5vw 32px 32px;
  background: #fff;
}

.l3-services span {
  display: block;
  margin-bottom: 18px;
  color: var(--deep-gold, #b16a16);
  font-weight: 900;
  text-transform: uppercase;
}

.l3-services p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.layout-four {
  color: var(--white);
  background: #070707;
}

.l4-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 1px;
  min-height: calc(100vh - 99px);
  background: var(--line);
}

.l4-scoreboard,
.l4-panel-grid,
.l4-panel-grid article {
  min-width: 0;
}

.l4-scoreboard {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.78), rgba(3, 3, 3, 0.96)),
    url("assets/diamond-galaxy/hero-crowd.jpg");
  background-position: center;
  background-size: cover;
}

.l4-scoreboard h1 {
  max-width: 620px;
  margin: 0;
  font-size: 66px;
  line-height: 0.92;
}

.l4-contact {
  display: grid;
  gap: 10px;
  font-weight: 900;
}

.l4-contact a:first-child {
  color: var(--gold);
  font-size: 28px;
}

.l4-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(250px, 1fr);
  gap: 1px;
}

.l4-panel-grid article {
  position: relative;
  overflow: hidden;
  background: #111;
}

.l4-panel-grid .big {
  grid-row: span 2;
}

.l4-panel-grid article::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.76));
  content: "";
}

.l4-panel-grid div {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 1;
}

.l4-panel-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.l4-panel-grid h2 {
  margin: 10px 0 0;
  font-size: 32px;
  line-height: 1.02;
}

.l4-hero-copy {
  max-width: 560px;
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.l4-status-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.l4-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  color: var(--white);
  background: var(--line);
  border-top: 1px solid var(--line);
}

.l4-route-grid a {
  display: grid;
  align-content: end;
  min-height: 310px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.42), rgba(7, 7, 7, 0.9)),
    url("assets/diamond-galaxy/meeting-room.jpg");
  background-position: center;
  background-size: cover;
}

.l4-route-grid a:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.42), rgba(7, 7, 7, 0.9)),
    url("assets/diamond-galaxy/stage-group.jpg");
  background-position: center;
  background-size: cover;
}

.l4-route-grid a:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.42), rgba(7, 7, 7, 0.9)),
    url("assets/diamond-galaxy/opening-crowd.jpg");
  background-position: center;
  background-size: cover;
}

.l4-route-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.l4-route-grid strong {
  display: block;
  margin: 12px 0;
  font-size: 31px;
  line-height: 1.04;
}

.l4-route-grid small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.35;
}

.l4-status-strip div {
  min-width: 0;
  padding: 24px;
  background: #101010;
}

.l4-status-strip span,
.l4-contact-list span,
.l4-flow-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.l4-status-strip strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 20px;
  line-height: 1.08;
}

.l4-capabilities,
.l4-run-flow {
  padding: 82px 5vw;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.94), rgba(7, 7, 7, 0.98)),
    url("assets/diamond-galaxy/meeting-room.jpg");
  background-position: center;
  background-size: cover;
}

.l4-subpage-hero {
  display: grid;
  align-content: end;
  min-height: 520px;
  padding: 56px 5vw;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.9), rgba(3, 3, 3, 0.38)),
    url("assets/diamond-galaxy/meeting-room.jpg");
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid var(--line);
}

.l4-events-hero {
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.88), rgba(3, 3, 3, 0.34)),
    url("assets/diamond-galaxy/stage-group.jpg");
  background-position: center;
  background-size: cover;
}

.l4-subpage-hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: 62px;
  line-height: 0.96;
}

.l4-section-title {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 32px;
}

.l4-section-title.compact {
  max-width: 920px;
}

.l4-section-title h2,
.l4-contact-copy h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.02;
}

.l4-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.l4-capability-grid article {
  min-width: 0;
  min-height: 260px;
  padding: 28px;
  background: rgba(12, 12, 12, 0.92);
}

.l4-capability-grid article:nth-child(2n) {
  background: rgba(22, 16, 10, 0.94);
}

.l4-capability-grid b {
  color: var(--gold);
  font-size: 12px;
}

.l4-capability-grid h3 {
  margin: 18px 0 12px;
  font-size: 27px;
  line-height: 1.04;
}

.l4-capability-grid p,
.l4-flow-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.l4-event-wall {
  padding: 82px 5vw;
  color: var(--white);
  background: #070707;
}

.l4-wall-grid {
  columns: 320px 3;
  column-gap: 16px;
}

.l4-wall-grid figure {
  position: relative;
  display: inline-block;
  width: 100%;
  aspect-ratio: 16 / 11;
  break-inside: avoid;
  min-width: 0;
  margin: 0 0 16px;
  overflow: hidden;
  background: #111;
}

.l4-wall-grid .wide {
  aspect-ratio: 16 / 9;
}

.l4-wall-grid figure:nth-child(3n) {
  aspect-ratio: 4 / 3;
}

.l4-wall-grid figure:nth-child(4n) {
  aspect-ratio: 3 / 4;
}

.l4-wall-grid figure::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  content: "";
}

.l4-wall-grid figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.l4-run-flow {
  background:
    linear-gradient(135deg, rgba(10, 28, 30, 0.95), rgba(10, 10, 10, 0.97)),
    url("assets/diamond-galaxy/event-crowd-floor.jpg");
  background-position: center;
  background-size: cover;
}

.l4-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.l4-flow-grid article {
  min-width: 0;
  min-height: 230px;
  padding: 26px;
  background: rgba(7, 7, 7, 0.82);
}

.l4-flow-grid h3 {
  margin: 0 0 12px;
  font-size: 25px;
  line-height: 1.05;
}

.l4-contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 1px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.92), rgba(3, 3, 3, 0.7)),
    url("assets/diamond-galaxy/opening-crowd.jpg");
  background-position: center;
  background-size: cover;
  border-top: 1px solid var(--line);
}

.l4-contact-copy,
.l4-contact-form {
  min-width: 0;
  padding: 54px 5vw;
}

.l4-contact-page {
  min-height: calc(100vh - 100px);
}

.l4-contact-copy h1 {
  margin: 0;
  font-size: 54px;
  line-height: 1.02;
}

.l4-contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.l4-contact-list a {
  display: block;
  overflow-wrap: anywhere;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.l4-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  color: var(--text);
  background: rgba(248, 244, 236, 0.94);
}

.l4-contact-form label {
  display: grid;
  min-width: 0;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
}

.l4-contact-form input,
.l4-contact-form select,
.l4-contact-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 12px;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(23, 19, 13, 0.2);
  border-radius: 0;
  font: inherit;
}

.l4-contact-form textarea {
  resize: vertical;
}

.l4-contact-form .full {
  grid-column: 1 / -1;
}

.l4-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 5vw;
  color: var(--white);
  background: #050505;
  border-top: 1px solid var(--line);
}

.l4-footer strong {
  color: var(--gold);
}

@media (max-width: 1120px) {
  .brand-rail {
    position: static;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    width: auto;
    padding: 16px 5vw;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .rail-logo {
    width: 130px;
    height: 80px;
  }

  .rail-nav {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    font-size: 16px;
  }

  .rail-nav a {
    width: auto;
  }

  .rail-contact {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .page,
  .footer {
    margin-left: 0;
  }

  .opening {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .opening-copy,
  .poster-board {
    min-height: auto;
  }

  .poster-board {
    height: 620px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .home-directory,
  .process-stack,
  .choice-grid,
  .l2-ticket-row,
  .l3-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .l3-hero,
  .l4-shell,
  .l4-contact-section {
    grid-template-columns: 1fr;
  }

  .l4-capability-grid,
  .l4-flow-grid,
  .l4-status-strip,
  .l4-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-stage {
    grid-template-columns: 1fr;
  }

  .l2-hero h1,
  .l3-hero h1,
  .l4-scoreboard h1 {
    font-size: 54px;
  }
}

@media (max-width: 760px) {
  .brand-rail {
    grid-template-columns: 1fr;
  }

  .rail-nav {
    grid-column: 1;
    justify-content: flex-start;
  }

  .opening,
  .contact-stage {
    padding: 18px;
  }

  .opening-copy {
    padding: 24px;
  }

  .opening h1 {
    font-size: 40px;
  }

  .board-title,
  .service-title,
  .contact-stage,
  .case-split {
    grid-template-columns: 1fr;
  }

  .board-title h2,
  .service-title h2,
  .contact-card h2 {
    font-size: 32px;
  }

  .poster-board,
  .work-grid,
  .contact-form,
  .home-directory,
  .services-matrix,
  .process-stack,
  .choice-grid,
  .l2-ticket-row,
  .l3-services,
  .l4-panel-grid,
  .l4-capability-grid,
  .l4-flow-grid,
  .l4-status-strip,
  .l4-route-grid,
  .l4-section-title,
  .l4-contact-form {
    grid-template-columns: 1fr;
  }

  .poster-board {
    height: auto;
  }

  .poster-board figure,
  .poster-main {
    grid-row: auto;
    min-height: 320px;
  }

  .scene-strip {
    grid-template-columns: 1fr 1fr;
    height: 440px;
  }

  .work-grid {
    grid-auto-rows: auto;
  }

  .work-item,
  .work-item.tall {
    min-height: 340px;
    grid-row: auto;
  }

  .work-item.accent {
    min-height: 240px;
  }

  .service-list article {
    grid-template-columns: 44px 1fr;
  }

  .service-list p {
    grid-column: 2;
  }

  .contact-card,
  .contact-form {
    min-height: auto;
    padding: 24px;
  }

  .contact-card h1,
  .sub-hero h1 {
    font-size: 36px;
  }

  .sub-hero {
    min-height: 420px;
    padding: 44px 5vw;
  }

  .gallery-wall {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .choice-header,
  .l2-header,
  .l3-header,
  .l4-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .choice-hero h1,
  .l2-hero h1,
  .l3-hero h1,
  .l4-scoreboard h1 {
    font-size: 38px;
  }

  .l4-section-title h2,
  .l4-contact-copy h2,
  .l4-contact-copy h1,
  .l4-subpage-hero h1 {
    font-size: 34px;
  }

  .l2-hero {
    min-height: 620px;
  }

  .l2-hero > div,
  .l4-scoreboard {
    padding: 34px 5vw;
  }

  .l2-film-strip,
  .l3-lookbook {
    grid-template-columns: 1fr;
    height: auto;
  }

  .l2-film-strip img,
  .l3-lookbook figure,
  .l3-lookbook .large {
    height: 300px;
    grid-row: auto;
  }

  .l4-panel-grid .big {
    grid-row: auto;
  }

  .l4-capabilities,
  .l4-event-wall,
  .l4-run-flow {
    padding: 58px 5vw;
  }

  .l4-contact-copy,
  .l4-contact-form {
    padding: 34px 5vw;
  }

  .l4-subpage-hero {
    min-height: 390px;
    padding: 44px 5vw;
  }

  .gallery-wall .wide,
  .gallery-wall .tall {
    grid-column: span 2;
    grid-row: span 1;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  .rail-nav {
    gap: 10px;
    font-size: 14px;
  }

  .brand-rail {
    padding-right: 16px;
    padding-left: 16px;
  }

  .rail-contact {
    font-size: 12px;
  }

  .opening h1 {
    font-size: 34px;
  }

  .opening-copy p:not(.overline) {
    font-size: 16px;
  }

  .solid-button,
  .line-button {
    width: 100%;
  }

  .scene-strip {
    grid-template-columns: 1fr;
    height: auto;
  }

  .scene-strip img {
    height: 250px;
  }

  .gallery-wall {
    grid-template-columns: 1fr;
  }

  .gallery-wall .wide,
  .gallery-wall .tall {
    grid-column: span 1;
  }

  .services-matrix h2,
  .home-directory h2 {
    font-size: 28px;
  }

  .l4-footer {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  body.layout-four {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .l4-header {
    align-items: center;
    justify-content: center;
    flex-direction: row;
    min-height: 58px;
    padding: 7px 14px;
    background: rgba(3, 3, 3, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .l4-header img {
    width: 82px;
    height: 38px;
  }

  .l4-header nav {
    position: fixed;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    z-index: 60;
    grid-template-columns: 0.72fr 1.18fr 1.05fr 0.86fr;
    width: auto;
    padding: 6px;
    background: rgba(3, 3, 3, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 -10px 34px rgba(0, 0, 0, 0.42);
  }

  .l4-header nav a {
    min-height: 43px;
    padding: 7px 3px;
    background: transparent;
    border: 0;
    border-radius: 6px;
  }

  .l4-header nav a[aria-current="page"] {
    color: #080603;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    border-color: transparent;
  }

  .l4-scoreboard {
    padding: 26px 18px 24px;
  }

  .l4-scoreboard h1 {
    font-size: 32px;
    line-height: 0.98;
  }

  .l4-hero-copy {
    margin: 14px 0 18px;
    font-size: 14px;
    line-height: 1.48;
  }

  .l4-contact a:first-child {
    font-size: 21px;
  }

  .l4-panel-grid {
    grid-auto-rows: 188px;
  }

  .l4-panel-grid h2 {
    font-size: 22px;
  }

  .l4-route-grid a {
    min-height: 148px;
    padding: 18px;
  }

  .l4-route-grid strong {
    font-size: 20px;
  }

  .l4-route-grid small {
    line-height: 1.3;
  }

  .l4-subpage-hero {
    min-height: 245px;
    padding: 28px 18px;
  }

  .l4-subpage-hero h1,
  .l4-contact-copy h1,
  .l4-contact-copy h2,
  .l4-section-title h2 {
    font-size: 28px;
    line-height: 1.03;
  }

  .l4-capabilities,
  .l4-event-wall,
  .l4-run-flow {
    padding: 30px 18px;
  }

  .l4-capability-grid article,
  .l4-flow-grid article {
    padding: 20px;
  }

  .l4-capability-grid h3,
  .l4-flow-grid h3 {
    font-size: 20px;
  }

  .l4-contact-copy {
    padding: 26px 18px 22px;
  }

  .l4-contact-form {
    padding: 24px 18px 112px;
  }

  .l4-contact-list {
    margin-top: 16px;
  }

  .l4-contact-list a {
    gap: 4px;
    padding: 10px 0;
    font-size: 13px;
    line-height: 1.35;
  }

  .l4-contact-form input,
  .l4-contact-form select,
  .l4-contact-form textarea {
    min-height: 44px;
    font-size: 14px;
  }

  .l4-contact-form textarea {
    min-height: 104px;
  }

  .l4-footer {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 440px) {
  .l4-header {
    min-height: 54px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .l4-header img {
    width: 76px;
    height: 35px;
  }

  .l4-header nav {
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 8px;
    gap: 4px;
    font-size: 10px;
  }

  .l4-header nav a {
    min-height: 41px;
  }

  .l4-scoreboard {
    padding: 23px 16px 22px;
  }

  .l4-scoreboard h1 {
    font-size: 29px;
  }

  .l4-panel-grid {
    grid-auto-rows: 176px;
  }

  .l4-subpage-hero {
    min-height: 225px;
    padding: 25px 16px;
  }

  .l4-subpage-hero h1,
  .l4-contact-copy h1,
  .l4-contact-copy h2,
  .l4-section-title h2 {
    font-size: 25px;
  }

  .l4-route-grid a {
    min-height: 138px;
    padding: 16px;
  }

  .l4-contact-copy {
    padding: 24px 16px 20px;
  }

  .l4-contact-form {
    padding: 22px 16px 108px;
  }
}

@media (max-width: 760px) {
  .l4-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .l4-header nav {
    position: fixed !important;
    top: auto !important;
    right: 10px !important;
    bottom: calc(10px + env(safe-area-inset-bottom)) !important;
    left: 10px !important;
  }
}

@media (max-width: 440px) {
  .l4-header nav {
    right: 8px !important;
    bottom: calc(8px + env(safe-area-inset-bottom)) !important;
    left: 8px !important;
  }
}

@media (max-width: 760px) {
  .l4-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .l4-header nav {
    position: fixed !important;
    top: auto !important;
    right: 10px !important;
    bottom: calc(10px + env(safe-area-inset-bottom)) !important;
    left: 10px !important;
  }
}

@media (max-width: 440px) {
  .l4-header nav {
    right: 8px !important;
    bottom: calc(8px + env(safe-area-inset-bottom)) !important;
    left: 8px !important;
  }
}

@media (max-width: 760px) {
  .l4-header {
    position: sticky;
    top: 0;
    z-index: 20;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    padding: 10px 14px 12px;
    backdrop-filter: blur(14px);
  }

  .l4-header img {
    width: 104px;
    height: 48px;
  }

  .l4-header nav {
    display: grid;
    grid-template-columns: 0.75fr 1.15fr 1.05fr 0.9fr;
    width: 100%;
    gap: 6px;
    font-size: 11px;
  }

  .l4-header nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 36px;
    padding: 8px 4px;
    overflow: hidden;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 6px;
  }

  .l4-header nav a[aria-current="page"] {
    color: var(--gold);
    border-color: rgba(247, 182, 64, 0.5);
  }

  .l4-shell {
    min-height: auto;
  }

  .l4-scoreboard {
    justify-content: flex-start;
    min-height: auto;
    padding: 30px 18px;
  }

  .l4-scoreboard h1 {
    font-size: 34px;
    line-height: 1;
  }

  .l4-hero-copy {
    margin: 16px 0 20px;
    font-size: 15px;
  }

  .l4-contact {
    gap: 7px;
    font-size: 13px;
  }

  .l4-contact a:first-child {
    font-size: 22px;
  }

  .l4-panel-grid {
    grid-auto-rows: 220px;
  }

  .l4-panel-grid div {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .l4-panel-grid h2 {
    font-size: 24px;
  }

  .l4-route-grid a {
    min-height: 190px;
    padding: 22px;
  }

  .l4-route-grid strong {
    margin: 9px 0;
    font-size: 23px;
  }

  .l4-route-grid small {
    font-size: 13px;
  }

  .l4-subpage-hero {
    min-height: 300px;
    padding: 34px 18px;
  }

  .l4-subpage-hero h1,
  .l4-contact-copy h1,
  .l4-contact-copy h2,
  .l4-section-title h2 {
    font-size: 30px;
    line-height: 1.04;
  }

  .l4-capabilities,
  .l4-event-wall,
  .l4-run-flow {
    padding: 36px 18px;
  }

  .l4-section-title {
    gap: 14px;
    margin-bottom: 20px;
  }

  .l4-capability-grid article,
  .l4-flow-grid article {
    min-height: auto;
    padding: 22px;
  }

  .l4-capability-grid h3,
  .l4-flow-grid h3 {
    font-size: 22px;
  }

  .l4-wall-grid {
    columns: 1;
    column-gap: 0;
  }

  .l4-wall-grid figure,
  .l4-wall-grid figure:nth-child(3n),
  .l4-wall-grid figure:nth-child(4n) {
    aspect-ratio: 4 / 3;
    margin-bottom: 12px;
  }

  .l4-wall-grid .wide {
    aspect-ratio: 16 / 10;
  }

  .l4-wall-grid figcaption {
    right: 14px;
    bottom: 13px;
    left: 14px;
    font-size: 12px;
  }

  .l4-contact-page {
    min-height: auto;
  }

  .l4-contact-copy,
  .l4-contact-form {
    padding: 28px 18px;
  }

  .l4-contact-list {
    gap: 8px;
    margin-top: 20px;
  }

  .l4-contact-list a {
    padding: 12px 0;
    font-size: 14px;
  }

  .l4-contact-form {
    gap: 12px;
  }

  .l4-contact-form input,
  .l4-contact-form select,
  .l4-contact-form textarea {
    min-height: 46px;
    padding: 11px;
    font-size: 15px;
  }

  .l4-footer {
    align-items: flex-start;
    gap: 10px;
    padding: 20px 18px;
    font-size: 13px;
  }
}

@media (max-width: 440px) {
  .l4-header {
    padding-right: 12px;
    padding-left: 12px;
  }

  .l4-header img {
    width: 94px;
    height: 44px;
  }

  .l4-header nav {
    gap: 5px;
    font-size: 10px;
  }

  .l4-header nav a {
    min-height: 34px;
    padding-right: 2px;
    padding-left: 2px;
  }

  .l4-scoreboard {
    padding: 26px 16px;
  }

  .l4-scoreboard h1 {
    font-size: 31px;
  }

  .l4-subpage-hero h1,
  .l4-contact-copy h1,
  .l4-contact-copy h2,
  .l4-section-title h2 {
    font-size: 27px;
  }

  .l4-subpage-hero {
    min-height: 270px;
    padding: 28px 16px;
  }

  .l4-panel-grid {
    grid-auto-rows: 205px;
  }

  .l4-route-grid a {
    min-height: 170px;
    padding: 18px;
  }

  .l4-route-grid strong {
    font-size: 21px;
  }

  .l4-capabilities,
  .l4-event-wall,
  .l4-run-flow,
  .l4-contact-copy,
  .l4-contact-form {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (max-width: 760px) {
  body.layout-four {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .l4-header {
    align-items: center;
    justify-content: center;
    flex-direction: row;
    min-height: 58px;
    padding: 7px 14px;
    background: rgba(3, 3, 3, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .l4-header img {
    width: 82px;
    height: 38px;
  }

  .l4-header nav {
    position: fixed;
    top: auto;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    z-index: 60;
    grid-template-columns: 0.72fr 1.18fr 1.05fr 0.86fr;
    width: auto;
    padding: 6px;
    background: rgba(3, 3, 3, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 -10px 34px rgba(0, 0, 0, 0.42);
  }

  .l4-header nav a {
    min-height: 43px;
    padding: 7px 3px;
    background: transparent;
    border: 0;
    border-radius: 6px;
  }

  .l4-header nav a[aria-current="page"] {
    color: #080603;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    border-color: transparent;
  }

  .l4-scoreboard {
    padding: 26px 18px 24px;
  }

  .l4-scoreboard h1 {
    font-size: 32px;
    line-height: 0.98;
  }

  .l4-hero-copy {
    margin: 14px 0 18px;
    font-size: 14px;
    line-height: 1.48;
  }

  .l4-contact a:first-child {
    font-size: 21px;
  }

  .l4-panel-grid {
    grid-auto-rows: 188px;
  }

  .l4-panel-grid h2 {
    font-size: 22px;
  }

  .l4-route-grid a {
    min-height: 148px;
    padding: 18px;
  }

  .l4-route-grid strong {
    font-size: 20px;
  }

  .l4-route-grid small {
    line-height: 1.3;
  }

  .l4-subpage-hero {
    min-height: 245px;
    padding: 28px 18px;
  }

  .l4-subpage-hero h1,
  .l4-contact-copy h1,
  .l4-contact-copy h2,
  .l4-section-title h2 {
    font-size: 28px;
    line-height: 1.03;
  }

  .l4-capabilities,
  .l4-event-wall,
  .l4-run-flow {
    padding: 30px 18px;
  }

  .l4-capability-grid article,
  .l4-flow-grid article {
    padding: 20px;
  }

  .l4-capability-grid h3,
  .l4-flow-grid h3 {
    font-size: 20px;
  }

  .l4-contact-copy {
    padding: 26px 18px 22px;
  }

  .l4-contact-form {
    padding: 24px 18px 112px;
  }

  .l4-contact-list {
    margin-top: 16px;
  }

  .l4-contact-list a {
    gap: 4px;
    padding: 10px 0;
    font-size: 13px;
    line-height: 1.35;
  }

  .l4-contact-form input,
  .l4-contact-form select,
  .l4-contact-form textarea {
    min-height: 44px;
    font-size: 14px;
  }

  .l4-contact-form textarea {
    min-height: 104px;
  }

  .l4-footer {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 440px) {
  .l4-header {
    min-height: 54px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .l4-header img {
    width: 76px;
    height: 35px;
  }

  .l4-header nav {
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: 8px;
    gap: 4px;
    font-size: 10px;
  }

  .l4-header nav a {
    min-height: 41px;
  }

  .l4-scoreboard {
    padding: 23px 16px 22px;
  }

  .l4-scoreboard h1 {
    font-size: 29px;
  }

  .l4-panel-grid {
    grid-auto-rows: 176px;
  }

  .l4-subpage-hero {
    min-height: 225px;
    padding: 25px 16px;
  }

  .l4-subpage-hero h1,
  .l4-contact-copy h1,
  .l4-contact-copy h2,
  .l4-section-title h2 {
    font-size: 25px;
  }

  .l4-route-grid a {
    min-height: 138px;
    padding: 16px;
  }

  .l4-contact-copy {
    padding: 24px 16px 20px;
  }

  .l4-contact-form {
    padding: 22px 16px 108px;
  }
}
