/* Archivo - fonty lokalne (variable, 400-800) */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../assets/fonts/archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../assets/fonts/archivo-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Nurveto - cover. Hero dzielony na pół, dalej sekcje-karty nasuwane na siebie (pin w js/main.js). */

:root {
  --white: #ffffff;
  --paper: #f3f2f2;
  --ink: #201e1d;
  --ink-soft: #5d5955;
  --line: #e4e1dd;
  --violet: #7c3aed;
  --violet-soft: #a78bfa;
  --night: #14101f;
  --night-line: rgba(255, 255, 255, 0.11);
  --night-soft: rgba(243, 242, 242, 0.62);

  --font: "Archivo", "Helvetica Neue", Arial, sans-serif;

  --radius-card: 28px;
  --gutter: clamp(18px, 4vw, 56px);
  --topbar: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: clip; /* poświata sklepu wystaje poza krawędź; clip nie tworzy scroll-containera */
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
code { font-family: inherit; font-weight: 600; }

/* ---------- Topbar ---------- */

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--topbar);
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  transition: color 0.35s ease;
}

.topbar__logo { position: relative; display: block; }
.topbar__logo img { height: 24px; width: auto; }
.topbar__logo::after {
  /* jasna wersja logo dla ciemnych ekranów, podmieniana klasą is-dark */
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/logo-dark.svg") left center / contain no-repeat;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.topbar.is-dark .topbar__logo img { opacity: 0; }
.topbar.is-dark .topbar__logo::after { opacity: 1; }
.topbar.is-dark { color: var(--white); }
.topbar.is-split .topbar__nav { color: var(--white); }

.topbar__nav { display: flex; gap: 28px; font-weight: 500; font-size: 15px; }
.topbar__nav a { text-decoration: none; opacity: 0.75; transition: opacity 0.2s; }
.topbar__nav a:hover, .topbar__nav a:focus-visible { opacity: 1; }

/* ---------- Sekcje-karty ---------- */

.stack { position: relative; }

.screen {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--white);
  color: var(--ink);
}

.screen + .screen {
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  box-shadow: 0 -18px 60px rgba(0, 0, 0, 0.18);
}

.screen__inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: calc(var(--topbar) + 24px) var(--gutter) clamp(48px, 8vh, 96px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.screen__title {
  font-weight: 700;
  font-size: clamp(34px, 4.3vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 14px;
  max-width: 18ch;
}

.screen__lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 clamp(28px, 4vh, 48px);
}

.screen__title--left, .screen__lead--left { text-align: left; max-width: none; }

/* ---------- 1. Hero: dwie połowy ---------- */

.screen--hero {
  /* min-height zamiast height: na niskich ekranach hero rośnie i się scrolluje, zamiast ucinać treść */
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
}

/* napis leży na styku połówek: difference daje czarny na białym i biały na ciemnym */
.hero__kicker {
  position: absolute;
  left: 50%;
  top: calc(var(--topbar) / 2);
  transform: translate(-50%, -50%);
  z-index: 2;
  margin: 0;
  white-space: nowrap;
  font-size: clamp(15px, 1.3vw, 19px);
  font-weight: 500;
  color: var(--white);
  mix-blend-mode: difference;
}

.split {
  flex: 1;
  display: flex; /* bez min-height: 0 - połówki mają rosnąć z treścią, a nie ucinać ją górą */
}

.half {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--topbar) + 12px) var(--gutter) var(--gutter); /* treść nigdy nie wjedzie pod topbar */
  text-decoration: none;
  transition: flex 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.half:hover, .half:focus-visible { flex: 1.9; outline: none; }

.half--cms { background: var(--white); color: var(--ink); }
.half--shop { background: var(--night); color: var(--white); }
.half--shop::before {
  content: "";
  position: absolute;
  right: -10%; bottom: -20%;
  width: 70%; height: 70%;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.5), rgba(124, 58, 237, 0) 65%);
  pointer-events: none;
}

