/* ───────────────────────────────────────────
   TOKENS — BScene design system
   cream base · ink black · lime accent
─────────────────────────────────────────── */
:root {
  --ink:     #131311;
  --ink-2:   #1b1b18;
  --cream:   #f2efe6;
  --cream-2: #e9e5d8;
  --lime:    #cdf545;
  --lime-2:  #b9e62e;
  --mid:     #767264;
  --mid-dark: rgba(255,255,255,0.55);

  --ff: 'FamiljenGrotesk-Variable', 'FamiljenGrotesk-Regular', system-ui, sans-serif;

  --max-w: 1200px;
  --gap:   clamp(1.5rem, 4vw, 3rem);
  --section-py: clamp(5rem, 10vw, 9rem);

  --radius: 14px;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --trans: 0.35s var(--ease-out);
}

/* ───────────────────────────────────────────
   RESET
─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff);
  font-weight: 400;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ───────────────────────────────────────────
   UTILITIES
─────────────────────────────────────────── */
.container {
  width: min(var(--max-w), 100% - 3rem);
  margin-inline: auto;
}

.kicker {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.kicker::before {
  content: '';
  width: 1.5rem;
  height: 2px;
  background: currentColor;
  align-self: center;
  flex-shrink: 0;
}
.kicker--nodash::before { display: none; }

.text-lime { color: var(--lime); }

.section-header {
  max-width: 680px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-header h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--mid);
}
.section-header--light h2 { color: var(--cream); }
.section-header--light p  { color: var(--mid-dark); }

/* ───────────────────────────────────────────
   BUTTONS — lime pills
─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--trans);
  white-space: nowrap;
}
.btn__arrow {
  font-size: 0.95em;
  transition: transform var(--trans);
}
.btn:hover .btn__arrow { transform: translate(2px, -2px); }

.btn--primary {
  background: var(--lime);
  color: var(--ink);
}
.btn--primary:hover {
  background: var(--lime-2);
  transform: translateY(-2px);
}
.btn--outline {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn--ghost {
  border: 1.5px solid rgba(242,239,230,0.45);
  color: var(--cream);
}
.btn--ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
}
.btn--lg { padding: 1.1rem 2.6rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ───────────────────────────────────────────
   NAV
─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--trans), padding var(--trans), box-shadow var(--trans);
}
.nav.scrolled {
  background: rgba(19,19,17,0.95);
  backdrop-filter: blur(12px);
  padding: 0.875rem 0;
  box-shadow: 0 1px 0 rgba(242,239,230,0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cream);
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(242,239,230,0.7);
  transition: color var(--trans);
}
.nav__links a:hover { color: var(--lime); }
.nav__cta { margin-left: 1.5rem; }
.nav__cta.btn--outline {
  border: none;
  background: var(--lime);
  color: var(--ink);
  padding: 0.6rem 1.4rem;
  font-size: 0.825rem;
}
.nav__cta.btn--outline:hover {
  background: var(--lime-2);
  color: var(--ink);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--trans);
}
/* ───────────────────────────────────────────
   MOBILE MENU OVERLAY
─────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--ink);
  display: flex;
  flex-direction: column;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.mobile-menu__close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(242,239,230,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: var(--trans);
}
.mobile-menu__close:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.mobile-menu__close .material-symbols-outlined { font-size: 22px; }
.mobile-menu__links {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
}
.mobile-menu__links a {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cream);
  transition: color var(--trans);
}
.mobile-menu__links a:hover { color: var(--lime); }
.mobile-menu__cta { font-size: 1rem !important; margin-top: 1rem; color: var(--ink) !important; }

/* ───────────────────────────────────────────
   HERO — video background
─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
/* YouTube iframe letterbox trick: covers the container regardless of aspect ratio */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  /* 16:9 aspect — scale up to fill whichever dimension is shorter */
  width: max(100%, calc(100vh * 16 / 9));
  height: max(100%, calc(100vw * 9 / 16));
  transform: translate(-50%, -50%);
  border: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(19,19,17,0.55) 0%,
    rgba(19,19,17,0.45) 60%,
    rgba(19,19,17,0.75) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-top: clamp(5rem, 12vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .kicker { color: var(--lime); }
.hero__headline {
  font-size: clamp(3.5rem, 9.5vw, 8rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero__headline-accent { color: var(--lime); }
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(242,239,230,0.65);
  max-width: 540px;
  margin-bottom: 2.5rem;
  margin-inline: auto;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll span {
  display: block;
  width: 1.5px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(205,245,69,0.6), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(1) translateY(100%); transform-origin: top; opacity: 0; }
}

/* ───────────────────────────────────────────
   INTRO — cream band, big heading
─────────────────────────────────────────── */
.intro {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-2);
}
.intro__heading {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
}

/* ───────────────────────────────────────────
   SERVICES — cream, rounded ink-outline cards
─────────────────────────────────────────── */
.services {
  padding: var(--section-py) 0;
  background: var(--cream);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
  margin-bottom: 2.5rem;
}
.service-card {
  padding: 2.5rem 2rem;
  border: 1.5px solid rgba(19,19,17,0.15);
  border-radius: var(--radius);
  background: var(--cream);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-4px);
}
.service-card:hover h3 { color: var(--cream); }
.service-card:hover p { color: var(--mid-dark); }
.service-card:hover .service-card__link { color: var(--lime); border-color: var(--lime); }
.service-card__num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--mid);
  margin-bottom: 1rem;
}
.service-card:hover .service-card__num { color: var(--lime); }
.service-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
  line-height: 1.15;
  transition: color var(--trans);
}
.service-card p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
  flex-grow: 1;
  transition: color var(--trans);
}
.service-card__link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
  transition: var(--trans);
  align-self: flex-start;
}
.services__cta-micro {
  font-size: 0.9rem;
  color: var(--mid);
  text-align: center;
}
.services__cta-micro a {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1.5px solid var(--lime-2);
  transition: color var(--trans);
}
.services__cta-micro a:hover { color: var(--lime-2); }

