:root {
  --bg: #000;
  --panel: #070707;
  --panel-2: #0d0d0d;
  --text: #f5f5f5;
  --muted: #9b9b9b;
  --soft: #d7d7d7;
  --silver: #d9d9d2;
  --silver-muted: rgba(217, 217, 210, .62);
  --silver-wash: rgba(217, 217, 210, .12);
  --silver-edge: rgba(245, 245, 238, .28);
  --line: rgba(255, 255, 255, 0.13);
  --line-soft: rgba(255, 255, 255, 0.08);
  --radius: 8px;
  --heading: "SF Pro Display", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --body: Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background-color: #000;
  color: var(--text);
  font-family: var(--body);
  letter-spacing: 0;
}

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: #fff;
  color: #000;
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 16px clamp(20px, 3vw, 40px);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(18px);
}

.mark {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--heading);
  font-weight: 700;
}

.mark-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.mark-word {
  font-size: 15px;
}

.nav-pill {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #050505;
}

.nav-pill a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 160ms var(--ease), background 160ms var(--ease);
}

.nav-pill a:hover,
.nav-pill a:focus-visible {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.035));
}

.header-cta {
  justify-self: end;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid #fff;
  border-radius: var(--radius);
  background: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 500;
  transition:
    transform 180ms var(--ease),
    background 180ms var(--ease),
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.nav-toggle {
  display: none;
}

.hero {
  max-width: 1040px;
  min-height: calc(70vh - 72px);
  margin: 0 auto;
  padding: 88px 22px 54px;
  text-align: center;
}

.availability {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #030303;
  color: var(--soft);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.availability span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.hero-title,
.section-copy h2,
.booking-panel h2 {
  font-family: var(--heading);
  letter-spacing: 0;
}

.hero-title {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(44px, 5.6vw, 78px);
  font-weight: 560;
  line-height: .96;
  text-wrap: balance;
}

.hero-title span {
  display: block;
  color: #d9d9d9;
}

.hero-copy {
  max-width: 540px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 500;
  transition:
    transform 180ms var(--ease),
    border-color 180ms var(--ease),
    background 180ms var(--ease),
    color 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.offer-link:hover,
.long-call-link:hover {
  transform: translateY(-2px);
}

.button.primary {
  border-color: #fff;
  background: #fff;
  color: #000;
}

.button.secondary {
  background: #030303;
  color: #fff;
}

.button.primary:hover,
.button.primary:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--silver-edge);
  background:
    linear-gradient(135deg, #fff 0%, var(--silver) 46%, #9f9f98 100%);
  box-shadow:
    0 0 42px rgba(217,217,210,.18),
    inset 0 1px 0 rgba(255,255,255,.75);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--silver-edge);
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), rgba(217,217,210,.065) 52%, rgba(255,255,255,.025));
  box-shadow:
    0 0 34px rgba(217,217,210,.14),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.play-mini {
  width: 0;
  height: 0;
  border-left: 8px solid currentColor;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.showreel-frame {
  max-width: 980px;
  margin: -22px auto 108px;
  padding: 0 22px;
}

.showreel-button {
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  border: 0;
  border-radius: 12px;
  background: #050505;
  color: #fff;
  box-shadow: 0 0 54px rgba(217,217,210,.045);
}

.showreel-video {
  display: block;
  object-fit: cover;
  cursor: default;
}

.play-orb {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #fff;
}

.play-orb::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-left: 11px solid #000;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 86px 22px;
  border-top: 1px solid var(--line-soft);
}

.split-heading,
.proof,
.faq {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
}

.section-kicker,
.work-type,
.offer-meta,
.section-kicker,
.work-type,
.offer-meta {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.section-copy h2,
.booking-panel h2 {
  max-width: 640px;
  margin: 0 0 14px;
  font-size: clamp(31px, 3.7vw, 50px);
  font-weight: 520;
  line-height: 1.04;
  text-wrap: balance;
}

.section-copy p,
.booking-panel p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.work-grid,
.offer-grid {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.work-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 46px;
}

.work-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  overflow: visible;
  cursor: pointer;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
}

.work-card:hover,
.work-card:focus-visible {
  background: transparent;
  box-shadow: none;
}

.work-media {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
  background: #050505;
  color: #f3f3ef;
  transition: transform 240ms var(--ease);
}

.work-card:hover .work-media {
  transform: translateY(-2px);
}

.work-card:focus-visible {
  outline: none;
}

.work-card:focus-visible .work-media {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.work-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050505;
}

