:root {
  --ink: #102f4f;
  --navy: #082f57;
  --muted: #5a6f67;
  --green: #5e8f59;
  --green-dark: #0d6b4b;
  --mint: #e6f3ea;
  --sage: #f4f8f2;
  --gold: #c99a2e;
  --coral: #cf7357;
  --white: #ffffff;
  --line: #d8e4dc;
  --shadow: 0 18px 45px rgba(16, 47, 79, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--sage);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 84px;
  padding: 10px clamp(16px, 3vw, 44px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 228, 220, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 222px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: contain;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.1;
}

.brand-text small {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 2px;
}

.site-nav a {
  min-height: 42px;
  padding: 10px 10px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.84rem;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--green-dark);
  background: var(--mint);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-dark);
  font-weight: 900;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-line {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.home-hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px clamp(20px, 5vw, 72px) 72px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(244, 248, 242, 0.98) 0%, rgba(244, 248, 242, 0.88) 36%, rgba(244, 248, 242, 0.12) 68%),
    linear-gradient(180deg, rgba(244, 248, 242, 0.7) 0%, rgba(244, 248, 242, 0.08) 52%, rgba(8, 47, 87, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-weight: 950;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 4.35rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 1.13rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-kicker {
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 1.35rem;
  font-weight: 900;
}

.hero-copy,
.page-hero p,
.section-heading p,
.rich-copy p,
.feature-card p,
.service-preview p,
.testimonial-card p,
.info-panel p,
.blog-card p,
.team-card p,
.contact-copy p,
.map-grid p,
.faq-list p {
  color: var(--muted);
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 50px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  text-align: center;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--navy);
}

.button-ghost {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(94, 143, 89, 0.42);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: var(--white);
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-shell.narrow {
  width: min(900px, calc(100% - 40px));
}

.section {
  padding: 92px 0;
}

.soft-section {
  background: #eef7f0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.feature-grid,
.service-preview-grid,
.testimonial-grid,
.blog-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-card,
.service-preview,
.testimonial-card,
.info-panel,
.blog-card,
.team-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(16, 47, 79, 0.06);
}

.feature-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 950;
  font-size: 0.8rem;
}

.feature-card p,
.service-preview p,
.testimonial-card p,
.info-panel p,
.blog-card p,
.team-card p {
  margin-bottom: 0;
}

.service-preview {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-preview:hover,
.service-preview:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.section-cta {
  margin-top: 30px;
}

.band {
  padding: 70px 0;
}

.band-dark {
  color: var(--white);
  background: var(--navy);
}

.band-grid,
.page-hero-grid,
.split,
.service-detail,
.contact-grid,
.map-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.band-dark .eyebrow {
  color: var(--gold);
}

.band-dark p,
.band-dark h2 {
  margin-bottom: 0;
}

.band-dark p {
  color: rgba(255, 255, 255, 0.82);
}

.testimonial-card {
  min-height: 180px;
}

.testimonial-card p {
  font-size: 1.05rem;
}

.testimonial-card strong {
  display: block;
  margin-top: 22px;
  color: var(--green-dark);
}

.page-hero {
  padding: 142px 0 72px;
  background: linear-gradient(135deg, #ffffff 0%, #eef7f0 56%, #dfece1 100%);
}

.page-hero.simple {
  text-align: left;
}

.page-hero.visual {
  padding-bottom: 88px;
}

.page-hero h1 {
  font-size: 3.45rem;
}

.page-hero-logo {
  width: min(360px, 100%);
  justify-self: center;
  filter: drop-shadow(0 18px 28px rgba(16, 47, 79, 0.1));
}

.rich-copy {
  font-size: 1.06rem;
}

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

.mission-grid article {
  min-height: 260px;
  padding: 30px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
}

.mission-grid article:nth-child(2) {
  background: var(--green-dark);
}

.mission-grid .eyebrow {
  color: var(--gold);
}

.mission-grid h2 {
  margin-bottom: 0;
}

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

.value-item {
  min-height: 210px;
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-dark);
}

.value-item:nth-child(2) {
  background: #187d7a;
}

.value-item:nth-child(3) {
  background: #314c86;
}

.value-item:nth-child(4) {
  background: var(--coral);
}

.value-item strong {
  display: block;
  margin-bottom: 12px;
  font-size: 2.2rem;
  line-height: 1;
}

.value-item span {
  display: block;
  margin-bottom: 12px;
  font-weight: 950;
}

.value-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

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

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

.check-list li {
  position: relative;
  min-height: 58px;
  padding: 15px 18px 15px 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 850;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--green-dark);
  border-bottom: 3px solid var(--green-dark);
  transform: rotate(-45deg);
}

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

.media-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.media-placeholder img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.media-placeholder span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 850;
}

