:root {
  --grey-900: #333333;
  --grey-800: #444444;
  --grey-700: #5b5f5f;
  --grey-300: #d9dddd;
  --grey-200: #eef0f0;
  --grey-100: #f7f8f8;
  --orange: #ef4f22;
  --orange-dark: #d94014;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
  --font-heading: "Barlow Condensed", Arial, sans-serif;
  --font-body: "Open Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--grey-900);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  background: var(--white);
}

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

a {
  color: inherit;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 9999;
  background: var(--orange);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.08);
}

.utility-bar {
  background: var(--grey-800);
  color: var(--white);
  font-size: 14px;
}

.utility-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.utility-inner a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.utility-inner a:hover {
  color: #ffd7cc;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font: 700 14px var(--font-body);
  cursor: pointer;
}

.brand-row {
  background: var(--white);
}

.brand-inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  width: min(330px, 72vw);
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.brand-contact {
  text-align: right;
  color: var(--grey-700);
  font-size: 15px;
}

.brand-contact strong {
  display: block;
  color: var(--orange);
  font: 600 28px/1 var(--font-heading);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.main-nav {
  background: var(--grey-700);
  border-top: 5px solid var(--orange);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0;
}

.main-nav a {
  display: block;
  padding: 17px 24px;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font: 700 15px/1 var(--font-heading);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  background: var(--orange);
  outline: none;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(51, 51, 51, 0.92), rgba(51, 51, 51, 0.72)),
    url("https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: var(--white);
  padding: 92px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 380px;
  gap: 50px;
  align-items: center;
}

.hero-copy {
  border-left: 7px solid var(--orange);
  padding-left: 30px;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--orange);
  font: 700 18px/1 var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.1;
  margin: 0;
}

h1 {
  max-width: 780px;
  color: var(--white);
  font-size: clamp(46px, 7vw, 76px);
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

h2 {
  color: var(--grey-800);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 600;
  margin-bottom: 22px;
}

h3 {
  color: var(--grey-800);
  font-size: 30px;
  font-weight: 600;
}

h4 {
  color: var(--grey-800);
  font-size: 24px;
  margin-top: 28px;
}

.hero-copy p {
  max-width: 720px;
  color: #f0f0f0;
  font-size: 18px;
  margin: 22px 0 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font: 700 16px/1 var(--font-heading);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--orange);
  color: var(--white);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-light {
  background: var(--white);
  color: var(--grey-800);
}

.button-light:hover {
  background: var(--grey-200);
}

.hero-card {
  background: var(--white);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: auto;
}

.intro-strip {
  background: var(--grey-100);
  border-bottom: 1px solid var(--grey-300);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.strip-grid > div {
  padding: 24px 28px;
  border-left: 1px solid var(--grey-300);
}

.strip-grid > div:last-child {
  border-right: 1px solid var(--grey-300);
}

.strip-label {
  display: block;
  color: var(--orange);
  font: 700 19px/1 var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.strip-grid a,
.strip-grid span:not(.strip-label) {
  display: inline-block;
  margin-top: 5px;
  color: var(--grey-800);
  font-weight: 700;
  text-decoration: none;
}

.content-section,
.services-section,
.route-section,
.contact-section {
  padding: 82px 0;
}

.content-section {
  background: var(--white);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 55px;
  align-items: start;
}

.content-card {
  border-left: 5px solid var(--orange);
  padding-left: 30px;
}

.content-card p {
  color: var(--grey-700);
  margin: 0 0 16px;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  background: var(--grey-100);
  border: 1px solid var(--grey-300);
}

.feature-item > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--white);
  font: 700 27px/1 var(--font-heading);
}

.feature-item h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.feature-item p {
  margin: 0;
  color: var(--grey-700);
  font-size: 15px;
}

.services-section {
  background: var(--grey-100);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-box {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  background: var(--white);
  border-top: 5px solid var(--grey-700);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  border-top-color: var(--orange);
}

.service-box h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.service-box p {
  color: var(--grey-700);
  margin: 0 0 24px;
  font-size: 15px;
}

.service-box a {
  margin-top: auto;
  color: var(--orange);
  text-decoration: none;
  font: 700 18px/1 var(--font-heading);
  text-transform: uppercase;
}

.layout-with-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 46px;
  align-items: start;
}

.main-column .lead {
  max-width: 760px;
  color: var(--grey-700);
  font-size: 17px;
  margin-top: -4px;
}

.map-panel {
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--grey-300);
  box-shadow: var(--shadow);
  background: var(--grey-200);
  aspect-ratio: 16 / 9;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.route-note {
  margin-top: 18px;
  padding: 18px 20px;
  background: var(--grey-100);
  border-left: 5px solid var(--orange);
  color: var(--grey-700);
  font-size: 15px;
}

.sidebar-card,
.contact-aside {
  background: var(--grey-100);
  border-top: 5px solid var(--orange);
  padding: 30px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
}

.sidebar-card p {
  color: var(--grey-700);
  margin: 18px 0;
}

.sidebar-card a,
.contact-aside a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
}

