/* ===========================================================
   NEUDECOR — shared styles
   Dark, minimal, high-end painter.
   Type: Bebas Neue (display) + Archivo (body), matches logo.
   =========================================================== */

:root {
  --bg:          #1c1c1c;
  --bg-2:        #222222;
  --bg-3:        #292929;
  --line:        rgba(255,255,255,0.09);
  --line-2:      rgba(255,255,255,0.18);
  --rule:        rgba(255,255,255,0.32);
  --ink:         #f5f4f1;
  --ink-dim:     rgba(245,244,241,0.62);
  --ink-mute:    rgba(245,244,241,0.42);
  --accent:      #c8a96a;   /* warm brass — used sparingly */
  --max:         1320px;
  --gutter:      48px;
  --gutter-sm:   24px;
}

* , *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Archivo', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ---------- type ---------- */

.display {
  font-family: 'Bebas Neue', 'Archivo Narrow', sans-serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.92;
  text-transform: uppercase;
}

.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.eyebrow-rule {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.eyebrow-rule::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--rule);
}

.lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 56ch;
}

p { margin: 0 0 1.1em 0; }

/* ---------- shell ---------- */

.shell {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 88px 0;
  position: relative;
}
.section + .section { border-top: 1px solid var(--line); }
.section--tight { padding: 64px 0; }
.section--dark { background: #121212; }

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  background: rgba(28,28,28,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.32em;
  color: var(--ink);
}
.nav__brand sup {
  font-family: 'Archivo', sans-serif;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  vertical-align: 10px;
  margin-left: 4px;
  font-weight: 500;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav__link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color .2s ease;
  position: relative;
}
.nav__link:hover { color: var(--ink); }
.nav__link[aria-current="page"] { color: var(--ink); }
.nav__link[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 1px;
  background: var(--accent);
}
.nav__cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--line-2);
  color: var(--ink);
  transition: background .2s ease, border-color .2s ease;
}
.nav__cta:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 16px 26px;
  border: 1px solid var(--line-2);
  color: var(--ink);
  cursor: pointer;
  background: transparent;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn--solid { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn--solid:hover { background: transparent; color: var(--ink); }
.btn__arrow {
  width: 14px; height: 1px;
  background: currentColor;
  position: relative;
}
.btn__arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.78) contrast(1.05);
}
.hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28,28,28,0.55) 0%, rgba(28,28,28,0) 35%, rgba(28,28,28,0) 55%, rgba(28,28,28,0.88) 100%),
    linear-gradient(90deg, rgba(28,28,28,0.45) 0%, rgba(28,28,28,0) 40%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 var(--gutter) 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
}
.hero__headline {
  font-size: clamp(56px, 8.2vw, 132px);
  max-width: 14ch;
}
.hero__meta {
  text-align: right;
  color: var(--ink-dim);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1.9;
}
.hero__eyebrow {
  position: absolute;
  top: 36px;
  left: var(--gutter);
  z-index: 1;
}
.hero__corner {
  position: absolute;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.hero__corner--tr { top: 36px; right: var(--gutter); }
.hero__corner--br { bottom: 36px; right: var(--gutter); }

.hero__ctarow {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

/* ---------- generic grid utilities ---------- */

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

/* ---------- section header ---------- */

.s-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 48px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.s-head__title {
  font-size: clamp(40px, 5vw, 72px);
}
.s-head__sub {
  color: var(--ink-dim);
  font-size: 16px;
  max-width: 48ch;
}

/* ---------- services ---------- */

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 96px;
  align-items: start;
}
.services-intro {
  position: sticky;
  top: 96px;
}
.services-intro__title {
  font-size: clamp(40px, 5vw, 72px);
  margin: 0;
}
.services-intro__sub {
  margin-top: 28px;
  color: var(--ink-dim);
  font-size: 16px;
  max-width: 42ch;
}

.service {
  position: relative;
  padding: 26px 0 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 56px 1fr 32px;
  gap: 28px;
  align-items: start;
  transition: padding .25s ease, background .25s ease;
}
.service:last-child { border-bottom: 1px solid var(--line); }
.service:hover { padding-left: 16px; padding-right: 16px; background: rgba(255,255,255,0.015); }
.service__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
}
.service__body { display: flex; flex-direction: column; gap: 12px; }
.service__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.service__desc {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.65;
  max-width: 48ch;
}
.service__arrow {
  align-self: center;
  font-size: 18px;
  color: var(--ink-mute);
  transition: color .2s ease, transform .25s ease;
}
.service:hover .service__arrow { color: var(--ink); transform: translateX(6px); }

