:root {
  --ink: #071012;
  --graphite: #12191b;
  --charcoal: #1d2729;
  --porcelain: #f7faf9;
  --surface: #ffffff;
  --mist: #eaf2f0;
  --line: #d9e3e0;
  --muted: #697572;
  --jade: #4f8279;
  --jade-dark: #315e58;
  --brass: #d9a24c;
  --cinnabar: #bd5948;
  --lavender: #d8d7ea;
  --shadow: 0 24px 70px rgba(7, 16, 18, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--porcelain);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

img,
video {
  display: block;
  width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 28px;
  color: var(--porcelain);
  background: rgba(7, 16, 18, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 300px;
  max-width: 54vw;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav a {
  padding: 9px 11px;
  border-radius: 999px;
  color: rgba(247, 250, 249, 0.78);
  font-size: 13px;
  font-weight: 620;
  text-decoration: none;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.nav a:hover {
  color: var(--porcelain);
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  overflow: hidden;
  color: var(--porcelain);
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: -2%;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  opacity: 0.48;
  transform: rotate(-2deg) scale(1.06);
}

.hero-bg img,
.hero-bg video {
  height: 100%;
  min-height: 100vh;
  object-fit: contain;
  background: var(--ink);
  filter: saturate(0.86) contrast(1.04);
}

.hero-bg > :nth-child(2n) {
  transform: translateY(7vh);
}

.hero-bg > :nth-child(3n) {
  transform: translateY(-5vh);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 18, 0.98) 0%, rgba(7, 16, 18, 0.82) 38%, rgba(7, 16, 18, 0.3) 100%),
    linear-gradient(0deg, rgba(7, 16, 18, 0.96) 0%, rgba(7, 16, 18, 0.08) 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 900px;
  padding: 150px 28px 120px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: 82px;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 48px;
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.1;
}

p {
  color: var(--muted);
  line-height: 1.58;
}

.lede {
  max-width: 710px;
  margin-bottom: 28px;
  color: rgba(247, 250, 249, 0.82);
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mobile-only {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button.primary {
  color: var(--ink);
  background: var(--porcelain);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.button.primary:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.32);
}

.button.secondary {
  color: var(--porcelain);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
}

.brand-ribbon {
  display: grid;
  grid-template-columns: 260px 1fr;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  transform: translateY(-1px);
}

.brand-ribbon-label {
  display: grid;
  min-height: 78px;
  place-items: center start;
  padding: 0 22px;
  color: var(--porcelain);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.brand-ribbon-list > span {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 14px 10px;
  color: var(--ink);
  background: var(--surface);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
}

.brand-logo-card {
  gap: 7px;
}

.brand-logo-card img {
  display: block;
  max-width: min(118px, 82%);
  max-height: 30px;
  object-fit: contain;
  filter: saturate(0.88) contrast(1.05);
}

.brand-logo-card-wide img {
  max-width: min(144px, 86%);
  max-height: 32px;
}

.brand-logo-card > span {
  color: rgba(7, 16, 18, 0.66);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 92px 28px;
}

.section-head {
  max-width: 850px;
  margin-bottom: 36px;
}

.section-head.split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.68fr);
  gap: 48px;
  align-items: end;
}

.section-head.split p:last-child {
  margin-bottom: 0;
  font-size: 18px;
}

.archive-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.filter-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface);
  font: inherit;
  font-size: 14px;
  font-weight: 720;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.filter-button:hover,
.filter-button.active {
  color: var(--porcelain);
  background: var(--ink);
  border-color: var(--ink);
}

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

.archive-item {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(7, 16, 18, 0.07);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
}

.archive-item.hidden {
  display: none;
}

.archive-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.archive-item.tall {
  grid-row: span 2;
  min-height: 500px;
}

.archive-item img,
.archive-item video {
  height: 100%;
  min-height: inherit;
  object-fit: contain;
  padding: 14px;
  background: #f4f7f6;
}

.archive-item video {
  background: #101819;
}

.archive-item figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--porcelain);
  background: rgba(7, 16, 18, 0.72);
  font-size: 13px;
  font-weight: 720;
  backdrop-filter: blur(10px);
}

.proof-section {
  background: #ffffff;
}

.outcome-grid {
  display: grid;
  grid-template-columns: 1.08fr repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.outcome-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(7, 16, 18, 0.06);
  color: inherit;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.outcome-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 162, 76, 0.58);
  box-shadow: 0 20px 44px rgba(7, 16, 18, 0.12);
}

.outcome-card.featured {
  color: var(--porcelain);
  background: var(--ink);
  border-color: var(--ink);
}

.outcome-card span {
  margin-bottom: 28px;
  color: var(--cinnabar);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.outcome-card.featured span {
  color: var(--brass);
}

.outcome-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 31px;
  line-height: 1.04;
}

.outcome-card p {
  margin-bottom: 20px;
}

.outcome-card.featured p {
  color: rgba(247, 250, 249, 0.74);
}

.outcome-card em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--cinnabar);
  font-size: 12px;
  font-style: normal;
  font-weight: 840;
  text-transform: uppercase;
}

.outcome-card em::after {
  content: "->";
  font-size: 13px;
}

.outcome-card.featured em {
  color: var(--brass);
}

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

.proof-media {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(7, 16, 18, 0.07);
}

.proof-media.tall {
  min-height: 560px;
}

.proof-media img,
.proof-media video {
  height: 100%;
  min-height: inherit;
  object-fit: contain;
  padding: 14px;
  background: #f4f7f6;
}

.proof-media video {
  background: #101819;
}

.proof-media figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--porcelain);
  background: rgba(7, 16, 18, 0.72);
  font-size: 13px;
  font-weight: 720;
  backdrop-filter: blur(10px);
}

