/* KMB Legal — redesign */

:root {
  --ink:        #15171c;
  --ink-2:      #1b202a;
  --ink-soft:   #2d3340;
  --bronze:     #988e7c;
  --bronze-deep:#6e6650;
  --cream:      #f4efe6;
  --cream-2:    #ebe4d6;
  --paper:      #fbf8f1;
  --line:       rgba(21,23,28,.14);
  --line-light: rgba(255,255,255,.18);
  --accent:     #8e2926;

  --serif: "Fraunces", "Times New Roman", Georgia, serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1240px;
  --pad:  clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.skip {
  position: absolute; left: -9999px;
}
.skip:focus { left: 12px; top: 12px; background: var(--ink); color: var(--cream); padding: 8px 12px; z-index: 99; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* --- topbar --- */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  letter-spacing: .04em;
}
.topbar__row {
  display: flex; justify-content: space-between; align-items: center;
  height: 40px;
}
.topbar__mail { color: var(--cream); opacity: .85; }
.topbar__mail:hover { opacity: 1; color: var(--bronze); }
.topbar__social {
  display: flex; gap: 16px;
}
.topbar__social a {
  font-size: 11px;
  letter-spacing: .15em;
  opacity: .7;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.topbar__social a:hover { opacity: 1; border-color: var(--bronze); }

/* --- nav --- */
.nav {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(251,248,241,.93);
}
.nav__row {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 96px;
  gap: 24px;
}
.nav__logo img { height: 64px; width: auto; }
.nav__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 8px; align-items: center;
}
.nav__list > li > a {
  display: inline-flex; flex-direction: column;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  border-radius: 2px;
  position: relative;
  transition: color .2s;
}
.nav__list > li > a span {
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  margin-top: 2px;
}
.nav__list > li > a:hover { color: var(--accent); }
.nav__list > li > a.nav__cta {
  background: var(--ink);
  color: var(--paper);
  padding: 14px 22px;
  border-radius: 2px;
}
.nav__list > li > a.nav__cta:hover { background: var(--accent); color: var(--paper); }
.nav__list > li > a.nav__cta span { display: none; }

.nav__burger {
  display: none;
  background: none; border: 0;
  width: 48px; height: 48px;
  padding: 0;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 6px;
}
.nav__burger span {
  display: block; width: 26px; height: 2px; background: var(--ink);
  transition: transform .3s, opacity .2s;
}

/* --- typography --- */
.serif {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 36, "SOFT" 50;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -.012em;
  margin: 0;
}
.serif--lg {
  font-size: clamp(34px, 4.4vw, 60px);
}
.serif--xl {
  font-size: clamp(38px, 5.4vw, 72px);
}
.display {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 0;
  font-weight: 500;
  font-size: clamp(48px, 8vw, 116px);
  line-height: .94;
  letter-spacing: -.025em;
  margin: 0 0 28px;
  color: var(--ink);
}
.display--accent {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--accent);
  font-weight: 400;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 600;
  color: var(--bronze-deep);
  margin-bottom: 18px;
  display: inline-block;
  position: relative;
  padding-left: 32px;
}
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 22px; height: 1px; background: var(--bronze);
}
.eyebrow--dark { color: var(--ink-soft); }
.eyebrow--light { color: var(--cream-2); }
.eyebrow--light::before { background: var(--bronze); }

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 32px;
  max-width: 52ch;
}

/* --- buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.btn--primary {
  background: var(--ink);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  flex-direction: column;
  gap: 2px;
  padding: 14px 28px;
}
.btn--ghost .btn__label { font-size: 11px; opacity: .65; }
.btn--ghost .btn__phone { font-size: 16px; letter-spacing: .04em; }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--ghost-light {
  border-color: var(--cream); color: var(--cream);
}
.btn--ghost-light:hover { background: var(--cream); color: var(--ink); }
.btn--block { display: flex; width: 100%; }
.btn--link {
  background: none; padding: 8px 0;
  text-transform: none; letter-spacing: 0;
  color: var(--cream); border: 0;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255,255,255,.3);
}
.btn--link:hover { text-decoration-color: var(--bronze); }

/* --- hero --- */
.hero {
  background:
    radial-gradient(circle at 80% 10%, rgba(152,142,124,.18), transparent 60%),
    linear-gradient(180deg, var(--paper), var(--cream));
  padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "KMB";
  position: absolute;
  top: -40px; left: -30px;
  font-family: var(--serif);
  font-variation-settings: "opsz" 144;
  font-weight: 700;
  font-size: clamp(260px, 32vw, 520px);
  line-height: .8;
  color: var(--ink);
  opacity: .035;
  letter-spacing: -.03em;
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__copy { min-width: 0; }
.currency-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.currency-row span {
  font-family: var(--serif);
  font-variation-settings: "opsz" 14;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .14em;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255,255,255,.4);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__img {
  position: relative;
  margin: 0;
}
.hero__img img {
  width: 100%; height: clamp(380px, 56vw, 600px);
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 30px 60px -30px rgba(21,23,28,.4);
}
.hero__img figcaption { margin: 0; }
.hero__badge {
  position: absolute;
  bottom: -28px; left: -28px;
  background: var(--ink);
  color: var(--cream);
  padding: 22px 26px;
  font-family: var(--serif);
  font-variation-settings: "opsz" 14;
  font-style: italic;
  font-size: 15px;
  line-height: 1.4;
  max-width: 280px;
  border-left: 3px solid var(--bronze);
}

/* --- manifesto --- */
.manifesto {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--paper);
}
.section-head { margin-bottom: clamp(40px, 5vw, 72px); max-width: 760px; }
.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: 100%;
  flex-wrap: wrap;
}
.section-head--row > div { max-width: 720px; }