/* ───────────────────────────────────────────
   WORK — ink section with real photos
─────────────────────────────────────────── */
.work {
  padding: var(--section-py) 0;
  background: var(--ink);
}
.work__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 340px 300px;
  gap: 0.75rem;
}
/* Brand Video - tall left */
.work__item:nth-child(1) { grid-column: 1 / 8; grid-row: 1 / 3; }
/* Editorial Photos - top right upper */
.work__item:nth-child(2) { grid-column: 8 / 13; grid-row: 1; }
/* Event Coverage - top right lower */
.work__item:nth-child(3) { grid-column: 8 / 13; grid-row: 2; }
/* Marketing Campaign - bottom full */
/* (hidden in this 4-item layout, displayed below) */

.work__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.work__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.work__item:hover img { transform: scale(1.04); }
.work__label {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(19,19,17,0.7);
  backdrop-filter: blur(6px);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}

/* 4th item spans full width below */
.work__item:nth-child(4) {
  grid-column: 1 / 13;
  grid-row: 3;
  height: 320px;
}

/* work items are buttons — reset button appearance */
.work__item {
  all: unset;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
}
.work__expand {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(19,19,17,0.7);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.work__expand .material-symbols-outlined { font-size: 20px; }
.work__item:hover .work__expand,
.work__item:focus-visible .work__expand {
  opacity: 1;
  transform: scale(1);
}
.work__item:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }

/* ── LIGHTBOX ─────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,9,0.92);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 1100px);
  max-height: 92svh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}
.lightbox__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lightbox__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
}
.lightbox__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(242,239,230,0.08);
  border: 1px solid rgba(242,239,230,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  cursor: pointer;
  transition: var(--trans);
}
.lightbox__close:hover { background: rgba(242,239,230,0.18); }
.lightbox__close .material-symbols-outlined { font-size: 20px; }
.lightbox__track {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-height: 0;
}
.lightbox__stage {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: 100%;
  max-height: 68svh;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  transition: opacity 0.2s;
}
.lightbox__prev,
.lightbox__next {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(242,239,230,0.08);
  border: 1px solid rgba(242,239,230,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  cursor: pointer;
  transition: var(--trans);
}
.lightbox__prev:hover,
.lightbox__next:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.lightbox__prev .material-symbols-outlined,
.lightbox__next .material-symbols-outlined { font-size: 20px; }
.lightbox__prev:disabled,
.lightbox__next:disabled { opacity: 0.3; pointer-events: none; }
.lightbox__thumbs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 2px;
}
.lightbox__thumbs::-webkit-scrollbar { height: 3px; }
.lightbox__thumbs::-webkit-scrollbar-track { background: transparent; }
.lightbox__thumbs::-webkit-scrollbar-thumb { background: rgba(242,239,230,0.2); border-radius: 2px; }
.lightbox__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lightbox__thumb.active { border-color: var(--lime); }

/* ───────────────────────────────────────────
   ABOUT — cream
─────────────────────────────────────────── */
.about {
  padding: var(--section-py) 0;
  background: var(--cream);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about__image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.about__copy p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.about__closer {
  font-size: 1.3rem !important;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 2rem !important;
}

/* ───────────────────────────────────────────
   APPROACH — cream
─────────────────────────────────────────── */
.approach {
  padding: var(--section-py) 0;
  background: var(--cream);
  border-top: 1px solid var(--cream-2);
}
.approach__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap);
}
.approach__item {
  padding-top: 1.5rem;
  border-top: 2px solid var(--ink);
}
.approach__item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.approach__item p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ───────────────────────────────────────────
   TESTIMONIALS — ink
