/* ============================================================
   light.css — 从洲洲 / Hapince · Portfolite-style light build
   Warm off-white, near-black ink, rounded cards, pill buttons.
   ============================================================ */

:root {
  --bg: #ece9e3;
  --surface: #f7f5f1;
  --surface-2: #ffffff;
  --ink: #1a1916;
  --ink-2: #46443e;
  --ink-dim: rgba(26, 25, 22, 0.58);
  --ink-faint: rgba(26, 25, 22, 0.34);
  --line: rgba(26, 25, 22, 0.12);
  --line-soft: rgba(26, 25, 22, 0.07);
  --accent: #ff5a1f;
  --accent-ink: #ffffff;
  --sans: "Hanken Grotesk", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", system-ui, sans-serif;
  --disp: "Schibsted Grotesk", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.5, 0.01, 0.05, 1);
  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 14px;
  --gut: clamp(18px, 4vw, 56px);
  --maxw: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none), (pointer: coarse) { body { cursor: auto; } }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--accent); color: #fff; }

.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.disp { font-family: var(--disp); }
.mono { font-family: var(--mono); }

/* ---------- type scale ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-2);
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 100px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.eyebrow.center { justify-content: center; }

.sec-head { text-align: center; max-width: 640px; margin: 0 auto clamp(40px, 6vh, 72px); }
.sec-head .eyebrow { margin-bottom: 22px; }
.sec-title {
  font-family: var(--disp); font-weight: 600;
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  line-height: 1.02; letter-spacing: -0.025em;
}
.sec-desc { color: var(--ink-dim); font-size: clamp(1rem, 1.3vw, 1.15rem); margin-top: 18px; max-width: 46ch; margin-left: auto; margin-right: auto; }

section { padding: clamp(56px, 9vh, 120px) 0; }
section + section { padding-top: 0; }

/* ============================================================
   CURSOR
   ============================================================ */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9000;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--ink); pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease),
    background 0.3s var(--ease), opacity 0.3s var(--ease);
  mix-blend-mode: difference;
}
.cursor.is-hover { width: 56px; height: 56px; background: var(--accent); mix-blend-mode: normal; opacity: 0.25; }
.cursor.is-dark { background: var(--surface); }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 16px; left: 0; width: 100%; z-index: 800;
  display: flex; justify-content: center; pointer-events: none;
  padding: 0 var(--gut);
}
.nav__inner {
  pointer-events: auto;
  display: flex; align-items: center; justify-content: space-between; gap: clamp(16px, 3vw, 40px);
  width: 100%; max-width: 1100px;
  background: rgba(247, 245, 241, 0.8);
  backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 8px 8px 22px;
  box-shadow: 0 8px 30px rgba(26, 25, 22, 0.08);
}
.nav__links { display: flex; gap: 4px; margin: 0 auto; }
.nav__logo { font-family: var(--disp); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; display: flex; align-items: center; gap: 8px; }
.nav__logo .av {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center; font-size: 0.7rem; font-weight: 700;
}
.nav__links { display: flex; gap: 4px; }
.nav__links a {
  font-size: 0.85rem; font-weight: 500; color: var(--ink-2);
  padding: 8px 14px; border-radius: 100px; transition: 0.25s var(--ease);
}
.nav__links a:hover { background: var(--bg); color: var(--ink); }
.nav__links + .nav__right { margin-left: 0; }
.nav__right { display: flex; align-items: center; gap: 8px; }
.lang {
  display: inline-flex; background: var(--bg); border-radius: 100px; padding: 3px;
}
.lang button {
  border: none; background: none; font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  color: var(--ink-faint); padding: 5px 11px; border-radius: 100px; cursor: none; transition: 0.25s var(--ease);
}
.lang button.active { background: var(--ink); color: var(--surface); }
@media (hover:none),(pointer:coarse){ .lang button { cursor: pointer; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--sans); font-weight: 600; font-size: 0.9rem;
  padding: 13px 22px; border-radius: 100px; cursor: none;
  border: 1px solid transparent; transition: 0.3s var(--ease); white-space: nowrap;
}
.btn--dark { background: var(--ink); color: var(--surface); }
.btn--dark:hover { background: var(--accent); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { background: var(--surface-2); border-color: var(--ink); }
.btn--sm { padding: 10px 18px; font-size: 0.82rem; }
.btn .arr { transition: transform 0.3s var(--ease); }
.btn:hover .arr { transform: translate(3px, -3px); }
@media (hover:none),(pointer:coarse){ .btn, .nav__links a { cursor: pointer; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(120px, 18vh, 200px); padding-bottom: clamp(40px, 7vh, 90px); text-align: center; }
.hero .eyebrow { margin-bottom: clamp(24px, 4vh, 40px); }
.hero__title {
  font-family: var(--disp); font-weight: 600;
  font-size: clamp(2.6rem, 7.4vw, 6.2rem);
  line-height: 1.06; letter-spacing: -0.035em;
  margin: 0 auto; max-width: 100%;
}
.hero__title .accent { color: var(--accent); font-style: italic; font-weight: 500; }
.hero__title .line { display: block; white-space: nowrap; }
.hero__title .line > span { display: inline-block; will-change: transform, opacity; }
.hero__desc {
  color: var(--ink-dim); font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  max-width: 52ch; margin: clamp(24px, 4vh, 40px) auto 0; line-height: 1.5; text-wrap: pretty;
}
.hero__cta { display: flex; gap: 12px; justify-content: center; margin-top: clamp(28px, 4vh, 44px); flex-wrap: wrap; }
.hero__cta .btn { padding: 16px 28px; font-size: 0.95rem; }
.hero__scroll { margin-top: clamp(40px, 7vh, 80px); display: inline-flex; flex-direction: column; align-items: center; gap: 10px; color: var(--ink-faint); font-size: 0.8rem; }
.hero__scroll .mouse { width: 22px; height: 34px; border: 1.5px solid var(--ink-faint); border-radius: 100px; position: relative; }
.hero__scroll .mouse::after { content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 3px; height: 6px; border-radius: 2px; background: var(--ink-faint); animation: scrollDot 1.6s var(--ease) infinite; }
@keyframes scrollDot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 100%{opacity:0;transform:translate(-50%,10px)} }

/* marquee strip */
.strip { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 0; background: var(--surface); }
.strip__row { display: flex; width: max-content; white-space: nowrap; padding: 20px 0; will-change: transform; }
.strip__item { font-family: var(--disp); font-weight: 600; font-size: clamp(1.3rem, 2.6vw, 2.1rem); color: var(--ink); display: inline-flex; align-items: center; gap: 0.6em; padding: 0 0.4em; }
.strip__item .sep { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }

/* ============================================================
   WORKS
   ============================================================ */
.works__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2.2vw, 28px);
}
.pcard {
  background: var(--surface); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line-soft); cursor: none;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex; flex-direction: column;
}
.pcard:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(26,25,22,0.12); }
.pcard__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--ink); border-radius: calc(var(--r-lg) - 8px); margin: 8px 8px 0; }
.pcard__viz { position: absolute; inset: 0; width: 100%; height: 100%; }
.pcard__media image-slot { position: absolute; inset: 0; width: 100% !important; height: 100% !important; z-index: 1; }
.pcard__badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(247,245,241,0.92); color: var(--ink); padding: 6px 12px; border-radius: 100px;
}
.pcard__view {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: var(--surface);
  display: grid; place-items: center; transform: scale(0) rotate(-30deg); transition: transform 0.4s var(--ease);
}
.pcard:hover .pcard__view { transform: scale(1) rotate(0); }
.pcard__body { padding: clamp(18px, 1.8vw, 26px); display: flex; flex-direction: column; gap: 10px; }
.pcard__title { font-family: var(--disp); font-weight: 600; font-size: clamp(1.4rem, 2.2vw, 1.9rem); letter-spacing: -0.02em; line-height: 1.05; }
.pcard__desc { color: var(--ink-dim); font-size: 0.96rem; line-height: 1.45; }
.pcard__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 6px; }
.pcard__tags span { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-2); border: 1px solid var(--line); border-radius: 100px; padding: 4px 10px; }
.works__foot { display: flex; justify-content: center; margin-top: clamp(36px, 5vh, 56px); }

