/* ─── Custom brand font (place LenaRegular.woff2 / .woff in assets/fonts/) ─── */
@font-face {
  font-family: 'Lena';
  src: url('../fonts/LenaRegular.woff2') format('woff2'),
       url('../fonts/LenaRegular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ─── Variables ─── */
:root {
  /* Brand palette */
  --yellow:      #FAE445;
  --green-dark:  #005B34;
  --green-mid:   #36813E;
  --green-light: #E9F2DD;

  /* Theme */
  --bg:       #E9F2DD;
  --bg-alt:   #daeace;
  --surface:  #ffffff;
  --text:     #0D2418;
  --muted:    #4a6d52;
  --muted2:   #7a9980;
  --border:   rgba(0, 91, 52, .20);
  --border2:  rgba(0, 91, 52, .10);

  --shadow:  0 16px 48px rgba(0, 91, 52, .14);
  --shadow2: 0 6px 20px rgba(0, 91, 52, .09);

  --radius:  18px;
  --radius2: 24px;
  --container: 1120px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ─── Reset & base ─── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
.link {
  color: var(--green-dark);
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 91, 52, .45);
  padding-bottom: 2px;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.link:hover { color: var(--green-mid); border-color: var(--green-mid); }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--surface);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus { left: 12px; }

/* ─── Header ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(233, 242, 221, .88);
  border-bottom: 1px solid var(--border2);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

/* ─── Brand / Logo ─── */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}
.brand__logo {
  height: 44px;
  width: auto;
  display: block;
}
.brand__legal {
  font-size: 11px;
  color: var(--muted2);
  border: 1px solid var(--border);
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ─── Nav ─── */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 9px 12px;
  border-radius: 10px;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav__link:hover {
  color: var(--green-dark);
  background: rgba(0, 91, 52, .07);
}

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

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  user-select: none;
}
.btn:active { transform: translateY(1px); }
.btn--wide { width: 100%; }

.btn--primary {
  color: var(--green-dark);
  background: var(--yellow);
  box-shadow: 0 8px 24px rgba(250, 228, 69, .35);
}
.btn--primary:hover {
  box-shadow: 0 14px 36px rgba(250, 228, 69, .45);
  transform: translateY(-1px);
}

.btn--ghost {
  color: var(--green-dark);
  background: transparent;
  border-color: var(--border);
}
.btn--ghost:hover {
  background: rgba(0, 91, 52, .06);
  border-color: rgba(0, 91, 52, .35);
}

/* ─── Menu button ─── */
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.menu-btn__bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--green-dark);
  border-radius: 2px;
}

/* ─── Mobile nav ─── */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border2);
  background: rgba(233, 242, 221, .96);
  backdrop-filter: blur(16px);
}
.mobile-nav__inner {
  padding: 14px 0 18px;
  display: grid;
  gap: 8px;
}
.mobile-nav__link {
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border2);
  color: var(--text);
  font-weight: 500;
}
.mobile-nav__cta { display: grid; gap: 10px; margin-top: 6px; }

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 64px 0 42px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.grid {
  position: absolute;
  inset: -2px;
  background:
    linear-gradient(to right, rgba(0, 91, 52, .09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 91, 52, .09) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .35;
  mask-image: radial-gradient(closest-side at 50% 40%, rgba(0,0,0,.8), transparent 65%);
}
.blob {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: .35;
  transform: translateZ(0);
  animation: float 14s var(--ease) infinite;
}
.blob--1 {
  left: -100px;
  top: -80px;
  background: radial-gradient(circle at 30% 30%, rgba(54, 129, 62, .55), rgba(0, 91, 52, .10) 55%, transparent 70%);
}
.blob--2 {
  right: -140px;
  top: -80px;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle at 70% 30%, rgba(250, 228, 69, .30), rgba(54, 129, 62, .08) 58%, transparent 72%);
  animation-duration: 18s;
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%       { transform: translate3d(0, 22px, 0) scale(1.03); }
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: start;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  margin: 0 0 10px;
  font-weight: 600;
  letter-spacing: .15px;
}
.kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--green-mid));
  box-shadow: 0 0 0 5px rgba(250, 228, 69, .18);
}

/* H1 — Manrope SemiBold */
.title {
  margin: 0 0 14px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 50px);
  line-height: 1.08;
  letter-spacing: -.4px;
  color: var(--text);
}
.lead {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 60ch;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  font-size: 13px;
  font-weight: 500;
  color: var(--green-dark);
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
}

/* ─── Contact card (hero) ─── */
.card {
  border-radius: var(--radius2);
  background: var(--surface);
  border: 1px solid var(--border2);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card__top {
  position: relative;
  padding: 16px 16px 0;
  min-height: 42px;
}
.card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: var(--green-dark);
  background: var(--yellow);
  padding: 7px 12px;
  border-radius: 999px;
}
.card__pulse {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green-mid);
  box-shadow: 0 0 0 0 rgba(54, 129, 62, .30);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(54, 129, 62, .35); }
  70%  { box-shadow: 0 0 0 14px rgba(54, 129, 62, 0); }
  100% { box-shadow: 0 0 0 0 rgba(54, 129, 62, 0); }
}

