@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/fonts/manrope-latin-ext.woff2") format("woff2-variations");
}

:root {
  color-scheme: light;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #173b2c;
  background: #f4f3ed;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 280px;
  background:
    radial-gradient(circle at 84% 6%, rgb(31 74 53 / 8%), transparent 31rem),
    #f4f3ed;
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

a:focus-visible {
  outline: 3px solid #5a781f;
  outline-offset: 4px;
  border-radius: 0.2rem;
}

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

.skip-link {
  position: fixed;
  inset: 0 auto auto 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: #fff;
  background: #173b2c;
  transform: translateY(-140%);
}

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

.seo-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 4vw, 3rem);
  min-height: 4.75rem;
  padding: 0.75rem max(1rem, calc((100vw - 78rem) / 2));
  border-bottom: 1px solid rgb(23 59 44 / 16%);
  background: rgb(244 243 237 / 94%);
  backdrop-filter: blur(16px);
}

.seo-brand {
  display: inline-flex;
  align-items: center;
  color: #173b2c;
  font-size: clamp(1rem, 2vw, 1.24rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
}

.seo-header nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(0.9rem, 2.6vw, 2rem);
  min-width: 0;
}

.seo-header nav a {
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.seo-header nav a:hover,
.seo-language:hover {
  color: #526d1d;
}

.seo-language {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0 0.9rem;
  border: 1px solid rgb(23 59 44 / 35%);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
}

main {
  width: min(100%, 88rem);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 5rem) 5rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: clamp(1.5rem, 4vw, 3rem) 0 1.25rem;
  color: #476052;
  font-size: 0.78rem;
  font-weight: 650;
}

.breadcrumbs a {
  text-decoration: none;
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(24rem, 1.08fr);
  min-height: clamp(34rem, 66vh, 49rem);
  border-radius: 1.5rem;
  background: #e8e8df;
  box-shadow: 0 1.2rem 4rem rgb(23 59 44 / 10%);
}

.seo-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5.25rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: #526d1d;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.35rem, 5.2vw, 5.5rem);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.lead {
  max-width: 46rem;
  margin: clamp(1.5rem, 3vw, 2.3rem) 0 0;
  color: #3f564a;
  font-size: clamp(1.02rem, 1.45vw, 1.28rem);
  line-height: 1.72;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  margin-top: 2rem;
  padding: 0.8rem 1.25rem;
  border-radius: 100vw;
  color: #fff;
  background: #1f4a35;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.primary-action:hover {
  background: #5a781f;
  transform: translateY(-2px);
}

.seo-hero figure {
  min-width: 0;
  margin: 0;
  border-radius: 1.5rem;
}

.seo-hero img {
  width: 100%;
  height: 100%;
  min-height: 34rem;
  border-radius: 1.5rem;
  object-fit: cover;
}

.seo-content {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.seo-section {
  grid-column: span 4;
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border-top: 2px solid #1f4a35;
  background: rgb(255 255 255 / 48%);
}

.seo-section h2 {
  margin: 0 0 1.4rem;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.seo-section p {
  margin: 0 0 1.1rem;
  color: #3f564a;
  font-size: 0.97rem;
  line-height: 1.78;
}

.seo-section ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.seo-section li {
  position: relative;
  padding-left: 1.3rem;
  color: #2e493b;
  font-size: 0.9rem;
  line-height: 1.55;
}

.seo-section li::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #7f9b3a;
  content: "";
}

.related {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 1.5rem;
  background: #173b2c;
  color: #f4f3ed;
}

.related .eyebrow {
  color: #cbd98f;
}

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

.related-grid a {
  display: flex;
  min-height: 11rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem;
  border: 1px solid rgb(244 243 237 / 24%);
  border-radius: 1rem;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.related-grid a:hover {
  border-color: #cbd98f;
  background: rgb(255 255 255 / 7%);
}

.related-grid span {
  color: #cbd98f;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.related-grid strong {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 570;
  line-height: 1.25;
}

.seo-contact {
  display: grid;
  justify-items: start;
  margin: clamp(4rem, 9vw, 8rem) 0;
  padding: clamp(2rem, 7vw, 6rem);
  border: 1px solid rgb(23 59 44 / 18%);
  border-radius: 1.5rem;
  background: #e8e8df;
}

.seo-contact h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.5rem);
  font-weight: 560;
  letter-spacing: -0.05em;
  line-height: 1;
}

.seo-contact > p:not(.eyebrow) {
  max-width: 44rem;
  margin: 1.5rem 0 0;
  color: #3f564a;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.contact-actions .primary-action {
  margin-top: 0;
}

.contact-actions > a:not(.primary-action) {
  font-weight: 700;
}

.seo-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr 1.25fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 7vw, 5.5rem) max(1rem, calc((100vw - 78rem) / 2));
  color: #f4f3ed;
  background: #173b2c;
}

.seo-footer > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.seo-footer .seo-brand {
  color: #fff;
}

.seo-footer strong {
  color: #cbd98f;
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-footer p,
.seo-footer span,
.seo-footer a:not(.seo-brand) {
  margin: 0;
  color: #d6ddd8;
  font-size: 0.82rem;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .seo-hero {
    grid-template-columns: 1fr;
  }

  .seo-hero-copy {
    min-height: 31rem;
  }

  .seo-hero figure,
  .seo-hero img {
    min-height: 28rem;
  }

  .seo-content {
    grid-template-columns: 1fr;
  }

  .seo-section {
    grid-column: auto;
  }

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

  .related-grid a {
    min-height: 8rem;
  }
}

@media (max-width: 700px) {
  .seo-header {
    min-height: 4.2rem;
  }

  .seo-header nav {
    display: none;
  }

  .seo-header {
    grid-template-columns: 1fr auto;
  }

  main {
    padding-inline: 0.8rem;
  }

  .breadcrumbs {
    padding-inline: 0.3rem;
  }

  .seo-hero-copy {
    min-height: auto;
    padding: 2rem 1.4rem 2.4rem;
  }

  .seo-hero figure,
  .seo-hero img {
    min-height: 22rem;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.8rem);
  }

  .seo-content {
    gap: 1rem;
    padding-block: 3.5rem;
  }

  .seo-section,
  .related,
  .seo-contact {
    padding: 1.4rem;
  }

  .seo-footer {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
