@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Quicksand:wght@400;600&display=swap");

:root {
  --green: #40896e;
  --green-dark: #2f6f59;
  --green-deep: #183e31;
  --coral: #e06c6e;
  --coral-dark: #c95a5d;
  --ink: #293043;
  --text: #5a5d6c;
  --muted: #768174;
  --mist: #f4f9f6;
  --line: #dce8e2;
  --white: #ffffff;
  --max: 1180px;
  --wide: 1280px;
  --page: 760px;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(24, 62, 49, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Quicksand", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.72;
}

body.nav-open,
body.search-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 96px;
  background: rgba(47, 111, 89, 0.96);
  color: var(--white);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  width: min(var(--max), calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 365px;
}

.brand-logo {
  width: 190px;
  height: 64px;
  object-fit: contain;
}

.tagline {
  max-width: 155px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.35;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.desktop-nav a {
  padding: 12px 0;
  transition: color 160ms ease, opacity 160ms ease;
}

.desktop-nav a:hover {
  color: #d9f3e8;
}

.desktop-nav a:last-of-type {
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
}

.desktop-nav a:last-of-type:hover {
  background: var(--coral-dark);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 14px;
}

.lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 54px;
  height: 34px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: "Quicksand", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.lang-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.16);
}

.lang-button.is-active {
  border-color: var(--white);
  background: var(--white);
  color: var(--green-deep);
}

.flag {
  font-size: 15px;
  line-height: 1;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.mobile-action,
.mobile-menu {
  display: none;
}

.site-main {
  background: var(--white);
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 96px);
  padding: 86px 24px 96px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(24, 62, 49, 0.86) 0%, rgba(24, 62, 49, 0.62) 44%, rgba(24, 62, 49, 0.12) 100%),
    url("/assets/images/image-1.jpg") center / cover;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 145px;
  background: linear-gradient(180deg, transparent, rgba(24, 62, 49, 0.45));
}

.hero-inner,
.section-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #dcefe7;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--coral);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.08;
  text-wrap: balance;
}

.hero-lead {
  max-width: 585px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.87);
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 22px;
  border: 0;
  border-radius: 6px;
  background: var(--coral);
  color: var(--white);
  font: 600 16px/1.2 "Quicksand", Arial, sans-serif;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
button.button:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(224, 108, 110, 0.24);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button.secondary:hover {
  background: var(--white);
  color: var(--green-deep);
}

.wide-image {
  display: none;
}

.quick-stats {
  position: relative;
  z-index: 4;
  width: min(var(--max), calc(100% - 48px));
  margin: -46px auto 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.stat-item {
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-value {
  display: block;
  color: var(--green-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 34px;
  line-height: 1.1;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-weight: 600;
}

.section {
  padding: 104px 0;
}

.section.mist {
  background: var(--mist);
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.section-kicker {
  color: var(--coral);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading-row h2,
.choose h2,
.green-cta h2,
.page-title h1,
.service-wide h2,
.section-heading,
.references h2,
.content-column h2,
.privacy-content h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.14;
}

.section-heading-row p {
  max-width: 430px;
}

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

.preview-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.preview-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.preview-card-content {
  padding: 24px;
}

.preview-card h3 {
  font-size: 24px;
  line-height: 1.2;
}

.preview-card p {
  margin-top: 12px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.feature {
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-icon {
  width: 54px;
  height: 54px;
  color: var(--coral);
}

.feature h3 {
  margin-top: 28px;
  font-size: 28px;
  line-height: 1.18;
}

.feature p {
  margin-top: 16px;
}

.choose {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 60px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0;
  align-items: center;
}

.choose-media {
  min-height: 500px;
  border-radius: var(--radius);
  background: url("/assets/images/image-6.jpg") center / cover;
  box-shadow: var(--shadow);
}

.choose-copy p {
  margin-top: 22px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--coral);
  border-radius: 50%;
}

.green-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(24, 62, 49, 0.94), rgba(64, 137, 110, 0.88)),
    url("/assets/images/image-5.jpg") center / cover;
  color: var(--white);
  padding: 106px 24px;
}

.green-cta .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

.green-cta h2,
.green-cta p {
  color: var(--white);
}

.green-cta p {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.site-footer {
  background: var(--green-deep);
  color: var(--white);
  padding: 64px 0 54px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}

.footer-nav a {
  transition: color 160ms ease;
}

.footer-nav a:hover {
  color: #d9f3e8;
}

.copyright {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.copyright .divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.24);
}

.page-title {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 360px;
  width: 100%;
  margin: 0;
  padding: 80px 24px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(24, 62, 49, 0.88), rgba(24, 62, 49, 0.42)),
    url("/assets/images/image-1.jpg") center / cover;
  color: var(--white);
}

.page-title > * {
  width: min(var(--page), calc(100% - 48px));
  margin-left: max(24px, calc((100% - var(--max)) / 2));
}

.page-title h1 {
  color: var(--white);
}

.page-title p,
.intro-copy {
  max-width: 680px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.86);
}

.about-intro {
  padding: 92px 24px 0;
  background: var(--mist);
}

.about-intro .intro-copy {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  box-shadow: 0 18px 54px rgba(24, 62, 49, 0.08);
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: min(var(--wide), calc(100% - 48px));
  margin: 72px auto 0;
}

.gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.gallery-full {
  width: min(var(--wide), calc(100% - 48px));
}

.gallery-full img {
  height: 440px;
}

.content-column {
  width: min(var(--page), calc(100% - 48px));
  margin: 88px auto 0;
}

.content-column ul,
.references ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 24px;
}

