:root {
  --bg: #f4f8f7;
  --ink: #11313a;
  --brand: #0f6d75;
  --brand-strong: #0b4e54;
  --accent: #f2a65a;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top right, #dff2ef, var(--bg) 40%, #edf4f8 100%);
  color: var(--ink);
  line-height: 1.6;
}

i.las,
i.lab {
  line-height: 1;
  font-size: 1.3em;
}

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

.site-header {
  --header-h: 94px;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #d9e4e4;
  z-index: 50;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-strong);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-logo {
  width: 84px;
  height: auto;
  aspect-ratio: 612/408;
  object-fit: contain;
}

.brand-text {
  line-height: 1.1;
}

.site-nav {
  display: flex;
  gap: 14px;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.menu-toggle {
  display: none;
}

.menu-toggle i {
  margin-right: 4px;
}

.hero {
  padding: 50px 0 90px;
  background-image: url("../elements/hero.png?v=01");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(248, 252, 250, 0.72), rgba(248, 252, 250, 0.82)), radial-gradient(circle at top, rgba(170, 209, 190, 0.6), transparent 45%), linear-gradient(180deg, #eef6ef 0%, #f8fbfa 100%);
  opacity: 0.5;
  z-index: 0;
}

.hero-inner {
  z-index: 10;
  max-width: 760px;
  text-align: center;
}

.hero-logo {
  width: clamp(170px, 26vw, 270px);
  height: auto;
  aspect-ratio: 612/408;
  object-fit: contain;
  margin: 0 auto 24px;
  filter: drop-shadow(0 10px 22px rgba(15, 109, 117, 0.2));
}

.hero * {
  z-index: 10;
  position: relative;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  margin: 0 0 12px;
}

.hero p {
  font-size: 1.15rem;
  max-width: 740px;
  margin: 0 auto;
}

.hero-actions {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-mail {
  color: var(--brand-strong);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn,
button {
  background: var(--brand);
  color: #fff;
  border: 0;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn:hover,
button:hover {
  background: var(--brand-strong);
}

.section {
  padding: 72px 0;
}

.page-intro {
  max-width: 860px;
  margin: 0 0 22px;
}

.mt-xl {
  margin-top: 48px;
}

.section-soft {
  background: rgba(236, 245, 242, 0.9);
}

.section-online {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(219, 238, 234, 0.36));
}

.section-heading {
  text-align: center;
  margin-bottom: 28px;
}

.section-heading h2,
.narrative-block h2,
.info-banner h2,
.info-copy h3,
.stagger-panel h3 {
  color: #4a8d65;
}

h1 i,
h2 i,
h3 i,
p strong i {
  color: var(--brand);
}

h1 > i,
h2 > i,
h3 > i,
h4 > i,
h5 > i,
h6 > i,
h1 > i + span,
h2 > i + span,
h3 > i + span,
h4 > i + span,
h5 > i + span,
h6 > i + span {
  display: inline-block;
  vertical-align: middle;
}

h1 > i + span,
h2 > i + span,
h3 > i + span,
h4 > i + span,
h5 > i + span,
h6 > i + span {
  margin-left: 8px;
}

.stagger-panel-brand h3 i,
.stagger-panel-brand p strong i {
  color: #fff;
}

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

.card {
  background: var(--card);
  border: 1px solid #dce8e8;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 25px rgba(20, 41, 44, 0.06);
}

.card ul {
  margin: 0;
  padding-left: 18px;
}

.card li {
  margin-bottom: 6px;
}

.card-frosted {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(6px);
}

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

.feature-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #f4faf7);
  border: 1px solid #d8e9e2;
  border-radius: 22px;
  padding: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 34px rgba(16, 54, 58, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 4px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, #4b8b67, #0f6d75);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 4px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #4b8b67, #0f6d75);
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 109, 117, 0.2);
}

.feature-icon i {
  font-size: 1.9rem;
}

.feature-card a {
  margin-top: auto;
  color: #0f5e66;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid #b8d6d6;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
}

.feature-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2vw, 1.95rem);
}

