/* MarginHunter — the showroom without its three limits
   Design system ported from the reference: near-black, warm grey, one orange.
   Switzer (Fontshare) for everything; display type is uppercase 600. */

:root {
  --black: #0c0c0c;
  --black-2: #151515;
  --grey: #d8d8d4;
  --grey-2: #c8c8c3;
  --mut: #7b7b76;
  --mut-l: #6e6e68;
  --ink-2: #3a3a36;
  --orange: #ff4d00;
  --line: rgba(216, 216, 212, 0.15);
  --line-d: rgba(12, 12, 12, 0.22);
  --font: "Switzer", "Inter", "Helvetica Neue", Arial, sans-serif;
  --pad: clamp(20px, 4vw, 72px);
  --ease: cubic-bezier(0.83, 0, 0.17, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { background: var(--black); color: var(--grey); }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
::selection { background: var(--orange); color: var(--black); }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; text-align: inherit; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }
@media (hover: hover) and (pointer: fine) {
  body, a, button, [role="button"], summary { cursor: none; }
}

.skip {
  position: absolute; left: -999px; top: 8px; z-index: 400;
  background: var(--orange); color: var(--black); padding: 8px 12px; font-weight: 600;
}
.skip:focus { left: 8px; }

.lbl {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}
.lbl::before { content: "■"; color: var(--orange); margin-right: 10px; font-size: 9px; vertical-align: 1px; }
.lbl.-plain::before { content: none; }
.num { font-variant-numeric: tabular-nums; }
.o { color: var(--orange); font-style: normal; }
.section { padding-left: var(--pad); padding-right: var(--pad); }

/* ---------- noise ---------- */
.noise {
  position: fixed; inset: -60%; z-index: 70; pointer-events: none; opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  animation: noise 6s steps(8) infinite;
}
@keyframes noise {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-4%, 3%); }
  50% { transform: translate(3%, -4%); }
  75% { transform: translate(-3%, -3%); }
}

