:root {
  --ink: #16201f;
  --muted: #5d6864;
  --line: #d9ded8;
  --paper: #f7f5ef;
  --white: #ffffff;
  --moss: #50655b;
  --moss-dark: #283b34;
  --clay: #b86d45;
  --clay-dark: #81442a;
  --steel: #e8edf0;
  --shadow: 0 22px 55px rgba(20, 32, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 245, 239, 0.92);
  border-bottom: 1px solid rgba(22, 32, 31, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--moss-dark);
  font-size: 0.82rem;
  border-radius: 6px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.primary-nav a {
  text-decoration: none;
}

.primary-nav a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(680px, 82vh, 880px);
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(10, 18, 17, 0.86), rgba(10, 18, 17, 0.42) 48%, rgba(10, 18, 17, 0.16));
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  padding: clamp(42px, 9vw, 118px) clamp(18px, 6vw, 72px);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  display: block;
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 830px;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5.2vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 3.2vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.03rem, 1.4vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  color: var(--white);
  background: var(--clay);
}

.button-primary:hover {
  background: var(--clay-dark);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(22, 32, 31, 0.2);
}

.button-secondary:hover {
  border-color: var(--moss);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin: 0;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-facts div {
  padding: 24px clamp(14px, 3vw, 34px);
  background: var(--white);
}

.quick-facts span,
.contact-card span,
.contact-box span,
.yield-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.quick-facts strong {
  display: block;
  margin-top: 5px;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.1;
}

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

.band {
  background: var(--white);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.intro {
  border-bottom: 1px solid var(--line);
}

.content-stack > * + * {
  margin-top: 22px;
}

.feature-grid,
.yield-grid,
.opportunity-list,
.use-grid {
  display: grid;
  gap: 14px;
}

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

.feature-grid div,
.opportunity-list article,
.use-grid article {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-grid strong,
.feature-grid span {
  display: block;
}

.feature-grid span,
.muted {
  color: var(--muted);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--moss-dark);
  background: var(--steel);
  font-size: 0.86rem;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 28px;
  align-items: stretch;
}

.detail-panel,
.contact-card,
.contact-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-panel {
  padding: clamp(26px, 4vw, 46px);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--clay);
  content: "✓";
  font-weight: 900;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 30px;
  background: var(--moss-dark);
  color: var(--white);
}

.contact-card span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card strong {
  font-size: 1.45rem;
}

.contact-card a:not(.button) {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
}

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

.yield-grid div {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.yield-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 1.18rem;
}

.yield-total {
  grid-column: 1 / -1;
  color: var(--white);
  background: var(--moss-dark) !important;
  border-color: var(--moss-dark) !important;
}

.yield-total span {
  color: rgba(255, 255, 255, 0.72);
}

.opportunity-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.gallery,
.plan-grid {
  display: grid;
  gap: 16px;
}

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

.gallery-item,
.plan-item {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  cursor: zoom-in;
  text-align: left;
  box-shadow: var(--shadow);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img,
.plan-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item.large img {
  aspect-ratio: 4 / 3;
}

.gallery-item:hover img,
.plan-item:hover img {
  transform: scale(1.035);
}

.gallery-item span,
.plan-item span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 11px;
  color: var(--white);
  background: rgba(13, 20, 19, 0.72);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 800;
}

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

.plan-item {
  background: var(--white);
}

.plan-item img {
  object-fit: contain;
  background: var(--white);
}

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

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--moss-dark);
}

.contact-section .section-kicker {
  color: #efb083;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.07rem;
}

.contact-box {
  padding: 30px;
  color: var(--ink);
}

.contact-box strong,
.contact-box a:not(.button) {
  display: block;
}

.contact-box strong {
  margin-top: 8px;
  font-size: 1.45rem;
}

.contact-box a:not(.button) {
  margin-top: 6px;
  color: var(--clay-dark);
  font-size: 1.22rem;
  font-weight: 900;
  text-decoration: none;
}

.site-footer {
  padding: 30px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.site-footer p {
  max-width: 1180px;
  margin-bottom: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(5, 9, 9, 0.86);
}

.lightbox.open {
  display: flex;
}

.lightbox figure {
  width: min(1120px, 100%);
  margin: 0;
  color: var(--white);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
}

.lightbox figcaption {
  padding-top: 12px;
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 980px) {
  .quick-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-facts div:last-child {
    grid-column: 1 / -1;
  }

  .two-column,
  .details,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .gallery,
  .plan-grid,
  .use-grid,
  .opportunity-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
    padding: 11px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 64px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .primary-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 760px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(10, 18, 17, 0.32), rgba(10, 18, 17, 0.88));
  }

  .hero-content {
    padding: 42px 18px;
  }

  h1 {
    font-size: clamp(2rem, 8.2vw, 2.55rem);
    line-height: 1.05;
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .quick-facts,
  .feature-grid,
  .yield-grid,
  .gallery,
  .plan-grid,
  .use-grid,
  .opportunity-list,
  .check-list {
    grid-template-columns: 1fr;
  }

  .quick-facts div:last-child,
  .gallery-item.large,
  .yield-total {
    grid-column: auto;
  }

  .gallery-item.large {
    grid-row: auto;
  }

  .section,
  .contact-section {
    padding-right: 18px;
    padding-left: 18px;
  }
}
