:root {
  --yellow: #ffd200;
  --yellow-soft: #ffe680;
  --orange: #fd6a49;
  --orange-dark: #ae3115;
  --blue: #124af0;
  --blue-soft: #cdd4ff;
  --cream: #fcf8e3;
  --surface: #f9f9f9;
  --surface-2: #eeeeee;
  --ink: #111111;
  --muted: #4d4632;
  --white: #ffffff;
  --shadow: 4px 4px 0 #000;
  --shadow-lg: 8px 8px 0 #000;
  --shadow-xl: 12px 12px 0 #000;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  background: var(--yellow);
  border-bottom: 4px solid #000;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border: 2px solid #000;
  padding: 4px 12px;
  color: #000;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  border-bottom: 4px solid transparent;
  color: rgb(0 0 0 / 78%);
}

.nav-links a:hover,
.nav-links a.active {
  border-color: #000;
  color: #000;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 4px solid #000;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.nav-cta {
  border-width: 2px;
  box-shadow: var(--shadow);
  padding: 10px 18px;
  background: #000;
  color: var(--yellow);
}

.button {
  padding: 16px 24px;
  background: var(--white);
  color: #000;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
}

.button.primary {
  background: var(--yellow);
}

.button.secondary {
  background: var(--orange);
  color: var(--white);
}

.button.dark {
  background: #000;
  color: var(--yellow);
  border-color: var(--yellow);
}

.button:hover,
.nav-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 #000;
}

.nav-cta:hover {
  background: var(--white);
  color: #000;
}

