/* DESIGN TOKENS */
:root {
  --canvas: #222222;
  --surface-1: #282828;
  --surface-2: #323232;
  --surface-3: #3c3c3c;
  --hairline: #464646;
  --hairline-strong: #505050;
  --ink: #ffffff;
  --ink-muted: #d0d0d0;
  --ink-subtle: #8a8a8a;
  --ink-tertiary: #606060;
  --accent-fill: #1c5d99;
  --accent-text: #639fab;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-btn: 8px;
  --radius-card: 18px;
  --radius-media: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Focus ring */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 3px;
  border-radius: 4px;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  background-color: var(--canvas);
}

body {
  background-color: var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  line-height: 1.6;
}


.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Typography & Utilities */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-text);
  font-weight: 500;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-fill);
  box-shadow: 0 0 8px var(--accent-text);
}

.section-head {
  margin-bottom: 56px;
  max-width: 760px;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--ink);
}
.section-head h2 em {
  font-style: italic;
  color: var(--accent-text);
}
.section-head p {
  font-size: 16px;
  color: var(--ink-muted);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 580px;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.35s ease, padding 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(34, 34, 34, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 48px;
  border-bottom: 1px solid var(--hairline);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 15px;
  text-decoration: none;
  color: var(--ink);
}
.logo-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-fill);
  box-shadow: 0 0 10px rgba(28, 93, 153, 0.7);
  display: inline-block;
  flex-shrink: 0;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: var(--accent-text);
  transition: width 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta {
  background: var(--accent-fill);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 22px;
  border-radius: var(--radius-btn);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(28, 93, 153, 0.35);
  transition: transform 0.3s cubic-bezier(0.6, 0, 0.2, 1), background-color 0.2s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(28, 93, 153, 0.5);
}
.nav-cta:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 2px;
}
.nav-cta svg {
  transition: transform 0.3s cubic-bezier(0.6, 0, 0.2, 1);
}
.nav-cta:hover svg {
  transform: translate(2px, -2px);
}

/* Mobile Drawer */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--ink);
}
.hamburger svg {
  width: 24px;
  height: 24px;
  display: block;
}
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
}
.mobile-drawer.open {
  opacity: 1;
  pointer-events: auto;
}
.drawer-panel {
  background: var(--surface-1);
  border-left: 1px solid var(--hairline);
  width: 80%;
  max-width: 320px;
  height: 100%;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.mobile-drawer.open .drawer-panel {
  transform: translateX(0);
}
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}
.drawer-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--ink-muted);
}
.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.drawer-links a {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.drawer-cta {
  justify-content: center;
  width: 100%;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 32px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.small-team {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(42px, 6.5vw, 92px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  text-align: center;
  margin-bottom: 0;
  z-index: 4;
  position: relative;
}
.small-team .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.small-team .word > span {
  display: inline-block;
  transform: translateY(105%);
}

/* Ghost word */
.big-results-wrap {
  position: relative;
  width: 100%;
  margin-top: calc(-24px - clamp(0px, 3.7vw, 55px));
  display: flex;
  justify-content: center;
  z-index: 1;
  user-select: none;
}
.big-results {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(120px, 22vw, 320px);
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: #2b2b2b;
  text-align: center;
  white-space: nowrap;
  z-index: 1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.big-results .letter {
  display: inline-block;
  transform-origin: bottom;
}

/* Hero cards */
.cards-row {
  position: absolute;
  left: 0;
  right: 0;
  top: 38%;
  height: 320px;
  z-index: 3;
  pointer-events: none;
}
.cards-row > * {
  pointer-events: auto;
}

.card-fan {
  position: absolute;
}
.card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  box-shadow: 0 30px 50px -16px rgba(0, 0, 0, 0.7),
    0 14px 26px -8px rgba(0, 0, 0, 0.45),
    0 5px 10px -2px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  will-change: transform;
  transition: box-shadow 0.4s cubic-bezier(0.6, 0, 0.2, 1), border-color 0.3s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 35%,
    transparent 70%,
    rgba(0, 0, 0, 0.4) 100%
  );
  pointer-events: none;
  border-radius: inherit;
  z-index: 2;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.85) contrast(1.05);
  transition: filter 0.3s ease;
}
.card:hover {
  border-color: var(--accent-text);
  box-shadow: 0 44px 70px -20px rgba(0, 0, 0, 0.8),
    0 20px 36px -10px rgba(28, 93, 153, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.card:hover img {
  filter: saturate(1) contrast(1.1);
}

/* Card positions */
.card-1 { width: 130px; height: 180px; left: 4%; top: 30px; z-index: 1; }
.card-2 { width: 160px; height: 220px; left: 12%; top: 50px; z-index: 2; }
.card-3 { width: 200px; height: 270px; left: 22%; top: 20px; z-index: 4; }
.card-4 { width: 150px; height: 200px; left: 36%; top: 70px; z-index: 3; }
.card-5 { width: 230px; height: 310px; left: 44%; top: 0px; z-index: 5; }
.card-6 { width: 160px; height: 215px; left: 59%; top: 55px; z-index: 3; }
.card-7 { width: 175px; height: 240px; left: 70%; top: 30px; z-index: 4; }
.card-8 { width: 130px; height: 175px; left: 84%; top: 50px; z-index: 2; }

/* Subline */
.subline {
  margin-top: calc(190px + clamp(0px, 3.7vw, 55px));
  text-align: center;
  z-index: 4;
  position: relative;
}
.subline .arrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-1);
  color: var(--ink);
  border: 1px solid var(--hairline);
  padding: 12px 20px 12px 24px;
  border-radius: var(--radius-btn);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 14px 24px -8px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.6, 0, 0.2, 1), border-color 0.3s ease;
}
.subline .arrow-pill:hover {
  transform: translateY(-2px);
  border-color: var(--hairline-strong);
}
.subline .arrow-pill .ar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-fill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.4s cubic-bezier(0.6, 0, 0.2, 1);
}
.subline .arrow-pill:hover .ar {
  transform: rotate(45deg);
}
.subline-text {
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-subtle);
  letter-spacing: 0.04em;
}