.references {
  width: min(var(--page), calc(100% - 48px));
  margin: 70px auto 0;
}

.button-row {
  width: min(var(--page), calc(100% - 48px));
  margin: 48px auto 96px;
}

.button-row.center {
  text-align: center;
}

.services-intro {
  background:
    linear-gradient(90deg, rgba(24, 62, 49, 0.88), rgba(24, 62, 49, 0.4)),
    url("/assets/images/qtq80-JxzjZ1.jpeg") center / cover;
}

.about-title {
  background:
    linear-gradient(90deg, rgba(24, 62, 49, 0.88), rgba(24, 62, 49, 0.38)),
    url("/assets/images/image-6.jpg") center / cover;
}

.service-gallery {
  margin-top: 82px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(var(--max), calc(100% - 48px));
  margin: 72px auto 0;
}

.service-item {
  min-height: 260px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-item h2 {
  font-size: 31px;
  line-height: 1.18;
}

.service-item p {
  margin-top: 18px;
}

.service-wide {
  grid-column: 1 / -1;
  min-height: 0;
  background: var(--mist);
  text-align: center;
}

.services-button {
  margin: 46px auto 96px;
}

.services-button .button {
  max-width: 650px;
}

.contact-title {
  background:
    linear-gradient(90deg, rgba(24, 62, 49, 0.88), rgba(24, 62, 49, 0.28)),
    url("/assets/images/image-5.jpg") center / cover;
}

.contact-title p {
  text-align: left;
}

.address {
  width: min(var(--page), calc(100% - 48px));
  margin: 68px auto 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  text-align: center;
}

.address-title {
  color: var(--coral);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.address p {
  margin-top: 16px;
}

.contact-form {
  width: min(var(--page), calc(100% - 48px));
  margin: 28px auto 96px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 54px rgba(24, 62, 49, 0.08);
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 600;
}

.required {
  color: var(--coral);
  margin-left: 8px;
}

input,
textarea {
  width: 100%;
  border: 1px solid #b9c7c0;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: 400 17px/1.5 "Quicksand", Arial, sans-serif;
  outline: none;
}

input {
  height: 54px;
  padding: 8px 14px;
}

textarea {
  display: block;
  height: 190px;
  min-height: 190px;
  padding: 14px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(64, 137, 110, 0.12);
}

.contact-form .button {
  display: flex;
  width: max-content;
  min-width: 120px;
}

.privacy-content {
  width: min(var(--page), calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 120px;
}

.privacy-content p {
  margin-top: 18px;
}

.privacy-content h2 {
  margin-top: 34px;
  font-size: 28px;
}

.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.whatsapp-label {
  padding: 9px 13px;
  border-radius: 6px;
  background: #f4f6f8;
  color: #323648;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #21b843;
  color: #ffffff;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.18);
}

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(24, 62, 49, 0.96);
  color: var(--white);
}

.search-open .search-modal {
  display: flex;
}

.search-inner {
  width: min(760px, 100%);
}

.search-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--white);
}