/* ---------- cursor ---------- */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 300;
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: 1.5px solid transparent;
  mix-blend-mode: difference; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  transition: width 0.35s var(--ease), height 0.35s var(--ease), background 0.3s, border-color 0.3s;
}
.cursor span {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; opacity: 0; transition: opacity 0.2s; white-space: nowrap;
}
.cursor.-ring { width: 52px; height: 52px; background: transparent; border-color: #fff; }
.cursor.-case { width: 118px; height: 118px; background: transparent; border-color: #fff; }
.cursor.-case span { opacity: 1; transition-delay: 0.12s; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 200; background: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.loader__word {
  position: relative; z-index: 2;
  font-weight: 600; text-transform: uppercase; letter-spacing: -0.035em; line-height: 1;
  font-size: clamp(44px, 12vw, 180px); color: #1e1e1e;
}
.loader__word .fillwrap {
  position: absolute; inset: 0; clip-path: inset(100% 0 0 0); color: var(--orange);
}
.loader__pct {
  position: absolute; right: var(--pad); bottom: calc(var(--pad) * 0.5); z-index: 2;
  font-weight: 600; letter-spacing: -0.03em; font-size: clamp(70px, 13vw, 170px); line-height: 1; color: var(--grey);
}
.loader__pct sup { font-size: 0.26em; color: var(--orange); }
.loader__tag { position: absolute; left: var(--pad); bottom: calc(var(--pad) * 0.5 + 12px); z-index: 2; color: var(--mut); }
.loader__grid { position: absolute; inset: 0; z-index: 3; display: grid; pointer-events: none; }
.loader__grid i { background: var(--orange); opacity: 0; }
body.-noloader .loader { display: none; }

/* ---------- header ---------- */
.head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
}
.head__logo {
  display: inline-flex; align-items: baseline; gap: 2px;
  font-weight: 700; letter-spacing: -0.03em; font-size: 20px; line-height: 1;
  text-transform: uppercase; position: relative;
}
.head__logo i { font-style: normal; color: var(--orange); transition: color 0.3s; }
.head__logo:hover i { color: var(--grey); }
.head { transition: color 0.3s; }
.head.-ink { color: var(--black); }
.head.-ink .head__logo:hover i { color: var(--black); }
.head.-ink .head__mail { color: var(--mut-l); }
.head.-ink .burger i { background: var(--black); }
.head.-ink .burger:hover i { background: var(--orange); }
body.-menu .head__logo { color: var(--black); }
body.-menu .head__logo i { color: var(--black); }
.head__right { display: flex; align-items: center; gap: 22px; }
.head__mail {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mut);
  transition: color 0.3s;
}
.head__mail:hover { color: var(--orange); }
body.-menu .head__mail { color: var(--black); }
@media (max-width: 640px) { .head__mail { display: none; } }
.burger { width: 52px; height: 40px; position: relative; }
.burger i {
  position: absolute; left: 10px; right: 10px; height: 2px; background: var(--grey);
  transition: transform 0.45s var(--ease), background 0.3s;
}
.burger i:nth-child(1) { top: 14px; }
.burger i:nth-child(2) { top: 24px; }
.burger:hover i { background: var(--orange); }
body.-menu .burger i:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.-menu .burger i:nth-child(2) { transform: translateY(-5px) rotate(-45deg); }
body.-menu .burger i { background: var(--black); }
body.-menu .burger:hover i { background: #fff; }

/* ---------- fullscreen menu ---------- */
.menu { position: fixed; inset: 0; z-index: 110; visibility: hidden; pointer-events: none; }
body.-menu .menu { visibility: visible; pointer-events: auto; }
.menu__px { position: absolute; inset: 0; display: grid; }
.menu__px i { background: var(--orange); opacity: 0; }
.menu__inner {
  position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column;
  padding: 100px var(--pad) 26px; opacity: 0; color: var(--black); overflow: auto;
}
.menu__grid {
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: clamp(24px, 4vw, 80px); flex: 1; align-content: center;
}
.menu__nav a { display: flex; align-items: baseline; gap: clamp(12px, 2vw, 26px); padding: clamp(8px, 1.4vh, 16px) 0; }
.menu__nav a small { font-size: 12px; font-weight: 700; color: var(--black); opacity: 0.6; }
.menu__nav a b {
  font-weight: 600; text-transform: uppercase; letter-spacing: -0.03em; line-height: 1.08; color: var(--black);
  font-size: clamp(30px, 5.4vw, 80px); transition: transform 0.5s var(--ease), color 0.3s;
  display: inline-block; padding-bottom: 0.04em;
}
.menu__nav a:hover b { transform: translateX(clamp(10px, 1.8vw, 26px)); color: #fff; }
.menu__nav a:hover small { opacity: 1; color: #fff; }
.menu__aside { display: flex; flex-direction: column; gap: clamp(20px, 3.5vh, 36px); justify-content: center; }
.menu__aside .grp small {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--black); margin-bottom: 10px;
}
.menu__aside .grp a, .menu__aside .grp span {
  display: block; font-size: clamp(15px, 1.4vw, 19px); font-weight: 600; color: var(--black); padding: 3px 0; transition: color 0.3s;
}
.menu__aside .grp a:hover { color: #fff; }
.menu__foot {
  display: flex; justify-content: space-between; gap: 14px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--black);
}
@media (max-width: 760px) {
  .menu__grid { grid-template-columns: 1fr; align-content: start; gap: 34px; overflow: auto; }
}

/* ---------- hero ---------- */
.hero {
  min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  padding-top: 90px; padding-bottom: 6vh; position: relative; overflow: hidden;
}
.hero__meta { display: flex; justify-content: space-between; gap: 20px; color: var(--mut); margin-bottom: clamp(18px, 3vh, 34px); }
.hero__scroll { position: absolute; right: var(--pad); bottom: 4vh; }
@media (max-width: 1000px) { .hero__meta-mid { display: none; } }
.hero__h1 {
  margin-top: 0; font-weight: 600; text-transform: uppercase; letter-spacing: -0.035em; line-height: 0.95;
  font-size: clamp(38px, 8vw, 140px); overflow-wrap: normal;
}
.hero__h1 .line { display: block; overflow: hidden; }
.hero__h1 .line > span { display: inline-flex; align-items: center; gap: 0.18em; will-change: transform; max-width: 100%; }
.hero__h1 .ln2 { padding-left: clamp(16px, 4vw, 90px); }
.chip {
  display: inline-block; height: 0.68em; width: 1.6em; border-radius: 999px; overflow: hidden;
  vertical-align: middle; position: relative; transform-origin: left center; background: var(--black-2);
}
.chip img { position: absolute; inset: 0; }
.hero__row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-top: clamp(24px, 4vh, 44px); }
.hero__blurb { max-width: 40ch; color: var(--mut); font-size: clamp(14px, 1.1vw, 17px); }
.hero__blurb b { color: var(--grey); font-weight: 600; }
.hero__scroll {
  display: flex; align-items: center; gap: 12px; color: var(--mut);
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
}
.hero__scroll .sq { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); animation: blink 1.6s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0.15; } }
@media (max-width: 760px) {
  .hero__row { flex-direction: column; align-items: flex-start; }
  .hero__h1 { font-size: clamp(32px, 9.4vw, 140px); }
  .hero__h1 .line > span { flex-wrap: wrap; row-gap: 0; }
  .hero__h1 .ln2 { padding-left: 0; }
  .hero__meta { flex-direction: column; gap: 6px; }
}