.hours {
  margin: 14px 0 0;
}

.hours div {
  border-top: 1px solid var(--grey-300);
  padding: 13px 0;
}

.hours dt {
  font-weight: 700;
  color: var(--grey-800);
}

.hours dd {
  margin: 3px 0 0;
  color: var(--grey-700);
}

.contact-section {
  background: var(--grey-100);
}

.contact-layout {
  align-items: stretch;
}

.contact-form {
  display: grid;
  gap: 18px;
  max-width: 780px;
  margin-top: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--grey-800);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--grey-300);
  border-radius: 0;
  background: var(--white);
  padding: 15px 16px;
  color: var(--grey-900);
  font: 16px var(--font-body);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(239, 79, 34, 0.18);
  border-color: var(--orange);
}

.checkbox {
  display: flex !important;
  grid-template-columns: auto 1fr;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px !important;
  color: var(--grey-700) !important;
  font-size: 14px;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.contact-aside {
  display: grid;
  align-content: start;
  gap: 16px;
  background: var(--white);
}

.contact-tile {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: var(--grey-100);
  color: var(--grey-800);
  text-decoration: none;
  border: 1px solid var(--grey-300);
}

.contact-tile > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--white);
  font-size: 22px;
}

.contact-tile strong,
.contact-tile small {
  display: block;
}

.contact-tile small {
  color: var(--grey-700);
  font-size: 14px;
  line-height: 1.4;
  word-break: break-word;
}

.site-footer {
  background: var(--grey-800);
  color: rgba(255, 255, 255, 0.82);
  padding: 46px 0 26px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}

.site-footer strong {
  color: var(--white);
  font: 600 30px/1 var(--font-heading);
  text-transform: uppercase;
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.site-footer a:hover {
  color: #ffd7cc;
}

.copyright {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.60);
}

@media (max-width: 1050px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .two-column,
  .layout-with-sidebar {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .sidebar-card,
  .contact-aside {
    max-width: 560px;
  }
}

@media (max-width: 760px) {
  .utility-inner {
    justify-content: space-between;
    gap: 12px;
  }


  .menu-toggle {
    display: inline-flex;
  }

  .brand-inner {
    min-height: 86px;
  }

  .brand-contact {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
  }

  .main-nav a {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 16px;
  }

  .page-hero {
    padding: 64px 0;
  }

  .hero-copy {
    padding-left: 20px;
  }

  .intro-strip .container {
    width: 100%;
  }

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

  .strip-grid > div {
    border-right: 0 !important;
  }

  .content-section,
  .services-section,
  .route-section,
  .contact-section {
    padding: 58px 0;
  }

  .service-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .utility-inner a {
    font-size: 13px;
  }

  .brand {
    width: 250px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    text-align: center;
  }

  .service-box {
    min-height: unset;
  }
}

/* Wycena */
.main-nav a.is-current {
  background: var(--orange);
}

.quote-hero {
  background:
    linear-gradient(90deg, rgba(51, 51, 51, 0.95), rgba(51, 51, 51, 0.72)),
    url("assets/logo-instal.jpg") center 33% /cover no-repeat;
  color: var(--white);
  padding: 86px 0;
}

.quote-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 48px;
  align-items: start;
}

.quote-hero-copy {
  border-left: 7px solid var(--orange);
  padding-left: 30px;
}

.quote-hero h1 {
  max-width: 900px;
}

.quote-hero-copy p {
  max-width: 760px;
  color: #f0f0f0;
  font-size: 18px;
  margin: 24px 0 28px;
}

.quote-points {
  display: grid;
  gap: 10px;
  color: #ffffff;
  font-weight: 700;
}