.work-card.has-preview .work-play {
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: rgba(48, 48, 48, .28);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  opacity: 0;
  backdrop-filter: blur(6px);
  transition: opacity 225ms ease;
}

.work-card.has-preview:hover .work-play,
.work-card.has-preview:focus-visible .work-play {
  opacity: 1;
}

.work-card.has-preview .work-play::before {
  content: "VIEW ↗";
  width: auto;
  height: auto;
  margin: 0;
  border: 0;
}

.work-play {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
}

.work-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-left: 12px solid #000;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.work-index {
  display: none;
}

.work-body {
  min-height: 0;
  display: block;
  padding: 0 2px;
  border: 0;
}

.work-body h3 {
  margin: 0 0 4px;
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 560;
  line-height: 1.2;
}

.work-body .work-type {
  display: block;
  font-size: 12px;
  font-weight: 450;
  line-height: 1.3;
  text-transform: none;
}

.work-body p,
.offer-card p,
.faq-item p {
  color: var(--muted);
  line-height: 1.6;
}

.work-section {
  border-top: 0;
}

.work-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .56fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.work-heading .section-kicker {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
}

.work-heading .section-kicker span {
  width: 44px;
  height: 1px;
  display: inline-block;
  background: rgba(217,217,210,.7);
}

.work-heading h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(46px, 6vw, 86px);
  font-weight: 520;
  line-height: .96;
}

.work-heading p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

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

.offer-card {
  min-height: 410px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  transition:
    transform 200ms var(--ease),
    border-color 200ms var(--ease),
    background 200ms var(--ease),
    box-shadow 200ms var(--ease);
}

.offer-card:hover {
  transform: translateY(-4px);
  border-color: var(--silver-edge);
  background: #0b0b0b;
  box-shadow: 0 18px 68px rgba(217,217,210,.075);
}

.offer-card.flagship {
  border-color: rgba(255,255,255,.24);
  background:
    radial-gradient(circle at 84% 6%, rgba(217,217,210,.2), transparent 10rem),
    linear-gradient(180deg, #161616, #090909 58%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 0 62px rgba(217,217,210,.08);
}

.offer-card h3 {
  margin: 30px 0 13px;
  font-family: var(--heading);
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 520;
  line-height: 1.06;
}

.offer-card ul {
  align-self: end;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding: 7px 0 7px 28px;
  border-top: 0;
  color: var(--soft);
  font-size: 14px;
}

.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
}

.offer-card li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 13px;
  width: 5px;
  height: 3px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg);
  opacity: .8;
}

.offer-card:not(.flagship) li::before {
  background: rgba(255,255,255,.09);
}

.offer-card.flagship li::before {
  background: rgba(255,255,255,.18);
}

.offer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.retainer-pill {
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(217,217,210,.14);
  color: var(--soft);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.retainer-pill::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: #fff;
  opacity: .75;
}

.offer-link {
  width: fit-content;
  min-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: end;
  margin-top: 0;
  padding-bottom: 5px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.25);
  border-radius: 0;
  background: transparent;
  font-weight: 400;
  color: var(--soft);
  transition: transform 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}

.offer-link:hover {
  color: #fff;
  border-color: var(--silver);
  text-shadow: 0 0 18px rgba(217,217,210,.38);
}

.ticker-section {
  display: block;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.ticker-section .section-kicker {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: clamp(18px, 3.125vw, 40px);
}

.ticker-wrap {
  --ticker-edge-fade: clamp(44px, 8vw, 128px);
  min-width: 0;
  overflow: hidden;
  margin-top: 24px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 var(--ticker-edge-fade),
    #000 calc(100% - var(--ticker-edge-fade)),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 var(--ticker-edge-fade),
    #000 calc(100% - var(--ticker-edge-fade)),
    transparent 100%
  );
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: testimonialTicker 34s linear infinite;
}

.ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-track figure,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.ticker-track figure:hover,
.faq-item:hover,
.faq-item:focus-visible {
  border-color: rgba(245,245,238,.2);
  background:
    linear-gradient(135deg, rgba(255,255,255,.035), rgba(255,255,255,.01)),
    var(--panel);
}

.ticker-track figure {
  width: min(360px, 82vw);
  flex: 0 0 auto;
  margin: 0;
  padding: 22px;
  border-radius: 0;
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
}

.ticker-track blockquote {
  margin: 0;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.55;
}

.booking {
  border-top: 0;
}

.booking-panel {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  padding: 0;
  text-align: center;
}

.booking-panel h2,
.booking-panel p {
  margin-left: auto;
  margin-right: auto;
}

.cal-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #111;
  box-shadow: 0 0 70px rgba(217,217,210,.06);
}