/* ============================================================
   ABOUT
   ============================================================ */
.about__card {
  background: var(--surface); border-radius: var(--r-lg); border: 1px solid var(--line-soft);
  padding: clamp(20px, 3vw, 44px);
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(24px, 4vw, 56px); align-items: stretch;
}
.about__photo { position: relative; border-radius: var(--r-md); overflow: hidden; background: var(--ink); min-height: 380px; }
.about__photo image-slot { position: absolute; inset: 0; width: 100% !important; height: 100% !important; }
.about__photo .ph {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  background: linear-gradient(140deg, #2a2722, #15130f); color: rgba(255,255,255,0.4);
  font-family: var(--disp); font-size: clamp(4rem, 8vw, 7rem); font-weight: 700; letter-spacing: -0.04em;
}
.about__right { display: flex; flex-direction: column; }
.about__right .eyebrow { align-self: flex-start; margin-bottom: 22px; }
.about__name { font-family: var(--disp); font-weight: 600; font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.025em; line-height: 1.02; margin-bottom: 18px; }
.about__bio { color: var(--ink-dim); font-size: clamp(1rem, 1.3vw, 1.12rem); line-height: 1.6; max-width: 48ch; }
.about__sub { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin: clamp(26px,3.5vh,38px) 0 14px; }
.about__skills { display: flex; flex-wrap: wrap; gap: 8px; }
.about__skills span { font-size: 0.82rem; font-weight: 500; color: var(--ink-2); background: var(--bg); border-radius: 100px; padding: 8px 15px; }
.about__hist { display: flex; flex-direction: column; margin-top: 8px; }
.about__hrow { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line); }
.about__hrow:last-child { border-bottom: 1px solid var(--line); }
.about__hrow .ro { font-weight: 600; font-size: 1rem; }
.about__hrow .or { color: var(--ink-dim); font-size: 0.9rem; }
.about__hrow .yr { font-family: var(--mono); font-size: 0.72rem; color: var(--ink-faint); white-space: nowrap; }
.about__hrow .now { color: var(--accent); }

