:root {
  --earth: #f28b22;
  --earth-dark: #b85c0c;
  --clay: #ffb347;
  --sand: #eef3f7;
  --sand-2: #f8fafc;
  --olive: #0b8737;
  --forest: #064477;
  --forest-2: #032b4c;
  --text: #2f3437;
  --muted: #66717a;
  --line: #dbe4ea;
  --paper: #ffffff;
  --soft: #eef3f7;
  --graphite: #3c3f41;
  --shadow: 0 24px 55px rgba(4, 50, 86, .14);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fb 100%);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 70px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(219, 228, 234, .95);
  backdrop-filter: blur(14px);
  transition: box-shadow .2s ease, min-height .2s ease;
}

.site-header.is-scrolled { box-shadow: 0 14px 34px rgba(4, 50, 86, .12); }
.site-header::after {
  content: "";
  position: absolute;
  left: clamp(18px, 4vw, 70px);
  right: clamp(18px, 4vw, 70px);
  bottom: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--olive), var(--earth));
  border-radius: 999px;
}

.brand { width: min(310px, 56vw); text-decoration: none; }
.brand img { width: 100%; height: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  color: var(--forest);
}
.main-nav a {
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 999px;
}
.main-nav a:hover,
.main-nav a:focus-visible { background: var(--sand); color: var(--earth); outline: none; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--sand);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--forest);
  border-radius: 9px;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
  padding: clamp(70px, 10vw, 136px) clamp(18px, 6vw, 90px) clamp(78px, 10vw, 130px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(242, 139, 34, .92) 0 12px, transparent 12px),
    radial-gradient(circle at 88% 18%, rgba(242, 139, 34, .34), transparent 34%),
    radial-gradient(circle at 8% 88%, rgba(11, 135, 55, .30), transparent 32%),
    linear-gradient(135deg, var(--forest-2) 0%, var(--forest) 62%, var(--graphite) 100%);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.hero::before {
  inset: auto -180px -260px auto;
  width: 620px;
  height: 620px;
  border: 76px solid rgba(255, 255, 255, .10);
  border-radius: 50%;
}
.hero::after {
  left: -10vw;
  bottom: -160px;
  width: 54vw;
  height: 260px;
  background: linear-gradient(90deg, rgba(242, 139, 34, .55), transparent);
  transform: rotate(-5deg);
}
.hero__content,
.hero-visual { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero .eyebrow { color: #ffb347; }
h1, h2, h3 { line-height: 1.12; margin: 0; color: var(--forest); }
h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5.5vw, 5.35rem);
  letter-spacing: -.055em;
  max-width: 980px;
}
h2 { font-size: clamp(2rem, 4vw, 3.45rem); letter-spacing: -.035em; }
h3 { font-size: 1.22rem; }
.hero__lead {
  margin: 24px 0 0;
  max-width: 740px;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.06rem, 1.5vw, 1.26rem);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: #fff; background: var(--earth); box-shadow: 0 18px 34px rgba(242, 139, 34, .34); }
.btn--primary:hover { background: var(--clay); }
.btn--secondary { color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.26); }
.btn--secondary:hover { background: rgba(255,255,255,.18); }
.btn--light { color: var(--forest); background: #ffffff; }

.hero-visual { display: grid; gap: 18px; }
.hero-photo {
  margin: 0;
  position: relative;
  min-height: 420px;
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.18);
}
.hero-photo img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.6));
}
.hero-photo figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: #fff;
  font-weight: 900;
}

