/* ============================================================
   ATELIER — SIGNATURE STUDIO
   Three ownable art-direction systems. NOT reskins of one
   skeleton — each has its own layout logic, type & motion.
     · MAISON  — editorial luxe, magazine grid, real photo
     · MARQUEE — kinetic bold, type-as-design, running ticker
     · STUDIO  — collage / sticker, tactile layered cards
   Canvases are authored at true design px, then transform-
   scaled to fit. Motion reveals on scroll; hover micro-acts.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;1,6..96,500&display=swap');

/* ---------- generic scaled frame ---------- */
.sig-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 30px 70px -34px rgba(40,28,20,.55), 0 2px 8px -4px rgba(40,28,20,.25);
  flex: none;
  background: #d9d2c7;
}
.sig-canvas {
  position: relative;
  overflow: hidden;
  transform-origin: top left;
  display: flex;
  flex-direction: column;
}

/* photo slot baseline */
.sig-canvas image-slot { display: block; }

/* ============================================================
   REVEAL / MOTION PRIMITIVES
   base state = the FINAL look; we animate FROM hidden only
   when [data-anim] is present (added when scrolled into view)
   and motion is allowed.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .sig-canvas[data-anim] [data-rise] {
    --t: translateY(115%) rotate(2deg);
    animation: sig-rise .9s cubic-bezier(.16,1,.3,1) both;
    animation-delay: var(--d, 0s);
  }
  .sig-canvas[data-anim] [data-fade] {
    animation: sig-fade 1s ease both;
    animation-delay: var(--d, 0s);
  }
  .sig-canvas[data-anim] [data-pop] {
    animation: sig-pop .8s cubic-bezier(.34,1.56,.64,1) both;
    animation-delay: var(--d, 0s);
  }
  .sig-canvas[data-anim] [data-wipe] {
    animation: sig-wipe 1.1s cubic-bezier(.7,0,.2,1) both;
    animation-delay: var(--d, 0s);
  }
  .sig-canvas[data-anim] [data-zoom] {
    animation: sig-zoom 1.6s cubic-bezier(.22,1,.36,1) both;
    animation-delay: var(--d, 0s);
  }
}
.rise-mask { overflow: hidden; display: block; }
.rise-mask [data-rise] { display: block; }

@keyframes sig-rise { from { transform: translateY(118%) rotate(2deg); } to { transform: translateY(0) rotate(0); } }
@keyframes sig-fade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes sig-pop  { 0% { opacity: 0; transform: scale(.6) rotate(var(--r0, -8deg)); } 100% { opacity: 1; transform: scale(1) rotate(var(--r, 0deg)); } }
@keyframes sig-wipe { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes sig-zoom { from { transform: scale(1.12); } to { transform: scale(1); } }

/* ════════════════════════════════════════════════════════════
   1 · MAISON — editorial luxe
   bone paper, ink near-black, single brass. Bodoni + Jost.
   ════════════════════════════════════════════════════════════ */
.maison {
  --m-paper: #ece4d6;
  --m-ink: #211c16;
  --m-soft: #6c6053;
  --m-brass: #97703f;
  background: var(--m-paper);
  color: var(--m-ink);
  font-family: 'Jost', sans-serif;
}
.maison .m-photo { position: relative; background: #cbbfad; }
.maison image-slot { width: 100%; height: 100%; }
.maison .m-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--m-brass);
  display: flex; align-items: center; gap: 20px;
}
.maison .m-eyebrow .ln { height: 1px; flex: 1; background: color-mix(in oklab, var(--m-brass) 55%, transparent); transform-origin: left; }
.maison .m-title {
  font-family: 'Bodoni Moda', serif; font-weight: 500;
  line-height: .96; letter-spacing: -.012em; margin: 0;
  text-wrap: balance;
}
.maison .m-title em { font-style: italic; font-weight: 400; color: var(--m-brass); }
.maison .m-rule { height: 1px; background: var(--m-ink); transform-origin: left; }
.maison .m-sub {
  font-family: 'Jost', sans-serif; font-weight: 300;
  color: var(--m-soft); margin: 0; letter-spacing: .01em;
}
.maison .m-offer {
  font-family: 'JetBrains Mono', monospace; letter-spacing: .22em;
  text-transform: uppercase; color: var(--m-ink);
  display: flex; align-items: center; gap: 18px;
}
.maison .m-offer b { font-weight: 600; }
.maison .m-offer .ln { height: 1px; flex: 1; background: color-mix(in oklab, var(--m-ink) 32%, transparent); }
.maison .m-foot { display: flex; align-items: center; justify-content: space-between; }
.maison .m-lockup { display: flex; align-items: center; gap: 16px; }
.maison .m-lockup .mk {
  border: 1px solid var(--m-ink); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bodoni Moda', serif; aspect-ratio: 1;
}
.maison .m-lockup .nm { font-family: 'Bodoni Moda', serif; line-height: 1; }
.maison .m-contact { font-family: 'JetBrains Mono', monospace; letter-spacing: .08em; color: var(--m-soft); }

/* MAISON · square 1080² — split grid: photo | text */
.maison.sq { display: grid; grid-template-columns: 486px 1fr; }
.maison.sq .m-photo { height: 1080px; }
.maison.sq .m-text { padding: 76px 80px; display: flex; flex-direction: column; min-width: 0; }
.maison.sq .m-eyebrow { font-size: 22px; }
.maison.sq .m-title { font-size: 92px; margin: 32px 0 0; }
.maison.sq .m-rule { width: 84px; margin: 32px 0; }
.maison.sq .m-sub { font-size: 30px; line-height: 1.3; max-width: 13ch; }
.maison.sq .m-spacer { flex: 1; min-height: 40px; }
.maison.sq .m-offer { font-size: 22px; margin-bottom: 44px; }
.maison.sq .m-lockup .mk { width: 70px; font-size: 38px; }
.maison.sq .m-lockup .nm { font-size: 46px; }
.maison.sq .m-contact { font-size: 22px; }

