:root {
  --forest: #314c35;
  --forest-dark: #1f3223;
  --moss: #789066;
  --gold: #d0a72c;
  --cream: #f7f1e5;
  --paper: #fffdf8;
  --ink: #1e251f;
  --muted: #5f6b61;
  --line: rgba(49, 76, 53, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

a { color: inherit; }
figure { margin: 0; }
img { max-width: 100%; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 100;
  padding: .65rem 1rem;
  background: var(--forest-dark);
  color: white;
}
.skip-link:focus { left: 12px; }

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1240px;
  margin: auto;
  padding: 1rem 2rem;
}
.brand img { display: block; width: 190px; height: auto; }
nav { display: flex; align-items: center; gap: 1.6rem; }
nav a { text-decoration: none; font-size: .94rem; font-weight: 600; }
.nav-cta { border: 1px solid var(--forest); border-radius: 999px; padding: .55rem 1rem; }

main { overflow: hidden; }
.hero {
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  max-width: 1400px;
  margin: auto;
  padding: clamp(4rem, 8vw, 8rem) max(2rem, calc((100vw - 1240px) / 2));
  background: linear-gradient(135deg, var(--cream) 0 62%, transparent 62%);
}
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--forest);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin-top: 0;
  font-family: "Libre Franklin", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: -.035em;
}
h1 { max-width: 820px; margin-bottom: 1.5rem; font-size: clamp(2.6rem, 5.6vw, 5.6rem); }
h2 { margin-bottom: 1.1rem; font-size: clamp(2rem, 3.5vw, 3.5rem); }
h3 { margin-bottom: .8rem; font-size: 1.3rem; }
p { margin-top: 0; }
.hero-lede { max-width: 690px; color: var(--muted); font-size: 1.16rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: .75rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
}
.button.primary { background: var(--forest); color: white; }
.button.primary:hover { background: var(--forest-dark); }
.button.secondary { border: 1px solid var(--forest); color: var(--forest); }

.hero-photo {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  border-radius: 48% 48% 8px 8px;
  box-shadow: 28px 28px 0 var(--gold);
}
.hero-photo img {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(20, 35, 24, .82));
}
.hero-photo figcaption {
  position: absolute;
  z-index: 1;
  left: 2rem;
  bottom: 1.4rem;
  margin: 0;
  color: white;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.25;
}

.goods { max-width: 1240px; margin: auto; padding: 7rem 2rem; }
.section-heading { display: grid; grid-template-columns: .7fr 1.3fr; column-gap: 4rem; margin-bottom: 3.5rem; }
.section-heading .eyebrow { grid-column: 1; }
.section-heading h2 { grid-column: 1 / -1; max-width: 820px; }
.section-heading > p:last-child { grid-column: 2; max-width: 660px; color: var(--muted); }
.goods-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.goods-grid article { min-height: 300px; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.number { display: block; margin-bottom: 4rem; color: var(--gold); font-weight: 800; }
.goods-grid p { color: var(--muted); font-size: .96rem; }
.goods-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.goods-photos figure { position: relative; overflow: hidden; min-height: 290px; background: var(--forest-dark); }
.goods-photos img { display: block; width: 100%; height: 100%; min-height: 290px; object-fit: cover; transition: transform .35s ease; }
.goods-photos figure:hover img { transform: scale(1.025); }
.goods-photos figure::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(18, 29, 20, .88));
}
.goods-photos figcaption {
  position: absolute;
  z-index: 1;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  color: white;
}
.goods-photos figcaption strong { font-family: "Libre Franklin", Arial, sans-serif; font-size: 1.1rem; }
.goods-photos figcaption span { color: rgba(255,255,255,.76); font-size: .82rem; }

.about {
  display: grid;
  grid-template-columns: 1.15fr .7fr .5fr;
  gap: 1rem;
  max-width: 1240px;
  margin: 0 auto 7rem;
  padding: 0 2rem;
}
.about-card { padding: clamp(2rem, 6vw, 5rem); background: var(--forest); color: white; }
.about-card .eyebrow { color: #e5c85f; }
.about-card p:not(.eyebrow) { max-width: 780px; color: rgba(255,255,255,.78); }
.about-photo { min-height: 100%; overflow: hidden; }
.about-photo img { display: block; width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.quote-card { display: flex; flex-direction: column; justify-content: end; padding: 2rem; background: var(--gold); color: var(--forest-dark); }
.quote-card p { margin-bottom: .75rem; font-family: "Libre Franklin", Arial, sans-serif; font-size: 2rem; font-weight: 800; line-height: 1.05; }
.quote-card span { font-size: .9rem; font-weight: 600; }

.find-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  max-width: 1240px;
  margin: auto;
  padding: 2rem 2rem 7rem;
}
.find-us > div:first-child p:last-child { max-width: 590px; color: var(--muted); }
.find-copy > p:last-of-type { max-width: 590px; color: var(--muted); }
.market-photo { display: block; width: 100%; margin-top: 2rem; aspect-ratio: 4 / 3; object-fit: cover; }
.contact-links { border-top: 1px solid var(--line); }
.contact-links a {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.contact-links span { color: var(--muted); font-size: .9rem; }
.contact-links strong { font-size: .95rem; }
.contact-links a:hover strong { color: var(--forest); text-decoration: underline; }

footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem max(2rem, calc((100vw - 1240px) / 2));
  background: var(--cream);
  color: var(--muted);
  font-size: .84rem;
}
footer img { width: 135px; height: auto; opacity: .78; }
footer p { margin: 0; }
footer p:last-child { margin-left: auto; text-align: right; }

@media (max-width: 900px) {
  .site-header { padding: .9rem 1.2rem; }
  .brand img { width: 155px; }
  nav a:not(.nav-cta) { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 4.5rem 1.25rem 5.5rem; background: linear-gradient(155deg, var(--cream) 0 70%, transparent 70%); }
  .hero-photo { max-width: 560px; width: calc(100% - 24px); margin: 0 0 20px; }
  .hero-photo img { min-height: 330px; }
  .section-heading, .find-us { grid-template-columns: 1fr; }
  .section-heading > p:last-child { grid-column: 1; }
  .goods-grid { grid-template-columns: 1fr 1fr; }
  .goods-photos { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-photo img { min-height: 360px; }
  .quote-card { min-height: 230px; }
  footer { flex-wrap: wrap; }
  footer p:last-child { width: 100%; margin-left: 0; text-align: left; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  h1 { font-size: 2.65rem; }
  .hero-photo { box-shadow: 16px 16px 0 var(--gold); }
  .hero-photo img { min-height: 280px; }
  .goods, .about, .find-us { padding-left: 1.2rem; padding-right: 1.2rem; }
  .goods-grid { grid-template-columns: 1fr; }
  .goods-grid article { min-height: 240px; }
  .goods-photos { grid-template-columns: 1fr; }
  .goods-photos figure, .goods-photos img { min-height: 330px; }
  .number { margin-bottom: 2.5rem; }
  .contact-links a { grid-template-columns: 1fr; gap: .2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
