:root {
  color-scheme: light;
  --ink: #111312;
  --muted: #5f6662;
  --soft: #f4f2ed;
  --paper: #fbfaf6;
  --line: rgba(17, 19, 18, 0.12);
  --charcoal: #161817;
  --green: #a9ff4f;
  --red: #d94d46;
  --amber: #e8b64f;
  --silver: #d7dce0;
  --blue: #6fa8bf;
  --radius: 8px;
  --max: 1180px;
  --shadow: 0 24px 80px rgba(17, 19, 18, 0.14);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--green);
  color: #111;
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 48px);
  color: #fff;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(17, 19, 18, 0.08);
}

.brand,
.desktop-nav,
.site-footer nav,
.hero-actions,
.proof-strip,
.contact-meta,
.mobile-menu {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.78rem;
}

.desktop-nav {
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.91rem;
}

.desktop-nav a,
.site-footer a,
.mobile-menu a {
  color: currentColor;
  opacity: 0.78;
}

.desktop-nav a:hover,
.site-footer a:hover,
.mobile-menu a:hover {
  opacity: 1;
}

.nav-cta {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 720;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  padding: 0;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  z-index: 45;
  top: 72px;
  left: 14px;
  right: 14px;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 250, 246, 0.99);
  box-shadow: var(--shadow);
}

.mobile-menu a {
  padding: 13px 12px;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 10, 10, 0.9), rgba(9, 10, 10, 0.58) 42%, rgba(9, 10, 10, 0.18) 100%),
    linear-gradient(0deg, rgba(9, 10, 10, 0.72), transparent 45%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 124px 0 38px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 790;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--green);
}

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

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 7.1vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.8vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 780;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--green);
  color: #111;
}

.button.primary.light {
  background: #fff;
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
}

.proof-strip {
  align-items: stretch;
  flex-wrap: wrap;
  gap: 12px;
  margin: -92px 0 72px;
  position: relative;
  z-index: 3;
}

.proof-strip div {
  flex: 1 1 190px;
  min-width: 190px;
  padding: 18px 20px;
  border: 1px solid rgba(17, 19, 18, 0.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 45px rgba(17, 19, 18, 0.1);
}

.proof-strip dt {
  font-weight: 840;
  font-size: 1.12rem;
}

.proof-strip dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-proof {
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof div {
  min-width: 170px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-proof dt {
  font-weight: 840;
  font-size: 1.12rem;
}

.hero-proof dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 12vw, 132px) 0;
}

.intro-section {
  border-bottom: 1px solid var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
  gap: clamp(30px, 8vw, 110px);
  align-items: end;
}

.section-lede,
.section-heading p,
.sponsor-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 660px;
}

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

.pillar-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 19, 18, 0.28);
  box-shadow: 0 18px 50px rgba(17, 19, 18, 0.08);
}

.pillar-index {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 9px;
  color: #111;
  font-weight: 820;
  font-size: 0.72rem;
}

.pillar-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.accent-green .pillar-index {
  background: var(--green);
}

.accent-red .pillar-index {
  background: #f2aaa6;
}

.accent-amber .pillar-index {
  background: var(--amber);
}

.accent-silver .pillar-index {
  background: var(--silver);
}

.accent-blue .pillar-index {
  background: #b5d9e7;
}

.accent-black {
  background: var(--charcoal);
  color: #fff;
}

.accent-black p {
  color: rgba(255, 255, 255, 0.68);
}

.accent-black .pillar-index {
  background: #fff;
}

.work-section {
  padding-top: 36px;
}

.work-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 12px;
}

.feature-panel,
.showreel-panel,
.sponsor-grid article {
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.feature-panel {
  padding: 26px;
  background: #fff;
}

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

.dark-panel {
  background: var(--charcoal);
  color: #fff;
}

.dark-panel p {
  color: rgba(255, 255, 255, 0.68);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: inherit;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.showreel-panel {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  background: #202321;
}

.reel-frame {
  position: absolute;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.02)),
    linear-gradient(90deg, rgba(169, 255, 79, 0.18), rgba(217, 77, 70, 0.2));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.frame-one {
  width: 66%;
  height: 44%;
  top: 42px;
  right: 28px;
}

.frame-two {
  width: 46%;
  height: 34%;
  left: 30px;
  bottom: 46px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    linear-gradient(90deg, rgba(111, 168, 191, 0.22), rgba(232, 182, 79, 0.2));
}

.frame-three {
  width: 32%;
  height: 26%;
  right: 58px;
  bottom: 74px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    linear-gradient(90deg, rgba(215, 220, 224, 0.18), rgba(169, 255, 79, 0.16));
}

.play-chip {
  position: absolute;
  left: 24px;
  top: 24px;
  border-radius: 999px;
  padding: 10px 12px;
  background: var(--green);
  color: #111;
  font-size: 0.84rem;
  font-weight: 820;
}

.sponsor-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(72px, 12vw, 132px) clamp(18px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
  background: var(--charcoal);
  color: #fff;
}

.sponsor-copy {
  max-width: 520px;
}

.sponsor-copy .eyebrow {
  color: var(--green);
}

.sponsor-copy p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 28px;
}

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

.sponsor-grid article {
  min-height: 210px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.sponsor-grid p {
  color: rgba(255, 255, 255, 0.66);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-top: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.42);
}

.process-list span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 840;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  padding: clamp(30px, 6vw, 64px) clamp(18px, 4vw, 48px) clamp(72px, 11vw, 130px);
}

.contact-panel {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(24px, 6vw, 82px);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 54px);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-meta {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: #343936;
  font-size: 0.9rem;
  font-weight: 740;
}

.inquiry-form label:nth-last-of-type(1) {
  grid-column: 1 / -1;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 19, 18, 0.18);
  border-radius: var(--radius);
  background: #f8f7f2;
  color: var(--ink);
  padding: 13px 12px;
  outline: none;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(169, 255, 79, 0.42);
}

.inquiry-form button,
.form-note {
  grid-column: 1 / -1;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  color: var(--ink);
  font-weight: 820;
}

.site-footer nav {
  gap: 20px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .section-grid,
  .work-layout,
  .sponsor-section,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

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

  .showreel-panel {
    min-height: 330px;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: min(100% - 28px, var(--max));
    padding-top: 114px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.55rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.1rem);
  }

  .hero-proof div {
    min-width: 100%;
  }

  .section {
    width: min(100% - 28px, var(--max));
  }

  .pillar-grid,
  .sponsor-grid,
  .process-list,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .pillar-card,
  .process-list li {
    min-height: 210px;
  }

  .contact-panel {
    padding: 22px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