.half__text { position: relative; max-width: 640px; }

.half__name {
  display: block;
  font-size: clamp(56px, 8.5vw, 150px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.half__lead {
  margin: 16px 0 0;
  font-size: clamp(17px, 1.5vw, 22px);
  max-width: 30ch;
}
.half--cms .half__lead { color: var(--ink-soft); }
.half--shop .half__lead { color: var(--night-soft); }

.half__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition: max-height 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease 0.12s, transform 0.5s ease 0.12s, margin 0.6s;
}
.half:hover .half__tags, .half:focus-visible .half__tags {
  max-height: 260px;
  margin-top: 22px;
  opacity: 1;
  transform: none;
}
.half__tags li {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.half--cms .half__tags li { border-color: var(--line); }
.half--shop .half__tags li { border-color: var(--night-line); }

@media (hover: none) {
  .half__tags { max-height: none; margin-top: 22px; opacity: 1; transform: none; }
}

/* niskie okna na desktopie: hasła widoczne od razu, żeby hover nie zmieniał wysokości hero; mniej powietrza */
@media (min-width: 901px) and (max-height: 720px) {
  .half__tags { max-height: none; margin-top: 16px; opacity: 1; transform: none; }
  .half__name { font-size: clamp(48px, 7vw, 110px); }
  .half__lead { margin-top: 10px; }
  .half { padding-top: calc(var(--topbar) + 24px); padding-bottom: 28px; }
}

/* ---------- 2/3. Siatki modułów ---------- */

.grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(250px, auto);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
}

.cell {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  padding: 22px 24px 0;
  background: var(--white);
}

.cell h3 {
  font-weight: 700;
  font-size: clamp(17px, 1.4vw, 20px);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 6px;
}

.cell p {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 0 14px;
  max-width: 36ch;
}

.mock {
  margin-top: auto;
  font-size: 12.5px;
  line-height: 1.3;
  color: var(--ink);
}

/* wspólne drobiazgi makiet */
.tgl {
  display: inline-block; width: 28px; height: 16px; border-radius: 999px;
  background: var(--line); position: relative; flex: none;
}
.tgl::after {
  content: ""; position: absolute; top: 2px; left: 2px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--white);
}
.tgl.is-on { background: var(--violet); }
.tgl.is-on::after { left: 14px; }

/* CMS: drzewo stron */
.mock--tree { border: 1px solid var(--line); border-bottom: 0; border-radius: 10px 10px 0 0; padding: 6px 10px 0; }
.tree__row { padding: 5px 0 5px 14px; position: relative; }
.tree__row::before { content: ""; position: absolute; left: 0; top: 11px; width: 6px; height: 6px; border-radius: 1px; background: var(--ink); }
.tree__row--in { padding-left: 32px; color: var(--ink-soft); }
.tree__row--in::before { left: 18px; background: var(--line); }

/* CMS: klocki */
.mock--blocks { display: flex; flex-direction: column; gap: 6px; }
.block {
  padding: 8px 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--white);
  display: flex; align-items: center; gap: 10px;
}
.block::before { content: ""; width: 10px; height: 8px; border-top: 2px dotted var(--line); border-bottom: 2px dotted var(--line); }
.block--drag { border-color: var(--violet); box-shadow: 0 8px 20px rgba(124, 58, 237, 0.16); transform: rotate(-1deg) translateX(6px); }
.block:last-child { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border-bottom: 0; }

/* CMS: edytor */
.mock--editor { border: 1px solid var(--line); border-bottom: 0; border-radius: 10px 10px 0 0; padding: 10px 12px 0; }
.editor__toolbar { display: flex; gap: 5px; margin-bottom: 10px; }
.editor__toolbar i { width: 14px; height: 14px; border-radius: 3px; background: var(--line); }
.editor__toolbar i.is-wide { width: 40px; }
.editor__h { height: 12px; width: 60%; background: var(--ink); border-radius: 3px; margin-bottom: 8px; }
.editor__l { height: 7px; background: var(--line); border-radius: 3px; margin-bottom: 6px; }
.editor__l.is-short { width: 45%; }

