:root {
  --green: #2b9f47;
  --green-dark: #0b5f2d;
  --green-soft: #e5f4df;
  --yellow: #f0c317;
  --yellow-dark: #ca9d00;
  --blue: #0f317f;
  --blue-dark: #0f317f;
  --blue-deep: #0b255f;
  --green-mid: #4f9650;
  --green-light: #74ab61;
  --white: #ffffff;
  --sand: #f7f2e7;
  --text: #264152;
  --shadow: 0 18px 48px rgba(12, 44, 29, 0.12);
  --radius: 24px;
  --container: 1120px;
  --heading-font: "Antarctican Headline Ultrabold", "Antarctican Headline", "Montserrat", sans-serif;
}

@font-face {
  font-family: "Antarctican Headline Ultrabold";
  src:
    local("Antarctican Headline Ultrabold"),
    local("AntarcticanHeadline-Ultrabold"),
    local("Antarctican Headline");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f5f7f0 0%, #ffffff 22%, #f6f1e6 100%);
}

.social-icons {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

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

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

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.hero__topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 49, 127, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__topbar-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}

.hero__brand-link {
  display: flex;
  align-items: center;
}

.hero__top-logo {
  width: 118px;
}

.hero__nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hero__nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transform: translateY(-1px);
}

.hero__top-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hero__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1f9a45;
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__social svg,
.footer__social svg,
.whatsapp-float__icon svg {
  width: 18px;
  height: 18px;
}

.hero__stage {
  position: relative;
  line-height: 0;
}

.hero__stage-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 47, 18, 0.16) 0%, rgba(6, 47, 18, 0.08) 32%, rgba(6, 47, 18, 0) 60%);
}

.hero__stage-inner {
  position: absolute;
  inset: 0;
}

.hero__band {
  position: relative;
  background: #2b9f47;
}

.hero__band-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 8px;
  padding: 26px 0 8px;
}

.hero__text h1 {
  margin: 0 0 8px;
  font-family: var(--heading-font);
  font-size: clamp(2.4rem, 4.8vw, 4.1rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-shadow: none;
}

.hero__text h1 span {
  display: block;
}

.hero__text h1 span:last-child {
  color: var(--yellow);
}

.hero__subtitle {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  max-width: 500px;
  color: var(--white);
  font-weight: 500;
  font-style: italic;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero__tree-wrap {
  position: relative;
  min-height: 255px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__tree {
  position: relative;
  right: auto;
  bottom: auto;
  width: 320px;
}

.hero__band .button {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.button--primary {
  background: var(--yellow);
  color: var(--green-dark);
}

.button--secondary {
  width: 100%;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--yellow) 0%, #ffd93d 100%);
  color: var(--green-dark);
}

section {
  padding: 84px 0;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading__tag,
.proposal__kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2,
.intro__content h2,
.proposal__content h2,
.cta__content h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
}

.priorities {
  position: relative;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbf2 100%);
}

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

.priority-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.priority-card img {
  width: 78px;
  margin: 0 auto 16px;
  border-radius: 18px;
}

.priority-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--blue-dark);
  font-family: var(--heading-font);
  letter-spacing: 0.01em;
}

.priority-card p,
.proposal__content p,
.intro__content p,
.cta__content p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.intro {
  padding: 0;
  background: var(--blue-dark);
}

.intro__grid,
.proposal__grid,
.cta__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.intro__photo img,
.proposal__media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.intro__grid {
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 52%, var(--blue-deep) 100%);
}

.intro__photo img {
  min-height: 620px;
  object-position: center top;
}

.intro__content {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 620px;
  padding: 56px 58px;
  overflow: hidden;
}

.intro__eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro__content h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.98;
  color: var(--white);
}

.intro__content p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.intro__highlight {
  margin-top: 8px;
  padding: 18px 20px;
  border-left: 8px solid var(--yellow);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.45;
}

.gallery {
  padding-top: 34px;
  padding-bottom: 34px;
  background: linear-gradient(180deg, #f7faf5 0%, #ffffff 100%);
}

.gallery__header {
  max-width: 680px;
  margin: 0 auto 16px;
  text-align: center;
}

.gallery__tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(43, 159, 71, 0.12);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery__header h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  line-height: 1.02;
  color: var(--blue-dark);
}

.gallery__carousel {
  position: relative;
}