.quote-info-card,
.quote-side-card,
.quote-form-panel {
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-info-card {
  color: var(--grey-900);
  padding: 32px;
  border-top: 5px solid var(--orange);
}

.quote-info-card h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.quote-info-card ol {
  padding-left: 22px;
  margin: 0 0 18px;
}

.quote-info-card p {
  margin: 0;
  color: var(--grey-700);
}

.quote-section {
  background: var(--grey-100);
  padding: 72px 0 90px;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.quote-form-panel {
  padding: 42px;
}

.quote-form fieldset {
  border: 0;
  border-top: 5px solid var(--grey-700);
  background: #ffffff;
  padding: 28px 0 34px;
  margin: 0;
}

.quote-form legend {
  padding: 0 0 18px;
  color: var(--grey-800);
  font: 700 28px/1.1 var(--font-heading);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--grey-800);
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100% !important;
  border: 1px solid var(--grey-300);
  background: var(--grey-100);
  color: var(--grey-900);
  font: 400 15px/1.5 var(--font-body);
  padding: 13px 14px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form .checkbox {
  display: flex !important;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px !important;
}

.quote-form .checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  padding: 0;
  margin: 4px 0 0;
}

.quote-form .checkbox span {
  flex: 1;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.choice-card {
  display: flex !important;
  grid-template-columns: none !important;
  flex-direction: row;
  gap: 14px !important;
  align-items: flex-start;
  min-height: 118px;
  padding: 20px;
  border: 2px solid var(--grey-300);
  background: var(--grey-100);
  cursor: pointer;
}

.choice-card:has(input:checked) {
  border-color: var(--orange);
  background: #fff2ec;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  accent-color: var(--orange);
}

.choice-card strong {
  display: block;
  color: var(--grey-800);
  font: 700 28px/1 var(--font-heading);
  text-transform: uppercase;
}

.choice-card small {
  display: block;
  margin-top: 8px;
  color: var(--grey-700);
  font-weight: 400;
  line-height: 1.5;
}

.conditional-section {
  display: none;
}

.conditional-section.is-visible {
  display: block;
}

.form-note {
  margin: 16px 0 0;
  color: var(--grey-700);
  font-size: 14px;
}

.quote-side {
  display: grid;
  gap: 22px;
}

.quote-side-card {
  padding: 28px;
  border-top: 5px solid var(--grey-700);
}

.quote-side-card h3 {
  margin-bottom: 16px;
}

.quote-side-card ul {
  padding-left: 20px;
  margin: 0;
}

.quote-side-card.dark {
  background: var(--grey-800);
  color: var(--white);
  border-top-color: var(--orange);
}

.quote-side-card.dark h3 {
  color: var(--white);
}

.quote-side-card.dark p {
  color: #e8e8e8;
}

.quote-side-card.dark a {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.quote-side-card.dark a:hover {
  color: #ffd7cc;
}

@media (max-width: 940px) {
  .quote-hero-grid,
  .quote-layout,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .quote-hero {
    padding: 64px 0;
  }

  .quote-form-panel {
    padding: 30px 22px;
  }
}

/* Układ głównej strony po uproszczeniu kontaktu */
.utility-clean {
  justify-content: space-between;
}

.utility-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.utility-contact a {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.utility-contact a:hover {
  color: #ffd7cc;
}

.home-hero {
  padding: 104px 0;
}

.home-hero .hero-grid {
  grid-template-columns: minmax(0, 1fr);
}

.home-hero .hero-copy {
  max-width: 860px;
}

.hero-highlights {
  color: var(--grey-800);
  border-top: 5px solid var(--orange);
}

.hero-highlights h2 {
  font-size: 42px;
  margin-bottom: 18px;
}

.hero-highlights ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.hero-highlights li {
  position: relative;
  padding-left: 26px;
  color: var(--grey-700);
  font-weight: 700;
}

.hero-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 13px;
  height: 4px;
  background: var(--orange);
}

.home-question-strip {
  background: var(--grey-800);
  color: var(--white);
  padding: 34px 0;
}

.question-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 34px;
  align-items: center;
}

.question-inner h2 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 4px;
}

.question-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.centered-heading {
  max-width: 760px;
  text-align: left;
}

.centered-heading p {
  color: var(--grey-700);
  margin: -8px 0 0;
}

.service-grid-large {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.realizations-section {
  padding: 82px 0;
  background: var(--grey-100);
}

.realization-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.realization-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(51, 51, 51, 0.1), rgba(51, 51, 51, 0.86)),
    linear-gradient(135deg, #f2f3f3, #d9dddd);
  border-top: 5px solid var(--orange);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.realization-card span {
  color: var(--orange);
  font: 700 18px/1 var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.realization-card h3 {
  color: var(--white);
  font-size: 28px;
}

.final-cta {
  padding: 74px 0;
  background: var(--white);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 42px;
  background: var(--grey-800);
  border-left: 7px solid var(--orange);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.contact-hero {
  background:
    linear-gradient(
      90deg,
      rgba(40, 40, 40, 0.90),
      rgba(40, 40, 40, 0.76)
    ),
    url("assets/logo-instal.jpg") center 34% / cover no-repeat;

  color: var(--white);
  padding: 86px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}


.contact-hero-inner {
  border-left: 7px solid var(--orange);
  padding-left: 30px;

  transform: translateY(-150px);
}

.contact-hero h1 {
  color: var(--white);
}

.contact-hero p {
  max-width: 720px;
  color: #f0f0f0;
  font-size: 18px;
  margin: 22px 0 0;
}

.contact-page-section {
  padding: 72px 0;
  background: var(--grey-100);
}

.full-contact-aside h4 {
  margin-top: 8px;
}

.contact-map-section {
  background: var(--white);
  padding-top: 0;
}

.contact-map-section .lead {
  color: var(--grey-700);
  max-width: 760px;
}

.quote-layout-single {
  grid-template-columns: minmax(0, 1fr);
}

.quote-layout-single .quote-form-panel {
  max-width: 980px;
}

@media (max-width: 1050px) {
  .home-hero .hero-grid,
  .question-inner,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .service-grid-large,
  .realization-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .utility-contact {
    gap: 10px 14px;
    font-size: 13px;
  }

  .home-hero {
    padding: 68px 0;
  }

  .service-grid-large,
  .realization-grid {
    grid-template-columns: 1fr;
  }

  .question-inner,
  .final-cta-inner {
    text-align: left;
  }

  .final-cta-inner {
    padding: 30px 24px;
  }

  .contact-hero-inner {
    padding-left: 20px;
  }
}

/* Indywidualny układ strony głównej — mix inspiracji bez kopiowania układu Wodkar */
.is-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, rgba(239, 79, 34, 0.38), transparent 24%),
    linear-gradient(115deg, rgba(51, 51, 51, 0.98) 0%, rgba(51, 51, 51, 0.92) 48%, rgba(51, 51, 51, 0.70) 100%),
    url("https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?auto=format&fit=crop&w=1800&q=80") center/cover;
  padding: 98px 0 76px;
}

.is-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 440px;
  height: 440px;
  border: 42px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.is-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 58px;
  align-items: center;
}

.is-hero-copy {
  max-width: 790px;
}

.is-hero-copy h1 {
  color: var(--white);
  max-width: 830px;
}

.is-hero-copy p {
  max-width: 700px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.is-hero-panel {
  position: relative;
  padding: 34px 32px 32px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--grey-800);
  box-shadow: var(--shadow);
  transform: translateY(26px);
}

.panel-topline {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: var(--orange);
}

.panel-label {
  display: inline-block;
  color: var(--orange);
  font: 800 17px/1 var(--font-heading);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.is-hero-panel h2 {
  font-size: 43px;
  margin-bottom: 20px;
}

.is-hero-panel ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 14px;
}

.is-hero-panel li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
  color: var(--grey-800);
}

