:root {
  --green: #2d8830;
  --green-dark: #2d8830;
  --text: #2d8830;
  --muted: #2d8830;
  --bg: #ffffff;
  --max: 940px;
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 18px;
  line-height: 1.5;
}

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

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  color: var(--green);
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-h);
  background: #fff;
}

.header-inner {
  max-width: none;
  height: 100%;
  margin: 0;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  font-weight: 100;
  font-size: 1.3em;
  color: var(--green);
}

.nav a:hover,
.nav a:focus {
  text-decoration: underline;
}

.nav .dropdown {
  position: relative;
}

.nav-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.45em;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid currentColor;
  vertical-align: 0.12em;
  font-size: 0;
  line-height: 0;
}

.nav .submenu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #eee;
  min-width: 14rem;
  padding: 0.4rem 0;
  list-style: none;
  margin: 0;
  z-index: 30;
}

.nav .dropdown:hover .submenu,
.nav .dropdown:focus-within .submenu {
  display: block;
}

.nav .submenu a {
  display: block;
  padding: 0.35rem 1rem;
  font-size: 1rem;
  font-weight: 400;
}

.hero {
  position: relative;
  background: url("../images/hero-bg.jpg") center / cover no-repeat;
  color: #fff;
  padding: 20px 0 80px;
  min-height: 0;
}

.hero-graphic {
  display: block;
  margin: 0 auto;
  width: 689px;
  max-width: 100%;
}

.hero-copy {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 306px;
  margin-left: 81px;
  color: #fff;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}

.hero-copy p {
  margin: 0;
}

.hero-copy strong {
  font-weight: 700;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 3px;
  margin-top: 0;
}

.hero-arrow {
  margin: 0 0.1rem 0 0.15rem;
}

.hero-cta {
  display: inline-block;
  background: #fff;
  color: var(--green);
  font-weight: 700;
  font-size: 17px;
  padding: 2px 8px;
  border: 1px solid #aaa;
  border-radius: 5px;
  text-decoration: none;
}

.hero-cta:hover {
  color: var(--green);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px 1.25rem 40px;
}

.area {
  border-top: 1px solid var(--green);
  padding-top: 50px;
}

.section-title {
  color: var(--green);
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 3.7px;
  font-size: 30px;
  margin: 0 0 15px;
  line-height: 45px;
}

h2.section-title {
  font-weight: 400;
}

.area-title {
  letter-spacing: 1.4px;
}

.area-title b {
  font-weight: 700;
}

.area-arrow {
  font-weight: 400;
  padding: 0 0.25em;
}

.split {
  display: grid;
  grid-template-columns: 281px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.split > * {
  min-width: 0;
}

.split-sun {
  grid-template-columns: 313px minmax(0, 306px);
  gap: 30px;
}

.split-sun img {
  width: 313px;
  max-width: 100%;
  height: 209px;
  object-fit: cover;
  object-position: center;
}

.split-sun .prose,
.split-sun .prose p {
  font-style: italic;
}

.portrait {
  width: 281px;
  max-width: 100%;
  text-align: center;
  color: var(--green);
  font-size: 15px;
  margin: 0;
}

.portrait img {
  display: block;
  width: 100%;
  height: auto;
}

.prose p,
.prose li {
  margin: 0 0 1rem;
  color: var(--green);
}

.prose > :last-child {
  margin-bottom: 0;
}

.prose strong {
  font-weight: 700;
}

.list {
  margin: 0 0 1rem 30px;
  padding-left: 20px;
  color: var(--green);
}

.prose + .list {
  margin-top: 1rem;
}

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

.list a:hover {
  text-decoration: underline;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1rem 0;
}

.gallery > * {
  flex: 0 0 calc((100% - 16px) / 3);
  width: calc((100% - 16px) / 3);
  max-width: calc((100% - 16px) / 3);
  margin: 0;
}

.gallery img {
  display: block;
  width: 100%;
  height: 192px;
  object-fit: cover;
}

a.zoom {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: zoom-in;
  color: inherit;
}

a.zoom:hover,
a.zoom:focus-visible {
  text-decoration: none;
}

.zoom-hint {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px;
  background: var(--green);
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

a.zoom:hover .zoom-hint,
a.zoom:focus-visible .zoom-hint {
  opacity: 1;
}

.zoom-icon {
  display: block;
  width: 29px;
  height: 29px;
  color: #ddd;
  flex-shrink: 0;
}

.zoom-caption {
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
}

.zoom-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  cursor: zoom-out;
}

.zoom-overlay.open {
  display: flex;
}

.zoom-overlay img {
  max-width: min(96vw, 1400px);
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.gallery figcaption {
  font-size: 16px;
  color: var(--green);
  margin: 0.35rem 0 0;
}

.solo {
  margin: 1rem 0;
  max-width: 535px;
}

.solo figure {
  margin: 0;
}

.solo img {
  display: block;
  width: 100%;
  height: auto;
}

.caption {
  font-size: 18px;
  color: var(--green);
  margin: 0.25rem 0 1rem;
}

.more {
  margin: 0.75rem 0 1.25rem;
}

.more a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28em;
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.more a::after {
  content: "↗";
  font-weight: 400;
}

.more a:hover {
  text-decoration-thickness: 2px;
}

.legal {
  color: var(--green);
}

.legal h1,
.legal h2,
.legal h3 {
  color: var(--green);
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
}

.legal h1 {
  font-size: 30px;
  letter-spacing: 3.7px;
  line-height: 45px;
}

.legal h2 {
  font-size: 24px;
  letter-spacing: 1px;
}

.site-footer {
  padding: 1.6rem 1.25rem 2rem;
  text-align: center;
}

.site-footer a {
  margin: 0 0.75rem;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
}

@media (max-width: 700px) {
  .wrap {
    padding: 2.2rem 1.25rem 2.4rem;
  }

  .split,
  .split-sun {
    grid-template-columns: 1fr;
  }

  .split-sun img {
    height: auto;
  }

  .gallery > * {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
  }

  .gallery img {
    height: auto;
  }

  .hero {
    min-height: 0;
    padding-bottom: 1.25rem;
  }

  .hero-copy {
    position: static;
    margin: 0.8rem auto 0;
    width: auto;
    max-width: 22rem;
    text-align: center;
  }

  .hero-cta-row {
    justify-content: center;
  }

  .site-header {
    height: 70px;
  }

  html {
    scroll-padding-top: 70px;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    right: 1rem;
    top: 1.1rem;
    width: 2rem;
    height: 1.4rem;
    border: 0;
    background: transparent;
    color: var(--green);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
  }

  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0 1rem;
    border-bottom: 2px solid #efefef;
  }

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

  .nav li {
    text-align: center;
  }

  .nav a {
    display: block;
    padding: 0.45rem 1rem;
    font-size: 1.15em;
  }

  .nav .submenu {
    position: static;
    background: #fff;
    box-shadow: none;
    min-width: 0;
  }

  .nav .dropdown:hover .submenu,
  .nav .dropdown:focus-within .submenu {
    display: block;
  }

  .portrait {
    max-width: 281px;
  }

  .header-inner {
    padding: 0 0.8rem;
  }

  .section-title,
  .area-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
}
