@font-face {
  font-family: Barlow;
  src: url("../fonts/barlow-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Barlow;
  src: url("../fonts/barlow-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Barlow;
  src: url("../fonts/barlow-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Barlow;
  src: url("../fonts/barlow-700.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Barlow;
  src: url("../fonts/barlow-800.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}

:root {
  --ink: oklch(0.22 0.025 255);
  --ink-2: oklch(0.31 0.03 255);
  --brand: oklch(0.76 0.16 92);
  --brand-strong: oklch(0.67 0.16 84);
  --surface: oklch(0.985 0.004 255);
  --surface-2: oklch(0.955 0.008 255);
  --muted: oklch(0.46 0.02 255);
  --line: oklch(0.88 0.012 255);
  --white: #fff;
  --success: oklch(0.53 0.14 150);
  --error: oklch(0.52 0.19 28);
  --shadow: 0 24px 70px rgba(8, 19, 35, 0.12);
  --container: min(1200px, calc(100% - 40px));
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header: 88px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  padding-top: 0;
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Barlow, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(2.15rem, 4.5vw, 3.5rem);
  font-weight: 700;
}
h3 {
  font-size: 1.35rem;
}
p {
  margin: 0 0 1em;
  text-wrap: pretty;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.narrow {
  max-width: 850px;
}
.section {
  padding: clamp(72px, 9vw, 118px) 0;
}
.icon {
  width: 22px;
  height: 22px;
  flex: none;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 12px 18px;
  background: var(--brand);
  color: var(--ink);
  font-weight: 700;
}
.skip-link:focus {
  transform: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 2px solid var(--brand);
  border-radius: 8px;
  background: var(--brand);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  line-height: 1.1;
  transition:
    transform 0.25s var(--ease),
    background 0.25s,
    color 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.button:hover {
  transform: translateY(-2px);
  background: var(--brand-strong);
  border-color: var(--brand-strong);
  box-shadow: 0 12px 25px rgba(121, 91, 0, 0.18);
}
.button:active {
  transform: translateY(0);
}
.button:focus-visible,
.text-link:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid oklch(0.72 0.19 250);
  outline-offset: 3px;
}
.button-small {
  min-height: 44px;
  padding: 10px 15px;
  font-size: 0.9rem;
}
.button-light {
  background: var(--white);
  border-color: var(--white);
}
.button-light:hover {
  background: var(--surface-2);
  border-color: var(--surface-2);
}
.button-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.button-outline:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.button-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}
.button-outline-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}
.button-block {
  width: 100%;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}
.text-link .icon {
  transition: transform 0.25s var(--ease);
}
.text-link:hover .icon {
  transform: translateX(5px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--header);
  background: color-mix(in oklch, var(--surface) 94%, transparent);
  border-bottom: 1px solid transparent;
  transition:
    box-shadow 0.25s,
    border-color 0.25s,
    background 0.25s;
}
.site-header.is-scrolled {
  background: color-mix(in oklch, var(--surface) 98%, transparent);
  border-color: var(--line);
  box-shadow: 0 8px 35px rgba(10, 22, 40, 0.08);
}
.header-inner {
  width: var(--container);
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  width: 230px;
  flex: none;
}
.brand img {
  width: 230px;
  height: auto;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 26px);
  margin-left: auto;
}
.desktop-nav a {
  position: relative;
  padding: 28px 0;
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 19px;
  height: 3px;
  background: var(--brand);
  transition: right 0.25s var(--ease);
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  right: 0;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 10px 15px;
  border: 1px solid color-mix(in oklch, var(--brand) 70%, var(--line));
  border-radius: 7px;
  background: color-mix(in oklch, var(--brand) 14%, transparent);
  font-size: 1.22rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.header-phone .icon {
  width: 23px;
  height: 23px;
  color: var(--brand-strong);
}
.header-actions .button-small {
  min-height: 48px;
  padding-inline: 20px;
  font-size: 0.94rem;
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}
.menu-toggle svg {
  width: 26px;
}
.menu-close {
  display: none;
}
.menu-toggle[aria-expanded="true"] .menu-open {
  display: none;
}
.menu-toggle[aria-expanded="true"] .menu-close {
  display: block;
}
.mobile-menu {
  position: fixed;
  inset: var(--header) 0 0;
  background: var(--surface);
  padding: 24px 20px 100px;
  overflow-y: auto;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.mobile-menu nav a {
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}
.mobile-contact {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  max-height: 860px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim,
.page-hero-media div {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(9, 19, 32, 0.94) 0%,
    rgba(9, 19, 32, 0.77) 45%,
    rgba(9, 19, 32, 0.18) 74%,
    rgba(9, 19, 32, 0.08) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 70px 0 110px;
}
.hero-copy {
  max-width: 750px;
}
.hero-local {
  display: inline-flex;
  margin: 0 0 24px;
  padding: 7px 12px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 600;
}
.hero h1 {
  max-width: 760px;
}
.hero h1 em {
  display: block;
  color: var(--brand);
  font-style: normal;
}
.hero-lead {
  max-width: 660px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.55;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 30px;
  list-style: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust .icon {
  width: 18px;
  color: var(--brand);
}
.hero-note {
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100vw - 1200px) / 2));
  bottom: 34px;
  width: min(310px, calc(100% - 40px));
  padding: 22px;
  background: var(--brand);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.hero-note strong {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
}
.hero-note span {
  display: block;
  margin: 8px 0 13px;
  font-size: 0.88rem;
  line-height: 1.35;
}
.hero-note a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}
.hero-note .icon {
  width: 18px;
}
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 50px;
}
.split-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}
.section-tag {
  margin: 0 0 12px;
  color: oklch(0.49 0.13 80);
  font-size: 1rem;
  font-weight: 700;
}
.service-list {
  border-top: 1px solid var(--line);
}
.service-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.service-index {
  color: var(--brand-strong);
  font-size: 0.95rem;
  font-weight: 700;
}
.service-copy {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(280px, 1.3fr) auto;
  gap: 30px;
  align-items: center;
}
.service-copy h3 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}
.service-copy h3 a {
  text-decoration: none;
}
.service-copy h3 a:hover {
  color: oklch(0.48 0.13 80);
}
.service-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}
.service-copy .text-link {
  white-space: nowrap;
  font-size: 0.94rem;
}
.service-featured {
  grid-template-columns: 70px minmax(0, 1fr) minmax(280px, 0.72fr);
  padding: 34px 0;
}
.service-featured .service-copy {
  display: block;
}
.service-featured .service-copy p {
  margin: 14px 0 20px;
}
.service-featured > img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.process-section {
  background: var(--ink);
  color: var(--white);
}
.process-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(60px, 10vw, 140px);
}
.process-intro {
  align-self: center;
}
.process-intro h2 {
  margin-bottom: 22px;
}
.process-intro p:not(.section-tag) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
}
.process-intro .button {
  margin-top: 16px;
}
.process-list {
  list-style: none;
}
.process-list li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.process-list li:first-child {
  padding-top: 0;
}
.process-list span {
  color: var(--brand);
  font-weight: 700;
}
.process-list h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}
.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}
.why-section {
  background: var(--surface-2);
}
.why-photo {
  position: relative;
}
.why-photo > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.photo-label {
  position: absolute;
  right: -24px;
  bottom: 28px;
  padding: 18px 22px;
  background: var(--brand);
  font-size: 0.9rem;
  line-height: 1.3;
}
.photo-label strong {
  font-size: 1.12rem;
}
.check-list {
  display: grid;
  gap: 14px;
  list-style: none;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
}
.check-list .icon {
  color: var(--brand-strong);
}

