/* --- Logo font --- */
@font-face {
  font-family: 'PP Nikkei Pacific';
  src: url('../fonts/PPNikkeiPacific-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

:root {
  color-scheme: light;
  --white:    #ffffff;
  --off:      #f7f8fa;
  --off2:     #f0f1f4;
  --black:    #0a0a0a;
  --ink:      #111111;
  --sub:      #555555;
  --muted:    #888888;
  --border:   #e5e5e5;
  --border2:  #d1d1d1;
  --shadow-s: 0 1px 4px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
  --shadow:   0 4px 20px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  --shadow-l: 0 8px 40px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
  --r:        10px;
  --r-lg:     18px;
  --r-pill:   100px;
  --nav-h:    74px;
  --max:      1160px;
  --py:       110px;
  --font-h:   'Anton', system-ui, sans-serif;
  --font-b:   'DM Sans', system-ui, sans-serif;
  --ease:     cubic-bezier(.4,0,.2,1);
  --t:        .25s var(--ease);
}

/* ── Dark Mode ── */
[data-theme="dark"] {
  color-scheme: dark;
  --white:    #1a1a1a;
  --off:      #222222;
  --off2:     #2a2a2a;
  --black:    #ffffff;
  --ink:      #f0f0f0;
  --sub:      #aaaaaa;
  --muted:    #777777;
  --border:   #333333;
  --border2:  #444444;
  --shadow-s: 0 1px 4px rgba(0,0,0,.2), 0 2px 8px rgba(0,0,0,.15);
  --shadow:   0 4px 20px rgba(0,0,0,.3), 0 1px 4px rgba(0,0,0,.15);
  --shadow-l: 0 8px 40px rgba(0,0,0,.4), 0 2px 8px rgba(0,0,0,.2);
}

/* Dark mode body is darker than cards for surface separation */
[data-theme="dark"] body { background: #111111; }

/* Already-dark sections: preserve dark appearance in dark mode */
[data-theme="dark"] .cta-band,
[data-theme="dark"] .footer,
[data-theme="dark"] .page-hero,
[data-theme="dark"] .testi,
[data-theme="dark"] .stats-hl,
[data-theme="dark"] .studio-hero,
[data-theme="dark"] .band-dark {
  --black: #0a0a0a;
  --ink:   #111111;
}

/* Dark mode: nav */
[data-theme="dark"] .nav {
  background: rgba(17, 17, 17, .92);
}
[data-theme="dark"] .nav__cta {
  background: #ffffff;
  color: #111111;
}

/* Dark mode: buttons with hardcoded #fff */
[data-theme="dark"] .btn--black { color: #111; }
[data-theme="dark"] .btn--outline:hover { color: #111; }
[data-theme="dark"] .pf-btn:hover,
[data-theme="dark"] .pf-btn.active { color: #111; }

/* Buttons inside always-dark sections stay unchanged */
[data-theme="dark"] .cta-band .btn--white,
[data-theme="dark"] .page-hero .btn--white,
[data-theme="dark"] .studio-hero .btn--white {
  background: #fff; color: #0a0a0a; border-color: #fff;
}
[data-theme="dark"] .cta-band .btn--white:hover,
[data-theme="dark"] .page-hero .btn--white:hover,
[data-theme="dark"] .studio-hero .btn--white:hover {
  background: transparent; color: #fff;
}
[data-theme="dark"] .cta-band .btn--white-out,
[data-theme="dark"] .page-hero .btn--white-out,
[data-theme="dark"] .studio-hero .btn--white-out {
  color: #fff; border-color: rgba(255,255,255,.35);
}

/* Dark mode: card hover icons */
[data-theme="dark"] .svc-card:hover .svc-card__icon svg { color: #111; }
[data-theme="dark"] .spec-card:hover .spec-card__ic svg { color: #111; }
/* Dark mode: A-Z timeline dot */
[data-theme="dark"] .az-timeline__step:hover .az-timeline__dot {
  box-shadow: 0 0 0 3px #fff, 0 4px 16px rgba(0,0,0,.3);
}

/* Dark mode: testimonial card avatar */
[data-theme="dark"] .testi-card__av { color: #111; }

/* Dark mode: work pagination hover */
[data-theme="dark"] .work-pg-btn:hover:not(:disabled) { color: #111; }

/* Dark mode: timeline dot */
[data-theme="dark"] .tl-item::before {
  background: #ffffff; border-color: #111111;
}

/* Dark mode: logo image filter */
[data-theme="dark"] .nav__logo-img { filter: invert(0); }

/* ── Theme Toggle ── */
.theme-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--off);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--t), border-color var(--t);
  flex-shrink: 0;
  position: relative;
}
.theme-toggle:hover {
  background: var(--off2);
  border-color: var(--border2);
}
.theme-toggle svg {
  width: 18px; height: 18px;
  color: var(--ink);
  position: absolute;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.theme-toggle__sun { opacity: 1; transform: rotate(0deg); }
.theme-toggle__moon { opacity: 0; transform: rotate(-90deg); }
[data-theme="dark"] .theme-toggle__sun { opacity: 0; transform: rotate(90deg); }
[data-theme="dark"] .theme-toggle__moon { opacity: 1; transform: rotate(0deg); }

/* Mobile toggle next to hamburger */
.theme-toggle--mobile {
  display: none;
  width: auto; height: auto;
  border-radius: var(--r-pill);
  padding: .45rem .85rem .45rem 2.1rem;
  gap: .4rem;
  position: relative;
  background: transparent;
  border: none;
  font-size: .8rem; font-weight: 600;
  color: var(--muted);
}
.theme-toggle--mobile:hover { background: var(--off); }
.theme-toggle--mobile svg { width: 15px; height: 15px; }
.theme-toggle--mobile .theme-toggle__sun,
.theme-toggle--mobile .theme-toggle__moon { position: absolute; left: .85rem; top: 50%; margin-top: -7.5px; }
.theme-toggle--mobile .toggle-label--dark { display: inline; }
.theme-toggle--mobile .toggle-label--light { display: none; }
[data-theme="dark"] .theme-toggle--mobile .toggle-label--dark { display: none; }
[data-theme="dark"] .theme-toggle--mobile .toggle-label--light { display: inline; }

/* ── Language Toggle ── */
.lang-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--off);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--t), border-color var(--t);
  flex-shrink: 0;
  font-family: var(--font-b); font-size: .7rem; font-weight: 700;
  color: var(--ink); letter-spacing: .03em; text-transform: uppercase;
}
.lang-toggle:hover { background: var(--off2); border-color: var(--border2); }
.lang-toggle--mobile { display: none; }

/* Language visibility */
[data-lang="fr"] .t-en { display: none !important; }
[data-lang="en"] .t-fr { display: none !important; }

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-b);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: var(--font-b); }

/* ── Typography ── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-h);
  letter-spacing: .02em;
  line-height: 1.1;
  color: var(--ink);
}
h1 { font-size: clamp(2rem,5.2vw,4rem); font-weight: 900; }
h2 { font-size: clamp(2rem,4vw,3.5rem);  font-weight: 800; }
h3 { font-size: clamp(1.15rem,2vw,1.5rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--sub); line-height: 1.75; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
  font-family: var(--font-b);
}
.eyebrow::before {
  content: ''; display: block;
  width: 18px; height: 2px; background: currentColor; flex-shrink: 0;
}

/* ── Layout ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.section  { padding: var(--py) 0; }
.section-sm { padding: 70px 0; }

/* ── Section header ── */
.sh { margin-bottom: 3.5rem; }
.sh h2 { margin: .65rem 0 1rem; }
.sh p  { font-size: 1.1rem; max-width: 520px; }
.sh--c { text-align: center; }
.sh--c p { margin-inline: auto; }

/* ── Divider ── */
hr.rule { border: none; border-top: 1px solid var(--border); }

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 300;
  height: var(--nav-h);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t);
}
.nav.scrolled { border-color: var(--border); box-shadow: var(--shadow-s); }

.nav__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center;
  gap: 1.25rem;
}
/* Hide the mobile toggle+hamburger wrapper on desktop */
.nav__inner > div:last-child { display: none; }