.hero-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 250, 241, .94);
  border: 1px solid rgba(255, 255, 255, .6);
  box-shadow: var(--shadow);
}
.hero-card img { width: 74px; border-radius: 50%; }
.hero-card strong { display: block; color: var(--forest); font-size: 1.06rem; line-height: 1.25; }
.hero-card span { display: block; margin-top: 8px; color: var(--muted); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 clamp(18px, 6vw, 90px);
  margin-top: -45px;
  position: relative;
  z-index: 2;
}
.stat {
  padding: 28px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(219,228,234,.95);
}
.stat span {
  display: block;
  color: var(--earth);
  font-size: clamp(2rem, 5vw, 3.85rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.06em;
}
.stat p { margin: 12px 0 0; color: var(--muted); font-weight: 800; }

.section { padding: clamp(80px, 10vw, 126px) clamp(18px, 6vw, 90px); }
.section--muted { background: var(--sand); }
.section--split {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(320px, 1.14fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: start;
}
.section__intro p:last-child { max-width: 740px; margin-inline: auto; color: var(--muted); }
.centered { text-align: center; max-width: 860px; margin: 0 auto 44px; }
.copy { color: var(--muted); font-size: 1.08rem; }
.copy p:first-child { margin-top: 0; }

.work-gallery {
  background:
    linear-gradient(180deg, #ffffff, #e7eef4);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 20px;
}
.gallery-card {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  background: var(--forest);
}
.gallery-card--wide { min-height: 470px; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(22,33,25,.78));
}
.gallery-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 950;
}

.services-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.service-card,
.portfolio-card,
.contact-card,
.contact-form,
.map-card {
  background: #ffffff;
  border: 1px solid rgba(227,216,200,.95);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(4, 50, 86, .07);
}
.service-card { padding: 28px; }
.service-card p,
.portfolio-card p { color: var(--muted); margin-bottom: 0; }
.icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--forest), var(--olive));
  font-weight: 950;
  font-size: 1.35rem;
}

.portfolio-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.portfolio-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 26px;
}
.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--earth), var(--olive), var(--forest));
}
.portfolio-card__tag {
  display: inline-flex;
  padding: 7px 11px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--earth);
  font-weight: 950;
  font-size: .85rem;
}
.portfolio-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--earth);
  font-weight: 950;
  text-decoration: none;
}
.portfolio-card a:hover { text-decoration: underline; }
.portfolio-card--featured {
  background: linear-gradient(180deg, #ffffff, #f6fafc);
  border-color: rgba(6, 68, 119, .22);
}
.portfolio-card--featured::before {
  height: 8px;
  background: linear-gradient(90deg, var(--olive), var(--earth), var(--forest));
}


.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(18px, 6vw, 90px);
  padding: clamp(32px, 6vw, 58px);
  border-radius: calc(var(--radius) + 14px);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(242, 139, 34, .46), transparent 34%),
    linear-gradient(135deg, var(--forest-2), var(--forest));
  box-shadow: var(--shadow);
}
.cta h2, .cta .eyebrow { color: #fff; }
.cta p { margin-bottom: 0; color: rgba(255,255,255,.78); max-width: 720px; }

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: start;
}
.contact-card,
.contact-form,
.map-card { padding: 30px; }
dl { margin: 24px 0; display: grid; gap: 16px; }
dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
dt { color: var(--muted); font-weight: 850; }
dd { margin: 0; color: var(--forest); font-weight: 850; }
dd a { color: var(--earth); text-decoration: none; }
dd a:hover { text-decoration: underline; }
.map-link { color: var(--olive); font-weight: 950; text-decoration: none; }
.map-link:hover { text-decoration: underline; }
.map-card {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
}
.map-card p { color: var(--muted); margin-top: -6px; }
.map-embed {
  overflow: hidden;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid var(--line);
  min-height: 380px;
  background: var(--sand);
}
.map-embed iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.contact-form { display: grid; gap: 16px; }
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--forest);
  font-weight: 850;
}
input, textarea {
  width: 100%;
  border: 1px solid #c8d4dd;
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
}
input:focus, textarea:focus { border-color: var(--earth); box-shadow: 0 0 0 4px rgba(242, 139, 34, .16); }
.form-note { margin: 0; color: var(--muted); font-size: .92rem; }

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 6vw, 90px);
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
}
.footer img { width: 230px; margin-bottom: 8px; }
.footer p { margin: 0; }
.footer a { color: var(--earth); font-weight: 950; text-decoration: none; }

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { max-width: 760px; }
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-card--wide { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .site-header { min-height: 72px; }
  .brand { width: min(245px, 66vw); }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 14px; }
  .hero { padding-top: 54px; }
  .hero-photo,
  .hero-photo img { min-height: 320px; }
  .hero-card { grid-template-columns: 60px 1fr; padding: 18px; }
  .hero-card img { width: 60px; }
  .stats,
  .section--split,
  .contact-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .stats { margin-top: -32px; }
  .services-grid,
  .portfolio-grid { grid-template-columns: 1fr; }
  .gallery-card,
  .gallery-card--wide { min-height: 360px; grid-column: auto; }
  .cta { flex-direction: column; align-items: flex-start; }
  dl div { grid-template-columns: 1fr; gap: 6px; }
  .footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Mapa Google i przyciski nawigacji w kontakcie */