.card__body {
  padding: 14px 16px 6px;
}
.card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}
.card__label { color: var(--muted2); font-size: 13px; }
.card__value { font-weight: 700; letter-spacing: .2px; color: var(--text); }
.card__divider {
  height: 1px;
  background: var(--border2);
  margin: 6px 0 10px;
}
.card__note {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.card__actions {
  display: grid;
  gap: 10px;
  padding: 12px 16px 16px;
  background: rgba(0, 91, 52, .03);
  border-top: 1px solid var(--border2);
}

.toast {
  min-height: 18px;
  font-size: 13px;
  color: var(--green-mid);
  padding: 6px 2px 0;
  font-weight: 500;
}

/* ─── Scroll indicator ─── */
.hero__scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted2);
  font-size: 13px;
}
.hero__scroll-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-mid);
  animation: bob 1.6s var(--ease) infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: .7; }
  50%       { transform: translateY(6px); opacity: 1; }
}

/* ─── Sections ─── */
.section { padding: 68px 0; }
.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
}
.section--news {
  background: var(--surface);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
}

.section__head {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

/* H2 — Manrope Medium */
.h2 {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -.3px;
  color: var(--text);
}
.section__lead {
  margin: 0;
  color: var(--muted);
  max-width: 72ch;
  line-height: 1.7;
}

/* ─── Info cards ─── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.info-card {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border2);
  box-shadow: var(--shadow2);
}
.h3 {
  margin: 0 0 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--green-dark);
}
.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── Steps ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border2);
  box-shadow: var(--shadow2);
}
.step__num {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .4px;
  color: var(--yellow);
  -webkit-text-stroke: 1px var(--green-mid);
}
.step__title {
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.step__text {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

/* ─── CTA band ─── */
.cta-band {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border-radius: var(--radius2);
  background: var(--green-dark);
  box-shadow: var(--shadow);
}
.cta-band__title {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.2px;
  color: #ffffff;
}
.cta-band__subtitle {
  color: rgba(255, 255, 255, .72);
  margin-top: 6px;
  line-height: 1.6;
  font-size: 14px;
}
.cta-band__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-band .btn--ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, .30);
}
.cta-band .btn--ghost:hover {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .50);
}

/* ─── Contacts ─── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border2);
  box-shadow: var(--shadow2);
}
.contact-card__label {
  color: var(--muted2);
  font-size: 13px;
  margin-bottom: 4px;
}
.contact-card__value { font-weight: 700; color: var(--text); }

/* ─── Icons ─── */
.icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 14px;
  display: inline-block;
  background: rgba(0, 91, 52, .08);
  border: 1px solid var(--border2);
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 91, 52, .10);
}
.icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  opacity: .9;
  background: var(--green-dark);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.icon--phone::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79a15.053 15.053 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.07 21 3 13.93 3 5a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.46.57 3.59a1 1 0 0 1-.25 1.01z'/%3E%3C/svg%3E");
}
.icon--mail::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2m0 4l-8 5l-8-5V6l8 5l8-5z'/%3E%3C/svg%3E");
}
.icon--time::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 10 10A10.011 10.011 0 0 0 12 2m1 11h4v-2h-3V7h-2v6z'/%3E%3C/svg%3E");
}

/* ─── News & Media section ─── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.news-card {
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border2);
  box-shadow: var(--shadow2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.news-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.news-card__video {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: var(--bg-alt);
}
.news-card__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.news-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.news-card__date {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted2);
  letter-spacing: .3px;
}
.news-card__type {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--green-dark);
}
.news-card__type--news {
  background: rgba(0, 91, 52, .10);
  color: var(--green-dark);
}
.news-card__title {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  line-height: 1.4;
}
.news-card__text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.news-empty {
  text-align: center;
  color: var(--muted2);
  padding: 40px 0;
  font-size: 15px;
}

/* ─── Footer ─── */
.footer {
  margin-top: 48px;
  padding: 22px 0 40px;
}
.footer__line {
  height: 1px;
  background: var(--border2);
  margin-bottom: 18px;
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.footer__brand { font-weight: 700; margin-bottom: 6px; color: var(--text); }
.footer__meta { color: var(--muted2); font-size: 13px; }
.footer__link {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border2);
  background: var(--surface);
  font-size: 14px;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.footer__link:hover {
  background: rgba(0, 91, 52, .06);
  border-color: var(--border);
}

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 980px) {
  .hero__inner        { grid-template-columns: 1fr; }
  .cards              { grid-template-columns: 1fr; }
  .steps              { grid-template-columns: 1fr; }
  .contact-grid       { grid-template-columns: 1fr; }
  .cta-band           { flex-direction: column; align-items: flex-start; }
  .nav                { display: none; }
  .menu-btn           { display: flex; }
  .mobile-nav.is-open { display: block; }
  .news-grid          { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .brand__legal { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .blob, .card__pulse, .hero__scroll-dot { animation: none !important; }
  .reveal { transition: none !important; transform: none !important; opacity: 1 !important; }
}