/* Logo */
.nav__logo {
  display: flex; align-items: baseline; gap: .35rem; flex-shrink: 0;
}
.nav__logo-img { height: 52px; width: auto; display: block; filter: invert(1); }
.nav__logo-word {
  font-family: 'PP Nikkei Pacific', var(--font-h); font-weight: 300;
  font-size: 1.75rem; letter-spacing: -.02em; color: var(--black);
  line-height: 1;
}
.nav__logo-sub {
  font-size: .6rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
  font-family: var(--font-b); line-height: 1;
}

/* Links */
.nav__links { display: flex; align-items: center; gap: 2.25rem; margin-left: auto; margin-right: auto; }
.nav__links a {
  font-size: .875rem; font-weight: 500; color: var(--sub);
  transition: color var(--t); white-space: nowrap;
}
.nav__links a:hover, .nav__links a.active { color: var(--black); }

/* CTA */
.nav__cta {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--black); color: #fff;
  padding: .6rem 1.4rem; border-radius: var(--r-pill);
  font-size: .875rem; font-weight: 600;
  transition: opacity var(--t); white-space: nowrap; flex-shrink: 0;
}
.nav__cta:hover { opacity: .78; }

/* Hamburger */
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; cursor: pointer;
}
.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--black); border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border2);
  padding: 2rem; flex-direction: column; gap: 1.5rem; align-items: center; text-align: center;
  z-index: 290;
}
.nav__mobile.open { display: flex; }
.nav__mobile a { font-size: 1.1rem; font-weight: 600; color: var(--ink); }
.nav__mobile a:hover { color: var(--black); }
.nav__mobile .btn { align-self: center !important; margin-top: .5rem; }
.nav__mobile a.btn--black { color: #fff; }
[data-theme="dark"] .nav__mobile a.btn--black { color: #111; }

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.85rem; border-radius: var(--r-pill);
  font-size: .9rem; font-weight: 700;
  transition: all var(--t); white-space: nowrap;
  font-family: var(--font-b);
}
.btn--black   { background: var(--black); color: #fff; border: 2px solid var(--black); }
.btn--black:hover { opacity: .82; }
.btn--outline { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn--outline:hover { background: var(--black); color: #fff; }
.btn--white   { background: #fff; color: var(--black); border: 2px solid #fff; }
.btn--white:hover { background: transparent; color: #fff; }
.btn--white-out { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.35); }
.btn--white-out:hover { border-color: #fff; }
.btn--ghost   { background: transparent; color: var(--sub); border: 2px solid transparent; }
.btn--ghost:hover { color: var(--black); }
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ─────────────────────────────────────────────
   HERO  (full-screen dark)
───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--off);
  display: flex; flex-direction: column;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
}
[data-theme="dark"] .hero { background: #0a0a0a; }

/* hero background video */
.hero__bg-video {
  position: absolute; top: 50%; left: 50%;
  width: 177.78vh; /* 16:9 = 100vh × 16/9 */
  min-width: 100%; min-height: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover; pointer-events: none; z-index: 0;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: rgba(0, 0, 0, .75);
}

.hero__content {
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  position: relative; z-index: 1;
  padding-top: 80px;
  padding-bottom: 50px;
}

.hero__eyebrow { margin-bottom: 2rem; }
.hero__eyebrow .eyebrow { color: rgba(255,255,255,.6); }
.hero__eyebrow .eyebrow::before { background: rgba(255,255,255,.3); }

.hero h1 {
  color: #fff; margin-bottom: 1.75rem; max-width: 960px;
}
.hero h1 em { font-style: normal; }

.hero__desc {
  font-size: 1.15rem; color: rgba(255,255,255,.7);
  max-width: 460px; margin-bottom: 2.5rem;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* Hero buttons — adapt to theme */
.hero .btn--white {
  background: #fff; color: #0a0a0a; border-color: #fff;
}
.hero .btn--white:hover {
  background: transparent; color: #fff;
}
.hero .btn--white-out {
  color: #fff; border-color: rgba(255,255,255,.3);
}

/* Stats bar */
.hero__bar {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,.15);
  display: grid; grid-template-columns: repeat(4,1fr);
}
.hero__bar-item {
  padding: 2rem 2.5rem; border-right: 1px solid rgba(255,255,255,.15);
}
.hero__bar-item:first-child { padding-left: 0; }
.hero__bar-item:last-child  { border-right: none; }
.hero__bar-num {
  font-family: var(--font-h); font-weight: 900;
  font-size: 2.5rem; letter-spacing: .01em;
  color: #fff; line-height: 1;
}
.hero__bar-label {
  font-size: .82rem; color: rgba(255,255,255,.5);
  margin-top: .35rem;
}

/* ─────────────────────────────────────────────
   SECTION BANDS
───────────────────────────────────────────── */
.band { background: var(--off); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.band-dark { background: var(--black); }

/* ─────────────────────────────────────────────
   SERVICE CARDS
───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.25rem;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
  display: flex; flex-direction: column;
}
.svc-card:hover {
  box-shadow: var(--shadow-l);
  transform: translateY(-4px);
  border-color: var(--border2);
}
.svc-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r);
  background: var(--off2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: background var(--t);
}
.svc-card:hover .svc-card__icon { background: var(--black); }
.svc-card__icon svg { width: 24px; height: 24px; color: var(--ink); transition: color var(--t); }
.svc-card:hover .svc-card__icon svg { color: #fff; }
.svc-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.svc-card p  { font-size: .9rem; flex: 1; }
.svc-card__arrow {
  margin-top: 1.5rem; align-self: flex-start;
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 700; color: var(--black);
  opacity: 0; transform: translateY(4px);
  transition: opacity var(--t), transform var(--t);
}
.svc-card:hover .svc-card__arrow { opacity: 1; transform: translateY(0); }
.svc-card__arrow svg { width: 13px; height: 13px; }

/* ─────────────────────────────────────────────
   A-Z TIMELINE
───────────────────────────────────────────── */
.az-timeline {
  position: relative;
  padding-top: 2rem;
}
.az-timeline__curve {
  position: absolute;
  top: calc(2rem - 6px);
  left: 0; width: 100%; height: 60px;
  z-index: 0; pointer-events: none;
}
.az-timeline__path {
  stroke: var(--border2);
  stroke-width: 2.5;
  transition: stroke-dashoffset 1.2s cubic-bezier(.22,1,.36,1);
}
.az-timeline__steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  position: relative; z-index: 1;
  text-align: center;
}
.az-timeline__step {
  display: flex; flex-direction: column; align-items: center;
  transition: transform .3s var(--ease);
}
.az-timeline__step:hover { transform: translateY(-4px); }
/* Hidden state before animation */
.az-timeline__dot {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--black); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-weight: 800; font-size: .95rem;
  margin-bottom: 1.25rem; position: relative; z-index: 2;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--border2), 0 2px 8px rgba(0,0,0,.08);
  transition: transform .4s ease-out, box-shadow .3s var(--ease), opacity .4s ease-out;
  opacity: 0; transform: scale(.6);
}
.az-timeline__step h4,
.az-timeline__step p {
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s ease-out, transform .35s ease-out;
}
/* Visible state after animation */
.az-timeline.is-visible .az-timeline__dot {
  opacity: 1; transform: scale(1);
}
.az-timeline.is-visible .az-timeline__step h4,
.az-timeline.is-visible .az-timeline__step p {
  opacity: 1; transform: translateY(0);
}
/* Per-step stagger delays (circle pop, then text fade) */
.az-timeline.is-visible [data-step="0"] .az-timeline__dot { transition-delay: 1.2s; }
.az-timeline.is-visible [data-step="0"] h4 { transition-delay: 1.32s; }
.az-timeline.is-visible [data-step="0"] p  { transition-delay: 1.38s; }
.az-timeline.is-visible [data-step="1"] .az-timeline__dot { transition-delay: 1.34s; }
.az-timeline.is-visible [data-step="1"] h4 { transition-delay: 1.46s; }
.az-timeline.is-visible [data-step="1"] p  { transition-delay: 1.52s; }
.az-timeline.is-visible [data-step="2"] .az-timeline__dot { transition-delay: 1.48s; }
.az-timeline.is-visible [data-step="2"] h4 { transition-delay: 1.60s; }
.az-timeline.is-visible [data-step="2"] p  { transition-delay: 1.66s; }
.az-timeline.is-visible [data-step="3"] .az-timeline__dot { transition-delay: 1.62s; }
.az-timeline.is-visible [data-step="3"] h4 { transition-delay: 1.74s; }
.az-timeline.is-visible [data-step="3"] p  { transition-delay: 1.80s; }
.az-timeline.is-visible [data-step="4"] .az-timeline__dot { transition-delay: 1.76s; }
.az-timeline.is-visible [data-step="4"] h4 { transition-delay: 1.88s; }
.az-timeline.is-visible [data-step="4"] p  { transition-delay: 1.94s; }
.az-timeline.is-visible [data-step="5"] .az-timeline__dot { transition-delay: 1.90s; }
.az-timeline.is-visible [data-step="5"] h4 { transition-delay: 2.02s; }
.az-timeline.is-visible [data-step="5"] p  { transition-delay: 2.08s; }
/* Hover glow */
.az-timeline__step:hover .az-timeline__dot {
  transform: scale(1.12);
  box-shadow: 0 0 0 3px var(--black), 0 4px 20px rgba(0,0,0,.15);
}
.az-timeline__step h4 {
  font-size: 1.05rem; margin-bottom: .4rem; color: var(--ink);
}
.az-timeline__step p {
  font-size: .85rem; line-height: 1.6; max-width: 170px; color: var(--muted);
}
.az-timeline__swipe {
  display: none; align-items: center; justify-content: center;
  gap: .4rem; margin-top: 1.5rem;
  font-size: .78rem; font-weight: 600; color: var(--muted);
  letter-spacing: .02em;
  animation: swipeHint 1.5s ease-in-out infinite;
}
@keyframes swipeHint {
  0%, 100% { transform: translateX(0); opacity: .6; }
  50% { transform: translateX(6px); opacity: 1; }
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .az-timeline__path { transition: none; }
  .az-timeline__dot,
  .az-timeline__step h4,
  .az-timeline__step p { opacity: 1; transform: none; transition: none; }
}

/* ─────────────────────────────────────────────
   SET CARDS (shared – used on studio + homepage)
   ───────────────────────────────────────────── */
.set-card {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: box-shadow var(--t), transform var(--t);
}
.set-card:hover { box-shadow: var(--shadow-l); transform: translateY(-4px); }
.set-card__img {
  width: 100%; aspect-ratio: 4/3;
  background: var(--off2);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .75rem;
  color: var(--border2); position: relative; overflow: hidden;
}
.set-card__body { padding: 1.5rem; }
.set-card__tag {
  display: inline-block; padding: .2rem .65rem;
  border-radius: var(--r-pill); font-size: .68rem; font-weight: 600;
  background: var(--off2); color: var(--muted); margin-bottom: .6rem;
}
.set-card h4 { font-size: 1.05rem; margin-bottom: .35rem; }
.set-card p  { font-size: .85rem; }

/* ─────────────────────────────────────────────
   STUDIO PREVIEW (homepage)
   ───────────────────────────────────────────── */
.studio-preview-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
}
.studio-preview-grid .set-card__img--portrait { aspect-ratio: 9/16 !important; }
.studio-preview-grid .set-card { border: none; position: relative; background: none; }
.studio-preview-grid .set-card:hover { box-shadow: none; transform: none; }
.studio-preview-grid .set-card__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
}
.studio-preview-grid .set-card__body h4 { color: #fff; margin-bottom: 0; }
/* Desktop: slides are transparent wrappers, CTA slide + pagination hidden */
.studio-slide { display: contents; }
.studio-slide--cta { display: none; }
.studio-pagination { display: none; }
.studio-preview__cta { text-align: center; margin-top: 2.5rem; }

/* Pagination (shared styles) */
.studio-pg-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--white);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--t), border-color var(--t), color var(--t);
  color: var(--ink);
}
.studio-pg-btn svg { width: 14px; height: 14px; }
.studio-pg-btn:hover:not(:disabled) { background: var(--ink); border-color: var(--ink); color: #fff; }
.studio-pg-btn:disabled { opacity: .28; cursor: default; }
.studio-pg-dots { display: flex; gap: .45rem; align-items: center; }
.studio-pg-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border2); transition: background var(--t), transform var(--t);
  cursor: pointer; border: none; padding: 0;
}
.studio-pg-dot.active { background: var(--ink); transform: scale(1.25); }

