* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #fff;
}

/* HEADER */

.header {
  background-color: #e9d6cf;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 15px 20px 15px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo img {
  height: 75px;
  display: block;
}

/* NAVIGATION DESKTOP */

.nav {
  margin-left: auto;
}

.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.nav a:hover {
  color: #7aa34c;
}

.nav a.active {
  border-bottom: 2px solid #7aa34c;
  padding-bottom: 3px;
}

/* BOUTON BURGER */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 34px;
  height: 26px;
  padding: 0;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
}

/* TABLETTE */

@media (max-width: 1024px) {
  .logo img {
    height: 65px;
  }

  .nav ul {
    gap: 20px;
  }

  .nav a {
    font-size: 14px;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .container {
    padding: 12px 16px;
  }

  .logo img {
    height: 58px;
  }

  .menu-toggle {
    display: flex;
    z-index: 1002;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-left: 0;
    background-color: #e9d6cf;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    z-index: 1001;
  }

  .nav.active {
    display: block;
  }

  .nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0;
    padding: 10px 0;
  }

  .nav li {
    width: 100%;
  }

  .nav a {
    display: block;
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav a.active {
    color: #7aa34c;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 14px;
  }
}


/* HERO */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background-image: url("images/toiture-hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 5rem;
  line-height: 1.05;
  font-weight: 700;
  color: #93b246;
  margin-bottom: 28px;
}

.hero-content p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 38px;
}

.hero-btn {
  display: inline-block;
  background-color: #93b246;
  color: white;
  text-decoration: none;
  padding: 18px 34px;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #7f9e35;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero {
    min-height: 600px;
    padding: 80px 20px 40px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-btn {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

/* SECTION SERVICES ACCUEIL */

.home-services {
  background-color: #f5f5f5;
  padding: 70px 0;
}

.services-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 70px;
  padding: 25px 0;
  border-bottom: 1px solid #dddddd;
}

.service-text {
  flex: 1;
  padding-top: 10px;
}

.service-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2a37;
  margin-bottom: 18px;
  line-height: 1.2;
}

.service-text p {
  font-size: 1.2rem;
  color: #1f2a37;
  line-height: 1.5;
}

.service-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.service-image img {
  width: 100%;
  max-width: 630px;
  height: 210px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .service-row {
    flex-direction: column;
    gap: 25px;
  }

  .service-image {
    justify-content: flex-start;
  }

  .service-image img {
    max-width: 100%;
    height: auto;
  }

  .service-text h2 {
    font-size: 1.8rem;
  }

  .service-text p {
    font-size: 1.05rem;
  }
}

/* SECTION VALEURS / BAS DE PAGE ACCUEIL */

.home-values {
  background-color: #94ab4d;
  padding: 80px 0 90px;
}

.home-values-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 70px;
}

.home-values h2 {
  max-width: 760px;
  font-size: 3rem;
  line-height: 1.15;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 22px;
}

.home-values ul {
  padding-left: 30px;
  margin: 0;
}

.home-values li {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .home-values {
    padding: 55px 0 65px;
  }

  .home-values-container {
    padding: 0 25px;
  }

  .home-values h2 {
    font-size: 2.2rem;
    max-width: 100%;
  }

  .home-values li {
    font-size: 1rem;
  }
}

.nav a.active {
  border-bottom: 2px solid #7aa34c;
  padding-bottom: 3px;
}

/* FOOTER */

