@import url('https://fonts.bunny.net/css?family=sora:400,500,600,700,800|manrope:400,500,700');

:root {
  --sp-bg: #f4f7f3;
  --sp-surface: #ffffff;
  --sp-ink: #112318;
  --sp-muted: #4f6355;
  --sp-line: #dce6dd;
  --sp-brand: #0f8f61;
  --sp-brand-strong: #0a6a48;
  --sp-accent: #f4b942;
  --sp-shadow: 0 20px 40px rgba(20, 38, 28, 0.09);
  --sp-radius-lg: 24px;
  --sp-radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 20% 10%, #eef8f1 0%, var(--sp-bg) 42%, #edf1ec 100%);
  color: var(--sp-ink);
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  min-height: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: 'Sora', 'Segoe UI', sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
}

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

.sp-bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(4px);
  z-index: 0;
  pointer-events: none;
}

.sp-bg-orb--one {
  width: 360px;
  height: 360px;
  top: -80px;
  right: -100px;
  background: radial-gradient(circle at 30% 30%, rgba(15, 143, 97, 0.32), rgba(15, 143, 97, 0));
}

.sp-bg-orb--two {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -120px;
  background: radial-gradient(circle at 60% 40%, rgba(244, 185, 66, 0.22), rgba(244, 185, 66, 0));
}

.sp-nav,
.sp-hero,
.sp-main,
.sp-footer {
  position: relative;
  z-index: 1;
}

.sp-nav {
  padding: 1.2rem 1.5rem;
}

.sp-nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(220, 230, 221, 0.9);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  padding: 0.75rem 1rem;
}

.sp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.sp-brand__badge {
  width: 2rem;
  height: 2rem;
  border-radius: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--sp-brand), var(--sp-brand-strong));
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.sp-brand__label {
  font-weight: 700;
  font-size: 0.95rem;
}

.sp-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 0.35rem;
}

.sp-nav__link {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--sp-muted);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease;
}

.sp-nav__link:hover,
.sp-nav__item.is-active .sp-nav__link {
  background: #eaf4ec;
  color: var(--sp-brand-strong);
}

.sp-nav__toggle {
  display: none;
  border: 1px solid var(--sp-line);
  background: #fff;
  color: var(--sp-ink);
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  font-family: inherit;
  font-weight: 700;
}

.sp-hero {
  max-width: 1160px;
  margin: 0.7rem auto 0;
  padding: 0 1.5rem;
}

.sp-hero__inner {
  border-radius: var(--sp-radius-lg);
  padding: clamp(1.4rem, 3.2vw, 3rem);
  background:
    linear-gradient(140deg, rgba(15, 143, 97, 0.9), rgba(15, 143, 97, 0.6)),
    linear-gradient(35deg, #2f5d46, #214537);
  color: #effff6;
  box-shadow: var(--sp-shadow);
}

.sp-eyebrow {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #d9fae9;
}

.sp-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0.8rem;
  max-width: 20ch;
}

.sp-lead {
  margin: 0;
  color: #e6f6ee;
  max-width: 54ch;
  font-size: 1.05rem;
}

.sp-main {
  max-width: 1160px;
  margin: 1.5rem auto 3rem;
  padding: 0 1.5rem;
}

.sp-breadcrumb {
  margin-bottom: 1rem;
}

.sp-breadcrumb__list {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  color: #56705f;
  font-size: 0.85rem;
}

.sp-breadcrumb__item::after {
  content: '/';
  margin-left: 0.5rem;
  color: #92a99a;
}

.sp-breadcrumb__item:last-child::after {
  content: '';
  margin: 0;
}

.sp-content {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #e2ebe3;
  border-radius: var(--sp-radius-lg);
  padding: clamp(1rem, 2.5vw, 2rem);
  box-shadow: 0 14px 30px rgba(25, 44, 35, 0.06);
}

.wm-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.wm-card {
  background: var(--sp-surface);
  border: 1px solid var(--sp-line);
  border-radius: var(--sp-radius-md);
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(29, 50, 38, 0.08);
  transform: translateY(12px);
  opacity: 0;
  transition: transform 450ms cubic-bezier(0.23, 1, 0.32, 1), opacity 350ms ease;
}

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

.wm-card__image-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #d8e6db;
}

.wm-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wm-card__body {
  padding: 1rem;
}

.wm-card__type {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sp-brand);
  font-weight: 700;
}

.wm-card__title {
  margin: 0.4rem 0;
  font-size: 1.2rem;
}

.wm-card__address,
.wm-card__description {
  margin: 0.35rem 0;
  color: var(--sp-muted);
}

.wm-meta {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.wm-meta__item {
  font-size: 0.8rem;
  font-weight: 700;
  color: #2f4d3b;
  padding: 0.3rem 0.55rem;
  background: #edf5ef;
  border-radius: 999px;
}

.sp-footer {
  border-top: 1px solid rgba(156, 176, 162, 0.3);
  padding: 2rem 1.5rem 2.4rem;
}

.sp-footer__inner {
  max-width: 1160px;
  margin: 0 auto;
}

.sp-footer__title {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
}

.sp-footer__text {
  margin: 0.35rem 0 0;
  color: var(--sp-muted);
}

@media (max-width: 900px) {
  .sp-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .sp-nav__list {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    top: calc(100% + 0.4rem);
    background: #fff;
    border: 1px solid var(--sp-line);
    border-radius: 1rem;
    box-shadow: var(--sp-shadow);
    display: none;
    flex-direction: column;
    padding: 0.4rem;
    z-index: 20;
  }

  .sp-nav__list.is-open {
    display: flex;
  }

  .sp-nav__link {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .sp-nav,
  .sp-hero,
  .sp-main,
  .sp-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sp-hero__inner,
  .sp-content {
    border-radius: 18px;
  }
}
