:root {
  color: #172017;
  background: #f4f1ea;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f4f1ea;
}

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

.shop-page {
  min-height: 100vh;
  overflow: hidden;
}

.shop-nav {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 64px);
  color: #fff;
}

.brand {
  font-size: 18px;
  font-weight: 800;
}

.shop-nav nav {
  display: flex;
  gap: 22px;
  color: rgb(255 255 255 / 0.82);
  font-size: 14px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  min-height: 92svh;
  background:
    linear-gradient(90deg, rgb(15 25 18 / 0.94) 0%, rgb(15 25 18 / 0.8) 45%, rgb(15 25 18 / 0.2) 100%),
    #203025;
  color: #fff;
  padding: 96px clamp(24px, 5vw, 76px) 42px;
}

.hero__copy {
  max-width: 620px;
  animation: rise-in 720ms ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: #c6a15b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.92;
}

.hero p:not(.eyebrow) {
  max-width: 480px;
  margin: 22px 0 0;
  color: rgb(255 255 255 / 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  height: 46px;
  margin-top: 32px;
  border-radius: 4px;
  background: #d5ab61;
  padding: 0 22px;
  color: #172017;
  font-weight: 800;
}

.hero__visual {
  display: grid;
  place-items: center;
  min-height: 520px;
  perspective: 1000px;
}

.hero__visual img {
  width: min(560px, 82%);
  filter: drop-shadow(0 40px 70px rgb(0 0 0 / 0.32));
  transform: rotate(-7deg);
  animation: float-product 5.5s ease-in-out infinite;
}

.products,
.story-band,
.service-strip {
  padding: 84px clamp(24px, 5vw, 76px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head h2,
.story-band h2 {
  margin: 0;
  color: #172017;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
}

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

.product {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: 8px;
  background: #fffaf1;
  padding: 22px;
}

.product img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: contain;
  transition: transform 240ms ease;
}

.product:hover img {
  transform: translateY(-8px) rotate(-2deg);
}

.product__tag {
  display: inline-flex;
  border: 1px solid rgb(23 32 23 / 0.18);
  border-radius: 999px;
  padding: 5px 10px;
  color: #52614f;
  font-size: 12px;
}

.product h3 {
  margin: 18px 0 0;
  font-size: 24px;
}

.product p {
  margin: 10px 0 0;
  color: #63705f;
  line-height: 1.7;
}

.product strong {
  display: block;
  margin-top: 18px;
  font-size: 24px;
}

.story-band {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 34px;
  background: #172017;
  color: #fff;
}

.story-band h2 {
  color: #fff;
}

.story-band p:not(.eyebrow) {
  align-self: end;
  margin: 0;
  color: rgb(255 255 255 / 0.7);
  font-size: 18px;
  line-height: 1.8;
}

.service-strip {
  display: flex;
  justify-content: center;
  gap: 12px;
  background: #fffaf1;
}

.service-strip span {
  border-bottom: 2px solid #d5ab61;
  padding: 8px 2px;
  font-weight: 800;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-product {
  0%,
  100% {
    transform: translateY(0) rotate(-7deg);
  }
  50% {
    transform: translateY(-18px) rotate(-3deg);
  }
}

@media (max-width: 900px) {
  .shop-nav {
    position: absolute;
  }

  .shop-nav nav {
    display: none;
  }

  .hero,
  .story-band {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 320px;
  }

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