:root {
  --green-950: #0d2419;
  --green-900: #173c2b;
  --green-800: #1e523a;
  --green-700: #286347;
  --green-100: #edf7ef;
  --leaf: #7ba342;
  --cream: #f8f6ee;
  --sand: #eee6d2;
  --amber: #d8a33a;
  --clay: #9d4c3d;
  --ink: #1d2720;
  --muted: #657066;
  --line: #dde4d8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 60, 43, 0.16);
  --shadow-soft: 0 12px 34px rgba(23, 60, 43, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(216, 163, 58, 0.32);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(223, 230, 220, 0.9);
  background: rgba(248, 246, 238, 0.88);
  box-shadow: 0 10px 34px rgba(23, 60, 43, 0.06);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 148px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(221, 228, 216, 0.9);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.72);
}

.site-nav a,
.nav-toggle {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--green-900);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: var(--line);
  background: var(--green-900);
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: var(--green-900);
  color: var(--white);
  cursor: pointer;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(760px, calc(100vh - 74px));
  overflow: hidden;
  padding: clamp(96px, 15vw, 160px) clamp(18px, 5vw, 84px) clamp(56px, 8vw, 94px);
  background: var(--green-950);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transform: scale(1.02);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(13, 36, 25, 0.92), rgba(13, 36, 25, 0.58) 46%, rgba(13, 36, 25, 0.1)),
    linear-gradient(180deg, rgba(13, 36, 25, 0.1), rgba(13, 36, 25, 0.72));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.16;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.45rem, 6vw, 5.4rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero-content p:not(.eyebrow) {
  margin-top: 22px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.primary {
  background: var(--white);
  color: var(--green-950);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.button.primary:hover,
.button.secondary:hover {
  transform: translateY(-2px);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.not-found .button.primary {
  background: var(--green-900);
  color: var(--white);
}

main > .section {
  position: relative;
}

.section {
  padding: clamp(60px, 8vw, 112px) clamp(18px, 5vw, 84px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  background: var(--cream);
}

.intro-grid p {
  max-width: 620px;
  margin-top: 18px;
}

.fact-list {
  display: grid;
  gap: 14px;
}

.fact-list div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  border: 1px solid rgba(221, 228, 216, 0.95);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.fact-list strong {
  color: var(--green-900);
}

.fact-list span {
  color: var(--muted);
}

.feature-band {
  background: var(--green-950);
  color: var(--white);
}

.feature-band::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(123, 163, 66, 0.16), transparent 34%),
    linear-gradient(315deg, rgba(216, 163, 58, 0.12), transparent 42%);
}

.feature-band > * {
  position: relative;
  z-index: 1;
}

.feature-band p,
.feature-band .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.feature-copy {
  max-width: 820px;
}

.feature-copy p:not(.eyebrow) {
  margin-top: 18px;
}

.color-cards,
.gallery-grid,
.text-columns,
.name-breakdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.color-cards article {
  min-height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  transition: transform 180ms ease, background 180ms ease;
}

.color-cards article:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.color-cards p {
  margin-top: 12px;
  font-size: 0.95rem;
}

.swatch {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}

.swatch.green {
  background: #4f8b48;
}

.swatch.white {
  background: #f5f2de;
}

.swatch.yellow {
  background: var(--amber);
}

.swatch.red {
  background: var(--clay);
}

.image-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.image-story img {
  width: 100%;
  max-height: 540px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-story p:not(.eyebrow) {
  margin-top: 18px;
}

.quote-band {
  background: var(--sand);
  text-align: center;
}

.quote-band h2,
.quote-band p {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.quote-band p:not(.eyebrow) {
  margin-top: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--green-800);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(180px, 0.7fr));
  gap: 30px;
  padding: 56px clamp(18px, 5vw, 84px);
  background: var(--green-950);
  color: var(--white);
}

.site-footer img {
  width: 146px;
  margin-bottom: 18px;
}

.site-footer h2 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.site-footer p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  display: table;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.page-hero {
  display: grid;
  justify-items: center;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 84px) clamp(40px, 6vw, 72px);
  border-bottom: 1px solid rgba(221, 228, 216, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(248, 246, 238, 0.98)),
    var(--green-100);
  text-align: center;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
}

.page-hero.compact {
  padding-bottom: 42px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  font-size: 1.08rem;
}

.article {
  width: min(100% - 36px, 1080px);
  margin: 0 auto;
  padding: 58px 0 96px;
}

.article section {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
}

.article section + section {
  margin-top: 48px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.article p {
  margin-top: 16px;
}

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

.name-breakdown div,
.text-columns div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.name-breakdown img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.name-breakdown h3,
.name-breakdown p,
.text-columns h3,
.text-columns p {
  padding-right: 18px;
  padding-left: 18px;
}

.name-breakdown h3,
.text-columns h3 {
  padding-top: 18px;
}

.name-breakdown p,
.text-columns p {
  padding-bottom: 20px;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100% - 36px, 1280px);
  margin: 0 auto 96px;
}

.gallery-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  text-align: left;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(23, 60, 43, 0.14);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.gallery-card div {
  padding: 20px;
}

.gallery-card h2 {
  font-size: 1.02rem;
}

.gallery-card p {
  margin-top: 10px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 64px clamp(14px, 4vw, 56px);
  background: rgba(8, 18, 13, 0.94);
}

.lightbox.is-open {
  display: flex;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-content {
  display: grid;
  justify-items: center;
  gap: 16px;
  width: min(100%, 1100px);
  margin: 0;
}

.lightbox-image {
  max-width: 100%;
  max-height: calc(100vh - 180px);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.lightbox-caption {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  cursor: pointer;
}

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 52px;
  height: 52px;
  font-size: 3rem;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.not-found {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  text-align: center;
}

.not-found img {
  width: 160px;
  margin-bottom: 28px;
}

.not-found p {
  margin: 12px 0 24px;
}

@media (max-width: 920px) {
  .hero,
  .intro-grid,
  .image-story,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
    padding-top: 120px;
  }

  .hero-media {
    min-height: 100%;
  }

  .hero-media img {
    min-height: 100%;
  }

  .color-cards,
  .gallery-grid,
  .text-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    flex-wrap: wrap;
  }

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

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    border-radius: 8px;
    padding-top: 12px;
  }

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

  .site-nav a {
    background: var(--white);
  }

  .hero {
    min-height: 560px;
    padding-top: 96px;
  }

  .page-hero {
    padding-top: 42px;
  }

  h1 {
    font-size: 2.25rem;
  }

  .color-cards,
  .gallery-grid,
  .text-columns,
  .name-breakdown {
    grid-template-columns: 1fr;
  }

  .fact-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .lightbox {
    padding: 62px 12px 86px;
  }

  .lightbox-image {
    max-height: calc(100vh - 210px);
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }
}
