:root {
  --ink: #050505;
  --paper: #ffffff;
  --soft: #f4f7f8;
  --line: #dbe4e8;
  --muted: #5f6b73;
  --blue: #2a9df4;
  --blue-dark: #03254c;
  --green: #14a56f;
  --amber: #e1a73f;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

img,
iframe {
  max-width: 100%;
}

img {
  display: block;
}

iframe {
  display: block;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 1000;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 12px;
  border: 1px solid var(--line);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(5, 5, 5, 0.94);
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.group-strip {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.group-nav {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 34px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow-x: auto;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  scrollbar-width: none;
}

.group-nav::-webkit-scrollbar {
  display: none;
}

.group-nav span {
  color: rgba(255, 255, 255, 0.5);
}

.group-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.group-nav a:hover,
.group-nav a[aria-current="page"] {
  color: var(--paper);
}

.nav-wrap {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  min-height: 74px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 170px;
}

.brand img {
  width: 190px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--paper);
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.cta-link {
  padding: 10px 12px !important;
  background: var(--blue);
  color: var(--paper) !important;
  border: 0 !important;
  border-radius: 4px;
}

.hero {
  min-height: 720px;
  display: grid;
  align-items: end;
  position: relative;
  color: var(--paper);
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.2));
}

.hero-home {
  background-image: url("/assets/media/site/origo-studios-soundstages-2bc06f0ce9.jpg");
}

.hero-stages {
  background-image: url("/assets/media/site/origo-studios-stages_03-scaled-583c0d5d06.jpg");
}

.hero-green {
  background-image: url("/assets/media/site/ORIGO-STUDIOS-GREEN-FILMING-SOLAR-PARK-2026-2-1-95ff40574c.jpg");
}

.hero-services {
  background-image: url("/assets/media/site/1609827365508-d2c8d461c9.jpg");
}

.hero-post {
  background-image: url("/assets/media/site/ORIGO-Studios-Post-production-screening-room-f30b62e5ea.jpg");
}

.hero-rentals {
  background-image: url("/assets/media/site/origorentals-production-trailer-1-1be5133fe1.jpg");
}

.hero-about {
  background-image: url("/assets/media/site/origo-studios-stages_07-scaled-399824ac6f.jpg");
}

.hero-contact {
  background-image: url("/assets/media/site/origo-studios-stages_06-scaled-ed7d0f08f8.jpg");
}

.hero-inner,
.section-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.hero-inner {
  padding-bottom: 82px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 820px;
  font-size: 72px;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  font-size: 38px;
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  font-size: 22px;
  font-weight: 900;
}

.lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.lead.dark {
  color: #263038;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
  text-decoration: none;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.button.secondary {
  background: var(--paper);
  color: var(--ink);
}

.button.ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.section {
  padding: 86px 0;
}

.section.soft {
  background: var(--soft);
}

.section.green-band {
  background: #0f5f45;
  color: var(--paper);
}

.green-band .eyebrow,
.green-band h2,
.green-band p {
  color: var(--paper);
}

.green-band .quick-links a {
  background: rgba(255, 255, 255, 0.12);
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.34);
}

.green-band .logo-mark {
  max-width: 230px;
}

.section.black {
  background: var(--ink);
  color: var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(260px, 1fr);
  gap: 36px;
  align-items: start;
  margin-bottom: 34px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.black .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.stats-grid,
.service-grid,
.offer-grid,
.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat,
.service,
.offer-card,
.report-card,
.stage-card,
.poster-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
}

.stat,
.service,
.offer-card,
.report-card {
  padding: 22px;
}

.black .stat {
  background: #111;
  border-color: rgba(255, 255, 255, 0.16);
}

.stat strong {
  display: block;
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}

.stat span,
.service p,
.offer-card p,
.report-card p {
  color: var(--muted);
}

.offer-card img {
  width: calc(100% + 44px);
  max-width: none;
  margin: -22px -22px 18px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.offer-card h3 {
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1fr);
  gap: 34px;
  align-items: start;
}

.split.center {
  align-items: center;
}

.copy-block p:first-child,
.copy-block ul:first-child {
  margin-top: 0;
}

.summary-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.summary-list li,
.check-list li {
  padding: 10px 0 10px 22px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.summary-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.black .summary-list li,
.black .check-list li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.black .summary-list li::before,
.black .check-list li::before {
  background: var(--green);
}

.pill-row,
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill,
.quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.black .pill {
  background: #111;
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.16);
}

.callout {
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  background: var(--paper);
}

.callout.green {
  border-left-color: var(--green);
}

.callout p:last-child {
  margin-bottom: 0;
}

.small-note,
.stage-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.wide-image {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.wide-image img {
  width: 100%;
  height: auto;
}

.about-hub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.about-hub article,
.group-company-grid article,
.award-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.about-hub article h3,
.group-company-grid article h3,
.award-card h3 {
  margin-top: 0;
}

.about-hub a,
.group-company-grid a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

.certification-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: 30px;
  align-items: start;
  margin: 34px 0 28px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 132px;
}

.certification-copy h3 {
  max-width: 640px;
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.04;
  text-transform: uppercase;
}

.certification-copy p {
  color: var(--muted);
}

.certification-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.certification-list li {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(30, 114, 72, 0.24);
  border-radius: 8px;
  background: #f3faf5;
}

.certification-list strong,
.certificate-card strong {
  display: block;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.certification-list span,
.certificate-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

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

.certificate-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.certificate-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4.24;
  object-fit: cover;
  object-position: top center;
  cursor: zoom-in;
  background: #fff;
}

.certificate-card figcaption {
  min-height: 76px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.award-feature {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(260px, 0.9fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}

.award-feature figure {
  margin: 0;
  min-height: 380px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.award-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.award-stat-grid {
  display: grid;
  gap: 14px;
}

.award-stat-grid article {
  display: grid;
  align-content: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.award-stat-grid strong {
  color: var(--blue);
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
}

.award-stat-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

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

.black .award-card {
  background: #111;
  border-color: rgba(255, 255, 255, 0.16);
}

.black .award-card h3 {
  color: var(--paper);
}

.award-card ul {
  margin: 0;
  padding-left: 18px;
}

.award-card li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.74);
}

.award-card li strong {
  color: var(--paper);
}

.top8-panel {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(240px, 360px);
  gap: 34px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.top8-panel p {
  color: var(--muted);
}

.top8-panel figure {
  margin: 0;
}

.top8-panel img {
  width: 100%;
  border-radius: 8px;
}

.group-company-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.zen-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 150px;
  grid-auto-flow: dense;
  gap: 12px;
}

.zen-item {
  position: relative;
  grid-column: span 2;
  grid-row: span 2;
  min-height: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #0f151b;
}

.zen-item.span-wide {
  grid-column: span 4;
}

.zen-item.span-tall {
  grid-row: span 3;
}

.zen-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 220ms ease;
}

.zen-item:hover img {
  transform: scale(1.035);
}

.zen-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 14px 12px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.74));
}