/* Mobile carousel */
@media (max-width:768px) {
  .studio-preview-grid {
    display: flex; gap: 10px;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .studio-preview-grid::-webkit-scrollbar { display: none; }
  .studio-slide {
    display: block;
    flex: 0 0 92%; max-width: 92%;
    scroll-snap-align: center;
  }
  .studio-slide--cta {
    flex: 0 0 92%; max-width: 92%;
    min-height: 300px;
    display: flex; align-items: center; justify-content: center;
    scroll-snap-align: center;
  }
  .studio-slide .set-card { border-radius: 16px; overflow: hidden; }
  .studio-slide .set-card:hover { box-shadow: none; transform: none; }
  .studio-slide .set-card__body h4 { transition: transform .1s linear; }
  .studio-preview__cta { display: none; }
  .studio-pagination {
    display: flex; align-items: center; justify-content: center;
    gap: 1.25rem; margin-top: 1.5rem;
  }
}

/* ─────────────────────────────────────────────
   STATS BAND (light)
───────────────────────────────────────────── */
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-left: 1px solid var(--border);
}
.stat-box {
  padding: 2.75rem 2rem; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-box__num {
  font-family: var(--font-h); font-weight: 900;
  font-size: 2.75rem; letter-spacing: -.05em; line-height: 1;
  color: var(--black);
}
.stat-box__lbl { font-size: .82rem; color: var(--muted); margin-top: .4rem; }

/* ─────────────────────────────────────────────
   WORK PREVIEW
───────────────────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
}
.work-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3; background: var(--off2);
  border: 1px solid var(--border);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.work-card--wide { grid-column: span 2; aspect-ratio: 16/9; }
.work-card__ph {
  display: flex; flex-direction: column;
  align-items: center; gap: .75rem; color: var(--border2);
}
.work-card__ph svg { width: 36px; height: 36px; }
.work-card__ph span { font-size: .75rem; font-weight: 500; color: var(--muted); }
.work-card__over {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.75);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.75rem;
  opacity: 0; transition: opacity var(--t);
}
.work-card:hover .work-card__over { opacity: 1; }
.work-card__over h4 { color: #fff; font-size: 1rem; }
.work-card__over .tag { margin-top: .4rem; background: rgba(255,255,255,.12); color: rgba(255,255,255,.7); border: none; }
.tag {
  display: inline-block; padding: .28rem .75rem;
  background: var(--off2); border-radius: var(--r-pill);
  font-size: .72rem; font-weight: 600; color: var(--muted);
}

/* ─────────────────────────────────────────────
   CLIENTS STRIP
───────────────────────────────────────────── */
.marquee {
  overflow: hidden; padding: 2.5rem 0 3rem;
  position: relative; width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--font-h); font-weight: 800;
  font-size: clamp(.95rem, 1.5vw, 1.15rem); letter-spacing: -.01em;
  color: var(--border2); flex-shrink: 0;
  transition: color .3s ease;
}
.marquee__track span::after {
  content: '·'; margin-left: 2.5rem; color: var(--border);
}
.marquee__track span:hover { color: var(--ink); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   PROCESS
───────────────────────────────────────────── */
.process-list { border-top: 1px solid var(--border); }
.process-item {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 2.5rem; padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.process-item__n {
  font-family: var(--font-h); font-weight: 900;
  font-size: 3rem; color: var(--black);
  letter-spacing: -.05em; line-height: 1;
  padding-top: .15rem;
}
.process-item h4 { font-size: 1.05rem; margin-bottom: .4rem; }
.process-item p  { font-size: .9rem; }

/* ─────────────────────────────────────────────
   TESTIMONIAL
───────────────────────────────────────────── */
.testi {
  background: var(--black); border-radius: var(--r-lg);
  padding: 4rem; color: #fff;
}
.testi__q {
  font-family: var(--font-h); font-size: clamp(1.2rem,2.5vw,1.7rem);
  font-weight: 700; line-height: 1.45; color: #fff;
  margin-bottom: 2.5rem; letter-spacing: -.025em;
}
.testi__q::before { content: '\201C'; color: rgba(255,255,255,.25); }
.testi__q::after  { content: '\201D'; color: rgba(255,255,255,.25); }
.testi__who { display: flex; align-items: center; gap: 1rem; }
.testi__av {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-weight: 900; font-size: 1rem; color: #fff; flex-shrink: 0;
}
.testi__meta strong { display: block; color: #fff; font-size: .9rem; }
.testi__meta span   { font-size: .82rem; color: rgba(255,255,255,.45); }

/* ─────────────────────────────────────────────
   CTA BAND (dark)
───────────────────────────────────────────── */
.cta-band {
  background: var(--black); text-align: center; padding: 110px 0;
}
.cta-band .eyebrow { color: rgba(255,255,255,.28); }
.cta-band .eyebrow::before { background: rgba(255,255,255,.2); }
.cta-band h2 { color: #fff; margin: .75rem 0 1rem; }
.cta-band p  { color: rgba(255,255,255,.48); font-size: 1.1rem; margin-bottom: 2.5rem; }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer { background: var(--black); }
.footer__top {
  padding: 5rem 0 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.footer__logo {
  font-family: 'PP Nikkei Pacific', var(--font-h); font-weight: 300;
  font-size: 1.35rem; letter-spacing: -.02em; color: #fff;
}
.footer__tagline { margin-top: .85rem; font-size: .875rem; color: rgba(255,255,255,.38); max-width: 230px; }
.footer__col h5 {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  margin-bottom: 1.25rem;
}
.footer__col a {
  display: block; font-size: .875rem;
  color: rgba(255,255,255,.52); margin-bottom: .7rem;
  transition: color var(--t);
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
  padding: 1.75rem 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer__copy { font-size: .78rem; color: rgba(255,255,255,.25); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: .78rem; color: rgba(255,255,255,.25); transition: color var(--t); }
.footer__legal a:hover { color: rgba(255,255,255,.6); }

/* ─────────────────────────────────────────────
   PAGE HERO (inner pages — dark)
───────────────────────────────────────────── */
.page-hero {
  background: var(--black); color: #fff;
  padding-top: calc(var(--nav-h) + 80px); padding-bottom: 80px;
  text-align: center;
}
.page-hero .container { display: flex; flex-direction: column; align-items: center; }
.page-hero .eyebrow { color: rgba(255,255,255,.32); }
.page-hero .eyebrow::before { background: rgba(255,255,255,.22); }
.page-hero h1 { color: #fff; margin: .9rem 0 1.5rem; }
.page-hero p  { color: rgba(255,255,255,.5); font-size: 1.1rem; max-width: 560px; }
.page-hero__actions { margin-top: 2.25rem; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ─────────────────────────────────────────────
   CARDS (generic)
───────────────────────────────────────────── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem;
  transition: box-shadow var(--t), transform var(--t);
}
.card:hover { box-shadow: var(--shadow-l); transform: translateY(-4px); }

/* ─────────────────────────────────────────────
   SERVICES PAGE — full detail
───────────────────────────────────────────── */
.svc-detail { padding: 3.5rem 0; border-bottom: 1px solid var(--border); }
.svc-detail:last-child { border-bottom: none; }
.svc-detail__grid {
  display: grid; grid-template-columns: 160px 1fr 180px;
  gap: 4rem; align-items: start;
}
.svc-detail__num {
  font-family: var(--font-h); font-weight: 900;
  font-size: 5rem; color: var(--off2);
  letter-spacing: -.06em; line-height: .85;
}
.svc-detail h3 { margin-bottom: .75rem; }
.svc-detail p  { margin-bottom: 1.5rem; font-size: .95rem; }
.svc-detail__tags { display: flex; flex-wrap: wrap; gap: .5rem; }
/* Process steps */
.step-list { border-top: 1px solid var(--border); }
.step { display: grid; grid-template-columns: 80px 1fr; gap: 2.5rem; padding: 2.25rem 0; border-bottom: 1px solid var(--border); align-items: start; }
.step__n { font-family: var(--font-h); font-weight: 900; font-size: 3.5rem; color: var(--off2); letter-spacing: -.05em; line-height: .9; }
.step h4 { font-size: 1.05rem; margin-bottom: .4rem; }
.step p  { font-size: .9rem; }

/* FAQ */
details { border-bottom: 1px solid var(--border); }
details:first-child { border-top: 1px solid var(--border); }
details summary {
  padding: 1.4rem 0; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 1rem; color: var(--ink); user-select: none;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: '+'; font-size: 1.5rem; color: var(--muted); line-height: 1; flex-shrink: 0; }
details[open] summary::after { content: '−'; }
details p { padding-bottom: 1.4rem; font-size: .9rem; }

/* ─────────────────────────────────────────────
   PORTFOLIO PAGE
───────────────────────────────────────────── */
.port-filter { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.pf-btn {
  padding: .45rem 1.1rem; border-radius: var(--r-pill);
  border: 1px solid var(--border); font-size: .82rem; font-weight: 600;
  color: var(--muted); background: transparent; cursor: pointer;
  transition: all var(--t); font-family: var(--font-b);
}
.pf-btn:hover, .pf-btn.active { background: var(--black); color: #fff; border-color: var(--black); }

.port-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.port-item {
  position: relative; aspect-ratio: 4/3; border-radius: var(--r-lg);
  background: var(--off2); overflow: hidden;
  border: 1px solid var(--border); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.port-item__ph { display: flex; flex-direction: column; align-items: center; gap: .75rem; color: var(--border2); }
.port-item__ph svg { width: 40px; height: 40px; }
.port-item__ph span { font-size: .75rem; font-weight: 500; color: var(--muted); }
.port-item__over {
  position: absolute; inset: 0; background: rgba(0,0,0,.8);
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; gap: .75rem; padding: 2rem; text-align: center;
  opacity: 0; transition: opacity var(--t);
}
.port-item:hover .port-item__over { opacity: 1; }
.port-item__over h4 { color: #fff; }
.port-item__over .tag { background: rgba(255,255,255,.1); color: rgba(255,255,255,.65); }

/* ─────────────────────────────────────────────
   STUDIO PAGE
───────────────────────────────────────────── */
.spec-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.spec-card {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 2rem; background: var(--white);
  transition: box-shadow var(--t), transform var(--t);
}
.spec-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.spec-card__ic {
  width: 48px; height: 48px; border-radius: var(--r);
  background: var(--off2); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.25rem; color: var(--ink);
  transition: background var(--t);
}
.spec-card:hover .spec-card__ic { background: var(--black); }
.spec-card__ic svg { width: 22px; height: 22px; transition: color var(--t); }
.spec-card:hover .spec-card__ic svg { color: #fff; }
.spec-card h4 { margin-bottom: .4rem; }
.spec-card p  { font-size: .875rem; margin-bottom: .75rem; }
.spec-card ul { display: flex; flex-direction: column; gap: .35rem; }
.spec-card ul li { font-size: .82rem; color: var(--muted); display: flex; align-items: flex-start; gap: .5rem; }
.spec-card ul li::before { content: '—'; flex-shrink: 0; }

/* Studio booking form */
.book-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 3rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--ink); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--off); border: 1px solid var(--border);
  border-radius: var(--r); padding: .75rem 1rem;
  color: var(--ink); font-size: .9rem;
  transition: border-color var(--t), background var(--t);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--black); background: var(--white);
}
.form-group select option { background: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─────────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.team-card { text-align: center; }
.team-card__photo {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--off2); border: 2px solid var(--border);
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-weight: 900; font-size: 1.4rem; color: var(--muted);
  transition: border-color var(--t);
}
.team-card:hover .team-card__photo { border-color: var(--black); }
.team-card h4 { font-size: 1rem; margin-bottom: .2rem; }
.team-card__role { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem; }
.team-card p { font-size: .85rem; }

.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.value-item { padding: 2.25rem 2rem; border: 1px solid var(--border); border-radius: var(--r-lg); }
.value-item__ic { font-size: 1.75rem; margin-bottom: 1rem; }
.value-item h4 { margin-bottom: .4rem; font-size: 1.05rem; }
.value-item p  { font-size: .875rem; }

.timeline { padding-left: 2rem; border-left: 2px solid var(--border); }
.tl-item { margin-bottom: 2.5rem; position: relative; }
.tl-item::before {
  content: ''; position: absolute;
  left: calc(-2rem - 5px); top: .5rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--black); border: 2px solid var(--white);
  box-shadow: 0 0 0 3px var(--border2);
}
.tl-item__yr { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; }
.tl-item h4 { margin-bottom: .35rem; }
.tl-item p  { font-size: .875rem; }

/* ─────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 5rem; align-items: start; }
.ci { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 2.25rem; }
.ci__ic {
  width: 44px; height: 44px; border-radius: var(--r);
  border: 1px solid var(--border); background: var(--off);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--ink);
}
.ci__ic svg { width: 19px; height: 19px; }
.ci__txt strong { display: block; font-size: .875rem; color: var(--ink); margin-bottom: .2rem; }
.ci__txt span   { font-size: .875rem; color: var(--sub); }
.contact-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 3rem;
}
@media (max-width:768px) {
  .contact-form { padding: 1.5rem; }
}

/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(22px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .08s; }
.fade-up:nth-child(3) { transition-delay: .16s; }
.fade-up:nth-child(4) { transition-delay: .24s; }
.fade-up:nth-child(5) { transition-delay: .32s; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .az-timeline__steps { gap: .75rem; }
  .az-timeline__step p { font-size: .8rem; max-width: 140px; }
  .hero__bar      { grid-template-columns: repeat(2,1fr); }
  .hero__bar-item:nth-child(2) { border-right: none; }
  .hero__bar-item:nth-child(3) { border-top: 1px solid var(--border); padding-left: 0; }
  .hero__bar-item:nth-child(4) { border-top: 1px solid var(--border); }
  .stat-box:nth-child(2) { border-right: none; }
  .stat-box:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-box:nth-child(4) { border-top: 1px solid var(--border); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .footer__grid  { grid-template-columns: 1fr 1fr; }
  .spec-grid     { grid-template-columns: repeat(2,1fr); }
  .port-grid     { grid-template-columns: repeat(2,1fr); }
  .svc-detail__grid { grid-template-columns: 100px 1fr; }
}
@media (max-width: 768px) {
  :root { --py: 65px; --nav-h: 64px; }
  .nav__links, .nav__cta, .theme-toggle:not(.theme-toggle--mobile), .lang-toggle:not(.lang-toggle--mobile) { display: none; }
  .nav__inner > div:last-child { display: flex; margin-left: auto; }
  .nav__hamburger { display: flex; }
  .theme-toggle--mobile { display: inline-flex; }
  .lang-toggle--mobile { display: flex; width: 32px; height: 32px; font-size: .65rem; }
  .container { padding: 0 2rem; }
  .hero__content { padding-top: 48px; padding-bottom: 28px; text-align: center; align-items: center; }
  .hero__desc { font-size: 1rem; }
  .hero__bar  { grid-template-columns: 1fr 1fr; }
  .hero__bar-item { padding: 1.5rem 1.25rem; }
  .hero__bar-item:first-child { padding-left: 1.25rem; }
  /* Services carousel */
  .services-grid {
    display: flex; overflow: hidden; gap: 0;
    touch-action: pan-y pinch-zoom;
    -webkit-user-select: none; user-select: none;
  }
  .svc-card {
    flex: 0 0 100%; min-width: 0; max-width: 100%;
    transition: transform .5s cubic-bezier(.23,1,.32,1);
    will-change: transform; box-sizing: border-box;
    padding: 1.75rem 1.5rem;
  }
  .svc-card:hover { transform: none; box-shadow: none; }
  .svc-progress {
    width: 60px; height: 3px; border-radius: 2px;
    background: var(--border); overflow: hidden;
  }
  .svc-progress__bar {
    height: 100%; width: 0; background: var(--ink); border-radius: 2px;
  }
  .svc-progress__bar.animating {
    animation: svcProgress 4s linear forwards;
  }
  @keyframes svcProgress {
    from { width: 0; } to { width: 100%; }
  }
  /* A-Z Timeline — mobile horizontal swipe with line */
  .az-timeline {
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -2rem; padding: 1rem 0 0;
  }
  .az-timeline::-webkit-scrollbar { display: none; }
  .az-timeline__curve {
    position: relative;
    width: calc(6 * 75vw);
    height: 50px;
    top: auto; left: auto;
    margin-bottom: -59px;
    z-index: 0; pointer-events: none;
  }
  .az-timeline__steps {
    display: flex; gap: 0;
    position: relative; z-index: 1;
    text-align: center;
  }
  .az-timeline__steps::before,
  .az-timeline__steps::after {
    content: ''; flex: 0 0 12.5vw;
  }
  .az-timeline__step {
    flex: 0 0 75vw; min-width: 0;
    scroll-snap-align: center;
    display: flex; flex-direction: column; align-items: center;
    padding: 0 1.5rem; box-sizing: border-box;
  }
  .az-timeline__dot {
    width: 52px; height: 52px; font-size: 1rem; margin-bottom: 1rem;
  }
  .az-timeline__step h4 { font-size: 1.1rem; margin-bottom: .4rem; }
  .az-timeline__step p  { max-width: 220px; text-align: center; font-size: .85rem; }
  /* On mobile, show elements immediately (animation triggers on scroll into view) */
  .az-timeline .az-timeline__dot,
  .az-timeline .az-timeline__step h4,
  .az-timeline .az-timeline__step p {
    opacity: 1; transform: none;
  }
  /* Swipe CTA — sticky at bottom */
  .az-timeline__swipe {
    display: flex;
    position: sticky; left: 0;
    width: 100vw;
    justify-content: center;
    padding: 1.25rem 0 .5rem;
  }
  .work-grid  { grid-template-columns: 1fr 1fr; }
  .work-card--wide { grid-column: span 2; }
  .footer__grid  { grid-template-columns: auto auto; gap: 1.5rem; justify-content: center; }
  .footer__grid > div:first-child { grid-column: 1 / -1; text-align: center; }
  .footer__logo { white-space: nowrap; }
  .footer__tagline { display: none; }
  .footer__col h5 { margin-bottom: .75rem; }
  .footer__col a { font-size: .8rem; margin-bottom: .5rem; }
  .footer__bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .team-grid  { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .testi { padding: 2.25rem; }
  .spec-grid  { grid-template-columns: 1fr; }
  .svc-detail__grid { grid-template-columns: 1fr; gap: 1rem; }
  .svc-detail__num { font-size: 3rem; }
  .port-grid  { grid-template-columns: 1fr 1fr; }
  .cta-band   { padding: 70px 0; }
  .hide-mobile { display: none; }
  .process-item { grid-template-columns: 54px 1fr; gap: 1.5rem; }
  .process-item__n { font-size: 2.5rem; }
}
@media (max-width: 480px) {
  h1 { font-size: clamp(1.75rem, 8vw, 2.25rem); }
  .hero h1 br { display: none; }
  .work-grid  { grid-template-columns: 1fr; }
  .work-card--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .port-grid  { grid-template-columns: 1fr; }
  .team-grid  { grid-template-columns: 1fr; }
  .hero__bar  { grid-template-columns: 1fr 1fr; }
  .hero__bar-item { padding: 1.25rem 1rem; }
  .hero__bar-item:first-child { padding-left: 1rem; }
  .hero__bar-item:nth-child(3) { padding-left: 1rem; }
  .hero__bar-num { font-size: 2rem; }
  .sh { margin-bottom: 2.25rem; text-align: center; flex-direction: column !important; align-items: center !important; justify-content: center !important; }
  .sh h2 { font-size: clamp(1.4rem, 5.8vw, 2rem); }
  .sh p { margin-inline: auto; }
  .sh .btn { align-self: center !important; }
}
