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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --white: #ffffff;
  --black: #0a0a0a;
  --gray-50: #f7f7f5;
  --gray-100: #ebebea;
  --gray-300: #c4c4c0;
  --gray-500: #888780;
  --gray-700: #444441;
  --accent: #FFE944;
  --accent-light: #fffbe6;

  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 2.5rem;
  --sp-6: 3rem;
  --sp-8: 4rem;
  --sp-10: 5rem;
  --sp-12: 6rem;
  --sp-16: 8rem;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-pill: 50px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Inter Tight', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 700; }

p {
  line-height: 1.65;
  color: var(--gray-700);
}

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

/* ============================================================
   UTILITIES
   ============================================================ */
.section-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: var(--sp-2);
}
.section-label.light { color: rgba(255, 255, 255, 0.35); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  border-radius: var(--r-pill);
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.22s ease;
  border: none;
  text-decoration: none;
}

.btn--dark-fill {
  background: var(--accent);
  color: var(--black);
}
.btn--dark-fill:hover {
  background: #e6d100;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 233, 68, 0.5);
}

.btn--white {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.btn--white:hover {
  background: var(--accent);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 233, 68, 0.4);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--gray-300);
  color: var(--black);
}
.btn--outline:hover {
  border-color: var(--black);
  color: var(--black);
  background: var(--accent);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--gray-100);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.375rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 31px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav__links a:not(.btn) {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.2s;
}
.nav__links a:not(.btn):hover { color: var(--black); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 100vw);
  height: 100vh;
  background: var(--white);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
}
.drawer.open { right: 0; }

.drawer__logo {
  position: absolute;
  top: 1.75rem;
  left: 2.5rem;
  display: flex;
  align-items: center;
}
.drawer__logo-img {
  height: 26px;
  width: auto;
  display: block;
}

.drawer__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-500);
  line-height: 1;
}

.drawer__links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.drawer__link {
  font-family: 'Inter Tight', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  transition: color 0.2s;
}
.drawer__link:hover { color: var(--accent); }

.drawer__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 150;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.drawer__overlay.show { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--gray-50);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--sp-16);
  overflow: hidden;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--gray-100) 1px, transparent 1px),
    linear-gradient(90deg, var(--gray-100) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.55;
}

.hero__radial {
  position: absolute;
  top: -25%;
  right: -15%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(27, 79, 216, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-pill);
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-bottom: var(--sp-4);
}
.hero__tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__h1 {
  max-width: 12ch;
  margin-bottom: var(--sp-4);
}
.hero__h1 .accent {
  background: var(--accent);
  color: var(--black);
  padding: 0.04em 0.18em;
  border-radius: 6px;
  display: inline-block;
  line-height: 1.05;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--gray-500);
  max-width: 52ch;
  margin-bottom: var(--sp-8);
  font-weight: 400;
  line-height: 1.7;
}

.hero__stats {
  display: flex;
  align-items: stretch;
  margin-bottom: var(--sp-10);
}

.hero__stat {
  padding: 0 var(--sp-5);
  border-right: 1px solid var(--gray-300);
}
.hero__stat:first-child { padding-left: 0; }
.hero__stat:last-child { border-right: none; }

.hero__stat-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 0.3rem;
  font-weight: 400;
}

.hero__scroll {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero__scroll-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gray-300);
}
.hero__scroll-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ============================================================
   BRANDS STRIP
   ============================================================ */
.brands {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 1.375rem 0;
  overflow: hidden;
  position: relative;
}

.brands::before,
.brands::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.brands::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.brands::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.brands__track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.brands__track:hover { animation-play-state: paused; }

.brand-item {
  display: inline-block;
  padding: 0.5rem 2.25rem;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.3s;
  cursor: default;
  white-space: nowrap;
}
.brand-item:hover { color: var(--gray-700); }

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

/* ============================================================
   PROJECTS
   ============================================================ */
.projects {
  padding: var(--sp-16) 0 0;
}

.projects__header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  margin-bottom: var(--sp-8);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.projects__header h2 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: 'Inter Tight', sans-serif;
}
.projects__header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-100);
}

.project-card {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--sp-10) 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
  border-top: 1px solid var(--gray-100);
  transition: background 0.4s ease;
}
.project-card:hover { background: var(--gray-50); }

.project-card.reverse .project-info { order: 2; }
.project-card.reverse .project-visual { order: 1; }

.project-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--sp-2);
}
.project-index {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: 0.1em;
}
.project-divider {
  width: 16px;
  height: 1px;
  background: var(--gray-300);
}
.project-year {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.project-client {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.project-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: var(--sp-3);
}

.project-description {
  font-size: 0.925rem;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: var(--sp-4);
  max-width: 48ch;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: var(--sp-6);
}
.project-tag {
  padding: 0.28rem 0.75rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-700);
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--gray-100);
}

.project-stats {
  display: flex;
  gap: var(--sp-5);
}