.search-form label {
  display: block;
  margin-bottom: 16px;
  color: var(--white);
  font-weight: 600;
}

.search-row {
  display: flex;
  gap: 12px;
}

.search-row input {
  flex: 1;
  border-color: rgba(255, 255, 255, 0.75);
  background: transparent;
  color: var(--white);
}

.search-row input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.search-row .button {
  white-space: nowrap;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 95;
  display: flex;
  align-items: center;
  gap: 22px;
  width: min(820px, calc(100% - 48px));
  padding: 18px 20px;
  border: 1px solid rgba(220, 232, 226, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-banner.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
}

.cookie-banner-copy {
  flex: 1;
}

.cookie-banner-copy h2 {
  font-size: 18px;
  line-height: 1.25;
}

.cookie-banner-copy p {
  margin-top: 6px;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.45;
}

.cookie-accept {
  flex: 0 0 auto;
  min-width: 154px;
  border: 0;
}

@media (max-width: 980px) {
  .desktop-nav {
    gap: 16px;
  }

  .brand {
    min-width: 210px;
  }
}

@media (max-width: 1060px) {
  body {
    font-size: 16.5px;
  }

  .site-header {
    height: 78px;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 52px 1fr 52px;
    width: 100%;
    padding: 0 16px;
  }

  .brand {
    justify-self: center;
    min-width: 0;
  }

  .brand-logo {
    width: 166px;
    height: 48px;
  }

  .tagline,
  .desktop-nav {
    display: none;
  }

  .header-inner > .language-switcher {
    display: none;
  }

  .mobile-action {
    display: inline-flex;
    color: var(--white);
  }

  .mobile-search {
    justify-self: start;
  }

  .mobile-menu-button {
    justify-self: end;
  }

  .mobile-menu {
    position: fixed;
    inset: 78px 0 0;
    z-index: 70;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 48px 24px;
    background: var(--green-deep);
    color: var(--white);
    font-size: 21px;
    font-weight: 600;
  }

  .mobile-language-switcher {
    margin: 8px 0 0;
  }

  .mobile-language-switcher .lang-button {
    min-width: 68px;
    height: 40px;
    font-size: 13px;
  }

  .nav-open .mobile-menu {
    display: flex;
  }

  .hero {
    min-height: 690px;
    padding: 72px 0 86px;
    background:
      linear-gradient(180deg, rgba(24, 62, 49, 0.78), rgba(24, 62, 49, 0.84)),
      url("/assets/images/image-1.jpg") center / cover;
  }

  .hero-inner,
  .section-inner,
  .features,
  .choose,
  .footer-inner,
  .quick-stats,
  .gallery,
  .service-grid {
    width: calc(100% - 40px);
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .quick-stats {
    margin-top: 0;
    border-radius: 0;
    border-right: 0;
    border-left: 0;
    box-shadow: none;
  }

  .quick-stats-grid,
  .features,
  .service-preview,
  .choose,
  .green-cta .section-inner,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading-row {
    display: block;
  }

  .section-heading-row p {
    margin-top: 16px;
  }

  .preview-card {
    min-height: 0;
  }

  .choose {
    gap: 34px;
    padding: 72px 0;
  }

  .choose-media {
    min-height: 330px;
  }

  .green-cta {
    padding: 76px 0;
  }

  .green-cta .button {
    width: max-content;
  }

  .footer-inner {
    display: block;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
    gap: 18px 26px;
  }

  .copyright {
    justify-content: center;
    margin-top: 28px;
  }

  .page-title {
    min-height: 320px;
    padding: 58px 20px;
  }

  .page-title > * {
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
  }

  .gallery {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .gallery img,
  .gallery-full img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .content-column,
  .references {
    margin-top: 58px;
  }

  .service-item {
    min-height: 0;
    padding: 26px;
  }

  .services-button {
    margin-bottom: 78px;
  }

  .address,
  .contact-form {
    width: calc(100% - 40px);
    padding: 24px;
  }

  .search-row {
    flex-direction: column;
  }

  .cookie-banner {
    bottom: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: calc(100% - 32px);
    padding: 18px;
  }

  .cookie-accept {
    width: 100%;
  }
}
