@font-face {
  font-family: "Manrope";
  src:
    url("../fonts/Manrope_Complete/Manrope_Complete/Fonts/WEB/fonts/Manrope-Variable.woff2") format("woff2"),
    url("../fonts/Manrope_Complete/Manrope_Complete/Fonts/WEB/fonts/Manrope-Variable.woff") format("woff"),
    url("../fonts/Manrope_Complete/Manrope_Complete/Fonts/WEB/fonts/Manrope-Variable.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f4f7f2;
  --surface: #ffffff;
  --surface-alt: #eef5e8;
  --text: #1f2c1a;
  --muted: #5f6d57;
  --line: #d6e2cb;
  --brand: #66b92b;
  --brand-dark: #4b8f1d;
  --brand-soft: #dff0d0;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 14px 40px rgba(14, 34, 2, 0.09);
  --container: min(1160px, calc(100vw - 2.2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 0 0, #edf8e4 0, transparent 40%), var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(244, 247, 242, 0.9);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo img {
  width: 168px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav a {
  padding: 0.52rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: 0.2s;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
  background: var(--brand-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.76rem 1.15rem;
  font-weight: 700;
  transition: 0.2s;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--brand), var(--brand-dark));
  box-shadow: 0 10px 24px rgba(71, 143, 18, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.hero {
  padding: 4.4rem 0 3.4rem;
}

.hero.hero-full {
  padding-top: 0;
}

.hero.hero-full .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero.hero-full .hero-media,
.hero.hero-full .hero-card {
  border-radius: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 2rem;
  align-items: stretch;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  padding: 2.1rem;
}

.hero-card-home {
  background: rgba(248, 250, 245, 0.78);
  border-color: rgba(198, 208, 188, 0.86);
  box-shadow: 0 20px 48px rgba(31, 44, 26, 0.16);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.eyebrow {
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0 0 0.8rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
}

h2 {
  font-size: clamp(1.45rem, 3.1vw, 2.2rem);
}

.lead {
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-media {
  min-height: 420px;
  border-radius: calc(var(--radius) + 6px);
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(31, 44, 26, 0.24));
}

.hero-home-media {
  background-position: center 38%;
}

.hero-home-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem 0;
}

.partner-hero {
  padding: 1.2rem;
  display: flex;
  align-items: stretch;
}

.partner-hero::after {
  background: linear-gradient(160deg, rgba(20, 38, 12, 0.08), rgba(20, 38, 12, 0.35));
}

.partner-hero-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d6e2cb;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.partner-hero-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.partner-hero-top h3 {
  margin: 0;
  font-size: 1.05rem;
}

.partner-hero-top span {
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.8rem;
}

.partner-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.partner-mini {
  background: #fff;
  border: 1px solid #d6e2cb;
  border-radius: 10px;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
}

.partner-mini img {
  width: 100%;
  height: 46px;
  object-fit: contain;
}

.partner-hero-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.partner-hero-textwrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.partner-hero-copy {
  width: min(920px, 100%);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d6e2cb;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.2rem 1.25rem;
}

.partner-hero-copy h1 {
  margin-bottom: 0.45rem;
}

.partner-hero-quote {
  margin: 0.75rem 0 0;
  padding: 0.75rem 0.9rem;
  border-left: 4px solid var(--brand);
  background: #f7fbf3;
  border-radius: 10px;
  font-weight: 600;
  color: #34462b;
}

.partner-hero-meta {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.strip {
  background: var(--brand);
  color: #fff;
  text-align: center;
  padding: 0.6rem 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.section {
  padding: 4.2rem 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--surface-alt), rgba(238, 245, 232, 0.5));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: 1.4rem;
  max-width: 70ch;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.15rem;
}

.card h3 {
  font-size: 1.08rem;
}

.card p {
  margin-top: 0.35rem;
}

.soft-list {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.soft-list li {
  margin-bottom: 0.33rem;
}

.details-block {
  margin-top: 0.8rem;
  border-top: 1px dashed var(--line);
  padding-top: 0.65rem;
}

.details-block summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--brand-dark);
}

.details-block ul {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.kpi {
  background: #f8fcf4;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem;
}

.kpi strong {
  display: block;
  font-size: 1.2rem;
  color: var(--brand-dark);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f9fcf6;
  font-size: 0.85rem;
  color: var(--muted);
}

.team-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.team-body {
  padding: 1rem;
}

.role {
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.84rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.accordion {
  display: grid;
  gap: 0.7rem;
}

.acc-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
}

.acc-head {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.95rem 1rem;
  cursor: pointer;
}

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.acc-panel p {
  margin: 0;
  padding: 0 1rem 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.input,
textarea,
select {
  width: 100%;
  border: 1px solid #cbdbc0;
  background: #fff;
  border-radius: 12px;
  padding: 0.78rem 0.85rem;
  font: inherit;
  color: var(--text);
}

textarea {
  min-height: 145px;
  resize: vertical;
}

.notice {
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.notice-ok {
  background: #dff5e0;
  color: #1b5e20;
  border: 1px solid #b6dfb8;
}

.notice-err {
  background: #fbe3e4;
  color: #8f1f24;
  border: 1px solid #f0babe;
}

.map-wrap iframe {
  border: 0;
  width: 100%;
  min-height: 380px;
  border-radius: var(--radius);
}

.consent-embed {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f7fbf3, #eef5e8);
  min-height: 380px;
  overflow: hidden;
}

.consent-embed.is-loaded {
  background: transparent;
  border: 0;
  min-height: 0;
}

.consent-embed-panel {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
  padding: 1.4rem;
  color: var(--muted);
}

.consent-embed-panel h3 {
  margin-bottom: 0;
  color: var(--text);
}

.consent-embed-panel p {
  margin: 0;
}

.consent-embed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.25rem;
}

.gallery {
  columns: 3 260px;
  column-gap: 1rem;
}

.gallery img {
  width: 100%;
  margin: 0 0 1rem;
  border-radius: 14px;
  break-inside: avoid;
  border: 1px solid var(--line);
}

.partner-section {
  padding: 3.3rem 0 0.5rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.partner-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.partner-logo-wrap {
  display: block;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  min-height: 140px;
  padding: 0.9rem;
}

.partner-logo-wrap.is-static {
  cursor: default;
}

.partner-logo {
  width: 100%;
  height: 120px;
  object-fit: contain;
}

.partner-card h3 {
  margin: 0;
  font-size: 1.05rem;
  min-height: 2.6em;
}

.partner-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.partner-card > p:first-of-type {
  min-height: 4.35em;
}

.partner-url {
  color: var(--brand-dark);
  font-weight: 700;
  margin-top: auto;
}

.partner-note {
  margin-top: auto;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f7fbf3;
  margin-top: 3.2rem;
}

.footer-wrap {
  padding: 1.4rem 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-copy {
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--brand-dark);
  font-weight: 700;
}

.page-hero-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.profile-card .meta-list {
  margin-bottom: 1.35rem;
}

.meta-pill {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f9fcf6;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.feature-list,
.link-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.feature-list li,
.link-list li {
  margin-bottom: 0.45rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card > p:first-of-type {
  min-height: 4.4em;
}

.service-card .soft-list {
  margin-bottom: 0;
}

.service-card .role {
  margin-top: auto;
  padding-top: 0.9rem;
}

.service-card p:last-child,
.profile-card p:last-child {
  margin-bottom: 0;
}

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

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

.profile-card .info-grid {
  margin-top: 1.55rem !important;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 1rem 1.05rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
}

.faq-item p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.cta-band {
  background: linear-gradient(120deg, #f7fbf3, #edf6e7);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  padding: 1.35rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.profile-shell {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.profile-aside {
  position: sticky;
  top: 1rem;
}

.profile-photo {
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.profile-photo img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.profile-note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.profile-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  padding: 1.35rem;
}

.prose p {
  margin: 0 0 1rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.contact-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.contact-line {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--muted);
}

.contact-line strong {
  min-width: 110px;
  color: var(--text);
}

.card-stack {
  display: grid;
  gap: 1rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.muted {
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .grid-3,
  .grid-4,
  .kpi-grid,
  .partner-grid,
  .service-grid,
  .section-link-grid,
  .info-grid,
  .profile-shell {
    grid-template-columns: 1fr 1fr;
  }

  .profile-aside {
    position: static;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 81px;
    background: #f4f7f2;
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 1rem 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav.open {
    display: flex;
  }

  .hero-grid,
  .contact-grid,
  .grid-3,
  .grid-4,
  .kpi-grid,
  .partner-grid,
  .service-grid,
  .section-link-grid,
  .info-grid,
  .profile-shell {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 300px;
  }

  .hero-home-media {
    min-height: 520px !important;
    background-position: center 34%;
  }

  .hero-home-overlay {
    align-items: flex-end;
    padding: 1rem 0.85rem 1rem;
  }

  .hero-card-home {
    width: min(100%, 34rem);
    padding: 1.15rem 1rem 1rem;
    background: rgba(248, 250, 245, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .hero-card-home h1 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
  }

  .hero-card-home .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .hero-card-home .lead {
    font-size: 0.98rem;
  }

  .hero-card-home .meta-list {
    gap: 0.45rem;
    margin-top: 0.8rem;
  }

  .hero-card-home .meta-pill {
    font-size: 0.83rem;
    padding: 0.4rem 0.68rem;
  }

  .hero-card-home .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-card-home .cta-actions .btn {
    justify-content: center;
    width: 100%;
  }

  .contact-line {
    flex-direction: column;
    gap: 0.15rem;
  }
}






