:root {
  --forest: #0f4f32;
  --leaf: #2f7d43;
  --papaya: #f15a24;
  --gold: #c7a349;
  --cream: #fff8ec;
  --mist: #edf4ee;
  --sky: #e8f0f3;
  --ink: #18231c;
  --muted: #5f6d64;
  --line: #ded8cc;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(18, 58, 36, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  color: var(--forest);
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  font-size: 5rem;
}

h2 {
  font-size: 3.35rem;
}

h3 {
  font-size: 1.24rem;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 248, 236, .94);
  border-bottom: 1px solid rgba(222, 216, 204, .84);
  backdrop-filter: blur(14px);
}

.navbar {
  width: min(1180px, calc(100% - 36px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest);
  font-weight: 850;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand span {
  font-size: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #314139;
  font-size: .94rem;
  font-weight: 750;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--forest);
  border-color: var(--papaya);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--forest);
}

.hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 46px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 42px;
}

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

.hero-logo {
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(18, 58, 36, .09);
}

.hero-logo img {
  width: 102px;
  height: 102px;
  object-fit: contain;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--papaya);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead {
  max-width: 610px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(18, 58, 36, .16);
}

.btn-primary {
  color: var(--white);
  background: var(--forest);
}

.btn-light {
  color: var(--forest);
  background: var(--white);
  border-color: var(--line);
}

.btn-outline {
  color: var(--forest);
  background: transparent;
  border-color: var(--forest);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.hero-facts div {
  padding: 14px;
  border: 1px solid #d8e4d7;
  border-radius: 8px;
  background: var(--mist);
}

.hero-facts dt {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 750;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: var(--forest);
  font-weight: 850;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #d7e2d6;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .5);
  pointer-events: none;
}

.section,
.intro-inner,
.contact-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-band {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro {
  padding: 58px 0;
}

.intro-inner {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: end;
}

.intro-inner p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.section-heading p:last-child {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.product-card,
.quality-grid article,
.buyer-grid article,
.order-form,
.coverage-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(18, 58, 36, .07);
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

.product-card img.media-bottom {
  object-position: center bottom;
}

.product-body {
  padding: 22px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-tag {
  width: max-content;
  max-width: 100%;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #74351e;
  background: #ffe6d6;
  font-size: .8rem;
  font-weight: 850;
}

.product-body p,
.quality-grid p,
.buyer-grid p,
.origin-copy p,
.split-copy p,
.order-copy p {
  margin-top: 12px;
  color: var(--muted);
}

.origin {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(460px, 1.22fr);
  gap: 34px;
  align-items: center;
}

.origin-copy {
  max-width: 520px;
}

.origin-gallery {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 16px;
  align-items: stretch;
}

.origin-gallery img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(18, 58, 36, .07);
}

.origin-gallery .origin-wide {
  object-position: center;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--forest);
  font-weight: 850;
  border-bottom: 2px solid var(--papaya);
}

.coverage-panel {
  padding: 28px;
  background: linear-gradient(135deg, var(--forest), #1c6a43);
  color: var(--white);
  box-shadow: var(--shadow);
}

.coverage-main {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .24);
}

.coverage-main span {
  display: block;
  color: #dbe9d6;
  font-size: .84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.coverage-main strong {
  display: block;
  margin-top: 6px;
  font-size: 2rem;
  line-height: 1.08;
}

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

.coverage-list li {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  color: #f8fff6;
  font-weight: 750;
}

.quality {
  padding: 84px 0;
}

.quality-grid {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.quality .section-heading {
  width: min(1180px, calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.quality-grid article {
  padding: 24px;
}

.quality-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--papaya);
  font-size: 1.42rem;
  font-weight: 900;
}

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

.buyer-grid article {
  padding: 24px;
  background: var(--sky);
}

.order {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
  gap: 34px;
  align-items: start;
}

.order-copy {
  position: sticky;
  top: 104px;
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
}

.order-form label {
  display: block;
  color: var(--forest);
  font-weight: 850;
}

.wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(15, 79, 50, .12);
}

.contact {
  padding: 58px 0;
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.contact-inner p:last-child {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px max(18px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--forest);
}

.site-footer a {
  color: #f6d77b;
  font-weight: 850;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .hero,
  .intro-inner,
  .origin,
  .section-split,
  .order {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 30px;
  }

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

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

  .order-copy {
    position: static;
  }

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

@media (max-width: 820px) {
  .navbar,
  .hero,
  .section,
  .intro-inner,
  .contact-inner,
  .quality .section-heading,
  .quality-grid {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.24rem;
  }

  .brand span {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 76px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px 10px;
  }

  .hero {
    padding: 30px 0 44px;
  }

  .hero-facts,
  .product-grid,
  .origin-gallery,
  .buyer-grid {
    grid-template-columns: 1fr;
  }

  .origin-gallery img {
    min-height: 310px;
  }

  .section,
  .quality {
    padding: 62px 0;
  }

  .intro,
  .contact {
    padding: 44px 0;
  }

  .order-form {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .hero-logo {
    width: 104px;
    height: 104px;
  }

  .hero-logo img {
    width: 86px;
    height: 86px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .coverage-list,
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .coverage-main strong {
    font-size: 1.55rem;
  }

  .site-footer {
    flex-direction: column;
  }
}