.is-hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 4px;
  background: var(--orange);
}

.is-hero-panel a {
  color: var(--orange);
  text-decoration: none;
  font: 800 18px/1 var(--font-heading);
  text-transform: uppercase;
}

.button-outline {
  background: transparent;
  color: var(--grey-800);
  outline: 2px solid var(--grey-800);
  outline-offset: -2px;
}

.button-outline:hover {
  background: var(--grey-800);
  color: var(--white);
}

.quick-path {
  background: var(--white);
  margin-top: -32px;
  position: relative;
  z-index: 5;
}

.quick-path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  box-shadow: var(--shadow);
}

.quick-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 4px 18px;
  align-items: start;
  min-height: 132px;
  padding: 28px;
  background: var(--white);
  border-right: 1px solid var(--grey-300);
  color: var(--grey-800);
  text-decoration: none;
}

.quick-card:last-child {
  border-right: 0;
}

.quick-card.primary {
  background: var(--orange);
  color: var(--white);
}

.quick-card span {
  grid-row: span 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--grey-800);
  color: var(--white);
  font: 800 28px/1 var(--font-heading);
}

.quick-card.primary span {
  background: var(--white);
  color: var(--orange);
}

.quick-card strong {
  font: 800 28px/1.05 var(--font-heading);
  text-transform: uppercase;
}