.reviews-section {
  background: var(--white);
}
.reviews-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  margin-bottom: 45px;
}
.reviews-head h2 {
  max-width: 800px;
}
.google-proof {
  display: flex;
  min-width: 190px;
  flex-direction: column;
}
.google-proof strong {
  font-size: 1.15rem;
}
.google-proof span:last-child {
  color: var(--muted);
  font-size: 0.75rem;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.review-icon {
  color: var(--brand-strong);
}
.review-icon .icon {
  width: 30px;
  height: 30px;
}
.review blockquote {
  margin: 24px 0 28px;
  color: var(--ink-2);
  font-size: 1rem;
}
.review figcaption {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
.review figcaption span {
  color: var(--muted);
  font-size: 0.78rem;
}
.section-action {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 36px;
}

.area-section,
.contact-map {
  background: var(--surface-2);
}
.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: clamp(50px, 7vw, 90px);
  align-items: center;
}
.map-wrap {
  position: relative;
  min-height: 480px;
  background: var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}
.map-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.map-badge .icon {
  color: var(--brand);
}
.map-badge span {
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
}
.map-badge strong {
  font-size: 0.96rem;
}
.area-copy > p:not(.section-tag) {
  margin: 22px 0;
  color: var(--muted);
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
}
.area-tags span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 600;
}
.pricing-preview {
  background: var(--ink);
  color: var(--white);
}
.pricing-preview .split-heading > p {
  color: rgba(255, 255, 255, 0.68);
}
.price-preview-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.price-line {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.price-line > span {
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
}
.price-line > b {
  color: var(--brand);
  font-size: 1.2rem;
}
.pricing-preview .section-action .text-link {
  color: var(--white);
}

.gallery-preview {
  background: var(--surface);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--line);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.035);
}
.gallery-1 {
  grid-column: span 7;
  grid-row: span 2;
}
.gallery-2 {
  grid-column: span 5;
}
.gallery-3 {
  grid-column: span 5;
}
.gallery-4 {
  grid-column: span 4;
}
.gallery-grid-full .gallery-item {
  grid-column: span 6;
  grid-row: span 2;
}
.gallery-grid-full .gallery-3,
.gallery-grid-full .gallery-4 {
  grid-column: span 4;
}
.gallery-grid-full .gallery-5,
.gallery-grid-full .gallery-6 {
  grid-column: span 4;
}
.gallery-item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  background: rgba(10, 20, 32, 0.88);
  color: var(--white);
  font-size: 0.82rem;
}