/* WHAT I DO */
.section-spacing {
  padding: 120px 0;
  position: relative;
  z-index: 5;
}
.positioning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.position-card {
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 36px 30px;
  transition: transform 0.4s cubic-bezier(0.6, 0, 0.2, 1), border-color 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.position-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-text);
  background: var(--surface-2);
  box-shadow: 0 24px 40px -16px rgba(0, 0, 0, 0.6);
}
.pos-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-text);
  margin-bottom: 8px;
}
.position-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.position-card p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* WORK */
.work-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.work-intro {
  position: sticky;
  top: 140px;
}
.work-intro .section-head {
  margin-bottom: 0;
}

/* Stacking deck */
.cards-stack {
  perspective: 1000px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 8vh;
}
.stack-card {
  position: sticky;
  top: calc(120px + var(--i) * 56px);
  transform: translateZ(calc(var(--i) * 5px));
  backface-visibility: hidden;
}
.project-card {
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.6, 0, 0.2, 1), border-color 0.3s ease, box-shadow 0.4s ease;
}
.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-text);
  box-shadow: 0 30px 50px -16px rgba(0, 0, 0, 0.7);
}
.project-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-2);
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.project-card:hover .project-media img {
  transform: scale(1.05);
}
.project-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  gap: 16px;
}
.project-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.project-desc {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.55;
}
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  color: var(--accent-text);
  padding: 3px 8px;
  border-radius: 4px;
}

/* CHANNELS */
.channels-head {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 44px;
  text-align: center;
}
.logo-cloud-note {
  max-width: 620px;
  margin: 30px auto 0;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-subtle);
}
.logo-cloud {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px 20px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 7vw, 84px);
}
.logo-chip {
  flex: none;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--ink-subtle);
  transition: color 0.3s ease, transform 0.4s cubic-bezier(0.6, 0, 0.2, 1);
}
.logo-chip svg {
  display: block;
}
.logo-chip:hover,
.logo-chip:focus-visible {
  color: var(--ink);
  transform: translateY(-4px);
}

/* CONTACT */
.contact-box {
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: 28px;
  padding: 60px 50px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.contact-box::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 93, 153, 0.2), transparent 70%);
  bottom: -150px;
  left: -80px;
  filter: blur(50px);
  pointer-events: none;
}
.contact-left {
  position: relative;
  z-index: 2;
}
.contact-left h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.contact-left h2 em {
  font-style: italic;
  color: var(--accent-text);
}
.contact-left p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 460px;
}
.direct-email-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  padding: 12px 20px;
  border-radius: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.direct-email-card:hover {
  border-color: var(--accent-text);
  transform: translateY(-2px);
}
.direct-email-card svg {
  color: var(--accent-text);
}