.quick-card small {
  color: var(--grey-700);
  line-height: 1.5;
}

.quick-card.primary small {
  color: rgba(255, 255, 255, 0.88);
}

.is-offer-section {
  padding: 92px 0;
  background: linear-gradient(90deg, var(--grey-100) 0%, var(--grey-100) 65%, var(--white) 65%, var(--white) 100%);
}

.offer-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.15fr 0.92fr;
  gap: 24px;
  align-items: stretch;
}

.offer-intro-card,
.about-copy-card,
.gallery-heading-card {
  background: var(--white);
  border-left: 6px solid var(--orange);
  padding: 34px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.offer-intro-card h2,
.process-heading h2,
.about-copy-card h2,
.gallery-heading-card h2,
.contact-prompt h2 {
  font-size: clamp(36px, 4.8vw, 56px);
}

.offer-intro-card p,
.process-heading p,
.about-copy-card p,
.gallery-heading-card p,
.contact-prompt p {
  color: var(--grey-700);
  margin: 0 0 22px;
}

.offer-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.main-services {
  display: grid;
  gap: 24px;
}

.main-service-card {
  position: relative;
  min-height: 250px;
  padding: 34px;
  overflow: hidden;
  background: var(--grey-800);
  color: var(--white);
  box-shadow: var(--shadow);
}

.main-service-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -70px;
  bottom: -85px;
  border: 28px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.main-service-card.heat {
  background: #4d5151;
}

.main-service-card > span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange);
  font: 800 20px/1 var(--font-heading);
  letter-spacing: 1.2px;
}

.main-service-card h3 {
  color: var(--white);
  font-size: 38px;
  margin-bottom: 14px;
}

.main-service-card p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.84);
  margin: 0 0 22px;
}

.main-service-card a {
  color: var(--white);
  text-decoration: none;
  font: 800 18px/1 var(--font-heading);
  text-transform: uppercase;
  border-bottom: 3px solid var(--orange);
}

.compact-services {
  display: grid;
  gap: 12px;
}

.compact-services article {
  display: grid;
  gap: 6px;
  padding: 22px 22px 20px;
  background: var(--white);
  border-top: 4px solid var(--grey-700);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.compact-services article:nth-child(even) {
  border-top-color: var(--orange);
}

.compact-services strong {
  color: var(--grey-800);
  font: 800 25px/1.1 var(--font-heading);
}

.compact-services span {
  color: var(--grey-700);
  font-size: 14px;
}

.process-section {
  padding: 92px 0;
  background: var(--white);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.35fr;
  gap: 52px;
  align-items: start;
}

.process-heading {
  position: sticky;
  top: 190px;
  border-left: 6px solid var(--orange);
  padding-left: 30px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.process-steps article {
  min-height: 238px;
  padding: 30px;
  background: var(--grey-100);
  border: 1px solid var(--grey-300);
  border-bottom: 5px solid var(--grey-700);
}

.process-steps article:nth-child(2),
.process-steps article:nth-child(3) {
  transform: translateY(34px);
}

.process-steps span {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  background: var(--orange);
  color: var(--white);
  font: 800 28px/1 var(--font-heading);
}

.process-steps h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.process-steps p {
  color: var(--grey-700);
  margin: 0;
  font-size: 15px;
}

.is-about-section {
  padding: 96px 0;
  background: var(--grey-100);
}

.about-split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: center;
}

.about-image-card {
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow);
  transform: rotate(-1.2deg);
}

.about-image-card img {
  width: 100%;
  height: auto;
}

.about-copy-card {
  transform: translateY(28px);
}