.black .stat span {
  color: rgba(255, 255, 255, 0.74);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.feature {
  min-height: 210px;
  display: grid;
  align-content: end;
  padding: 18px;
  color: var(--paper);
  background-position: center;
  background-size: cover;
  position: relative;
  isolation: isolate;
  border-radius: 8px;
  overflow: hidden;
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.75));
}

.feature strong {
  font-size: 15px;
  text-transform: uppercase;
}

.feature span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.film-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 28px;
  align-items: start;
  margin-top: 22px;
}

.film-stage > * {
  min-width: 0;
}

.video-frame {
  position: relative;
  min-width: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.video-poster-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  isolation: isolate;
  background: #000;
}

.video-poster-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.46);
}

.video-poster-fallback img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.66;
}

.video-poster-fallback p {
  max-width: 320px;
  margin: 0;
  padding: 14px 16px;
  color: var(--paper);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.film-panel {
  display: grid;
  gap: 18px;
}

.film-data-card {
  min-width: 0;
  position: relative;
  z-index: 1;
  align-content: start;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #111;
}

.film-poster-focus {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
}

.film-poster-focus img {
  width: 96px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.film-data-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.film-data-list div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.film-data-list dt {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.film-data-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.film-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.film-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.film-links {
  margin-top: 0;
}

.film-carousel-shell {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
  margin: 0 0 24px;
}

.poster-nav,
.poster-rail button {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  border-radius: 4px;
  padding: 9px 10px;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.poster-nav {
  width: 42px;
  height: 56px;
  padding: 0;
  font-size: 26px;
}

.poster-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 128px;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scrollbar-color: var(--blue) #242424;
  scroll-snap-type: x proximity;
}

.poster-rail button {
  padding: 0;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.18);
  scroll-snap-align: start;
}

.poster-rail img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.poster-rail button[aria-pressed="true"] {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  background: rgba(11, 101, 163, 0.18);
}

.filmography-stats {
  margin-top: 24px;
}

.production-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.production-list li {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.production-list-toggle {
  margin-top: 22px;
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 34px;
}

.proof-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #ecf3f7;
  color: var(--blue-dark);
  font-size: 12px;
  text-transform: uppercase;
}

td strong {
  display: block;
  color: var(--ink);
}

tbody tr:hover {
  background: #f9fcfd;
}

.stage-thumb {
  width: 116px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  cursor: zoom-in;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.media-tile {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.media-tile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  cursor: zoom-in;
}

.media-tile figcaption {
  padding: 12px 14px;
  font-size: 13px;
  color: var(--muted);
}

.solar-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.solar-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 8px;
}

.solar-stack {
  display: grid;
  gap: 18px;
}

.report-article {
  max-width: 900px;
}

.report-article h2,
.report-article h3 {
  margin-top: 38px;
}

.report-article h2:first-child,
.report-article h3:first-child {
  margin-top: 0;
}

.report-article p,
.report-article li {
  color: #263038;
}

.report-article .verbatim {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.figure-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.figure-row img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(240px, 0.55fr);
  gap: 26px;
  align-items: start;
}

.author-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.author-card img {
  max-width: 180px;
  margin-bottom: 16px;
}

.logo-mark {
  max-width: 260px;
  margin-bottom: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.contact-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.contact-item p {
  margin: 0;
  color: var(--muted);
}

.contact-item a {
  color: var(--blue-dark);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

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

.field.fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.field legend {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.field .help-text {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.field .check-option {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
}

.field .check-option input[type="checkbox"] {
  flex: 0 0 16px;
  width: 16px;
  min-height: auto;
  height: 16px;
  padding: 0;
  border: 0;
  accent-color: var(--blue);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.map-panel {
  min-height: 360px;
  display: grid;
  align-content: end;
  padding: 24px;
  color: var(--paper);
  border-radius: 8px;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.74)), url("/assets/media/site/origo-studios-stages_06-scaled-ed7d0f08f8.jpg");
  background-position: center;
  background-size: cover;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.map-embed {
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #e7ecef;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.distance-grid {
  display: grid;
  gap: 14px;
}

.distance-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.distance-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.distance-item p:last-child {
  margin-bottom: 0;
}

.footer {
  padding: 44px 0;
  background: var(--ink);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.footer a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-group-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-group-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-group-links a:hover {
  color: var(--paper);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.modal-panel {
  position: absolute;
  inset: 4vh 4vw;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
}

.modal-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.image-modal-panel {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  padding: 0;
}

.image-modal-panel img {
  width: 100%;
  height: 100%;
  max-height: calc(92vh - 58px);
  object-fit: contain;
  background: #000;
}

.image-modal-panel p {
  margin: 0;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.82);
  background: #050505;
  font-size: 14px;
}

.form-result-modal .modal-backdrop {
  background: rgba(0, 0, 0, 0.7);
}

.form-result-panel {
  inset: 50% auto auto 50%;
  width: min(520px, calc(100vw - 32px));
  min-height: auto;
  padding: 34px;
  color: var(--ink);
  background: var(--paper);
  transform: translate(-50%, -50%);
}

.form-result-panel h2 {
  margin: 4px 0 12px;
}

.form-result-panel p:not(.eyebrow) {
  margin: 0 0 22px;
  color: var(--muted);
}

.form-result-modal[data-result="success"] .eyebrow {
  color: var(--green);
}

.form-result-modal[data-result="error"] .eyebrow {
  color: #9a1f1f;
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--paper);
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    padding: 14px 20px 20px;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero {
    min-height: 620px;
  }

  h1 {
    font-size: 50px;
  }

  .section-head,
  .split,
  .proof-grid,
  .film-stage,
  .solar-grid,
  .article-grid,
  .certification-layout,
  .award-feature,
  .top8-panel,
  .contact-grid,
  .location-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip,
  .stats-grid,
  .service-grid,
  .offer-grid,
  .report-grid,
  .about-hub,
  .award-proof-grid,
  .group-company-grid,
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zen-gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 130px;
  }

  .zen-item,
  .zen-item.span-wide {
    grid-column: span 2;
  }

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

@media (max-width: 640px) {
  .brand img {
    width: 156px;
  }

  .hero {
    min-height: 600px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 29px;
  }

  .section {
    padding: 58px 0;
  }

  .feature-strip,
  .stats-grid,
  .service-grid,
  .offer-grid,
  .report-grid,
  .about-hub,
  .award-proof-grid,
  .group-company-grid,
  .certification-list,
  .certificate-gallery,
  .media-grid,
  .media-grid.two,
  .form-row,
  .interest-options,
  .figure-row {
    grid-template-columns: 1fr;
  }

  .zen-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .zen-item,
  .zen-item.span-wide,
  .zen-item.span-tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .film-poster-focus {
    grid-template-columns: 84px 1fr;
  }

  .film-poster-focus img {
    width: 84px;
  }

  .film-carousel-shell {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 8px;
  }

  .poster-nav {
    width: 34px;
    height: 48px;
  }

  .poster-rail {
    grid-auto-columns: 104px;
  }

  .film-data-card {
    padding: 18px;
  }

  .film-data-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

  .modal-panel {
    inset: 7vh 2vw;
  }
}
