:root {
  --green: #006b52;
  --green-deep: #073f32;
  --green-dark: #062a22;
  --red: #c9363c;
  --ink: #12211c;
  --muted: #66736f;
  --line: rgba(18, 33, 28, 0.1);
  --paper: #ffffff;
  --soft: #f7faf8;
}

* {
  box-sizing: border-box;
}

body {
  font-family: Manrope, sans-serif;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

.main-nav,
.mobile-menu,
.contact-card,
.map-card,
.modal-panel,
.gallery-modal-panel {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 70px rgba(7, 63, 50, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.main-nav {
  border-radius: 8px;
}

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

.brand-symbol {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(7, 63, 50, 0.12);
}

.brand-symbol::before,
.brand-symbol::after,
.brand-symbol span::before,
.brand-symbol span::after {
  position: absolute;
  content: "";
}

.brand-symbol::before {
  left: 8px;
  bottom: 8px;
  width: 16px;
  height: 25px;
  border-radius: 2px;
  background: var(--red);
  transform: skewY(-12deg);
}

.brand-symbol::after {
  right: 8px;
  top: 7px;
  width: 17px;
  height: 29px;
  border-radius: 2px 12px 2px 12px;
  background: var(--green);
  transform: skewY(-12deg);
}

.brand-symbol span::before {
  left: 17px;
  top: 17px;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffffff;
}

.brand-symbol span::after {
  left: 17px;
  top: 10px;
  width: 12px;
  height: 30px;
  border-radius: 999px;
  background: var(--green);
  transform: rotate(38deg);
}

.nav-link {
  position: relative;
  color: var(--green-deep);
  transition: color 0.2s ease;
}

.nav-link::after {
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transition: width 0.2s ease;
}

.nav-link:hover {
  color: var(--green);
}

.nav-link:hover::after {
  width: 100%;
}

.whatsapp-button,
.hero-cta,
.contact-whatsapp,
.mobile-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  background: var(--green);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(0, 107, 82, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-button {
  padding: 12px 18px;
}

.hero-cta,
.contact-whatsapp,
.mobile-whatsapp {
  padding: 15px 22px;
}

.whatsapp-button:hover,
.hero-cta:hover,
.contact-whatsapp:hover,
.mobile-whatsapp:hover {
  background: #075845;
  box-shadow: 0 22px 46px rgba(0, 107, 82, 0.34);
  transform: translateY(-2px);
}

.hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  padding: 15px 22px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 800;
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 5px;
  border-radius: 8px;
  background: var(--green);
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  border-radius: 8px;
  flex-direction: column;
  gap: 10px;
}

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

.mobile-menu a {
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--green-deep);
  font-weight: 800;
}

.hero {
  background-image: url("img/6.jpeg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(4, 20, 16, 0.9), rgba(7, 63, 50, 0.58) 48%, rgba(5, 20, 16, 0.2)), linear-gradient(0deg, rgba(4, 20, 16, 0.5), transparent 40%);
}

.hero-eyebrow {
  display: inline-flex;
  border-left: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 15px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.credibility {
  position: relative;
  z-index: 4;
  margin-top: -48px;
  padding-bottom: 70px;
}

.credibility .max-w-7xl {
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(7, 63, 50, 0.12);
}

.credibility-item {
  min-height: 178px;
  border-right: 1px solid var(--line);
  padding: 28px;
}

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

.credibility-item span {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
}

.credibility-item strong {
  display: block;
  margin-top: 18px;
  color: var(--green-deep);
  font-size: 1.28rem;
  font-weight: 900;
}

.credibility-item p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.section-pad {
  padding: 104px 0;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #e9f6f1;
  padding: 8px 14px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title {
  max-width: 850px;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 0.98;
}

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

.section-heading p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-section {
  background: linear-gradient(180deg, var(--soft), #ffffff);
}

.about-copy {
  padding-right: 3vw;
}

.about-visual {
  position: relative;
}

.about-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: contain;
  border-radius: 8px;
  background: #eef4f1;
  box-shadow: 0 30px 90px rgba(7, 63, 50, 0.18);
}

.about-badge {
  position: absolute;
  left: -34px;
  bottom: 34px;
  width: min(310px, calc(100% - 28px));
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(7, 63, 50, 0.16);
}

.about-badge strong {
  display: block;
  color: var(--green-deep);
  font-size: 1.5rem;
  font-weight: 900;
}

.about-badge span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.services-section {
  background: #ffffff;
}

.service-card {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 30px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  border-color: rgba(0, 107, 82, 0.3);
  box-shadow: 0 24px 60px rgba(7, 63, 50, 0.11);
  transform: translateY(-5px);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.service-top svg {
  flex: 0 0 auto;
}

.service-top span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h3 {
  margin-top: 34px;
  color: var(--green-deep);
  font-size: 1.45rem;
  font-weight: 900;
}

.service-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.text-primary,
.text-primary-DEFAULT {
  color: var(--green);
}

.experience-section {
  background: #f1f7f4;
}

.experience-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  border-radius: 8px;
  background: #e6f0eb;
  box-shadow: 0 30px 80px rgba(7, 63, 50, 0.16);
}

.quiet-feature {
  border-top: 1px solid rgba(7, 63, 50, 0.16);
  padding-top: 18px;
}

.quiet-feature strong {
  display: block;
  color: var(--green-deep);
  font-weight: 900;
}

.quiet-feature span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
}

.gallery-section {
  background: #ffffff;
}

.gallery-layout {
  column-count: 3;
  column-gap: 16px;
}

.gallery-tile {
  display: block;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  margin: 0 0 16px;
  padding: 0;
  background: #dce8e2;
  cursor: pointer;
  break-inside: avoid;
}

.gallery-tile img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: filter 0.25s ease, transform 0.35s ease;
}

.gallery-tile:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.04);
}

.contact-section {
  background: linear-gradient(180deg, #f7faf8, #eaf3ef);
}

.contact-heading {
  margin: 0 auto;
  text-align: center;
}

.contact-card,
.map-card {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.contact-card {
  padding: 32px;
}

.contact-card h3 {
  color: var(--green-deep);
  font-size: 1.45rem;
  font-weight: 900;
}

.contact-card dl {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.contact-card dl div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.contact-card dt {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card dd {
  margin-top: 5px;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.45;
}

.contact-whatsapp {
  margin-top: 28px;
  width: 100%;
}

.map-card {
  min-height: 570px;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 570px;
  border: 0;
}

.site-footer {
  background: var(--green-dark);
}

.privacy-link {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal.hidden {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
}

.modal-panel,
.gallery-modal-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: 86vh;
  overflow-y: auto;
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.modal-panel {
  padding: 34px;
}

.modal-panel h2 {
  color: var(--green-deep);
  font-size: 1.8rem;
  font-weight: 900;
}

.modal-panel p {
  margin-top: 16px;
  color: #4b5c56;
  line-height: 1.8;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--green-deep);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
}

.gallery-modal-panel {
  width: min(980px, 100%);
  overflow: hidden;
  background: var(--green-dark);
}

.gallery-modal-panel img {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

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

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

.header-hidden {
  transform: translateY(-130%);
}

@media (max-width: 1023px) {
  .section-pad {
    padding: 78px 0;
  }

  .hero {
    background-position: 58% center;
  }

  .credibility {
    margin-top: -30px;
  }

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

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

  .about-copy {
    padding-right: 0;
  }

  .about-badge {
    left: 20px;
  }

  .gallery-layout {
    column-count: 2;
  }
}

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

  .main-nav {
    margin: 12px;
  }

  .hero {
    min-height: 90svh;
    background-position: 64% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(4, 20, 16, 0.92), rgba(7, 63, 50, 0.66)), linear-gradient(0deg, rgba(4, 20, 16, 0.42), transparent);
  }

  .credibility {
    padding-bottom: 46px;
  }

  .credibility-item {
    min-height: auto;
    padding: 22px;
  }

  .about-badge {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .gallery-layout {
    column-count: 1;
  }

  .contact-card {
    padding: 24px;
  }

  .map-card,
  .map-card iframe {
    min-height: 500px;
  }

  .modal-panel {
    padding: 28px 22px;
  }
}
