:root {
  --green-900: #0f3a31;
  --green-700: #1e6e5a;
  --green-500: #35a27f;
  --cyan-600: #0d8ea0;
  --cyan-500: #14a6b9;
  --beige-100: #f8f2e7;
  --beige-200: #f1e8d8;
  --slate-900: #11201f;
  --slate-700: #2e4a47;
  --text-900: #16302c;
  --text-700: #305652;
  --text-500: #557a76;
  --white: #ffffff;
  --ring: rgba(20, 166, 185, 0.32);
  --shadow-soft: 0 14px 40px rgba(17, 32, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text-900);
  background:
    radial-gradient(1200px 480px at 110% -20%, rgba(20, 166, 185, 0.12), transparent 70%),
    linear-gradient(180deg, #ffffff, #fdfbf7 50%, #faf5eb);
}

h1,
h2,
h3,
.brand-text strong {
  font-family: "Outfit", "Segoe UI", sans-serif;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 99;
  transform: translateY(-200%);
  padding: 10px 14px;
  background: var(--green-700);
  color: var(--white);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(22, 48, 44, 0.09);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(53, 162, 127, 0.2), rgba(20, 166, 185, 0.22)),
    var(--beige-100);
  border: 1px solid rgba(30, 110, 90, 0.32);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--green-700), var(--cyan-500));
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 1.05rem;
  line-height: 1;
}

.brand-text small {
  font-size: 0.74rem;
  color: var(--text-500);
  margin-top: 2px;
}

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

.site-nav a {
  text-decoration: none;
  color: var(--text-700);
  font-weight: 600;
  font-size: 0.92rem;
}

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

.site-nav a.is-active {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: var(--beige-100);
  border: 1px solid rgba(22, 48, 44, 0.09);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--text-700);
  padding: 7px 11px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.lang-btn.is-active {
  background: var(--white);
  color: var(--green-700);
  box-shadow: 0 2px 10px rgba(17, 32, 31, 0.12);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.header-cta {
  background: linear-gradient(135deg, var(--green-700), var(--cyan-600));
  color: var(--white);
  padding: 10px 14px;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(22, 48, 44, 0.14);
  background: var(--white);
  border-radius: 10px;
  color: var(--text-900);
  padding: 9px 12px;
  font-weight: 700;
}

.page-hero {
  padding: clamp(44px, 8vw, 86px) 0;
}

.hero-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 242, 231, 0.78));
  border: 1px solid rgba(22, 48, 44, 0.1);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-soft);
}

.hero-card--photo {
  position: relative;
  isolation: isolate;
  color: var(--white);
  border: 0;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(15, 58, 49, 0.84), rgba(13, 142, 160, 0.48)),
    var(--hero-image) center / cover no-repeat;
}

.hero-card--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.36));
}

.hero-card h1 {
  margin: 12px 0;
  font-size: clamp(1.85rem, 5vw, 3.2rem);
  line-height: 1.08;
}

.hero-card p {
  color: var(--text-700);
  max-width: 70ch;
  line-height: 1.72;
}

.hero-card--photo p,
.hero-card--photo .eyebrow {
  color: rgba(255, 255, 255, 0.94);
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--cyan-600);
}

.btn {
  min-height: 46px;
  padding: 0 18px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-700), var(--cyan-600));
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-700);
  border-color: rgba(30, 110, 90, 0.32);
}

.section {
  padding: clamp(54px, 8vw, 84px) 0;
}

.section-bridge {
  height: 92px;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(20, 166, 185, 0.18), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(248, 242, 231, 0.66));
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), transparent);
}

.section-bridge--deep {
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(255, 255, 255, 0.18), transparent 58%),
    linear-gradient(180deg, rgba(13, 142, 160, 0.22), rgba(15, 58, 49, 0));
}

.soft {
  background: linear-gradient(180deg, var(--beige-100), #fcf8ef);
}

.section h2 {
  margin: 10px 0 0;
  font-size: clamp(1.45rem, 4vw, 2.2rem);
}

.section p,
.section li {
  color: var(--text-700);
  line-height: 1.72;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 4vw, 42px);
}

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

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

.card {
  background: var(--white);
  border: 1px solid rgba(22, 48, 44, 0.1);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(17, 32, 31, 0.08);
}

.card h3 {
  margin: 0;
  font-size: 1.14rem;
}

.card p {
  margin: 10px 0 0;
}

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

.media-card {
  overflow: hidden;
  border: 1px solid rgba(22, 48, 44, 0.1);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(17, 32, 31, 0.08);
}

.media-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.media-card h3 {
  margin: 0;
  padding: 12px 14px 14px;
  font-size: 1.02rem;
  color: var(--text-900);
}

.media-card p {
  margin: 0;
  padding: 0 14px 14px;
  font-size: 0.92rem;
  color: var(--text-500);
}

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

.photo-strip img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(22, 48, 44, 0.12);
}

.deep {
  color: var(--white);
  background: linear-gradient(145deg, rgba(14, 58, 49, 0.98), rgba(13, 142, 160, 0.95));
}

.deep .eyebrow,
.deep p,
.deep li,
.deep h2,
.deep h3 {
  color: var(--white);
}

.checklist {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.checklist li {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
}

.placeholder-box {
  margin-top: 14px;
  border-radius: 14px;
  border: 1px dashed rgba(22, 48, 44, 0.22);
  background: rgba(255, 255, 255, 0.68);
  padding: 22px;
}

.placeholder-box p {
  margin: 0;
  color: var(--text-500);
  font-weight: 600;
}

.cta-strip {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
}

.contact-list a {
  color: var(--green-700);
  font-weight: 600;
}

.contact-form {
  background: var(--white);
  border: 1px solid rgba(22, 48, 44, 0.1);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(17, 32, 31, 0.08);
}

.contact-form label {
  display: block;
  margin: 12px 0 6px;
  font-weight: 600;
  color: var(--text-700);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(22, 48, 44, 0.2);
  padding: 11px 12px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 10px 0 0;
  color: var(--text-500);
  font-size: 0.9rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(145deg, var(--slate-900), var(--slate-700));
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 20px;
}

.site-footer h3 {
  margin: 0;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.site-footer a {
  color: #9fe8d5;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  background: #1ca56f;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 26px rgba(15, 58, 49, 0.34);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
}

.header-cta:hover,
.btn:hover,
.whatsapp-float:hover {
  transform: translateY(-1px);
}

.contact-form input:focus,
.contact-form textarea:focus,
.lang-btn:focus-visible,
.menu-toggle:focus-visible,
.site-nav a:focus-visible,
.header-cta:focus-visible,
.btn:focus-visible,
.whatsapp-float:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

@media (max-width: 1040px) {
  .nav-wrap {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand tools"
      "menu menu"
      "nav nav";
    gap: 10px;
    padding: 12px 0;
  }

  .brand {
    grid-area: brand;
  }

  .header-tools {
    grid-area: tools;
    justify-content: flex-end;
  }

  .menu-toggle {
    display: inline-flex;
    grid-area: menu;
    justify-self: start;
  }

  .site-nav {
    grid-area: nav;
    justify-content: flex-start;
    width: 100%;
    display: none;
    padding: 10px;
    border-radius: 12px;
    background: var(--beige-100);
    border: 1px solid rgba(22, 48, 44, 0.1);
  }

  .site-nav.is-open {
    display: flex;
  }

  .split,
  .grid-3,
  .grid-2,
  .footer-grid,
  .media-grid,
  .photo-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .header-tools {
    flex-wrap: wrap;
  }

  .header-cta {
    width: 100%;
  }

  .hero-actions,
  .cta-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
