:root {
  --v2-bg: #f7f4ea;
  --v2-bg-deep: #1a3527;
  --v2-bg-surface: #fffdf6;
  --v2-ink: #1e2a22;
  --v2-ink-soft: #4f5f54;
  --v2-border: #d6d0be;
  --v2-primary: #0a6e4e;
  --v2-primary-strong: #08553d;
  --v2-accent: #ee7f1f;
  --v2-accent-strong: #cf6411;
  --v2-shell: 1160px;
  --v2-radius: 16px;
  --v2-shadow: 0 22px 40px rgba(13, 33, 23, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: 'Work Sans', 'Segoe UI', sans-serif;
  color: var(--v2-ink);
  background:
    radial-gradient(circle at top right, rgba(10, 110, 78, 0.16), transparent 40%),
    radial-gradient(circle at left center, rgba(238, 127, 31, 0.12), transparent 48%),
    var(--v2-bg);
  line-height: 1.6;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--v2-accent);
  outline-offset: 2px;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-weight: 400;
  color: #14271d;
}

p,
ul {
  margin: 0;
}

ul {
  padding-left: 18px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.v2-skip-link {
  position: absolute;
  left: 10px;
  top: -48px;
  z-index: 999;
  background: var(--v2-accent);
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
  border-radius: 10px;
}

.v2-skip-link:focus {
  top: 10px;
}

.v2-shell {
  width: min(var(--v2-shell), 92%);
  margin: 0 auto;
}

.v2-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(10px);
  background: rgba(247, 244, 234, 0.96);
  border-bottom: 1px solid rgba(23, 44, 33, 0.12);
  box-shadow: 0 8px 22px rgba(20, 39, 29, 0.08);
}

.v2-header-inner {
  width: min(var(--v2-shell), 94%);
  margin: 0 auto;
  min-height: 86px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.v2-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  max-width: 320px;
}

.v2-brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(19, 43, 31, 0.18);
}

.v2-brand-name {
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
}

.v2-primary-nav {
  min-width: 0;
}

.v2-primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4px;
}

.v2-primary-nav li {
  flex: 0 0 auto;
}

.v2-primary-nav a {
  display: block;
  padding: 10px 11px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  border-radius: 999px;
  white-space: nowrap;
}

.v2-primary-nav a[aria-current='page'],
.v2-primary-nav a:hover {
  background: rgba(10, 110, 78, 0.12);
  color: var(--v2-primary-strong);
}

.v2-header-tools {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.v2-nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--v2-border);
  background: var(--v2-bg-surface);
  border-radius: 12px;
  padding: 8px;
  cursor: pointer;
  gap: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.v2-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--v2-ink);
}

.v2-nav-toggle[aria-expanded='true'] {
  background: #e8f1eb;
  border-color: rgba(10, 110, 78, 0.4);
}

.v2-header-cta,
.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.v2-header-cta,
.v2-btn-primary {
  background: var(--v2-primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(10, 110, 78, 0.28);
}

.v2-header-cta {
  white-space: nowrap;
}

.v2-header-cta:hover,
.v2-btn-primary:hover {
  background: var(--v2-primary-strong);
  transform: translateY(-1px);
}

.v2-header-cta-compact {
  display: none;
}

.v2-btn-secondary {
  background: #fff;
  color: var(--v2-primary-strong);
  border: 1px solid rgba(10, 110, 78, 0.34);
}

.v2-btn-secondary:hover {
  box-shadow: 0 8px 18px rgba(13, 33, 23, 0.12);
}

.v2-btn-accent {
  background: var(--v2-accent);
  color: #fff;
}

.v2-btn-accent:hover {
  background: var(--v2-accent-strong);
}

.v2-btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.v2-section {
  padding: 72px 0;
}

.v2-section + .v2-section {
  border-top: 1px solid rgba(31, 54, 42, 0.12);
}

.v2-surface {
  background: var(--v2-bg-surface);
}

.v2-hero {
  min-height: 74vh;
  display: grid;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  isolation: isolate;
}

.v2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(9, 30, 20, 0.78) 28%, rgba(9, 30, 20, 0.2) 100%);
  z-index: -1;
}

.v2-hero-content {
  width: min(var(--v2-shell), 92%);
  margin: 0 auto;
  color: #fff;
  padding: 96px 0;
}

.v2-hero-content h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  max-width: 760px;
}

.v2-hero-content p {
  margin-top: 18px;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  max-width: 620px;
}

.v2-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.v2-card {
  background: #fff;
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  overflow: hidden;
  box-shadow: var(--v2-shadow);
}

.v2-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.v2-card-body {
  padding: 16px;
}

.v2-card h3 {
  font-size: 1.9rem;
}

.v2-kicker {
  color: var(--v2-primary-strong);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.77rem;
}

.v2-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.v2-intro {
  color: var(--v2-ink-soft);
  max-width: 760px;
  margin-top: 10px;
}

.v2-list {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.v2-list li {
  background: rgba(10, 110, 78, 0.08);
  border: 1px solid rgba(10, 110, 78, 0.16);
  padding: 10px 12px;
  border-radius: 10px;
  list-style: none;
}

.v2-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 26px;
  align-items: start;
}

.v2-panel {
  background: #fff;
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  padding: 24px;
  box-shadow: var(--v2-shadow);
}

.v2-panel + .v2-panel {
  margin-top: 16px;
}

.v2-panel h3 {
  font-size: 1.9rem;
}

.v2-panel p,
.v2-panel li {
  margin-top: 10px;
  color: var(--v2-ink-soft);
}

.v2-map {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: var(--v2-radius);
}

.v2-footer {
  background: var(--v2-bg-deep);
  color: #e8f3ec;
  padding: 42px 0 24px;
  margin-bottom: 84px;
}

