/* ============================================================
   Lucie Polišenská — herečka · VERZE 4
   Bright "wow" — white-dominant, electric accent
   ============================================================ */

:root {
  --paper:   #ffffff;
  --paper-2: #f4f3ef;
  --ink:     #0c0c0d;
  --ink-2:   #57534c;
  --ink-3:   #8d887e;
  --accent:  #2d27ee;
  --accent-d:#1c16cf;

  --line:   rgba(12,12,13,.14);
  --line-2: rgba(12,12,13,.26);

  --display: "Bricolage Grotesque", "Arial Black", system-ui, sans-serif;
  --mono:    "Space Mono", ui-monospace, "SFMono-Regular", monospace;

  --wrap: 1320px;
  --gut:  clamp(20px, 5vw, 80px);
  --ease: cubic-bezier(.16,.84,.44,1);
}

*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--display);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }
em { font-style: normal; }
::selection { background: var(--accent); color: #fff; }

/* paper grain */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  background-image: url("../img/noise.png"); background-size: 180px;
  opacity: .04; mix-blend-mode: multiply;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 500; background: var(--accent); color: #fff; padding: 10px 18px; font-size: .85rem; font-weight: 700; }
.skip-link:focus { left: 12px; top: 12px; }

/* ============================================================
   HEADER + MENU TOGGLE
   ============================================================ */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 120; transition: background .4s var(--ease), border-color .4s; border-bottom: 1px solid transparent; }
.site-header.scrolled { background: rgba(255,255,255,.8); backdrop-filter: blur(12px); border-bottom-color: var(--line); }
.hwrap { display: flex; align-items: center; justify-content: space-between; gap: 14px; height: 84px; padding-inline: var(--gut); }
.brand { font-family: var(--display); font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand span { color: var(--accent); }

.nav-toggle { display: inline-flex; align-items: center; gap: 12px; background: none; border: 0; color: var(--ink); z-index: 130; }
.nt-label { font-family: var(--mono); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.l-close { display: none; }
body.menu-open .l-open { display: none; }
body.menu-open .l-close { display: inline; }
.nt-ico { position: relative; width: 26px; height: 12px; }
.nt-ico span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink); transition: transform .35s var(--ease), top .35s var(--ease), bottom .35s var(--ease); }
.nt-ico span:nth-child(1) { top: 2px; }
.nt-ico span:nth-child(2) { bottom: 2px; }
body.menu-open .nt-ico span:nth-child(1) { top: 5px; transform: rotate(45deg); }
body.menu-open .nt-ico span:nth-child(2) { bottom: 5px; transform: rotate(-45deg); }
.header-actions { display: flex; align-items: center; gap: 16px; flex: 0 0 auto; }
.hdr-social { display: inline-flex; align-items: center; color: var(--ink); transition: color .3s, transform .3s; }
.hdr-social svg { width: 20px; height: 20px; display: block; }
.hdr-social:hover { color: var(--accent); transform: translateY(-1px); }

/* ============================================================
   MENU OVERLAY (light)
   ============================================================ */