/* MAISON · story 1080×1920 — photo top, text below */
.maison.st .m-photo { height: 1180px; }
.maison.st .m-text { flex: 1; padding: 90px 90px 110px; display: flex; flex-direction: column; }
.maison.st .m-eyebrow { font-size: 26px; }
.maison.st .m-title { font-size: 118px; margin: 36px 0 0; }
.maison.st .m-rule { width: 92px; margin: 40px 0; }
.maison.st .m-sub { font-size: 38px; line-height: 1.3; max-width: 15ch; }
.maison.st .m-spacer { flex: 1; min-height: 30px; }
.maison.st .m-offer { font-size: 26px; margin-bottom: 38px; }
.maison.st .m-lockup .mk { width: 76px; font-size: 42px; }
.maison.st .m-lockup .nm { font-size: 50px; }
.maison.st .m-contact { font-size: 24px; }

/* hover: slow photo zoom + brass rule extends */
.maison .m-photo image-slot { transition: transform 1.1s cubic-bezier(.22,1,.36,1); will-change: transform; }
.sig-frame:hover .maison .m-photo image-slot { transform: scale(1.05); }

/* ════════════════════════════════════════════════════════════
   2 · MARQUEE — kinetic bold · type IS the design
   ink black, warm cream, hot coral. Anton + Archivo. No photo.
   ════════════════════════════════════════════════════════════ */
.marquee {
  --q-bg: #16140f;
  --q-paper: #f4ead4;
  --q-accent: #ff5a36;
  --q-accent2: #ffc83d;
  background: var(--q-bg);
  color: var(--q-paper);
  font-family: 'Archivo', sans-serif;
  position: relative;
}
.marquee .q-ticker {
  background: var(--q-accent); color: var(--q-bg);
  overflow: hidden; white-space: nowrap; display: flex;
  border-block: 0 solid;
}
.marquee .q-ticker.alt { background: var(--q-paper); color: var(--q-bg); }
.marquee .q-track {
  display: inline-flex; flex: none; align-items: center;
  font-family: 'JetBrains Mono', monospace; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  animation: q-scroll 14s linear infinite;
  will-change: transform;
}
.marquee .q-ticker.alt .q-track { animation-direction: reverse; animation-duration: 18s; }
.marquee .q-track span { padding: 0 .9em; display: inline-flex; align-items: center; gap: .9em; }
.marquee .q-track .dot { width: .42em; height: .42em; border-radius: 50%; background: currentColor; }
@keyframes q-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee .q-track { animation: none; } }

