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

:root {
  --bg:        #f5f3ef;
  --bg-2:      #eceae5;
  --bg-3:      #ffffff;
  --border:    rgba(0,0,0,0.09);
  --text:      #1c1917;
  --text-muted:#7a746d;
  --accent:    #b8852a;
  --accent-dim:rgba(184,133,42,0.1);
  --white:     #ffffff;
  --radius:    4px;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-h:     72px;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Typography ===== */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-header {
  margin-bottom: 60px;
}

.section-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 12px;
}
.section-note__link {
  color: var(--accent);
  transition: opacity 0.2s;
}
.section-note__link:hover { opacity: 0.75; }

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero elements animate in immediately — no IntersectionObserver needed */
.hero .reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 0.9s var(--ease) forwards;
}
.hero__content .reveal:nth-child(1) { animation-delay: 0.3s; }
.hero__content .reveal:nth-child(2) { animation-delay: 0.45s; }
.hero__content .reveal:nth-child(3) { animation-delay: 0.6s; }
.hero__content .reveal:nth-child(4) { animation-delay: 0.75s; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.25s var(--ease);
}

.btn--primary {
  background: var(--text);
  color: var(--white);
}
.btn--primary:hover {
  background: #3a3530;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(28,25,23,0.18);
}

.btn--ghost {
  border: 1px solid var(--border);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: rgba(0,0,0,0.25);
  background: rgba(0,0,0,0.04);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s ease, border-bottom 0.4s ease;
}

/* Transparent over hero video */
.nav:not(.scrolled) .nav__logo { color: #ffffff; }
.nav:not(.scrolled) .nav__link { color: rgba(255,255,255,0.7); }
.nav:not(.scrolled) .nav__link:hover { color: #ffffff; }
.nav:not(.scrolled) .nav__link--cta {
  border-color: rgba(255,255,255,0.3);
  color: #ffffff;
}
.nav:not(.scrolled) .nav__link--cta:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}
.nav:not(.scrolled) .nav__toggle span { background: #ffffff; }

.nav.scrolled {
  background: rgba(245,243,239,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--text); }

.nav__link--cta {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: all 0.25s;
}
.nav__link--cta:hover {
  border-color: var(--text);
  color: var(--text);
  background: rgba(0,0,0,0.05);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

/* Mobile nav on light theme */
.nav__links.open {
  background: rgba(245,243,239,0.97) !important;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 24px 80px;
  overflow: hidden;
}

/* Video background */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #1a1714 url('images/hero-bg.jpg') center/cover no-repeat;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(8,6,4,0.88) 0%, rgba(8,6,4,0.25) 55%, rgba(8,6,4,0.1) 100%),
    linear-gradient(to right, rgba(8,6,4,0.45) 0%, transparent 65%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 8px;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.hero__title-line { display: block; }
.hero__title-line--accent { color: var(--accent); }

.hero__sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero-specific buttons (white on dark video) */
.btn--hero-primary {
  background: #ffffff;
  color: #1c1917;
}
.btn--hero-primary:hover {
  background: rgba(255,255,255,0.88);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.btn--hero-ghost {
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
}
.btn--hero-ghost:hover {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  right: 40px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ===== Reel ===== */
.reel {
  padding: 80px 0;
}

.reel__wrapper {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.reel__placeholder {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #e8e4de;
  background-image:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(184,133,42,0.07), transparent);
  cursor: pointer;
  overflow: hidden;
}

.reel__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.015) 25%, transparent 25%) -10px 0,
    linear-gradient(225deg, rgba(0,0,0,0.015) 25%, transparent 25%) -10px 0,
    linear-gradient(315deg, rgba(0,0,0,0.015) 25%, transparent 25%),
    linear-gradient(45deg,  rgba(0,0,0,0.015) 25%, transparent 25%);
  background-size: 20px 20px;
  background-color: transparent;
}

.reel__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--text);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  z-index: 2;
}
.reel__play svg { width: 22px; height: 22px; margin-left: 3px; }
.reel__play:hover {
  transform: translate(-50%, -60%) scale(1.1);
  box-shadow: 0 0 40px rgba(28,25,23,0.2);
}

.reel__label {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
}

/* ===== Work ===== */
.work {
  padding: 100px 0;
  background: var(--bg-2);
}

.work__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.filter-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }
.filter-btn--active {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work-card {
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.12);
}

.work-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.work-card__thumb {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease);
}
.work-card:hover .work-card__thumb { transform: scale(1.05); }