.footer {
  background-color: #94ab4d;
  padding: 20px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer p {
  color: white;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* PAGE QUI SOMMES-NOUS */

.about-page {
  background-color: #95ac4b;
  padding: 30px 0 90px;
}

.about-page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.about-page h1 {
  max-width: 1050px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
}

.about-page-text {
  max-width: 760px;
  margin: 55px auto 230px;
}

.about-page-text p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 30px;
}

.about-page h2 {
  color: #ffffff;
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 55px;
}

.about-map {
  max-width: 1280px;
  margin: 0 auto;
}

.about-map iframe {
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
  .about-page h1 {
    font-size: 2.8rem;
  }

  .about-page h2 {
    font-size: 2.6rem;
  }

  .about-page-text {
    margin: 45px auto 120px;
  }

  .about-map iframe {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .about-page {
    padding: 30px 0 60px;
  }

  .about-page-container {
    padding: 0 20px;
  }

  .about-page h1 {
    font-size: 2rem;
  }

  .about-page-text {
    max-width: 100%;
    margin: 35px auto 80px;
  }

  .about-page-text p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .about-page h2 {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  .about-map iframe {
    height: 300px;
  }
}

/* HERO SERVICES */

.services-hero {
  background-color: #96ad4c;
  color: white;
  text-align: center;
  padding: 34px 20px 80px;
}

.services-hero h1 {
  font-size: 2.8rem;
  line-height: 0.7;
  font-weight: 700;
}

/* BLOCS SERVICES */

.service-split {
  display: flex;
  width: 100%;
  min-height: 70vh;
}

.service-split-text,
.service-split-image {
  width: 50%;
}

.service-split-text {
  background-color: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-split-inner {
  max-width: 700px;
  padding: 80px 70px 80px 90px;
}

.service-split-inner h2 {
  font-size: 4rem;
  line-height: 1.1;
  color: #1f2a37;
  margin-bottom: 40px;
  font-weight: 700;
}

.service-split-inner h3 {
  font-size: 2rem;
  line-height: 1.25;
  color: #1f2a37;
  margin-top: 42px;
  margin-bottom: 18px;
  font-weight: 700;
}

.service-split-inner h3:first-of-type {
  margin-top: 0;
}

.service-split-inner p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #1f2a37;
  margin: 0;
}

.service-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* GALERIE TOITURE + GARANTIE */

.services-gallery-block {
  background-color: #96ad4c;
  padding: 70px 0 90px;
}

.services-gallery {
  max-width: 1300px;
  margin: 0 auto 140px;
  padding: 0 40px;

  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.services-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.services-gallery img:nth-child(3),
.services-gallery img:nth-child(4) {
  height: 360px;
}

.services-guarantee {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.services-guarantee h2 {
  color: #ffffff;
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 28px;
}

.services-guarantee p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 1024px) {
  .services-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-gallery img,
  .services-gallery img:nth-child(3),
  .services-gallery img:nth-child(4) {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .services-gallery-block {
    padding: 50px 0 70px;
  }

  .services-gallery {
    grid-template-columns: 1fr;
    margin: 0 auto 70px;
    padding: 0 20px;
  }

  .services-gallery img,
  .services-gallery img:nth-child(3),
  .services-gallery img:nth-child(4) {
    height: 240px;
  }

  .services-guarantee h2 {
    font-size: 2rem;
  }

  .services-guarantee p {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}

/* BLOC GOUTTIERES */

.gutters-block {
  min-height: 600px;
}

.service-split-reverse {
  display: flex;
  width: 100%;
}

.service-split-reverse .service-split-image,
.service-split-reverse .service-split-text {
  width: 50%;
}

.service-split-reverse .service-split-text {
  background-color: #f3f3f3;
  display: flex;
  align-items: center;
}

.service-split-reverse .service-split-inner {
  max-width: 760px;
  padding: 60px 60px 60px 90px;
}

.service-split-reverse .service-split-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  display: block;
}

/* BLOC VERT TEXTE + IMAGE */

.service-green-split {
  display: flex;
  width: 100%;
  min-height: 45vh;
}

.service-green-text,
.service-green-image {
  width: 50%;
}

.service-green-text {
  background-color: #96ad4c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-green-inner {
  max-width: 700px;
  padding: 70px 70px 70px 90px;
}

.service-green-inner p {
  color: #ffffff;
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 0;
}

.service-green-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  display: block;
}

/* BLOC FACADES */

.facade-block {
  min-height: auto;
}

.facade-block .service-split-image img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  display: block;
}

/* GALERIE FINALE */

.services-final-gallery-block {
  background-color: #96ad4c;
  padding: 70px 0;
}

.services-final-gallery {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.services-final-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .services-final-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .facade-block .service-split-image img {
    height: 300px;
  }

  .services-final-gallery-block {
    padding: 50px 0;
  }

  .services-final-gallery {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .services-final-gallery img {
    height: 240px;
  }
}

.realisations-page {
  background-color: #96ad4c;
  padding: 20px 0 100px;
  min-height: 100vh;
}

.realisations-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.realisations-page h1 {
  color: #ffffff;
  font-size: 3.3rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 70px;
}

.ba-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.ba-nav {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 4.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ba-nav:hover {
  transform: scale(1.08);
  opacity: 0.85;
}

.ba-wrap {
  width: 100%;
  max-width: 820px;
  position: relative;
}

.ba-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  user-select: none;
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-after {
  z-index: 1;
}

.ba-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.ba-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: #ffffff;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #96ad4c;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
}

.ba-label {
  position: absolute;
  top: 18px;
  z-index: 4;
  background-color: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
}

.ba-label-left {
  left: 18px;
}

.ba-label-right {
  right: 18px;
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
}

.ba-arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 23px;
  color: #96ad4c;
  pointer-events: none;
}

.ba-handle {
  animation: pulse 2s infinite;
}

.ba-handle.no-animation {
  animation: none;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Responsive */

@media (max-width: 1024px) {
  .realisations-page {
    padding: 20px 0 70px;
  }

  .realisations-page h1 {
    font-size: 2.7rem;
    margin-bottom: 50px;
  }

  .realisations-container {
    padding: 0 30px;
  }

  .ba-gallery {
    gap: 25px;
  }

  .ba-wrap {
    max-width: 700px;
  }

  .ba-slider {
    height: 430px;
  }

  .ba-nav {
    font-size: 3.5rem;
  }

  .ba-label {
    font-size: 0.9rem;
    padding: 7px 12px;
  }

  .ba-handle {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 768px) {
  .realisations-page {
    padding: 20px 0 50px;
    min-height: auto;
  }

  .realisations-container {
    padding: 0 20px;
  }

  .realisations-page h1 {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  .ba-gallery {
    gap: 12px;
  }

  .ba-wrap {
    max-width: 100%;
  }

  .ba-slider {
    height: 280px;
  }

  .ba-nav {
    font-size: 2.4rem;
  }

  .ba-label {
    top: 12px;
    font-size: 0.8rem;
    padding: 6px 10px;
  }

  .ba-label-left {
    left: 10px;
  }

  .ba-label-right {
    right: 10px;
  }

  .ba-divider {
    width: 2px;
  }

  .ba-handle {
    width: 26px;
    height: 26px;
    border-width: 2px;
  }
}

@media (max-width: 480px) {
  .realisations-page h1 {
    font-size: 1.7rem;
    margin-bottom: 25px;
  }

  .realisations-container {
    padding: 0 14px;
  }

  .ba-gallery {
    gap: 8px;
  }

  .ba-slider {
    height: 220px;
  }

  .ba-nav {
    font-size: 2rem;
  }

  .ba-label {
    font-size: 0.72rem;
    padding: 5px 8px;
  }

  .ba-handle {
    width: 22px;
    height: 22px;
  }
}



/* PAGE CONTACT */

.contact-hero {
  background-color: #96ad4c;
  padding: 20px 0 70px;
  text-align: center;
}

.contact-hero-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

.contact-hero h1 {
  color: #ffffff;
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 28px;
}

.contact-hero-top {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 55px;
}

.contact-hero-text {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 55px;
}

.contact-hero-info {
  color: #ffffff;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

.contact-content {
  background-color: #f3f3f3;
  padding: 70px 0 90px;
}

.contact-content-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;

  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.contact-form-block {
  flex: 1.05;
}

.contact-map-block {
  flex: 1;
}

.contact-map-block iframe {
  width: 100%;
  height: 660px;
  border: 0;
  display: block;
}

/* FORMULAIRE */

.contact-form-row {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  font-size: 1rem;
  color: #1f2a37;
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #cfcfcf;
  background-color: #f3f3f3;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 1rem;
  color: #1f2a37;
  outline: none;
}

.form-group input {
  height: 48px;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-message {
  margin-bottom: 24px;
}

.form-consent {
  max-width: 95%;
  margin-bottom: 28px;
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #1f2a37;
  font-size: 0.98rem;
  line-height: 1.75;
}

.checkbox-line input {
  margin-top: 6px;
  flex-shrink: 0;
}

.privacy-text {
  margin: 28px 0 0 32px;
  color: #1f2a37;
  font-size: 0.98rem;
  line-height: 1.7;
}

.privacy-text a {
  color: #1f2a37;
}

.contact-submit {
  display: inline-block;
  background-color: #a7a7a7;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 14px 32px;
  font-size: 1rem;
  cursor: not-allowed;
  margin-left: 255px;
  transition: 0.3s ease;
}

.contact-submit.active {
  background-color: #96ad4c;
  cursor: pointer;
}

.contact-submit.active:hover {
  background-color: #7e943e;
}

@media (max-width: 1024px) {
  .contact-hero h1 {
    font-size: 2.8rem;
  }

  .contact-hero-info {
    font-size: 2.2rem;
  }

  .contact-content-container {
    flex-direction: column;
  }

  .contact-map-block iframe {
    height: 500px;
  }

  .contact-submit {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 20px 0 50px;
  }

  .contact-hero-container {
    padding: 0 20px;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .contact-hero-top,
  .contact-hero-text {
    font-size: 0.95rem;
    margin-bottom: 35px;
  }

  .contact-hero-info {
    font-size: 1.6rem;
    line-height: 1.4;
  }

  .contact-content {
    padding: 50px 0 60px;
  }

  .contact-content-container {
    padding: 0 20px;
  }

  .contact-form-row {
    flex-direction: column;
    gap: 16px;
  }

  .contact-map-block iframe {
    height: 320px;
  }

  .form-consent {
    max-width: 100%;
  }

  .privacy-text {
    margin-left: 0;
  }

  .contact-submit {
    width: 100%;
    margin-left: 0;
  }
}

/* =========================================
   PAGE SERVICES - RESPONSIVE AMÉLIORÉ
========================================= */

@media (max-width: 1024px) {
  .services-hero {
    padding: 28px 20px 60px;
  }

  .services-hero h1 {
    font-size: 2.2rem;
    line-height: 1.15;
  }

  .service-split,
  .service-split-reverse,
  .service-green-split {
    flex-direction: column;
    min-height: auto;
  }

  .service-split-text,
  .service-split-image,
  .service-split-reverse .service-split-image,
  .service-split-reverse .service-split-text,
  .service-green-text,
  .service-green-image {
    width: 100%;
  }

  .service-split-inner,
  .service-split-reverse .service-split-inner,
  .service-green-inner {
    max-width: 100%;
    padding: 50px 40px;
  }

  .service-split-inner h2 {
    font-size: 2.8rem;
    margin-bottom: 28px;
  }

  .service-split-inner h3 {
    font-size: 1.6rem;
    margin-top: 28px;
    margin-bottom: 14px;
  }

  .service-split-inner p,
  .service-green-inner p {
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .service-split-image img,
  .service-split-reverse .service-split-image img,
  .service-green-image img,
  .facade-block .service-split-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
  }

  .gutters-block {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 24px 16px 40px;
  }

  .services-hero h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .service-split-inner,
  .service-split-reverse .service-split-inner,
  .service-green-inner {
    padding: 32px 20px;
  }

  .service-split-inner h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 22px;
  }

  .service-split-inner h3 {
    font-size: 1.25rem;
    line-height: 1.35;
    margin-top: 22px;
    margin-bottom: 10px;
  }

  .service-split-inner p,
  .service-green-inner p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .service-split-image img,
  .service-split-reverse .service-split-image img,
  .service-green-image img,
  .facade-block .service-split-image img {
    height: 260px;
  }

  .services-gallery-block {
    padding: 40px 0 55px;
  }

  .services-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0 auto 45px;
    padding: 0 16px;
  }

  .services-gallery img,
  .services-gallery img:nth-child(3),
  .services-gallery img:nth-child(4) {
    height: 220px;
  }

  .services-guarantee {
    padding: 0 20px;
  }

  .services-guarantee h2 {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }

  .services-guarantee p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .services-final-gallery-block {
    padding: 40px 0;
  }

  .services-final-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 16px;
  }

  .services-final-gallery img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .services-hero h1 {
    font-size: 1.55rem;
  }

  .service-split-inner,
  .service-split-reverse .service-split-inner,
  .service-green-inner {
    padding: 26px 16px;
  }

  .service-split-inner h2 {
    font-size: 1.7rem;
  }

  .service-split-inner h3 {
    font-size: 1.12rem;
  }

  .service-split-inner p,
  .service-green-inner p,
  .services-guarantee p {
    font-size: 0.92rem;
  }

  .service-split-image img,
  .service-split-reverse .service-split-image img,
  .service-green-image img,
  .facade-block .service-split-image img,
  .services-gallery img,
  .services-gallery img:nth-child(3),
  .services-gallery img:nth-child(4),
  .services-final-gallery img {
    height: 200px;
  }
}