.about-points {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.about-points div {
  padding: 18px 20px;
  background: var(--grey-100);
  border-left: 4px solid var(--orange);
}

.about-points strong,
.about-points span {
  display: block;
}

.about-points strong {
  color: var(--grey-800);
  font: 800 24px/1.1 var(--font-heading);
}

.about-points span {
  margin-top: 5px;
  color: var(--grey-700);
  font-size: 15px;
}

.gallery-preview {
  padding: 88px 0;
  background: var(--white);
}

.gallery-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.gallery-heading-card {
  align-self: stretch;
}
/* ==================================================
   GALERIA REALIZACJI
================================================== */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 320px;
  gap: 18px;
}

.contact-prompt {
  padding: 78px 0;
  background: var(--grey-800);
  color: var(--white);
}

.gallery-mosaic .album-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;

  padding: 26px;

  border: 0;
  border-top: 5px solid var(--orange);

  background:
    linear-gradient(
      180deg,
      rgba(51, 51, 51, 0.08),
      rgba(51, 51, 51, 0.88)
    ),
    linear-gradient(
      135deg,
      #f2f3f3,
      #cfd4d4
    );

  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);

  overflow: hidden;
  cursor: pointer;
  text-align: left;
  isolation: isolate;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* Klasa zostaje w HTML, ale nie powiększa już pierwszego kafla. */
.gallery-mosaic .album-card-large {
  grid-row: auto;
  grid-column: auto;
}

.gallery-mosaic .album-card img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  z-index: -2;

  transition: transform 0.4s ease;
}

.gallery-mosaic .album-card::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(20, 20, 20, 0.92) 0%,
      rgba(20, 20, 20, 0.58) 42%,
      rgba(20, 20, 20, 0.10) 78%
    );

  z-index: -1;
}

.gallery-mosaic .album-card span {
  color: var(--orange);
  font: 800 18px/1 var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.gallery-mosaic .album-card strong {
  color: var(--white);
  font: 800 30px/1.08 var(--font-heading);
  text-transform: uppercase;
}

.gallery-mosaic .album-card small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
}

.gallery-mosaic .album-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.gallery-mosaic .album-card:hover img {
  transform: scale(1.055);
}

/* ==================================================
   MODAL GALERII
================================================== */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 35px 80px;

  background: rgba(12, 12, 12, 0.97);
}

.gallery-modal.is-open {
  display: flex;
}

.gallery-content {
  width: min(1200px, 100%);
  max-height: 92vh;

  display: flex;
  flex-direction: column;

  margin: 0 auto;
}

.gallery-header {
  margin-bottom: 14px;
  color: var(--white);
}

.gallery-header h2 {
  margin: 4px 0;
  color: var(--white);
  font-size: 32px;
  text-transform: uppercase;
}

.gallery-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.gallery-image-stage {
  width: 100%;
  height: min(68vh, 720px);

  display: flex;
  align-items: center;
  justify-content: center;

  background: #111;
  overflow: hidden;
}

.gallery-main-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: auto;
}

.gallery-close {
  position: absolute;
  top: 15px;
  right: 25px;

  border: 0;
  background: transparent;
  color: var(--white);

  font-size: 50px;
  line-height: 1;

  cursor: pointer;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 55px;
  height: 80px;

  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);

  font-size: 50px;
  line-height: 1;

  cursor: pointer;
}

.gallery-arrow:hover {
  background: rgba(255, 255, 255, 0.16);
}

.gallery-prev {
  left: 15px;
}

.gallery-next {
  right: 15px;
}

.gallery-thumbnails {
  display: flex;
  gap: 8px;
  padding-top: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.gallery-thumbnails img {
  flex: 0 0 auto;
  width: 90px;
  height: 65px;

  object-fit: cover;

  opacity: 0.45;
  border: 2px solid transparent;

  cursor: pointer;

  transition:
    opacity 0.2s ease,
    border-color 0.2s ease;
}

.gallery-thumbnails img:hover {
  opacity: 0.8;
}

.gallery-thumbnails img.is-active {
  opacity: 1;
  border-color: var(--orange);
}

/* ==================================================
   GALERIA - TABLET / TELEFON
================================================== */
@media (max-width: 860px) {
  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .gallery-mosaic .album-card,
  .gallery-mosaic .album-card-large {
    grid-row: auto;
    grid-column: auto;
  }

  .gallery-modal {
    padding: 55px 12px 20px;
  }

  .gallery-image-stage {
    height: 62vh;
  }

  .gallery-arrow {
    width: 40px;
    height: 60px;
    font-size: 34px;
  }

  .gallery-prev {
    left: 4px;
  }

  .gallery-next {
    right: 4px;
  }
}

@media (max-width: 560px) {
  .gallery-mosaic {
    grid-auto-rows: 250px;
    gap: 14px;
  }

  .gallery-mosaic .album-card {
    padding: 22px;
  }

  .gallery-mosaic .album-card strong {
    font-size: 27px;
  }

  .gallery-thumbnails img {
    width: 72px;
    height: 52px;
  }
}

/* Koniec Galerii zdjęć */
.contact-prompt-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.contact-prompt h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.contact-prompt p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}