.feature-card p {
  margin: 0;
  font-size: 1.02rem;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #b6d7d7;
  box-shadow: 0 16px 34px rgba(16, 54, 58, 0.14);
}

.feature-card a:hover {
  background: #e8f3f3;
}

.info-stack {
  display: grid;
  gap: 20px;
}

.info-banner,
.info-copy {
  text-align: center;
  padding: 24px 18px;
}

.info-banner a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.info-copy ul {
  margin: 16px auto 0;
  max-width: 760px;
  text-align: left;
}

.narrow {
  max-width: 780px;
}

.center-copy {
  text-align: center;
}

.narrative-block p {
  margin-bottom: 18px;
}

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

.stat-card {
  text-align: center;
}

.stat-card h3 {
  margin: 0 0 6px;
  font-size: 2rem;
  color: #4a8d65;
}

.stagger-panels-wrap {
  overflow: hidden;
}

.stagger-panels {
  display: grid;
  gap: 34px;
}

.stagger-panel {
  padding: 34px;
  border-radius: 22px;
  box-shadow: 0 12px 36px rgba(18, 46, 50, 0.08);
}

.stagger-panel-light {
  background: #eef6f1;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.contact-hours-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: stretch;
}

.stagger-panel-brand {
  background: #4b8b67;
  color: #fff;
}

.stagger-panel-brand h3 {
  color: #fff;
}

.stagger-panel-pale {
  background: #edf7f3;
}

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

.contact-content {
  display: grid;
  gap: 12px;
  align-content: start;
}
.contact-content p {
  margin: 0;
  padding: 0;
}

.policy-box {
  background: #eef6f1;
  border: 1px solid #d7e8df;
  border-radius: 14px;
  padding: 16px;
}

.policy-box h2 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.news-card .news-date {
  margin: 0 0 8px;
  color: #4a8d65;
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 10px;
  align-content: start;
  grid-auto-rows: min-content;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c9d6d6;
  font: inherit;
}

textarea {
  min-height: 120px;
}

.site-footer {
  background: #0d2d32;
  color: #d9f3f1;
  padding: 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 16px;
  align-items: start;
}

.footer-grid a {
  color: #f3cb8a;
  text-decoration: none;
}

.footer-grid h3 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.social-boxes {
  display: grid;
  gap: 10px;
}

.social-box {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(217, 243, 241, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-box strong {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.social-box span {
  color: #b7ddd8;
  font-size: 0.92rem;
}

.social-box i {
  font-size: 1.3em;
}

.social-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 22, 26, 0.62);
  padding: 24px;
  z-index: 99;
}

.modal.is-open {
  display: grid;
  place-items: center;
}

.modal-box {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  width: min(560px, 95%);
  z-index: 100;
}

.modal-actions {
  margin-top: 14px;
}

.modal-close {
  float: right;
  background: #d7e5e8;
  color: #0e2f35;
}

#contact-result.ok {
  color: #0d7f35;
}

#contact-result.error {
  color: #b12e2e;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-grid,
  .contact-grid,
  .contact-hours-grid {
    grid-template-columns: 1fr;
  }
  .stagger-panel-light {
    width: 100%;
  }
  .stagger-panel-brand {
    transform: none;
  }
}
@media (max-width: 700px) {
  .site-header {
    --header-h: 78px;
  }
  .menu-toggle {
    display: inline-block;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 82px;
    right: 4%;
    background: #fff;
    border: 1px solid #dbe8e8;
    border-radius: 10px;
    flex-direction: column;
    padding: 10px;
  }
  .site-nav.is-open {
    display: flex;
  }
  .hero {
    padding: 84px 0 68px;
  }
  .brand-logo {
    width: 56px;
  }
  .brand-text {
    font-size: 1.02rem;
  }
  .hero-logo {
    width: min(220px, 72vw);
  }
  .cards,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stagger-panel {
    padding: 24px;
  }
}