.faq-section {
  background: var(--white);
}
.faq-list {
  max-width: 900px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  position: relative;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0;
  transition: transform 0.25s;
}
/* Krzyżyk rysowany w CSS — znak „+” z fontu siedział poniżej środka kółka. */
.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-list details[open] > summary span {
  transform: rotate(45deg);
  background: var(--brand);
  border-color: var(--brand);
}
.faq-list details > div {
  padding: 0 52px 22px 0;
  color: var(--muted);
}
.quote-section {
  background: var(--surface-2);
}
.quote-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(500px, 1.25fr);
  gap: clamp(45px, 8vw, 100px);
  align-items: start;
}
.quote-intro {
  position: sticky;
  top: 120px;
}
.quote-intro > p:not(.section-tag) {
  margin: 22px 0;
  color: var(--muted);
}
.direct-contact {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}
.direct-contact > a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid var(--line);
  background: var(--white);
  text-decoration: none;
}
.direct-contact > a:hover {
  border-color: var(--brand-strong);
}
.direct-contact .icon {
  color: var(--brand-strong);
}
.direct-contact span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.direct-contact small {
  color: var(--muted);
}
.direct-contact strong {
  overflow-wrap: anywhere;
}

.quote-form {
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.field-wide {
  grid-column: 1/-1;
}
.field label {
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 650;
}
.field label span {
  color: var(--muted);
  font-weight: 400;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 49px;
  border: 1px solid oklch(0.7 0.015 255);
  border-radius: 5px;
  background: var(--surface);
  color: var(--ink);
  padding: 11px 13px;
}
.field textarea {
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: oklch(0.45 0.02 255);
}
.field [aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 0 0 0 2px color-mix(in oklch, var(--error) 15%, transparent);
}
.field-error {
  min-height: 18px;
  color: var(--error);
  font-size: 0.78rem;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}
.consent input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  flex: none;
}
.honeypot {
  position: absolute;
  left: -9999px;
}
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}
.form-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.form-footer p a {
  font-weight: 700;
}
.form-status {
  display: none;
  margin-top: 18px;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 600;
}
.form-status.is-success {
  display: block;
  background: color-mix(in oklch, var(--success) 12%, white);
  color: oklch(0.35 0.11 150);
}
.form-status.is-error {
  display: block;
  background: color-mix(in oklch, var(--error) 10%, white);
  color: oklch(0.4 0.16 28);
}
.quote-form.is-loading button {
  pointer-events: none;
  opacity: 0.65;
}

