
:root {
  --bg: #f3f6f4;
  --ink: #10251d;
  --muted: #51655d;
  --accent: #1f6b4e;
  --accent-2: #2d8b66;
  --deep: #0f2e24;
  --card: #ffffff;
  --line: rgba(16, 37, 29, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: Manrope, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, #f8fbf9 0, #f1f5f2 48%, #edf2ef 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.top-ribbon {
  background: linear-gradient(90deg, #0f2e24, #174434);
  color: #dcf2e7;
  font-size: 0.86rem;
}

.ribbon-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
}

.ribbon-inner p {
  margin: 0;
}

.ribbon-inner a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(8px);
  background: rgba(244, 248, 246, 0.72);
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}

.site-header.scrolled {
  background: rgba(252, 255, 253, 0.96);
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(5, 20, 14, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.logo {
  height: 42px;
}

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

.nav a {
  text-decoration: none;
  color: #20352d;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav a.active {
  color: var(--accent);
}

.btn {
  display: inline-block;
  border: none;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 26px rgba(23, 78, 57, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(23, 78, 57, 0.26);
}

.btn.nav-btn {
  padding-inline: 1.05rem;
}

.btn.ghost-light {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 0.4rem 0.7rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 78vh;
  overflow: clip;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 85%, rgba(51, 126, 94, 0.2), transparent 45%),
    linear-gradient(95deg, rgba(8, 21, 16, 0.78), rgba(8, 21, 16, 0.44) 48%, rgba(8, 21, 16, 0.2));
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  gap: 1.2rem;
  align-items: center;
  padding: 3.2rem 0;
}

.hero-copy {
  color: #f4fff9;
  max-width: 760px;
}

.kicker {
  margin: 0 0 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.76rem;
  font-weight: 800;
  color: #a6dfc2;
}

.kicker.dark {
  color: var(--accent);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.12;
}

h1,
h2 {
  font-family: "DM Serif Display", serif;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 4vw, 3.75rem);
  margin-bottom: 0.75rem;
}

.hero-copy p {
  max-width: 64ch;
  margin: 0 0 1.2rem;
  color: #e3f3ea;
}

.hero-actions {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
}

.hero-points li {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #f3fff8;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-radius: 20px;
  padding: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 45px rgba(5, 24, 17, 0.28);
}

.hero-panel p {
  margin: 0.4rem 0 1rem;
  color: var(--muted);
}

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

.metrics div {
  background: #f4faf7;
  border: 1px solid #d6e8de;
  border-radius: 12px;
  text-align: center;
  padding: 0.5rem 0.3rem;
}

.metrics strong {
  display: block;
  font-size: 1rem;
  color: #143628;
}

.metrics span {
  font-size: 0.72rem;
  color: #5b7067;
}

.section {
  padding: 4.3rem 0;
}

.shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(248, 252, 249, 0.76));
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.7rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #102920;
}

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

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

.service-card,
.detail-card {
  background: var(--card);
  border-radius: 18px;
  padding: 1.2rem;
  border: 1px solid #dbe9e1;
  box-shadow: 0 16px 34px rgba(17, 48, 36, 0.08);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  margin-bottom: 0.9rem;
}

.service-card h3,
.detail-card h3 {
  margin-bottom: 0.45rem;
}

.service-card p,
.detail-card p {
  margin: 0;
  color: var(--muted);
}

.gallery-band {
  background: linear-gradient(135deg, #103428, #0e2b21 60%, #184c39);
}

.section-head.light h2,
.section-head.light .kicker {
  color: #edfff6;
}

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

.gallery-item {
  border-radius: 16px;
  height: 260px;
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 34px rgba(2, 16, 11, 0.28);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.split-copy p {
  color: var(--muted);
}

.check-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.check-list li {
  margin-bottom: 0.4rem;
}

.testimonial-stack {
  display: grid;
  gap: 0.9rem;
}

.testimonial-stack blockquote {
  margin: 0;
  background: #ffffff;
  border: 1px solid #dbe7e0;
  border-radius: 16px;
  padding: 1.05rem;
  box-shadow: 0 14px 26px rgba(17, 48, 36, 0.08);
}

.testimonial-stack cite {
  display: block;
  margin-top: 0.8rem;
  color: #3b5248;
  font-style: normal;
  font-weight: 700;
}

.cta-strip {
  background: linear-gradient(135deg, #194c3a, #1f664d);
  color: #f2fff8;
  padding: 2.1rem 0;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.inner-hero {
  position: relative;
  min-height: 46vh;
}

.inner-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 21, 16, 0.74), rgba(8, 21, 16, 0.34));
}

.inner-copy {
  position: relative;
  z-index: 2;
  min-height: 46vh;
  display: grid;
  align-content: center;
  color: #effff6;
}

.inner-copy h1 {
  max-width: 20ch;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

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

.contact-card,
.info-card {
  background: #fff;
  border: 1px solid #dbe9e1;
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 18px 34px rgba(17, 48, 36, 0.08);
}

.contact-card label {
  display: block;
  margin: 0.65rem 0 0.35rem;
  font-weight: 700;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 1px solid #cadfd4;
  border-radius: 12px;
  padding: 0.72rem 0.78rem;
  font: inherit;
}

.contact-card .btn {
  margin-top: 0.9rem;
}

.form-note {
  color: #60786d;
  font-size: 0.86rem;
  margin-top: 0.65rem;
}

.info-card ul {
  margin: 0.85rem 0;
  padding-left: 1rem;
}

.info-card a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.info-image {
  border-radius: 12px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.site-footer {
  background: #0e261e;
  color: #d7ece2;
  padding: 2.2rem 0 1.1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1rem;
}

.footer-grid h4 {
  margin-bottom: 0.5rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0.23rem 0;
  color: #d7ece2;
  text-decoration: none;
}

.footer-grid a:hover {
  color: #ffffff;
}

.footer-logo {
  margin-bottom: 0.45rem;
}

.copyright {
  margin: 1.3rem 0 0;
  text-align: center;
  color: #a9c7b9;
  font-size: 0.82rem;
}

.reveal-up {
  opacity: 1;
  transform: none;
}

.js .reveal-up {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.js .reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-grid {
    min-height: 70vh;
  }

  .service-cards,
  .gallery-grid,
  .service-grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .ribbon-inner {
    flex-direction: column;
    gap: 0.15rem;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    padding: 0.85rem;
    background: #ffffff;
    border: 1px solid #d7e7de;
    border-radius: 12px;
    box-shadow: 0 18px 30px rgba(8, 24, 17, 0.12);
  }

  .nav.open {
    display: flex;
  }

  .nav .btn {
    text-align: center;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-grid {
    min-height: 82vh;
    padding: 2.6rem 0;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 9vw, 2.3rem);
  }

  .service-cards,
  .service-grid-2,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

