:root {
  --bg: #f6f7f2;
  --surface: #ffffff;
  --text: #18211f;
  --muted: #53605c;
  --brand: #174e45;
  --brand-dark: #123f38;
  --accent: #c37a3b;
  --line: #d7dfdb;
  --shadow: 0 14px 34px rgba(24, 33, 31, 0.09);
  --content-width: 1140px;
  --radius: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  width: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

a {
  color: var(--brand);
}

.container {
  width: min(100% - 2rem, var(--content-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 247, 242, 0.95);
  backdrop-filter: blur(2px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.brand-text {
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.menu-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 9px;
  margin-left: auto;
}

.menu-toggle span {
  width: 20px;
  position: relative;
  display: block;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  width: 20px;
  display: block;
  position: absolute;
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(6px);
}

.header-nav {
  position: absolute;
  inset-inline: 0;
  top: 74px;
  display: none;
  padding: 0 1rem 1rem;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.header-nav.is-open {
  display: flex;
}

.main-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-link {
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 9px;
}

.nav-link.is-active {
  background: #e7eeeb;
  font-weight: 700;
}

.section {
  padding: 3.5rem 0;
}

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

.hero {
  padding-top: 4rem;
}

.hero-grid,
.two-col,
.split,
.split-text,
.split-media {
  display: grid;
  gap: 1.5rem;
}

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

.eyebrow {
  margin: 0 0 0.45rem;
  color: var(--brand);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 0.85rem;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 5vw, 2.9rem);
}

h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.25rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  margin: 0 0 1rem;
  max-width: 64ch;
}

.muted {
  color: var(--muted);
}

.button-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.52rem 1.05rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
}

.btn-outline {
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--line);
}

.hero-note {
  margin-top: 1.2rem;
  padding: 1rem;
  background: #edf2ef;
  border: 1px solid #d7dfdb;
  border-radius: 10px;
  color: #2f3d3a;
}

.cards-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.card,
.product-card {
  padding: 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 0.4rem;
}

.product-card {
  display: grid;
  gap: 0.7rem;
}

.text-link {
  display: inline-block;
  margin-top: 0.35rem;
}

.split {
  grid-template-columns: 1fr;
  align-items: center;
}

.cta-band {
  padding: 1.8rem;
  border: 1px dashed #d0d9d4;
  border-radius: 12px;
  background: linear-gradient(130deg, #f6f7f2, #edf3ef 70%);
}

.section-heading {
  display: grid;
  gap: 0.5rem;
}

.fact-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
}

.fact-list div {
  display: grid;
  gap: 0.2rem;
}

.fact-list dt {
  font-weight: 700;
}

.fact-list dd {
  margin: 0;
  color: var(--muted);
}

.compact-list {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.compact-list li::before {
  content: "-";
  margin-right: 0.4rem;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
}

.info-table th,
.info-table td {
  border: 1px solid var(--line);
  padding: 0.65rem;
  text-align: left;
}

.lead-form {
  display: grid;
  gap: 0.65rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.lead-form label {
  font-weight: 700;
}

input,
select,
textarea,
button {
  width: 100%;
  border: 1px solid #cad0cc;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  background: #fff;
  font: inherit;
}

button {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.field-error {
  margin: 0.1rem 0 0;
  min-height: 1rem;
  font-size: 0.88rem;
  color: #a13b2f;
}

.form-status {
  margin: 0.5rem 0 0;
  min-height: 1.2rem;
  font-weight: 600;
}

.form-status[data-state="error"] {
  color: #a13b2f;
}

.form-status[data-state="success"] {
  color: #2b6b4e;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.map-wrap {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

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

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  background: #ecf1ee;
}

.footer-grid p {
  margin: 0 0 0.5rem;
}

.skip-link {
  position: absolute;
  left: 0.7rem;
  top: 0.7rem;
  transform: translateY(-200%);
  padding: 0.5rem 0.7rem;
  background: #111;
  color: #fff;
  border-radius: 7px;
}

.skip-link:focus {
  transform: translateY(0);
}

@media (min-width: 880px) {
  .menu-toggle {
    display: none;
  }

  .header-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.1rem;
    border: none;
    background: transparent;
    padding: 0;
  }

  .main-nav {
    flex-direction: row;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .hero-grid,
  .two-col,
  .split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

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

  .card,
  .product-card {
    padding: 1.3rem;
  }
}

@media (min-width: 1100px) {
  .container {
    width: min(100% - 4rem, var(--content-width));
  }

  .section {
    padding: 4.5rem 0;
  }
}

/* Media framing */
.hero-figure,
.split-media {
  margin: 0;
}

.hero-figure img {
  height: clamp(280px, 42vw, 470px);
}

.split-media img {
  height: clamp(240px, 31vw, 360px);
}

.product-card > img {
  height: 210px;
}

/* Language switch */
.language-switch {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-inline: auto 0.35rem;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.language-link {
  min-width: 2rem;
  padding: 0.22rem 0.35rem;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.language-link.is-active {
  background: var(--brand);
  color: #fff;
}

@media (min-width: 880px) {
  .language-switch {
    margin-inline: 0;
  }
}

@media (max-width: 879px) {
  .header-nav .language-switch {
    align-self: flex-start;
    margin: 0;
  }
}