.prompt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 1120px) {
  .is-hero-grid,
  .offer-layout,
  .process-layout,
  .about-split,
  .gallery-layout,
  .contact-prompt-inner {
    grid-template-columns: 1fr;
  }

  .is-hero-panel {
    max-width: 560px;
    transform: none;
  }

  .quick-path {
    margin-top: 0;
  }

  .process-heading {
    position: static;
  }

  .process-steps article:nth-child(2),
  .process-steps article:nth-child(3),
  .about-copy-card,
  .about-image-card {
    transform: none;
  }

  .prompt-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .quick-path-grid,
  .process-steps,
  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .quick-card {
    border-right: 0;
    border-bottom: 1px solid var(--grey-300);
  }

  .quick-card:last-child {
    border-bottom: 0;
  }

  .is-hero {
    padding: 72px 0 52px;
  }

  .is-offer-section,
  .process-section,
  .is-about-section,
  .gallery-preview,
  .contact-prompt {
    padding: 62px 0;
  }
}

@media (max-width: 560px) {
  .is-hero-copy p,
  .offer-intro-card p,
  .process-heading p,
  .about-copy-card p,
  .gallery-heading-card p,
  .contact-prompt p {
    font-size: 15px;
  }

  .offer-intro-card,
  .main-service-card,
  .about-copy-card,
  .gallery-heading-card,
  .is-hero-panel {
    padding: 26px 22px;
  }

  .quick-card {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 22px;
  }

  .quick-card span {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .process-steps article {
    min-height: unset;
    padding: 24px 22px;
  }
}

/* Poprawki: bez dużego logo w sekcji o firmie, podłogówka w C.O., obszar działania w stopce */
.about-aside-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(51, 51, 51, 0.08), rgba(51, 51, 51, 0.92)),
    linear-gradient(135deg, #eef0f0, #cfd4d4);
  border-top: 6px solid var(--orange);
  box-shadow: var(--shadow);
  color: var(--white);
}

.about-aside-card h3 {
  color: var(--white);
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 16px;
}

.about-aside-card p {
  color: rgba(255, 255, 255, 0.84);
  margin: 0 0 22px;
}

.about-aside-card ul {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-aside-card li {
  position: relative;
  padding-left: 26px;
  color: var(--white);
  font-weight: 800;
}

.about-aside-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 4px;
  background: var(--orange);
}

.service-area-footer {
  background: #080909;
  color: rgba(255, 255, 255, 0.86);
  padding: 42px 0 24px;
}

.service-area-block {
  padding-bottom: 34px;
}

.footer-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--white);
  font: 800 22px/1 var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.service-area-block h2 {
  max-width: 780px;
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(34px, 4.8vw, 54px);
}

.service-area-block p {
  max-width: 850px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.72);
}

.town-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  color: var(--white);
  font-weight: 800;
}

.town-list span {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  margin-right: 18px;
  font-size: 14px;
}