.final-cta {
  padding: 60px 0;
  background: var(--brand);
  color: var(--ink);
}
.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}
.final-cta p {
  margin: 8px 0 0;
}
.final-cta .button {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.final-cta .button-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}
.site-footer {
  padding: 70px 0 24px;
  background: #292929;
  color: rgba(255, 255, 255, 0.76);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
  gap: 55px;
}
.footer-brand img {
  width: min(290px, 100%);
}
.footer-brand p {
  max-width: 380px;
  margin: 20px 0;
  font-size: 0.92rem;
}
.site-footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: 0;
}
.site-footer ul {
  display: grid;
  gap: 8px;
  list-style: none;
}
.site-footer li a,
.site-footer address a,
.site-footer address span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--brand);
}
.site-footer address {
  display: grid;
  gap: 10px;
  font-style: normal;
}
.vat-note {
  display: inline-flex;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  font-size: 0.8rem;
  font-weight: 700;
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 18px;
}
.social-links a {
  font-size: 0.85rem;
}
.partners {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.partners h2 {
  max-width: 460px;
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}
.partner-logo {
  display: block;
  width: min(190px, 100%);
  padding: 9px 12px;
  border-radius: 6px;
  background: var(--white);
  transition:
    transform 160ms ease-out,
    box-shadow 160ms ease-out;
}
.partner-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}
.partner-logo:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 4px;
}
.partner-logo img {
  display: block;
  width: 100%;
  height: 42px;
  object-fit: contain;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom a {
  text-decoration: none;
}

.page-hero {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: end;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.page-hero-media div {
  background: linear-gradient(
    90deg,
    rgba(9, 19, 32, 0.95),
    rgba(9, 19, 32, 0.65) 55%,
    rgba(9, 19, 32, 0.3)
  );
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px 0 70px;
}
.page-hero h1 {
  max-width: 850px;
  font-size: clamp(2.7rem, 6vw, 4.4rem);
}
.page-hero p {
  max-width: 720px;
  margin: 22px 0 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.14rem;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 28px;
  list-style: none;
  color: inherit;
  font-size: 0.8rem;
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 7px;
  opacity: 0.55;
}
.breadcrumbs a {
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.service-detail {
  background: var(--white);
}
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 80px;
  align-items: start;
}
.detail-grid > div > p:not(.section-tag) {
  max-width: 700px;
  margin: 22px 0;
  color: var(--muted);
}
.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
  list-style: none;
}
.benefit-list li {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--surface-2);
  font-weight: 600;
}
.benefit-list .icon {
  color: var(--brand-strong);
}
.detail-cta {
  position: sticky;
  top: 110px;
  padding: 28px;
  background: var(--brand);
}
.detail-cta p {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}
.detail-cta .button {
  margin-top: 10px;
}
.detail-cta small {
  display: block;
  margin-top: 14px;
  line-height: 1.4;
}
.process-light {
  background: var(--surface-2);
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.steps-row > div {
  padding: 28px 25px 20px;
  border-right: 1px solid var(--line);
}
.steps-row > div:first-child {
  padding-left: 0;
}
.steps-row > div:last-child {
  border-right: 0;
}
.steps-row span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 30px;
  background: var(--brand);
  font-weight: 800;
}
.steps-row h3 {
  margin-bottom: 10px;
}
.steps-row p {
  color: var(--muted);
  font-size: 0.9rem;
}
.related {
  background: var(--white);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.related-grid > a {
  display: block;
  padding: 26px;
  border: 1px solid var(--line);
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.25s var(--ease);
}
.related-grid > a:hover {
  transform: translateY(-4px);
  background: var(--surface-2);
}
.related-grid > a > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 30px;
  background: var(--brand);
}
.related-grid h3 {
  margin-bottom: 11px;
}
.related-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-page {
  background: var(--white);
}
.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 70px;
  align-items: start;
}
.price-table {
  margin-top: 35px;
  border-top: 2px solid var(--ink);
}
.price-table-head,
.price-table-row {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 20px;
  padding: 17px 12px;
  border-bottom: 1px solid var(--line);
}
.price-table-head {
  background: var(--surface-2);
  font-size: 0.82rem;
  font-weight: 700;
}
.price-table-row strong {
  text-align: right;
  color: oklch(0.46 0.13 80);
}
.legal-note {
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.78rem;
}
.factor-box {
  position: sticky;
  top: 110px;
  padding: 30px;
  background: var(--ink);
  color: var(--white);
}
.factor-box h2 {
  font-size: 1.8rem;
}
.factor-box ul {
  display: grid;
  gap: 0;
  margin: 24px 0;
  list-style: none;
}
.factor-box li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.92rem;
}
.factor-box .icon {
  color: var(--brand);
}
.factor-box .button {
  margin-top: 8px;
}
.contact-page {
  background: var(--surface-2);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(520px, 1.25fr);
  gap: 70px;
}
.contact-sidebar > p:not(.section-tag) {
  margin: 22px 0;
  color: var(--muted);
}
.contact-sidebar address {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  font-style: normal;
}
.contact-sidebar address > a,
.contact-sidebar address > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid var(--line);
  background: var(--white);
  text-decoration: none;
}
.contact-sidebar address .icon {
  color: var(--brand-strong);
}
.contact-sidebar address span {
  display: flex;
  flex-direction: column;
}
.contact-sidebar address small {
  color: var(--muted);
}
.form-panel > p {
  color: var(--muted);
}
.form-panel .quote-form {
  margin-top: 25px;
}
.contact-map {
  padding-top: 0;
}