/* ============================================================
   PROCESS
   ============================================================ */
.proc__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.proc {
  background: var(--surface); border-radius: var(--r-md); border: 1px solid var(--line-soft);
  padding: clamp(24px, 2.6vw, 38px); position: relative; min-height: 240px;
  display: flex; flex-direction: column; transition: 0.4s var(--ease);
}
.proc:hover { background: var(--ink); color: var(--surface); }
.proc:hover .proc__desc { color: rgba(247,245,241,0.7); }
.proc:hover .proc__n { border-color: rgba(247,245,241,0.3); color: var(--surface); }
.proc__n { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; font-family: var(--disp); font-weight: 700; font-size: 1.1rem; margin-bottom: auto; transition: 0.4s var(--ease); }
.proc__title { font-family: var(--disp); font-weight: 600; font-size: clamp(1.4rem, 2vw, 1.8rem); letter-spacing: -0.02em; margin: 30px 0 12px; }
.proc__desc { color: var(--ink-dim); font-size: 0.96rem; line-height: 1.5; transition: 0.4s var(--ease); }

/* ============================================================
   SERVICES
   ============================================================ */
.serv__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(16px, 2.2vw, 28px); align-items: stretch; }
.serv__photo { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--ink); min-height: 420px; }
.serv__photo image-slot { position: absolute; inset: 0; width: 100% !important; height: 100% !important; }
.serv__photo .ph { position: absolute; inset: 0; }
.serv__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.serv {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: clamp(22px, 1.8vw, 30px); display: flex; flex-direction: column; gap: 12px;
  transition: 0.4s var(--ease); min-height: 280px;
}
.serv:hover { background: var(--ink); color: var(--surface); transform: translateY(-6px); }
.serv:hover .serv__desc { color: rgba(247,245,241,0.7); }
.serv:hover .serv__tags span { border-color: rgba(247,245,241,0.25); color: rgba(247,245,241,0.7); }
.serv__n { font-family: var(--mono); font-size: 0.8rem; color: var(--accent); margin-bottom: 6px; }
.serv > div { display: flex; flex-direction: column; flex: 1; gap: 8px; }
.serv__title { font-family: var(--disp); font-weight: 600; font-size: clamp(1.25rem, 1.5vw, 1.55rem); letter-spacing: -0.02em; margin-bottom: 4px; line-height: 1.1; }
.serv__desc { color: var(--ink-dim); font-size: 0.92rem; line-height: 1.5; margin-bottom: 4px; }
.serv__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; }
.serv__tags span { font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-2); border: 1px solid var(--line); border-radius: 100px; padding: 4px 10px; }

