/* Concept 03 "Showcase": full-height split hero with image mosaic and spotlight cards. */
:root {
  --ink: #2d2a23;
  --muted: #6f6a5e;
  --olive: #58703f;
  --olive-dark: #35452a;
  --cream: #f6f1e6;
  --sand: #ece4d0;
  --line: #ddd4c2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Keep anchor targets clear of the fixed review bar */
[id] {
  scroll-margin-top: 64px;
}

body {
  margin: 0;
  padding-top: 52px;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

figure {
  margin: 0;
}

h1,
h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  padding: 13px 28px;
  border: 1px solid var(--olive);
  border-radius: 999px;
  color: #ffffff;
  background: var(--olive);
  font-size: 0.84rem;
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease;
}

.button:hover {
  background: var(--olive-dark);
  border-color: var(--olive-dark);
}

.button--light {
  border-color: var(--cream);
  color: var(--olive-dark);
  background: var(--cream);
}

.button--light:hover {
  color: var(--cream);
  background: transparent;
}

/* Full-height split hero */
.hero {
  display: grid;
  min-height: calc(100vh - 52px);
  grid-template-columns: 1.05fr 0.95fr;
}

.hero__panel {
  display: flex;
  flex-direction: column;
  padding: 34px clamp(28px, 5vw, 72px) clamp(36px, 5vw, 56px);
}

.hero__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hero__header img {
  width: 140px;
}

.hero__header nav {
  display: flex;
  gap: clamp(16px, 2.5vw, 34px);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero__header nav a:hover {
  color: var(--olive);
}

.hero__body {
  margin: auto 0;
  padding: 60px 0;
}

.hero__body h1 {
  max-width: 560px;
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  line-height: 1;
}

.hero__body p {
  max-width: 470px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.hero__link {
  font-size: 0.88rem;
  font-weight: 700;
}

.hero__link:hover {
  color: var(--olive);
}

.hero__link--light {
  color: var(--cream);
}

.hero__link--light:hover {
  color: #ffffff;
}

.hero__stats {
  display: flex;
  margin: 0;
  gap: clamp(30px, 5vw, 70px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero__stats dt {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.9rem;
}

.hero__stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.hero__mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 14px;
  padding: 14px;
  background: var(--sand);
}

.hero__cell {
  display: grid;
  place-items: center;
  padding: clamp(18px, 2.5vw, 36px);
  border-radius: 18px;
  background: #ffffff;
}

.hero__cell--tall {
  grid-row: span 2;
}

.hero__cell img {
  max-height: 100%;
  object-fit: contain;
}

/* Category strip */
.strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(14px, 2.5vw, 30px);
  padding: 26px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fdfaf2;
}

.strip a {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  transition: color 160ms ease;
}

.strip a:hover {
  color: var(--olive);
}

.strip span {
  color: var(--line);
  font-size: 1.4rem;
}

/* Spotlight cards */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: clamp(50px, 6vw, 80px) clamp(24px, 5vw, 72px);
}

.duo__card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(24px, 3vw, 44px);
  border-radius: 22px;
  background: var(--sand);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.duo__card:hover {
  box-shadow: 0 18px 44px rgb(70 58 36 / 14%);
  transform: translateY(-4px);
}

.duo__card--alt {
  background: #e3e8d8;
}

.duo__card figure {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 22px;
  border-radius: 999px 999px 18px 18px;
  background: #ffffff;
}

.duo__card figure img {
  object-fit: contain;
}

.duo__card span {
  color: var(--olive);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.duo__card h2 {
  margin-top: 10px;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.duo__card p {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.duo__card b {
  font-size: 0.84rem;
}

/* Product grid */
.products {
  padding: 0 clamp(24px, 5vw, 72px) clamp(60px, 7vw, 90px);
}

.products__heading {
  max-width: 520px;
  margin-bottom: 40px;
}

.products__heading h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.products__heading p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.products__grid article {
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.products__grid article:hover {
  box-shadow: 0 18px 44px rgb(70 58 36 / 12%);
  transform: translateY(-4px);
}

.products__grid figure {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 30px;
  border-bottom: 1px solid var(--cream);
}

.products__grid figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.products__grid article > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px 18px;
}

.products__grid h3 {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.4;
}

.products__grid span {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  white-space: nowrap;
}

/* Contact + footer */
.contact {
  padding: clamp(70px, 9vw, 120px) 24px;
  color: var(--cream);
  background: var(--olive-dark);
  text-align: center;
}

.contact h2 {
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

.contact p {
  margin: 16px 0 0;
  color: #c2c9b4;
}

.contact__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 34px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(24px, 5vw, 72px);
  background: #24301c;
  color: #aab3a0;
  font-size: 0.74rem;
}

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

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__body {
    padding: 50px 0;
  }

  .hero__mosaic {
    grid-auto-rows: 150px;
  }

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

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

@media (max-width: 560px) {
  .hero__header nav {
    display: none;
  }

  .hero__stats {
    gap: 24px;
  }

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

  .duo__card figure {
    max-width: 240px;
  }

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

  .contact__actions {
    flex-direction: column;
  }

  .footer {
    flex-direction: column;
  }
}