.reviews-page {
  background: var(--surface-2);
}
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 35px;
  padding: 28px;
  background: var(--ink);
  color: var(--white);
}
.reviews-summary > div {
  display: flex;
  flex-direction: column;
}
.reviews-summary strong {
  font-size: 1.45rem;
}
.reviews-summary p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}
.review-grid-full {
  grid-template-columns: repeat(2, 1fr);
}
.trust-note {
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.85rem;
}
.location-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 60px;
}
.location-groups section {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}
.location-groups h2 {
  margin-bottom: 22px;
  font-size: 1.5rem;
}
.location-groups ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}
.location-groups li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  background: var(--surface-2);
  font-size: 0.88rem;
}
.location-groups .icon {
  width: 16px;
  color: var(--brand-strong);
}
.route-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 50px;
  padding: 35px;
  background: var(--brand);
}
.route-banner h2 {
  font-size: 2rem;
}
.route-banner p {
  margin: 7px 0 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-grid > div > p:not(.section-tag) {
  color: var(--muted);
}
.about-grid .check-list {
  margin-top: 28px;
}
.about-grid > img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.article-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 25px;
}
.article-card {
  background: var(--white);
  border: 1px solid var(--line);
}
.article-featured img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.article-card > div {
  padding: 28px;
}
.article-card time,
.article-label {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}
.article-card h2 {
  margin: 10px 0 14px;
  font-size: 1.8rem;
}
.article-card h2 a {
  text-decoration: none;
}
.article-card p {
  color: var(--muted);
}
.mini-checklist {
  display: grid;
  gap: 12px;
  margin: 20px 0 30px;
  padding-left: 20px;
}
.article-header {
  padding: 80px 0;
  background: var(--ink);
  color: var(--white);
}
.article-header time {
  color: var(--brand);
  font-weight: 700;
}
.article-header h1 {
  margin: 16px 0 22px;
}
.article-header > div > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.2rem;
}
.article-cover {
  width: min(1200px, 100%);
  height: min(52vw, 600px);
  margin: 0 auto;
}
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-content {
  max-width: 850px;
  padding-block: 70px;
}
.article-content .lead {
  font-size: 1.24rem;
  font-weight: 500;
}
.article-content h2 {
  margin: 55px 0 18px;
  font-size: 2.1rem;
}
.article-content h3 {
  margin: 30px 0 9px;
}
.article-content p {
  color: var(--ink-2);
}
.article-prices {
  border-top: 2px solid var(--ink);
}
.article-prices > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.article-prices strong {
  white-space: nowrap;
  color: oklch(0.46 0.13 80);
}
.article-cta {
  margin-top: 55px;
  padding: 35px;
  background: var(--ink);
  color: var(--white);
}
.article-cta h2 {
  margin: 0 0 10px;
}
.article-cta p {
  color: rgba(255, 255, 255, 0.75);
}

.legal-hero {
  padding: 80px 0 55px;
  background: var(--ink);
  color: var(--white);
}
.legal-hero p {
  color: rgba(255, 255, 255, 0.7);
}
.legal-updated {
  font-size: 0.8rem;
}
.legal-content {
  max-width: 850px;
  padding-block: 70px;
}
.legal-content h2 {
  margin: 42px 0 13px;
  font-size: 1.65rem;
}
.legal-content p {
  color: var(--ink-2);
}
.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 80px 0;
  text-align: center;
}
.not-found span {
  display: block;
  color: var(--brand-strong);
  font-size: 7rem;
  font-weight: 800;
  line-height: 1;
}
.not-found h1 {
  max-width: 800px;
  margin: 10px auto 22px;
}
.not-found p {
  color: var(--muted);
}
.not-found .button-row {
  justify-content: center;
  margin-top: 30px;
}

.hero-phone {
  display: inline-block;
  margin-top: 22px;
  color: var(--brand);
  font-size: clamp(2.15rem, 3.4vw, 3.1rem);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}
.hero-phone:hover {
  color: var(--white);
}