/* CMS: newsletter */
.mock--mail { display: flex; align-items: flex-end; gap: 10px; }
.mail__card {
  flex: 1; border: 1px solid var(--line); border-bottom: 0; border-radius: 10px 10px 0 0; padding: 10px 12px 12px;
  display: flex; flex-direction: column; gap: 3px;
}
.mail__card b { font-weight: 600; }
.mail__card span { color: var(--ink-soft); }
.mail__send { padding: 8px 14px; margin-bottom: 8px; border-radius: 999px; background: var(--ink); color: var(--white); font-weight: 600; }

/* CMS: języki i SEO */
.seo__langs { display: flex; gap: 6px; margin-bottom: 8px; }
.seo__langs span { padding: 3px 9px; border-radius: 999px; border: 1px solid var(--line); font-weight: 600; font-size: 11px; }
.seo__langs span.is-on { background: var(--ink); color: var(--white); border-color: var(--ink); }
.seo__field { display: grid; grid-template-columns: 44px 1fr; gap: 8px; padding: 6px 0; border-top: 1px solid var(--line); }
.seo__field label { color: var(--ink-soft); }
.seo__field span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* CMS: użytkownicy */
.user__row { display: flex; align-items: center; gap: 10px; padding: 7px 0; border-top: 1px solid var(--line); }
.user__row span { font-weight: 600; }
.user__row em { font-style: normal; color: var(--ink-soft); margin-right: auto; }

/* CMS: co dopisujesz pod projekt */
.extend {
  width: 100%;
  margin-top: clamp(40px, 6vh, 72px);
  text-align: left;
}
.extend__title {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.extend__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 32px;
  border-top: 1px solid var(--line);
}
.extend__list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.extend__list b { font-weight: 600; font-size: 16px; }
.extend__list span { font-size: 14px; color: var(--ink-soft); line-height: 1.4; }

/* ---------- 3. Sklep (ciemny) ---------- */

.screen--shop { background: var(--night); color: var(--white); overflow: hidden; }
.screen--shop .screen__lead { color: var(--night-soft); }

.screen__glow {
  position: absolute;
  left: 50%; top: 4%;
  width: 70vw; height: 40vh;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.55), rgba(124, 58, 237, 0) 65%);
  pointer-events: none;
}

.screen--shop .grid { background: var(--night-line); border-color: var(--night-line); }
.screen--shop .cell { background: var(--night); }
.screen--shop .cell p { color: var(--night-soft); }
.screen--shop .mock { color: var(--white); }
.screen--shop .tgl { background: rgba(255, 255, 255, 0.18); }
.screen--shop .tgl.is-on { background: var(--violet-soft); }
.screen--shop .tgl::after { background: var(--night); }
.screen--shop .tgl.is-on::after { background: var(--white); }