.route-box {
  margin-top: 18px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(6, 68, 119, .18);
}
.route-box h4 {
  margin: 0 0 10px;
  color: var(--forest);
  font-size: 1.08rem;
}
.route-box ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}
.route-box li { margin: 8px 0; }
.route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.route-actions .map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--earth);
  color: #fff;
  box-shadow: 0 12px 24px rgba(242, 139, 34, .18);
}
.route-actions .map-link:hover { text-decoration: none; transform: translateY(-1px); }
.route-actions .map-link--ghost { background: #ffffff; color: var(--forest) !important; box-shadow: none; }

.map-link--ghost {
  background: #ffffff;
  color: var(--forest) !important;
  border: 1px solid rgba(6, 68, 119, .22);
}


/* =========================================================
   POPRAWKA WYGLĄDU — jaśniejszy styl inspirowany stroną Antex
   Zachowuje treści, ofertę, portfolio i kontakt bez zmian.
   ========================================================= */

:root {
  --earth: #f28b22;
  --earth-dark: #c56611;
  --clay: #ffb347;
  --sand: #f3f5f2;
  --sand-2: #ffffff;
  --olive: #2f8f3a;
  --forest: #073d67;
  --forest-2: #072f4d;
  --text: #243039;
  --muted: #66737c;
  --line: #e2e7e3;
  --paper: #ffffff;
  --soft: #f5f7f4;
  --graphite: #333a3f;
  --shadow: 0 18px 45px rgba(34, 48, 57, .10);
}

body {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f7f3 42%, #ffffff 100%);
}

.site-header {
  min-height: 86px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid #e8ece7;
  box-shadow: 0 6px 22px rgba(7, 47, 77, .06);
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--earth) 0 33%, var(--olive) 33% 66%, var(--forest) 66% 100%);
}

.site-header::after {
  display: none;
}

.brand {
  width: min(245px, 44vw);
}

.main-nav {
  color: var(--forest);
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.main-nav a {
  border-radius: 8px;
  padding: 11px 12px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: #f3f5f2;
  color: var(--earth-dark);
}

.hero {
  min-height: calc(100vh - 86px);
  grid-template-columns: minmax(340px, .82fr) minmax(460px, 1.18fr);
  gap: clamp(38px, 6vw, 86px);
  padding: clamp(72px, 8vw, 118px) clamp(22px, 6vw, 92px) clamp(62px, 7vw, 96px);
  color: var(--text);
  background:
    linear-gradient(90deg, #f28b22 0 10px, transparent 10px),
    radial-gradient(circle at 12% 12%, rgba(47, 143, 58, .10), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(242, 139, 34, .12), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #f6f7f3 44%, #e9eee8 100%);
}

.hero::before {
  inset: auto -240px -300px auto;
  width: 760px;
  height: 760px;
  border: 90px solid rgba(7, 61, 103, .06);
}

.hero::after {
  left: -8vw;
  bottom: -85px;
  width: 72vw;
  height: 190px;
  background: linear-gradient(90deg, rgba(242, 139, 34, .72), rgba(47, 143, 58, .34), transparent);
  transform: rotate(-3deg);
  opacity: .72;
}

.hero .eyebrow {
  color: var(--earth-dark);
  letter-spacing: .18em;
}

h1 {
  color: var(--forest-2);
  font-size: clamp(2.55rem, 4.7vw, 4.85rem);
  letter-spacing: -.052em;
  text-shadow: none;
}

.hero__lead {
  color: #46535c;
  max-width: 650px;
}

.btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--earth), #ff9f31);
  box-shadow: 0 16px 30px rgba(242, 139, 34, .30);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--earth-dark), var(--earth));
}