.stats-section {
  position: relative;
  z-index: 2;
  background: var(--brand);
  color: var(--ink);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  display: flex;
  min-height: 178px;
  flex-direction: column;
  justify-content: center;
  padding: 26px clamp(18px, 3vw, 38px);
  border-right: 1px solid color-mix(in oklch, var(--ink) 24%, transparent);
}
.stat-item:first-child {
  padding-left: 0;
}
.stat-item:last-child {
  padding-right: 0;
  border-right: 0;
}
.stat-item strong {
  font-size: clamp(2.65rem, 5vw, 4.35rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.stat-item > span {
  margin-top: 12px;
  font-weight: 700;
}
.stat-item small {
  margin-top: 3px;
  color: color-mix(in oklch, var(--ink) 72%, transparent);
  font-size: 0.78rem;
  line-height: 1.35;
}
.stat-item-text strong {
  font-size: clamp(2.15rem, 4vw, 3.6rem);
}

.why-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  column-gap: clamp(40px, 8vw, 110px);
  align-items: end;
  margin-bottom: 48px;
}
.why-heading .section-tag {
  grid-column: 1 / -1;
}
.why-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}
.why-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: stretch;
}
.why-showcase .why-photo > img {
  height: 100%;
  min-height: 530px;
}
.why-points {
  display: grid;
  align-content: center;
}
.why-points article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 17px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.why-points article:first-child {
  padding-top: 0;
}
.why-points article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.why-points .icon {
  width: 32px;
  height: 32px;
  padding: 6px;
  background: var(--brand);
}
.why-points h3 {
  margin-bottom: 6px;
}
.why-points p {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}
.why-action {
  margin-top: 40px;
}

.service-map {
  --map-gold: oklch(0.55 0.11 67);
  position: relative;
  min-height: 480px;
  padding: 18px;
  overflow: hidden;
  background: oklch(0.205 0.022 255);
  color: var(--brand);
  box-shadow: var(--shadow);
}
.service-map::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 58%);
  content: "";
}
.service-map svg {
  position: relative;
  width: 100%;
  height: auto;
}
.map-river {
  fill: none;
  stroke: oklch(0.7 0.1 238);
  stroke-width: 12;
  opacity: 0.34;
}
.map-road {
  fill: none;
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1.5;
}
.map-road-faint {
  opacity: 0.46;
}
.map-service-area {
  fill: color-mix(in oklch, var(--brand) 3%, transparent);
  stroke: color-mix(in oklch, var(--brand) 82%, white);
  stroke-width: 3;
}
.map-area-caption {
  fill: rgba(255, 255, 255, 0.72);
  font-family: Barlow, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-anchor: middle;
}
.krakow-boundary {
  fill: color-mix(in oklch, var(--map-gold) 17%, transparent);
  stroke: var(--map-gold);
  stroke-width: 5.5;
  stroke-linejoin: round;
}
.map-place circle {
  fill: var(--brand);
  stroke: var(--ink);
  stroke-width: 4;
}
.map-place text,
.map-route-label text {
  fill: var(--white);
  font-family: Barlow, Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
}
.map-place-main text {
  fill: var(--brand);
  font-size: 27px;
  font-weight: 800;
  text-anchor: middle;
}
.map-districts text {
  fill: rgba(255, 255, 255, 0.5);
  font-family: Barlow, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.map-route-label path {
  fill: none;
  stroke: var(--brand);
  stroke-width: 3;
}
.map-route-label text {
  fill: var(--brand);
  font-size: 15px;
}
.map-legend {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.76rem;
}
.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.map-legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 2px solid var(--brand);
  border-radius: 50%;
}
.map-legend .legend-core {
  width: 18px;
  height: 12px;
  border-color: var(--map-gold);
  border-radius: 2px;
  background: color-mix(in oklch, var(--map-gold) 17%, transparent);
}
.map-legend .legend-area {
  width: 14px;
  height: 14px;
  background: transparent;
}
.map-legend .legend-route {
  width: 22px;
  height: 0;
  border-width: 1px 0 0;
  border-radius: 0;
}
.area-copy .button-row {
  align-items: center;
}