.v2-footer a {
  color: #c7f3de;
}

.v2-footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.v2-footer-title {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.v2-copyright {
  margin: 20px auto 0;
  width: min(var(--v2-shell), 92%);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 14px;
  color: rgba(232, 243, 236, 0.88);
  font-size: 0.9rem;
}

.v2-sticky-actions {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 10px;
  z-index: 45;
}

.v2-sticky-actions a {
  display: inline-flex;
  min-width: 120px;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(13, 33, 23, 0.24);
  color: #fff;
}

.v2-sticky-actions a:nth-child(1) {
  background: #3c4b66;
}

.v2-sticky-actions a:nth-child(2) {
  background: var(--v2-primary);
}

.v2-sticky-actions a:nth-child(3) {
  background: var(--v2-accent);
}

.v2-mobile-actions {
  position: fixed;
  inset: auto 0 0;
  z-index: 46;
  display: none;
  grid-template-columns: repeat(3, 1fr);
}

.v2-mobile-actions a {
  padding: 14px 8px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.v2-mobile-actions a:nth-child(1) {
  background: #3c4b66;
}

.v2-mobile-actions a:nth-child(2) {
  background: var(--v2-primary);
}

.v2-mobile-actions a:nth-child(3) {
  background: var(--v2-accent);
}

.v2-report-water {
  margin-top: 16px;
  border: 1px solid var(--v2-border);
  background: #fff;
  border-radius: var(--v2-radius);
  padding: 18px;
}

.v2-report-water h3 {
  font-size: 2rem;
}

.v2-report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.v2-report-grid section {
  background: #f4f7f1;
  border: 1px solid #d8e0d2;
  border-radius: 12px;
  padding: 12px;
}

.v2-report-grid h4 {
  font-size: 1.5rem;
}

.v2-article {
  width: min(860px, 92%);
  margin: 0 auto;
}

.v2-article h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.v2-article h2 {
  font-size: 2.1rem;
  margin-top: 24px;
}

.v2-article p {
  margin-top: 12px;
  color: var(--v2-ink-soft);
  font-size: 1.02rem;
}

.v2-social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.v2-social-grid a {
  text-decoration: none;
  background: #fff;
  border: 1px dashed rgba(10, 110, 78, 0.35);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--v2-shadow);
}

.v2-social-grid h3 {
  font-size: 1.8rem;
}

.v2-social-grid p {
  color: var(--v2-ink-soft);
  margin-top: 8px;
}

body.v2-nav-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .v2-sticky-actions {
    display: none;
  }

  .v2-mobile-actions {
    display: grid;
  }
}

@media (max-width: 1240px) {
  .v2-header-inner {
    width: min(var(--v2-shell), 96%);
    gap: 10px;
  }

  .v2-brand {
    gap: 10px;
    max-width: 252px;
  }

  .v2-brand img {
    width: 50px;
    height: 50px;
  }

  .v2-brand-name {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }

  .v2-primary-nav a {
    padding: 9px 9px;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .v2-header-cta {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}

@media (max-width: 1024px) {
  .v2-header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 80px;
    position: relative;
  }

  .v2-nav-toggle {
    display: inline-flex;
  }

  .v2-header-cta {
    min-height: 42px;
    padding: 10px 14px;
  }

  .v2-header-cta-full {
    display: none;
  }

  .v2-header-cta-compact {
    display: inline;
  }

  .v2-primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 14px min(4vw, 30px) 18px;
    border-top: 1px solid rgba(31, 54, 42, 0.14);
    border-bottom: 1px solid rgba(31, 54, 42, 0.14);
    background: rgba(247, 244, 234, 0.99);
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 30px rgba(13, 33, 23, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .v2-primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .v2-primary-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .v2-primary-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 12px;
    border: 1px solid rgba(10, 110, 78, 0.22);
    background: #fff;
    font-size: 0.8rem;
    padding: 10px 14px;
  }
}

@media (max-width: 980px) {
  .v2-brand-name {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }

  .v2-brand img {
    width: 50px;
    height: 50px;
  }

  .v2-header {
    box-shadow: 0 6px 18px rgba(20, 39, 29, 0.08);
  }

  .v2-primary-nav ul {
    grid-template-columns: 1fr;
  }

  .v2-header-tools {
    gap: 8px;
  }

  .v2-header-cta {
    padding: 9px 12px;
    min-height: 40px;
    font-size: 0.82rem;
  }

  .v2-nav-toggle {
    width: 44px;
    height: 44px;
  }

  .v2-nav-toggle span {
    width: 20px;
  }

  .v2-split,
  .v2-card-grid,
  .v2-social-grid,
  .v2-report-grid,
  .v2-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .v2-header-inner {
    min-height: 74px;
  }

  .v2-brand-name {
    display: none;
  }

  .v2-primary-nav {
    padding-left: 16px;
    padding-right: 16px;
  }

  .v2-header-cta {
    min-width: 0;
    padding-left: 11px;
    padding-right: 11px;
  }

  .v2-header-cta-compact {
    font-size: 0.76rem;
    letter-spacing: 0.03em;
  }
}

@media (max-width: 540px) {
  .v2-brand img {
    width: 46px;
    height: 46px;
  }

  .v2-header-tools {
    gap: 6px;
  }

  .v2-nav-toggle {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .v2-nav-toggle {
    order: 2;
  }

  .v2-header-cta {
    order: 1;
  }
}

@media (max-width: 720px) {
  .v2-hero-content {
    padding: 64px 0;
  }

  .v2-btn,
  .v2-btn-primary,
  .v2-btn-secondary,
  .v2-btn-accent {
    width: 100%;
  }

  .v2-footer {
    margin-bottom: 62px;
  }
}