.contact-aside {
  margin-top: 18px;
  font-size: 12px;
  color: var(--ink-tertiary);
}
.contact-aside a {
  color: var(--ink-subtle);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 2;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-subtle);
}
.form-input, .form-textarea {
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--hairline-strong);
  box-shadow: 0 0 0 3px rgba(28, 93, 153, 0.45);
}
.form-textarea {
  resize: vertical;
  min-height: 110px;
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-muted);
}
.form-status a {
  color: var(--accent-text);
}
.form-status[data-state="error"] {
  color: var(--ink);
}

.btn-submit {
  background: var(--accent-fill);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-btn);
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(28, 93, 153, 0.35);
  transition: transform 0.3s cubic-bezier(0.6, 0, 0.2, 1), box-shadow 0.3s ease;
  margin-top: 6px;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(28, 93, 153, 0.5);
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 44px 0;
  background: var(--canvas);
  position: relative;
  z-index: 5;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
/* Status line */
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.4;
}
.footer-sep {
  color: var(--ink-tertiary);
}
.footer-status strong {
  color: var(--ink);
  font-weight: 600;
}
.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-text);
}
.status-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent-text);
  animation: status-pulse 2.4s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}
@keyframes status-pulse {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }
  70%,
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

.footer-copy {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-tertiary);
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  color: var(--ink-subtle);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--ink);
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
  .small-team .word > span {
    transform: none;
  }
}

/* SECTION SPACING */
#work {
  padding-top: 40px;
  padding-bottom: 56px;
}
#channels {
  padding-top: 72px;
  padding-bottom: 96px;
}
#contact {
  padding-top: 40px;
  padding-bottom: 140px;
}

/* GSAP entrance guard */
.is-entering {
  transition: none !important;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .positioning-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .work-intro {
    position: static;
  }
  .contact-box {
    grid-template-columns: 1fr;
    padding: 44px 32px;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .nav {
    padding: 16px 20px;
  }
  .nav-actions .nav-cta {
    display: none;
  }
  #work {
    padding-bottom: 48px;
  }
  #channels {
    padding-top: 40px;
    padding-bottom: 56px;
  }
  #contact {
    padding-bottom: 96px;
  }
  .drawer-links a {
    display: block;
    padding: 12px 0;
  }
  .hamburger {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -10px;
  }
  .drawer-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -10px;
  }

  .footer-inner {
    gap: 0;
  }
  .footer-links {
    order: -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
    width: 100%;
    margin-bottom: 28px;
  }
  .footer-links a {
    display: block;
    padding: 11px 0;
    font-size: 14px;
  }
  .footer-inner .logo {
    width: 100%;
    padding-top: 24px;
    border-top: 1px solid var(--hairline);
  }
  .footer-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 14px;
  }
  .footer-sep {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .hero {
    padding: 110px 16px 40px;
  }
  .small-team {
    font-size: 10.5vw;
  }
  .big-results {
    font-size: 26vw;
  }
  .cards-row {
    height: 220px;
    top: 38%;
  }
  .card-1 { width: 80px; height: 110px; left: 0%; top: 20px; }
  .card-2 { width: 90px; height: 130px; left: 10%; top: 35px; }
  .card-3 { width: 110px; height: 150px; left: 22%; top: 15px; }
  .card-4 { width: 90px; height: 120px; left: 36%; top: 50px; }
  .card-5 { width: 130px; height: 180px; left: 46%; top: 0; }
  .card-6 { width: 95px; height: 130px; left: 62%; top: 40px; }
  .card-7 { width: 100px; height: 140px; left: auto; right: 14%; top: 20px; }
  .card-8 { width: 80px; height: 110px; left: auto; right: 1%; top: 35px; }

  .big-results-wrap {
    margin-top: -24px;
  }

  .subline {
    margin-top: 280px;
  }
  .positioning-grid {
    grid-template-columns: 1fr;
  }
  .cards-stack {
    gap: 24px;
    padding-bottom: 4vh;
  }
  .stack-card {
    top: calc(84px + var(--i) * 26px);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 20px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
