:root {
  --green: #153f22;
  --green-2: #31582d;
  --olive: #687a38;
  --orange: #d84a0b;
  --cream: #fffaf1;
  --sand: #f2eadf;
  --ink: #1d241f;
  --muted: #667066;
  --white: #ffffff;
  --radius: 24px;
  --shadow: 0 18px 60px rgba(36, 45, 35, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 241, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(21, 63, 34, .09);
}
.brand img { width: 170px; height: 65px; object-fit: cover; object-position: left center; }
.main-nav { display: flex; justify-content: center; gap: 30px; }
.main-nav a { text-decoration: none; font-weight: 600; font-size: .95rem; }
.main-nav a:hover { color: var(--orange); }
.language-toggle, .menu-button {
  border: 1px solid rgba(21, 63, 34, .2);
  background: var(--white);
  color: var(--green);
  padding: 9px 13px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.menu-button { display: none; }

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 72px);
  overflow: hidden;
}
.hero-copy { max-width: 680px; }
.eyebrow, .section-label {
  margin: 0 0 12px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
  font-size: .78rem;
}
h1, h2, h3 { line-height: 1.12; margin-top: 0; }
h1 { font-size: clamp(2.7rem, 6vw, 5.7rem); letter-spacing: -.055em; margin-bottom: 24px; color: var(--green); }
h2 { font-size: clamp(2rem, 4vw, 4rem); letter-spacing: -.04em; color: var(--green); }
.hero-text { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--muted); max-width: 60ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
.primary { background: var(--orange); color: var(--white); }
.secondary { border: 1px solid rgba(21, 63, 34, .24); background: var(--white); color: var(--green); }
.hero-image { position: relative; }
.hero-image::before {
  content: "";
  position: absolute;
  inset: 8% -8% -8% 8%;
  background: #e9cbb6;
  border-radius: 42px;
  transform: rotate(3deg);
}
.hero-image img { position: relative; border-radius: 36px; box-shadow: var(--shadow); }

.section { padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 72px); }
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  background: var(--white);
}
.about-copy { font-size: 1.12rem; color: var(--muted); max-width: 58ch; }

.categories { background: var(--sand); }
.categories > h2 { max-width: 760px; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 45px;
}
.category-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(21, 63, 34, .08);
  border-radius: var(--radius);
  min-height: 250px;
}
.category-icon { font-size: 2rem; color: var(--orange); }
.category-card h3 { margin: 24px 0 12px; color: var(--green); }
.category-card p { color: var(--muted); margin-bottom: 0; }

.products { background: var(--white); }
.products-heading {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 40px;
  align-items: end;
}
.products-heading > p { color: var(--muted); max-width: 50ch; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 46px;
}
.product-card {
  border: 1px solid rgba(21, 63, 34, .1);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 16px;
  background: var(--cream);
}
.product-placeholder {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(49,88,45,.09), rgba(216,74,11,.12));
  border: 1px dashed rgba(21,63,34,.22);
}
.product-category {
  display: inline-block;
  margin-top: 18px;
  color: var(--orange);
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.product-card h3 { margin: 8px 0; color: var(--green); }
.product-card p { color: var(--muted); }
.product-footer { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 12px; }
.product-footer a { color: var(--orange); font-weight: 700; }

.delivery-banner {
  margin: 0 clamp(20px, 5vw, 72px);
  padding: clamp(36px, 5vw, 64px);
  border-radius: 34px;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.delivery-banner h2 { color: var(--white); max-width: 850px; margin-bottom: 0; }
.section-label.light { color: #ffb38d; }
.light-button { background: var(--white); color: var(--green); white-space: nowrap; }

.contact {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}
.contact-intro p:last-child { max-width: 55ch; color: var(--muted); }
.contact-card {
  display: grid;
  gap: 12px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 30px;
  background: var(--sand);
  box-shadow: var(--shadow);
}
.contact-card h3 { font-size: 2rem; color: var(--green); margin-bottom: 0; }
.contact-card p { margin-top: -8px; color: var(--muted); }
.contact-card a { color: var(--green); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  padding: 35px clamp(20px, 5vw, 72px);
  background: #102d19;
  color: rgba(255,255,255,.82);
}
.footer-brand img { width: 145px; height: 55px; object-fit: cover; object-position: left center; filter: brightness(1.12); }
.footer-brand p { margin-bottom: 0; }

@media (max-width: 1050px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr; }
  .hero-image { max-width: 850px; }
}

@media (max-width: 760px) {
  .site-header { grid-template-columns: 1fr auto auto; gap: 10px; }
  .brand img { width: 125px; height: 50px; }
  .menu-button { display: inline-block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px; }
  .about, .products-heading, .contact { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .delivery-banner, .site-footer { flex-direction: column; align-items: flex-start; }
  h1 { font-size: clamp(2.7rem, 15vw, 4.3rem); }
}