/* ---------- manifesto ---------- */
.mani { padding-top: clamp(70px, 12vh, 150px); padding-bottom: clamp(70px, 12vh, 150px); border-top: 1px solid var(--line); }
.mani p {
  margin-top: 22px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.12;
  font-size: clamp(30px, 4.6vw, 74px); max-width: 24ch; text-transform: uppercase;
}
.mani p .w { opacity: 0.14; display: inline-block; }
.mani p .w.-on { opacity: 1; }

/* ---------- three limits ---------- */
.limits { padding-top: 0; padding-bottom: clamp(70px, 11vh, 140px); }
.limits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 22px; }
.limit { border-top: 1px solid var(--line); padding-top: 18px; padding-right: clamp(10px, 2vw, 40px); }
.limit small {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
}
.limit b {
  display: block; font-weight: 600; text-transform: uppercase; letter-spacing: -0.03em; line-height: 0.98;
  font-size: clamp(26px, 3.4vw, 52px); margin-bottom: 14px;
}
.limit p { color: var(--mut); font-size: clamp(14px, 1.1vw, 17px); max-width: 34ch; }
.limit p em { font-style: normal; color: var(--grey); font-weight: 600; }
@media (max-width: 760px) { .limits__grid { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- WORK: split showcase ---------- */
.work { position: relative; }
.work__head {
  display: flex; justify-content: space-between; align-items: baseline; color: var(--mut);
  padding: clamp(70px, 11vh, 140px) var(--pad) clamp(24px, 4vh, 44px);
}
.wshow { position: relative; height: 100svh; overflow: hidden; background: var(--black); }
.wcol { position: absolute; top: 0; height: 100%; width: calc(50% + 1px); overflow: hidden; }
.wcol.-l { left: 0; }
.wcol.-r { left: calc(50% - 1px); }
.wtrack { position: absolute; top: 0; left: 0; width: 100%; will-change: transform; }
.wcell { position: relative; overflow: hidden; }
.wfull { position: absolute; top: 0; left: 0; height: 100%; width: calc(200% - 2px); display: block; } /* = the showcase width exactly, scrollbar or not */
.wcol.-r .wfull { transform: translateX(calc(-50% + 1px)); }
.wfull img { position: absolute; inset: 0; }
.wfull::after { content: ""; position: absolute; inset: 0; background: rgba(12, 12, 12, 0.5); }
.wfull.-light::after { background: rgba(255, 255, 255, 0.28); }
.wfull.-light .wfull__name, .wfull.-light .wfull__tags, .wfull.-light .wfull__cap { color: var(--black); }
.wfull.-light .wfull__cap { color: var(--mut-l); }
.mslide.-light::after { background: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.35)); }
.mslide.-light .mslide__name, .mslide.-light .mslide__tags, .mslide.-light .lbl, .mslide.-light .mslide__cta { color: var(--black); }
.wfull__ui {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: clamp(14px, 2.4vh, 24px);
  text-align: center; padding: 0 var(--pad);
}
.wfull__tags { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey); }
.wfull__tags i { font-style: normal; color: var(--orange); padding: 0 8px; }
.wfull__name {
  font-weight: 600; text-transform: uppercase; letter-spacing: -0.03em; line-height: 0.95;
  font-size: clamp(56px, 10.5vw, 180px);
}
.wfull__cap {
  position: absolute; bottom: clamp(24px, 5vh, 48px); left: 0; right: 0; z-index: 2; text-align: center;
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(216, 216, 212, 0.55);
}
.wshow__count {
  position: absolute; left: var(--pad); bottom: clamp(24px, 5vh, 48px); z-index: 50;
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em; color: var(--grey); pointer-events: none;
  background: var(--black); padding: 8px 12px;
}
.wshow__count b { color: var(--orange); }
.wshow.-light .wshow__hint { color: rgba(12, 12, 12, 0.6); }
.wshow__hint {
  position: absolute; right: var(--pad); top: 96px; z-index: 50;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(216, 216, 212, 0.6); pointer-events: none;
}
/* mobile fallback cards */
.mslide { position: relative; height: 70svh; margin: 0 var(--pad) 14px; overflow: hidden; display: none; }
.mslide img { position: absolute; inset: 0; }
.mslide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,12,12,0.3), rgba(12,12,12,0.65)); }
.mslide__ui { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: space-between; padding: 20px; }
.mslide__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.mslide__tags { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey); }
.mslide__foot { display: flex; flex-direction: column; gap: 8px; }
.mslide__name { font-weight: 600; text-transform: uppercase; letter-spacing: -0.03em; line-height: 0.95; font-size: clamp(40px, 12vw, 76px); }
.mslide__cta { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); }
.mslide__cta b { color: var(--orange); }
.mslide .lbl { color: var(--grey); }
.work__all { display: flex; flex-direction: column; align-items: center; gap: 18px; padding: clamp(40px, 7vh, 80px) var(--pad) clamp(20px, 4vh, 44px); text-align: center; }
.work__note { color: var(--mut); font-size: clamp(14px, 1.1vw, 17px); max-width: 52ch; }
.work__note b { color: var(--grey); font-weight: 600; }
.btnAll {
  display: inline-flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 999px;
  padding: 16px 28px; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.btnAll b { color: var(--orange); font-weight: 700; transition: color 0.3s; }
.btnAll:hover { background: var(--orange); border-color: var(--orange); color: var(--black); }
.btnAll:hover b { color: var(--black); }
.btnAll.-ink { border-color: rgba(12, 12, 12, 0.35); }
.btnAll.-ink:hover { background: var(--black); border-color: var(--black); color: var(--grey); }
.btnAll.-ink:hover b { color: var(--orange); }
@media (max-width: 820px) {
  .wshow, .wshow__count, .wshow__hint { display: none; }
  .mslide { display: block; }
}
@media (min-width: 821px) { .mslide { display: none; } }

/* ---------- pixel mosaic strips ---------- */
.pxt { display: grid; height: clamp(150px, 26vh, 280px); width: 100%; }
.pxt i { opacity: 0; }
.pxt.-toGrey { background: var(--black); }
.pxt.-toGrey i { background: var(--grey); }
.pxt.-toBlack { background: var(--grey); }
.pxt.-toBlack i { background: var(--black); }

/* ---------- about (grey) ---------- */
.about { background: var(--grey); color: var(--black); padding-bottom: clamp(80px, 13vh, 160px); }
.about .lbl { color: var(--mut-l); }
.about__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(30px, 5vw, 100px); margin-top: 26px; }
.about__left { position: sticky; top: 14vh; align-self: start; }
.about__left h2 {
  font-weight: 600; text-transform: uppercase; letter-spacing: -0.03em; line-height: 0.96; font-size: clamp(40px, 5.8vw, 92px);
}
.about__left h2 .line { display: block; overflow: hidden; }
.about__left h2 .line > span { display: inline-block; }
.about__portraitWrap { position: relative; margin-top: clamp(22px, 4vh, 40px); max-width: 460px; }
.about__portrait { aspect-ratio: 4/5; overflow: hidden; position: relative; background: var(--grey-2); }
.about__portrait img { transform: scale(1.12); will-change: transform; }
.about__portrait figcaption {
  position: absolute; left: 12px; bottom: 10px; font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--grey); mix-blend-mode: difference; z-index: 2;
}
/* the conversation card that sits in the portrait slot */
.convo {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px; gap: 8px; pointer-events: none;
}
.convo__msg {
  max-width: 78%; font-size: clamp(12px, 1vw, 14px); line-height: 1.35; padding: 10px 13px; border-radius: 14px;
  background: rgba(12,12,12,0.86); color: var(--grey); backdrop-filter: blur(4px);
}
.convo__msg.-them { align-self: flex-end; background: var(--orange); color: var(--black); font-weight: 600; }
.convo__msg small { display: block; font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.6; margin-bottom: 4px; }
.badge { position: absolute; right: -34px; top: -34px; width: 112px; height: 112px; z-index: 3; pointer-events: none; }
.badge svg { width: 100%; height: 100%; animation: spin 14s linear infinite; }
.badge text { font-size: 11.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; fill: var(--black); }
.badge circle.bg { fill: var(--orange); }
@keyframes spin { to { transform: rotate(360deg); } }
.about__right p { color: var(--ink-2); font-size: clamp(16px, 1.5vw, 22px); line-height: 1.5; margin-bottom: 1.1em; max-width: 46ch; }
.about__right p b { color: var(--black); font-weight: 600; }
.about__right p .w { display: inline-block; opacity: 0.18; }
.about__right p .w.-on { opacity: 1; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: clamp(36px, 6vh, 64px); }
.stats div { border-top: 2px solid var(--black); padding-top: 14px; }
.stats b { display: block; font-weight: 600; letter-spacing: -0.03em; font-size: clamp(36px, 4.6vw, 70px); line-height: 1; }
.stats b sub, .stats b sup { font-size: 0.4em; vertical-align: baseline; }
.stats small { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mut-l); }
.about__more { margin-top: clamp(26px, 4vh, 44px); }
@media (max-width: 820px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__left { position: static; }
  .stats { grid-template-columns: 1fr 1fr; }
  .badge { right: -10px; }
}

