:root {
  --primary: #2e7d32;
  --primary-dark: #0f3d2e;
  --secondary: #1d5d35;
  --accent: #f9a825;
  --ink: #18251f;
  --muted: #5f6f65;
  --soft: #fafbf7;
  --line: #dce7dc;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(47, 107, 63, 0.16);
  --shadow-soft: 0 12px 34px rgba(24, 37, 31, 0.08);
  --radius: 8px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 8% 0%,
      rgba(249, 168, 37, 0.08),
      transparent 28rem
    ),
    radial-gradient(
      circle at 94% 18%,
      rgba(47, 107, 63, 0.08),
      transparent 34rem
    ),
    linear-gradient(180deg, #ffffff 0%, #fafbf7 100%);
  line-height: 1.65;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

.skip-link:focus {
  left: 12px;
}

.topbar {
  background: linear-gradient(
    90deg,
    #092f23 0%,
    var(--primary-dark) 50%,
    #1d5d35 100%
  );
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.topbar .container,
.nav-inner,
.footer-grid,
.mini-row,
.contact-line {
  display: flex;
  align-items: center;
}

.topbar .container {
  min-height: 42px;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.topbar-inner {
  display: flex;
  align-items: center;
}

.top-contact,
.top-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
}

.top-contact {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-right: 8px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.top-contact:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.top-contact span {
  display: none;
}

.top-contact i,
.top-location i {
  color: var(--accent);
}

.whatsapp-link i,
.whatsapp-float i {
  color: #25d366;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(220, 231, 220, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(18, 32, 51, 0.05);
}

.nav-inner {
  min-height: 76px;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--primary);
  min-width: 210px;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  padding: 4px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(24, 37, 31, 0.08);
}

.brand small {
  display: block;
  color: var(--secondary);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 6px;
  border: 1px solid rgba(220, 231, 220, 0.78);
  border-radius: 999px;
  background: rgba(250, 251, 247, 0.82);
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #26372e;
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(47, 107, 63, 0.11);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--primary);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn:focus-visible,
.nav-menu a:focus-visible,
.top-contact:focus-visible,
.filter-btn:focus-visible,
.gallery-item:focus-visible {
  outline: 3px solid rgba(249, 168, 37, 0.55);
  outline-offset: 3px;
}

.btn.secondary {
  background: var(--secondary);
}

.btn.accent {
  background: var(--accent);
  color: #1d2939;
}

.btn.outline {
  background: var(--white);
  color: var(--primary);
  border: 1px solid rgba(47, 107, 63, 0.26);
}

.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(6, 27, 20, 0.4));
  z-index: -1;
  pointer-events: none;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(9, 47, 35, 0.94),
      rgba(47, 107, 63, 0.7),
      rgba(47, 107, 63, 0.26)
    ),
    radial-gradient(
      circle at 72% 24%,
      rgba(249, 168, 37, 0.18),
      transparent 18rem
    );
  z-index: -1;
}

.hero img,
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-content {
  width: min(720px, calc(100% - 32px));
  padding: 84px 0 120px;
  filter: drop-shadow(0 18px 34px rgba(6, 27, 20, 0.22));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.12;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.45rem, 7vw, 5.15rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.05rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0 0 16px;
}

.lead {
  color: #53675a;
  font-size: 1.1rem;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 650px;
}

