:root {
  --ink: #121213;
  --cream: #f0eae6;
  --paper: #eae9e8;
  --hero: #ff5513;
  --orange: #ff9100;
  --white: #fff;
  --gutter: 60px;
  --radius: 10px;
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 100;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 12px 14px;
  clip: auto;
  background: var(--white);
}

.section-pad-x {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  padding: 0 30px;
  color: var(--ink);
  transition: background 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(234, 233, 232, 0.62);
  backdrop-filter: blur(18px);
}

.logo {
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.desktop-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-cta {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-1px);
}

.menu-button,
.menu-close {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span,
.menu-close span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button:hover span:first-child {
  transform: translateY(-2px);
}

.menu-button:hover span:last-child {
  transform: translateY(2px);
}

.offcanvas {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 50;
  width: min(430px, 100vw);
  padding: 28px;
  background: var(--ink);
  color: var(--cream);
  transform: translateX(102%);
  transition: transform 420ms var(--ease);
}

.offcanvas.is-open {
  transform: none;
}

.menu-close {
  color: var(--cream);
  margin-left: auto;
  display: block;
}

.menu-close span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-close span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.offcanvas nav {
  display: grid;
  gap: 14px;
  margin-top: 90px;
}

.offcanvas a {
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  transition: opacity 160ms ease, transform 160ms ease;
}

.offcanvas a:hover {
  opacity: 0.7;
  transform: translateX(8px);
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  background: rgba(18, 18, 19, 0.2);
  opacity: 0;
  transition: opacity 220ms ease;
}

body.menu-open .scrim {
  pointer-events: auto;
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: center;
  overflow: hidden;
  background: var(--hero);
}

.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.15rem, 13.5vw, 15.6rem);
  line-height: 0.83;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-meta {
  position: absolute;
  z-index: 3;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: end;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.hero-meta p {
  margin: 0;
}

.hero-meta p:nth-child(2) {
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  font-weight: 400;
}

.hero-meta p:last-child {
  text-align: right;
}

.image-trail img {
  position: absolute;
  z-index: 1;
  width: clamp(95px, 13vw, 210px);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.82) rotate(var(--rot, 0deg));
  transition: opacity 180ms ease, transform 480ms var(--ease);
}

.image-trail img.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(var(--rot, 0deg));
}

.services {
  padding-top: 12vw;
  padding-bottom: 6vw;
  background: var(--paper);
  overflow: hidden;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(180px, 1fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 3vw;
}

.section-intro h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.2rem, 5.4vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.text-link {
  justify-self: end;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.service-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 24vw);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
}

.service-strip::-webkit-scrollbar {
  height: 8px;
}

.service-strip::-webkit-scrollbar-thumb {
  background: rgba(18, 18, 19, 0.25);
  border-radius: 999px;
}

.service-card {
  min-height: 440px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.16)), var(--bg);
  background-size: cover;
  background-position: center;
  scroll-snap-align: start;
}

.service-card.has-overlay::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.34), transparent);
  pointer-events: none;
}

.service-card h3,
.service-card .chips {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 500;
}

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

.chips span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
  color: var(--white);
  font-size: 0.76rem;
}

.manifesto {
  padding-top: 10vw;
  padding-bottom: 10vw;
  background: var(--white);
}

.manifesto h2 {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(2.7rem, 6vw, 8.4rem);
  line-height: 1.08;
  letter-spacing: -0.065em;
  font-weight: 500;
}

.manifesto span {
  display: inline-block;
  width: 1.55em;
  height: 0.78em;
  margin: 0 0.05em;
  vertical-align: -0.08em;
  border-radius: var(--radius);
  overflow: hidden;
}

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

.work {
  position: relative;
  padding-top: 6vw;
  padding-bottom: 5vw;
  background: var(--white);
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 0.75rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
}

.filters button {
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: none;
  cursor: pointer;
  font-size: 0.88rem;
}

.filters button.active,
.filters button:hover {
  border-bottom-color: currentColor;
}

.work-list {
  border-top: 1px solid var(--ink);
}

.work-item {
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--ink);
  transition: background 250ms ease, color 250ms ease, padding 250ms var(--ease);
}