/* ---------- services / accordion (grey) ---------- */
.services { background: var(--grey); color: var(--black); padding-top: clamp(70px, 11vh, 140px); padding-bottom: clamp(70px, 11vh, 140px); }
.services .lbl { color: var(--mut-l); }
.services__intro {
  font-weight: 600; text-transform: uppercase; letter-spacing: -0.03em; line-height: 0.98;
  font-size: clamp(34px, 5vw, 80px); margin: 22px 0 clamp(36px, 6vh, 64px); max-width: 18ch;
}
.srv { border-top: 2px solid var(--black); }
.srv:last-of-type { border-bottom: 2px solid var(--black); }
.srv__head {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto auto; align-items: center;
  gap: clamp(14px, 3vw, 40px); width: 100%; padding: clamp(18px, 2.8vh, 30px) 0; cursor: pointer;
}
@media (hover: hover) and (pointer: fine) { .srv__head { cursor: none; } }
.srv__idx { font-size: 12px; font-weight: 700; color: var(--orange); }
.srv__name {
  font-weight: 600; text-transform: uppercase; letter-spacing: -0.025em; line-height: 1;
  font-size: clamp(26px, 4.6vw, 64px); text-align: left; transition: transform 0.45s var(--ease);
}
.srv:hover .srv__name { transform: translateX(clamp(8px, 1.6vw, 22px)); }
.srv__count { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mut-l); }
.srv__plus { width: 34px; height: 34px; position: relative; flex: none; }
.srv__plus::before, .srv__plus::after {
  content: ""; position: absolute; background: var(--black); left: 50%; top: 50%; transition: transform 0.45s var(--ease);
}
.srv__plus::before { width: 18px; height: 2px; transform: translate(-50%, -50%); }
.srv__plus::after { width: 2px; height: 18px; transform: translate(-50%, -50%); }
.srv.-open .srv__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.srv__body { height: 0; overflow: hidden; }
.srv__inner {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(20px, 4vw, 70px); padding: 6px 0 clamp(24px, 4vh, 40px);
}
.srv__inner p { color: var(--ink-2); max-width: 52ch; font-size: clamp(14px, 1.15vw, 17px); }
.srv__inner p + p { margin-top: 0.8em; }
.srv__inner p b { color: var(--black); font-weight: 600; }
.srv__chips { display: flex; flex-wrap: wrap; gap: 8px; align-content: start; }
.srv__chips span {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--line-d); border-radius: 999px; padding: 7px 13px; color: var(--mut-l);
}
@media (max-width: 760px) {
  .srv__inner { grid-template-columns: 1fr; }
  .srv__count { display: none; }
}