.cal-shell iframe {
  width: 100%;
  height: min(720px, 78vh);
  min-height: 620px;
  display: block;
  border: 0;
  background: #111;
}

.long-call-link {
  width: fit-content;
  margin: -4px auto 0;
  color: var(--muted);
  font-size: 14px;
  transition: color 160ms var(--ease);
}

.long-call-link:hover {
  color: #fff;
  text-shadow: 0 0 18px rgba(217,217,210,.32);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  width: 100%;
  padding: 20px;
  cursor: pointer;
  color: var(--text);
  text-align: left;
}

.faq-item span {
  display: inline-block;
  width: calc(100% - 28px);
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 540;
}

.faq-item small {
  float: right;
  color: #fff;
  font-size: 22px;
}

.faq-item p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  transition: max-height 220ms var(--ease), margin 220ms var(--ease);
}

.faq-item.active p {
  max-height: 140px;
  margin-top: 14px;
}

.site-footer {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 22px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  border-top: 1px solid var(--line-soft);
}

.footer-links {
  justify-self: end;
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 22px;
}

.video-modal.active {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.86);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  width: min(960px, 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #050505;
  box-shadow: 0 0 90px rgba(217,217,210,.12);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #111;
  color: #fff;
}

.modal-heading {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.modal-heading span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.modal-heading h3 {
  margin: 8px 0 0;
  font-family: var(--heading);
  font-size: 23px;
  font-weight: 540;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame video {
  display: block;
  object-fit: contain;
  background: #000;
}

body:not(.js-ready) .reveal,
.reveal.visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.js-ready .reveal {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease),
    filter 900ms var(--ease);
  will-change: opacity, transform, filter;
}

.js-ready .reveal.visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.delay-1 { transition-delay: 110ms; }
.delay-2 { transition-delay: 190ms; }
.delay-3 { transition-delay: 270ms; }

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

  .nav-toggle {
    justify-self: end;
    width: 44px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #050505;
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    margin: 3px 0;
    background: #fff;
  }

  .nav-pill {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 16px;
    background: #050505;
  }

  .nav-pill.open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .split-heading,
  .proof,
  .faq,
  .booking-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .work-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-self: start;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 14px 18px;
  }

  .hero {
    min-height: auto;
    padding: 58px 18px 48px;
  }

  .availability {
    margin-bottom: 30px;
  }

  .hero-title {
    font-size: clamp(38px, 10.8vw, 50px);
  }

  .hero-copy {
    font-size: 16px;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .showreel-frame {
    margin: -10px auto 70px;
    padding: 0 18px;
  }

  .showreel-button {
    aspect-ratio: 16 / 9;
  }

  .section {
    padding: 68px 18px;
  }

  .section-copy h2,
  .booking-panel h2 {
    font-size: clamp(30px, 8.8vw, 40px);
  }

  .work-card,
  .offer-card {
    min-height: 0;
  }

  .work-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .work-heading h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .work-heading p {
    font-size: 16px;
  }

  .work-body {
    min-height: 0;
    padding: 0 2px;
  }

  .work-play {
    left: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }
}

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

/* White editorial theme — separate variant inspired by the portfolio reference. */
:root {
  --bg: #efefec;
  --panel: #ffffff;
  --panel-2: #e7e7e3;
  --text: #111111;
  --muted: #6e6e69;
  --soft: #353532;
  --silver: #d8d8d3;
  --silver-muted: rgba(17, 17, 17, .52);
  --silver-wash: rgba(17, 17, 17, .055);
  --silver-edge: rgba(17, 17, 17, .22);
  --line: rgba(17, 17, 17, .16);
  --line-soft: rgba(17, 17, 17, .09);
}

body {
  background: var(--bg);
  color: var(--text);
}

.skip-link {
  background: #111;
  color: #fff;
}

.site-header {
  background: rgba(239, 239, 236, .92);
  border-bottom-color: var(--line-soft);
}

.mark-logo {
  filter: invert(1);
  mix-blend-mode: multiply;
}

.nav-pill {
  border-color: var(--line);
  background: rgba(255, 255, 255, .76);
}

.nav-pill a {
  color: #5f5f5a;
}

.nav-pill a:hover,
.nav-pill a:focus-visible {
  color: #111;
  background: #e9e9e6;
}

.header-cta,
.button.primary {
  border-color: #111;
  background: #111;
  color: #fff;
}

.header-cta:hover,
.header-cta:focus-visible,
.button.primary:hover,
.button.primary:focus-visible {
  border-color: #111;
  background: #2a2a28;
  box-shadow: 0 10px 26px rgba(17, 17, 17, .14);
}