.wrap {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.hero {
  padding: 96px 0;
  background: var(--white);
  border-bottom: 4px solid #000;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.eyebrow,
.tag {
  display: inline-flex;
  width: fit-content;
  border: 2px solid #000;
  box-shadow: 2px 2px 0 #000;
  padding: 4px 12px;
  background: var(--orange);
  color: #000;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow.blue {
  background: var(--blue);
  color: var(--white);
}

.eyebrow.yellow,
.tag.yellow {
  background: var(--yellow);
}

.tilt-left {
  transform: rotate(-1.5deg);
}

.tilt-right {
  transform: rotate(1.5deg);
}

.hero h1,
.page-title,
.section-title,
.card-title {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.hero h1,
.page-title {
  margin-top: 24px;
  font-size: clamp(3rem, 8vw, 5.5rem);
  text-transform: uppercase;
}

.highlight {
  display: inline;
  background: var(--yellow);
  box-decoration-break: clone;
  padding: 0 8px;
  text-decoration: underline;
  text-decoration-thickness: 6px;
  text-underline-offset: 8px;
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.actions.center-actions {
  justify-content: center;
}

.framed {
  border: 4px solid #000;
  box-shadow: var(--shadow-xl);
  background: var(--yellow);
  padding: 14px;
}

.framed img {
  border: 2px solid #000;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12);
  transition: filter 180ms ease;
}

.framed:hover img {
  filter: grayscale(0) contrast(1);
}

.section-title {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  text-transform: uppercase;
}

.section-lede {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.center {
  text-align: center;
}

.center .section-lede {
  margin-inline: auto;
}

.center-lead {
  margin-inline: auto;
}

.quote-header {
  margin-bottom: 64px;
}

.orange-word {
  color: var(--orange-dark);
}

.soft-top {
  background: var(--cream);
  border-top: 4px solid #000;
}

.light-on-dark {
  color: rgb(255 255 255 / 88%);
}

.compact-bottom {
  padding-bottom: 0;
}

.shadow-lg-only {
  box-shadow: var(--shadow-lg);
}


.services {
  background: var(--surface-2);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 52px;
}

.card,
.project-card,
.quote-panel,
.process-card {
  border: 4px solid #000;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.card {
  padding: 28px;
}

.card:nth-child(2) {
  transform: translateY(28px);
}

.icon-box {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  place-items: center;
  border: 4px solid #000;
  box-shadow: var(--shadow);
  background: var(--yellow);
}

.icon-box.blue {
  background: var(--blue-soft);
}

.icon-box.orange {
  background: var(--orange);
  color: var(--white);
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 24;
  vertical-align: middle;
}

.card-title {
  font-size: 1.8rem;
  text-transform: uppercase;
}

.card p,
.project-card p,
.process-card p {
  color: var(--muted);
}

.marquee {
  overflow: hidden;
  border-block: 4px solid #000;
  background: #000;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  min-width: 200%;
  animation: marquee 20s linear infinite;
}

.marquee span {
  padding: 28px 18px;
  color: var(--yellow);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

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

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

.bento-item {
  min-height: 220px;
  border: 4px solid #000;
  box-shadow: var(--shadow-lg);
  padding: 28px;
}

.bento-main {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--yellow);
}

.bento-wide {
  grid-column: span 2;
  background: var(--blue-soft);
}

.bento-orange {
  background: var(--orange);
  color: var(--white);
}

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

.bento h3,
.bento h4 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.bento img {
  margin-top: 20px;
  border: 4px solid #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.cta-band {
  border-block: 4px solid #000;
  background: var(--yellow);
  text-align: center;
}

.cta-band.dark-blue {
  background: var(--blue);
  color: var(--white);
}

.cta-band .section-title {
  font-size: clamp(2.6rem, 7vw, 5.25rem);
  font-style: italic;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px 40px;
  background: #000;
  color: var(--white);
  border-top: 4px solid #000;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  color: #aeb4be;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a.active {
  color: var(--yellow);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.copyright {
  color: var(--yellow);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.project-card {
  padding: 16px;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.project-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 #000;
}

.project-card.large {
  grid-column: span 8;
}

.project-card.small {
  grid-column: span 4;
}

.project-card.wide {
  grid-column: span 8;
  background: var(--yellow);
}

.project-card.peach {
  background: #ffdad2;
}

.project-card.blue {
  background: var(--blue-soft);
}

.project-card img {
  border: 2px solid #000;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.project-card.small img {
  aspect-ratio: 1;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
}

.project-card h2,
.project-card h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.arrow-button {
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid #000;
  background: var(--yellow);
  box-shadow: var(--shadow);
}

.timeline {
  position: relative;
  display: grid;
  gap: 72px;
  margin-top: 72px;
}

.timeline::before {
  position: absolute;
  inset: 0 auto 0 50%;
  width: 4px;
  background: #000;
  content: "";
  transform: translateX(-50%);
}

.process-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.process-row:nth-child(even) .process-card {
  grid-column: 2;
}

.process-row::after {
  position: absolute;
  top: 32px;
  left: 50%;
  width: 32px;
  height: 32px;
  border: 4px solid #000;
  background: var(--yellow);
  content: "";
  transform: translateX(-50%);
  z-index: 1;
}

.process-card {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.process-number {
  display: inline-flex;
  margin-right: 10px;
  padding: 3px 10px;
  border: 2px solid #000;
  background: var(--blue);
  color: var(--white);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 900;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 44px;
}

.tech-card {
  border: 4px solid #000;
  box-shadow: var(--shadow);
  padding: 28px;
  background: var(--white);
}

.tech-card.wide {
  grid-column: span 2;
}

.tech-card.dark {
  background: #000;
  color: var(--yellow);
}

.tech-card.orange {
  background: var(--orange-dark);
  color: var(--white);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.9fr);
  gap: 48px;
  align-items: start;
}

.quote-panel {
  padding: 32px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.radio-group legend {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 4px solid #000;
  border-radius: 0;
  background: var(--cream);
  padding: 14px;
  color: #000;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange-dark);
}

.radio-group {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  border: 0;
}

.budget-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.budget-options input {
  position: absolute;
  opacity: 0;
}

.budget-options span {
  display: block;
  border: 2px solid #000;
  padding: 9px 14px;
  background: var(--white);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 900;
  cursor: pointer;
}

.budget-options input:checked + span {
  background: var(--yellow);
  box-shadow: 2px 2px 0 #000;
}

.side-stack {
  display: grid;
  gap: 28px;
}

.why-card,
.direct-card {
  border: 4px solid #000;
  box-shadow: var(--shadow);
  padding: 28px;
}

.why-card {
  background: var(--yellow);
}

.direct-card {
  background: var(--white);
}

.why-list {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.why-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.faq-card {
  border: 2px solid #000;
  padding: 22px;
  background: var(--white);
}

@media (max-width: 920px) {
  .site-nav {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    gap: 18px;
    overflow-x: auto;
  }

  .hero-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .tech-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .card:nth-child(2) {
    transform: none;
  }

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

  .bento-main,
  .bento-wide,
  .project-card.large,
  .project-card.small,
  .project-card.wide,
  .tech-card.wide {
    grid-column: auto;
  }

  .timeline::before,
  .process-row::after {
    display: none;
  }

  .process-row,
  .process-row:nth-child(even) .process-card {
    display: block;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }

  .copyright {
    text-align: center;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 32px, 1280px);
  }

  .site-nav {
    padding: 14px 16px;
  }

  .brand {
    font-size: 1.1rem;
  }

  .nav-cta {
    width: 100%;
  }

  .hero,
  .section {
    padding: 64px 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
