:root {
  --green: #0b7042;
  --deep-green: #073a28;
  --leaf: #128a56;
  --yellow: #dbe22d;
  --gold: #bb9a35;
  --cream: #f7f4e8;
  --paper: #faf9f2;
  --white: #ffffff;
  --ink: #17221d;
  --muted: #66736b;
  --line: rgba(23, 34, 29, 0.13);
  --shadow: 0 24px 60px rgba(7, 58, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px clamp(18px, 5vw, 76px);
  background: rgba(250, 249, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 136px;
}

.brand img {
  width: 142px;
  height: 52px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: var(--yellow);
  font-weight: 900;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  color: #25362f;
  font-size: 0.92rem;
  font-weight: 850;
}

.nav-links a {
  border-radius: 8px;
  padding: 9px 11px;
}

.nav-links a:hover {
  background: rgba(11, 112, 66, 0.1);
  color: var(--green);
}

.hero {
  position: relative;
  min-height: clamp(520px, 76vh, 700px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(34px, 5vw, 68px) clamp(18px, 6vw, 96px);
  background:
    linear-gradient(125deg, rgba(7, 58, 40, 0.98) 0%, rgba(11, 112, 66, 0.96) 58%, rgba(18, 138, 86, 0.92) 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 24px);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  right: -6vw;
  bottom: -64px;
  width: min(760px, 72vw);
  height: 310px;
  background:
    linear-gradient(105deg, transparent 0 10%, rgba(219, 226, 45, 0.88) 10% 20%, transparent 20% 26%, rgba(255, 255, 255, 0.23) 26% 36%, transparent 36% 42%, rgba(187, 154, 53, 0.68) 42% 51%, transparent 51% 100%);
  transform: skewY(-9deg);
  opacity: 0.62;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, transparent 0 48%, rgba(255, 255, 255, 0.07) 48% 51%, transparent 51% 100%),
    linear-gradient(150deg, transparent 0 48%, rgba(219, 226, 45, 0.08) 48% 51%, transparent 51% 100%);
  background-size: 120px 70px;
  opacity: 0.55;
}

.hero-shell {
  position: relative;
  z-index: 1;
  max-width: 1060px;
}

.hero-brandline {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 12px 8px 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
}

.brand-token {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--deep-green);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

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

h1 {
  max-width: 980px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.65rem, 5.8vw, 5.4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
}

h2 {
  margin-bottom: 14px;
  color: var(--deep-green);
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

h3 {
  margin-bottom: 9px;
  color: var(--deep-green);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.15;
}

.hero-text {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  font-weight: 650;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: var(--yellow);
  color: var(--deep-green);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

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

.button.full {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: clamp(24px, 4vw, 40px) 0 0;
}

.hero-metrics div {
  min-height: 102px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-metrics dt {
  color: var(--yellow);
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  font-weight: 900;
  line-height: 1;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.company-section,
.principles-section,
.director-section,
.quote-section,
.section,
.contact-band {
  padding: clamp(46px, 7vw, 96px) clamp(18px, 5vw, 76px);
}

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

.section-heading.wide {
  max-width: 1060px;
}

.section-text,
.company-story,
.goal-panel,
.quote-copy,
.director-copy {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
}

.section-text p,
.company-story p,
.goal-panel p,
.quote-copy p,
.director-copy p {
  margin-bottom: 0;
}

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

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(20px, 5vw, 64px);
  align-items: stretch;
}

.company-story {
  position: relative;
  min-height: 260px;
  display: grid;
  align-content: end;
  border-left: 6px solid var(--yellow);
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.7)),
    repeating-linear-gradient(120deg, rgba(11, 112, 66, 0.08) 0 1px, transparent 1px 18px);
  box-shadow: var(--shadow);
}

.goal-panel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--deep-green);
  color: rgba(255, 255, 255, 0.78);
}

.goal-panel h3 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.panel-number {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--yellow);
  font-size: 0.92rem;
  font-weight: 900;
}

.goal-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 12px;
  background: linear-gradient(90deg, var(--yellow), var(--leaf), var(--gold));
}

.principles-section {
  background: #eef2e5;
}

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

.principle-card {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  border: 1px solid rgba(11, 112, 66, 0.15);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(7, 58, 40, 0.08);
}

.principle-card span {
  width: fit-content;
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(219, 226, 45, 0.35);
  color: var(--deep-green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.principle-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 650;
}

.director-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 68px);
  align-items: center;
  background:
    linear-gradient(105deg, rgba(7, 58, 40, 0.98), rgba(11, 112, 66, 0.94)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 26px);
  color: var(--white);
}

.director-section h2,
.director-section h3 {
  color: var(--white);
}

.director-copy {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
}

.director-copy strong {
  display: block;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 1.04rem;
  font-weight: 900;
}

.director-copy .eyebrow {
  color: var(--yellow);
}

.director-portrait {
  min-height: 320px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(135deg, rgba(219, 226, 45, 0.18) 0 2px, transparent 2px 34px);
}

.director-portrait img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 8px;
}

.director-monogram {
  width: min(210px, 55vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--yellow);
  font-size: clamp(4rem, 10vw, 7.5rem);
  font-weight: 900;
}

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

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 16px;
}

.product-card {
  position: relative;
  min-height: 100%;
  display: grid;
  gap: 13px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(7, 58, 40, 0.08);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--yellow), var(--green));
}

.product-icon {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: #eef2e5;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.product-link {
  justify-self: start;
  color: var(--green);
  font-weight: 900;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  background:
    linear-gradient(180deg, rgba(238, 242, 229, 0.95), rgba(250, 249, 242, 0.96)),
    repeating-linear-gradient(135deg, rgba(11, 112, 66, 0.08) 0 1px, transparent 1px 22px);
}

.quote-copy {
  position: sticky;
  top: 108px;
}

.quote-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(11, 112, 66, 0.14);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 32px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

label span {
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fffef8;
  font: inherit;
}

.form-control:focus {
  border-color: var(--green);
  outline: 3px solid rgba(219, 226, 45, 0.42);
}

.errorlist {
  margin: 0;
  padding-left: 18px;
  color: #b42318;
  font-size: 0.9rem;
}

.form-message {
  margin: 0;
  border-radius: 8px;
  padding: 12px;
  background: rgba(11, 112, 66, 0.1);
  color: var(--green);
  font-weight: 850;
}

.contact-band {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  background: var(--deep-green);
  color: var(--white);
}

.contact-band .eyebrow {
  color: var(--yellow);
}

.contact-band h2 {
  color: var(--white);
}

.contact-band p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 750;
}

address {
  display: grid;
  gap: 8px;
  font-style: normal;
  font-weight: 850;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 5vw, 76px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .hero-metrics,
  .company-layout,
  .principles-grid,
  .director-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    position: static;
  }

  .director-portrait {
    min-height: 240px;
  }
}

@media (max-width: 700px) {
  .site-header,
  .contact-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-links a {
    padding: 8px 9px;
  }

  .hero {
    min-height: auto;
  }

  .hero-metrics,
  .form-row {
    grid-template-columns: 1fr;
  }

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

}