.nav-toggle {
  border-color: var(--line);
  background: #fff;
}

.nav-toggle span {
  background: #111;
}

.availability {
  border-color: var(--line);
  background: #fff;
  color: #4f4f4b;
}

.availability span {
  background: #111;
}

.hero-title span {
  color: #555550;
}

.button.secondary {
  border-color: var(--line);
  background: transparent;
  color: #111;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: #111;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 17, 17, .08);
}

.showreel-button {
  border: 0;
  border-radius: 0;
  background: #e3e3df;
  color: #111;
  box-shadow: none;
}

.play-orb {
  border-color: #111;
  background: #111;
}

.play-orb::before {
  border-left-color: #fff;
}

.section {
  border-top-color: var(--line-soft);
}

.work-heading .section-kicker span {
  background: rgba(17, 17, 17, .55);
}

.work-section {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 3.125vw, 40px);
}

.work-grid {
  position: relative;
  column-gap: 20px;
  row-gap: 20px;
  padding-top: 40px;
  border-top: 1px solid rgba(17, 17, 17, .12);
}

.work-grid::before,
.work-grid::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 9px;
  height: 9px;
  background:
    linear-gradient(rgba(17, 17, 17, .2), rgba(17, 17, 17, .2)) center / 1px 9px no-repeat,
    linear-gradient(rgba(17, 17, 17, .2), rgba(17, 17, 17, .2)) center / 9px 1px no-repeat;
}

.work-grid::before {
  left: -4px;
}

.work-grid::after {
  right: -4px;
}

.work-media {
  aspect-ratio: 1.734 / 1;
}

.work-body h3 {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
}

.work-body .work-type {
  font-size: 14px;
  line-height: 20px;
}

@media (max-width: 900px) {
  .work-grid {
    padding-top: 30px;
  }
}

.work-card:focus-visible .work-media {
  outline-color: #111;
}

.work-media,
.work-preview {
  background: #e1e1dc;
}

.work-play {
  background: #111;
}

.work-play::before {
  border-left-color: #fff;
}

.work-card.has-preview .work-play {
  background: rgba(72, 72, 68, .25);
  color: #fff;
}

.offer-card {
  border-color: var(--line);
  background: #fff;
  box-shadow: none;
}

.offer-card:hover {
  border-color: rgba(17, 17, 17, .28);
  background: #fff;
  box-shadow: 0 18px 54px rgba(17, 17, 17, .08);
}

.offer-card.flagship {
  border-color: rgba(17, 17, 17, .2);
  background:
    radial-gradient(circle at 84% 6%, rgba(17, 17, 17, .07), transparent 10rem),
    linear-gradient(180deg, #f0f0ed, #ffffff 62%);
  box-shadow: none;
}

.offer-card li {
  color: #41413d;
}

.offer-card li::before,
.offer-card:not(.flagship) li::before,
.offer-card.flagship li::before {
  background: rgba(17, 17, 17, .1);
}

.offer-card li::after {
  border-left-color: #111;
  border-bottom-color: #111;
}

.retainer-pill {
  background: rgba(17, 17, 17, .08);
  color: #444440;
}

.retainer-pill::before {
  background: #111;
}

.offer-link {
  border-bottom-color: rgba(17, 17, 17, .28);
  color: #333330;
}

.offer-link:hover {
  border-color: #111;
  color: #111;
  text-shadow: none;
}

.ticker-wrap {
  border-color: var(--line-soft);
}

.ticker-track figure,
.faq-item {
  border-color: var(--line);
  background: #fff;
}

.ticker-track figure:hover,
.faq-item:hover,
.faq-item:focus-visible {
  border-color: rgba(17, 17, 17, .24);
  background: #fdfdfc;
}

.ticker-track blockquote {
  color: #353532;
}

.cal-shell,
.cal-shell iframe {
  border-color: var(--line);
  background: #fff;
  box-shadow: none;
}

.long-call-link:hover {
  color: #111;
  text-shadow: none;
}

.faq-item small {
  color: #111;
}

.site-footer {
  border-top-color: var(--line-soft);
}

.modal-backdrop {
  background: rgba(17, 17, 17, .72);
}

.modal-card {
  border-color: rgba(17, 17, 17, .2);
  background: #fff;
  box-shadow: 0 30px 90px rgba(17, 17, 17, .2);
}

.modal-close {
  border-color: #111;
  background: #111;
  color: #fff;
}

.modal-heading {
  border-bottom-color: var(--line);
}

@keyframes testimonialTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