.manifesto__list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.manifesto__list li {
  display: grid;
  grid-template-columns: 90px 1fr 1.4fr;
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: background .2s;
}
.manifesto__list li:hover { background: rgba(152,142,124,.06); }
.manifesto__no {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144;
  font-size: 36px;
  color: var(--bronze);
  font-weight: 500;
}
.manifesto__list h3 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 36, "SOFT" 30;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  margin: 0;
  font-weight: 500;
  color: var(--ink);
}
.manifesto__list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}

/* --- callbar --- */
.callbar {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(48px, 6vw, 80px) 0;
}
.callbar__row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
.callbar__copy .eyebrow--light { color: var(--bronze); }
.callbar__title {
  color: var(--cream);
  font-variation-settings: "opsz" 36, "SOFT" 60;
}
.callbar__phone {
  display: flex; flex-direction: column; gap: 6px;
  padding: 24px 28px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-light);
  border-left: 4px solid var(--bronze);
  transition: background .2s, border-color .2s;
}
.callbar__phone:hover { background: rgba(255,255,255,.1); border-left-color: var(--cream); }
.callbar__phone span {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bronze);
}
.callbar__phone strong {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144;
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: .02em;
  color: var(--cream);
}

/* --- founder --- */
.founder {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream);
}
.founder__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.founder__portrait {
  position: relative;
  margin: 0;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.founder__portrait::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--bronze);
  pointer-events: none;
}
.founder__portrait img {
  width: 100%; height: clamp(360px, 46vw, 480px);
  object-fit: cover; object-position: center top;
  background: var(--cream-2);
}
.founder__portrait figcaption {
  margin-top: 22px;
  text-align: center;
}
.founder__portrait figcaption strong {
  display: block;
  font-family: var(--serif);
  font-variation-settings: "opsz" 14;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
}
.founder__portrait figcaption span {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bronze-deep);
}
.founder__copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 20px;
  max-width: 60ch;
}
.founder__stats {
  list-style: none; padding: 0;
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.founder__stats li {
  display: flex; flex-direction: column; gap: 4px;
}
.founder__stats strong {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1;
  font-weight: 500;
  color: var(--accent);
}
.founder__stats span {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* --- cards (aktualności) --- */
.aktualnosci {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--paper);
}
.cards {
  display: grid;
  gap: clamp(24px, 3vw, 36px);
}
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -24px rgba(21,23,28,.25); }
.card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream-2);
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s;
}
.card:hover .card__media img { transform: scale(1.04); }
.card__body { padding: 24px 26px 28px; }
.card__cat {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  font-weight: 600;
}
.card h3 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 14;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
  margin: 12px 0 12px;
  color: var(--ink);
}
.card h3 a:hover { color: var(--accent); }
.card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

.link-arrow {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 4px;
  transition: color .2s;
  white-space: nowrap;
}
.link-arrow:hover { color: var(--accent); }
.link-arrow--light { color: var(--cream); border-color: var(--bronze); }
.link-arrow--light:hover { color: var(--bronze); }