.work-item span {
  font-size: clamp(2.7rem, 8vw, 9.5rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 500;
}

.work-item strong {
  flex: 0 0 auto;
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 400;
}

.work-item:hover {
  padding-left: 22px;
  padding-right: 22px;
  background: var(--ink);
  color: var(--cream);
}

.portfolio-preview {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: min(280px, 22vw);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 160ms ease, transform 240ms var(--ease);
}

.portfolio-preview.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.testimonials {
  padding-top: 7vw;
  padding-bottom: 10vw;
  text-align: center;
  background: var(--white);
}

.quote-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  border-radius: 50%;
  color: var(--white);
  font-size: 3.4rem;
  line-height: 1;
  background: linear-gradient(rgba(18, 18, 19, 0.2), rgba(18, 18, 19, 0.2)), var(--avatar) center / cover;
}

blockquote {
  max-width: 1120px;
  margin: 0 auto;
}

blockquote p {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  line-height: 1.4;
  letter-spacing: -0.025em;
}

cite {
  display: grid;
  gap: 4px;
  margin-top: 26px;
  font-style: normal;
  font-size: 0.9rem;
}

cite span {
  font-weight: 700;
}

.video-band {
  padding-top: 0;
  padding-bottom: 0;
  background: var(--paper);
}

.video-card {
  position: relative;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-pill {
  position: absolute;
  inset: 24px auto auto 24px;
  display: inline-grid;
  place-items: center;
  min-height: 40px;
  padding: 0.5em 1.5em;
  border-radius: 999px;
  color: var(--white);
  background: rgba(18, 18, 19, 0.28);
  backdrop-filter: blur(20px);
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 180ms ease;
}

.video-pill:hover {
  background: rgba(18, 18, 19, 0.48);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15vw;
  padding-top: 10vw;
  padding-bottom: 5vw;
  background: var(--orange);
}

.contact-form {
  min-width: 0;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form label > span,
.contact-form legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid rgba(18, 18, 19, 0.7);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.contact-form input::placeholder {
  color: rgba(18, 18, 19, 0.82);
}

.contact-form fieldset {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  padding: 26px 0 22px;
  border: 0;
  margin: 0;
}

.contact-form fieldset label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
}

.contact-form fieldset label > span {
  position: static;
  width: auto;
  height: auto;
  clip: auto;
  overflow: visible;
}

.contact-form input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--ink);
}

.submit-button {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.submit-button:hover {
  background: transparent;
  color: var(--ink);
}

.form-status {
  min-height: 1.4em;
  margin: 12px 0 0;
  font-size: 0.9rem;
}

.contact-copy {
  min-width: 0;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(1.9rem, 2vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.contact-copy h2 a,
.socials a {
  display: inline-block;
  transition: opacity 160ms ease, transform 160ms ease;
}

.contact-copy h2 a:hover,
.socials a:hover {
  opacity: 0.7;
  transform: translateY(-1px);
}

.social-label {
  margin-top: 50px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: clamp(1.25rem, 2vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.brand-footer {
  overflow: hidden;
  background: var(--orange);
}

.brand-footer p {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(5rem, 24vw, 24rem);
  line-height: 0.85;
  letter-spacing: -0.09em;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 999px) {
  :root {
    --gutter: 25px;
  }

  .site-header {
    height: 76px;
    padding: 0 20px;
  }

  .section-intro,
  .contact {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-intro {
    margin-bottom: 40px;
  }

  .text-link {
    justify-self: start;
  }

  .services {
    padding-top: 24vw;
    padding-bottom: 15vw;
  }

  .service-strip {
    grid-auto-columns: minmax(290px, 72vw);
  }

  .work-item {
    min-height: 190px;
  }

  .portfolio-preview {
    display: none;
  }

  .contact {
    padding-top: 5rem;
  }
}

@media (max-width: 690px) {
  .nav-cta {
    min-height: 38px;
    padding: 0 14px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 72px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    bottom: 24px;
  }

  .hero-meta p:first-child,
  .hero-meta p:last-child {
    display: none;
  }

  .hero-meta p:nth-child(2) {
    text-align: center;
    font-size: 1rem;
  }

  .image-trail {
    display: none;
  }

  .service-card {
    min-height: 390px;
  }

  .manifesto {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .manifesto h2 {
    text-align: left;
  }

  .work,
  .testimonials {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .filters {
    gap: 12px 16px;
  }

  .work-item {
    min-height: 142px;
  }

  .work-item:hover {
    padding-left: 12px;
    padding-right: 12px;
  }

  .video-card {
    height: 50vh;
    min-height: 330px;
  }

  .field-row,
  .contact-form fieldset {
    grid-template-columns: 1fr;
  }

  .socials {
    display: grid;
    gap: 10px;
  }
}

@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;
  }

  .image-trail,
  .portfolio-preview {
    display: none;
  }
}
