﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ethos-ink: #1a1d23;
  --ethos-forest: #0e4b33;
  --ethos-green: #1f6a47;
  --ethos-sage: #95a58f;
  --ethos-mint: #dce6db;
  --ethos-cream: #f6f8f5;
  --ethos-white: #ffffff;
  --ethos-text: #253033;
  --ethos-muted: #5e6b6f;
  --ethos-border: #dde3df;
  --ethos-shadow: 0 20px 45px rgba(14, 75, 51, 0.15);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--ethos-text);
  background: linear-gradient(180deg, #f8fbf8 0%, #f2f7f3 100%);
  font-size: 15px;
  line-height: 1.55;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 10000;
  background: var(--ethos-forest);
  color: var(--ethos-white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
}

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

.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-label {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--ethos-mint);
  color: var(--ethos-forest);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.section-title {
  margin: 1rem 0 0.75rem;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.66rem, 3.2vw, 2.35rem);
  line-height: 1.12;
  color: var(--ethos-ink);
}

.section-subtitle {
  max-width: 760px;
  color: var(--ethos-muted);
  font-size: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(14, 25, 18, 0.95);
  box-shadow: 0 12px 30px rgba(11, 20, 14, 0.34);
  backdrop-filter: blur(9px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 1rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--ethos-white);
  letter-spacing: 0.02em;
}

.logo-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

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

.desktop-nav a,
.drop-btn {
  color: rgba(255, 255, 255, 0.88);
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.62rem 0.86rem;
  border-radius: var(--radius-sm);
  transition: color 160ms ease, background-color 160ms ease;
}

.desktop-nav a:hover,
.drop-btn:hover,
.desktop-nav a[aria-current='page'] {
  color: var(--ethos-white);
  background: rgba(255, 255, 255, 0.1);
}

.services-dropdown {
  position: relative;
}

.drop-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  width: 280px;
  background: var(--ethos-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--ethos-border);
  box-shadow: var(--ethos-shadow);
  display: grid;
  gap: 0.2rem;
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 170ms ease;
}

.services-dropdown:hover .dropdown-menu,
.services-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  color: var(--ethos-text);
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
}

.dropdown-menu a:hover {
  background: var(--ethos-cream);
  color: var(--ethos-forest);
}

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

.call-link {
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Manrope', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.3rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--ethos-forest), var(--ethos-green));
  color: var(--ethos-white);
  box-shadow: 0 10px 24px rgba(31, 106, 71, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0b412d, #1c5b3d);
}

.btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--ethos-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-light:hover {
  background: var(--ethos-white);
  color: var(--ethos-ink);
}

.btn-ghost {
  background: var(--ethos-white);
  color: var(--ethos-forest);
  border: 1px solid var(--ethos-border);
}

.mobile-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--ethos-white);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  line-height: 1;
}

.mobile-menu {
  display: none;
  background: #0f2218;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu a,
.mobile-menu details {
  display: block;
  color: rgba(255, 255, 255, 0.93);
  padding: 0.82rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
}

.mobile-menu summary {
  list-style: none;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
}

.mobile-menu details a {
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero {
  position: relative;
  min-height: 96vh;
  padding-top: 84px;
  color: var(--ethos-white);
  display: flex;
  align-items: center;
  overflow: clip;
}

.hero--small {
  min-height: 58vh;
}

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

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 19, 14, 0.84), rgba(10, 19, 14, 0.62) 45%, rgba(12, 45, 30, 0.48));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: rise 750ms ease 80ms both;
}

.hero-title {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.95rem, 4.8vw, 3.3rem);
  line-height: 1.06;
}

.hero-text {
  margin-top: 1.1rem;
  font-size: clamp(0.98rem, 1.65vw, 1.18rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  margin-top: 1.8rem;
}

.hero-metrics {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(600px, 100%);
}

.metric {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  text-align: center;
}

.metric strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 1.42rem;
}

.metric span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.info-strip {
  background: linear-gradient(90deg, #0f4c34, #1f6b47);
  color: var(--ethos-white);
  padding: 0.8rem 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
  font-size: 0.95rem;
}

.info-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  justify-content: center;
}

.card-grid {
  display: grid;
  gap: 1.2rem;
}

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

.card-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  background: var(--ethos-white);
  border: 1px solid var(--ethos-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 34px rgba(16, 42, 30, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card > img {
  display: block;
  width: 100% !important;
  height: 240px !important;
  max-height: 240px;
  object-fit: cover !important;
  object-position: center;
}
.card-content {
  padding: 1.2rem;
}

.card h3,
.card h4 {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ethos-ink);
}

.card p {
  margin: 0.72rem 0 0;
  color: var(--ethos-muted);
}

.card-link {
  display: inline-flex;
  margin-top: 0.9rem;
  color: var(--ethos-forest);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

.photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ethos-border);
  box-shadow: var(--ethos-shadow);
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.two-col {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 2rem;
  align-items: center;
}

.standards-layout {
  align-items: stretch;
}

.check-grid {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.66rem 1rem;
}

.check-grid li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--ethos-text);
}

.check-grid li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ethos-forest);
  font-weight: 700;
}

.complete-list .section-title {
  max-width: 980px;
}

.service-list-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
  border: 1px solid #d6e2db;
  box-shadow: 0 16px 38px rgba(15, 43, 32, 0.08);
}