/* ---------- fit / recognition-style rows ---------- */
.recog { padding-top: clamp(70px, 11vh, 140px); padding-bottom: clamp(70px, 11vh, 140px); }
.recog__head { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 22px; }
.recog__intro { color: var(--mut); max-width: 52ch; font-size: clamp(14px, 1.1vw, 17px); margin-bottom: 26px; }
.recog__intro b { color: var(--grey); font-weight: 600; }
.recog__after { margin: 28px 0 0; max-width: 60ch; }
.rrow {
  position: relative; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto;
  gap: 16px; align-items: center; padding: clamp(18px, 2.6vh, 28px) clamp(4px, 1vw, 16px);
  border-top: 1px solid var(--line); overflow: hidden;
}
.rrow:last-of-type { border-bottom: 1px solid var(--line); }
.rrow::before {
  content: ""; position: absolute; inset: 0; background: var(--orange);
  transform: scaleY(0); transform-origin: bottom; transition: transform 0.45s var(--ease); z-index: 0;
}
.rrow:hover::before { transform: scaleY(1); }
.rrow > * { position: relative; z-index: 1; transition: color 0.3s; }
.rrow__name { font-weight: 600; text-transform: uppercase; letter-spacing: -0.02em; font-size: clamp(19px, 2.4vw, 34px); }
.rrow__for { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mut); }
.rrow__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); justify-self: end; }
.rrow.-no .rrow__dot { background: transparent; border: 1.5px solid var(--mut); }
.rrow:hover .rrow__name, .rrow:hover .rrow__for { color: var(--black); }
.rrow:hover .rrow__dot { background: var(--black); border-color: var(--black); }
@media (max-width: 640px) {
  .rrow { grid-template-columns: 1fr auto; }
  .rrow__for { display: none; }
}