.gallery__viewport {
  overflow: hidden;
  padding: 0 22px;
}

.gallery__track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.gallery__track::-webkit-scrollbar {
  display: none;
}

.gallery__slide {
  flex: 0 0 46%;
  margin: 0;
  scroll-snap-align: start;
}

.gallery__slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(12, 44, 29, 0.08);
}

.gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--blue-dark);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(12, 44, 29, 0.12);
  z-index: 1;
}

.gallery__arrow--prev {
  left: 0;
}

.gallery__arrow--next {
  right: 0;
}

.proposal--light {
  background: linear-gradient(180deg, rgba(229, 244, 223, 0.55) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.proposal--accent {
  background:
    linear-gradient(135deg, rgba(14, 139, 59, 0.96) 0%, rgba(31, 78, 121, 0.96) 100%);
  color: var(--white);
}

.proposal--accent .proposal__kicker {
  background: var(--yellow);
}

.proposal__grid--reverse .proposal__content {
  order: 2;
}

.proposal__grid--reverse .proposal__media {
  order: 1;
}

.proposal__content {
  display: grid;
  gap: 18px;
}

.projects {
  background: linear-gradient(180deg, #f7f4ea 0%, #ffffff 100%);
}

.projects__heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.projects__tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.projects__heading h2 {
  margin: 0 0 14px;
  font-family: var(--heading-font);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.95;
  color: #173864;
}

.projects__heading p {
  margin: 0 auto;
  max-width: 700px;
  font-size: 1.08rem;
  line-height: 1.6;
}

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

.project-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px 24px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.project-card h3 {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.1;
  color: #173864;
  font-family: var(--heading-font);
}

.project-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.58;
}

.project-card__status {
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(43, 159, 71, 0.12);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.cta {
  position: relative;
  padding: 50px 0 0;
  background:
    linear-gradient(180deg, #2b9f47 0%, #37ac52 38%, #46b35e 73%, var(--blue-dark) 73%, var(--blue-dark) 100%);
  color: var(--white);
}

.cta__hero {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.cta__content {
  max-width: 560px;
  padding-top: 44px;
}

.cta__content h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.cta__content h2 span {
  color: var(--yellow);
}

.cta__content p {
  max-width: 500px;
  font-size: clamp(1rem, 1.45vw, 1.45rem);
  line-height: 1.1;
  font-style: italic;
  letter-spacing: -0.03em;
}

.cta__figure {
  position: relative;
  min-height: 280px;
}

.cta__figure-shape {
  display: none;
}

.cta__figure-image {
  position: absolute;
  right: -10px;
  bottom: -2px;
  width: min(39vw, 470px);
  object-fit: contain;
}

.cta__newsletter-wrap {
  display: flex;
  justify-content: center;
  margin-top: -20px;
  padding-bottom: 42px;
}

.cta__form {
  width: min(100%, 760px);
  padding: 28px 34px 24px;
  background: #efc13c;
  box-shadow: 0 22px 50px rgba(16, 41, 27, 0.18);
}

.cta__form h3 {
  margin: 0 0 18px;
  text-align: center;
  font-family: var(--heading-font);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: #3c9142;
  text-transform: uppercase;
}

.cta__form-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10px;
}

.cta__form input {
  width: 100%;
  margin: 0 0 10px;
  padding: 14px 16px;
  border: 0;
  border-radius: 0;
  font: inherit;
}

.cta__form .button--secondary {
  width: 210px;
  margin: 8px auto 0;
  background: #2f6848;
  color: var(--white);
  border-radius: 12px;
  box-shadow: none;
}

.footer {
  padding: 42px 0 26px;
  background:
    linear-gradient(180deg, var(--blue-dark) 0%, var(--blue-deep) 100%);
}

.footer__content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.footer__brand img {
  width: 170px;
}

.footer__brand p {
  margin: 18px 0 0;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.6;
}

.footer__nav {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.footer__aside {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #4da04e;
  color: #163764;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 800;
}

.footer__bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #1fa14a;
  color: var(--white);
  box-shadow: 0 18px 34px rgba(11, 77, 35, 0.3);
}

.whatsapp-float__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.whatsapp-float__text {
  font-size: 0.95rem;
  font-weight: 800;
}

@media (max-width: 960px) {
  .priority-grid,
  .intro__grid,
  .gallery__carousel,
  .proposal__grid,
  .cta__hero,
  .projects__grid {
    grid-template-columns: 1fr;
  }

  .proposal__grid--reverse .proposal__content,
  .proposal__grid--reverse .proposal__media {
    order: initial;
  }

  .hero__topbar-content,
  .hero__band-content {
    grid-template-columns: 1fr;
  }

  .hero__topbar-content {
    gap: 14px;
    justify-items: center;
  }

  .hero__nav {
    gap: 8px;
  }

  .hero__nav a {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .intro__grid {
    gap: 0;
  }

  .intro__content {
    min-height: 380px;
    padding: 34px 28px;
  }

  .projects__grid {
    gap: 18px;
  }

  .gallery__carousel {
    gap: 0;
  }

  .gallery__slide {
    flex-basis: 72%;
  }

  .cta {
    padding-top: 34px;
    background:
      linear-gradient(180deg, #2b9f47 0%, #37ac52 40%, #46b35e 78%, #163764 78%, #163764 100%);
  }

  .cta__content {
    padding-top: 0;
  }

  .cta__figure {
    min-height: 220px;
  }

  .cta__figure-image {
    right: 0;
    width: min(76vw, 360px);
  }

  .cta__newsletter-wrap {
    margin-top: 12px;
  }

  .cta__form {
    padding: 24px 22px 20px;
  }

  .hero__stage {
    min-height: 0;
  }

  .hero__stage-inner {
    min-height: 0;
  }

  .hero__tree-wrap {
    min-height: 190px;
  }

  .hero__tree {
    width: 220px;
  }
}

@media (max-width: 680px) {
  section {
    padding: 64px 0;
  }

  .hero__topbar-content {
    padding: 12px 0;
  }

  .hero__top-logo {
    width: 88px;
  }

  .hero__nav {
    display: none;
  }

  .hero__top-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero__cta-link {
    padding: 10px 14px;
    font-size: 0.84rem;
  }

  .hero__social {
    gap: 6px;
  }

  .hero__social a {
    width: 30px;
    height: 30px;
    font-size: 0.58rem;
  }

  .hero__stage {
    min-height: 0;
  }

  .hero__stage-inner {
    min-height: 0;
  }

  .hero__band-content {
    padding: 24px 0 10px;
  }

  .hero__text h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero__subtitle {
    font-size: 1rem;
    max-width: 260px;
  }

  .hero__tree {
    width: 170px;
  }

  .priority-grid {
    gap: 16px;
  }

  .priority-card,
  .cta__form {
    padding: 22px 18px;
  }

  .intro__photo img,
  .proposal__media img {
    min-height: 260px;
  }

  .intro {
    padding: 0;
  }

  .intro__content {
    min-height: 320px;
    padding: 26px 18px;
  }

  .intro__content h2 {
    font-size: 1.8rem;
  }

  .intro__content p,
  .intro__highlight {
    font-size: 0.98rem;
  }

  .projects__heading h2 {
    font-size: 2rem;
  }

  .projects__heading p,
  .project-card p {
    font-size: 0.96rem;
  }

  .gallery__header h2 {
    font-size: 1.55rem;
  }

  .gallery__arrow {
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
  }

  .gallery__slide img {
    aspect-ratio: 4 / 5;
  }

  .gallery__viewport {
    padding: 0 14px;
  }

  .gallery__slide {
    flex-basis: 86%;
  }

  .project-card {
    padding: 22px 18px;
  }

  .cta {
    background:
      linear-gradient(180deg, #2b9f47 0%, #37ac52 46%, #46b35e 84%, #163764 84%, #163764 100%);
  }

  .cta__content h2 {
    font-size: 2rem;
  }

  .cta__content p {
    font-size: 0.96rem;
  }

  .cta__figure {
    min-height: 160px;
  }

  .cta__figure-image {
    width: min(78vw, 250px);
  }

  .cta__newsletter-wrap {
    margin-top: 8px;
    padding-bottom: 30px;
  }

  .cta__form h3 {
    font-size: 2rem;
  }

  .cta__form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cta__form .button--secondary {
    width: 100%;
  }

  .footer__content {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer__brand,
  .footer__aside {
    justify-items: center;
  }

  .footer__brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__nav {
    justify-items: center;
  }

  .footer__brand img {
    width: 140px;
  }
}

@media (max-width: 680px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 10px 12px;
  }

  .whatsapp-float__text {
    display: none;
  }
}