.hero-actions,
.section-actions,
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-stats {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(var(--max), calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(220, 231, 220, 0.8);
  border-bottom: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stat {
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #fbfcf7);
  border-right: 1px solid var(--line);
}

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

.stat strong {
  display: block;
  color: var(--primary);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
  font-weight: 900;
}

.stat span {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

section {
  padding: 92px 0;
}

.section-soft {
  background: linear-gradient(180deg, #fbfcf7 0%, #eef6ed 100%);
  border-block: 1px solid rgba(220, 231, 220, 0.72);
}

.section-header {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-header .eyebrow {
  color: var(--secondary);
  justify-content: center;
}

.grid {
  display: grid;
  gap: 24px;
}

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

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 107, 63, 0.26);
  box-shadow: 0 22px 50px rgba(47, 107, 63, 0.13);
}

.card-body {
  padding: 26px;
}

.icon-card {
  padding: 30px;
}

.icon-card i {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eaf4eb, #fff5d8);
  color: var(--primary);
  font-size: 1.35rem;
}

.image-card img,
.project-card img,
.news-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.quote {
  border-left: 5px solid var(--accent);
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.badge,
.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eaf4eb;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.78rem;
}

.status.completed {
  background: #eef6ed;
  color: var(--secondary);
}

.status.upcoming {
  background: #fff5d8;
  color: #805500;
}

.program-list,
.check-list {
  padding-left: 0;
  list-style: none;
  margin: 16px 0 0;
}

.program-list li,
.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
}

.program-list li::before,
.check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--secondary);
  position: absolute;
  left: 0;
  top: 1px;
}

.page-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.page-hero-content {
  max-width: 760px;
  padding: 72px 0;
  filter: drop-shadow(0 14px 30px rgba(6, 27, 20, 0.22));
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.9);
}

.team-grid {
  align-items: stretch;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(145deg, rgba(47, 107, 63, 0.26), rgba(249, 168, 37, 0.42))
      border-box;
  box-shadow: 0 20px 58px rgba(24, 37, 31, 0.1);
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(249, 168, 37, 0.12),
    transparent 34%
  );
  opacity: 0;
  transition: opacity 0.22s ease;
}

.team-card:hover::before {
  opacity: 1;
}

.team-photo {
  position: relative;
  aspect-ratio: 4 / 3.35;
  overflow: hidden;
  background: #eef6ed;
}

.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 48%,
    rgba(9, 47, 35, 0.66) 100%
  );
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(1.03) contrast(1.02);
  transition: transform 0.42s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.045);
}

.team-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 28px rgba(6, 27, 20, 0.18);
  backdrop-filter: blur(12px);
}

.team-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.team-body h3 {
  margin-bottom: 4px;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
}

.team-body > p:not(.meta) {
  margin-top: 18px;
}

.team-role {
  position: relative;
  margin: 0;
  padding-bottom: 16px;
}

.team-role::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.team-contact {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.team-contact .mini-row {
  min-height: 46px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(47, 107, 63, 0.13);
  border-radius: 14px;
  background: rgba(238, 246, 237, 0.62);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.team-contact .mini-row:hover,
.team-contact .mini-row:focus-visible {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateX(2px);
  outline: 0;
}

.team-contact .mini-row i {
  flex: 0 0 22px;
  width: 22px;
  color: var(--primary);
}

.team-contact .mini-row:hover i,
.team-contact .mini-row:focus-visible i {
  color: var(--accent);
}

.team-contact .mini-row span {
  overflow-wrap: anywhere;
}

.meta {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.mini-row {
  gap: 10px;
  color: var(--muted);
  margin: 8px 0;
}

.mini-row i,
.contact-line i {
  color: var(--secondary);
  width: 20px;
}

.bank-details {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(47, 107, 63, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fbfcf7, #ffffff);
}

.bank-details h3 {
  margin-bottom: 14px;
}

.bank-details p {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 16px;
}

.bank-details dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.bank-details dl div {
  display: grid;
  gap: 3px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.bank-details dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.bank-details dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bank-details dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(249, 168, 37, 0.24),
      transparent 24rem
    ),
    linear-gradient(120deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 84px 0;
}

.cta .lead {
  color: rgba(255, 255, 255, 0.9);
}

.partners {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.partner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--primary);
  font-weight: 900;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease;
}

.partner:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 107, 63, 0.28);
}

.contact-strip {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(
      135deg,
      rgba(15, 61, 46, 0.98),
      rgba(47, 107, 63, 0.96) 55%,
      rgba(22, 83, 49, 0.92)
    ),
    var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-btn {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--primary);
  font-weight: 800;
  cursor: pointer;
}

.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(47, 107, 63, 0.18);
}

