:root {
  --ink: #17211f;
  --muted: #68736f;
  --line: #dce3df;
  --paper: #fbfaf5;
  --soft: #eef4f0;
  --forest: #173f35;
  --forest-2: #0d2c26;
  --leaf: #6a8f3a;
  --steel: #41515b;
  --clay: #c26d3d;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(20, 35, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 14px;
  left: 50%;
  width: min(1160px, calc(100% - 28px));
  min-height: 66px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(13, 44, 38, 0.16);
  backdrop-filter: blur(18px);
}

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

.main-nav {
  justify-self: center;
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(23, 63, 53, 0.12);
  border-radius: 8px;
  background: rgba(238, 244, 240, 0.78);
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 7px;
  color: #30403b;
  font-size: 14px;
  font-weight: 700;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: var(--clay);
  box-shadow: 0 14px 34px rgba(194, 109, 61, 0.28);
}

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

.button.dark {
  color: var(--white);
  background: var(--forest-2);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 136px max(24px, calc((100vw - 1160px) / 2)) 54px;
  overflow: hidden;
  background: var(--forest-2);
}

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

.hero-img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 900ms ease;
}

.hero-img.active {
  opacity: 1;
  transform: scale(1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 28, 26, 0.88) 0%, rgba(12, 28, 26, 0.62) 43%, rgba(12, 28, 26, 0.14) 100%),
    linear-gradient(0deg, rgba(12, 28, 26, 0.68) 0%, rgba(12, 28, 26, 0.08) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d7e8b7;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.16;
}

.lead {
  width: min(660px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.availability {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 28px max(24px, calc((100vw - 1160px) / 2));
  color: var(--white);
  background: var(--forest);
}

.availability div {
  display: grid;
  gap: 6px;
}

.availability strong {
  font-size: 22px;
}

.availability span {
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 92px max(24px, calc((100vw - 1160px) / 2));
}

.intro {
  background: var(--paper);
}

.section-kicker {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1.28fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 34px;
}

.section-kicker h2 {
  margin-bottom: 0;
}

.split-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.feature-panel {
  min-height: 620px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-panel img {
  height: 390px;
  object-fit: cover;
}

.feature-panel div {
  padding: 30px;
}

.feature-panel p,
.story-copy p,
.product-body p,
.steps p,
.owner p,
.lead-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-panel a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--forest);
  font-weight: 900;
}

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--forest);
  background: #e4edd7;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.story {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: center;
  background: var(--soft);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.story-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.story-grid img {
  height: 330px;
  object-fit: cover;
}

.story-grid figcaption {
  padding: 16px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

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

.products.alt {
  background: var(--white);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(20, 35, 31, 0.08);
}

.product-card img {
  height: 300px;
  object-fit: cover;
}

.product-body {
  padding: 24px;
}

.owner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
  color: var(--white);
  background: var(--forest-2);
}

.owner-card {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 22px;
  align-items: center;
}

.owner-card img {
  width: 116px;
  height: 116px;
  border-radius: 8px;
  object-fit: cover;
}

.owner-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.owner blockquote {
  margin: 0;
  padding: 34px;
  border-left: 5px solid var(--clay);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.22;
}

.process {
  background: var(--soft);
}

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

.steps article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.steps span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--clay);
  font-size: 38px;
  font-weight: 900;
}

.gallery {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 260px;
  gap: 18px;
}

.gallery-grid img {
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 14px 36px rgba(20, 35, 31, 0.08);
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.lead-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 54px;
  padding: 92px max(24px, calc((100vw - 1160px) / 2));
  background: var(--forest);
  color: var(--white);
}

.lead-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.lead-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.lead-copy li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}

.lead-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--clay);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #f8faf8;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px max(24px, calc((100vw - 1160px) / 2));
  color: rgba(255, 255, 255, 0.74);
  background: #091d19;
}

.site-footer img {
  width: 122px;
  filter: brightness(0) invert(1);
}

.site-footer p,
.site-footer span {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .nav-cta {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .hero {
    min-height: 840px;
    padding-top: 124px;
  }

  .section-kicker,
  .split-cards,
  .story,
  .product-grid,
  .owner,
  .steps,
  .lead-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-panel {
    min-height: auto;
  }

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

  .gallery-grid {
    grid-auto-rows: 240px;
  }

  .gallery-grid img:first-child {
    grid-row: span 1;
  }

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

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px;
  }

  .brand img {
    width: 112px;
  }

  .hero {
    min-height: 760px;
    padding-inline: 18px;
    padding-bottom: 34px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(12, 28, 26, 0.92) 0%, rgba(12, 28, 26, 0.68) 72%, rgba(12, 28, 26, 0.32) 100%),
      linear-gradient(0deg, rgba(12, 28, 26, 0.76) 0%, rgba(12, 28, 26, 0.12) 45%);
  }

  .section,
  .lead-section {
    padding: 68px 18px;
  }

  .availability {
    padding-inline: 18px;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .trust-row span {
    width: calc(50% - 5px);
  }

  .feature-panel img,
  .product-card img,
  .story-grid img {
    height: 250px;
  }

  .owner-card {
    grid-template-columns: 1fr;
  }

  .site-footer {
    text-align: left;
  }
}
