:root {
  --bg-1: #e7f4ef;
  --bg-2: #d9eee7;
  --surface: #ffffff;
  --surface-strong: #f6fffb;
  --ink: #0f1c28;
  --muted: #3c5662;
  --line: #c8e5dc;
  --accent: #1f9e81;
  --accent-strong: #0c6d56;
  --accent-soft: #dff6ee;
  --warm: #f5a45b;
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 20px 40px rgba(16, 47, 39, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(145deg, var(--bg-1) 0%, var(--bg-2) 52%, #d4e9e1 100%);
  line-height: 1.55;
}

.decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(860px 380px at 85% 4%, rgba(36, 168, 136, 0.24), transparent 66%),
    radial-gradient(700px 360px at -3% 28%, rgba(245, 164, 91, 0.2), transparent 68%),
    radial-gradient(560px 300px at 74% 92%, rgba(36, 168, 136, 0.13), transparent 72%);
}

.site-header,
main,
.site-footer {
  width: min(1080px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.site-header {
  padding: 1.1rem 0 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(1.05rem, 1.2vw, 1.22rem);
  font-weight: 700;
  color: #0c2532;
  letter-spacing: 0.01em;
}

.top-nav {
  display: inline-flex;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(176, 216, 203, 0.86);
  padding: 0.3rem;
  border-radius: var(--radius-pill);
}

.top-nav a {
  text-decoration: none;
  color: #2e4b58;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.4rem 0.72rem;
  border-radius: var(--radius-pill);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.top-nav a:hover {
  background: rgba(255, 255, 255, 0.86);
  color: #102f3c;
}

.hero {
  margin-top: 0.9rem;
  padding: clamp(1.1rem, 3.4vw, 1.9rem);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.93) 0%, rgba(245, 255, 250, 0.95) 56%, rgba(238, 251, 245, 0.98) 100%);
  border: 1px solid rgba(173, 213, 198, 0.92);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.85fr);
  gap: 1rem;
  align-items: stretch;
}

.hero-main {
  border-radius: 22px;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(200, 229, 220, 0.84);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: #406570;
  font-weight: 800;
}

h1 {
  margin: 0.7rem 0 0.5rem;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(2.1rem, 7.2vw, 4.1rem);
  line-height: 0.98;
  font-weight: 700;
  color: #0d2533;
}

.lead {
  margin: 0;
  max-width: 40ch;
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  color: #2d4b58;
}

.hero-actions {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 2.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.94rem;
  font-weight: 800;
  padding: 0.6rem 1.05rem;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0f9f80 0%, #088165 100%);
  box-shadow: 0 8px 16px rgba(12, 123, 96, 0.2);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(12, 123, 96, 0.24);
}

.button-secondary {
  color: #0e6852;
  background: #ffffff;
  border: 1px solid #b8dece;
}

.button-secondary:hover {
  transform: translateY(-2px);
  background: #f7fffb;
}

.hero-meta {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(155, 205, 188, 0.9);
  background: linear-gradient(155deg, #0f8c70 0%, #0f6f59 100%);
  color: #ebfffa;
  padding: 1rem;
  overflow: hidden;
}

.hero-meta::before,
.hero-meta::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-meta::before {
  width: 180px;
  height: 180px;
  right: -90px;
  top: -80px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-meta::after {
  width: 130px;
  height: 130px;
  left: -44px;
  bottom: -56px;
  background: rgba(245, 164, 91, 0.22);
}

.meta-item {
  position: relative;
  z-index: 1;
  padding: 0.75rem 0.2rem;
  border-bottom: 1px solid rgba(231, 255, 247, 0.23);
}

.meta-item:last-child {
  border-bottom: none;
}

.meta-key {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.84;
  font-weight: 700;
}

.meta-value {
  display: block;
  margin-top: 0.24rem;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.35;
  font-weight: 700;
  color: #ffffff;
}

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

.service-card {
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 255, 251, 0.94) 100%);
  border: 1px solid #c8e5dc;
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: 0 12px 20px rgba(15, 42, 36, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 24px rgba(15, 42, 36, 0.1);
}

.service-head {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  flex-wrap: wrap;
}

.num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 12px;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0f725a;
  background: var(--accent-soft);
  border: 1px solid #bde5d7;
}

.service-card h2 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.3;
}

.service-card p {
  margin: 0.54rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  min-height: 4.3rem;
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.16rem 0.48rem;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0f6e57;
  background: #e2f8ef;
  border: 1px solid #bee7d7;
}

.service-link {
  margin-top: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2.45rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 800;
  color: #ffffff;
  background: #13896c;
  padding: 0.45rem 0.76rem;
  transition: background-color 0.2s ease;
}

.service-link:hover {
  background: #0d7258;
}

.service-card-muted {
  background: linear-gradient(110deg, rgba(245, 252, 248, 0.98) 0%, rgba(238, 248, 243, 0.97) 100%);
}

.soon {
  margin-top: 0.9rem;
  display: inline-flex;
  color: #5b7a70;
  font-size: 0.86rem;
  font-weight: 700;
}

.closing {
  margin-top: 1.05rem;
  padding: 1.2rem 1.25rem;
  border-radius: 20px;
  background: linear-gradient(112deg, #13313f 0%, #163947 55%, #1a4353 100%);
  border: 1px solid #235163;
  color: #ffffff;
}

.closing p {
  margin: 0;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.24rem);
  line-height: 1.45;
}

.closing-actions {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.closing-actions a {
  text-decoration: none;
  color: #e8fff8;
  font-size: 0.84rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(229, 255, 249, 0.24);
  border-radius: var(--radius-pill);
  padding: 0.36rem 0.66rem;
}

.closing-actions a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.site-footer {
  margin-top: 1.65rem;
  margin-bottom: 1.35rem;
  padding-top: 0.72rem;
}

.site-footer p {
  margin: 0;
  color: #355967;
  font-size: 0.9rem;
  font-weight: 700;
}

a:focus-visible,
.button:focus-visible,
.service-link:focus-visible {
  outline: 3px solid #1d8e73;
  outline-offset: 2px;
  border-radius: 8px;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header,
  main,
  .site-footer {
    width: min(100%, calc(100% - 1.1rem));
  }

  .top-nav {
    display: none;
  }

  .hero-main {
    padding: 0.95rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .service-card p {
    min-height: auto;
  }

  .service-link {
    width: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero,
  .service-card,
  .closing {
    animation: rise 0.58s ease both;
  }

  .service-card:nth-child(2) {
    animation-delay: 0.07s;
  }

  .service-card:nth-child(3) {
    animation-delay: 0.14s;
  }

  .closing {
    animation-delay: 0.2s;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