/* --- orzecznictwo --- */
.orzecznictwo {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--ink);
  color: var(--cream);
}
.orzecznictwo .serif { color: var(--cream); }
.case {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line-light);
  transition: transform .3s, background .3s;
}
.case:hover { transform: translateY(-4px); background: rgba(255,255,255,.06); }
.case a { display: block; padding: 0; }
.case__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink-soft);
}
.case__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.4) brightness(.85);
  transition: filter .3s, transform .6s;
}
.case:hover .case__media img { filter: grayscale(0) brightness(1); transform: scale(1.04); }
.case__tag {
  --tag: var(--bronze);
  display: inline-block;
  margin: 18px 22px 0;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  background: var(--tag);
  border-radius: 2px;
}
.case h3 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 14;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
  margin: 12px 22px 14px;
  color: var(--cream);
}
.case time {
  display: block;
  margin: 0 22px 22px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* --- oferta --- */
.oferta {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream);
}
.oferta__grid > .eyebrow { margin-bottom: 18px; }
.oferta__grid > .serif { max-width: 800px; margin-bottom: 56px; }
.oferta__list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.oferta__list li {
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background .3s;
}
.oferta__list li:hover { background: var(--ink); color: var(--cream); }
.oferta__list li:hover h3 { color: var(--cream); }
.oferta__list li:hover p { color: var(--cream-2); }
.oferta__list h3 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 14, "SOFT" 30;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--ink);
}
.oferta__list p {
  font-size: 15px; line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* --- cta --- */
.cta {
  padding: clamp(80px, 10vw, 140px) 0;
  background:
    linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 70vw; height: 140%;
  background: radial-gradient(circle at center, rgba(152,142,124,.18), transparent 60%);
  pointer-events: none;
}
.cta__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  position: relative;
}
.cta .serif { color: var(--cream); }
.cta__lede {
  font-size: clamp(17px, 1.3vw, 19px);
  color: var(--cream-2);
  margin: 20px 0 0;
  max-width: 52ch;
  line-height: 1.6;
}
.cta__form {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-light);
  padding: 36px;
  display: flex; flex-direction: column; gap: 14px;
}
.cta__form label {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--bronze);
  margin-bottom: 8px;
}
.cta__form input {
  font: inherit;
  font-size: 17px;
  padding: 16px 18px;
  background: var(--ink);
  border: 1px solid var(--line-light);
  color: var(--cream);
  border-radius: 2px;
  letter-spacing: 0;
  text-transform: none;
}
.cta__form input:focus {
  outline: 2px solid var(--bronze);
  outline-offset: 2px;
}
.cta__or {
  text-align: center;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--bronze);
  padding: 4px 0;
}

/* --- footer --- */
.footer {
  background: #0d0f13;
  color: var(--cream);
  padding: clamp(48px, 6vw, 80px) 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-light);
}
.footer__logo { height: 72px; width: auto; margin-bottom: 16px; }
.footer__brand p {
  font-family: var(--serif);
  font-variation-settings: "opsz" 14;
  font-size: 15px;
  line-height: 1.5;
  color: var(--cream-2);
  margin: 0;
}
.footer h4 {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer p, .footer ul {
  margin: 0; padding: 0; list-style: none;
  font-size: 15px; line-height: 1.9;
  color: var(--cream-2);
}
.footer a:hover { color: var(--bronze); }
.footer__base {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding-top: 24px;
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(244,239,230,.5);
}

/* --- responsive --- */
@media (max-width: 1100px) {
  .nav__list > li:not(:last-child) > a span { display: none; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__img img { height: clamp(320px, 50vw, 460px); }
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .oferta__list { grid-template-columns: repeat(2, 1fr); }
  .founder__grid { grid-template-columns: 1fr; }
  .cta__grid { grid-template-columns: 1fr; }
  .callbar__row { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .topbar__social { gap: 12px; }
  .topbar__social a:nth-child(n+4) { display: none; }
  .nav__list {
    position: fixed;
    top: 96px; right: 0; bottom: 0; left: 0;
    height: calc(100dvh - 96px);
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 32px 24px 48px;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    gap: 4px;
    z-index: 49;
  }
  .nav__list.is-open { transform: translateX(0); }
  .nav__list > li > a {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    padding: 16px 8px;
    font-size: 20px;
    border-bottom: 1px solid var(--line);
  }
  .nav__list > li > a span { font-size: 11px; margin-top: 0; }
  .nav__list > li > a.nav__cta {
    margin-top: 16px;
    text-align: center;
    justify-content: center;
    font-size: 14px;
  }
  .nav__burger { display: flex; }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  body.nav-open { overflow: hidden; }

  .hero__badge { left: 12px; bottom: -20px; max-width: 240px; padding: 16px 18px; font-size: 13px; }
  .cards--3 { grid-template-columns: 1fr; }
  .cards--4 { grid-template-columns: 1fr; }
  .manifesto__list li { grid-template-columns: 60px 1fr; }
  .manifesto__list li > p {
    grid-column: 2;
  }
  .manifesto__no { font-size: 28px; }
  .founder__stats { grid-template-columns: 1fr; gap: 16px; }
  .oferta__list { grid-template-columns: 1fr; }
  .oferta__list li { padding: 28px 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section-head--row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .callbar__phone strong { font-size: 30px; }
}
