:root {
  --green: #264733;
  --green-dark: #123026;
  --gold: #c8a96a;
  --ivory: #f6f4ef;
  --paper: #fffdf8;
  --graphite: #2f3437;
  --muted: #69716d;
  --line: rgba(38, 71, 51, 0.15);
  --shadow: 0 22px 60px rgba(18, 48, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--graphite);
  font-family: Manrope, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

img,
svg {
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(246, 244, 239, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: min(210px, 48vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 10px;
  background: var(--green);
  border: 0;
  border-radius: 4px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--ivory);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(46px, 7vw, 92px) clamp(20px, 5vw, 72px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--green-dark);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 6.6rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.2vw, 4.8rem);
}

h3 {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 1.05rem;
}

.hero-copy > p:not(.eyebrow),
.intro-text p,
.operation-copy > p,
.quote-copy p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--green);
  border-radius: 4px;
  font-weight: 800;
}

.button.primary {
  background: var(--green);
  color: var(--ivory);
}

.button.secondary {
  background: transparent;
  color: var(--green);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 560px;
  overflow: hidden;
  background: var(--green);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(18, 48, 38, 0.18), rgba(18, 48, 38, 0.7));
}

.promise {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 1;
  color: var(--ivory);
}

.promise span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promise strong {
  font-size: clamp(1.5rem, 2.6vw, 2.8rem);
  line-height: 1.05;
}

.intro-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(26px, 5vw, 64px);
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: var(--green-dark);
}

.intro-band h2,
.quote h2 {
  color: var(--ivory);
}

.intro-text {
  display: grid;
  gap: 16px;
}

.intro-text p {
  color: rgba(246, 244, 239, 0.78);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillars article {
  min-height: 245px;
  padding: clamp(28px, 5vw, 54px);
  background: var(--paper);
}

.icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--green);
}

.icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.products,
.operation,
.brand-system,
.quote {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.centered {
  max-width: 760px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}

.product-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(18, 48, 38, 0.08);
}

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

.product-card div {
  padding: 24px;
}

.product-card p,
.pillars p {
  color: var(--muted);
}

.operation {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  background: var(--paper);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.metrics span {
  min-height: 74px;
  padding: 16px;
  color: var(--green);
  background: var(--ivory);
  border-left: 3px solid var(--gold);
  font-size: 0.88rem;
  font-weight: 800;
}

.operation-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.operation-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 6px;
}

.operation-gallery .wide {
  grid-column: 1 / -1;
  height: 300px;
}

.brand-system {
  display: grid;
  grid-template-columns: minmax(280px, 0.4fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.brand-system img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 64px);
  background: var(--green);
}

.quote-copy p {
  color: rgba(246, 244, 239, 0.75);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
  background: var(--paper);
  border-radius: 8px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--graphite);
  background: #fff;
  border: 1px solid rgba(47, 52, 55, 0.16);
  border-radius: 4px;
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: rgba(246, 244, 239, 0.72);
  background: var(--green-dark);
}

.site-footer img {
  width: 156px;
  filter: brightness(1.95) saturate(0.7);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero,
  .intro-band,
  .operation,
  .brand-system,
  .quote {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    min-height: 440px;
  }

  .pillars,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .pillars article {
    min-height: 0;
  }

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

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

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    right: 20px;
    left: 20px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(2.72rem, 13vw, 4.2rem);
  }

  .hero-media {
    min-height: 340px;
  }

  .operation-gallery {
    grid-template-columns: 1fr;
  }

  .operation-gallery .wide,
  .operation-gallery img {
    grid-column: auto;
    height: 230px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
