:root {
  --ink: #1f2a22;
  --muted: #6f786f;
  --paper: #f5f2ea;
  --card: #fffdf8;
  --accent: #bd5b3c;
  --accent-dark: #91412b;
  --green: #435b49;
  --line: rgba(31, 42, 34, 0.12);
  --shadow: 0 20px 50px rgba(41, 47, 39, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  min-height: 76px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 242, 234, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: white;
  background: var(--accent);
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--accent);
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  padding: 8px 12px;
  border-radius: 8px;
  font: inherit;
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}

.hero-copy {
  padding: 9vw 7vw 8vw 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 6.8rem);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.hero-text {
  max-width: 600px;
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: 1.13rem;
}

.button {
  align-self: flex-start;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  color: white;
  background: var(--accent);
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.hero-image-wrap {
  min-height: 640px;
  overflow: hidden;
  border-bottom-left-radius: 56px;
}

.hero-image-wrap img {
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 110px 8vw;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  color: white;
  border-color: var(--green);
  background: var(--green);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--card);
  box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
}

.product-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ded8ca;
}

.product-card-wide .product-image {
  aspect-ratio: 16 / 8;
}

.product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.product-card:hover img {
  transform: scale(1.025);
}

.product-content {
  padding: 24px;
}

.product-card-wide .product-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.product-category {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-content p:not(.product-category) {
  margin: 0;
  color: var(--muted);
}

.price {
  display: inline-block;
  margin-top: 18px;
  font-weight: 800;
}

.product-card.is-hidden {
  display: none;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  background: var(--green);
  color: white;
}

.about .eyebrow {
  color: #e9a58f;
}

.about-copy > p {
  margin: 0 0 36px;
  color: rgba(255,255,255,0.76);
  font-size: 1.08rem;
}

.facts {
  display: grid;
  gap: 18px;
}

.facts div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

.facts span {
  color: rgba(255,255,255,0.65);
  text-align: right;
}

.contact {
  text-align: center;
}

.contact .eyebrow {
  margin-bottom: 18px;
}

.contact p:not(.eyebrow) {
  margin: 18px auto 28px;
  color: var(--muted);
}

.contact .button {
  align-self: auto;
}

.button-light {
  background: var(--ink);
}

footer {
  min-height: 90px;
  padding: 0 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 850px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 18px 5vw 24px;
    flex-direction: column;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

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

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding: 90px 7vw 64px;
  }

  .hero-image-wrap {
    min-height: auto;
    height: 62vw;
    border-radius: 0;
  }

  .section {
    padding: 82px 7vw;
  }

  .section-heading,
  .about {
    grid-template-columns: 1fr;
  }

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

  .product-card-wide {
    grid-column: auto;
    display: block;
  }

  .product-card-wide .product-image {
    aspect-ratio: 4 / 3;
  }

  .product-card-wide .product-content {
    padding: 24px;
  }
}

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

  .hero-image-wrap {
    height: 78vw;
  }

  .facts div,
  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .facts span {
    text-align: left;
  }

  footer {
    justify-content: center;
    gap: 4px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
