:root {
  --red: #d5251f;
  --deep-red: #9f1512;
  --orange: #f47b17;
  --sun: #ffc338;
  --cream: #fff2dc;
  --cream-2: #f8e5c5;
  --ink: #20150d;
  --muted: #6b5846;
  --white: #fffaf1;
  --teal: #087a73;
  --line: rgba(32, 21, 13, 0.16);
  --shadow: 10px 10px 0 var(--ink);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Space Grotesk", Arial, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 220px 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 46px);
  background: rgba(255, 242, 220, 0.9);
  border-bottom: 2px solid var(--ink);
  backdrop-filter: blur(14px);
}

.brand-mark img {
  width: 210px;
  height: auto;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  font-size: 14px;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 180ms ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.nav-cta:hover,
.button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--red);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  padding: 11px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.mobile-menu {
  position: fixed;
  inset: 75px 0 auto;
  z-index: 29;
  display: none;
  flex-direction: column;
  padding: 18px 24px 24px;
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 20px;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.02;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.kicker {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker.light {
  color: var(--sun);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  padding-top: 72px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.28), transparent 42%),
    radial-gradient(circle at 88% 14%, rgba(244, 123, 23, 0.32), transparent 28%);
  pointer-events: none;
}

.hero-bg-word {
  position: absolute;
  left: -2vw;
  bottom: 120px;
  color: rgba(32, 21, 13, 0.045);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(86px, 21vw, 300px);
  font-weight: 900;
  white-space: nowrap;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.hero h1 {
  max-width: 750px;
  font-size: clamp(44px, 5.25vw, 82px);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 560px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-stage {
  position: relative;
  min-height: 560px;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 48px 0 26px 70px;
  background: linear-gradient(145deg, var(--red), var(--orange));
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  transform: rotate(4deg);
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-card-main {
  right: 42px;
  top: 28px;
  width: min(430px, 78vw);
  transform: rotate(-3deg);
}

.hero-card-main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  z-index: 3;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--sun);
  font-weight: 900;
  box-shadow: 5px 5px 0 var(--ink);
}

.note-one {
  top: 78px;
  left: 0;
  transform: rotate(-7deg);
}

.note-two {
  right: 0;
  bottom: 92px;
  background: var(--white);
  transform: rotate(6deg);
}

.ticker {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 72px;
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--ink);
}

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

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 34px;
  color: var(--white);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.ticker span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 40px;
  align-items: end;
}

.section-heading h2,
.video-copy h2,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(34px, 4.8vw, 68px);
  font-weight: 900;
}

.section-heading p,
.video-copy p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.services {
  background: var(--cream-2);
  border-top: 2px solid var(--ink);
}

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

.service-card {
  min-height: 310px;
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 0 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 8px 8px 0 var(--ink);
}

.service-number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 44px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.service-card:nth-child(2) .service-number {
  background: var(--orange);
}

.service-card:nth-child(3) .service-number {
  background: var(--teal);
}

.service-card:nth-child(4) .service-number {
  background: var(--sun);
  color: var(--ink);
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

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

.video-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.video-section::before {
  content: "HEY!";
  position: absolute;
  left: clamp(18px, 6vw, 92px);
  top: clamp(18px, 5vw, 70px);
  color: rgba(255, 250, 241, 0.07);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(92px, 18vw, 230px);
  font-weight: 900;
  letter-spacing: 0;
}

.video-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.video-copy p {
  color: rgba(255, 250, 241, 0.72);
}

.video-shell {
  justify-self: center;
  width: min(100%, 460px);
  overflow: hidden;
  border: 2px solid var(--white);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 42%, rgba(244, 123, 23, 0.34), transparent 38%),
    #100b08;
  box-shadow: 14px 14px 0 var(--red);
}

.video-shell video {
  width: 100%;
  height: min(76vh, 720px);
  min-height: 560px;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: transparent;
}

.mini-stats,
.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.mini-stats span,
.about-points span {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 800;
  font-size: 13px;
}

.work {
  background: var(--cream);
}

.portfolio-wall {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-flow: dense;
  gap: 16px;
}

.work-tile {
  position: relative;
  grid-column: span 2;
  min-height: 320px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
}

.work-tile.wide {
  grid-column: span 4;
}

.work-tile.tall {
  grid-row: span 2;
  min-height: 660px;
}

.work-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 480ms ease, filter 480ms ease;
}

.work-tile:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.03);
}

.work-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.76));
}

.work-tile div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
}

.work-tile span {
  display: inline-flex;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 250, 241, 0.72);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(32, 21, 13, 0.38);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-tile h3 {
  font-size: clamp(20px, 2.4vw, 34px);
}

.about {
  background: var(--cream-2);
  border-block: 2px solid var(--ink);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 58px;
  align-items: center;
}