.town-list span:not(:last-child)::after {
  content: "•";
  margin-left: 18px;
  color: rgba(255, 255, 255, 0.34);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom strong {
  color: var(--white);
  font: 700 24px/1 var(--font-heading);
  text-transform: uppercase;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-bottom a {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.footer-bottom a:hover {
  color: #ffd7cc;
}

.service-area-footer .copyright {
  margin-top: 20px;
}

@media (max-width: 760px) {
  .about-aside-card {
    min-height: 340px;
    padding: 26px 22px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* --- Poprawki: bez dolnych CTA w kaflach WOD-KAN i C.O. --- */
.main-service-card p {
  margin-bottom: 0;
}

/* --- Przewijane logotypy / materiały --- */
.partners-marquee-section {
  padding: 88px 0 72px;
  background: #f5f5f5;
  overflow: hidden;
}

.partners-heading {
  margin-bottom: 30px;
}

.partners-heading h2 {
  max-width: 780px;
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 14px;
}

.partners-heading p {
  max-width: 840px;
  margin: 0;
  color: var(--grey-700);
}

.partners-marquee {
  overflow: hidden;
  padding: 12px 0 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.partners-track {
  display: flex;
  width: max-content;
  animation: partners-scroll 42s linear infinite;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

/*
  Same logotypy, bez ramek.
  Duża szerokość grupy i szerokie sloty zapobiegają ściskaniu
  oraz ucinaniu dłuższych nazw typu De Dietrich / Immergas / Flamco.
*/
.partners-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  padding-right: 40px;

  min-width: 0;
  width: max-content;
}

.partner-card {
  width: 310px;
  height: 116px;
  flex: 0 0 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.partner-card:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.partner-card img {
  width: 100%;
  max-width: 310px;
  max-height: 88px;
  height: auto;
  object-fit: contain;
  display: block;
  overflow: visible;
}

@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* tutaj dla tabletu zostaje */
@media (max-width: 900px) {
  .partners-group {
    min-width: 2500px;
    gap: 28px;
    padding-right: 28px;
  }

  .partner-card {
    width: 250px;
    height: 96px;
    flex-basis: 250px;
  }

  .partner-card img {
    max-width: 250px;
    max-height: 70px;
  }
}
/* Dla telefonu */
@media (max-width: 560px) {
  .partners-marquee-section {
    padding: 62px 0 52px;
  }

  .partners-group {
    min-width: 2050px;
    gap: 18px;
    padding-right: 18px;
  }

  .partner-card {
    width: 205px;
    height: 78px;
    flex-basis: 205px;
  }

  .partner-card img {
    max-width: 205px;
    max-height: 54px;
  }
}
/* ============= MAPA + KONTAKT ========= */

.contact-main-section {
    padding: 72px 0;
    background: var(--grey-100);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 40px;
    align-items: start;
}


/* ===== MAPA ===== */

.contact-map-main .lead {
    max-width: 720px;
    color: var(--grey-700);
    margin: 0 0 24px;
}

.contact-map-main .map-panel {
    width: 100%;
    margin-top: 0;
    aspect-ratio: 16 / 10;
}


/* ===== PANEL KONTAKTOWY ===== */

.full-contact-aside {
    position: sticky;
    top: 190px;
}

.full-contact-aside h3 {
    margin-bottom: 18px;
}


/* ===== PRZEJŚCIE DO WYCENY ===== */

.contact-quote-link {
    margin-top: 18px;
    padding: 22px;
    background: var(--grey-800);
    border-top: 5px solid var(--orange);
    color: var(--white);
}

.contact-quote-link strong {
    display: block;
    color: var(--white);
    font: 700 26px/1.1 var(--font-heading);
}

.contact-quote-link p {
    margin: 10px 0 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.contact-quote-link .button {
    width: 100%;
    color: var(--white);
}


/* ===== TABLET / TELEFON ===== */

@media (max-width: 900px) {

    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .full-contact-aside {
        position: static;
    }

}


@media (max-width: 560px) {

    .contact-main-section {
        padding: 52px 0;
    }

}
/* ============= DOPRACOWANIE KONTAKTU ==============*/
/* Większa mapa */
.contact-map-main .map-panel {
    aspect-ratio: 16 / 10;
    min-height: 650px;
}

.contact-map-main .map-panel iframe {
    width: 100%;
    height: 100%;
}


/* Hover na telefonie i e-mailu */
.contact-tile {
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

a.contact-tile:hover {
    transform: translateY(-2px);
    border-color: var(--orange);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}


/* Prawy panel trochę bardziej dopracowany */
.full-contact-aside {
    min-height: 100%;
}


/* Na telefonie mapa nie musi być aż tak wysoka */
@media (max-width: 900px) {
    .contact-map-main .map-panel {
        min-height: 380px;
    }
}

@media (max-width: 560px) {
    .contact-map-main .map-panel {
        min-height: 300px;
        aspect-ratio: auto;
    }
}

/* ===== OCHRONA FORMULARZA ===== */

.hp-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-status {
    min-height: 24px;
    margin: 14px 0;
    font-size: 14px;
    font-weight: 700;
}

.form-status.is-success {
    color: #27813b;
}

.form-status.is-error {
    color: #c83224;
}

.cf-turnstile {
    margin: 20px 0;
}