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

@font-face {
  font-family: 'Akira Expanded';
  src: url('fonts/Akira Expanded Demo.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mont Heavy';
  src: url('fonts/Mont-HeavyDEMO.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg:         #f1f2f7;
  --bg-alt:     #e8e9ef;
  --card:       #ffffff;
  --hairline:   #d0d1d7;
  --hairline-strong: #b0b1b8;
  --black:      #000000;
  --text:       #111111;
  --body:       #444444;
  --muted:      #888888;
  --accent:     #000000;
  --white:      #ffffff;
  --font-display: 'Akira Expanded', sans-serif;
  --font-body:    'Mont Heavy', sans-serif;
  --font-mono:    'Mont Heavy', sans-serif;
  --section: 120px;
}

html { scroll-behavior: smooth; }

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

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

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

/* ── Buttons ──────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: 14px 36px;
  border-radius: 9999px;
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: #333; transform: translateY(-2px); }
.btn-primary--large { font-size: 13px; padding: 18px 48px; }

.btn-ghost {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black);
  border: 1.5px solid var(--black);
  padding: 14px 36px;
  border-radius: 9999px;
  transition: background .2s, color .2s, transform .2s;
}
.btn-ghost:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }

/* ── Nav ──────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: rgba(241,242,247,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
  transition: background .3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img { height: 34px; width: auto; }

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--black);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  transition: color .2s;
}
.nav-link:hover, .nav-link.active { color: var(--black); }

.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--white);
  background: var(--black);
  padding: 10px 24px;
  border-radius: 9999px;
  transition: background .2s;
}
.nav-cta:hover { background: #333; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all .3s;
}

/* ── Mobile Menu ──────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-link {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--black);
  transition: opacity .2s;
}
.mobile-link:hover { opacity: .5; }
.mobile-link--cta {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--white);
  background: var(--black);
  padding: 14px 36px;
  border-radius: 9999px;
}
.mobile-link--cta:hover { opacity: .7; }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 40px 80px;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-logo-full {
  width: clamp(380px, 96vw, 1440px);
  height: auto;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.hero-divider {
  width: 40px;
  height: 1.5px;
  background: var(--black);
  margin: 0 auto 32px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.55s forwards;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(10px, 1.2vw, 15px);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--body);
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto 48px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.55s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.8s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.7s ease 1.1s forwards;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--black), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .2; }
}

.hero-scroll-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--muted);
}

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

/* ── Clients Strip ────────────────────────────────────────────── */
.clients-section {
  padding: 64px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.clients-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--black);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}

.clients-strip {
  overflow-x: hidden;
  overflow-y: visible;
}

.clients-strip-track {
  display: flex;
  align-items: center;
  gap: 72px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  padding: 16px 0;
}

.client-logo {
  width: 200px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
  transition: transform .25s ease;
}
.client-logo:hover { transform: scale(1.12); }

.client-logo-placeholder {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border: 1px dashed var(--hairline-strong);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--muted);
  white-space: nowrap;
}

.hide-desktop { display: none; }

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

/* ── Section Shared ───────────────────────────────────────────── */
.section { padding: var(--section) 0; }

.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
}

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

.section-header--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

/* ── Services Overview ────────────────────────────────────────── */
.services-overview { background: var(--bg-alt); }

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

.service-card {
  position: relative;
  background: var(--card);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  transition: background .2s, box-shadow .2s;
}
.service-card:hover { background: var(--bg-alt); box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.service-card:hover .service-card-arrow { color: var(--black); transform: translate(4px, -4px); }

.service-card-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
  flex: 1;
  color: var(--black);
}

.service-card-body {
  font-size: 14px;
  color: var(--body);
  line-height: 1.75;
}

.service-card-arrow {
  font-size: 18px;
  color: var(--hairline-strong);
  transition: color .2s, transform .2s;
  align-self: flex-end;
}

.services-overview-cta { margin-top: 56px; text-align: center; }

/* ── Work Preview ─────────────────────────────────────────────── */
.work-preview { background: var(--bg); }