.about-image {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-copy p + p {
  margin-top: 18px;
}

.team {
  background: var(--cream);
}

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

.team-card {
  min-height: 330px;
  padding: 26px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 0 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.team-card:hover {
  transform: translateY(-7px) rotate(-0.6deg);
  box-shadow: 8px 8px 0 var(--ink);
}

.team-avatar {
  display: flex;
  width: 76px;
  height: 76px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: "Unbounded", Arial, sans-serif;
  font-weight: 900;
}

.team-avatar.orange {
  background: var(--orange);
}

.team-avatar.yellow {
  background: var(--sun);
  color: var(--ink);
}

.team-avatar.teal {
  width: 86px;
  border-radius: 999px;
  background: var(--teal);
}

.team-role {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.team-card > p:last-child {
  color: var(--muted);
  line-height: 1.62;
}

.contact {
  background: var(--ink);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-copy p {
  color: rgba(255, 250, 241, 0.72);
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-links a,
.contact-links span {
  width: fit-content;
  border-bottom: 2px solid var(--orange);
  color: var(--white);
  font-weight: 800;
}

.social-icons,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.social-icons a,
.footer-socials a {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.social-icons a:hover,
.footer-socials a:hover {
  transform: translate(-3px, -3px);
  background: var(--sun);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--red);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border: 2px solid var(--white);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  box-shadow: 12px 12px 0 var(--red);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid var(--sun);
  outline-offset: 1px;
}

.contact-form input.is-invalid,
.contact-form select.is-invalid {
  border-color: var(--red);
  background: #fff0ec;
}

.form-status {
  min-height: 22px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.form-status.is-success {
  color: var(--teal);
}

.thank-you-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--sun);
  color: var(--ink);
}

.thank-you-card h3 {
  font-size: clamp(24px, 4vw, 34px);
}

.thank-you-card p {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

.contact-form .button {
  width: 100%;
  cursor: pointer;
}

.site-footer {
  padding: 26px 0;
  background: var(--ink);
  color: rgba(255, 250, 241, 0.7);
  border-top: 1px solid rgba(255, 250, 241, 0.16);
}

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

.footer-grid img {
  width: 160px;
  filter: brightness(0) invert(1);
}

.footer-grid a {
  color: var(--white);
  font-weight: 800;
}

.footer-socials {
  margin-top: 0;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease var(--delay, 0ms), transform 600ms ease var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

  .hero-grid,
  .video-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 520px;
  }

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

  .portfolio-wall {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 720px) {
  .wrap,
  .portfolio-wall {
    width: min(100% - 28px, 1180px);
  }

  .section-pad {
    padding: 64px 0;
  }

  .brand-mark img {
    width: 154px;
  }

  .site-header {
    grid-template-columns: 156px 1fr;
    padding: 12px 14px;
  }

  .mobile-menu {
    inset: 69px 0 auto;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero h1 {
    font-size: clamp(34px, 10.5vw, 44px);
  }

  .hero-lede {
    margin-top: 20px;
    font-size: 16px;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    min-height: 44px;
    padding: 0 18px;
    font-size: 14px;
  }

  .hero-stage {
    min-height: 382px;
  }

  .hero-stage::before {
    inset: 36px 16px 28px 44px;
  }

  .hero-card-main {
    right: 24px;
    width: min(310px, 76vw);
  }

  .floating-note {
    max-width: 170px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .note-one {
    left: 2px;
    top: 64px;
  }

  .note-two {
    right: 4px;
    bottom: 70px;
  }

  .ticker span {
    padding: 14px 24px;
    font-size: 13px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .video-copy h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .section-heading p,
  .video-copy p,
  .about-copy p,
  .contact-copy p {
    font-size: 15.5px;
  }

  .video-shell {
    width: min(100%, 340px);
    box-shadow: 8px 8px 0 var(--red);
  }

  .video-shell video {
    height: min(62vh, 560px);
    min-height: 440px;
  }

  .section-heading.split,
  .service-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .service-number {
    margin-bottom: 28px;
  }

  .portfolio-wall {
    grid-template-columns: 1fr;
  }

  .work-tile,
  .work-tile.wide,
  .work-tile.tall {
    grid-column: auto;
    grid-row: auto;
    height: 330px;
    min-height: 0;
  }

  .work-tile.tall {
    height: 470px;
    min-height: 0;
  }

  .work-tile img {
    min-height: 0;
  }

  .about-image {
    transform: rotate(0deg);
    box-shadow: 8px 8px 0 var(--ink);
  }

  .team-card {
    min-height: auto;
    padding: 22px;
  }

  .contact-form {
    box-shadow: 8px 8px 0 var(--red);
  }

  .social-icons a {
    width: 42px;
    height: 42px;
  }

  .footer-grid {
    text-align: left;
  }

  .footer-socials {
    margin-top: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}