.work-card__thumb--1 { background: linear-gradient(135deg, #c8d8e8 0%, #a0bcd4 50%, #7aa0be 100%); }
.work-card__thumb--2 { background: linear-gradient(135deg, #e8d4c0 0%, #d4b090 50%, #c49060 100%); }
.work-card__thumb--3 { background: linear-gradient(135deg, #c4d8c4 0%, #98bc98 50%, #78a878 100%); }
.work-card__thumb--4 { background: linear-gradient(135deg, #d8c4d8 0%, #bc98bc 50%, #a878a8 100%); }
.work-card__thumb--5 { background: linear-gradient(135deg, #e0dcc0 0%, #ccc898 50%, #bcb870 100%); }
.work-card__thumb--6 { background: linear-gradient(135deg, #bcd8d8 0%, #8cbcbc 50%, #6cacac 100%); }

.work-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.work-card:hover .work-card__overlay { opacity: 1; }

.work-card__play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding-left: 3px;
}

.work-card__info {
  padding: 20px;
}

.work-card__tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.work-card__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.work-card__meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.work-card--hidden { display: none; }

/* ===== About ===== */
.about {
  padding: 120px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__visual { position: relative; }

.about__portrait {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 6px;
  background: #d4cfc8;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.about__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about__stat-block {
  display: flex;
  gap: 0;
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.about__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 20px 12px;
  border-right: 1px solid var(--border);
  background: var(--white);
}
.about__stat:last-child { border-right: none; }

.about__stat-num {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  white-space: nowrap;
}

.about__stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
}

.about__text {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.0rem;
  line-height: 1.75;
}

.about__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  margin-top: 28px;
}

.about__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tool-tag {
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ===== Behind the Work ===== */
.btw {
  padding: 100px 0;
  position: relative;
  background: var(--btw-bg, var(--bg-3)) center/cover no-repeat;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.btw::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245,243,239,0.88);
  backdrop-filter: blur(2px);
}

.btw .container { position: relative; z-index: 1; }

.btw__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.btw__title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 12px 0 16px;
}

.btw__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 520px;
}

@media (max-width: 768px) {
  .btw__inner { flex-direction: column; align-items: flex-start; }
}

/* ===== Services ===== */
.services {
  padding: 100px 0;
  background: var(--bg-2);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.service-card {
  padding: 40px 32px;
  background: var(--bg-2);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.service-card:hover { background: var(--white); }
.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-child(4), .service-card:nth-child(5), .service-card:nth-child(6) { border-bottom: none; }

.service-card__icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== Process ===== */
.process {
  padding: 120px 0;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 60px;
  right: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--accent), transparent);
  opacity: 0.3;
}

.process-step {
  padding: 0 24px;
  position: relative;
}

.process-step__num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184,133,42,0.3);
  border-radius: 50%;
  position: relative;
  background: var(--bg);
}

.process-step__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  margin-top: 20px;
}

.process-step__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== Clients ===== */
.clients {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients .section-header { margin-bottom: 40px; text-align: center; }

.clients__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.client-logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.15);
  padding: 16px 40px;
  letter-spacing: 0.02em;
  transition: color 0.3s;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.client-logo:last-child { border-right: none; }
.client-logo:hover { color: rgba(255,255,255,0.4); }

/* ===== Contact ===== */
.contact {
  padding: 120px 0;
  background: var(--bg-2);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__text {
  color: var(--text-muted);
  margin: 24px 0 36px;
  font-size: 1rem;
  line-height: 1.75;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
}

.contact__detail {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
a.contact__detail:hover { color: var(--accent); }

.contact__social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.25s;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

/* ===== Form ===== */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder { color: rgba(0,0,0,0.25); }
.form-input:focus {
  outline: none;
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(28,25,23,0.06);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
  color: var(--text);
}
.form-select option { background: var(--white); color: var(--text); }

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

/* ===== Footer ===== */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__logo {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__nav {
  display: flex;
  gap: 24px;
}
.footer__nav a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--text); }

/* ===== Mobile Nav ===== */
@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__links {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(245,243,239,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }
  .nav__links.open { display: flex; }
  .nav__link { font-size: 1.4rem; }
  .nav__link--cta { padding: 12px 32px; }

  .nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* ===== Tablet ===== */
@media (max-width: 1024px) {
  .work__grid { grid-template-columns: repeat(2, 1fr); }

  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card:nth-child(5), .service-card:nth-child(6) { border-bottom: none; }
  .service-card:nth-child(3), .service-card:nth-child(4) { border-bottom: 1px solid var(--border); }

  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process__steps::before { display: none; }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  /* Hero */
  .hero { padding: 0 20px 60px; }
  .hero__title { font-size: clamp(2.8rem, 11vw, 4.5rem); }
  .hero__scroll { display: none; }

  /* Section padding */
  .reel    { padding: 48px 0; }
  .work    { padding: 64px 0; }
  .about   { padding: 64px 0; }
  .services{ padding: 64px 0; }
  .process { padding: 64px 0; }
  .btw     { padding: 60px 0; }
  .contact { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }

  /* Work */
  .work__grid { grid-template-columns: 1fr; }

  /* About */
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__portrait { aspect-ratio: 4/3; }
  .about__actions { flex-direction: column; }
  .about__actions .btn { width: 100%; justify-content: center; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; padding: 28px 24px; }
  .service-card:nth-child(n) { border-bottom: 1px solid var(--border); }
  .service-card:last-child { border-bottom: none; }

  /* Process */
  .process__steps { grid-template-columns: 1fr; gap: 32px; }
  .process-step { padding: 0; }
  .process-step__num { margin-bottom: 12px; }
  .process-step__title { margin-top: 12px; }

  /* BTW */
  .btw__inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .btw__inner .btn { width: 100%; justify-content: center; }

  /* Contact */
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer__nav { gap: 16px; }
}

/* ===== Small mobile ===== */
@media (max-width: 480px) {
  .hero { padding: 0 16px 52px; }
  .hero__title { font-size: clamp(2.5rem, 12vw, 3.5rem); }
  .hero__actions { flex-direction: column; }
  .btn--hero-primary,
  .btn--hero-ghost { width: 100%; justify-content: center; }

  .about__stat { padding: 14px 8px; }
  .about__stat-num { font-size: 0.85rem; }

  .work__filters { gap: 6px; }
  .filter-btn { padding: 7px 14px; font-size: 0.75rem; }

  .container { padding: 0 16px; }
}