.service-list-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1rem;
}

.service-list-grid li {
  position: relative;
  padding: 0.82rem 0.9rem 0.82rem 2rem;
  border: 1px solid #dce7e1;
  border-radius: 12px;
  background: #ffffff;
  color: #223236;
}

.service-list-grid li::before {
  content: '';
  position: absolute;
  left: 0.78rem;
  top: 50%;
  width: 0.62rem;
  height: 0.62rem;
  margin-top: -0.31rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f5c3d, #1a7a53);
  box-shadow: 0 0 0 4px rgba(26, 122, 83, 0.12);
}

.bullets {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.66rem;
}

.bullets li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ethos-text);
}

.bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ethos-forest);
  font-size: 1.2rem;
  line-height: 1;
}

.process-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f6faf7 100%);
  border: 1px solid var(--ethos-border);
}

.step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--ethos-forest);
  color: var(--ethos-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.page-hero {
  padding: 7.8rem 0 3.6rem;
}

.breadcrumb {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.breadcrumb a:hover {
  color: var(--ethos-white);
}

.faq-wrap {
  border-radius: var(--radius-lg);
  border: 1px solid var(--ethos-border);
  background: var(--ethos-white);
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--ethos-border);
}

.faq-btn {
  width: 100%;
  border: none;
  background: transparent;
  padding: 1rem 1.1rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--ethos-ink);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-panel p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: var(--ethos-muted);
}

.faq-item.is-open .faq-panel {
  max-height: 180px;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-icon {
  transition: transform 180ms ease;
}

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

.gallery-grid img {
  width: 100% !important;
  height: 245px !important;
  object-fit: cover !important;
  object-position: center;
  border-radius: 14px;
  border: 1px solid var(--ethos-border);
  box-shadow: 0 8px 22px rgba(15, 38, 28, 0.08);
  background: #e9efeb;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-grid img:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 38, 28, 0.12);
}

.embed-shell {
  border: 1px solid var(--ethos-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 680px;
  background: var(--ethos-white);
}

.embed-shell iframe {
  width: 100%;
  border: 0;
  min-height: 680px;
}

.contact-card {
  background: var(--ethos-white);
  border: 1px solid var(--ethos-border);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.contact-line {
  display: grid;
  gap: 0.2rem;
}

.contact-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ethos-muted);
}

.contact-value {
  font-weight: 700;
  color: var(--ethos-ink);
}

.cta-band {
  background: radial-gradient(circle at 20% 25%, #2a7c55 0%, #0d4a32 53%, #0a3222 100%);
  color: var(--ethos-white);
  text-align: center;
}

.cta-band .section-title {
  color: var(--ethos-white);
}

.cta-band .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.review-widget {
  border-radius: var(--radius-lg);
  border: 1px solid var(--ethos-border);
  overflow: hidden;
  background: var(--ethos-white);
}

.areas-band {
  background: linear-gradient(150deg, #e6f2eb 0%, #d9ece1 55%, #cfe6d8 100%);
  color: var(--ethos-ink);
}

.areas-band .section-label {
  background: linear-gradient(135deg, #0f5c3d, #1a7a53);
  color: var(--ethos-white);
}

.areas-band .section-title {
  color: var(--ethos-ink);
}

.areas-band .section-subtitle {
  color: var(--ethos-muted);
  margin-inline: auto;
}

.areas-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

.areas-card {
  background: var(--ethos-white);
  border: 1px solid #bfd7c8;
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  box-shadow: 0 14px 34px rgba(13, 63, 42, 0.1);
}

.areas-card h3 {
  margin: 0 0 0.9rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1.45rem;
  color: var(--ethos-ink);
}

.area-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.66rem;
}

.area-chip {
  display: block;
  background: #eef6f1;
  border: 1px solid #d6e6dc;
  border-radius: 10px;
  padding: 0.56rem 0.7rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  color: #1d2f28;
}

.areas-note {
  margin: 1rem 0 0;
  color: var(--ethos-text);
}

.areas-note a {
  color: var(--ethos-forest);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  border: 1px solid #bfd7c8;
  box-shadow: 0 14px 34px rgba(13, 63, 42, 0.1);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  background: #132118;
  color: rgba(255, 255, 255, 0.86);
  padding: 3.4rem 0 1.3rem;
}

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

.footer-brand img {
  width: 90px;
}

.footer-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.62);
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.footer-list a:hover {
  color: var(--ethos-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 1.7rem;
  padding-top: 1rem;
  font-size: 0.86rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 460ms ease, transform 460ms ease;
}

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

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

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

@media (max-width: 1080px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    min-height: 84vh;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .card-grid.cols-4,
  .areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid.cols-3,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .section {
    padding: 3.8rem 0;
  }

  .hero {
    min-height: 74vh;
  }

  .hero-metrics,
  .info-grid,
  .card-grid.cols-2,
  .process-grid,
  .card-grid.cols-3,
  .card-grid.cols-4,
  .check-grid,
  .area-chip-grid,
  .areas-grid,
  .service-list-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .info-pill {
    justify-content: flex-start;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}
@media (max-width: 720px) {
  .card > img {
    height: 220px !important;
    max-height: 220px;
  }

  .gallery-grid img {
    height: 210px !important;
  }
}