.work-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 16px;
}

.work-col-right { display: flex; flex-direction: column; gap: 16px; }

.work-card { display: block; overflow: hidden; }
.work-card:hover .work-card-img { transform: scale(1.03); }

.work-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  transition: transform .4s ease;
}

.work-col-right .work-card-img { aspect-ratio: 16/9; }

.work-card-img--placeholder {
  background: var(--card);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-placeholder-inner {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
}

.work-card-info {
  padding: 16px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.work-card-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
}

.work-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--black);
}

/* ── Stats ────────────────────────────────────────────────────── */
.stats-band {
  padding: 80px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--bg);
}

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

.stat {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid var(--hairline);
}
.stat:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--black);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
}

/* ── CTA Band ─────────────────────────────────────────────────── */
.cta-band {
  padding: var(--section) 0;
  text-align: center;
  background: var(--bg-alt);
  border-top: 1px solid var(--hairline);
}

.cta-band-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 48px;
}

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 64px;
}

.footer-logo { height: 52px; width: auto; margin-bottom: 24px; }

.footer-tagline { font-size: 14px; color: var(--body); line-height: 1.7; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
  margin-bottom: 20px;
}

.footer-link {
  display: block;
  font-size: 14px;
  color: var(--body);
  margin-bottom: 12px;
  transition: color .2s;
}
.footer-link:hover { color: var(--black); }

.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--muted);
}

/* ── Page Hero ────────────────────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--bg);
  border-bottom: 1px solid var(--hairline);
}

.page-hero-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
  margin-bottom: 20px;
}

.page-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
}

.page-hero-sub {
  margin-top: 28px;
  font-size: 18px;
  color: var(--body);
  max-width: 560px;
  line-height: 1.75;
}

/* ── Service Blocks ───────────────────────────────────────────── */
.service-block {
  padding: var(--section) 0;
  border-bottom: 1px solid var(--hairline);
}
.service-block:nth-child(even) { background: var(--bg-alt); }
.service-block:nth-child(odd)  { background: var(--bg); }

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

.service-block-inner--reverse { direction: rtl; }
.service-block-inner--reverse > * { direction: ltr; }

.service-block-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
  margin-bottom: 16px;
}

.service-block-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 24px;
}

.service-block-body {
  font-size: 16px;
  color: var(--body);
  line-height: 1.85;
  margin-bottom: 32px;
}

.service-block-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.service-block-list li {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--body);
  padding-left: 20px;
  position: relative;
}

.service-block-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--black);
}

.service-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 16px;
}

.service-visual-placeholder {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
}

/* ── Portfolio ────────────────────────────────────────────────── */
.portfolio-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--black);
  border: 1px solid var(--black);
  background: none;
  padding: 10px 20px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover, .filter-btn.active {
  color: var(--white);
  border-color: var(--black);
  background: var(--black);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 80px;
}

.portfolio-item {
  background: var(--card);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  transition: box-shadow .2s;
}
.portfolio-item:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }

.portfolio-item-img {
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  overflow: hidden;
  transition: transform .4s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px 12px 0 0;
}

.portfolio-item:hover .portfolio-item-img { transform: scale(1.04); }

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }

.portfolio-item-overlay-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--white);
}

.portfolio-item-info {
  padding: 20px;
  border-top: 1px solid var(--hairline);
}

.portfolio-item-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 6px;
}

.portfolio-item-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--black);
}