/* ---------- project cards ---------- */

.proj {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
}
.proj img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s ease;
  filter: brightness(0.85);
}
.proj:hover img { transform: scale(1.04); }
.proj__cap {
  position: absolute;
  left: 24px; right: 24px; bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.proj__cap::before {
  content: '';
  position: absolute;
  left: -24px; right: -24px; bottom: -22px;
  height: 60%;
  background: linear-gradient(180deg, rgba(28,28,28,0) 0%, rgba(28,28,28,0.9) 100%);
  z-index: -1;
}
.proj__cap-l { display: flex; flex-direction: column; gap: 4px; }
.proj__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 1.05;
}
.proj__loc {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.proj__tag {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--line-2);
  padding: 6px 10px;
}

/* ---------- process ---------- */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.process__step {
  background: #121212;
  padding: 30px 26px 32px;
  min-height: 220px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.process__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.process__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.process__desc {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.7;
  margin-top: auto;
}

/* ---------- founder ---------- */

.founder {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.founder__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.founder__photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.92) contrast(1.02); }
.founder__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 18px 0 8px;
}
.founder__role {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
}
.founder__body { color: var(--ink-dim); font-size: 16px; line-height: 1.75; max-width: 50ch; }
.founder__sig {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.02em;
  margin-top: 36px;
  color: var(--ink);
  font-style: italic;
  transform: skew(-8deg);
  display: inline-block;
}

/* ---------- testimonials ---------- */

.testi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.testi__media {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.testi__media img { width: 100%; height: 100%; object-fit: cover; }
.testi__body { padding: 0 24px; }
.testi__stars {
  color: var(--accent);
  letter-spacing: 0.4em;
  font-size: 14px;
  margin-bottom: 28px;
}
.testi__quote {
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
  max-width: 44ch;
  margin-bottom: 32px;
}
.testi__quote::before { content: '\201C'; font-family: 'Bebas Neue'; font-size: 56px; line-height: 0; vertical-align: -18px; color: var(--accent); margin-right: 6px; }
.testi__by {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
}
.testi__loc {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 2px;
}
.testi__nav {
  display: flex;
  gap: 8px;
  margin-top: 36px;
}
.testi__nav button {
  width: 44px; height: 44px;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.testi__nav button:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ---------- CTA banner ---------- */

.cta {
  position: relative;
  min-height: 44vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55) contrast(1.05); }
.cta__media::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% 50%, rgba(28,28,28,0) 0%, rgba(28,28,28,0.6) 80%);
}
.cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 48px var(--gutter);
}
.cta__title {
  font-size: clamp(40px, 6vw, 88px);
  max-width: 18ch;
}

/* ---------- footer ---------- */

.foot {
  padding: 64px var(--gutter) 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  border-top: 1px solid var(--line);
  background: #121212;
}
.foot__brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.3em;
}
.foot__brand sup {
  font-family: 'Archivo', sans-serif;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  vertical-align: 12px;
  margin-left: 6px;
  font-weight: 500;
}
.foot__tag {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-mute);
  max-width: 32ch;
  line-height: 1.6;
}
.foot__col h4 {
  margin: 0 0 22px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.foot__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.foot__col li { font-size: 13px; color: var(--ink-dim); }
.foot__col a:hover { color: var(--ink); }

.foot__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  margin-top: 44px;
  padding-top: 22px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- contact ---------- */

.contact-hero {
  padding: 220px var(--gutter) 96px;
  border-bottom: 1px solid var(--line);
}
.contact-hero__title {
  font-size: clamp(72px, 11vw, 180px);
  line-height: 0.9;
  margin-bottom: 24px;
}
.contact-hero__sub {
  max-width: 56ch;
  color: var(--ink-dim);
  font-size: 18px;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 96px;
}
.contact-info { display: flex; flex-direction: column; gap: 48px; }
.contact-info__block h4 {
  margin: 0 0 12px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.contact-info__block p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin: 0;
}
.contact-info__block .small {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-dim);
  line-height: 1.65;
  margin-top: 8px;
}