.nav-overlay { position: fixed; inset: 0; z-index: 110; background: var(--paper-2); transform: translateY(-101%); transition: transform .65s var(--ease); display: flex; }
.nav-overlay.open { transform: none; }
.nav-inner { width: 100%; max-width: var(--wrap); margin: auto; padding: 110px var(--gut) 60px; display: grid; grid-template-columns: 1.5fr .5fr; gap: 50px; align-items: end; }
.nav-links li { overflow: hidden; }
.nav-links li a { display: flex; align-items: baseline; gap: 22px; font-family: var(--display); font-weight: 600; font-size: clamp(2.2rem, 7vw, 5.4rem); line-height: 1.04; letter-spacing: -.02em; padding: 4px 0; transition: color .3s, transform .4s var(--ease); }
.nav-links li a i { font-family: var(--mono); font-size: clamp(.8rem,1vw,1rem); color: var(--accent); font-weight: 400; }
.nav-links li a:hover { color: var(--accent); transform: translateX(14px); }
.nav-side { font-family: var(--mono); font-size: .9rem; color: var(--ink-2); display: flex; flex-direction: column; gap: 7px; }
.nav-side-label { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.nav-side-agency { font-family: var(--display); font-size: 1.5rem; color: var(--ink); margin-bottom: 10px; }
.nav-side a { transition: color .3s; }
.nav-side a:hover { color: var(--accent); }

/* ============================================================
   HERO — washed full-bleed photo fading to white
   ============================================================ */
.hero { position: relative; height: 100svh; min-height: 600px; overflow: hidden; display: flex; background: var(--paper); }
.hero-media { position: absolute; inset: -8% 0; z-index: 0; will-change: transform; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 24%; }
.hero-grad { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.04) 40%, rgba(255,255,255,.72) 70%, #fff 92%); }

.hero-side { position: absolute; z-index: 2; top: 50%; font-family: var(--mono); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-2); writing-mode: vertical-rl; }
.hero-side-l { left: 24px; transform: translateY(-50%) rotate(180deg); }
.hero-side-r { right: 24px; transform: translateY(-50%); }

.hero-content { position: relative; z-index: 2; width: 100%; max-width: var(--wrap); margin: auto; padding: 0 var(--gut); align-self: flex-end; padding-bottom: clamp(36px, 7vh, 84px); }
.hero-eyebrow { font-family: var(--mono); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); display: flex; align-items: center; gap: 12px; }
.hero-eyebrow .tick { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.hero-title { font-family: var(--display); font-weight: 700; font-size: clamp(2.2rem, 7vw, 5.6rem); line-height: .9; letter-spacing: -.02em; text-transform: uppercase; margin: .12em 0 .3em; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: block; transform: translateY(110%); animation: heroRise 1s var(--ease) forwards; }
.hero-title .line:nth-child(2) > span { animation-delay: .12s; color: var(--accent); }
@keyframes heroRise { to { transform: translateY(0); } }

.hero-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-top: clamp(16px, 2.5vw, 32px); }
.hero-tag { font-size: clamp(1.18rem, 1.9vw, 1.55rem); line-height: 1.45; font-weight: 500; color: var(--ink); max-width: 42ch; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: clamp(20px, 2.6vw, 34px); }
.btn-cta { display: inline-flex; align-items: center; gap: 10px; padding: 15px 28px; background: var(--accent); color: #fff; font-weight: 600; font-size: .95rem; border-radius: 50px; transition: background .35s var(--ease), transform .35s var(--ease); }
.btn-cta::after { content: "↗"; font-size: 1.05em; line-height: 1; }
.btn-cta:hover { background: var(--accent-d); transform: translateY(-2px); }
.hero-roles { font-family: var(--mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); margin-top: clamp(16px, 2vw, 22px); }
.hero-roles span { color: var(--accent); margin: 0 7px; }
.scroll-cue { display: inline-flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); }
.scroll-cue i { position: relative; width: 1px; height: 36px; background: var(--line-2); overflow: hidden; display: inline-block; }
.scroll-cue i::after { content: ""; position: absolute; left: 0; top: -60%; width: 1px; height: 60%; background: var(--accent); animation: scrolly 1.8s var(--ease) infinite; }
@keyframes scrolly { to { top: 100%; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { overflow: hidden; border-block: 1px solid var(--ink); padding: 16px 0; background: var(--paper); }
.marquee-track { display: flex; width: max-content; animation: marq 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--display); font-weight: 600; font-size: clamp(1.5rem, 4vw, 2.8rem); text-transform: uppercase; white-space: nowrap; color: var(--ink); }
.marquee-track b { color: var(--accent); margin: 0 .35em; font-weight: 400; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding-block: clamp(70px, 11vh, 150px); position: relative; }
.section[id] { scroll-margin-top: 80px; }
.kicker { font-family: var(--mono); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); display: flex; align-items: center; gap: 10px; margin-bottom: clamp(28px, 4vw, 50px); }
.kicker i { color: var(--accent); }
.sec-lead { color: var(--ink-2); max-width: 52ch; margin: -16px 0 42px; font-size: 1.05rem; }

