:root {
  --ink: #151817;
  --forest: #185b3c;
  --forest-dark: #0b3926;
  --leaf: #79a934;
  --mint: #41a978;
  --sand: #ede8dc;
  --paper: #f7f6f1;
  --white: #ffffff;
  --line: #d9ddd8;
  --muted: #5f6963;
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
}


a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 100;
  padding: .7rem 1rem;
  color: var(--white);
  background: var(--forest);
  transform: translateY(-120%);
  transition: transform .2s ease;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.content-width {
  width: min(var(--content), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  color: var(--white);
  background: #101211;
}

.header-inner {
  width: min(var(--content), calc(100% - 48px));
  min-height: 84px;
  margin-inline: auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2rem;
}

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

.brand-name {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.06em;
}

.brand-name::first-letter {
  color: var(--mint);
}

.brand-full {
  padding-left: 1rem;
  border-left: 1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.7);
  font-size: .67rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: stretch;
}

.primary-nav a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  color: rgba(255,255,255,.88);
  font-size: .86rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 0;
  left: 1rem;
  height: 3px;
  background: var(--mint);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--white);
  background: rgba(255,255,255,.05);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.primary-nav .language-link {
  margin: 1.5rem 0 1.5rem .75rem;
  padding: 0 .85rem;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 2rem;
  font-weight: 500;
}

.primary-nav .language-link::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
}

.menu-toggle > span:not(.visually-hidden) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-dark) url("../images/menu/7.jpg") center 43% / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,20,14,.8) 0%, rgba(7,20,14,.52) 48%, rgba(7,20,14,.22) 100%);
}

.hero-contours {
  position: absolute;
  right: -8%;
  bottom: -38%;
  width: 52vw;
  height: 52vw;
  min-width: 500px;
  min-height: 500px;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 48% 52% 44% 56%;
  box-shadow:
    0 0 0 32px rgba(255,255,255,.035),
    0 0 0 64px rgba(255,255,255,.035),
    0 0 0 96px rgba(255,255,255,.035),
    0 0 0 128px rgba(255,255,255,.035);
  transform: rotate(-15deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--content), calc(100% - 48px));
  padding: 5.5rem 0 6.7rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 .75rem;
  color: var(--mint);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.7rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.045em;
}

.hero-copy {
  max-width: 610px;
  margin: 1.5rem 0 2rem;
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
}

.hero-button,
.light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  min-height: 52px;
  padding: .8rem 1.4rem;
  border-radius: 2px;
  color: var(--white);
  background: var(--forest);
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease;
}

.hero-button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-button:hover,
.hero-button:focus-visible,
.light-button:hover,
.light-button:focus-visible {
  background: var(--forest-dark);
  transform: translateY(-2px);
}

.hero-label {
  position: absolute;
  right: max(24px, calc((100vw - var(--content)) / 2));
  bottom: 1.5rem;
  z-index: 2;
  color: rgba(255,255,255,.72);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.tool-launcher {
  position: relative;
  z-index: 5;
  background: var(--white);
}

.tool-grid {
  width: min(var(--content), calc(100% - 48px));
  margin: -52px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(15,34,24,.12);
}

.tool-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  border-right: 1px solid var(--line);
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease;
}

.tool-card:last-child {
  border-right: 0;
}

.tool-card:hover,
.tool-card:focus-visible {
  position: relative;
  z-index: 2;
  background: var(--paper);
  transform: translateY(-5px);
}

.tool-icon {
  width: 92px;
  height: 92px;
  margin-bottom: 1.15rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
}

.tool-icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.icon-lime { background: var(--leaf); }
.icon-forest { background: var(--forest); }
.icon-mint { background: var(--mint); }
.icon-outline {
  color: var(--forest);
  border: 2px solid var(--forest);
  background: var(--white);
}

.tool-name {
  font-size: 1rem;
  font-weight: 800;
}

.tool-note {
  margin-top: .35rem;
  color: var(--muted);
  font-size: .8rem;
}

.tool-caution {
  max-width: 240px;
  margin-top: .8rem;
  padding-top: .7rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.45;
}