.btn--secondary {
  color: var(--forest);
  background: #ffffff;
  border: 1px solid rgba(7, 61, 103, .18);
  box-shadow: 0 12px 26px rgba(7, 47, 77, .08);
}

.btn--secondary:hover {
  color: #ffffff;
  background: var(--forest);
  border-color: var(--forest);
}

.hero-photo {
  border-radius: 16px;
  border: 7px solid #ffffff;
  box-shadow: 0 24px 52px rgba(31, 44, 51, .22);
}

.hero-photo::before {
  content: "";
  position: absolute;
  left: -7px;
  top: -7px;
  bottom: -7px;
  width: 8px;
  z-index: 2;
  background: var(--earth);
}

.hero-photo::after {
  background: linear-gradient(180deg, transparent 54%, rgba(0,0,0,.48));
}

.hero-photo figcaption {
  color: #ffffff;
  font-size: .95rem;
}

.hero-card {
  color: var(--forest);
  background: #ffffff;
  border: 1px solid rgba(7, 61, 103, .12);
  box-shadow: 0 14px 34px rgba(31, 44, 51, .10);
}

.hero-card span {
  color: var(--muted);
}

.stats {
  margin-top: -38px;
  position: relative;
  z-index: 3;
}

.stat {
  border-top: 5px solid var(--earth);
  box-shadow: 0 14px 34px rgba(31, 44, 51, .10);
}

.stat:nth-child(2) { border-top-color: var(--olive); }
.stat:nth-child(3) { border-top-color: var(--forest); }

.stat span {
  color: var(--earth-dark);
}

.section {
  background: #ffffff;
}

.section--muted,
.work-gallery {
  background: linear-gradient(180deg, #f4f6f2, #ffffff);
}

.section__intro .eyebrow,
.eyebrow {
  color: var(--earth-dark);
}

.service-card,
.portfolio-card,
.contact-card,
.contact-form,
.map-card {
  border-color: #e1e8df;
  box-shadow: 0 14px 30px rgba(31, 44, 51, .08);
}

.service-card {
  border-top: 4px solid rgba(47, 143, 58, .78);
}

.service-card:nth-child(3n + 1) { border-top-color: var(--earth); }
.service-card:nth-child(3n + 2) { border-top-color: var(--olive); }
.service-card:nth-child(3n + 3) { border-top-color: var(--forest); }

.icon {
  background: linear-gradient(135deg, var(--earth), var(--olive));
  border-radius: 10px;
}

.gallery-card {
  border-radius: 14px;
  border: 6px solid #ffffff;
  box-shadow: 0 18px 38px rgba(31, 44, 51, .14);
}

.gallery-card::after {
  background: linear-gradient(180deg, transparent 52%, rgba(7, 47, 77, .76));
}

.portfolio-card {
  border-left: 5px solid var(--forest);
}

.portfolio-card--featured {
  background: linear-gradient(180deg, #ffffff, #f8faf6);
  border-left-color: var(--earth);
}

.portfolio-card--featured::before {
  background: linear-gradient(90deg, var(--earth), var(--olive), var(--forest));
}

.portfolio-card__tag {
  color: #ffffff;
  background: var(--forest);
  border-radius: 999px;
  padding: 7px 12px;
  display: inline-flex;
  width: fit-content;
}

.portfolio-card a,
dd a {
  color: var(--earth-dark);
}

.cta {
  color: #ffffff;
  background:
    linear-gradient(90deg, var(--earth) 0 10px, transparent 10px),
    radial-gradient(circle at 96% 0, rgba(242, 139, 34, .38), transparent 32%),
    linear-gradient(135deg, var(--forest-2), var(--forest));
}

.map-link {
  color: var(--earth-dark);
}

input:focus,
textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 4px rgba(47, 143, 58, .14);
}

.footer {
  background: #f5f7f4;
  border-top: 1px solid #e2e8df;
}

@media (max-width: 1180px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 48px;
    background:
      linear-gradient(180deg, #ffffff 0%, #f6f7f3 100%);
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.65rem);
  }

  .brand {
    width: min(220px, 64vw);
  }
}