.team-card span,
.blog-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-card {
  min-height: 250px;
}

.team-card:first-child {
  grid-column: span 2;
  color: var(--white);
  background: var(--navy);
}

.team-card:first-child p,
.team-card:first-child span {
  color: rgba(255, 255, 255, 0.82);
}

.blog-card h2,
.team-card h2 {
  font-size: 1.38rem;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(16, 47, 79, 0.05);
}

summary {
  min-height: 64px;
  padding: 20px 24px;
  cursor: pointer;
  color: var(--navy);
  font-weight: 950;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
}

.contact-copy {
  align-self: start;
}

address {
  margin: 24px 0;
  color: var(--muted);
  font-style: normal;
}

.contact-links {
  display: grid;
  gap: 10px;
}

.contact-links a {
  width: fit-content;
  color: var(--green-dark);
  font-weight: 950;
  border-bottom: 2px solid var(--gold);
}

.emergency-box {
  margin-top: 28px;
  padding: 20px;
  border-left: 5px solid var(--coral);
  border-radius: 8px;
  background: var(--white);
}

.emergency-box p {
  margin: 8px 0 0;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #c8d8cf;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(94, 143, 89, 0.22);
  border-color: var(--green-dark);
}

.form-button {
  width: 100%;
  border: 0;
}

.map-grid {
  align-items: stretch;
}

.map-frame {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.82);
  background: #08263f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.75fr 0.95fr;
  gap: 28px;
}

.footer-grid div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid p {
  margin: 0;
}

.footer-grid strong {
  color: var(--white);
}

.footer-grid a {
  width: fit-content;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--gold);
}

.footer-logo {
  width: 112px;
  height: 112px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: #1b8f5a;
  box-shadow: var(--shadow);
  font-weight: 950;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-header.nav-visible .site-nav {
    position: fixed;
    inset: 84px 0 auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-header.nav-visible .site-nav a {
    min-height: 44px;
    border-radius: 6px;
  }

  .feature-grid.five,
  .feature-grid,
  .service-preview-grid,
  .testimonial-grid,
  .blog-grid,
  .team-grid,
  .values-row,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-card:first-child {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  h1,
  .page-hero h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .home-hero {
    min-height: auto;
    padding-top: 122px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(244, 248, 242, 0.98) 0%, rgba(244, 248, 242, 0.9) 48%, rgba(244, 248, 242, 0.35) 100%),
      linear-gradient(180deg, rgba(244, 248, 242, 0.68), rgba(244, 248, 242, 0.2));
  }

  .page-hero-grid,
  .split,
  .service-detail,
  .contact-grid,
  .map-grid,
  .band-grid,
  .mission-grid,
  .two-card-grid {
    grid-template-columns: 1fr;
  }

  .section-heading.compact {
    margin-bottom: 12px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 74px;
    padding: 8px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .brand-text small {
    display: none;
  }

  .site-header.nav-visible .site-nav {
    inset: 74px 0 auto;
  }

  .home-hero {
    padding: 106px 18px 48px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(244, 248, 242, 0.98) 0%, rgba(244, 248, 242, 0.92) 56%, rgba(244, 248, 242, 0.72) 100%);
  }

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

  h2 {
    font-size: 1.7rem;
  }

  .hero-kicker {
    font-size: 1.1rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section-shell,
  .section-shell.narrow {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 68px 0;
  }

  .page-hero {
    padding: 112px 0 54px;
  }

  .feature-grid.five,
  .feature-grid,
  .service-preview-grid,
  .testimonial-grid,
  .blog-grid,
  .team-grid,
  .values-row,
  .footer-grid,
  .check-list.columns {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .service-preview,
  .testimonial-card,
  .info-panel,
  .blog-card,
  .team-card,
  .contact-form {
    padding: 22px;
  }

  .media-placeholder img {
    height: 310px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}