.marquee .q-stage { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.marquee .q-eyebrow {
  font-family: 'JetBrains Mono', monospace; letter-spacing: .28em;
  text-transform: uppercase; color: var(--q-accent2);
}
.marquee .q-head {
  font-family: 'Anton', sans-serif; font-weight: 400;
  text-transform: uppercase; line-height: .86; letter-spacing: .005em;
  margin: 0; display: flex; flex-direction: column;
}
.marquee .q-head .word { display: block; overflow: hidden; }
.marquee .q-head .word > span { display: block; }
.marquee .q-head .accent { color: var(--q-accent); }
.marquee .q-head .outline {
  color: transparent; -webkit-text-stroke: 2px var(--q-paper);
}
.marquee .q-cta {
  align-self: flex-start; background: var(--q-accent2); color: var(--q-bg);
  font-family: 'Archivo', sans-serif; font-weight: 800; text-transform: uppercase;
  letter-spacing: .02em; display: inline-flex; align-items: center; gap: .6em;
}
.marquee .q-cta .arr { font-family: 'JetBrains Mono', monospace; }
.marquee .q-lockup {
  display: flex; align-items: center; gap: .6em;
  font-family: 'Archivo', sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
}
.marquee .q-lockup .mk {
  background: var(--q-paper); color: var(--q-bg);
  display: flex; align-items: center; justify-content: center; aspect-ratio: 1;
  font-family: 'Anton', sans-serif;
}

/* MARQUEE · square */
.marquee.sq .q-ticker { height: 86px; font-size: 26px; }
.marquee.sq .q-stage { padding: 70px 76px; }
.marquee.sq .q-eyebrow { font-size: 24px; margin-bottom: 30px; }
.marquee.sq .q-head { font-size: 178px; }
.marquee.sq .q-cta { font-size: 30px; padding: 24px 44px; margin-top: 46px; }
.marquee.sq .q-bottombar { display: flex; align-items: center; justify-content: space-between; padding: 0 76px 64px; }
.marquee.sq .q-lockup { font-size: 30px; }
.marquee.sq .q-lockup .mk { width: 60px; font-size: 34px; }
.marquee.sq .q-contact { font-family: 'JetBrains Mono', monospace; font-size: 22px; letter-spacing: .08em; color: var(--q-paper); opacity: .7; }

/* MARQUEE · story */
.marquee.st .q-ticker { height: 96px; font-size: 30px; }
.marquee.st .q-stage { padding: 96px 84px; }
.marquee.st .q-eyebrow { font-size: 28px; margin-bottom: 40px; }
.marquee.st .q-head { font-size: 210px; }
.marquee.st .q-cta { font-size: 36px; padding: 30px 54px; margin-top: 60px; }
.marquee.st .q-bottombar { display: flex; align-items: center; justify-content: space-between; padding: 0 84px 90px; }
.marquee.st .q-lockup { font-size: 34px; }
.marquee.st .q-lockup .mk { width: 70px; font-size: 40px; }
.marquee.st .q-contact { font-family: 'JetBrains Mono', monospace; font-size: 26px; letter-spacing: .08em; color: var(--q-paper); opacity: .7; }

/* hover: accent word fills, cta nudges */
.marquee .q-head .accent { transition: color .3s ease; }
.sig-frame:hover .marquee .q-head .outline { color: var(--q-accent2); -webkit-text-stroke: 0; transition: color .35s ease; }
.marquee .q-cta { transition: transform .25s cubic-bezier(.34,1.56,.64,1); }
.sig-frame:hover .marquee .q-cta { transform: translateX(10px); }

/* ════════════════════════════════════════════════════════════
   3 · STUDIO — collage / sticker · tactile layered cards
   warm cream, ink, terracotta + sage. Bricolage + Schibsted.
   ════════════════════════════════════════════════════════════ */
.studio {
  --s-paper: #f1e7d6;
  --s-ink: #2a2018;
  --s-terra: #c75b39;
  --s-sage: #5f7355;
  --s-cream: #fbf6ec;
  background:
    radial-gradient(circle at 18% 12%, color-mix(in oklab, var(--s-terra) 12%, transparent), transparent 38%),
    radial-gradient(circle at 86% 88%, color-mix(in oklab, var(--s-sage) 16%, transparent), transparent 42%),
    var(--s-paper);
  color: var(--s-ink);
  font-family: 'Schibsted Grotesk', sans-serif;
  position: relative;
}
.studio .s-stage { position: absolute; inset: 0; }
.studio .s-card {
  position: absolute; background: var(--s-cream);
  box-shadow: 0 24px 44px -18px rgba(42,32,24,.5);
  border: 1px solid rgba(42,32,24,.06);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease;
  will-change: transform;
}
.studio .s-card image-slot { width: 100%; height: 100%; display: block; }
.sig-frame:hover .studio .s-card { transform: rotate(0deg) translateY(-6px) !important; box-shadow: 0 34px 60px -20px rgba(42,32,24,.6); }
.studio .s-sticker {
  position: absolute; font-family: 'JetBrains Mono', monospace;
  font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  border-radius: 999px; display: inline-flex; align-items: center;
  box-shadow: 0 10px 20px -10px rgba(42,32,24,.5);
}
.studio .s-stamp {
  position: absolute; border-radius: 50%;
  background: var(--s-terra); color: var(--s-cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; box-shadow: 0 16px 30px -12px rgba(199,91,57,.7);
  font-family: 'JetBrains Mono', monospace;
}
.studio .s-stamp::before {
  content: ""; position: absolute; inset: 8%; border: 1.5px dashed color-mix(in oklab, var(--s-cream) 70%, transparent); border-radius: 50%;
}
.studio .s-stamp .big { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; line-height: .9; }
.studio .s-stamp .small { letter-spacing: .12em; text-transform: uppercase; }
.studio .s-body { position: relative; z-index: 4; display: flex; flex-direction: column; }
.studio .s-eyebrow {
  font-family: 'JetBrains Mono', monospace; letter-spacing: .2em; text-transform: uppercase;
  color: var(--s-terra);
}
.studio .s-title {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  line-height: .92; letter-spacing: -.025em; margin: 0; text-wrap: balance;
}
.studio .s-cta {
  align-self: flex-start; background: var(--s-ink); color: var(--s-cream);
  font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700;
  border-radius: 999px; display: inline-flex; align-items: center; gap: .5em;
  box-shadow: 0 12px 24px -10px rgba(42,32,24,.6);
}
.studio .s-cta .arr { font-family: 'JetBrains Mono', monospace; }
.studio .s-lockup { display: flex; align-items: center; gap: .55em; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; }
.studio .s-lockup .mk {
  background: var(--s-sage); color: var(--s-cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; aspect-ratio: 1;
}

/* STUDIO · square — collage lives in the top ~half, text owns the bottom band */
.studio.sq .s-card.c1 { left: 60px; top: 56px; width: 452px; height: 452px; transform: rotate(-5deg); }
.studio.sq .s-card.c2 { left: 486px; top: 196px; width: 248px; height: 300px; transform: rotate(6deg); z-index: 3; }
.studio.sq .s-stamp { width: 198px; height: 198px; right: 64px; top: 64px; transform: rotate(11deg); z-index: 5; }
.studio.sq .s-stamp .big { font-size: 60px; }
.studio.sq .s-stamp .small { font-size: 17px; margin-top: 6px; }
.studio.sq .s-tag1 { left: 430px; top: 150px; transform: rotate(7deg); z-index: 6; }
.studio.sq .s-tag2 { left: 74px; top: 470px; transform: rotate(-6deg); z-index: 6; }
.studio.sq .s-sticker { font-size: 23px; padding: 13px 24px; }
.studio.sq .s-body { position: absolute; left: 64px; right: 64px; bottom: 80px; }
.studio.sq .s-eyebrow { font-size: 24px; margin-bottom: 16px; }
.studio.sq .s-title { font-size: 100px; }
.studio.sq .s-cta { font-size: 30px; padding: 24px 44px; margin-top: 34px; }
.studio.sq .s-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 38px; }
.studio.sq .s-lockup { font-size: 38px; }
.studio.sq .s-lockup .mk { width: 60px; font-size: 32px; }
.studio.sq .s-contact { font-family: 'JetBrains Mono', monospace; font-size: 22px; letter-spacing: .06em; color: var(--s-ink); opacity: .6; }

/* STUDIO · story */
.studio.st .s-card.c1 { left: 90px; top: 150px; width: 620px; height: 720px; transform: rotate(-4deg); }
.studio.st .s-card.c2 { right: 80px; top: 470px; width: 300px; height: 360px; transform: rotate(6deg); z-index: 3; }
.studio.st .s-stamp { width: 250px; height: 250px; right: 96px; top: 150px; transform: rotate(12deg); z-index: 5; }
.studio.st .s-stamp .big { font-size: 74px; }
.studio.st .s-stamp .small { font-size: 20px; margin-top: 6px; }
.studio.st .s-tag1 { left: 110px; top: 928px; transform: rotate(-5deg); }
.studio.st .s-sticker { font-size: 28px; padding: 16px 30px; }
.studio.st .s-body { position: absolute; left: 90px; right: 90px; bottom: 130px; }
.studio.st .s-eyebrow { font-size: 28px; margin-bottom: 22px; }
.studio.st .s-title { font-size: 150px; }
.studio.st .s-cta { font-size: 36px; padding: 30px 54px; margin-top: 44px; }
.studio.st .s-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 44px; }
.studio.st .s-lockup { font-size: 44px; }
.studio.st .s-lockup .mk { width: 70px; font-size: 38px; }
.studio.st .s-contact { font-family: 'JetBrains Mono', monospace; font-size: 26px; letter-spacing: .06em; color: var(--s-ink); opacity: .6; }

.studio .s-tag1 { background: var(--s-sage); color: var(--s-cream); }
.studio .s-tag2 { background: var(--s-cream); color: var(--s-ink); border: 1px solid rgba(42,32,24,.12); }

/* ════════════════════════════════════════════════════════════
   4 · SPOTLIGHT — cinematic full-bleed · photo IS the frame
   real photography, dark scrim, italic Bodoni + warm gold.
   ════════════════════════════════════════════════════════════ */
.spotlight {
  --sp-gold: #d8b06a;
  --sp-ink: #100d0a;
  background: var(--sp-ink);
  color: #fff;
  font-family: 'Jost', sans-serif;
  position: relative;
}
.spotlight .sp-photo { position: absolute; inset: 0; overflow: hidden; background: #221c16; }
.spotlight .sp-photo image-slot { width: 100%; height: 100%; display: block; transition: transform 1.5s cubic-bezier(.22,1,.36,1); will-change: transform; }
.sig-frame:hover .spotlight .sp-photo image-slot { transform: scale(1.06); }
.spotlight .sp-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16,13,10,.62) 0%, rgba(16,13,10,.05) 24%, rgba(16,13,10,.12) 52%, rgba(16,13,10,.9) 100%);
}
.spotlight .sp-sweep {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 42%, rgba(255,255,255,.22) 49%, transparent 57%);
  transform: translateX(-130%);
}
.sig-frame:hover .spotlight .sp-sweep { animation: sp-sweep 1.15s cubic-bezier(.5,0,.2,1) .05s both; }
@keyframes sp-sweep { from { transform: translateX(-130%); } to { transform: translateX(130%); } }
.spotlight .sp-inner { position: absolute; inset: 0; display: flex; flex-direction: column; }
.spotlight .sp-top { display: flex; align-items: flex-start; justify-content: space-between; }
.spotlight .sp-eyebrow { font-family: 'JetBrains Mono', monospace; letter-spacing: .3em; text-transform: uppercase; color: var(--sp-gold); display: flex; align-items: center; gap: 16px; }
.spotlight .sp-eyebrow .ln { width: 54px; height: 1px; background: var(--sp-gold); }
.spotlight .sp-offer { font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: .14em; border: 1px solid var(--sp-gold); color: var(--sp-gold); text-align: center; line-height: 1.1; backdrop-filter: blur(2px); }
.spotlight .sp-offer b { display: block; font-weight: 600; }
.spotlight .sp-spacer { flex: 1; }
.spotlight .sp-title { font-family: 'Bodoni Moda', serif; font-weight: 500; line-height: .95; letter-spacing: -.01em; margin: 0; text-wrap: balance; text-shadow: 0 2px 30px rgba(0,0,0,.4); }
.spotlight .sp-title em { font-style: italic; font-weight: 400; color: var(--sp-gold); }
.spotlight .sp-sub { color: rgba(255,255,255,.82); font-weight: 300; margin: 0; }
.spotlight .sp-foot { display: flex; align-items: flex-end; justify-content: space-between; }
.spotlight .sp-cta { display: inline-flex; align-items: center; gap: .6em; font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: .14em; color: #fff; border-bottom: 1px solid var(--sp-gold); padding-bottom: 8px; transition: gap .25s ease; }
.sig-frame:hover .spotlight .sp-cta { gap: 1.1em; }
.spotlight .sp-lockup { display: flex; align-items: center; gap: 14px; font-family: 'Bodoni Moda', serif; }
.spotlight .sp-lockup .mk { border: 1px solid rgba(255,255,255,.55); border-radius: 50%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }

/* SPOTLIGHT · square */
.spotlight.sq .sp-inner { padding: 68px 70px; }
.spotlight.sq .sp-eyebrow { font-size: 22px; }
.spotlight.sq .sp-offer { font-size: 17px; padding: 13px 17px; }
.spotlight.sq .sp-offer b { font-size: 30px; }
.spotlight.sq .sp-title { font-size: 112px; }
.spotlight.sq .sp-sub { font-size: 29px; margin-top: 26px; max-width: 17ch; }
.spotlight.sq .sp-foot { margin-top: 44px; }
.spotlight.sq .sp-cta { font-size: 22px; }
.spotlight.sq .sp-lockup { font-size: 40px; }
.spotlight.sq .sp-lockup .mk { width: 62px; font-size: 32px; }

/* SPOTLIGHT · story */
.spotlight.st .sp-inner { padding: 96px 84px 110px; }
.spotlight.st .sp-eyebrow { font-size: 26px; }
.spotlight.st .sp-offer { font-size: 20px; padding: 16px 20px; }
.spotlight.st .sp-offer b { font-size: 36px; }
.spotlight.st .sp-title { font-size: 138px; }
.spotlight.st .sp-sub { font-size: 36px; margin-top: 32px; max-width: 17ch; }
.spotlight.st .sp-foot { margin-top: 56px; }
.spotlight.st .sp-cta { font-size: 26px; }
.spotlight.st .sp-lockup { font-size: 50px; }
.spotlight.st .sp-lockup .mk { width: 74px; font-size: 38px; }

/* ════════════════════════════════════════════════════════════
   5 · RISO — screenprint duotone · overprint pop
   ribbon paper, ink blue + flouro pink, halftone, misregister.
   ════════════════════════════════════════════════════════════ */
.riso {
  --r-paper: #f1e8d2;
  --r-blue: #21317a;
  --r-pink: #ff4f7b;
  --r-ink: #181712;
  background-color: var(--r-paper);
  color: var(--r-blue);
  font-family: 'Schibsted Grotesk', sans-serif;
  position: relative; overflow: hidden;
}
.riso .r-halftone { position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(var(--r-blue) 1.3px, transparent 1.6px);
  background-size: 13px 13px;
  -webkit-mask-image: linear-gradient(115deg, #000 0 26%, transparent 52%);
          mask-image: linear-gradient(115deg, #000 0 26%, transparent 52%);
}
.riso .r-photo { position: absolute; overflow: hidden; border: none; background: var(--r-paper); }
.riso .r-photo image-slot { width: 100%; height: 100%; display: block; filter: grayscale(1) contrast(1.18) brightness(1.06); }
.riso .r-photo::before { content: ""; position: absolute; inset: 0; background: var(--r-pink); mix-blend-mode: multiply; pointer-events: none; }
.riso .r-photo::after { content: ""; position: absolute; inset: 0; background: var(--r-blue); mix-blend-mode: lighten; pointer-events: none; }
.riso .r-frame { position: absolute; pointer-events: none; }
.riso .r-frame.blue { border: 3px solid var(--r-blue); }
.riso .r-frame.pink { border: 3px solid var(--r-pink); }
.riso .r-body { position: absolute; z-index: 5; }
.riso .r-eyebrow { font-family: 'JetBrains Mono', monospace; letter-spacing: .2em; text-transform: uppercase; color: var(--r-pink); }
.riso .r-title {
  position: relative; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  text-transform: uppercase; line-height: .82; letter-spacing: -.02em; margin: 0; color: var(--r-pink);
}
.riso .r-title::before {
  content: attr(data-text); position: absolute; left: 7px; top: 7px;
  color: var(--r-blue); mix-blend-mode: multiply; z-index: -1; pointer-events: none;
}
.riso .r-burst {
  position: absolute; z-index: 6; background: var(--r-pink); color: var(--r-paper);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  font-family: 'JetBrains Mono', monospace;
  clip-path: polygon(50% 0%,61% 13%,78% 6%,78% 25%,96% 25%,86% 41%,100% 50%,86% 59%,96% 75%,78% 75%,78% 94%,61% 87%,50% 100%,39% 87%,22% 94%,22% 75%,4% 75%,14% 59%,0% 50%,14% 41%,4% 25%,22% 25%,22% 6%,39% 13%);
}
.riso .r-burst .big { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; line-height: .85; }
.riso .r-burst .small { letter-spacing: .1em; text-transform: uppercase; }
.riso .r-cta {
  align-self: flex-start; background: var(--r-blue); color: var(--r-paper);
  font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: .5em; border-radius: 2px;
}
.riso .r-cta .arr { font-family: 'JetBrains Mono', monospace; }
.riso .r-foot { display: flex; align-items: center; justify-content: space-between; }
.riso .r-lockup { display: flex; align-items: center; gap: .5em; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; color: var(--r-blue); }
.riso .r-lockup .mk { background: var(--r-pink); color: var(--r-paper); border-radius: 50%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.riso .r-contact { font-family: 'JetBrains Mono', monospace; letter-spacing: .06em; color: var(--r-blue); opacity: .7; }
/* hover: misregistration shifts apart */
.riso .r-title::before { transition: transform .3s ease; }
.sig-frame:hover .riso .r-title::before { transform: translate(4px, 4px); }
.riso .r-burst { transition: transform .4s cubic-bezier(.34,1.56,.64,1); }
.sig-frame:hover .riso .r-burst { transform: rotate(-8deg) scale(1.05); }

/* RISO · square */
.riso.sq .r-photo { left: 70px; top: 70px; width: 520px; height: 430px; }
.riso.sq .r-frame.blue { left: 90px; top: 88px; width: 520px; height: 430px; }
.riso.sq .r-burst { width: 230px; height: 230px; right: 52px; top: 56px; transform: rotate(-10deg); }
.riso.sq .r-burst .big { font-size: 60px; }
.riso.sq .r-burst .small { font-size: 18px; margin-top: 4px; }
.riso.sq .r-body { left: 70px; right: 70px; bottom: 78px; }
.riso.sq .r-eyebrow { font-size: 24px; margin-bottom: 18px; }
.riso.sq .r-title { font-size: 124px; }
.riso.sq .r-cta { font-size: 28px; padding: 20px 38px; margin-top: 34px; }
.riso.sq .r-foot { margin-top: 36px; }
.riso.sq .r-lockup { font-size: 36px; }
.riso.sq .r-lockup .mk { width: 58px; font-size: 30px; }
.riso.sq .r-contact { font-size: 21px; }

/* RISO · story */
.riso.st .r-photo { left: 90px; top: 150px; width: 620px; height: 560px; }
.riso.st .r-frame.blue { left: 116px; top: 174px; width: 620px; height: 560px; }
.riso.st .r-burst { width: 270px; height: 270px; right: 70px; top: 600px; transform: rotate(-10deg); }
.riso.st .r-burst .big { font-size: 70px; }
.riso.st .r-burst .small { font-size: 20px; margin-top: 4px; }
.riso.st .r-body { left: 90px; right: 90px; bottom: 130px; }
.riso.st .r-eyebrow { font-size: 28px; margin-bottom: 22px; }
.riso.st .r-title { font-size: 168px; }
.riso.st .r-cta { font-size: 34px; padding: 26px 48px; margin-top: 44px; }
.riso.st .r-foot { margin-top: 44px; }
.riso.st .r-lockup { font-size: 46px; }
.riso.st .r-lockup .mk { width: 70px; font-size: 38px; }
.riso.st .r-contact { font-size: 25px; }

/* ════════════════════════════════════════════════════════════
   6 · BULLETIN — Swiss editorial grid · rules + one red
   bone paper, ink, signal red. Archivo black + mono labels.
   ════════════════════════════════════════════════════════════ */
.bulletin {
  --bl-paper: #f2f0e8;
  --bl-ink: #15140f;
  --bl-red: #e0402b;
  background: var(--bl-paper);
  color: var(--bl-ink);
  font-family: 'Archivo', sans-serif;
  position: relative;
}
.bulletin .bl-inner { position: absolute; inset: 0; display: flex; flex-direction: column; }
.bulletin .bl-top { display: flex; align-items: flex-end; justify-content: space-between; border-bottom: 2px solid var(--bl-ink); }
.bulletin .bl-eyebrow { font-family: 'JetBrains Mono', monospace; letter-spacing: .14em; text-transform: uppercase; display: flex; align-items: center; gap: 14px; }
.bulletin .bl-eyebrow .idx { color: var(--bl-red); font-weight: 600; }
.bulletin .bl-offer { border: 2px solid var(--bl-red); color: var(--bl-red); font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: .08em; text-align: center; line-height: 1.15; }
.bulletin .bl-offer b { font-family: 'Archivo', sans-serif; font-weight: 900; display: block; letter-spacing: -.01em; }
.bulletin .bl-head { font-family: 'Archivo', sans-serif; font-weight: 900; text-transform: uppercase; line-height: .88; letter-spacing: -.025em; margin: 0; text-wrap: balance; }
.bulletin .bl-head .dot-word { color: var(--bl-red); }
.bulletin .bl-sub { font-weight: 500; color: var(--bl-ink); opacity: .68; margin: 0; max-width: 30ch; }
.bulletin .bl-photo { position: relative; overflow: hidden; background: #ddd6c5; flex: 1; min-height: 0; }
.bulletin .bl-photo image-slot { width: 100%; height: 100%; display: block; transition: transform 1.1s cubic-bezier(.22,1,.36,1); will-change: transform; }
.sig-frame:hover .bulletin .bl-photo image-slot { transform: scale(1.05); }
.bulletin .bl-foot { display: flex; align-items: center; justify-content: space-between; border-top: 2px solid var(--bl-ink); }
.bulletin .bl-foot-r { display: flex; align-items: center; gap: 22px; }
.bulletin .bl-lockup { display: flex; align-items: center; gap: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: -.01em; }
.bulletin .bl-lockup .mk { background: var(--bl-ink); color: var(--bl-paper); display: flex; align-items: center; justify-content: center; aspect-ratio: 1; }
.bulletin .bl-cta { background: var(--bl-red); color: var(--bl-paper); font-weight: 800; text-transform: uppercase; letter-spacing: .03em; display: inline-flex; align-items: center; gap: .5em; transition: transform .25s cubic-bezier(.34,1.56,.64,1); }
.sig-frame:hover .bulletin .bl-cta { transform: translateX(8px); }
.bulletin .bl-cta .arr { font-family: 'JetBrains Mono', monospace; }
.bulletin .bl-contact { font-family: 'JetBrains Mono', monospace; letter-spacing: .05em; opacity: .65; }

/* BULLETIN · square */
.bulletin.sq .bl-inner { padding: 58px 62px; gap: 28px; }
.bulletin.sq .bl-top { padding-bottom: 20px; }
.bulletin.sq .bl-eyebrow { font-size: 20px; }
.bulletin.sq .bl-offer { font-size: 13px; padding: 9px 15px; }
.bulletin.sq .bl-offer b { font-size: 27px; }
.bulletin.sq .bl-head { font-size: 100px; }
.bulletin.sq .bl-sub { font-size: 25px; }
.bulletin.sq .bl-foot { padding-top: 20px; }
.bulletin.sq .bl-lockup { font-size: 30px; }
.bulletin.sq .bl-lockup .mk { width: 52px; font-size: 26px; }
.bulletin.sq .bl-cta { font-size: 22px; padding: 15px 28px; }
.bulletin.sq .bl-contact { font-size: 19px; }

/* BULLETIN · story */
.bulletin.st .bl-inner { padding: 84px 78px 96px; gap: 40px; }
.bulletin.st .bl-top { padding-bottom: 26px; }
.bulletin.st .bl-eyebrow { font-size: 25px; }
.bulletin.st .bl-offer { font-size: 16px; padding: 12px 18px; }
.bulletin.st .bl-offer b { font-size: 34px; }
.bulletin.st .bl-head { font-size: 150px; }
.bulletin.st .bl-sub { font-size: 32px; }
.bulletin.st .bl-foot { padding-top: 26px; }
.bulletin.st .bl-lockup { font-size: 40px; }
.bulletin.st .bl-lockup .mk { width: 66px; font-size: 34px; }
.bulletin.st .bl-cta { font-size: 28px; padding: 20px 38px; }
.bulletin.st .bl-contact { font-size: 24px; }

/* ════════════════════════════════════════════════════════════
   7 · REVEAL — before / after · draggable comparison
   warm paper, ink, terracotta. Bodoni + Jost. INTERACTIVE.
   ════════════════════════════════════════════════════════════ */
.reveal {
  --rv-paper: #f2ece0; --rv-ink: #1c1812; --rv-accent: #b0603a;
  background: var(--rv-paper); color: var(--rv-ink);
  font-family: 'Jost', sans-serif; position: relative;
}
.reveal .rv-inner { position: absolute; inset: 0; display: flex; flex-direction: column; }
.reveal .rv-top { display: flex; align-items: center; justify-content: space-between; }
.reveal .rv-eyebrow { font-family: 'JetBrains Mono', monospace; letter-spacing: .24em; text-transform: uppercase; color: var(--rv-accent); }
.reveal .rv-offer { font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: .1em; background: var(--rv-accent); color: var(--rv-paper); border-radius: 999px; display: inline-flex; align-items: center; gap: .5em; }
.reveal .rv-compare { position: relative; flex: 1; min-height: 0; overflow: hidden; border-radius: 16px; --pos: 55%; touch-action: none; cursor: ew-resize; background: #cdbfa8; }
.reveal .rv-img { position: absolute; inset: 0; }
.reveal .rv-img image-slot { width: 100%; height: 100%; display: block; }
.reveal .rv-after { clip-path: inset(0 0 0 var(--pos)); }
.reveal .rv-divider { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; background: var(--rv-paper); transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(0,0,0,.18); pointer-events: none; }
.reveal .rv-grip {
  position: absolute; top: 50%; left: var(--pos); transform: translate(-50%,-50%);
  border-radius: 50%; background: var(--rv-paper); color: var(--rv-ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,.32); font-family: 'JetBrains Mono', monospace; pointer-events: none;
}
.reveal .rv-tag { position: absolute; bottom: 22px; font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: .16em; background: rgba(28,24,18,.74); color: #fff; backdrop-filter: blur(3px); border-radius: 999px; pointer-events: none; }
.reveal .rv-tag.before { left: 22px; }
.reveal .rv-tag.after { right: 22px; background: var(--rv-accent); }
.reveal .rv-head { font-family: 'Bodoni Moda', serif; font-weight: 500; line-height: .98; letter-spacing: -.01em; margin: 0; text-wrap: balance; }
.reveal .rv-head em { font-style: italic; color: var(--rv-accent); font-weight: 400; }
.reveal .rv-foot { display: flex; align-items: center; justify-content: space-between; }
.reveal .rv-cta { background: var(--rv-ink); color: var(--rv-paper); font-family: 'Jost', sans-serif; font-weight: 500; border-radius: 999px; display: inline-flex; align-items: center; gap: .5em; }
.reveal .rv-cta .arr { font-family: 'JetBrains Mono', monospace; }
.reveal .rv-lockup { display: flex; align-items: center; gap: 12px; font-family: 'Bodoni Moda', serif; }
.reveal .rv-lockup .mk { border: 1px solid var(--rv-ink); border-radius: 50%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
@media (prefers-reduced-motion: no-preference) {
  .reveal .sig-canvas[data-anim] .rv-grip, .sig-canvas.reveal[data-anim] .rv-grip { animation: rv-hint 2.4s ease-in-out 1s 2 both; }
}
@keyframes rv-hint { 0%,100% { transform: translate(-50%,-50%); } 35% { transform: translate(calc(-50% - 26px),-50%); } 65% { transform: translate(calc(-50% + 26px),-50%); } }

/* REVEAL · square */
.reveal.sq .rv-inner { padding: 58px 60px; gap: 28px; }
.reveal.sq .rv-eyebrow { font-size: 21px; }
.reveal.sq .rv-offer { font-size: 18px; padding: 11px 20px; }
.reveal.sq .rv-grip { width: 64px; height: 64px; font-size: 26px; }
.reveal.sq .rv-tag { font-size: 18px; padding: 10px 18px; }
.reveal.sq .rv-head { font-size: 66px; }
.reveal.sq .rv-cta { font-size: 24px; padding: 16px 30px; }
.reveal.sq .rv-lockup { font-size: 32px; }
.reveal.sq .rv-lockup .mk { width: 54px; font-size: 28px; }

/* REVEAL · story */
.reveal.st .rv-inner { padding: 84px 76px 96px; gap: 40px; }
.reveal.st .rv-eyebrow { font-size: 26px; }
.reveal.st .rv-offer { font-size: 22px; padding: 14px 24px; }
.reveal.st .rv-grip { width: 78px; height: 78px; font-size: 32px; }
.reveal.st .rv-tag { font-size: 22px; padding: 12px 22px; bottom: 30px; }
.reveal.st .rv-tag.before { left: 30px; } .reveal.st .rv-tag.after { right: 30px; }
.reveal.st .rv-head { font-size: 92px; }
.reveal.st .rv-cta { font-size: 28px; padding: 20px 38px; }
.reveal.st .rv-lockup { font-size: 42px; }
.reveal.st .rv-lockup .mk { width: 66px; font-size: 34px; }

/* ════════════════════════════════════════════════════════════
   8 · SHOWCASE — single product hero · boutique clean
   ivory, ink, muted gold. Bodoni name + Jost. price-led.
   ════════════════════════════════════════════════════════════ */
.product {
  --pd-paper: #f5efe4; --pd-ink: #211d16; --pd-soft: #8a7d6a; --pd-gold: #a9854a;
  background:
    radial-gradient(120% 80% at 50% 8%, color-mix(in oklab, var(--pd-gold) 9%, transparent), transparent 60%),
    var(--pd-paper);
  color: var(--pd-ink); font-family: 'Jost', sans-serif; position: relative;
}
.product .pd-inner { position: absolute; inset: 0; display: flex; flex-direction: column; }
.product .pd-top { display: flex; align-items: center; justify-content: space-between; }
.product .pd-eyebrow { font-family: 'JetBrains Mono', monospace; letter-spacing: .22em; text-transform: uppercase; color: var(--pd-gold); }
.product .pd-contact { font-family: 'JetBrains Mono', monospace; letter-spacing: .06em; color: var(--pd-soft); }
.product .pd-stage { flex: 1; min-height: 0; position: relative; display: flex; align-items: center; justify-content: center; }
.product .pd-photo { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 44px 80px -34px rgba(33,29,22,.6); background: #ddd3c0; }
.product .pd-photo image-slot { width: 100%; height: 100%; display: block; transition: transform 1.2s cubic-bezier(.22,1,.36,1); }
.sig-frame:hover .product .pd-photo image-slot { transform: scale(1.05); }
.product .pd-offer {
  position: absolute; border-radius: 50%; background: var(--pd-gold); color: var(--pd-paper);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  font-family: 'JetBrains Mono', monospace; box-shadow: 0 16px 30px -12px rgba(169,133,74,.7); z-index: 3;
}
.product .pd-offer b { font-family: 'Bodoni Moda', serif; font-weight: 600; line-height: .9; }
.product .pd-name { font-family: 'Bodoni Moda', serif; font-weight: 500; line-height: 1; letter-spacing: -.01em; margin: 0; text-wrap: balance; }
.product .pd-sub { color: var(--pd-soft); font-weight: 300; margin: 0; }
.product .pd-buy { display: flex; align-items: center; justify-content: space-between; }
.product .pd-price { font-family: 'Bodoni Moda', serif; font-weight: 600; line-height: 1; }
.product .pd-cta { background: var(--pd-ink); color: var(--pd-paper); font-family: 'Jost', sans-serif; font-weight: 500; border-radius: 999px; display: inline-flex; align-items: center; gap: .55em; transition: gap .25s ease; }
.sig-frame:hover .product .pd-cta { gap: 1em; }
.product .pd-cta .arr { font-family: 'JetBrains Mono', monospace; }

/* SHOWCASE · square */
.product.sq .pd-inner { padding: 56px 64px 64px; }
.product.sq .pd-top { font-size: 20px; }
.product.sq .pd-photo { width: 560px; height: 560px; }
.product.sq .pd-offer { width: 134px; height: 134px; right: 232px; top: -22px; }
.product.sq .pd-offer b { font-size: 38px; } .product.sq .pd-offer span { font-size: 14px; letter-spacing: .1em; }
.product.sq .pd-name { font-size: 64px; margin-top: 34px; }
.product.sq .pd-sub { font-size: 26px; margin-top: 12px; }
.product.sq .pd-buy { margin-top: 30px; }
.product.sq .pd-price { font-size: 60px; }
.product.sq .pd-cta { font-size: 26px; padding: 18px 38px; }

/* SHOWCASE · story */
.product.st .pd-inner { padding: 88px 80px 104px; }
.product.st .pd-top { font-size: 24px; }
.product.st .pd-photo { width: 100%; height: 900px; }
.product.st .pd-offer { width: 168px; height: 168px; right: 40px; top: -30px; }
.product.st .pd-offer b { font-size: 48px; } .product.st .pd-offer span { font-size: 17px; letter-spacing: .1em; }
.product.st .pd-name { font-size: 92px; margin-top: 52px; }
.product.st .pd-sub { font-size: 34px; margin-top: 18px; }
.product.st .pd-buy { margin-top: 46px; }
.product.st .pd-price { font-size: 84px; }
.product.st .pd-cta { font-size: 30px; padding: 22px 46px; }

/* ════════════════════════════════════════════════════════════
   9 · SPREAD — contact-sheet grid · many photos · menu/lookbook
   warm paper, ink, brick. Bricolage + Schibsted. item + price.
   ════════════════════════════════════════════════════════════ */
.gallery {
  --gd-paper: #efe8da; --gd-ink: #211c16; --gd-accent: #bb4a2e; --gd-cream: #fbf7ee;
  background: var(--gd-paper); color: var(--gd-ink);
  font-family: 'Schibsted Grotesk', sans-serif; position: relative;
}
.gallery .gd-inner { position: absolute; inset: 0; display: flex; flex-direction: column; }
.gallery .gd-head { display: flex; align-items: flex-end; justify-content: space-between; }
.gallery .gd-titlewrap { display: flex; flex-direction: column; gap: 10px; }
.gallery .gd-eyebrow { font-family: 'JetBrains Mono', monospace; letter-spacing: .2em; text-transform: uppercase; color: var(--gd-accent); }
.gallery .gd-title { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; line-height: .92; letter-spacing: -.02em; margin: 0; }
.gallery .gd-offer { font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: .08em; background: var(--gd-accent); color: var(--gd-cream); border-radius: 999px; display: inline-flex; align-items: center; }
.gallery .gd-grid { flex: 1; min-height: 0; display: grid; }
.gallery .gd-cell { position: relative; overflow: hidden; border-radius: 12px; background: #d8cdb9; }
.gallery .gd-cell image-slot { width: 100%; height: 100%; display: block; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.gallery .gd-cell:hover image-slot { transform: scale(1.06); }
.gallery .gd-cap { position: absolute; left: 12px; bottom: 12px; right: 12px; display: flex; align-items: center; justify-content: space-between; gap: 8px; background: rgba(251,247,238,.92); backdrop-filter: blur(3px); border-radius: 8px; }
.gallery .gd-cap .n { font-weight: 700; }
.gallery .gd-cap .p { font-family: 'JetBrains Mono', monospace; color: var(--gd-accent); font-weight: 600; flex: none; }
.gallery .gd-foot { display: flex; align-items: center; justify-content: space-between; }
.gallery .gd-lockup { display: flex; align-items: center; gap: 12px; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; }
.gallery .gd-lockup .mk { background: var(--gd-accent); color: var(--gd-cream); border-radius: 50%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.gallery .gd-cta { background: var(--gd-ink); color: var(--gd-cream); font-weight: 700; border-radius: 999px; display: inline-flex; align-items: center; gap: .5em; }
.gallery .gd-cta .arr { font-family: 'JetBrains Mono', monospace; }
.gallery .gd-contact { font-family: 'JetBrains Mono', monospace; letter-spacing: .05em; color: var(--gd-ink); opacity: .6; }

/* SPREAD · square — 2×2 */
.gallery.sq .gd-inner { padding: 56px 60px; gap: 26px; }
.gallery.sq .gd-eyebrow { font-size: 20px; }
.gallery.sq .gd-title { font-size: 64px; }
.gallery.sq .gd-offer { font-size: 18px; padding: 12px 22px; }
.gallery.sq .gd-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 18px; }
.gallery.sq .gd-cap { font-size: 21px; padding: 11px 15px; }
.gallery.sq .gd-foot { } .gallery.sq .gd-lockup { font-size: 30px; } .gallery.sq .gd-lockup .mk { width: 52px; font-size: 26px; }
.gallery.sq .gd-cta { font-size: 22px; padding: 14px 28px; } .gallery.sq .gd-contact { font-size: 19px; }

/* SPREAD · story — 2×3 */
.gallery.st .gd-inner { padding: 80px 74px 92px; gap: 36px; }
.gallery.st .gd-eyebrow { font-size: 25px; }
.gallery.st .gd-title { font-size: 92px; }
.gallery.st .gd-offer { font-size: 22px; padding: 14px 26px; }
.gallery.st .gd-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 1fr); gap: 22px; }
.gallery.st .gd-cap { font-size: 25px; padding: 13px 17px; }
.gallery.st .gd-lockup { font-size: 40px; } .gallery.st .gd-lockup .mk { width: 64px; font-size: 32px; }
.gallery.st .gd-cta { font-size: 28px; padding: 18px 36px; } .gallery.st .gd-contact { font-size: 24px; }
