/* ═══════════════════════════════
   TOKENS
═══════════════════════════════ */
:root {
  --white : #FFFFFF;
  --off   : #F4F3EC;
  --black : #0B0B09;
  --acid  : #C0FF00;
  --blue  : #0023F5;
  --pink  : #EA037E;

  --fd : 'Anton', sans-serif;
  --fs : 'Playfair Display', serif;
  --fm : 'Space Mono', monospace;
  --fb : 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--fb);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 58px; /* space for sticky services marquee */
}

::selection { background: var(--acid); color: var(--black); }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: var(--blue); }

/* ═══════════════════════════════
   CURSOR BLOB
   Acid circle in difference blend — inverts whatever it passes
   over (white → violet, black → acid, pink → green). Created by
   JS only on mouse-driven devices.
═══════════════════════════════ */
.cursor-blob {
  position: fixed;
  top: -14px; left: -14px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--acid);
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s, width 0.28s, height 0.28s, top 0.28s, left 0.28s;
}
.cursor-blob--big {
  top: -32px; left: -32px;
  width: 64px; height: 64px;
}

/* Native cursor hidden when the blob is active (added by JS on
   mouse-driven devices only — touch/pen keep their defaults) */
.no-cursor, .no-cursor * { cursor: none !important; }

/* Badge hidden — Google permits this when the reCAPTCHA attribution
   is shown inline instead (see .recaptcha-note in the contact form) */
.grecaptcha-badge { visibility: hidden !important; }

/* ═══════════════════════════════
   3D LOGO OVERLAY
   Covers the first viewport and sits ABOVE the intro type
   (z 30 > heading z 10) so the logo spins over the text.
   pointer-events: none keeps everything beneath clickable —
   drag-to-spin is handled at window level in three-logo.js.
═══════════════════════════════ */
#home {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100vh;
  z-index: 30;
  pointer-events: none;
}

#canvas-container {
  position: absolute;
  inset: 0;
}

canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: block;
}

.scroll-hint {
  position: absolute;
  bottom: 76px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(11,11,9,0.35);
  animation: hintFloat 2.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hintFloat {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: 0.35; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.6;  }
}

/* ═══════════════════════════════
   MARQUEES
═══════════════════════════════ */
.mq {
  overflow: hidden;
  height: 58px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.mq-acid  { background: var(--acid); }
.mq-black { background: var(--black); }
.mq-blue  { background: var(--blue); }
.mq-pink  { background: var(--pink); }

.mq-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 600;
}

.mq-track {
  display: flex;
  white-space: nowrap;
  animation: mqScroll 70s linear infinite;
  will-change: transform;
}
.mq-track.rev  { animation-direction: reverse; animation-duration: 60s; }
.mq-track.slow { animation-duration: 90s; }

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