─────────────────────────────────────────── */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--ink);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.testimonials__grid .testimonial:nth-child(4),
.testimonials__grid .testimonial:nth-child(5) {
  grid-column: auto;
}
@media (min-width: 1000px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonials__grid .testimonial:nth-child(4) { grid-column: 1 / 2; }
  .testimonials__grid .testimonial:nth-child(5) { grid-column: 2 / 3; }
}
.testimonial {
  padding: 2.5rem;
  border: 1px solid rgba(242,239,230,0.1);
  border-radius: var(--radius);
  background: var(--ink-2);
}
.testimonial p {
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(242,239,230,0.9);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}

/* ───────────────────────────────────────────
   FINAL CTA (merged into contact)
─────────────────────────────────────────── */
.cta-final { display: none; }

/* ───────────────────────────────────────────
   CONTACT — ink
─────────────────────────────────────────── */
.contact {
  padding: var(--section-py) 0;
  background: var(--ink);
  border-top: 1px solid rgba(242,239,230,0.08);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact__copy h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.contact__copy p {
  font-size: 1rem;
  color: var(--mid-dark);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.contact__secondary a {
  color: var(--lime);
  border-bottom: 1px solid transparent;
  transition: border-color var(--trans);
}
.contact__secondary a:hover { border-color: var(--lime); }

/* Calendly widget container */
.contact__calendly {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(242,239,230,0.1);
}
.calendly-inline-widget {
  border-radius: var(--radius);
}

/* ───────────────────────────────────────────
   FOOTER — ink
─────────────────────────────────────────── */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(242,239,230,0.08);
  padding: 2.5rem 0;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
}
.footer__brand { display: flex; flex-direction: column; gap: 0.2rem; }
.footer__logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
}
.footer__location {
  font-size: 0.75rem;
  color: var(--mid-dark);
  letter-spacing: 0.06em;
}
.footer__links { display: flex; gap: 1.25rem; margin-left: auto; align-items: center; }
.footer__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(242,239,230,0.15);
  border-radius: 50%;
  color: var(--mid-dark);
  transition: var(--trans);
}
.footer__links a:hover {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}
.footer__links .material-symbols-outlined { font-size: 20px; }
.footer__icon { width: 18px; height: 18px; }
.footer__tagline {
  width: 100%;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(205,245,69,0.45);
  margin-top: 0.5rem;
}

/* ───────────────────────────────────────────
   ANIMATIONS
─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ───────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────── */
@media (max-width: 900px) {
  .about__inner,
  .contact__inner { grid-template-columns: 1fr; }
  .about__image { order: -1; max-width: 400px; }
  .about__image-placeholder { aspect-ratio: 4 / 3; }

  .work__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .work__item:nth-child(1) { grid-column: 1 / 3; grid-row: auto; height: 280px; }
  .work__item:nth-child(2) { grid-column: 1 / 2; grid-row: auto; height: 220px; }
  .work__item:nth-child(3) { grid-column: 2 / 3; grid-row: auto; height: 220px; }
  .work__item:nth-child(4) { grid-column: 1 / 3; grid-row: auto; height: 240px; }
}

@media (max-width: 680px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .work__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .work__item { grid-column: 1 / 2 !important; grid-row: auto !important; height: 260px !important; }
  .testimonials__grid { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__links { margin-left: 0; }
}
