/* ═══════════════════════════════════════════════
   JONIEL DA SILVA — BAUHAUS DARK MODERNIST
   Geometric modernism: rational, minimal, dark
   Grid-based, flat design, limited palette
   Fonts: Futura (all caps)
   ═══════════════════════════════════════════════ */

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Dark Bauhaus palette */
  --black:      #000000;
  --white:      #FFFFFF;
  --dark-bg:    #0A0A0A;
  --dark-card:  #141414;
  --gray-dark:  #1F1F1F;
  --gray-mid:   #666666;
  --gray-light: #999999;
  --accent:     #D32F2F;  /* Bauhaus red */

  /* Futura-based geometric sans-serif stack */
  --futura: 'Futura', 'Century Gothic', 'Avenir Next', 'Trebuchet MS', sans-serif;

  /* Strict grid system - 8px base unit */
  --unit: 8px;
  --grid-gap: calc(var(--unit) * 3);

  --nav-h: 80px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--futura);
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  text-transform: uppercase;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── GRID SYSTEM ─── */
.grid-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--grid-gap);
}

/* ─── NAV (Minimal on dark) ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  height: var(--nav-h);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--grid-gap);
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--grid-gap);
}
.nav-logo {
  font-family: var(--futura);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--white);
  display: flex;
  align-items: center;
}
.nav-logo img {
  display: block;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-right: 10px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: calc(var(--unit) * 5);
  justify-content: center;
}
.nav-links a {
  font-family: var(--futura);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-light);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-cta {
  font-family: var(--futura);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
  background: var(--white);
  padding: calc(var(--unit) * 2) calc(var(--unit) * 4);
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover {
  background: var(--accent);
  color: var(--white);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  font-family: var(--futura);
  font-size: 0.875rem;
  font-weight: 700;
  background: var(--white);
  color: var(--black);
  border: none;
  padding: calc(var(--unit) * 2) calc(var(--unit) * 3);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.nav-toggle:hover {
  background: var(--accent);
  color: var(--white);
}

/* Mobile overlay menu */
.nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--dark-bg);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-overlay.active {
  transform: translateX(0);
}
.nav-overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.nav-overlay-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.nav-overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(var(--unit) * 3) var(--grid-gap);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-overlay-close {
  font-family: var(--futura);
  font-size: 0.875rem;
  font-weight: 700;
  background: var(--white);
  color: var(--black);
  border: none;
  padding: calc(var(--unit) * 2) calc(var(--unit) * 3);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.nav-overlay-close:hover {
  background: var(--accent);
  color: var(--white);
}
.nav-overlay-links {
  list-style: none;
  padding: calc(var(--unit) * 6) var(--grid-gap);
}
.nav-overlay-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-overlay-links a {
  display: block;
  font-family: var(--futura);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  padding: calc(var(--unit) * 3) 0;
  transition: color 0.2s, padding-left 0.2s;
}
.nav-overlay-links a:hover {
  color: var(--accent);
  padding-left: calc(var(--unit) * 2);
}
.nav-overlay-cta {
  margin: 0 var(--grid-gap) calc(var(--unit) * 4);
}
.nav-overlay-cta a {
  display: block;
  text-align: center;
  font-family: var(--futura);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  background: var(--white);
  padding: calc(var(--unit) * 3) calc(var(--unit) * 4);
  transition: background 0.2s, color 0.2s;
}
.nav-overlay-cta a:hover {
  background: var(--accent);
  color: var(--white);
}

/* ─── HERO (Dark with background image) ─── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  position: relative;
  overflow: clip;
  background: var(--black);
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}
.hero-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--unit) * 8) var(--grid-gap);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero-content {
  max-width: 720px;
}
.hero-tag {
  font-family: var(--futura);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gray-light);
  margin-bottom: calc(var(--unit) * 4);
  display: block;
}
.hero h1 {
  font-family: var(--futura);
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: calc(var(--unit) * 4);
}
.hero h1 .accent {
  color: var(--accent);
}
.hero-sub {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: calc(var(--unit) * 5);
  max-width: 550px;
}
.hero-cta {
  display: inline-block;
  font-family: var(--futura);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  padding: calc(var(--unit) * 2.5) calc(var(--unit) * 5);
  transition: background 0.2s;
}
.hero-cta:hover {
  background: var(--white);
  color: var(--black);
}

/* ─── SECTION PRIMITIVES ─── */
.section {
  padding: calc(var(--unit) * 12) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.section-header {
  max-width: 1280px;
  margin: 0 auto calc(var(--unit) * 8);
  padding: 0 var(--grid-gap);
}
.section-number {
  font-family: var(--futura);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray-mid);
  margin-bottom: calc(var(--unit) * 2);
}
.section-title {
  font-family: var(--futura);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
  max-width: 800px;
}
.section-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-light);
  max-width: 600px;
  margin-top: calc(var(--unit) * 3);
}