.project-stat-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}
.project-stat-label {
  font-size: 0.72rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

.project-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200, #d8d8d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.22s;
  cursor: pointer;
  color: var(--gray-500);
  flex-shrink: 0;
}
.project-arrow:hover {
  border-color: currentColor;
  transform: translate(3px, -3px);
}

/* Project Visual */
.project-visual {
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.project-visual canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* ============================================================
   APPROACH
   ============================================================ */
.approach {
  padding: var(--sp-16) 0;
  background: var(--white);
}

.approach__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-12);
  align-items: start;
}

.approach__left h2 {
  margin-bottom: var(--sp-3);
}
.approach__left p {
  font-size: 1rem;
  max-width: 38ch;
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

.process-step {
  padding: var(--sp-4);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  transition: all 0.3s ease;
  cursor: default;
}
.process-step:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(27, 79, 216, 0.08);
}

.process-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.process-step:hover .process-num { color: var(--accent-light, #c8d8ff); }

.process-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.4rem;
}
.process-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: var(--sp-16) 0;
  background: var(--gray-50);
}

.services__header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  margin-bottom: var(--sp-8);
}

.services__grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  transition: all 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  transform: translateY(-3px);
  border-color: transparent;
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: var(--sp-3);
}

.service-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.service-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--sp-16) 0;
  background: var(--black);
  color: var(--white);
}

.about__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
}

.about__h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: var(--sp-6);
  line-height: 1.45;
  font-weight: 400;
}

.founder-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  margin-bottom: var(--sp-6);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

.founder-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  flex-shrink: 0;
}

.founder-info {}
.founder-name {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.founder-role {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 0.2rem;
  line-height: 1.5;
}
.founder-badges {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.6rem;
}
.founder-badge {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.value-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.value-title::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.value-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.65;
  padding-left: calc(6px + 0.6rem);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-bottom: var(--sp-6);
}

.client-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-sm);
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.client-item:hover {
  background: rgba(255,255,255,0.09);
  color: var(--white);
  border-color: rgba(255,255,255,0.15);
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.experience-item {
  padding: var(--sp-2) var(--sp-3);
  border-left: 2px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.65;
  transition: border-color 0.2s, color 0.2s;
}
.experience-item:hover {
  border-left-color: var(--accent);
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--sp-16) 0;
  background: var(--gray-50);
}

.contact__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.contact__h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: var(--sp-3);
  color: var(--black);
  line-height: 1.1;
}

.contact__sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  margin-bottom: var(--sp-6);
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  padding: var(--sp-4) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__brand {
  display: flex;
  align-items: center;
}
.footer__logo-img {
  height: 22px;
  width: auto;
  display: block;
  opacity: 0.85;
}
.footer__copy {
  font-size: 0.78rem;
  color: var(--gray-700);
}
.footer__location {
  font-size: 0.78rem;
  color: var(--gray-700);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.fade-up:nth-child(1) { animation-delay: 0.05s; }
.fade-up:nth-child(2) { animation-delay: 0.2s; }
.fade-up:nth-child(3) { animation-delay: 0.35s; }
.fade-up:nth-child(4) { animation-delay: 0.5s; }
.fade-up:nth-child(5) { animation-delay: 0.65s; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .project-card { gap: var(--sp-8); }
  .approach__inner { grid-template-columns: 1fr; gap: var(--sp-6); }
  .approach__left p { max-width: none; }
  .about__inner { gap: var(--sp-8); }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --sp-16: 5rem;
    --sp-12: 4rem;
    --sp-10: 3rem;
  }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero__stats { flex-wrap: wrap; }
  .hero__stat {
    border-right: none;
    padding: var(--sp-2) 0;
    width: 50%;
    border-bottom: 1px solid var(--gray-100);
  }
  .hero__stat:nth-child(odd) { padding-right: var(--sp-4); }

  .project-card {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
  .project-card .project-info { order: 2; }
  .project-card .project-visual { order: 1; aspect-ratio: 16/9; }
  .project-card.reverse .project-info { order: 2; }
  .project-card.reverse .project-visual { order: 1; }

  .services__grid { grid-template-columns: 1fr 1fr; }
  .about__inner { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: 1fr; }

  .footer__inner {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
    padding: 1.5rem 2rem;
  }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .nav__inner { padding: 1.1rem 1.25rem; }
  .hero__content { padding: 0 1.25rem; }
  .project-card { padding: var(--sp-8) 1.25rem; }
  .services__grid { grid-template-columns: 1fr; padding: 0 1.25rem; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .projects__header { padding: 0 1.25rem; }
  .about__inner { padding: 0 1.25rem; }
  .contact__inner { padding: 0 1.25rem; }
  .footer__inner { padding: 1.25rem; }
  .approach__inner { padding: 0 1.25rem; }
  .services__header { padding: 0 1.25rem; }
}
