:root {
  --ink: #2a211d;
  --muted: #8f8179;
  --paper: #fbfaf7;
  --soft: #f0ede8;
  --coffee: #5b3e31;
  --cocoa: #2d1b16;
  --camel: #b68460;
  --line: #e6ded7;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(42, 33, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}

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

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

.hero {
  position: relative;
  min-height: 58vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--coffee);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0.52;
  filter: saturate(0.85);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(69, 43, 32, 0.36), rgba(69, 43, 32, 0.48)),
    radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 72px 20px;
}

.hero__content span,
.section__heading span,
.promo span {
  color: var(--camel);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__content h1 {
  margin: 12px 0 28px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(52px, 8vw, 94px);
  font-weight: 600;
  letter-spacing: 14px;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 32px;
  border: 1px solid var(--camel);
  background: var(--camel);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #9f724f;
}

.button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--coffee);
}

.perks {
  width: min(1100px, calc(100% - 40px));
  margin: -26px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  box-shadow: var(--shadow);
}

.perks article {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.perks article:last-child {
  border-right: 0;
}

.perks strong,
.perks span {
  display: block;
}

.perks strong {
  font-size: 13px;
}

.perks span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.section,
.social,
.stats,
.instagram {
  width: min(1100px, calc(100% - 40px));
  margin: 76px auto 0;
}

.section__heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 20px;
  align-items: end;
  margin-bottom: 28px;
}

.section__heading span,
.section__heading h2 {
  grid-column: 1;
}

.section__heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 600;
  line-height: 0.92;
}

.section__heading a {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  color: var(--camel);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.collection-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 14px;
}

.collection-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: var(--soft);
}

.collection-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgba(0, 0, 0, 0.58));
}

.collection-card:hover img {
  transform: scale(1.045);
}

.collection-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  color: var(--white);
}

.collection-card span,
.collection-card small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.collection-card h3 {
  margin: 7px 0 9px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  line-height: 0.95;
}

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

.product-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  min-width: 0;
}

.product-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--soft);
}

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

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

.badge,
.heart {
  position: absolute;
  top: 12px;
  z-index: 1;
}

.badge {
  left: 12px;
  padding: 5px 8px;
  background: var(--cocoa);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.heart {
  right: 12px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--camel);
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.heart.is-active {
  background: var(--camel);
  color: var(--white);
}

.product-card__info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  padding-top: 12px;
}

.product-card__category {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 11px;
}

.product-card__name {
  font-size: 13px;
  font-weight: 700;
}

.product-card__price {
  font-size: 13px;
  font-weight: 800;
}

.stars {
  grid-column: 1 / -1;
  color: var(--camel);
  font-size: 11px;
  letter-spacing: 1px;
}

.promo {
  width: min(1160px, 100%);
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cocoa);
  color: var(--white);
}

.promo__copy {
  padding: clamp(42px, 7vw, 78px);
}

.promo h2 {
  margin: 14px 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.86;
}

.promo h2 em {
  color: var(--camel);
  font-style: italic;
}

.promo p {
  max-width: 390px;
  margin: 0 0 28px;
  color: #cdbfb8;
  font-size: 14px;
  line-height: 1.7;
}

.promo__visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
}

.promo__visual img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.promo__visual strong,
.promo__visual span {
  position: relative;
  z-index: 1;
}

.promo__visual strong {
  align-self: end;
  color: rgba(182, 132, 96, 0.45);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(66px, 9vw, 116px);
  line-height: 0.7;
}

.promo__visual span {
  align-self: start;
}

.social {
  background: var(--soft);
  width: 100%;
  padding: 76px max(20px, calc((100% - 1100px) / 2));
}

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

.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cocoa);
}

.reel-card video {
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 52%, rgba(0,0,0,0.72));
  pointer-events: none;
}

.play-button {
  position: absolute;
  inset: 0;
  width: 54px;
  height: 54px;
  margin: auto;
  z-index: 2;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.reel-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: var(--white);
}

.reel-card strong,
.reel-card span {
  display: block;
  font-size: 12px;
}

.reel-card span {
  margin-top: 5px;
  color: rgba(255,255,255,0.78);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.stats article {
  padding: 38px 28px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 14px 40px rgba(42, 33, 29, 0.06);
}

.stats strong {
  display: block;
  color: var(--camel);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
}

.stats span {
  display: block;
  margin: 3px 0 10px;
  font-weight: 800;
}

.stats p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.instagram {
  margin-bottom: 70px;
}

.instagram__title {
  text-align: center;
  margin-bottom: 26px;
}

.instagram__title strong {
  display: block;
  color: var(--camel);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  font-style: italic;
}

.instagram__title span {
  color: var(--muted);
  font-size: 12px;
}

.instagram__strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.instagram__strip img {
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .perks,
  .product-grid,
  .product-grid--three,
  .reel-grid,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-grid,
  .promo {
    grid-template-columns: 1fr;
  }

  .collection-card {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 68vh;
  }

  .hero__content h1 {
    letter-spacing: 8px;
  }

  .perks,
  .product-grid,
  .product-grid--three,
  .reel-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .perks {
    width: calc(100% - 24px);
  }

  .perks article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .perks article:last-child {
    border-bottom: 0;
  }

  .section,
  .stats,
  .instagram {
    width: calc(100% - 24px);
    margin-top: 56px;
  }

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

  .section__heading a {
    grid-column: 1;
    grid-row: auto;
  }

  .promo__visual {
    min-height: 320px;
  }

  .social {
    margin-top: 56px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .instagram__strip {
    grid-template-columns: repeat(3, 1fr);
  }
}