/* ============================================================
   O MNĚ
   ============================================================ */
.statement { font-family: var(--display); font-weight: 500; font-size: clamp(1.7rem, 4vw, 3.2rem); line-height: 1.12; letter-spacing: -.015em; max-width: 22ch; margin-bottom: clamp(36px, 5vw, 70px); }
.statement em { color: var(--accent); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.about-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border: 1px solid var(--line); }
.about-copy p { color: var(--ink-2); margin-top: 1.1rem; font-size: 1.05rem; max-width: 58ch; }
.about-copy p:first-child { margin-top: 0; }
.about-copy em { color: var(--ink); }
.facts { display: flex; flex-wrap: wrap; gap: 22px 36px; margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.facts dt { font-family: var(--mono); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.facts dd { font-family: var(--display); font-size: 1.3rem; margin-top: 4px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.6rem; }
.tags li { font-family: var(--mono); font-size: .72rem; color: var(--ink-2); padding: 7px 13px; border: 1px solid var(--line); border-radius: 50px; }

/* ============================================================
   SLUŽBY
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.svc { background: var(--paper); padding: clamp(24px, 2.6vw, 40px); min-height: 230px; display: flex; flex-direction: column; transition: background .35s var(--ease), color .35s; }
.svc-no { font-family: var(--mono); font-size: .78rem; color: var(--accent); transition: color .35s; }
.svc h3 { font-family: var(--display); font-weight: 600; font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.05; margin: auto 0 10px; }
.svc p { color: var(--ink-2); font-size: .95rem; transition: color .35s; }
.svc:hover { background: var(--accent); color: #fff; }
.svc:hover .svc-no { color: #fff; }
.svc:hover p { color: rgba(255,255,255,.82); }

/* ============================================================
   TVORBA — hover-reveal list
   ============================================================ */
.work-list { border-top: 1px solid var(--line-2); }
.work-row { display: grid; grid-template-columns: 56px 1fr auto 90px; gap: 24px; align-items: center; padding: clamp(18px, 2.5vw, 32px) 4px; border-bottom: 1px solid var(--line); transition: color .3s; }
.w-no { font-family: var(--mono); font-size: .78rem; color: var(--ink-3); transition: color .3s; }
.work-row h3 { font-family: var(--display); font-weight: 600; font-size: clamp(1.7rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -.015em; transition: transform .4s var(--ease), color .3s; }
.w-role { font-size: .92rem; color: var(--ink-2); text-align: right; }
.w-year { font-family: var(--mono); font-size: .78rem; color: var(--ink-3); text-align: right; }
.work-row:hover h3 { color: var(--accent); transform: translateX(16px); }
.work-row:hover .w-no { color: var(--accent); }

.work-cursor { position: fixed; top: 0; left: 0; z-index: 60; width: clamp(180px, 17vw, 290px); aspect-ratio: 4/5; pointer-events: none; overflow: hidden; border-radius: 6px; opacity: 0; transform: translate(-50%, -50%) scale(.8); transition: opacity .35s var(--ease), transform .35s var(--ease); box-shadow: 0 30px 60px rgba(12,12,13,.28); }
.work-cursor.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.work-cursor img { width: 100%; height: 100%; object-fit: cover; }

.filmo { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 50px); margin-top: clamp(50px, 7vw, 90px); }
.filmo-col h4 { font-family: var(--mono); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.filmo-col li { display: block; padding: 11px 0; font-size: 1.04rem; color: var(--ink); border-bottom: 1px solid rgba(12,12,13,.07); }
.filmo-col li span { display: block; color: var(--ink-3); font-size: .8rem; margin-top: 2px; }
.filmo-col li b { font-family: var(--mono); font-size: .76rem; font-weight: 400; color: var(--ink); min-width: 44px; }

/* ============================================================
   VIDEO
   ============================================================ */
.videos { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.video-frame { position: relative; aspect-ratio: 16/9; overflow: hidden; border: 1px solid var(--line); background: #111; }
.video-thumb { position: absolute; inset: 0; display: block; cursor: pointer; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.2); transition: transform .7s var(--ease), filter .5s; }
.video-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(12,12,13,.4)); }
.video-thumb:hover img { transform: scale(1.05); filter: none; }
.video-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 2; width: 70px; height: 70px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: #fff; transition: transform .4s var(--ease), background .4s; }
.video-thumb:hover .video-play { transform: translate(-50%,-50%) scale(1.08); background: var(--accent-d); }
.video-play svg { width: 27px; height: 27px; margin-left: 3px; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 14px 2px 0; }
.video-meta h3 { font-family: var(--display); font-weight: 600; font-size: 1.3rem; }
.video-meta span { font-family: var(--mono); font-size: .76rem; color: var(--ink-2); }

/* ============================================================
   GALERIE — horizontal scroll
   ============================================================ */
.gallery-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px var(--gut) 28px; scrollbar-width: thin; scrollbar-color: var(--line-2) transparent; }
.gallery-track::-webkit-scrollbar { height: 3px; }
.gallery-track::-webkit-scrollbar-thumb { background: var(--line-2); }
.gallery-track .shot { flex: 0 0 auto; width: clamp(240px, 30vw, 420px); aspect-ratio: 3/4; scroll-snap-align: start; position: relative; overflow: hidden; cursor: pointer; border: 1px solid var(--line); }
.shot img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.12); transition: transform .7s var(--ease), filter .5s; }
.shot::after { content: "＋"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 1.4rem; font-weight: 300; background: linear-gradient(180deg, transparent 50%, rgba(12,12,13,.45)); opacity: 0; transition: opacity .4s var(--ease); }
.shot:hover img { transform: scale(1.05); filter: none; }
.shot:hover::after { opacity: 1; }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-huge { display: block; font-family: var(--display); font-weight: 700; font-size: clamp(2.8rem, 12vw, 9rem); line-height: .9; letter-spacing: -.025em; text-transform: uppercase; margin: 6px 0 clamp(20px, 2.6vw, 34px); }
.contact-huge .ch-arrow { font-size: .3em; color: var(--accent); transition: transform .4s var(--ease); }
.contact-huge:hover { color: var(--accent); }
.contact-huge:hover .ch-arrow { transform: translate(10px, -6px); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); border-top: 1px solid var(--line); }
.contact-block { padding: clamp(22px, 2.4vw, 32px); border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.contact-block span { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); display: block; margin-bottom: 10px; }
.contact-block a, .contact-block p { font-family: var(--display); font-size: 1.25rem; color: var(--ink); transition: color .3s; }
.contact-block a:hover { color: var(--accent); }
.contact-text { font-size: clamp(1.1rem, 1.8vw, 1.45rem); line-height: 1.5; color: var(--ink-2); max-width: 44ch; margin-bottom: clamp(28px, 3.4vw, 44px); }
.contact-text a { color: var(--accent); border-bottom: 1px solid currentColor; }
.contact-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 26px; }
.socials { display: flex; flex-wrap: wrap; gap: 12px; }
.social { display: inline-flex; align-items: center; gap: 9px; padding: 12px 18px; border: 1px solid var(--line-2); border-radius: 50px; font-size: .92rem; color: var(--ink); transition: border-color .3s, color .3s, background .3s, transform .3s; }
.social svg { width: 19px; height: 19px; }
.social:hover { border-color: var(--accent); color: var(--accent); background: rgba(45,39,238,.06); transform: translateY(-2px); }