.form { display: flex; flex-direction: column; gap: 26px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.field input, .field select, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  padding: 12px 0;
  color: var(--ink);
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color .2s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.field select option { background: var(--bg); color: var(--ink); }

/* ---------- work page ---------- */

.work-hero {
  padding: 200px var(--gutter) 80px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}
.work-hero__title { font-size: clamp(72px, 10vw, 160px); line-height: 0.9; }
.work-hero__meta { color: var(--ink-dim); font-size: 15px; line-height: 1.7; max-width: 48ch; }

.work-filter {
  display: flex;
  gap: 8px;
  padding: 28px var(--gutter);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.work-filter__btn {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 8px 16px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all .2s ease;
}
.work-filter__btn:hover { color: var(--ink); }
.work-filter__btn.active { color: var(--ink); border-color: var(--line-2); }
.work-filter__count {
  margin-left: auto;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  align-self: center;
}

.work-grid {
  padding: 64px var(--gutter) 140px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.work-card { position: relative; overflow: hidden; background: var(--bg-2); border: 1px solid var(--line); }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; filter: brightness(0.88); }
.work-card:hover img { transform: scale(1.04); }
.work-card .proj__cap { left: 28px; right: 28px; bottom: 26px; }
.work-card--6 { grid-column: span 6; aspect-ratio: 4 / 3; }
.work-card--4 { grid-column: span 4; aspect-ratio: 3 / 4; }
.work-card--8 { grid-column: span 8; aspect-ratio: 16 / 10; }
.work-card--12 { grid-column: span 12; aspect-ratio: 21 / 9; }

/* ---------- featurelets ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats__cell {
  padding: 56px 32px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stats__cell:last-child { border-right: 0; }
.stats__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  letter-spacing: 0.01em;
  line-height: 1;
}
.stats__num sup {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  vertical-align: 38px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  margin-left: 4px;
  font-weight: 500;
}
.stats__label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- testimonial marquee ---------- */

.tmarquee {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #121212;
  padding: 20px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.tmarquee__track {
  display: flex;
  width: max-content;
  animation: tmarquee-scroll 60s linear infinite;
}
.tmarquee:hover .tmarquee__track { animation-play-state: paused; }
.tmarquee__row {
  display: flex;
  gap: 18px;
  align-items: stretch;
  padding-right: 18px;
}
@keyframes tmarquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.tcard {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 380px;
  flex: 0 0 auto;
  padding: 14px 18px 14px 14px;
  border: 1px solid var(--line);
  background: #1a1a1a;
}
.tcard__img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  flex: 0 0 64px;
  filter: brightness(0.92);
}
.tcard__body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.tcard__stars { color: var(--accent); font-size: 11px; letter-spacing: 0.18em; line-height: 1; }
.tcard__quote {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tcard__by {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 2px;
}
.tcard__by span { color: var(--ink-mute); }

@media (prefers-reduced-motion: reduce) {
  .tmarquee__track { animation: none; }
}

/* ---------- scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal--right { transform: translateX(60px); }
.reveal--in {
  opacity: 1;
  transform: translateX(0);
}

.hero-fade {
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-fade.is-in { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-fade { opacity: 1; transform: none; transition: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  :root { --gutter: 24px; }
  .nav__links { gap: 22px; }
  .nav__link { display: none; }
  .nav__cta { display: inline-block; }
  .grid-2, .founder, .testi, .contact-grid, .work-hero, .services-layout { grid-template-columns: 1fr; gap: 40px; }
  .services-intro { position: static; }
  .grid-3, .grid-4, .process, .stats { grid-template-columns: repeat(2, 1fr); }
  .work-card--6, .work-card--4, .work-card--8, .work-card--12 { grid-column: span 12; }
  .foot { grid-template-columns: 1fr 1fr; }
  .hero__inner { grid-template-columns: 1fr; }
  .s-head { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 56px 0; }
}