/* ── About ────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: var(--section) 0;
}

.about-photo {
  aspect-ratio: 3/4;
  background: var(--card);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 100px;
}

.about-photo-placeholder {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
}

.about-intro {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
  color: var(--black);
}

.about-body {
  font-size: 16px;
  color: var(--body);
  line-height: 1.85;
  margin-bottom: 24px;
}

.about-skills {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-skill-item {
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--hairline);
}

.about-skill-name {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--black);
  margin-bottom: 8px;
}

.about-skill-desc { font-size: 13px; color: var(--body); line-height: 1.6; }

/* ── Contact ──────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: var(--section) 0;
  align-items: start;
}

.contact-info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
  margin-bottom: 20px;
}

.contact-info-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 32px;
}

.contact-info-body { font-size: 16px; color: var(--body); line-height: 1.8; margin-bottom: 48px; }

.contact-detail { display: flex; flex-direction: column; gap: 20px; margin-bottom: 48px; }

.contact-detail-item { display: flex; flex-direction: column; gap: 4px; }

.contact-detail-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
}

.contact-detail-value { font-size: 15px; color: var(--text); }

.contact-form { display: flex; flex-direction: column; gap: 32px; }

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

.form-group--row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.form-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--black);
}

.form-input, .form-select, .form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--black);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 0;
  outline: none;
  width: 100%;
  transition: border-color .2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus { border-bottom-color: var(--black); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); opacity: 1; }
.form-select { color: var(--black); cursor: pointer; }
.form-select option { background: var(--bg); color: var(--black); }
.form-textarea { resize: none; height: 120px; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat:nth-child(2), .stat:nth-child(4) { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .service-block-inner { grid-template-columns: 1fr; gap: 48px; }
  .service-block-inner--reverse { direction: ltr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { position: static; aspect-ratio: 3/4; }
  .contact-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section: 80px; }
  .container { padding: 0 24px; }
  .hide-mobile { display: none !important; }
  .hide-desktop { display: block; }
  .clients-section { padding: 32px 0; }
  .clients-strip-track { gap: 25px; animation-duration: 15s; }
  .client-logo { width: 150px; height: 62px; }
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero { padding: 100px 24px 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-col-right { display: contents; }
  .stats-band { padding: 48px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat { padding: 28px 16px; border: none; }
  .stat-num { font-size: 44px; }
  .stat-label { font-size: 9px; letter-spacing: 2px; }
  .section-header--row { flex-direction: column; align-items: flex-start; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-logo-full { width: 100vw; }
  .footer { padding: 40px 0 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-logo { height: 36px; margin-bottom: 12px; }
  .footer-tagline { font-size: 12px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .footer-col-label { font-size: 9px; letter-spacing: 2px; margin-bottom: 12px; }
  .footer-link { font-size: 11px; margin-bottom: 8px; }
  .footer-bottom-inner { flex-direction: column; gap: 4px; text-align: center; }
  .footer-copy { font-size: 9px; }
  .about-skills { grid-template-columns: 1fr; }
  .form-group--row { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .project-gallery { padding: 40px 0; }
  .project-media-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 4px; }
  .project-media-item--video,
  .project-media-item--full { grid-column: 1; }
  .project-media-item { border-radius: 8px; border: none; }
  .project-media-item--video { aspect-ratio: 9 / 16; width: 100%; }
}

/* ── Project Pages ────────────────────────────────────────────── */
.project-hero {
  padding: 140px 0 64px;
  border-bottom: 1px solid var(--hairline);
  background: var(--bg);
}

.project-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 32px;
  transition: color .2s;
}
.project-back:hover { color: var(--black); }

.project-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.project-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.0;
}

.project-gallery {
  padding: var(--section) 0;
  background: var(--bg);
}

.project-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.project-media-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--bg-alt);
}

.project-media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-media-item--video {
  aspect-ratio: 9 / 16;
  display: flex;
  flex-direction: column;
}

.project-media-item--video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.project-media-item--full {
  grid-column: 1 / -1;
}

.project-media-item--full img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.project-add-note {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  border: 1.5px dashed var(--hairline-strong);
  border-radius: 12px;
  grid-column: 1 / -1;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .project-gallery { padding: 24px 0; }
  .project-gallery .container { padding: 0 12px; }
  .project-media-grid { grid-template-columns: 1fr; gap: 12px; padding: 0; }
  .project-media-item { border-radius: 8px; border: none; }
  .project-media-item--video { aspect-ratio: 9 / 16; width: 100%; }
  .project-media-item--video video { width: 100%; height: 100%; object-fit: cover; }
  .project-media-item img { width: 100%; height: auto; }
}