/* ============================================================
   STATS
   ============================================================ */
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 24px); }
.stat { background: var(--ink); color: var(--surface); border-radius: var(--r-md); padding: clamp(24px, 2.6vw, 40px); display: flex; flex-direction: column; gap: 8px; min-height: 200px; justify-content: space-between; }
.stat:nth-child(1), .stat:nth-child(4) { background: var(--accent); }
.stat__n { font-family: var(--disp); font-weight: 700; font-size: clamp(3rem, 6vw, 5rem); line-height: 0.9; letter-spacing: -0.04em; }
.stat__k { font-size: 0.92rem; color: rgba(247,245,241,0.72); line-height: 1.4; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__wrap { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: none; cursor: none; font-family: var(--disp); font-weight: 600; font-size: clamp(1.15rem, 1.9vw, 1.6rem); color: var(--ink); letter-spacing: -0.015em; padding: clamp(20px, 2.4vw, 30px) 50px clamp(20px, 2.4vw, 30px) 0; position: relative; display: block; }
.faq__q .ic { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); width: 26px; height: 26px; }
.faq__q .ic::before, .faq__q .ic::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; transition: 0.35s var(--ease); }
.faq__q .ic::before { top: 50%; left: 4px; right: 4px; height: 2px; transform: translateY(-50%); }
.faq__q .ic::after { left: 50%; top: 4px; bottom: 4px; width: 2px; transform: translateX(-50%); }
.faq__item.open .faq__q .ic::after { transform: translateX(-50%) scaleY(0); }
.faq__a { overflow: hidden; height: 0; }
.faq__a-inner { padding: 0 50px clamp(22px, 2.4vw, 30px) 0; color: var(--ink-dim); font-size: clamp(0.98rem, 1.2vw, 1.1rem); line-height: 1.6; max-width: 60ch; }
@media (hover:none),(pointer:coarse){ .faq__q { cursor: pointer; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--surface); border-radius: clamp(28px, 4vw, 48px) clamp(28px, 4vw, 48px) 0 0; margin-top: clamp(40px, 6vh, 80px); padding: clamp(56px, 9vh, 120px) 0 36px; }
.footer__avail { display: inline-flex; align-items: center; gap: 0.6em; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(247,245,241,0.7); border: 1px solid rgba(247,245,241,0.18); padding: 8px 16px; border-radius: 100px; margin-bottom: clamp(30px,5vh,50px); }
.footer__avail .pulse { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 0 rgba(74,222,128,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(74,222,128,0.5)} 70%{box-shadow:0 0 0 10px rgba(74,222,128,0)} 100%{box-shadow:0 0 0 0 rgba(74,222,128,0)} }
.footer__big { font-family: var(--disp); font-weight: 600; font-size: clamp(2rem, 5vw, 4.2rem); line-height: 1.04; letter-spacing: -0.03em; max-width: 18ch; text-wrap: balance; }
.footer__cta { margin-top: clamp(32px, 5vh, 52px); }
.footer__cta .btn { background: var(--surface); color: var(--ink); padding: 18px 30px; font-size: 1rem; }
.footer__cta .btn:hover { background: var(--accent); color: #fff; }
.footer__grid { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-top: clamp(56px, 9vh, 110px); padding-top: 30px; border-top: 1px solid rgba(247,245,241,0.14); }
.footer__links { display: flex; gap: 10px; flex-wrap: wrap; }
.footer__links a { font-size: 0.82rem; color: rgba(247,245,241,0.7); border: 1px solid rgba(247,245,241,0.18); border-radius: 100px; padding: 9px 16px; transition: 0.3s var(--ease); }
.footer__links a:hover { background: var(--surface); color: var(--ink); }
.footer__meta { font-family: var(--mono); font-size: 0.66rem; color: rgba(247,245,241,0.45); letter-spacing: 0.04em; line-height: 1.8; }
.footer__email { font-family: var(--disp); font-size: clamp(1.1rem, 2vw, 1.6rem); color: var(--surface); }

/* ============================================================
   reveal base — IntersectionObserver toggles .in (no ScrollTrigger dep)
   ============================================================ */
.r { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.r.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .works__grid { grid-template-columns: 1fr; }
  .about__card { grid-template-columns: 1fr; }
  .about__photo { min-height: 320px; }
  .proc__grid { grid-template-columns: 1fr; }
  .serv__list { grid-template-columns: 1fr 1fr; }
  .serv { min-height: 220px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .nav__inner { padding: 7px 7px 7px 14px; gap: 8px; }
  .serv__list { grid-template-columns: 1fr; }
  .serv { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
  .r { opacity: 1; transform: none; }
}
.reduce-motion .r { opacity: 1; transform: none; }

/* ============================================================
   PRINT — clean multi-page PDF of the resume
   ============================================================ */
@media print {
  @page { margin: 14mm; }
  html, body { background: #fff !important; cursor: auto !important; }
  .cursor, .hero__scroll, .strip, .footer__avail .pulse { display: none !important; }
  .r { opacity: 1 !important; transform: none !important; }
  .nav { position: static !important; padding: 0 0 16px !important; }
  .nav__inner { box-shadow: none !important; border: none !important; background: none !important; max-width: 100% !important; padding: 0 !important; }
  .nav__links { display: none !important; }
  section { padding: 18px 0 !important; break-inside: avoid; }
  .hero { padding: 10px 0 24px !important; }
  .hero__title { font-size: 44px !important; }
  .works__grid { grid-template-columns: 1fr 1fr !important; }
  .pcard, .proc, .serv, .stat, .about__card, .faq__item { break-inside: avoid; box-shadow: none !important; }
  .pcard:hover, .proc:hover, .serv:hover { transform: none !important; background: var(--surface) !important; color: var(--ink) !important; }
  .footer { background: #fff !important; color: var(--ink) !important; border-top: 1px solid var(--line); border-radius: 0 !important; }
  .footer__big, .footer__email, .footer__avail { color: var(--ink) !important; }
  .footer__links a, .footer__meta { color: var(--ink-2) !important; }
  .faq__a { height: auto !important; }
  .serv:hover .serv__desc, .proc:hover .proc__desc { color: var(--ink-dim) !important; }
  -webkit-print-color-adjust: exact; print-color-adjust: exact;
}