.google-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: oklch(0.5 0.19 250);
  font-size: 1.25rem;
  font-weight: 800;
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }
  .header-actions {
    margin-left: auto;
  }
  .menu-toggle {
    display: flex;
  }
  .service-copy {
    grid-template-columns: minmax(220px, 0.7fr) minmax(260px, 1.3fr);
  }
  .service-copy .text-link {
    grid-column: 2;
  }
  .service-featured .service-copy .text-link {
    grid-column: auto;
  }
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 2/4;
  }
  .hero-note {
    right: 20px;
  }
  .contact-grid {
    gap: 40px;
  }
  .quote-layout {
    gap: 45px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) {
    border-right: 0;
  }
  .stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid color-mix(in oklch, var(--ink) 24%, transparent);
  }
  .stat-item:nth-child(3) {
    padding-left: 0;
  }
}
@media (max-width: 860px) {
  :root {
    --container: min(calc(100% - 32px), 720px);
  }
  body {
  padding-top: 0;
    font-size: 17px;
  }
  .header-phone span {
    display: none;
  }
  .section {
    padding: 72px 0;
  }
  .split-heading,
  .reviews-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero {
    min-height: 720px;
    align-items: flex-start;
  }
  .hero-scrim {
    background: linear-gradient(
      90deg,
      rgba(9, 19, 32, 0.94),
      rgba(9, 19, 32, 0.64)
    );
  }
  .hero-inner {
    padding: 90px 0 180px;
  }
  .hero-note {
    left: 16px;
    right: 16px;
    bottom: 24px;
    width: auto;
  }
  .process-grid,
  .why-heading,
  .why-showcase,
  .area-grid,
  .quote-layout,
  .detail-grid,
  .price-layout,
  .contact-grid,
  .about-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    gap: 55px;
  }
  .why-photo > img,
  .about-grid > img {
    height: 420px;
  }
  .why-heading {
    gap: 18px;
  }
  .why-heading .section-tag {
    grid-column: auto;
  }
  .why-showcase .why-photo > img {
    min-height: 0;
    height: 440px;
  }
  .photo-label {
    right: -8px;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .review {
    min-height: 0;
  }
  .map-wrap,
  .map-wrap iframe {
    min-height: 400px;
    height: 400px;
  }
  .quote-intro,
  .detail-cta,
  .factor-box {
    position: static;
  }
  .steps-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-row > div:nth-child(2) {
    border-right: 0;
  }
  .steps-row > div:nth-child(3) {
    padding-left: 0;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .location-groups {
    grid-template-columns: 1fr;
  }
  .route-banner {
    align-items: flex-start;
    flex-direction: column;
  }
  .gallery-grid-full .gallery-item {
    grid-column: span 12;
    grid-row: span 2;
  }
  .gallery-grid-full .gallery-3,
  .gallery-grid-full .gallery-4,
  .gallery-grid-full .gallery-5,
  .gallery-grid-full .gallery-6 {
    grid-column: span 6;
  }
  .contact-sidebar {
    max-width: 650px;
  }
  .form-panel {
    min-width: 0;
  }
}
@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
@media (min-width: 783px) {
  .admin-bar .site-header {
    top: 32px;
  }
}
@media (max-width: 640px) {
  :root {
    --container: calc(100% - 28px);
    --header: 70px;
  }
  body {
  padding-top: 0;
    padding-bottom: 74px;
  }
  h1 {
    font-size: clamp(2.55rem, 13vw, 3.6rem);
  }
  h2 {
    font-size: clamp(2rem, 9.5vw, 2.75rem);
  }
  .header-inner {
    gap: 10px;
  }
  .brand,
  .brand img {
    width: 162px;
  }
  .header-actions {
    display: none;
  }
  .menu-toggle {
    margin-left: auto;
  }
  .mobile-contact {
    position: fixed;
    z-index: 40;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 74px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.1);
  }
  .mobile-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
  }
  .mobile-contact a:first-child {
    background: var(--brand);
  }
  .hero {
    min-height: 780px;
  }
  .hero-media img {
    object-position: 60% center;
  }
  .hero-inner {
    padding-top: 64px;
  }
  .hero-local {
    font-size: 0.82rem;
  }
  .hero-lead {
    font-size: 1.05rem;
  }
  .hero .button-row {
    display: grid;
  }
  .hero .button {
    width: 100%;
  }
  .hero-trust {
    display: grid;
    gap: 9px;
  }
  .hero-note {
    bottom: 18px;
  }
  .hero-phone {
    margin-top: 18px;
    font-size: clamp(2rem, 10vw, 2.75rem);
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item {
    min-height: 145px;
    padding: 22px 18px;
  }
  .stat-item:first-child,
  .stat-item:nth-child(3) {
    padding-left: 0;
  }
  .stat-item:nth-child(2),
  .stat-item:last-child {
    padding-right: 0;
  }
  .stat-item strong {
    font-size: 2.7rem;
  }
  .stat-item-text strong {
    font-size: 2.15rem;
  }
  .service-item,
  .service-featured {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }
  .service-copy {
    display: block;
  }
  .service-copy p {
    margin: 10px 0 16px;
  }
  .service-featured > img {
    display: none;
  }
  .process-list li {
    grid-template-columns: 45px 1fr;
  }
  .why-photo > img,
  .about-grid > img {
    height: 340px;
  }
  .why-showcase .why-photo > img {
    height: 340px;
  }
  .why-points article {
    grid-template-columns: 40px 1fr;
    padding: 18px 0;
  }
  .service-map {
    min-height: 0;
    padding: 4px;
  }
  .service-map svg {
    min-height: 370px;
    object-fit: cover;
  }
  .map-place text {
    font-size: 16px;
  }
  .map-place-main text {
    font-size: 24px;
  }
  .reviews-head {
    align-items: start;
  }
  .google-proof {
    min-width: 0;
  }
  .section-action {
    align-items: flex-start;
    flex-direction: column;
  }
  .map-wrap,
  .map-wrap iframe {
    min-height: 350px;
    height: 350px;
  }
  .map-badge {
    left: 10px;
    bottom: 10px;
  }
  .price-line {
    grid-template-columns: 38px 1fr;
  }
  .price-line > b {
    grid-column: 2;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .gallery-item,
  .gallery-1,
  .gallery-2,
  .gallery-3,
  .gallery-4,
  .gallery-grid-full .gallery-item,
  .gallery-grid-full .gallery-3,
  .gallery-grid-full .gallery-4,
  .gallery-grid-full .gallery-5,
  .gallery-grid-full .gallery-6 {
    grid-column: auto;
    grid-row: auto;
  }
  .faq-list summary {
    font-size: 1.05rem;
  }
  .quote-form {
    padding: 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field-wide {
    grid-column: auto;
  }
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .form-footer .button {
    width: 100%;
  }
  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .final-cta .button-row {
    width: 100%;
  }
  .final-cta .button {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .partners {
    align-items: stretch;
    flex-direction: column;
  }
  .partner-logo {
    width: 180px;
  }
  .partner-logo img {
    height: auto;
    max-height: 76px;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .page-hero {
    min-height: 540px;
  }
  .page-hero-inner {
    padding: 65px 0 48px;
  }
  .page-hero .button-row {
    display: grid;
  }
  .page-hero .button {
    width: 100%;
  }
  .benefit-list {
    grid-template-columns: 1fr;
  }
  .steps-row {
    grid-template-columns: 1fr;
  }
  .steps-row > div {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .steps-row > div:nth-child(3) {
    padding-left: 0;
  }
  .price-table-head,
  .price-table-row {
    grid-template-columns: 1fr auto;
    font-size: 0.92rem;
  }
  .price-table-head {
    display: none;
  }
  .reviews-summary {
    align-items: flex-start;
    flex-direction: column;
  }
  .review-grid-full {
    grid-template-columns: 1fr;
  }
  .location-groups section {
    padding: 22px;
  }
  .article-featured img {
    height: 240px;
  }
  .article-cover {
    height: 60vw;
  }
  .article-content {
    padding-block: 55px;
  }
  .article-prices > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .article-cta {
    padding: 24px;
  }
  .not-found span {
    font-size: 5rem;
  }
}
@media (max-width: 360px) {
  :root {
    --container: calc(100% - 22px);
  }
  .brand,
  .brand img {
    width: 145px;
  }
  .hero h1 {
    font-size: 2.45rem;
  }
  .hero-note {
    padding: 17px;
  }
  .button {
    padding-inline: 15px;
  }
  .quote-form {
    padding: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
@media print {
  .site-header,
  .mobile-contact,
  .final-cta,
  .site-footer,
  .button {
    display: none !important;
  }
  .section {
    padding: 30px 0;
  }
  body {
  padding-top: 0;
    color: #000;
    background: #fff;
  }
  .page-hero {
    min-height: 0;
    color: #000;
    background: #fff;
  }
  .page-hero-media {
    display: none;
  }
  .page-hero-inner {
    padding: 30px 0;
  }
}


.entry-content {
  min-height: 50vh;
}
.entry-content > h1 {
  margin-bottom: 32px;
}
.entry-content > * + * {
  margin-top: 1.25em;
}
.entry-content a {
  color: var(--ink);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