.signal-section {
  max-width: none;
  color: var(--porcelain);
  background: var(--graphite);
}

.signal-section .section-head,
.signal-grid {
  max-width: 1384px;
  margin-right: auto;
  margin-left: auto;
}

.signal-section h2,
.signal-section h3 {
  color: var(--porcelain);
}

.signal-section p {
  color: rgba(247, 250, 249, 0.72);
}

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

.signal-grid article {
  min-height: 270px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: #172123;
}

.signal-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--brass);
  font-weight: 800;
}

.reel-section {
  background: var(--porcelain);
}

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

.reel-grid video {
  height: 620px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--ink);
  box-shadow: 0 18px 54px rgba(7, 16, 18, 0.12);
}

.studio-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  gap: 50px;
  align-items: start;
}

.studio-copy {
  position: sticky;
  top: 112px;
}

.studio-copy p {
  font-size: 18px;
}

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

.studio-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(7, 16, 18, 0.06);
}

.studio-grid article:nth-child(2) {
  background: var(--mist);
}

.studio-grid article:nth-child(4) {
  color: var(--porcelain);
  background: var(--jade-dark);
  border-color: var(--jade-dark);
}

.studio-grid article:nth-child(4) p {
  color: rgba(247, 250, 249, 0.76);
}

.studio-grid article:nth-child(5) {
  grid-column: span 2;
  color: var(--porcelain);
  background: var(--ink);
  border-color: var(--ink);
}

.studio-grid article:nth-child(5) p {
  color: rgba(247, 250, 249, 0.76);
}

.case-section {
  background: #f7f8f3;
}

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

.case-list a {
  display: grid;
  min-height: 150px;
  align-content: space-between;
  padding: 22px;
  color: var(--ink);
  background: var(--surface);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.case-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 162, 76, 0.58);
  box-shadow: 0 16px 32px rgba(7, 16, 18, 0.09);
}

.case-list span {
  color: var(--cinnabar);
  font-size: 12px;
  font-weight: 840;
  text-transform: uppercase;
}

.case-list strong {
  font-size: 22px;
  line-height: 1.08;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 42px;
  align-items: center;
  max-width: 1384px;
  margin: 0 auto 28px;
  padding: 58px 28px;
  color: var(--porcelain);
  background: var(--ink);
  border-radius: 12px;
  box-shadow: var(--shadow);
  scroll-margin-top: 94px;
}

.booking-section h2 {
  color: var(--porcelain);
}

.booking-intro {
  max-width: 660px;
  color: rgba(247, 250, 249, 0.76);
  font-size: 18px;
}

.booking-panel {
  display: grid;
  gap: 22px;
  padding: 22px;
  background: rgba(247, 250, 249, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.booking-points {
  display: grid;
  gap: 10px;
}

.booking-points span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  color: rgba(247, 250, 249, 0.82);
  font-size: 14px;
  font-weight: 680;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
}

.booking-points strong {
  color: var(--brass);
  font-size: 12px;
}

.booking-panel .button.primary {
  width: 100%;
  margin-top: 4px;
  color: var(--ink);
  background: var(--brass);
  border-color: rgba(217, 162, 76, 0.7);
  box-shadow: none;
}

.booking-panel .button.primary:hover {
  background: #e6b767;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1fr) minmax(260px, 0.8fr);
  gap: 28px;
  align-items: start;
  max-width: 100%;
  min-height: 360px;
  margin: 0;
  padding: 54px max(28px, calc((100vw - 1384px) / 2 + 28px)) 96px;
  color: var(--ink);
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: inline-flex;
  width: 300px;
  max-width: 100%;
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.footer-links a {
  padding: 9px 11px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 720;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background 160ms ease;
}

.footer-links a:hover {
  color: var(--jade-dark);
  background: var(--surface);
  border-color: rgba(79, 130, 121, 0.32);
}

.site-footer small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 64px;
  }

  .archive-grid,
  .outcome-grid,
  .proof-media-grid,
  .signal-grid,
  .reel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-section {
    grid-template-columns: 1fr;
  }

  .studio-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 18px;
  }

  .brand img {
    width: 260px;
    max-width: 86vw;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: start;
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    gap: 6px;
  }

  .nav a {
    padding: 7px 9px;
    font-size: 12px;
  }

  .mobile-only {
    display: block;
  }

  .hero {
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
  }

  .hero-bg {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    opacity: 0.4;
  }

  .hero-content {
    width: 100vw;
    max-width: 100vw;
    padding: 196px 18px 90px;
  }

  h1 {
    max-width: calc(100vw - 36px);
    font-size: 44px;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 34px;
  }

  .lede {
    max-width: calc(100vw - 36px);
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section,
  .booking-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand-ribbon {
    grid-template-columns: 1fr;
    padding: 0 18px;
  }

  .brand-ribbon-label,
  .brand-ribbon-list > span {
    min-height: 58px;
  }

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

  .section-head.split,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .archive-grid,
  .outcome-grid,
  .proof-media-grid,
  .signal-grid,
  .reel-grid,
  .studio-grid,
  .case-list {
    grid-template-columns: 1fr;
  }

  .archive-item,
  .archive-item.tall,
  .proof-media,
  .proof-media.tall {
    min-height: 460px;
  }

  .studio-grid article:nth-child(5) {
    grid-column: auto;
  }

  .reel-grid video {
    height: 520px;
  }

  .booking-section {
    margin-right: 18px;
    margin-left: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    min-height: 430px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .footer-links {
    justify-content: flex-start;
  }

}

@media (max-width: 430px) {
  h1 {
    font-size: 31px;
    line-height: 1.04;
  }

  .lede {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .booking-panel {
    padding: 16px;
  }

  .booking-points span {
    width: 100%;
    border-radius: 8px;
  }
}