/* Sklep: produkt */
.product__name { font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.product__chips { display: flex; gap: 6px; margin-bottom: 10px; }
.product__chips span { width: 30px; height: 26px; display: grid; place-items: center; border-radius: 6px; border: 1px solid var(--night-line); font-weight: 600; font-size: 11px; }
.product__chips span.is-on { background: var(--white); color: var(--night); border-color: var(--white); }
.product__meta { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 0 12px; border-top: 1px solid var(--night-line); }
.product__meta b { font-weight: 600; font-size: 15px; }
.product__meta span { color: var(--night-soft); }

/* Sklep: zamówienie */
.order__id { font-weight: 600; margin-bottom: 10px; }
.order__id span { color: var(--night-soft); font-weight: 400; margin-left: 6px; }
.order__steps { display: flex; gap: 4px; padding-bottom: 12px; }
.order__steps span {
  flex: 1; padding: 6px 0 7px; text-align: center; font-size: 11px; font-weight: 600;
  border-top: 2px solid var(--night-line); color: var(--night-soft);
}
.order__steps span.is-done { border-color: var(--violet-soft); color: var(--white); }
.order__steps span.is-now { border-color: var(--white); color: var(--white); }

/* Sklep: wiersze (płatności, dostawa, waluty, powiadomienia, allegro) */
.row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 7px 0; border-top: 1px solid var(--night-line);
}
.row span { font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.row b { font-weight: 600; flex: none; }
.row em { font-style: normal; color: var(--night-soft); white-space: nowrap; flex: none; }
.mock--rows { padding-bottom: 12px; }

/* Sklep: płatności - dwie kolumny przełączników */
.mock--pay { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; padding-bottom: 12px; }

/* Sklep: hurtownie */
.feed__row { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.feed__row span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.feed__row em { font-style: normal; color: var(--night-soft); flex: none; }
.feed__bar { height: 6px; border-radius: 3px; background: rgba(255, 255, 255, 0.12); overflow: hidden; margin-bottom: 8px; }
.feed__bar i { display: block; width: 68%; height: 100%; background: var(--violet-soft); }
.feed__note { color: var(--night-soft); padding-bottom: 14px; }

/* Sklep: kody */
.mock--codes { display: flex; flex-wrap: wrap; gap: 6px; padding-bottom: 14px; }
.code { display: inline-flex; gap: 8px; align-items: baseline; padding: 6px 10px; border-radius: 8px; background: rgba(255, 255, 255, 0.08); }
.code b { font-weight: 700; letter-spacing: 0.04em; }
.code span { color: var(--violet-soft); font-weight: 600; }
.code--dim { opacity: 0.5; }

/* Sklep: języki i waluty */
.mock--lang { padding-bottom: 12px; }
.lang__chips { display: flex; gap: 6px; margin-bottom: 8px; }
.lang__chips span { padding: 3px 9px; border-radius: 999px; border: 1px solid var(--night-line); font-weight: 600; font-size: 11px; }
.lang__chips span.is-on { background: var(--white); color: var(--night); border-color: var(--white); }

/* ---------- 4. Skąd się wzięło ---------- */

.screen--story { background: var(--paper); }

.screen__inner--story {
  align-items: stretch;
  text-align: left;
  padding-top: calc(var(--topbar) + clamp(32px, 8vh, 96px));
}
.screen__inner--story .screen__title { max-width: 22ch; }
.screen__inner--story .screen__lead { max-width: 68ch; margin-bottom: 14px; }

.story__owner {
  margin: 0 0 clamp(28px, 4vh, 44px);
  max-width: 68ch;
  font-size: 16px;
  color: var(--ink);
}
.story__owner a { font-weight: 600; text-decoration-color: var(--violet); text-underline-offset: 3px; }
.story__owner a:hover { color: var(--violet); }

.why {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(32px, 5vw, 80px);
  border-top: 1px solid var(--line);
}
.why li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.why__key { grid-column: 1 / -1; }
.why b { font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
.why span { font-size: 15px; color: var(--ink-soft); line-height: 1.5; max-width: 60ch; }
.why__key b { font-size: 21px; }
.why__key span { color: var(--ink); font-size: 16px; max-width: 80ch; }

/* deklaracja rozwoju - jedyny akcent koloru w sekcji */
.story__pledge {
  margin: clamp(36px, 6vh, 64px) 0 0;
  padding: clamp(24px, 3vw, 40px) clamp(24px, 3.5vw, 48px);
  border-radius: 18px;
  background: var(--night);
  color: var(--white);
}
.story__pledge h3 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.story__pledge p {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  color: var(--night-soft);
  max-width: 70ch;
}

.story__tech {
  margin: clamp(24px, 4vh, 40px) 0 0;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 64ch;
}

/* ---------- 5. Kontakt: dwie połowy ---------- */

.screen--contact {
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: var(--white);
}

.split--contact { flex: 1; }

.half--client { background: var(--paper); color: var(--ink); }
.half--partner { background: var(--ink); color: var(--white); }

.contact__who {
  display: block;
  font-size: clamp(26px, 3vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.contact__lead {
  margin: 14px 0 26px;
  font-size: clamp(15px, 1.25vw, 18px);
  max-width: 40ch;
}
.half--client .contact__lead { color: var(--ink-soft); }
.half--partner .contact__lead { color: rgba(255, 255, 255, 0.62); }

.split--contact .half__text { max-width: none; }

.contact__mail {
  display: inline-block;
  white-space: nowrap; /* adres w jednej linii; mobile ma overflow-wrap poniżej */
  font-size: clamp(24px, 2.7vw, 60px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.12em;
  transition: text-decoration-color 0.25s, color 0.25s;
}
.half:hover .contact__mail, .half:focus-visible .contact__mail { text-decoration-color: var(--violet); }
.half--partner:hover .contact__mail { color: var(--violet-soft); }

.contact__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--gutter);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.contact__foot img { height: 20px; width: auto; opacity: 0.8; }
.contact__owner { margin: 0; text-align: center; }
.contact__owner a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.contact__owner a:hover { color: var(--white); }

/* ---------- Mobile ---------- */

@media (max-width: 900px) {
  /* na mobile topbar dostaje białe tło - bez niego logo i menu ginęły na ciemnych sekcjach */
  .topbar { background: var(--white); border-bottom: 1px solid var(--line); color: var(--ink); --topbar: 60px; }
  .topbar.is-dark, .topbar.is-split { color: var(--ink); }
  .topbar.is-dark .topbar__logo img { opacity: 1; }
  .topbar.is-dark .topbar__logo::after { opacity: 0; }
  .topbar.is-split .topbar__nav { color: var(--ink); }

  .screen + .screen { border-radius: 22px 22px 0 0; margin-top: -22px; }

  /* hero: kolumna, połówki jedna pod drugą, hasła zawsze widoczne, luźniej niż na desktopie */
  .screen--hero { min-height: 0; padding-top: 60px; background: var(--ink); }
  .hero__kicker { position: static; transform: none; mix-blend-mode: normal; color: var(--white); white-space: normal; text-align: center; margin: 0; padding: 28px var(--gutter) 28px; background: var(--ink); }
  .split { flex-direction: column; }
  .half { flex: none; min-height: 0; padding: 56px var(--gutter) 56px; }
  .half:hover, .half:focus-visible { flex: none; }
  .half--cms { border-radius: 22px 22px 0 0; }
  .half--shop { border-radius: 22px 22px 0 0; margin-top: -22px; padding-top: 72px; padding-bottom: 64px; box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.18); }
  .half__name { font-size: clamp(56px, 18vw, 110px); }
  .half__lead { margin-top: 12px; }
  .half__tags { max-height: none; margin-top: 24px; opacity: 1; transform: none; }

  .grid { grid-template-columns: 1fr 1fr; grid-auto-rows: minmax(230px, auto); }
  .extend__list { grid-template-columns: 1fr 1fr; }

  .why { grid-template-columns: 1fr; }

  .screen--contact { min-height: 0; }
  .split--contact .half { min-height: 0; padding: 56px var(--gutter) 64px; }
  .split--contact .half--client { border-radius: 0; }
  .split--contact .half--partner { border-radius: 22px 22px 0 0; margin-top: -22px; padding-top: 72px; }
  .contact__lead { margin: 12px 0 28px; }
  .contact__foot { padding: 28px var(--gutter) 32px; flex-direction: column; gap: 14px; text-align: center; }
  .contact__mail { white-space: normal; font-size: clamp(24px, 7.5vw, 44px); }
}

@media (max-width: 600px) {
  .grid, .extend__list { grid-template-columns: 1fr; }
  .cell { min-height: 0; }
  .topbar__nav { gap: 18px; font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .half, .half__tags { transition: none; }
}