/* ─── WHAT I DO (Dark grid) ─── */
.what {
  background: var(--dark-bg);
}
.what .grid-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: calc(var(--unit) * 8);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.service-card {
  background: var(--dark-card);
  padding: calc(var(--unit) * 5);
  transition: background 0.2s;
}
.service-card:hover {
  background: var(--gray-dark);
}
.service-num {
  font-family: var(--futura);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: calc(var(--unit) * 2);
}
.service-card h3 {
  font-family: var(--futura);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: calc(var(--unit));
}
.service-meta {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray-mid);
}

/* ─── BRAND SPRINT ─── */
.sprint {
  background: var(--black);
}
.sprint .grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--unit) * 10);
}
.sprint-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: calc(var(--unit) * 5);
}
.btn-primary {
  display: inline-block;
  font-family: var(--futura);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
  background: var(--white);
  padding: calc(var(--unit) * 2.5) calc(var(--unit) * 5);
  transition: background 0.2s, color 0.2s;
}
.btn-primary:hover {
  background: var(--accent);
  color: var(--white);
}
.phases {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.phase {
  background: var(--dark-card);
  padding: calc(var(--unit) * 4);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: calc(var(--unit) * 3);
  align-items: start;
  transition: background 0.2s;
}
.phase:hover {
  background: var(--gray-dark);
}
.phase-num {
  font-family: var(--futura);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.phase h4 {
  font-family: var(--futura);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: calc(var(--unit));
}
.phase p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gray-light);
}

/* ─── WORK GRID ─── */
.work {
  background: var(--dark-bg);
}
.work-header {
  max-width: 1280px;
  margin: 0 auto calc(var(--unit) * 8);
  padding: 0 var(--grid-gap);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: calc(var(--unit) * 3);
}
.btn-outline {
  font-family: var(--futura);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: transparent;
  padding: calc(var(--unit) * 2) calc(var(--unit) * 4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.work-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--grid-gap);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.work-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-dark);
}
.work-card--wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.work-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}
.work-card:hover .work-card-img {
  opacity: 0.7;
}
.work-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0, 0, 0, 0.9);
  padding: calc(var(--unit) * 3);
  transform: translateY(100%);
  transition: transform 0.3s;
}
.work-card:hover .work-card-info {
  transform: translateY(0);
}
.work-card-sector {
  font-family: var(--futura);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: calc(var(--unit));
}
.work-card h3 {
  font-family: var(--futura);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--white);
}

/* ─── CLIENTS ─── */
.clients {
  background: var(--black);
  padding: calc(var(--unit) * 10) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
}
.clients .section-number {
  text-align: center;
  margin-bottom: calc(var(--unit) * 5);
}
.clients-flow {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 calc(var(--grid-gap) + 80px);
  overflow: hidden;
}
.clients-track {
  display: inline-flex;
  width: max-content;
  animation: clients-marquee 94.5s linear infinite;
  will-change: transform;
}
.clients-row {
  display: inline-flex;
  align-items: center;
  gap: calc(var(--unit) * 6);
}
.client-logo {
  width: 200px;
  height: 200px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.client-logo img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

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

@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 900ms cubic-bezier(0.25, 1, 0.4, 1),
              transform 900ms cubic-bezier(0.25, 1, 0.4, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: var(--black);
}
.testimonials-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--grid-gap);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonial-card {
  background: var(--dark-card);
  padding: calc(var(--unit) * 6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.2s;
}
.testimonial-card:hover {
  background: var(--gray-dark);
}
.testimonial-quote {
  font-family: var(--futura);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  font-style: italic;
  text-transform: none;
  margin-bottom: calc(var(--unit) * 4);
}
.testimonial-translation {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gray-light);
  text-transform: none;
  margin-bottom: calc(var(--unit) * 4);
}
.testimonial-attr {
  display: flex;
  flex-direction: column;
  gap: calc(var(--unit));
  padding-top: calc(var(--unit) * 3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonial-name {
  font-family: var(--futura);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}
.testimonial-role {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray-mid);
  letter-spacing: 0.1em;
}

/* ─── ABOUT ─── */
.about {
  background: var(--dark-bg);
}
.about .grid-container {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: calc(var(--unit) * 10);
  align-items: start;
}
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.about-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: calc(var(--unit) * 3);
}
.about-content p strong {
  font-weight: 600;
  color: var(--white);
}
.about-content p em {
  font-style: italic;
}
.about-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: calc(var(--unit) * 5);
}
.tag {
  background: var(--dark-card);
  padding: calc(var(--unit) * 2) calc(var(--unit) * 3);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  color: var(--gray-light);
  transition: background 0.2s, color 0.2s;
}
.tag:hover {
  background: var(--accent);
  color: var(--white);
}