.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: block;
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(8, 42, 31, 0.84);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
  backdrop-filter: blur(10px);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
  background: rgba(6, 27, 20, 0.88);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-height: 82vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--primary);
  cursor: pointer;
}

.map-frame {
  overflow: hidden;
  border: 1px solid rgba(155, 180, 201, 0.52);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: min(58vh, 520px);
  min-height: 360px;
  border: 0;
}

.map-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
}

.map-caption strong,
.map-caption span {
  display: block;
}

.map-caption strong {
  color: var(--primary);
  font-weight: 900;
}

.map-caption span {
  color: var(--muted);
}

.site-footer {
  position: relative;
  background:
    radial-gradient(
      circle at 15% 0%,
      rgba(249, 168, 37, 0.12),
      transparent 22rem
    ),
    linear-gradient(180deg, #0b2b20 0%, #061b14 100%);
  color: rgba(255, 255, 255, 0.82);
  padding: 64px 0 0;
}

.footer-grid {
  align-items: flex-start;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 32px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--white);
  font-weight: 900;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: var(--white);
  border-radius: 14px;
}

.site-footer h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--white);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 8px 0;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.footer-bottom {
  margin-top: 44px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  z-index: 1100;
  border: 0;
  border-radius: 14px;
  background: var(--accent);
  color: #1d2939;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.scroll-top.visible {
  display: grid;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 76px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  z-index: 1100;
  border-radius: 50%;
  background: #0b2b20;
  color: #25d366;
  font-size: 1.55rem;
  box-shadow: 0 18px 36px rgba(6, 27, 20, 0.28);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    gap: 8px;
    padding: 14px 16px 18px;
    background: var(--white);
    border: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: var(--shadow);
    justify-content: initial;
  }

  .nav-menu.open {
    display: grid;
  }

  .nav-menu a {
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
    padding: 11px 12px;
  }

  .hero-stats,
  .grid.four,
  .partners {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid.three,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 720px) {
  .topbar .container {
    justify-content: space-between;
    text-align: left;
    gap: 8px;
    padding: 7px 0;
  }

  .top-contact {
    flex: 1;
    justify-content: center;
    min-width: 0;
    margin-right: 0;
    padding: 8px 10px;
  }

  .top-contact span {
    display: inline;
    font-weight: 800;
  }

  .top-contact strong {
    display: none;
  }

  .top-location {
    width: 100%;
    justify-content: center;
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand {
    min-width: auto;
  }

  .brand span {
    max-width: 190px;
    line-height: 1.1;
  }

  .hero {
    display: block;
    align-items: initial;
    min-height: 780px;
  }

  .hero-content {
    padding: 88px 0 118px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero::before,
  .page-hero::before {
    background: linear-gradient(
      180deg,
      rgba(9, 47, 35, 0.92),
      rgba(47, 107, 63, 0.62)
    );
  }

  .hero-stats,
  .grid.two,
  .grid.three,
  .grid.four,
  .footer-grid,
  .partners {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    position: relative;
    left: auto;
    bottom: auto;
    z-index: 2;
    transform: none;
    margin: -80px auto 0;
    width: min(100% - 32px, var(--max));
    border-radius: var(--radius-lg);
  }

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

  section {
    padding: 66px 0;
  }

  .contact-strip,
  .map-frame {
    border-radius: var(--radius-lg);
  }

  .card-body,
  .icon-card {
    padding: 24px;
  }

  .image-card img,
  .project-card img,
  .news-card img,
  .gallery-item img {
    height: 210px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 68px;
    width: 46px;
    height: 46px;
    font-size: 1.35rem;
  }
}