/* ---------- questions ---------- */
.qa { padding-top: 0; padding-bottom: clamp(70px, 11vh, 140px); }
.qa__head { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 22px; }
.qa details { border-top: 1px solid var(--line); }
.qa details:last-of-type { border-bottom: 1px solid var(--line); }
.qa summary {
  list-style: none; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 16px;
  padding: clamp(16px, 2.4vh, 26px) clamp(4px, 1vw, 16px);
  font-weight: 600; text-transform: uppercase; letter-spacing: -0.02em; font-size: clamp(17px, 2vw, 28px);
  transition: color 0.3s;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+"; font-weight: 400; color: var(--orange); font-size: 1.2em; line-height: 1;
  transition: transform 0.45s var(--ease);
}
.qa details[open] summary::after { transform: rotate(45deg); }
.qa summary:hover { color: var(--orange); }
.qa details p {
  color: var(--mut); max-width: 62ch; font-size: clamp(14px, 1.15vw, 17px);
  padding: 0 clamp(4px, 1vw, 16px) clamp(18px, 2.6vh, 28px);
}
.qa details p b { color: var(--grey); font-weight: 600; }

/* ---------- footer ---------- */
.foot { position: relative; overflow: hidden; padding-top: clamp(70px, 12vh, 150px); padding-bottom: 24px; border-top: 1px solid var(--line); }
.foot__cta { display: block; text-align: center; }
.foot__cta .lbl { color: var(--mut); }
.roll {
  display: block; overflow: hidden; margin-top: 16px; font-weight: 600; text-transform: uppercase;
  letter-spacing: -0.035em; line-height: 1; font-size: clamp(56px, 13.5vw, 230px); height: 1em;
}
.roll__in { display: block; transition: transform 0.55s var(--ease); }
.foot__cta:hover .roll__in { transform: translateY(-1em); }
.roll__a, .roll__b { display: block; height: 1em; line-height: 1; white-space: nowrap; }
.roll__b { color: var(--orange); }
.foot__mail {
  display: block; text-align: center; margin-top: 26px; font-size: clamp(15px, 1.7vw, 20px); font-weight: 500;
  letter-spacing: 0.03em; color: var(--mut); transition: color 0.3s; position: relative; z-index: 2;
}
.foot__mail b { color: var(--grey); font-weight: 600; position: relative; }
.foot__mail b::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 100%; background: var(--orange);
  transform: scaleX(0); transform-origin: right; transition: transform 0.5s var(--ease);
}
.foot__mail:hover b::after { transform: scaleX(1); transform-origin: left; }
.foot__mail:hover b { color: var(--orange); }
.foot__sub { text-align: center; color: var(--mut); font-size: 14px; margin: 18px auto 0; max-width: 54ch; position: relative; z-index: 2; }
.foot__meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start;
  margin-top: clamp(60px, 10vh, 120px); position: relative; z-index: 2;
}
.foot__meta .grp small {
  display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mut); margin-bottom: 10px;
}
.foot__meta .grp a, .foot__meta .grp span { display: block; font-size: 15px; font-weight: 500; padding: 3px 0; transition: color 0.3s; }
.foot__meta .grp a:hover { color: var(--orange); }
.toTop {
  justify-self: end; width: 58px; height: 58px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.toTop:hover { border-color: var(--orange); color: var(--black); background: var(--orange); }
.foot__logo {
  position: absolute; left: 50%; bottom: -0.32em; transform: translateX(-50%); z-index: 0;
  font-weight: 700; text-transform: uppercase; letter-spacing: -0.05em; line-height: 1; white-space: nowrap;
  font-size: min(15.5vw, 240px); color: var(--orange); opacity: 0.07; pointer-events: none;
}
.foot__bar {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  margin-top: clamp(46px, 8vh, 90px); padding-top: 18px; border-top: 1px solid var(--line);
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mut);
  position: relative; z-index: 2;
}
@media (max-width: 720px) {
  .foot__meta { grid-template-columns: 1fr 1fr; }
  .toTop { justify-self: start; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .noise, .cursor, .loader { display: none; }
  .hero__scroll .sq, .badge svg { animation: none; }
  .mani p .w, .about__right p .w { opacity: 1; }
  .srv__body { height: auto; }
  * { transition-duration: 0.01ms !important; }
}