/* ─── FILM ─── */
.film {
  background: var(--black);
}
.film .grid-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: calc(var(--unit) * 10);
  align-items: center;
}
.film-visual {
  aspect-ratio: 16/9;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  position: relative;
  background: var(--black);
}
.film-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.film-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.film-play::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--white);
  margin-left: 4px;
}
.film-play:hover {
  background: var(--white);
}
.film-play:hover::after {
  border-color: transparent transparent transparent var(--black);
}
.film-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: calc(var(--unit) * 4);
}
.film-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--unit) * 3);
  padding: calc(var(--unit) * 3) 0;
  margin-bottom: calc(var(--unit) * 4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.film-meta-item span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  margin-bottom: calc(var(--unit));
}
.film-meta-item strong {
  font-family: var(--futura);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

/* ─── CONTACT ─── */
.contact {
  background: var(--accent);
  color: var(--white);
  padding: calc(var(--unit) * 15) var(--grid-gap);
  text-align: center;
}
.contact .section-number {
  color: rgba(255, 255, 255, 0.6);
}
.contact .section-title {
  color: var(--white);
  margin: 0 auto calc(var(--unit) * 4);
}
.contact-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto calc(var(--unit) * 6);
}
.contact-actions {
  display: flex;
  justify-content: center;
  gap: calc(var(--unit) * 3);
  flex-wrap: wrap;
}
.btn-white {
  font-family: var(--futura);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--white);
  padding: calc(var(--unit) * 2.5) calc(var(--unit) * 5);
  transition: background 0.2s, color 0.2s;
}
.btn-white:hover {
  background: var(--black);
  color: var(--white);
}
.btn-white-outline {
  font-family: var(--futura);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: transparent;
  padding: calc(var(--unit) * 2.5) calc(var(--unit) * 5);
  border: 1px solid var(--white);
  transition: all 0.2s;
}
.btn-white-outline:hover {
  background: var(--white);
  color: var(--accent);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--black);
  padding: calc(var(--unit) * 4) var(--grid-gap);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--futura);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--white);
  display: flex;
  align-items: center;
}
.footer-logo img {
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-right: 8px;
}
.footer-links {
  display: flex;
  gap: calc(var(--unit) * 3);
  align-items: center;
}
.footer-links a {
  font-size: 0.75rem;
  color: var(--gray-mid);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--gray-mid);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-inner,
  .what .grid-container,
  .sprint .grid-container,
  .about .grid-container,
  .film .grid-container {
    grid-template-columns: 1fr;
    gap: calc(var(--unit) * 6);
  }
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
  .client-logo {
    width: 160px;
    height: 160px;
  }
  .clients-row {
    gap: calc(var(--unit) * 4);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .about-tags {
    grid-template-columns: repeat(2, 1fr);
  }
  .film-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-inner {
    grid-template-columns: 1fr auto;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: block;
  }

  .section {
    padding: calc(var(--unit) * 8) 0;
  }

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

  .work-grid {
    grid-template-columns: 1fr;
  }
  .work-card--wide {
    grid-column: span 1;
  }

  .client-logo {
    width: 140px;
    height: 140px;
  }
  .clients-row {
    gap: calc(var(--unit) * 3);
  }

  .about-tags {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: calc(var(--unit) * 2);
    text-align: center;
  }
}
