:root {
  --green-950: #13281d;
  --green-900: #183224;
  --green-800: #234933;
  --cream: #fcf4e7;
  --paper: #fffdf8;
  --ink: #1b211d;
  --muted: #5f665f;
  --rust: #9f3e2f;
  --gold: #c4994b;
  --line: rgba(19, 40, 29, .14);
  --shadow: 0 18px 60px rgba(20, 38, 27, .16);
  --radius: 18px;
  --wrap: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.wrap { width: var(--wrap); margin-inline: auto; }
.narrow { max-width: 820px; text-align: center; }
.section { padding: 96px 0; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: white;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 244, 231, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand img {
  display: block;
  width: auto;
  height: 78px;
  object-fit: contain;
}
nav { display: flex; gap: 28px; }
nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
}
nav a:hover { color: var(--rust); }

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green-950);
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,20,14,.62) 0%, rgba(10,20,14,.22) 48%, rgba(10,20,14,.05) 75%), linear-gradient(180deg, rgba(10,20,14,.03) 20%, rgba(10,20,14,.20) 58%, rgba(10,20,14,.82) 100%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  color: white;
  padding-bottom: 62px;
  max-width: 760px;
}
.eyebrow, .section-label {
  margin: 0 0 12px;
  color: var(--rust);
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: .79rem;
}
.eyebrow { color: #f5cc87; }
.section-label.light { color: #f0c978; }
h1, h2, h3 {
  font-family: "Roboto Slab", Georgia, serif;
  line-height: 1.12;
  margin-top: 0;
}
h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  text-wrap: balance;
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}
h3 { margin-bottom: 10px; font-size: 1.35rem; }
.hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  font-size: 1.18rem;
  color: rgba(255,255,255,.9);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--green-950);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0,0,0,.14);
}
.button:hover { transform: translateY(-1px); }
.lead { font-size: 1.22rem; color: var(--muted); }

.intro { background: var(--cream); }
.section-heading {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 42px;
}
.section-heading > p { color: var(--muted); font-size: 1.06rem; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  min-height: 285px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 30px rgba(19,40,29,.06);
}
.card p { color: var(--muted); }
.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green-900);
  font-size: 1.5rem;
}

.quality {
  background:
    radial-gradient(circle at 85% 20%, rgba(196,153,75,.18), transparent 32%),
    var(--green-950);
  color: white;
}
.quality-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 90px;
  align-items: start;
}
.quality-grid > div > p:last-child { color: rgba(255,255,255,.75); font-size: 1.08rem; }
.facts { margin: 0; }
.facts div {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.2);
}
.facts div:last-child { border-bottom: 1px solid rgba(255,255,255,.2); }
.facts dt { font-weight: 800; font-size: 1.1rem; }
.facts dd { margin: 4px 0 0; color: rgba(255,255,255,.7); }

.split {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}
.split > div:last-child { color: var(--muted); font-size: 1.08rem; }

.contact { padding-top: 20px; }
.contact-box {
  padding: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  border-radius: 24px;
  background: var(--rust);
  color: white;
  box-shadow: var(--shadow);
}
.contact-box h2 { max-width: 680px; }
.contact-box p:not(.section-label) { max-width: 650px; color: rgba(255,255,255,.82); }
.button-light { flex: 0 0 auto; background: white; }

footer {
  margin-top: 90px;
  padding: 34px 0;
  background: var(--green-950);
  color: rgba(255,255,255,.68);
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  align-items: start;
}
.footer-inner p { margin: 0; }
.legal { max-width: 850px; font-size: .84rem; }

@media (max-width: 900px) {
  .section { padding: 72px 0; }
  nav { gap: 16px; }
  .hero { min-height: 620px; }
  .hero > img { object-position: center center; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading, .quality-grid, .split { grid-template-columns: 1fr; gap: 28px; }
  .contact-box { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  :root { --wrap: min(100% - 28px, 1180px); }
  .header-inner { min-height: 66px; }
  .brand img { height: 60px; }
  nav a:not(:last-child) { display: none; }
  .hero { min-height: 570px; }
  .hero > img { object-position: center center; }
  .hero-copy { padding-bottom: 38px; }
  .hero-copy > p:not(.eyebrow) { font-size: 1rem; }
  .card-grid { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .contact-box { padding: 34px 26px; }
  .footer-inner { grid-template-columns: 1fr; gap: 18px; }
}