.tool-caution strong {
  display: block;
  margin-bottom: .2rem;
  color: var(--forest);
  font-size: .67rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section-pad {
  padding: 7rem 0;
}

.about-section {
  background: var(--white);
}

.about-grid,
.updates-grid {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(420px, 1.2fr);
  gap: 7rem;
  align-items: start;
}

.section-heading h2,
.about-grid h2,
.map-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.about-copy {
  padding-top: 1.4rem;
  color: #37423c;
  font-size: 1.06rem;
}

.about-copy p:first-child {
  margin-top: 0;
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible,
.card-link:hover,
.card-link:focus-visible {
  text-decoration: underline;
}

.resource-section {
  background: var(--paper);
}

.resource-section .section-heading {
  margin-bottom: 2.5rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.resource-card {
  min-height: 315px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2.5rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.resource-primary {
  color: var(--white);
  border-color: var(--forest);
  background: var(--forest);
}

.resource-number {
  color: var(--mint);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.resource-primary .resource-number,
.resource-primary .card-link {
  color: #b7dc74;
}

.resource-card h3 {
  margin: 0 0 1rem;
  font-size: 1.65rem;
  line-height: 1.2;
}

.resource-card p {
  margin: 0 0 1.5rem;
}

.external-link-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.language-note {
  display: inline-flex;
  align-items: center;
  margin: -.4rem 0 .45rem;
  padding: .25rem .55rem;
  border: 1px solid #d4b36a;
  border-radius: 2rem;
  color: #755818;
  background: #fff8df;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.external-link-list li {
  border-top: 1px solid var(--line);
}

.external-link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 0;
  color: var(--forest-dark);
  font-weight: 700;
  text-decoration: none;
}

.external-link-list a:hover,
.external-link-list a:focus-visible {
  color: var(--mint);
}

.updates-section {
  background: var(--white);
}

.updates-section .text-link {
  margin-top: 1.5rem;
}

.update-list {
  border-top: 1px solid var(--line);
}

.update-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.update-item time {
  color: var(--forest);
  font-size: .82rem;
  font-weight: 800;
}

.update-item span {
  color: #37423c;
}

.update-item:hover span,
.update-item:focus-visible span {
  color: var(--forest);
}

.map-cta {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  color: var(--white);
  background: var(--forest-dark);
}

.map-cta::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: 6%;
  top: -180px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 46% 54%;
  box-shadow: 0 0 0 35px rgba(255,255,255,.025), 0 0 0 70px rgba(255,255,255,.025);
}

.map-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.map-cta .section-kicker {
  color: #b7dc74;
}

.light-button {
  flex: 0 0 auto;
  color: var(--forest-dark);
  background: var(--white);
}

.light-button:hover,
.light-button:focus-visible {
  color: var(--white);
  background: var(--mint);
}

.site-footer {
  padding: 4rem 0 1.5rem;
  color: rgba(255,255,255,.75);
  background: #101211;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand {
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.06em;
}

.footer-grid p {
  margin: .35rem 0 0;
  font-size: .82rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .65rem;
}

.footer-links a {
  color: var(--white);
  font-size: .86rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--mint);
}

.footer-owner {
  text-align: right;
}

.footer-owner strong {
  display: block;
  margin-top: .4rem;
  color: var(--white);
  font-size: .92rem;
  line-height: 1.4;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: .72rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 72px;
  }

  .brand-full {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    padding: .5rem 24px 1.25rem;
    background: #101211;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav a {
    padding: .9rem 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav .language-link {
    display: inline-flex;
    margin: 1rem 0 0;
    padding: .4rem .8rem;
    border-bottom: 1px solid rgba(255,255,255,.35);
  }

  .hero {
    min-height: 520px;
  }

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

  .tool-card:nth-child(2) {
    border-right: 0;
  }

  .tool-card:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .about-grid,
  .updates-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-copy {
    padding-top: 0;
  }

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

  .map-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {

  .content-width,
  .header-inner,
  .hero-content,
  .tool-grid {
    width: min(100% - 32px, var(--content));
  }

  .hero {
    min-height: 480px;
    background-position: 58% center;
  }

  .hero-content {
    padding: 4.5rem 0 6.5rem;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .hero-label {
    right: 16px;
    bottom: 1rem;
    left: 16px;
    text-align: right;
  }

  .tool-grid {
    margin-top: -38px;
  }

  .tool-card {
    min-height: 205px;
    padding: 1.5rem .7rem;
  }

  .tool-icon {
    width: 72px;
    height: 72px;
  }

  .tool-icon svg {
    width: 41px;
    height: 41px;
  }

  .tool-name {
    font-size: .91rem;
  }

  .tool-note {
    display: none;
  }

  .tool-card--caution {
    min-height: 290px;
  }

  .tool-caution {
    font-size: .64rem;
  }

  .section-pad {
    padding: 5rem 0;
  }

  .resource-card {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: .75rem;
    padding: 1.75rem;
  }

  .update-item {
    grid-template-columns: 1fr;
    gap: .45rem;
  }

  .map-cta {
    padding: 4.5rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer-owner {
    text-align: left;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: .5rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