.mq-item {
  font-family: var(--fd);
  font-size: 20px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.mq-acid  .mq-item { color: var(--black); }
.mq-black .mq-item,
.mq-blue  .mq-item,
.mq-pink  .mq-item { color: var(--white); }

.mq-sep {
  font-family: var(--fs);
  font-style: italic;
  font-weight: 500;
  font-size: 0.78em;
  opacity: 0.4;
}

/* ═══════════════════════════════
   HEADING STRETCH
═══════════════════════════════ */
.stretch-h {
  display: block;
  position: relative;
  z-index: 10;
}

.stretch-line {
  display: block;
  transform-origin: bottom center;
  will-change: transform;
}

.mc {
  display: inline;
  transition: transform 0.22s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.18s ease;
}

.about, .brand, .portfolio-hdr, .cta-pink, .contact {
  overflow: visible;
}

/* ═══════════════════════════════
   ABOUT
═══════════════════════════════ */
.about {
  padding: 140px 40px 180px;
  background: var(--white);
}

.about-h {
  font-family: var(--fd);
  font-size: clamp(80px, 18vw, 280px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.about-serif {
  font-family: var(--fs);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 36px;
  max-width: 600px;
}

.about-body {
  font-family: var(--fb);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.82;
  color: #555;
  max-width: 620px;
  margin-bottom: 56px;
}

/* Liquid-glass buttons — layered specular gradient, deep blur with
   saturation boost, bright top edge, soft floating shadow */
.link-cta {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  background: linear-gradient(160deg, rgba(255,255,255,0.72), rgba(255,255,255,0.18) 50%, rgba(255,255,255,0.45));
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.75);
  outline: 1px solid rgba(11,11,9,0.08);
  box-shadow:
    0 12px 32px rgba(11,11,9,0.10),
    0 2px 6px rgba(11,11,9,0.05),
    inset 0 1px 1px rgba(255,255,255,0.95),
    inset 0 -8px 14px rgba(255,255,255,0.4);
  padding: 14px 26px;
  border-radius: 999px;
  align-self: flex-start;
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.25s, box-shadow 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.link-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(160deg, rgba(255,255,255,0.85), rgba(220,228,255,0.35) 50%, rgba(255,255,255,0.55));
  box-shadow:
    0 18px 44px rgba(0,35,245,0.14),
    0 3px 8px rgba(11,11,9,0.06),
    inset 0 1px 1px rgba(255,255,255,1),
    inset 0 -8px 14px rgba(255,255,255,0.45);
}

/* ═══════════════════════════════
   BLUE STATEMENT
═══════════════════════════════ */
.statement {
  background: var(--blue);
  padding: 160px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.statement-serif {
  font-family: var(--fs);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(26px, 4vw, 52px);
  color: var(--white);
  line-height: 1.3;
  max-width: 760px;
  margin-bottom: 24px;
}

/* ═══════════════════════════════
   BRAND WORK
═══════════════════════════════ */
.brand {
  padding: 160px 40px;
  background: var(--off);
}

.brand-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 40px;
}

.brand-h {
  font-family: var(--fd);
  font-size: clamp(72px, 18vw, 280px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 0.02em;
}

.brand-serif {
  font-family: var(--fs);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: #888;
  padding-bottom: 8px;
}

.clients {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.cl {
  padding: 28px;
  cursor: default;
  transition: background 0.22s ease;
  position: relative;
}

.cl.cl-hv-blue { background: var(--blue); }
.cl.cl-hv-blue .cl-n,
.cl.cl-hv-blue .cl-name,
.cl.cl-hv-blue .cl-type { color: var(--white); }

.cl.cl-hv-acid { background: var(--acid); }
.cl.cl-hv-acid .cl-n,
.cl.cl-hv-acid .cl-name,
.cl.cl-hv-acid .cl-type { color: var(--black); }

.cl.cl-hv-pink { background: var(--pink); }
.cl.cl-hv-pink .cl-n,
.cl.cl-hv-pink .cl-name,
.cl.cl-hv-pink .cl-type { color: var(--white); }

.cl-n {
  font-family: var(--fm);
  font-size: 9px;
  color: #c0c0c0;
  letter-spacing: 0.1em;
  margin-bottom: 7px;
  transition: color 0.22s ease;
}
.cl-name {
  font-family: var(--fd);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.22s ease;
  line-height: 1.2;
}
.cl-type {
  font-family: var(--fs);
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  color: #999;
  margin-top: 3px;
  transition: color 0.22s ease;
}

/* ═══════════════════════════════
   PORTFOLIO
═══════════════════════════════ */
.portfolio-hdr {
  background: var(--white);
  padding: 160px 40px 80px;
}

.portfolio-hdr-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.portfolio-h {
  font-family: var(--fd);
  font-size: clamp(72px, 18vw, 280px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 0.02em;
}

.portfolio-serif {
  font-family: var(--fs);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: #888;
  padding-bottom: 8px;
}

.pi {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 70vh;
  background: var(--white);
}
.pi.pi-rev {
  grid-template-columns: 45% 55%;
  background: var(--acid);
}

.pi-media {
  position: relative;
  overflow: hidden;
  background: var(--off);
  min-height: 480px;
}

/* ── Carousel ── */
.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carr-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carr-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.carr-slide-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-ph-label {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #bbb;
}

.carr-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carr-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(255,255,255,0.6), rgba(255,255,255,0.15) 55%, rgba(255,255,255,0.35));
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.12),
    inset 0 1px 1px rgba(255,255,255,0.9),
    inset 0 -6px 10px rgba(255,255,255,0.3);
  color: var(--black);
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s, box-shadow 0.22s;
}
.carr-btn:hover {
  background: linear-gradient(160deg, rgba(255,255,255,0.78), rgba(255,255,255,0.3) 55%, rgba(255,255,255,0.5));
  box-shadow:
    0 12px 32px rgba(0,0,0,0.16),
    inset 0 1px 1px rgba(255,255,255,1),
    inset 0 -6px 10px rgba(255,255,255,0.38);
}
.carr-prev { left: 16px; }
.carr-next { right: 16px; }

.carr-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.carr-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
}
.carr-dot.active {
  background: var(--white);
  transform: scale(1.3);
}
.pi-rev .carr-dot        { background: rgba(0,0,0,0.25); }
.pi-rev .carr-dot.active { background: var(--black); }

/* ── Portfolio info ── */
.pi-info {
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.pi.pi-rev .pi-info { background: var(--acid); }

.pi-client {
  font-family: var(--fd);
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.pi-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.pi-tag {
  font-family: var(--fm);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--black);
  color: var(--white);
}
.pi-tag.t-blue  { background: var(--blue); }
.pi-tag.t-pink  { background: var(--pink); }
.pi-tag.t-acid  { background: var(--acid); color: var(--black); }

.pi-desc {
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #555;
  margin-bottom: 32px;
  max-width: 400px;
}
.pi.pi-rev .pi-desc { color: rgba(0,0,0,0.55); }

.pi-link {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  background: linear-gradient(160deg, rgba(255,255,255,0.72), rgba(255,255,255,0.18) 50%, rgba(255,255,255,0.45));
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.75);
  outline: 1px solid rgba(11,11,9,0.08);
  box-shadow:
    0 12px 32px rgba(11,11,9,0.10),
    0 2px 6px rgba(11,11,9,0.05),
    inset 0 1px 1px rgba(255,255,255,0.95),
    inset 0 -8px 14px rgba(255,255,255,0.4);
  padding: 13px 24px;
  border-radius: 999px;
  align-self: flex-start;
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.25s, box-shadow 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pi-link:hover {
  transform: translateY(-2px);
  background: linear-gradient(160deg, rgba(255,255,255,0.85), rgba(220,228,255,0.35) 50%, rgba(255,255,255,0.55));
  box-shadow:
    0 18px 44px rgba(0,35,245,0.14),
    0 3px 8px rgba(11,11,9,0.06),
    inset 0 1px 1px rgba(255,255,255,1),
    inset 0 -8px 14px rgba(255,255,255,0.45);
}

/* ═══════════════════════════════
   FULL-WIDTH IMAGE
═══════════════════════════════ */
.fullwidth-img {
  width: 100%;
  height: 65vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  background: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fullwidth-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fullwidth-img-ph {
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #bbb;
  z-index: 1;
}
.fullwidth-caption {
  position: absolute;
  bottom: 28px;
  left: 40px;
  z-index: 2;
  font-family: var(--fs);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  display: none;
}

/* ═══════════════════════════════
   PINK CTA
═══════════════════════════════ */
.cta-pink {
  background: var(--pink);
  padding: 180px 40px;
}

.cta-h {
  font-family: var(--fd);
  font-size: clamp(72px, 16vw, 240px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.cta-serif {
  font-family: var(--fs);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 26px);
  color: rgba(255,255,255,0.75);
  margin-bottom: 44px;
  max-width: 480px;
  line-height: 1.4;
}

.btn-white {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(160deg, rgba(255,255,255,0.5), rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.28));
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow:
    0 12px 32px rgba(0,0,0,0.16),
    0 2px 6px rgba(0,0,0,0.08),
    inset 0 1px 1px rgba(255,255,255,0.85),
    inset 0 -8px 14px rgba(255,255,255,0.2);
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.25s, box-shadow 0.25s;
  display: inline-block;
}
.btn-white:hover {
  transform: translateY(-2px);
  background: linear-gradient(160deg, rgba(255,255,255,0.65), rgba(255,255,255,0.22) 50%, rgba(255,255,255,0.4));
  box-shadow:
    0 18px 44px rgba(0,0,0,0.2),
    0 3px 8px rgba(0,0,0,0.1),
    inset 0 1px 1px rgba(255,255,255,0.95),
    inset 0 -8px 14px rgba(255,255,255,0.28);
}

/* ═══════════════════════════════
   CONTACT
═══════════════════════════════ */
.contact {
  padding: 180px 40px;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-h {
  font-family: var(--fd);
  font-size: clamp(64px, 14vw, 220px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.contact-serif {
  font-family: var(--fs);
  font-style: italic;
  font-weight: 600;
  font-size: 19px;
  color: #777;
  line-height: 1.5;
  margin-bottom: 22px;
  max-width: 360px;
}

.contact-mono {
  font-family: var(--fm);
  font-size: 11px;
  color: #aaa;
  letter-spacing: 0.06em;
  line-height: 2.1;
}
.contact-mono a { color: var(--blue); text-decoration: none; transition: color 0.15s; }
.contact-mono a:hover { color: var(--pink); }

.contact-detail { margin-top: 32px; }
.cd-lbl {
  font-family: var(--fm);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ccc;
  margin-bottom: 7px;
}
.cd-val { font-family: var(--fb); font-size: 14px; color: var(--black); }

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

.fl {
  font-family: var(--fm);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #bbb;
}
.fi, .fta {
  font-family: var(--fb);
  font-weight: 400;
  font-size: 15px;
  color: var(--black);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(11,11,9,0.12);
  padding: 10px 0;
  outline: none;
  width: 100%;
  transition: border-color 0.18s;
  border-radius: 0;
  appearance: none;
}
.fi::placeholder, .fta::placeholder {
  color: #ccc;
  font-style: italic;
  font-family: var(--fs);
}
.fi:focus, .fta:focus { border-bottom-color: var(--blue); }
.fta { height: 120px; resize: none; }

.fsub {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(160deg, rgba(255,255,255,0.72), rgba(255,255,255,0.18) 50%, rgba(255,255,255,0.45));
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.75);
  outline: 1px solid rgba(11,11,9,0.08);
  box-shadow:
    0 12px 32px rgba(11,11,9,0.10),
    0 2px 6px rgba(11,11,9,0.05),
    inset 0 1px 1px rgba(255,255,255,0.95),
    inset 0 -8px 14px rgba(255,255,255,0.4);
  color: var(--black);
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  align-self: flex-start;
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.25s, box-shadow 0.25s;
}
.fsub:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-status {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 0.1em;
  min-height: 1.4em;
}
.form-status--ok  { color: #3a9e3a; }
.form-status--err { color: var(--pink); }

.recaptcha-note {
  font-family: var(--fm);
  font-size: 9px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: #bbb;
}
.recaptcha-note a { color: #999; text-decoration: none; transition: color 0.15s; }
.recaptcha-note a:hover { color: var(--blue); }

.fsub:hover {
  transform: translateY(-2px);
  background: linear-gradient(160deg, rgba(255,255,255,0.85), rgba(220,228,255,0.35) 50%, rgba(255,255,255,0.55));
  box-shadow:
    0 18px 44px rgba(0,35,245,0.14),
    0 3px 8px rgba(11,11,9,0.06),
    inset 0 1px 1px rgba(255,255,255,1),
    inset 0 -8px 14px rgba(255,255,255,0.45);
}

/* ═══════════════════════════════
   GALLERY STRIP
═══════════════════════════════ */
.gs {
  background: var(--white);
  padding: 100px 0;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
  overflow: hidden;
  position: relative;
}

.gs-row {
  width: 100%;
  overflow: visible;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.gs-track {
  display: flex;
  gap: 28px;
  will-change: transform;
  width: max-content;
}

.gs-img {
  width: 200px;
  height: 250px;
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  border-radius: 2px;
}

.gs-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.gs-img-ph {
  width: 100%;
  height: 100%;
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.footer {
  background: var(--black);
  padding: 56px 40px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  padding-bottom: 36px;
  margin-bottom: 28px;
}

.footer-logo {
  font-family: var(--fd);
  font-size: 52px;
  color: var(--white);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.footer-logo span { color: var(--acid); }
.footer-logo em {
  display: block;
  font-family: var(--fs);
  font-style: italic;
  font-weight: 500;
  font-size: 0.36em;
  color: rgba(255,255,255,0.28);
  text-transform: none;
  margin-top: 6px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  padding-top: 6px;
}
.f-link {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color 0.18s;
}
.f-link:hover { color: var(--acid); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-copy {
  font-family: var(--fm);
  font-size: 9px;
  color: rgba(255,255,255,0.16);
  letter-spacing: 0.1em;
}
.footer-acid {
  font-family: var(--fs);
  font-style: italic;
  font-size: 14px;
  font-weight: 500;
  color: var(--acid);
  opacity: 0.55;
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 960px) {
  .about    { padding: 80px 24px; }
  .pi, .pi.pi-rev { grid-template-columns: 1fr; grid-template-rows: 50vw auto; }
  .pi-media { min-height: 50vw; }
  .pi.pi-rev .pi-info  { order: 2; }
  .pi.pi-rev .pi-media { order: 1; }
  .contact  { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-nav { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .clients  { grid-template-columns: 1fr 1fr; }
  .brand-hdr, .portfolio-hdr-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 640px) {
  .brand, .portfolio-hdr, .contact, .cta-pink { padding-left: 24px; padding-right: 24px; }
  .pi-info  { padding: 48px 28px; }
  .footer   { padding: 48px 24px 32px; }
  .clients  { grid-template-columns: 1fr; }
  .statement { padding: 80px 28px; }
}
