@font-face {
  font-family: "la-luxes-serif-pro-uy4i4o";
  src: url("assets/fonts/la-luxes-serif-pro-uy4i4o.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "kathy-style-qzeywz";
  src: url("assets/fonts/kathy-style-qzeywz.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #15120f;
  --cream: #fff9ed;
  --honey: #e5a229;
  --green: #0c3f36;
  --mango: #f37321;
  --pink: #e8a0af;
  --line: rgba(21, 18, 15, 0.18);
  --progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: rgb(40, 79, 63);
  background: var(--cream);
  font-family: "la-luxes-serif-pro-uy4i4o", Georgia, serif;
  font-weight: 700;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  min-height: 112px;
  padding: 21px 4vw 14px;
  background: rgba(255, 249, 237, 0.86);
  backdrop-filter: blur(16px);
}

.brand {
  color: rgb(40, 79, 63);
  font-family: "kathy-style-qzeywz", Georgia, serif;
  font-size: 21.94px;
  font-weight: 700;
  line-height: 26.328px;
  letter-spacing: 1.097px;
}

.menu-button {
  display: none;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: rgb(40, 79, 63);
  font-family: "la-luxes-serif-pro-uy4i4o", Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.cart-link {
  display: none;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.scroll-film {
  min-height: 100vh;
  background: var(--cream);
}

.hero-sticky {
  position: relative;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 126px 4vw 42px;
}

.hero-media,
.hero-video,
.hero-placeholder,
.hero-bg,
.film-wash {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  overflow: hidden;
  perspective: 1400px;
  background: var(--cream);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
  transition: opacity 220ms ease;
}

body.video-ready .hero-video {
  opacity: 1;
}

.hero-placeholder {
  z-index: 0;
  transform-style: preserve-3d;
  transition: opacity 220ms ease;
}

body.video-ready .hero-placeholder {
  opacity: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
  transform: scale(calc(1.06 + var(--progress) * 0.08));
}

.film-wash {
  background:
    linear-gradient(rgba(40, 79, 63, 0.08), rgba(40, 79, 63, 0.08)),
    rgba(255, 249, 237, 0.04);
}

.floating-can {
  position: absolute;
  z-index: 2;
  width: clamp(185px, 18vw, 320px);
  height: auto;
  filter: drop-shadow(0 28px 40px rgba(21, 18, 15, 0.22));
  transform-style: preserve-3d;
}

.can-mango {
  left: 50%;
  top: 59%;
  width: clamp(230px, 24vw, 420px);
  opacity: calc(var(--progress) * 0.94);
  transform:
    translate3d(calc(-50% + (var(--progress) - 0.5) * 90px), calc(-50% - var(--progress) * 38px), calc(-120px + var(--progress) * 260px))
    rotateY(calc(-20deg + var(--progress) * 42deg))
    rotateX(calc(7deg - var(--progress) * 12deg));
}

.can-pink {
  left: 47%;
  top: 54%;
  opacity: calc(var(--progress) * 0.9);
  transform:
    translate3d(calc(-42% + var(--progress) * 16vw), calc(-50% - var(--progress) * 22px), calc(-240px + var(--progress) * 210px))
    rotateY(calc(40deg - var(--progress) * 58deg))
    rotateZ(calc(-10deg + var(--progress) * 7deg));
}

.can-whisky {
  right: 0%;
  top: 53%;
  opacity: calc(var(--progress) * 0.9);
  transform:
    translate3d(calc(40% - var(--progress) * 13vw), calc(-50% + var(--progress) * 12px), calc(-220px + var(--progress) * 180px))
    rotateY(calc(-42deg + var(--progress) * 54deg))
    rotateZ(calc(8deg - var(--progress) * 7deg));
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(920px, 100%);
  max-width: none;
  margin: 0 auto;
  text-align: center;
  transform: translateY(calc(var(--progress) * -36px));
}

h1,
h2 {
  margin: 0;
  font-family: "kathy-style-qzeywz", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}

h1 {
  display: grid;
  gap: 25px;
  margin-bottom: 86px;
  color: rgb(40, 79, 63);
  font-size: clamp(48.4px, 5.29vw, 72px);
  line-height: 1.056;
  text-align: center;
}

h1 span {
  color: rgb(40, 79, 63);
}

h2 {
  color: rgb(40, 79, 63);
  font-size: clamp(37.384px, 3.83vw, 58px);
  line-height: 1.1136;
}

h3 {
  margin: 0;
  color: rgb(40, 79, 63);
  font-family: "kathy-style-qzeywz", Georgia, serif;
  font-size: clamp(30.256px, 3.1vw, 44px);
  font-weight: 700;
  line-height: 1.1424;
  letter-spacing: 0.05em;
}

p {
  margin: 0;
  color: rgb(40, 79, 63);
  font-family: "la-luxes-serif-pro-uy4i4o", Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.button,
button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 2px solid var(--black);
  border-radius: 999px;
  font-family: Almarai, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
}

.button-primary,
button {
  color: rgb(40, 79, 63);
  background: transparent;
  border-color: rgb(40, 79, 63);
}

.button-secondary {
  color: rgb(40, 79, 63);
  background: transparent;
  border-color: rgb(40, 79, 63);
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 7px;
}

.scroll-meter {
  display: none;
  position: fixed;
  right: 28px;
  bottom: 34px;
  z-index: 8;
  width: 4px;
  height: 96px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(21, 18, 15, 0.18);
  transition: opacity 180ms ease;
}

.scroll-meter span {
  display: block;
  width: 100%;
  height: calc(var(--progress) * 100%);
  background: var(--black);
}

body:not(.film-active) .scroll-meter {
  opacity: 0;
}

.section {
  padding: clamp(72px, 9vw, 150px) 4vw;
}

.intro-band {
  display: grid;
  min-height: 44vh;
  place-items: center;
  padding: 90px 4vw;
  color: var(--cream);
  background: var(--green);
  text-align: center;
}

.feature,
.about {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: clamp(48px, 7vw, 120px);
}

.feature {
  background: #fff6e6;
}

.product-focus {
  display: grid;
  min-height: 720px;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.9), transparent 36%),
    linear-gradient(135deg, #ffc951, #ef7928 52%, #86b765);
}

.product-focus img {
  width: min(44vw, 520px);
  filter: drop-shadow(0 28px 45px rgba(21, 18, 15, 0.18));
}

.feature-copy,
.about-copy {
  display: grid;
  gap: 18px;
  max-width: 620px;
}

.kicker {
  font-size: 0.95rem;
  font-family: "la-luxes-serif-pro-uy4i4o", Georgia, serif;
  font-weight: 700;
  text-transform: uppercase;
}

.price {
  font-weight: 900;
}

.about {
  color: var(--cream);
  background: var(--green);
}

.about .kicker,
.about h2,
.about p {
  color: rgb(254, 250, 246);
}

.about-image {
  min-height: 620px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.products {
  background: #fbefd9;
}

.section-title {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
}

.product-card {
  display: grid;
  grid-template-rows: 1fr auto auto auto auto;
  gap: 14px;
  min-height: 660px;
  padding: 0 0 24px;
  border-top: 1px solid var(--line);
}

.product-card img {
  align-self: end;
  width: min(100%, 330px);
  margin: 0 auto;
  filter: drop-shadow(0 18px 24px rgba(21, 18, 15, 0.14));
}

.product-card p,
.product-card h3 {
  padding: 0 10px;
}

.product-card button {
  width: calc(100% - 20px);
  margin: 12px auto 0;
}

.faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(300px, 1.3fr);
  gap: clamp(40px, 8vw, 130px);
  background: var(--cream);
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  color: rgb(40, 79, 63);
  font-family: "la-luxes-serif-pro-uy4i4o", Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

details p {
  max-width: 760px;
  margin-top: 18px;
}

.instagram {
  text-align: center;
  background: #f9b7c4;
}

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

.insta-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 26px;
  background: var(--cream);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 64px 4vw;
  color: var(--cream);
  background: var(--black);
}

.footer h2 {
  font-family: "kathy-style-qzeywz", Georgia, serif;
  font-size: clamp(30.256px, 3.1vw, 44px);
  line-height: 1.1424;
  letter-spacing: 0.05em;
}

address {
  font-style: normal;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 118px;
    flex-direction: row;
    justify-content: space-between;
    padding: 42px 6vw 26px;
  }

  .menu-button {
    display: inline-grid;
    gap: 7px;
    width: 36px;
    min-height: 36px;
    height: 36px;
    place-content: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgb(40, 79, 63);
  }

  .menu-button span {
    display: block;
    width: 34px;
    height: 2px;
    background: currentColor;
  }

  .nav-links {
    display: none;
  }

  .hero-copy {
    width: 100%;
  }

  .feature,
  .about,
  .faq {
    grid-template-columns: 1fr;
  }

  .product-focus,
  .about-image,
  .about-image img {
    min-height: 520px;
  }

  .product-focus img {
    width: min(70vw, 420px);
  }

  .product-grid,
  .insta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(48.4px, 7.15vw, 51.64px);
    letter-spacing: 0.05em;
    line-height: 1.056;
  }

  .hero-sticky {
    align-items: center;
    padding: 128px 4vw 42px;
  }

  .floating-can {
    width: 165px;
  }

  .can-mango {
    width: 230px;
    left: 57%;
    top: 43%;
  }

  .can-pink {
    left: -5%;
    top: 48%;
  }

  .can-whisky {
    right: -11%;
    top: 45%;
  }

  .section {
    padding-left: 22px;
    padding-right: 22px;
  }

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

  .product-card {
    min-height: auto;
  }

  .product-card img {
    max-height: 520px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-bg,
  .floating-can,
  .hero-copy {
    transform: none;
  }
}
