@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Work+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #f4f5f2;
  --surface: #ffffff;
  --surface-muted: #eef0ea;
  --text: #1f2621;
  --text-soft: #55615a;
  --brand: #1f6a4f;
  --brand-dark: #124433;
  --accent: #c27a1f;
  --line: #d8ddd6;
  --radius: 16px;
  --shadow: 0 12px 32px rgba(24, 35, 28, 0.12);
  --container: min(1120px, 92vw);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: 'Work Sans', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 80% -10%, #d8ebe2 0%, transparent 42%),
    radial-gradient(circle at 10% 0%, #f0dfc8 0%, transparent 35%),
    var(--bg);
  line-height: 1.65;
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

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

.skip-link:focus {
  left: 12px;
  top: 12px;
  background: #000;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 200;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 245, 242, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(17, 38, 27, 0.09);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
}

.brand-logo {
  width: 146px;
  height: auto;
}

.brand-name {
  display: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--brand), #2f8d67);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-nav a {
  font-weight: 600;
  color: var(--text-soft);
  transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--brand-dark);
}

.btn,
button.btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), #2c8b65);
  color: #fff;
  box-shadow: 0 10px 22px rgba(31, 106, 79, 0.3);
}

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

.main-nav .btn-primary,
.main-nav .btn-primary:hover,
.main-nav .btn-primary:focus-visible {
  color: #fff;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 10px;
  border-radius: 10px;
}

.hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: center;
  overflow: clip;
  color: #fff;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(4, 14, 10, 0.82) 0%, rgba(7, 29, 20, 0.58) 45%, rgba(23, 44, 34, 0.26) 100%);
  z-index: -1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-content {
  max-width: 660px;
  padding: 96px 0;
}

.eyebrow {
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  color: #e7f5ee;
}

h1,
h2,
h3 {
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

section {
  padding: 72px 0;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card p {
  color: var(--text-soft);
}

.kpi {
  font-family: 'Sora', sans-serif;
  font-size: 2.2rem;
  color: var(--brand-dark);
}

.media-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  color: var(--text-soft);
}

.page-hero {
  position: relative;
  padding: 110px 0 50px;
  background-image: linear-gradient(115deg, rgba(4, 14, 10, 0.8) 0%, rgba(7, 29, 20, 0.55) 45%, rgba(23, 44, 34, 0.42) 100%), var(--hero-image, url('https://images.unsplash.com/photo-1429041966141-44d228a42775?auto=format&fit=crop&w=1920&q=80'));
  background-size: cover;
  background-position: center;
  color: #fff;
}

.breadcrumb {
  color: rgba(231, 245, 238, 0.92);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.page-hero p {
  color: rgba(231, 245, 238, 0.92);
}

.page-hero a {
  color: #fff;
}

.site-footer {
  background: #17231e;
  color: #eaf3ed;
  padding-top: 60px;
}

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

.site-footer a {
  color: #d3e6dc;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer-logo {
  width: 176px;
  height: auto;
}

.footer-bottom {
  margin-top: 28px;
  border-top: 1px solid rgba(234, 243, 237, 0.2);
  padding: 20px 0;
  font-size: 0.9rem;
  color: #b2c5ba;
}

.footer-bottom-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.map-frame {
  margin-top: 16px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}

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

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
  font-weight: 600;
}

.form-status.success {
  display: block;
  color: #0f4f3a;
  background: #d8f1e8;
  border: 1px solid #9fd1bd;
}

.form-status.error {
  display: block;
  color: #7a1b1b;
  background: #ffe3e3;
  border: 1px solid #efb4b4;
}

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

textarea {
  min-height: 130px;
  resize: vertical;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 94vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  z-index: 140;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-custom-panel {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.cookie-custom-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.cookie-custom-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.badge {
  display: inline-block;
  border: 1px solid #b7d0c3;
  color: #1b5d45;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 14px 4vw 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero-content {
    padding: 84px 0;
  }

  .brand-logo,
  .footer-logo {
    width: 132px;
  }
}