/* ============================================================
   FOOTER (light)
   ============================================================ */
.site-footer { border-top: 1px solid var(--ink); padding-block: 40px; background: var(--paper); }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.footer-brand { font-family: var(--display); font-weight: 700; font-size: 1.3rem; }
.footer-brand span { color: var(--accent); }
.footer-right { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; }
.footer-versions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; font-family: var(--mono); font-size: .8rem; }
.footer-versions > span { color: var(--ink-3); }
.footer-versions a { color: var(--ink-2); transition: color .3s; }
.footer-versions a:hover, .footer-versions a.cur { color: var(--accent); }
.to-top { font-family: var(--mono); font-size: .8rem; }
.to-top:hover { color: var(--accent); }
.footer-credit { width: 100%; font-family: var(--mono); font-size: .72rem; color: var(--ink-3); padding-top: 20px; border-top: 1px solid var(--line); line-height: 1.6; }

/* ============================================================
   LIGHTBOX (dark overlay for viewing)
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(10,10,12,.95); backdrop-filter: blur(6px); display: none; place-items: center; padding: 5vh 6vw; opacity: 0; transition: opacity .35s var(--ease); }
.lightbox:not([hidden]) { display: grid; animation: lbIn .35s var(--ease) forwards; }
@keyframes lbIn { to { opacity: 1; } }
.lb-stage { max-width: 100%; max-height: 90vh; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lb-stage img { max-height: 82vh; max-width: 100%; object-fit: contain; box-shadow: 0 30px 80px -20px rgba(0,0,0,.8); }
#lbCaption { font-family: var(--mono); color: rgba(255,255,255,.7); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }
.lb-close { position: absolute; top: 20px; right: 26px; background: none; border: 0; color: #fff; font-size: 2.4rem; line-height: 1; opacity: .85; transition: opacity .3s, transform .3s; }
.lb-close:hover { opacity: 1; transform: rotate(90deg); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: 1px solid rgba(255,255,255,.3); color: #fff; width: 54px; height: 54px; border-radius: 50%; font-size: 1.7rem; display: grid; place-items: center; transition: border-color .3s, background .3s; }
.lb-nav:hover { border-color: var(--accent); background: rgba(45,39,238,.3); }
.lb-prev { left: 3vw; }
.lb-next { right: 3vw; }

/* ============================================================
   REVEAL
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.svc-grid .svc:nth-child(2), .videos .video-card:nth-child(2) { transition-delay: .07s; }
.svc-grid .svc:nth-child(3), .videos .video-card:nth-child(3) { transition-delay: .14s; }
.svc-grid .svc:nth-child(4), .videos .video-card:nth-child(4) { transition-delay: .07s; }
.svc-grid .svc:nth-child(5) { transition-delay: .14s; }
.svc-grid .svc:nth-child(6) { transition-delay: .21s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) {
  .nav-inner { grid-template-columns: 1fr; gap: 36px; align-items: start; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-media { max-width: 440px; }
  .videos { grid-template-columns: 1fr; }
  .filmo { grid-template-columns: 1fr; gap: 30px; }
  .hero-side { display: none; }
  .hero { height: auto; min-height: 0; flex-direction: column; }
  .hero-media { position: relative; inset: auto; width: 100%; height: 54vh; }
  .hero-media img { object-position: 50% 20%; }
  .hero-grad { position: absolute; top: 0; left: 0; right: 0; height: 54vh; background: linear-gradient(180deg, transparent 55%, #fff 99%); }
  .hero-content { position: relative; margin: 0; align-self: stretch; padding-top: 22px; padding-bottom: clamp(34px, 6vh, 56px); }
  .work-row { grid-template-columns: 40px 1fr auto; }
  .w-role { display: none; }
}
@media (max-width: 560px) {
  :root { --gut: 22px; }
  .header-actions { gap: 14px; }
  .nt-label { display: none; }
  .hero-roles { font-size: clamp(.5rem, 2.5vw, .72rem); letter-spacing: .06em; }
  .hero-roles span { margin: 0 4px; }
  .facts { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; }
  .svc-grid { grid-template-columns: 1fr; }
  .work-row { grid-template-columns: 32px 1fr; }
  .w-year { display: none; }
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-right { gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal, .js .reveal { opacity: 1 !important; transform: none !important; }
  .hero-title .line > span { transform: none; }
  .marquee-track { animation: none; }
}
