/* =========================================================
   GROVIA — MAIN STYLESHEET
   Responsive / Clean / All Devices
   ========================================================= */


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  overflow-x: hidden;

  background: var(--paper);
  color: var(--ink);

  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

:root {
  --forest: #10271b;
  --forest-deep: #07160f;
  --forest-soft: #183c29;

  --leaf: #6f8f48;
  --sage: #a9bd72;
  --earth: #9a7448;
  --gold: #c5a565;

  --cream: #f3efe3;
  --paper: #f7f4eb;
  --ink: #183326;
  --muted: #718071;

  --white: #fff;
  --line: rgba(24, 51, 38, 0.14);

  --ease: cubic-bezier(.16, 1, .3, 1);

  --page-width: min(1400px, 84vw);
  --mobile-padding: 6vw;
}

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

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

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

img {
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
small,
strong,
button {
  max-width: 100%;
}

p,
a,
span,
small {
  overflow-wrap: break-word;
}

::selection {
  background: var(--gold);
  color: var(--forest);
}


/* =========================================================
   BODY STATES
   ========================================================= */

body.loading,
body.menu-open {
  overflow: hidden;
}


/* =========================================================
   LOADER
   ========================================================= */

.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: grid;
  place-items: center;

  overflow: hidden;

  background: var(--forest-deep);
  color: var(--white);

  transition:
    opacity 1.1s var(--ease),
    visibility 1.1s;
}

.loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-glow {
  position: absolute;

  width: min(70vw, 900px);
  height: min(70vw, 900px);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(122, 157, 82, .15),
      transparent 65%
    );

  animation: loaderGlow 5s ease-in-out infinite;
}

.loader-center {
  position: relative;

  width: min(360px, 78vw);

  text-align: center;
}

.loader-mark {
  width: min(190px, 55vw);
  margin: auto;

  opacity: 0;
  transform: translateY(30px) scale(.88);

  animation:
    loaderMark 1.2s .2s var(--ease) forwards;
}

.loader-mark img {
  width: 100%;

  filter: brightness(0) invert(1);
}

.loader-line {
  width: 100%;
  height: 1px;

  margin-top: 45px;

  overflow: hidden;

  background: rgba(255, 255, 255, .14);
}

.loader-line span {
  display: block;

  width: 0;
  height: 100%;

  background: var(--gold);

  animation:
    loaderLine 2.4s .4s var(--ease) forwards;
}

.loader-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  margin-top: 13px;

  color: rgba(255, 255, 255, .48);

  font-size: 8px;
  letter-spacing: .22em;

  opacity: 0;

  animation:
    fadeUp .8s 1s forwards;
}

.loader-corner {
  position: absolute;

  color: rgba(255, 255, 255, .3);

  font-size: 8px;
  letter-spacing: .2em;
}

.loader-corner-a {
  top: 35px;
  left: 35px;
}

.loader-corner-b {
  right: 35px;
  bottom: 35px;
}


/* =========================================================
   LOADER ANIMATIONS
   ========================================================= */

@keyframes loaderMark {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes loaderLine {
  to {
    width: 100%;
  }
}

@keyframes loaderGlow {
  50% {
    transform: scale(1.1);
    opacity: .7;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}


/* =========================================================
   CUSTOM CURSOR
   ========================================================= */

.cursor {
  position: fixed;

  width: 20px;
  height: 20px;

  z-index: 10000;

  border: 1px solid var(--gold);
  border-radius: 50%;

  pointer-events: none;

  opacity: 0;

  transform: translate(-50%, -50%);

  transition:
    width .45s var(--ease),
    height .45s var(--ease),
    background .35s,
    opacity .3s;
}

.cursor span {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: var(--gold);

  transform: translate(-50%, -50%);
}

.cursor.hover {
  width: 60px;
  height: 60px;

  background: rgba(197, 165, 101, .08);
}

.cursor-text {
  position: fixed;

  z-index: 10001;

  pointer-events: none;

  color: var(--white);

  font-size: 7px;
  letter-spacing: .15em;

  opacity: 0;

  transform: translate(-50%, -50%);
}

@media (min-width: 1001px) {
  .cursor {
    opacity: 1;
  }
}


/* =========================================================
   SCROLL PROGRESS
   ========================================================= */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;

  z-index: 1000;
}

.scroll-progress span {
  display: block;

  width: 0;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      var(--gold),
      var(--sage)
    );
}


/* =========================================================
   HEADER
   ========================================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  height: 96px;

  z-index: 900;

  color: var(--white);

  transition:
    height .55s var(--ease),
    background .55s var(--ease),
    box-shadow .55s var(--ease);
}

.header.scrolled {
  height: 84px;

  background: rgba(7, 22, 15, .96);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  box-shadow:
    0 12px 35px rgba(0, 0, 0, .14);
}

.header-inner {
  width: min(1420px, 90vw);
  height: 100%;
  min-height: 0;

  margin: 0 auto;

  display: flex;
  align-items: center;

  min-width: 0;
}


/* =========================================================
   BRAND
   ========================================================= */

.brand {
  width: 150px;
  flex: 0 0 auto;

  display: flex;
  align-items: center;
}

.brand img {
  display: block;

  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100px;

  object-fit: contain;

  filter: brightness(0) invert(1);
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.desktop-nav {
  display: flex;
  align-items: center;

  gap: clamp(20px, 2.4vw, 38px);

  margin-left: auto;
  margin-right: clamp(18px, 3vw, 42px);

  min-width: 0;
}

.nav-link {
  position: relative;

  display: inline-flex;
  align-items: center;

  min-height: 44px;

  white-space: nowrap;

  color: rgba(255, 255, 255, .78);

  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .025em;

  transition:
    color .35s ease,
    transform .4s var(--ease);
}

.nav-link::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 4px;

  width: 0;
  height: 1px;

  background: var(--gold);

  transition:
    width .45s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);

  transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}


/* =========================================================
   HEADER CTA
   ========================================================= */

.header-button {
  min-height: 46px;

  padding: 0 19px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;

  gap: 12px;

  border: 1px solid rgba(197, 165, 101, .55);

  white-space: nowrap;

  color: #ead9ae;

  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .025em;

  transition:
    background .45s var(--ease),
    color .45s var(--ease),
    border-color .45s var(--ease),
    transform .45s var(--ease),
    box-shadow .45s var(--ease);
}

.header-button:hover {
  border-color: var(--gold);

  background: var(--gold);
  color: var(--forest);

  transform: translateY(-3px);

  box-shadow:
    0 12px 30px rgba(197, 165, 101, .16);
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-button {
  position: relative;

  width: 46px;
  height: 46px;

  margin-left: auto;

  display: none;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;

  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;

  transition:
    background .4s var(--ease),
    border-color .4s var(--ease),
    transform .5s var(--ease);
}

.menu-button:hover {
  border-color: rgba(197, 165, 101, .65);

  background: rgba(197, 165, 101, .10);

  transform: rotate(4deg);
}

.menu-button span {
  position: absolute;

  left: 50%;

  width: 19px;
  height: 1px;

  background: var(--white);

  transform-origin: center;

  transition:
    transform .55s var(--ease),
    opacity .35s ease,
    width .45s var(--ease);
}

.menu-button span:nth-child(1) {
  transform: translate(-50%, -4px);
}

.menu-button span:nth-child(2) {
  transform: translate(-50%, 4px);
}

.menu-button.active span:nth-child(1) {
  width: 20px;

  transform:
    translate(-50%, 0)
    rotate(45deg);
}

.menu-button.active span:nth-child(2) {
  width: 20px;

  transform:
    translate(-50%, 0)
    rotate(-45deg);
}

.menu-button.active {
  border-color: rgba(197, 165, 101, .55);

  background: rgba(197, 165, 101, .08);
}


/* =========================================================
   FULL SCREEN MOBILE MENU
   ========================================================= */

.mobile-menu {
  position: fixed;
  inset: 0;

  z-index: 950;

  overflow-x: hidden;
  overflow-y: auto;

  overscroll-behavior: contain;

  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(105, 140, 72, .14),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #07160f,
      #10271b 60%,
      #07160f
    );

  transform: translateY(-105%);

  visibility: hidden;
  pointer-events: none;

  transition:
    transform .75s var(--ease),
    visibility 0s linear .75s;
}

.mobile-menu.open {
  transform: translateY(0);

  visibility: visible;
  pointer-events: auto;

  transition:
    transform .75s var(--ease),
    visibility 0s;
}

.mobile-menu-inner {
  width: min(100%, 720px);
  min-height: 100svh;

  margin: 0 auto;

  padding:
    30px
    max(6vw, 24px)
    30px;

  display: flex;
  flex-direction: column;

  min-width: 0;
}


/* =========================================================
   MOBILE MENU TOP
   ========================================================= */

.mobile-menu-top {
  min-height: 58px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.mobile-menu-top img {
  width: 145px;
  max-width: 60vw;
  max-height: 52px;

  object-fit: contain;

  filter: brightness(0) invert(1);
}

.mobile-menu-top button {
  width: 46px;
  height: 46px;

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;

  color: var(--white);

  font-size: 10px;
  letter-spacing: .12em;

  transition:
    background .35s ease,
    border-color .35s ease;
}

.mobile-menu-top button:hover {
  border-color: var(--gold);

  background: rgba(197, 165, 101, .12);
}


/* =========================================================
   MOBILE MENU LINKS
   ========================================================= */

.mobile-menu nav {
  margin: auto 0;

  display: flex;
  flex-direction: column;

  min-width: 0;
}

.mobile-menu nav a {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  padding:
    clamp(15px, 2.3vh, 22px)
    0;

  border-bottom: 1px solid rgba(255, 255, 255, .09);

  color: var(--white);

  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 7vw, 46px);
  font-weight: 500;
  line-height: 1;

  opacity: 0;
  transform: translateY(25px);

  transition:
    color .3s ease,
    transform .6s var(--ease),
    opacity .6s var(--ease);
}

.mobile-menu.open nav a {
  opacity: 1;
  transform: none;
}

.mobile-menu.open nav a:nth-child(1) {
  transition-delay: .12s;
}

.mobile-menu.open nav a:nth-child(2) {
  transition-delay: .18s;
}

.mobile-menu.open nav a:nth-child(3) {
  transition-delay: .24s;
}

.mobile-menu.open nav a:nth-child(4) {
  transition-delay: .30s;
}

.mobile-menu.open nav a:nth-child(5) {
  transition-delay: .36s;
}

.mobile-menu nav a:hover {
  color: var(--gold);
}

.mobile-menu nav span {
  flex: 0 0 auto;

  color: var(--gold);

  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  letter-spacing: .12em;
}


/* =========================================================
   MOBILE MENU FOOTER
   ========================================================= */

.mobile-menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  flex-wrap: wrap;

  gap: 10px 20px;

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, .08);

  color: rgba(255, 255, 255, .42);

  font-size: 8px;
  letter-spacing: .15em;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  width: 100%;
  min-height: 100svh;

  padding:
    130px 8vw 70px;

  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  align-items: center;

  gap: clamp(30px, 5vw, 90px);

  overflow: hidden;

  background: var(--forest);
  color: var(--white);
}

.hero-background {
  position: absolute;
  inset: 0;

  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;

  opacity: .18;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, .06) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .06) 1px,
      transparent 1px
    );

  background-size: 80px 80px;

  mask-image:
    radial-gradient(
      circle at 75% 50%,
      black,
      transparent 65%
    );
}

.hero-light {
  position: absolute;

  width: min(650px, 70vw);
  height: min(650px, 70vw);

  top: 5%;
  right: 4%;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(105, 140, 72, .22),
      transparent 68%
    );

  animation:
    breathe 7s ease-in-out infinite;
}

@keyframes breathe {
  50% {
    transform: scale(1.08);
    opacity: .65;
  }
}

.hero-content {
  position: relative;
  z-index: 5;

  width: 100%;
  max-width: 700px;

  min-width: 0;
}

.hero-kicker,
.section-kicker {
  display: flex;
  align-items: center;

  gap: 10px;

  color: var(--gold);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: .23em;
}

.hero-kicker span {
  width: 27px;
  height: 1px;

  flex: 0 0 auto;

  background: var(--gold);
}

.hero-title {
  max-width: 100%;

  margin-top: 24px;

  font-family: "Playfair Display", serif;
  font-size: clamp(3.2rem, 7vw, 7.5rem);
  font-weight: 500;
  line-height: .86;

  letter-spacing: -.055em;
}

/* =========================================================
   HERO TITLE — FIX DESCENDER CLIPPING
   ========================================================= */

.hero-title .line {
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
  overflow: hidden;
}

.hero-title .line > span {
  display: block;

  transform: translateY(110%);

  animation:
    titleUp 1s var(--ease) forwards;
}

.hero-title .line:nth-child(1) > span {
  animation-delay: .65s;
}

.hero-title .line:nth-child(2) > span {
  animation-delay: .78s;
}

.hero-title .line:nth-child(3) > span {
  animation-delay: .91s;
}

.hero-title .italic {
  color: var(--sage);
  font-style: italic;
}

@keyframes titleUp {
  to {
    transform: none;
  }
}

.hero-description {
  width: 100%;
  max-width: 500px;

  margin-top: 31px;

  color: #aebcae;

  font-size: 15px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 27px;

  margin-top: 31px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  min-height: 48px;

  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 18px;

  font-size: 11px;
  font-weight: 700;

  text-align: center;

  transition:
    transform .45s var(--ease),
    box-shadow .45s var(--ease);
}

.button-primary,
.button-light {
  background: var(--gold);
  color: var(--forest);
}

.button-primary:hover,
.button-light:hover {
  transform: translateY(-4px);

  box-shadow:
    0 18px 40px rgba(197, 165, 101, .2);
}

.text-link {
  padding-bottom: 6px;

  border-bottom: 1px solid rgba(255, 255, 255, .3);

  color: #d6ded3;

  font-size: 9px;
}

.text-link span {
  margin-left: 9px;

  color: var(--gold);
}


/* =========================================================
   REVEAL
   ========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity .9s var(--ease),
    transform .9s var(--ease);
}

.reveal.visible {
  opacity: 1;

  transform: none;
}


/* =========================================================
   HERO PRODUCT
   ========================================================= */

.hero-product {
  position: relative;

  width: 100%;
  height: min(650px, 70vh);

  min-height: 430px;

  display: grid;
  place-items: center;

  perspective: 1200px;

  min-width: 0;
}

.product-aura {
  position: absolute;

  width: min(480px, 70vw);
  height: min(480px, 70vw);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(157, 181, 99, .18),
      transparent 67%
    );

  animation:
    aura 6s ease-in-out infinite;
}

@keyframes aura {
  50% {
    transform: scale(1.1);
  }
}

.hero-product-shadow {
  position: absolute;

  width: min(290px, 55vw);
  height: 50px;

  bottom: 80px;

  border-radius: 50%;

  background: #000;

  filter: blur(25px);

  opacity: .45;
}

.hero-pouch {
  position: relative;

  width: 275px;
  height: 410px;

  max-width: 60vw;
  max-height: 58vh;

  overflow: hidden;

  border-radius: 10px 10px 25px 25px;

  background:
    linear-gradient(
      135deg,
      #315c39,
      #102c1c 52%,
      #071a10
    );

  box-shadow:
    30px 45px 80px rgba(0, 0, 0, .55),
    inset 10px 0 30px rgba(255, 255, 255, .04);

  transform:
    rotateY(-10deg)
    rotateZ(-4deg);

  transform-style: preserve-3d;

  animation:
    productFloat 6s ease-in-out infinite;
}

@keyframes productFloat {
  50% {
    transform:
      translateY(-16px)
      rotateY(7deg)
      rotateZ(-2deg);
  }
}

.pouch-top {
  height: 17px;

  border-bottom: 1px solid rgba(255, 255, 255, .16);

  background: rgba(255, 255, 255, .05);
}

.pouch-content {
  height: calc(100% - 17px);

  padding-top: 52px;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.pouch-logo {
  width: 85px;

  filter: brightness(0) invert(1);

  opacity: .95;
}

.pouch-small {
  margin-top: 13px;

  color: #d6c99f;

  font-size: 7px;
  letter-spacing: .22em;
}

.pouch-content h2 {
  margin-top: 55px;

  color: #f0e8d1;

  font-family: "Playfair Display", serif;
  font-size: 29px;
  font-weight: 500;
  line-height: .95;

  letter-spacing: .08em;
}

.pouch-line {
  width: 30px;
  height: 1px;

  margin: 20px 0;

  background: var(--gold);
}

.pouch-content small {
  color: #9caf9b;

  font-size: 6px;
  letter-spacing: .25em;
}

.pouch-shine {
  position: absolute;
  inset: -30%;

  background:
    linear-gradient(
      110deg,
      transparent 42%,
      rgba(255, 255, 255, .16) 50%,
      transparent 58%
    );

  transform:
    translateX(-70%)
    rotate(8deg);

  animation:
    pouchShine 6s 1s ease-in-out infinite;
}

@keyframes pouchShine {
  45%,
  100% {
    transform:
      translateX(70%)
      rotate(8deg);
  }
}


/* =========================================================
   FLOATING NOTES
   ========================================================= */

.floating-note {
  position: absolute;

  display: flex;
  align-items: center;

  gap: 10px;

  max-width: 35%;

  color: #afbdad;

  font-size: 7px;
  letter-spacing: .1em;
}

.floating-note span {
  color: var(--gold);
}

.note-one {
  top: 25%;
  right: 5%;
}

.note-two {
  bottom: 23%;
  left: 4%;
}


/* =========================================================
   HERO SCROLL
   ========================================================= */

.hero-scroll {
  position: absolute;

  left: 8vw;
  bottom: 25px;

  display: flex;
  align-items: center;

  gap: 13px;

  color: #718475;

  font-size: 7px;
  letter-spacing: .18em;
}

.hero-scroll i {
  position: relative;

  width: 40px;
  height: 1px;

  background: #718475;
}

.hero-scroll i::after {
  content: "";

  position: absolute;

  top: -2px;
  left: 0;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--gold);

  animation:
    scrollDot 1.8s infinite;
}

@keyframes scrollDot {
  to {
    left: 100%;
    opacity: 0;
  }
}


/* =========================================================
   INTRO STRIP
   ========================================================= */

.intro-strip {
  width: 100%;
  padding: 14px 8vw;
  background: var(--gold);
  overflow: hidden;
}


/* =========================================================
   TRACK
   ========================================================= */

.intro-track {
  width: 100%;

  display: flex;
  align-items: center;

  /* Desktop: distribute items normally */
  justify-content: space-between;

  gap: 40px;
}


/* =========================================================
   ITEMS
   ========================================================= */

.intro-item {
  flex: 0 0 auto;

  display: flex;
  align-items: center;

  gap: 15px;

  color: var(--forest);
}

.intro-item span {
  flex: 0 0 auto;

  font-size: 9px;
  opacity: .55;
}

.intro-item p {
  margin: 0;

  font-size: 11px;
  font-weight: 700;

  white-space: nowrap;
}


/* Hide duplicate items normally */

.intro-item-clone {
  display: none;
}


/* =========================================================
   WHEN CONTENT DOES NOT FIT
   JS adds .intro-strip--ticker
   ========================================================= */

.intro-strip--ticker {
  padding-left: 0;
  padding-right: 0;
}

.intro-strip--ticker .intro-track {
  width: max-content;

  justify-content: flex-start;

  animation: introTicker 24s linear infinite;

  will-change: transform;
}

.intro-strip--ticker .intro-item {
  padding: 14px 40px;
}

.intro-strip--ticker .intro-item-clone {
  display: flex;
}


/* =========================================================
   TICKER ANIMATION
   ========================================================= */

@keyframes introTicker {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

}


/* =========================================================
   TABLET / MOBILE
   Always ticker
   ========================================================= */

@media (max-width: 700px) {

  .intro-strip {
    padding: 0;
  }

  .intro-strip .intro-track {
    width: max-content;

    justify-content: flex-start;

    animation: introTicker 22s linear infinite;

    will-change: transform;
  }

  .intro-strip .intro-item {
    padding: 12px 28px;
    gap: 15px;
  }

  .intro-strip .intro-item-clone {
    display: flex;
  }

  .intro-item span {
    font-size: 8px;
  }

  .intro-item p {
    font-size: 10px;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {

  .intro-strip .intro-track {
    animation-duration: 20s;
  }

  .intro-strip .intro-item {
    padding: 11px 24px;
    gap: 13px;
  }

  .intro-item p {
    font-size: 9px;
  }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

  .intro-strip .intro-track {
    animation-duration: 18s;
  }

  .intro-strip .intro-item {
    padding: 10px 21px;
    gap: 11px;
  }

  .intro-item p {
    font-size: 8px;
  }

  .intro-item span {
    font-size: 6px;
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .intro-track {
    animation: none !important;
  }

}

/* =========================================================
   COMMON SECTIONS
   ========================================================= */

.section-wrap {
  width: var(--page-width);
  max-width: 1400px;

  margin: 0 auto;

  min-width: 0;
}

.products-section,
.process-section {
  padding: 140px 0;
}

.section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(260px, 350px);

  align-items: end;

  gap: 70px;

  margin-bottom: 80px;

  min-width: 0;
}

.section-kicker {
  color: #718066;
}

.section-title {
  max-width: 100%;

  margin-top: 20px;

  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 5.8vw, 6rem);
  font-weight: 500;
  line-height: .9;

  letter-spacing: -.05em;
}

.section-title em {
  color: var(--leaf);
  font-style: italic;
}

.section-intro {
  max-width: 100%;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.85;
}


/* =========================================================
   PRODUCTS — CATEGORY FILTER
   ========================================================= */

/* =========================================================
   GROVIA PRODUCTS
   Premium Catalogue System
   ========================================================= */

.products-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(197, 165, 101, .055),
      transparent 28%
    ),
    var(--paper);
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.products-section .section-heading {
  position: relative;
}

.products-section .section-kicker {
  position: relative;

  width: fit-content;

  font-size: 9px;
  letter-spacing: .24em;

  color: #718066;
}

.products-section .section-kicker::after {
  content: "";

  position: absolute;

  left: calc(100% + 13px);
  top: 50%;

  width: 34px;
  height: 1px;

  background: var(--gold);

  transform: scaleX(.35);
  transform-origin: left;

  opacity: .65;

  transition:
    transform .8s var(--ease);
}

.products-section .section-heading:hover
.section-kicker::after {
  transform: scaleX(1);
}


.products-section .section-title {
  margin-top: 22px;

  font-size: clamp(3.4rem, 6vw, 6.5rem);

  letter-spacing: -.055em;
}


/* =========================================================
   CATEGORY FILTER
   ========================================================= */

.category-filter {
  position: relative;

  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 9px;

  margin-bottom: 52px;

  padding-bottom: 1px;
}


/* ---------- PILL ---------- */

.filter-pill {
  position: relative;

  min-height: 43px;

  padding: 0 19px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  overflow: hidden;

  border: 1px solid rgba(24, 51, 38, .13);
  border-radius: 999px;

  background: rgba(255, 255, 255, .30);

  color: #718071;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;

  text-transform: uppercase;

  white-space: nowrap;

  transform: translateZ(0);

  transition:
    color .45s var(--ease),
    border-color .45s var(--ease),
    background .45s var(--ease),
    box-shadow .45s var(--ease),
    transform .45s var(--ease);
}


/* subtle inner light */

.filter-pill::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      110deg,
      transparent 20%,
      rgba(255,255,255,.25) 50%,
      transparent 80%
    );

  transform: translateX(-120%);

  transition:
    transform .8s var(--ease);
}


.filter-pill:hover::before {
  transform: translateX(120%);
}


.filter-pill:hover {
  border-color: rgba(197, 165, 101, .55);

  color: var(--forest);

  background: rgba(255,255,255,.62);

  transform: translateY(-2px);

  box-shadow:
    0 10px 25px rgba(24, 51, 38, .06);
}


.filter-pill.active {
  border-color: var(--forest);

  background: var(--forest);

  color: var(--cream);

  box-shadow:
    0 12px 28px rgba(16, 39, 27, .13);

  transform: translateY(-1px);
}


.filter-pill.active::before {
  display: none;
}


.filter-pill .count {
  position: relative;
  z-index: 1;

  color: var(--gold);

  font-size: 9px;

  transition:
    color .4s var(--ease),
    transform .4s var(--ease);
}


.filter-pill.active .count {
  color: var(--sage);
}


.filter-pill:hover .count {
  transform: translateY(-1px);
}


/* =========================================================
   PRODUCT GRID
   ========================================================= */

.product-grid {
  display: grid;

  grid-template-columns:
    repeat(5, minmax(0, 1fr));

  gap: clamp(16px, 1.7vw, 28px);

  align-items: stretch;
}


/* =========================================================
   PRODUCT CARD
   ========================================================= */

.product-card {
  position: relative;

  min-width: 0;

  display: flex;
  flex-direction: column;

  padding: 11px 11px 17px;

  overflow: hidden;

  border: 1px solid rgba(24, 51, 38, .10);
  border-radius: 22px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.96),
      rgba(255,255,255,.88)
    );

  box-shadow:
    0 4px 18px rgba(24, 51, 38, .025);

  opacity: 0;

  transform:
    translate3d(0, 28px, 0)
    scale(.985);

  will-change:
    opacity,
    transform;

  transition:
    opacity .75s var(--ease),
    transform .85s var(--ease),
    box-shadow .7s var(--ease),
    border-color .7s var(--ease);
}


/* animated state */

.product-card--enter {
  opacity: 1;

  transform:
    translate3d(0, 0, 0)
    scale(1);
}


/* =========================================================
   CARD HOVER
   ========================================================= */

@media (hover: hover) and (pointer: fine) {

  .product-card:hover {
    border-color: rgba(197, 165, 101, .42);

    box-shadow:
      0 22px 55px rgba(24, 51, 38, .10),
      0 4px 12px rgba(24, 51, 38, .04);

    transform:
      translate3d(0, -7px, 0)
      scale(1.008);
  }

}


/* =========================================================
   HIDDEN CARD
   ========================================================= */

.product-card[hidden] {
  display: none !important;
}

.product-card--hidden {
  display: none !important;
}


/* =========================================================
   PRODUCT IMAGE AREA
   ========================================================= */

.product-card-media {
  position: relative;

  width: 100%;

  aspect-ratio: 1 / 1;

  display: grid;
  place-items: center;

  overflow: hidden;

  border-radius: 15px;

  background:
    radial-gradient(
      circle at 50% 38%,
      rgba(255,255,255,.72),
      transparent 53%
    ),
    linear-gradient(
      145deg,
      #f0ecdd,
      #e8e1cc
    );

  isolation: isolate;
}


/* subtle premium glow */

.product-card-media::before {
  content: "";

  position: absolute;

  width: 72%;
  aspect-ratio: 1;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255,255,255,.72),
      transparent 68%
    );

  opacity: .8;

  transform: scale(.92);

  transition:
    transform 1s var(--ease),
    opacity 1s var(--ease);
}


/* soft bottom ground */

.product-card-media::after {
  content: "";

  position: absolute;

  left: 18%;
  right: 18%;
  bottom: 7%;

  height: 9%;

  border-radius: 50%;

  background: rgba(24, 51, 38, .13);

  filter: blur(13px);

  opacity: .45;

  z-index: -1;

  transition:
    transform .8s var(--ease),
    opacity .8s var(--ease);
}


/* =========================================================
   PRODUCT IMAGE
   ========================================================= */

.product-card-media img {
  position: relative;
  z-index: 2;

  display: block;

  width: 82%;
  height: 82%;

  object-fit: contain;

  filter:
    drop-shadow(
      0 18px 22px rgba(24, 51, 38, .13)
    );

  transform:
    translate3d(0, 3px, 0)
    scale(.985);

  transition:
    transform .9s var(--ease),
    filter .9s var(--ease);
}


@media (hover: hover) and (pointer: fine) {

  .product-card:hover
  .product-card-media::before {
    transform: scale(1.08);
    opacity: 1;
  }

  .product-card:hover
  .product-card-media::after {
    transform: scale(.88);
    opacity: .28;
  }

  .product-card:hover
  .product-card-media img {
    transform:
      translate3d(0, -6px, 0)
      scale(1.045);

    filter:
      drop-shadow(
        0 25px 28px rgba(24, 51, 38, .17)
      );
  }

}


/* =========================================================
   FALLBACK IMAGE
   ========================================================= */

.product-card-media.is-fallback {
  color: var(--forest-soft);

  font-size: 34px;

  opacity: .35;
}

.product-card-media.is-fallback img {
  display: none;
}


/* =========================================================
   PRODUCT TAG
   ========================================================= */

.product-card-tag {
  position: absolute;

  top: 10px;
  left: 10px;

  z-index: 5;

  padding: 5px 9px;

  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;

  background: rgba(16, 39, 27, .78);

  color: var(--cream);

  font-size: 7px;
  font-weight: 700;

  letter-spacing: .12em;

  text-transform: uppercase;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}


/* =========================================================
   CARD BODY
   ========================================================= */

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

  flex: 1;

  display: flex;
  flex-direction: column;

  padding:
    17px
    3px
    0;
}


/* =========================================================
   PRODUCT NAME
   ========================================================= */

.product-card-body h3 {
  font-family: "Playfair Display", serif;

  font-size: clamp(1rem, 1.15vw, 1.18rem);

  font-weight: 600;

  line-height: 1.15;

  letter-spacing: -.015em;

  color: var(--forest);

  transition:
    color .4s var(--ease),
    transform .4s var(--ease);
}


@media (hover: hover) and (pointer: fine) {

  .product-card:hover
  .product-card-body h3 {
    color: var(--forest-soft);

    transform: translateX(2px);
  }

}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.product-card-body p {
  margin-top: 8px;

  flex: 1;

  color: var(--muted);

  font-size: 11px;

  line-height: 1.7;

  letter-spacing: -.005em;
}


/* =========================================================
   CARD FOOT
   ========================================================= */

.product-card-foot {
  min-height: 36px;

  margin-top: 16px;
  padding-top: 12px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 10px;

  border-top:
    1px solid rgba(24, 51, 38, .10);
}


/* =========================================================
   PRICE
   ========================================================= */

.product-card-price {
  color: var(--forest);

  font-size: 11px;

  font-weight: 700;
}


/* =========================================================
   ENQUIRE CTA
   ========================================================= */

.product-card-cta {
  position: relative;

  display: inline-flex;
  align-items: center;

  gap: 7px;

  margin-left: auto;

  color: var(--gold);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: .09em;

  text-transform: uppercase;

  transition:
    color .4s var(--ease),
    transform .45s var(--ease);
}


.product-card-cta::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -4px;

  width: 0;
  height: 1px;

  background: var(--gold);

  transition:
    width .45s var(--ease);
}


.product-card-cta i {
  font-size: 8px;

  transition:
    transform .45s var(--ease);
}


.product-card-cta:hover {
  color: var(--earth);

  transform: translateX(2px);
}


.product-card-cta:hover::after {
  width: calc(100% - 15px);
}


.product-card-cta:hover i {
  transform:
    translate3d(2px, -2px, 0);
}


/* =========================================================
   PRODUCT EMPTY
   ========================================================= */

.product-empty {
  padding: 60px 20px;

  color: var(--muted);

  font-size: 12px;

  text-align: center;
}


/* =========================================================
   PRODUCT CARD
   ========================================================= */

.product-card {
  position: relative;

  display: flex;
  flex-direction: column;

  padding: 16px 16px 18px;

  border: 1px solid var(--line);
  border-radius: 20px;

  background: var(--white);

  min-width: 0;

  opacity: 1;
  transform: scale(1) translateY(0);

  will-change: opacity, transform;

  transition:
    opacity .45s var(--ease),
    transform .55s var(--ease),
    box-shadow .55s var(--ease),
    border-color .55s var(--ease);
}

.product-card:hover {
  border-color: var(--gold);

  box-shadow: 0 22px 44px rgba(24, 51, 38, .10);

  transform: translateY(-4px);
}

.product-card[hidden] {
  display: none !important;
}

.product-card--hidden {
  opacity: 0 !important;
  transform: scale(.94) !important;

  pointer-events: none;
}

.product-card-media {
  position: relative;

  aspect-ratio: 1 / 1;
  width: 100%;

  display: grid;
  place-items: center;

  overflow: hidden;

  border-radius: 14px;

  background: linear-gradient(160deg, var(--cream), #ece4cd);
}

.product-card-media img {
  width: 74%;
  height: 74%;

  object-fit: contain;

  filter: drop-shadow(0 16px 22px rgba(24, 51, 38, .18));

  transition: transform .7s var(--ease);
}

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

.product-card-media.is-fallback {
  color: var(--forest-soft);
  font-size: 34px;
  opacity: .35;
}

.product-card-media.is-fallback img {
  display: none;
}

.product-card-tag {
  position: absolute;

  top: 10px;
  left: 10px;

  padding: 5px 11px;

  border-radius: 999px;

  background: rgba(24, 51, 38, .82);
  color: var(--cream);

  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;

  padding-top: 14px;

  min-width: 0;
}

.product-card-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
}

.product-card-body p {
  margin-top: 6px;

  color: var(--muted);

  font-size: 12.5px;
  line-height: 1.6;

  flex: 1;
}

.product-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 10px;

  margin-top: 14px;
  padding-top: 12px;

  border-top: 1px solid var(--line);
}

.product-card-price {
  color: var(--forest);

  font-size: 12.5px;
  font-weight: 700;
}

.product-card-cta {
  display: inline-flex;
  align-items: center;

  gap: 6px;

  margin-left: auto;

  color: var(--gold);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;

  transition: transform .3s var(--ease);
}

.product-card-cta i {
  font-size: 9px;
}

.product-card-cta:hover {
  transform: translateX(3px);
}


/* =========================================================
   STORY
   ========================================================= */

.story-section {
  width: 100%;
  min-height: 720px;

  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  background: var(--forest);
  color: var(--white);
}

.story-image {
  position: relative;

  width: 100%;
  min-height: 720px;

  overflow: hidden;

  display: grid;
  place-items: center;

  background:
    radial-gradient(
      circle at 50% 45%,
      #385e37,
      #0b2115 65%
    );
}

.story-ring {
  width: min(460px, 70%);
  aspect-ratio: 1;

  border: 1px solid rgba(197, 165, 101, .3);

  border-radius: 50%;

  animation:
    spin 30s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.story-word {
  position: absolute;

  color: rgba(255, 255, 255, .025);

  font-family: "Playfair Display", serif;
  font-size: min(600px, 50vw);
  font-weight: 700;
  line-height: .7;

  pointer-events: none;
}

.story-stamp {
  position: absolute;

  display: flex;
  flex-direction: column;
  align-items: center;

  color: var(--gold);

  font-size: 8px;
  letter-spacing: .2em;
}

.story-stamp small {
  margin-top: 8px;

  color: #82927e;

  font-size: 6px;
}

.story-content {
  align-self: center;

  width: 100%;

  padding:
    120px
    clamp(40px, 10vw, 150px);

  min-width: 0;
}

.story-content .section-kicker {
  color: var(--gold);
}

.story-lead {
  max-width: 500px;

  margin-top: 30px;

  color: #d9e1d5;

  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}

.story-text,
.story-body {
  max-width: 500px;

  margin-top: 23px;

  color: #9dac9d;

  font-size: 15px;
  line-height: 1.9;
}

.story-signature {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-top: 45px;

  color: var(--gold);

  font-size: 8px;
  letter-spacing: .18em;
}

.story-signature span {
  width: 35px;
  height: 1px;

  flex: 0 0 auto;

  background: var(--gold);
}


/* =========================================================
   PROCESS
   ========================================================= */

.process-section {
  background: var(--cream);
}

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

.process-row {
  min-height: 125px;

  display: grid;
  grid-template-columns:
    80px
    minmax(0, 1fr)
    minmax(0, 1fr);

  align-items: center;

  gap: 20px;

  border-bottom: 1px solid var(--line);

  transition:
    padding .5s var(--ease),
    background .5s var(--ease);
}

.process-row:hover {
  padding-left: 20px;

  background: #eee8d8;
}

.process-row > span {
  color: var(--gold);

  font-size: 9px;
}

.process-row h3 {
  min-width: 0;

  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
}

.process-row p {
  min-width: 0;

  color: var(--muted);

  font-size: 11px;
  line-height: 1.7;
}


/* =========================================================
   FOUNDER
   ========================================================= */

.founder-section {
  width: 100%;
  min-height: 720px;

  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);
}

.founder-photo {
  position: relative;

  width: 100%;
  min-height: 720px;

  overflow: hidden;

  background: #d9d2bd;
}

.founder-photo-placeholder {
  position: absolute;

  inset: 10%;

  padding: 25px;

  display: grid;
  place-items: end start;

  border: 1px solid rgba(24, 51, 38, .18);

  background:
    linear-gradient(
      135deg,
      #d5ccb5,
      #aaa083
    );
}

.founder-photo-placeholder::before {
  content: "";

  position: absolute;

  width: 55%;
  height: 70%;

  left: 22%;
  bottom: 0;

  border-radius: 50% 50% 0 0;

  background:
    radial-gradient(
      circle at 50% 30%,
      #b6a58c,
      #695b4c 70%
    );

  opacity: .55;
}

.founder-photo-placeholder span {
  position: relative;
  z-index: 2;

  color: #59624e;

  font-size: 8px;
  letter-spacing: .2em;
}

.founder-content {
  align-self: center;

  width: 100%;

  padding:
    120px
    clamp(40px, 10vw, 150px);

  min-width: 0;
}

.founder-lead {
  max-width: 500px;

  margin-top: 30px;

  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.65;
}

.founder-text {
  max-width: 500px;

  margin-top: 22px;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.9;
}

.founder-name {
  display: flex;
  flex-direction: column;

  margin-top: 40px;
  padding-left: 17px;

  border-left: 1px solid var(--gold);
}

.founder-name strong {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 500;
}

.founder-name span {
  margin-top: 5px;

  color: #7c8677;

  font-size: 8px;
}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {
  position: relative;

  width: 100%;
  min-height: 620px;

  padding:
    80px
    7vw;

  display: grid;
  place-items: center;

  overflow: hidden;

  background: var(--forest);
  color: var(--white);

  text-align: center;
}

.cta-glow {
  position: absolute;

  width: min(700px, 90vw);
  height: min(700px, 90vw);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(101, 140, 71, .18),
      transparent 65%
    );
}

.cta-content {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 750px;

  min-width: 0;
}

.cta-content .section-kicker {
  justify-content: center;

  color: var(--gold);
}

.cta-title {
  max-width: 100%;

  margin-top: 22px;

  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 500;
  line-height: .9;

  letter-spacing: -.05em;
}

.cta-title em {
  color: var(--sage);

  font-style: italic;
}

.cta-text {
  max-width: 480px;

  margin: 25px auto 0;

  color: #9eaf9e;

  font-size: 12px;
  line-height: 1.8;
}

.cta-actions {
  margin-top: 32px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 25px;
}

.cta-phone {
  padding-bottom: 6px;

  border-bottom: 1px solid rgba(255, 255, 255, .3);

  color: #d2dacd;

  font-size: 9px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  position: relative;

  width: 100%;
  min-height: 600px;

  overflow: hidden;

  background: #06140d;
  color: var(--white);
}


/* =========================================================
   FOOTER WORD
   ========================================================= */

.footer-word {
  position: absolute;

  z-index: 0;

  left: 50%;
  bottom: 110px;

  width: max-content;
  max-width: none;

  white-space: nowrap;

  pointer-events: none;
  user-select: none;

  color: rgba(255, 255, 255, .035);

  font-family: "DM Sans", sans-serif;
  font-size: clamp(110px, 22vw, 460px);
  font-weight: 800;
  line-height: .72;

  letter-spacing: -.08em;

  transform:
    translate3d(-50%, 110%, 0);

  opacity: 0;

  transition:
    transform 1.4s var(--ease),
    opacity .6s ease;
}

.footer-word span {
  display: inline-block;

  opacity: 0;

  transform: translateY(100%);

  transition:
    transform 1.2s var(--ease),
    opacity .8s ease;
}

.footer.revealed .footer-word {
  opacity: 1;

  transform:
    translate3d(-50%, 0, 0);
}

.footer.revealed .footer-word span {
  opacity: 1;

  transform: translateY(0);
}

.footer.revealed .footer-word span:nth-child(1) {
  transition-delay: .15s;
}

.footer.revealed .footer-word span:nth-child(2) {
  transition-delay: .30s;
}

.footer.revealed .footer-word span:nth-child(3) {
  transition-delay: .45s;
}

.footer.revealed .footer-word span:nth-child(4) {
  transition-delay: .60s;
}

.footer.revealed .footer-word span:nth-child(5) {
  transition-delay: .75s;
}

.footer.revealed .footer-word span:nth-child(6) {
  transition-delay: .90s;
}


/* =========================================================
   FOOTER INNER
   ========================================================= */

.footer-inner {
  position: relative;
  z-index: 2;

  width: var(--page-width);
  max-width: 1400px;

  min-height: 600px;

  margin: 0 auto;

  padding:
    100px
    0
    35px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-width: 0;
}

.footer-top {
  display: grid;
  grid-template-columns:
    1.5fr
    1fr
    1fr
    1.2fr;

  gap: 70px;

  min-width: 0;
}

.footer-logo {
  display: block;

  width: 190px;
  max-width: 100%;
}

.footer-logo img {
  width: 100%;

  filter: brightness(0) invert(1);
}

.footer-brand {
  min-width: 0;
}

.footer-brand p {
  max-width: 230px;

  margin-top: 25px;

  color: #849484;

  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.footer-label {
  display: block;

  margin-bottom: 25px;

  color: #667766;

  font-size: 10px;
  letter-spacing: .22em;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  min-width: 0;
}

.footer-column > a {
  max-width: 100%;

  margin-bottom: 13px;

  color: #bfc9bd;

  font-size: 14px;

  overflow-wrap: anywhere;

  transition:
    color .35s ease,
    transform .35s var(--ease);
}

.footer-column > a:hover {
  color: var(--gold);

  transform: translateX(5px);
}

.footer-contact > a {
  font-size: 14px;
}

.footer-socials {
  display: flex;

  flex-wrap: wrap;

  gap: 15px;

  margin-top: 22px;
}

.footer-socials a {
  width: 30px;
  height: 30px;

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, .14);

  color: #aeb9ac;

  font-size: 7px;

  transition:
    background .4s var(--ease),
    color .4s var(--ease),
    transform .4s var(--ease);
}

.footer-socials a:hover {
  background: var(--gold);
  color: var(--forest);

  transform: translateY(-4px);
}

.footer-line {
  height: 1px;

  margin: 70px 0 25px;

  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .18),
      transparent
    );
}

.footer-bottom {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto
    minmax(0, 1fr);

  align-items: center;

  gap: 20px;

  color: #657466;

  font-size: 9px;
  letter-spacing: .1em;

  min-width: 0;
}

.footer-bottom > * {
  min-width: 0;

  overflow-wrap: anywhere;
}

.footer-bottom span:nth-child(2) {
  color: var(--gold);
}

#backTop {
  justify-self: end;

  width: 38px;
  height: 38px;

  flex: 0 0 auto;

  border: 1px solid rgba(197, 165, 101, .35);

  color: var(--gold);

  transition:
    background .4s var(--ease),
    color .4s var(--ease),
    transform .4s var(--ease);
}

#backTop:hover {
  background: var(--gold);
  color: var(--forest);

  transform: translateY(-3px);
}


/* =========================================================
   LARGE LAPTOP
   1200px AND BELOW
   ========================================================= */

@media (max-width: 1200px) {

  .hero {
    padding-left: 6vw;
    padding-right: 6vw;

    gap: 35px;
  }

  .hero-product {
    height: 580px;
  }

  .hero-pouch {
    width: 250px;
    height: 375px;
  }

  .section-wrap,
  .footer-inner {
    width: 88vw;
  }

  .section-heading {
    gap: 45px;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 22px;
  }

  .story-content,
  .founder-content {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .footer-top {
    gap: 45px;
  }
}


/* =========================================================
   TABLET / SMALL LAPTOP
   1000px AND BELOW
   ========================================================= */

@media (max-width: 1000px) {

  /* ---------- HEADER ---------- */

  .header {
    height: 88px;
  }

  .header.scrolled {
    height: 82px;
  }

  .header-inner {
    width: 90vw;
  }

  .brand {
    width: 145px;
  }

  .desktop-nav,
  .header-button {
    display: none;
  }

  .menu-button {
    display: flex;
  }


  /* ---------- HERO ---------- */

  .hero {
    min-height: auto;

    padding:
      145px
      7vw
      90px;

    grid-template-columns: 1fr;

    gap: 30px;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero-title {
    font-size: clamp(3.5rem, 9vw, 6rem);
  }

  .hero-product {
    width: 100%;
    height: 500px;

    min-height: 0;

    margin-top: 0;
  }

  .hero-scroll {
    left: 7vw;
  }


  /* ---------- INTRO ---------- */

  .intro-strip {
    padding:
      22px
      7vw;
  }


  /* ---------- COMMON SECTIONS ---------- */

  .section-wrap,
  .footer-inner {
    width: 86vw;
  }

  .products-section,
  .process-section {
    padding:
      110px
      0;
  }

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

    gap: 25px;

    margin-bottom: 60px;
  }

  .section-title {
    font-size: clamp(3rem, 8vw, 5rem);
  }


  /* ---------- PRODUCTS ---------- */

  .category-filter {
    margin-bottom: 36px;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 18px;
  }


  /* ---------- STORY ---------- */

  .story-section,
  .founder-section {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(0, 1fr);
  }

  .story-image,
  .founder-photo {
    min-height: 600px;
  }

  .story-content,
  .founder-content {
    padding:
      80px
      6vw;
  }


  /* ---------- PROCESS ---------- */

  .process-row {
    grid-template-columns:
      65px
      minmax(0, 1fr)
      minmax(0, 1fr);

    min-height: 115px;
  }

  .process-row h3 {
    font-size: 26px;
  }


  /* ---------- CTA ---------- */

  .cta-section {
    min-height: 560px;

    padding:
      80px
      7vw;
  }


  /* ---------- FOOTER ---------- */

  .footer-inner {
    min-height: 600px;
  }

  .footer-top {
    grid-template-columns:
      1fr
      1fr;

    gap: 50px 40px;
  }
}


/* =========================================================
   TABLET PORTRAIT
   800px AND BELOW
   ========================================================= */

@media (max-width: 800px) {

  .hero {
    padding-top: 135px;
  }

  .hero-product {
    height: 460px;
  }

  .category-filter {
    flex-wrap: nowrap;
    overflow-x: auto;

    padding-bottom: 4px;

    scrollbar-width: none;
  }

  .category-filter::-webkit-scrollbar {
    display: none;
  }

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

  .story-section,
  .founder-section {
    grid-template-columns: 1fr;
  }

  .story-image,
  .founder-photo {
    min-height: 560px;
  }

  .story-content,
  .founder-content {
    padding:
      90px
      8vw;
  }

  .story-lead,
  .story-text,
  .story-body,
  .founder-lead,
  .founder-text {
    max-width: 650px;
  }

  .process-row {
    grid-template-columns:
      60px
      minmax(0, 1fr)
      minmax(0, 1fr);
  }
}


/* =========================================================
   MOBILE
   700px AND BELOW
   ========================================================= */

@media (max-width: 700px) {

  :root {
    --page-width: 88vw;
    --mobile-padding: 6vw;
  }


  /* ---------- HEADER ---------- */

  .header {
    height: 78px;
  }

  .header.scrolled {
    height: 74px;
  }

  .header-inner {
    width: 88vw;
  }

  .brand {
    width: 125px;
  }

  .brand img {
    max-height: 52px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }


  /* ---------- MOBILE MENU ---------- */

  .mobile-menu-inner {
    width: 100%;

    padding:
      20px
      6vw
      24px;
  }

  .mobile-menu-top img {
    width: 125px;
  }

  .mobile-menu-top button {
    width: 42px;
    height: 42px;
  }

  .mobile-menu nav a {
    padding: 15px 0;

    font-size: clamp(26px, 8vw, 34px);
  }

  .mobile-menu-footer {
    font-size: 7px;
  }


  /* ---------- HERO ---------- */

  .hero {
    padding:
      120px
      6vw
      70px;

    display: flex;
    flex-direction: column;

    align-items: stretch;

    gap: 20px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-kicker,
  .section-kicker {
    font-size: 8px;
    letter-spacing: .18em;
  }

  .hero-title {
    margin-top: 19px;

    font-size: clamp(2.65rem, 12vw, 4.2rem);

    line-height: .92;

    letter-spacing: -.045em;
  }

  .hero-description {
    margin-top: 24px;

    font-size: 12px;
    line-height: 1.8;
  }

  .hero-actions {
    width: 100%;

    margin-top: 25px;

    gap: 18px;
  }

  .hero-product {
    height: 390px;

    margin-top: 5px;
  }

  .hero-pouch {
    width: 190px;
    height: 295px;

    max-width: 58vw;
    max-height: none;
  }

  .pouch-content {
    padding-top: 35px;
  }

  .pouch-logo {
    width: 65px;
  }

  .pouch-content h2 {
    margin-top: 38px;

    font-size: 23px;
  }

  .hero-product-shadow {
    width: 210px;

    bottom: 45px;
  }

  .product-aura {
    width: 330px;
    height: 330px;
  }

  .floating-note {
    max-width: 32%;

    font-size: 6px;
  }

  .note-one {
    top: 21%;
    right: 1%;
  }

  .note-two {
    bottom: 18%;
    left: 1%;
  }

  .hero-scroll {
    display: none;
  }


  /* ---------- INTRO ---------- */

  .intro-strip {
    grid-template-columns: 1fr;

    padding:
      24px
      6vw;

    gap: 14px;
  }

  .intro-item {
    gap: 12px;
  }

  .intro-item p {
    font-size: 10px;
  }


  /* ---------- SECTIONS ---------- */

  .section-wrap,
  .footer-inner {
    width: 88vw;
  }

  .products-section,
  .process-section {
    padding:
      80px
      0;
  }

  .section-heading {
    gap: 20px;

    margin-bottom: 45px;
  }

  .section-title {
    margin-top: 16px;

    font-size: clamp(2.55rem, 11vw, 3.6rem);

    line-height: .95;

    letter-spacing: -.04em;
  }

  .section-intro {
    font-size: 12px;
    line-height: 1.8;
  }


  /* ---------- PRODUCTS ---------- */

  .category-filter {
    gap: 8px;

    margin-bottom: 28px;
  }

  .filter-pill {
    min-height: 36px;

    padding: 0 16px;

    font-size: 10px;
  }

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

  .product-card {
    padding: 10px 10px 14px;

    border-radius: 16px;
  }

  .product-card-tag {
    font-size: 7px;
    padding: 4px 9px;
  }

  .product-card-body h3 {
    font-size: .92rem;
  }

  .product-card-body p {
    font-size: 11px;
  }

  .product-card-foot {
    margin-top: 10px;
    padding-top: 10px;
  }


  /* ---------- STORY ---------- */

  .story-section {
    min-height: auto;
  }

  .story-image {
    min-height: min(500px, 110vw);
  }

  .story-ring {
    width: 65vw;
    max-width: 340px;
  }

  .story-word {
    font-size: 55vw;
  }

  .story-content {
    padding:
      75px
      6vw
      85px;
  }

  .story-lead {
    margin-top: 23px;

    font-size: 16px;
    line-height: 1.65;
  }

  .story-text,
  .story-body {
    margin-top: 19px;

    font-size: 12px;
    line-height: 1.85;
  }

  .story-signature {
    margin-top: 35px;
  }


  /* ---------- PROCESS ---------- */

  .process-list {
    width: 100%;
  }

  .process-row {
    min-height: 0;

    padding:
      25px
      0;

    grid-template-columns:
      42px
      minmax(0, 1fr);

    gap: 8px 15px;

    align-items: start;
  }

  .process-row:hover {
    padding-left: 8px;
  }

  .process-row > span {
    padding-top: 3px;
  }

  .process-row h3 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .process-row p {
    grid-column: 2;

    font-size: 10px;
    line-height: 1.7;
  }


  /* ---------- FOUNDER ---------- */

  .founder-section {
    min-height: auto;
  }

  .founder-photo {
    min-height: min(500px, 110vw);
  }

  .founder-photo-placeholder {
    inset: 8%;
  }

  .founder-content {
    padding:
      75px
      6vw
      85px;
  }

  .founder-lead {
    margin-top: 23px;

    font-size: 16px;
    line-height: 1.65;
  }

  .founder-text {
    margin-top: 18px;

    font-size: 11px;
    line-height: 1.85;
  }

  .founder-name {
    margin-top: 32px;
  }


  /* ---------- CTA ---------- */

  .cta-section {
    min-height: 520px;

    padding:
      70px
      6vw;
  }

  .cta-glow {
    width: 500px;
    height: 500px;
  }

  .cta-title {
    margin-top: 18px;

    font-size: clamp(2.7rem, 11vw, 4.5rem);

    line-height: .95;
  }

  .cta-text {
    margin-top: 20px;

    font-size: 11px;
    line-height: 1.8;
  }

  .cta-actions {
    margin-top: 26px;

    gap: 18px;
  }


  /* ---------- FOOTER ---------- */

  .footer {
    min-height: 620px;
  }

  .footer-inner {
    min-height: 620px;

    padding:
      75px
      0
      28px;
  }

  .footer-top {
    grid-template-columns: 1fr;

    gap: 38px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    width: 110px;

    margin: 0 auto;
  }

  .footer-brand p {
    max-width: 300px;

    margin-top: 18px;
    margin-left: auto;
    margin-right: auto;

    font-size: 14px;
  }

  .footer-label {
    margin-bottom: 18px;

    font-size: 8px;
  }

  .footer-column > a,
  .footer-contact > a {
    font-size: 13px;
  }

  .footer-line {
    margin:
      45px
      0
      20px;
  }

  .footer-bottom {
    grid-template-columns:
      minmax(0, 1fr)
      auto;

    gap: 12px;

    font-size: 8px;
  }

  .footer-bottom span:nth-child(2) {
    display: none;
  }

  #backTop {
    width: 36px;
    height: 36px;
  }

  .footer.revealed .footer-word {
    transform:
      translate3d(-50%, 0, 0);
  }
}


/* =========================================================
   SMALL MOBILE
   430px AND BELOW
   ========================================================= */

@media (max-width: 430px) {

  .header {
    height: 76px;
  }

  .header.scrolled {
    height: 72px;
  }

  .header-inner {
    width: 88vw;
  }

  .brand {
    width: 120px;
  }

  .brand img {
    max-height: 48px;
  }

  .menu-button {
    width: 41px;
    height: 41px;
  }


  /* ---------- HERO ---------- */

  .hero {
    padding-top: 110px;
  }

  .hero-title {
    font-size: clamp(2.45rem, 13vw, 3.35rem);
  }

  .hero-description {
    font-size: 11px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;

    gap: 13px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: fit-content;
    max-width: 100%;
  }

  .hero-product {
    height: 350px;
  }

  .hero-pouch {
    width: 180px;
    height: 280px;
  }

  .pouch-content {
    padding-top: 32px;
  }

  .pouch-content h2 {
    margin-top: 35px;

    font-size: 22px;
  }

  .floating-note {
    max-width: 29%;

    font-size: 5.5px;
  }


  /* ---------- SECTIONS ---------- */

  .section-title {
    font-size: clamp(2.35rem, 12vw, 3.1rem);
  }

  .section-intro {
    font-size: 11px;
  }

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

  .product-card-body h3 {
    font-size: .86rem;
  }

  .product-card-body p {
    font-size: 10.5px;
  }


  /* ---------- STORY ---------- */

  .story-image {
    min-height: 400px;
  }

  .story-content,
  .founder-content {
    padding-left: 6vw;
    padding-right: 6vw;
  }


  /* ---------- CTA ---------- */

  .cta-title {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .cta-actions {
    flex-direction: column;
  }


  /* ---------- FOOTER ---------- */

  .footer {
    min-height: 600px;
  }

  .footer-inner {
    min-height: 600px;

    padding-top: 65px;
  }

  .footer-column > a {
    font-size: 13px;
  }
}


/* =========================================================
   VERY SMALL PHONES
   360px AND BELOW
   ========================================================= */

@media (max-width: 360px) {

  .header {
    height: 72px;
  }

  .header.scrolled {
    height: 70px;
  }

  .brand {
    width: 110px;
  }

  .brand img {
    max-height: 80px;
  }

  .menu-button {
    width: 39px;
    height: 39px;
  }


  /* ---------- MOBILE MENU ---------- */

  .mobile-menu-inner {
    padding:
      18px
      6vw
      20px;
  }

  .mobile-menu-top img {
    max-height: 80px;
  }

  .mobile-menu-top button {
    width: 40px;
    height: 40px;
  }

  .mobile-menu nav a {
    padding: 12px 0;

    font-size: 27px;
  }

  .mobile-menu-footer {
    font-size: 6px;
  }


  /* ---------- HERO ---------- */

  .hero {
    padding-top: 105px;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .hero-description {
    font-size: 10.5px;
  }

  .hero-product {
    height: 320px;
  }

  .hero-pouch {
    width: 165px;
    height: 255px;
  }

  .pouch-content {
    padding-top: 28px;
  }

  .pouch-logo {
    width: 58px;
  }

  .pouch-content h2 {
    margin-top: 30px;

    font-size: 20px;
  }

  .product-aura {
    width: 280px;
    height: 280px;
  }

  .hero-product-shadow {
    width: 180px;

    bottom: 35px;
  }


  /* ---------- SECTIONS ---------- */

  .products-section,
  .process-section {
    padding:
      65px
      0;
  }

  .section-title {
    font-size: 2.25rem;
  }

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

  .product-card {
    padding: 8px 8px 12px;

    border-radius: 14px;
  }

  .product-card-body h3 {
    font-size: .8rem;
  }

  .product-card-body p {
    font-size: 10px;
  }


  /* ---------- STORY ---------- */

  .story-image {
    min-height: 350px;
  }

  .story-content,
  .founder-content {
    padding:
      60px
      6vw
      70px;
  }

  .story-lead,
  .founder-lead {
    font-size: 15px;
  }

  .story-text,
  .story-body,
  .founder-text {
    font-size: 10.5px;
  }


  /* ---------- PROCESS ---------- */

  .process-row {
    grid-template-columns:
      35px
      minmax(0, 1fr);

    gap: 7px 12px;

    padding:
      22px
      0;
  }

  .process-row h3 {
    font-size: 1.35rem;
  }

  .process-row p {
    font-size: 9.5px;
  }


  /* ---------- CTA ---------- */

  .cta-section {
    min-height: 480px;

    padding:
      60px
      6vw;
  }

  .cta-title {
    font-size: 2.25rem;
  }

  .cta-text {
    font-size: 10px;
  }


  /* ---------- FOOTER ---------- */

  .footer {
    min-height: 580px;
  }

  .footer-inner {
    min-height: 580px;

    padding-top: 55px;
  }

  .footer-brand p {
    font-size: 13px;
  }

  .footer-bottom {
    gap: 8px;

    font-size: 7px;
  }

  #backTop {
    width: 34px;
    height: 34px;
  }
}


/* =========================================================
   LANDSCAPE MOBILE
   ========================================================= */

@media (max-width: 900px) and (orientation: landscape) {

  .hero {
    min-height: auto;

    padding-top: 110px;
    padding-bottom: 70px;
  }

  .hero-product {
    height: 400px;
  }

  .hero-pouch {
    max-height: 320px;
  }

  .mobile-menu-inner {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .mobile-menu nav {
    margin: 20px 0;
  }

  .mobile-menu nav a {
    padding: 10px 0;

    font-size: 25px;
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* =========================================================
   FINAL OVERFLOW SAFETY
   ========================================================= */

.header-inner,
.hero,
.hero-content,
.hero-product,
.intro-strip,
.section-wrap,
.section-heading,
.product-grid,
.product-card,
.story-section,
.story-content,
.founder-section,
.founder-content,
.cta-content,
.footer-inner,
.footer-top,
.footer-column,
.footer-bottom {
  min-width: 0;
}

.product-card-body,
.story-content,
.founder-content,
.footer-column {
  overflow-wrap: break-word;
}


/* =========================================================
   TOUCH DEVICES
   Disable hover movement that can feel awkward on mobile
   ========================================================= */

@media (hover: none) {

  .product-card:hover {
    transform: none;
    box-shadow: none;
  }

  .product-card:hover .product-card-media img {
    transform: none;
  }

  .button-primary:hover,
  .button-light:hover,
  .header-button:hover,
  #backTop:hover {
    transform: none;
  }

  .process-row:hover {
    padding-left: 0;
    background: transparent;
  }
}

/* =========================================================
   FOOTER FINAL FIX
   Prevent footer content from being cut off
   ========================================================= */

.footer {
  position: relative;
  width: 100%;
  min-height: auto;
  height: auto;
  overflow: visible;
  background: #06140d;
  color: var(--white);
}

.footer-inner {
  position: relative;
  z-index: 2;

  width: var(--page-width);
  max-width: 1400px;

  min-height: 0;
  height: auto;

  margin: 0 auto;
  padding: 90px 0 35px;

  display: block;
}

.footer-top {
  display: grid;

  grid-template-columns:
    1.5fr
    1fr
    1fr
    1.2fr;

  gap: 60px;

  width: 100%;
}

.footer-brand,
.footer-column {
  min-width: 0;
}

.footer-logo {
  display: block;
  width: 190px;
  max-width: 100%;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-brand p {
  max-width: 230px;
  margin-top: 25px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column > a {
  display: block;
  margin-bottom: 13px;
  max-width: 100%;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 22px;
}

.footer-line {
  width: 100%;
  height: 1px;
  margin: 65px 0 25px;
}

.footer-bottom {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto
    minmax(0, 1fr);

  align-items: center;

  width: 100%;
  min-height: 40px;

  gap: 20px;

  margin: 0;
}

.footer-bottom span {
  display: block !important;
  min-width: 0;
}

.footer-bottom span:nth-child(1) {
  text-align: left;
}

.footer-bottom span:nth-child(2) {
  text-align: center;
}

#backTop {
  justify-self: end;

  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  flex-shrink: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .footer-inner {
    width: 88vw;
    padding-top: 75px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 45px 35px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .footer {
    min-height: 0;
    height: auto;
  }

  .footer-inner {
    width: 88vw;
    min-height: 0;
    padding: 65px 0 30px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 42px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-logo {
    width: 160px;
  }

  .footer-brand p {
    max-width: 280px;
    margin-top: 18px;
    font-size: 14px;
  }

  .footer-label {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .footer-column > a,
  .footer-contact > a {
    font-size: 13px;
  }

  .footer-line {
    margin: 45px 0 22px;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    gap: 15px;
    align-items: center;
  }

  .footer-bottom span:nth-child(1) {
    text-align: left;
  }

  .footer-bottom span:nth-child(2) {
    display: block !important;
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }

  #backTop {
    width: 38px;
    height: 38px;
    justify-self: end;
    grid-column: 2;
    grid-row: 1;
  }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 430px) {

  .footer-inner {
    width: 88vw;
    padding: 55px 0 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo {
    width: 160px;
  }

  .footer-brand p {
    font-size: 13px;
  }

  .footer-line {
    margin: 40px 0 20px;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .footer-bottom span:nth-child(1) {
    font-size: 8px;
  }

  .footer-bottom span:nth-child(2) {
    font-size: 8px;
  }

  #backTop {
    width: 36px;
    height: 36px;
  }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 360px) {

  .footer-inner {
    width: 88vw;
    padding-top: 50px;
  }

  .footer-logo {
    width: 145px;
  }

  .footer-top {
    gap: 32px;
  }

  .footer-bottom {
    gap: 10px;
  }

}

/* =========================================================
   FOOTER — HORIZONTAL MOBILE COLUMNS
   ========================================================= */

@media (max-width: 700px) {

  .footer-top {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
  }

  /* Logo stays full width on top */
  .footer-brand {
    grid-column: 1 / -1;
  }

  /* Explore / Business / Connect */
  .footer-column {
    width: 100%;
    min-width: 0;
    align-items: flex-start;
  }

  .footer-label {
    font-size: 8px;
    margin-bottom: 16px;
    white-space: nowrap;
  }

  .footer-column > a,
  .footer-contact > a {
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 10px;
    overflow-wrap: anywhere;
  }

  .footer-socials {
    gap: 7px;
    margin-top: 12px;
  }

  .footer-socials a {
    width: 27px;
    height: 27px;
  }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 430px) {

  .footer-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .footer-label {
    font-size: 7px;
    letter-spacing: .12em;
  }

  .footer-column > a,
  .footer-contact > a {
    font-size: 10px;
  }

  .footer-socials {
    gap: 5px;
  }

  .footer-socials a {
    width: 25px;
    height: 25px;
  }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 360px) {

  .footer-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
  }

  .footer-label {
    font-size: 6px;
  }

  .footer-column > a,
  .footer-contact > a {
    font-size: 9px;
  }

  .footer-socials {
    gap: 4px;
  }

  .footer-socials a {
    width: 23px;
    height: 23px;
  }
}

/* =========================================================
   FINAL FOOTER / OVERFLOW FIX
   Prevent unwanted page scrolling caused by footer artwork
   ========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.footer {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.footer-inner {
  position: relative;
  width: calc(100% - 32px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Decorative GROVIA word must never create page overflow */
.footer-word {
  position: absolute;
  max-width: 100%;
  overflow: hidden;
  pointer-events: none;
}

/* Keep footer columns horizontally aligned on desktop */
.footer-top {
  display: grid;
  grid-template-columns:
    minmax(0, 1.5fr)
    minmax(0, 0.8fr)
    minmax(0, 0.8fr)
    minmax(0, 1.2fr);
  gap: 40px;
  width: 100%;
  max-width: 100%;
}

.footer-column,
.footer-brand,
.footer-contact {
  min-width: 0;
}

/* Prevent long email/phone from creating horizontal overflow */
.footer a,
.footer p,
.footer span {
  overflow-wrap: anywhere;
  word-break: normal;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 30px;
  }

}


/* =========================================================
   PHONE
   ========================================================= */

@media (max-width: 600px) {

  .footer {
    overflow: hidden;
  }

  .footer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  /*
     Keep Explore / Business / Connect properly aligned
     instead of forcing every item into one long vertical
     column.
  */
  .footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column {
    width: 100%;
  }

  .footer-contact {
    width: 100%;
  }

  /*
     Move decorative GROVIA word slightly lower,
     but keep it inside the footer so it cannot create
     an additional page scroll.
  */
  .footer-word {
    bottom: -5px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .footer-bottom {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
  }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 400px) {

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
  }

  .footer-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-bottom {
    gap: 12px;
  }

}

/* =========================================================
   FINAL MOBILE FOOTER ALIGNMENT
   Explore / Business / Connect = HORIZONTAL
   ========================================================= */

@media (max-width: 700px) {

  .footer-top {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-items: start !important;
  }

  /* Logo remains above the 3 columns */
  .footer-brand {
    grid-column: 1 / -1 !important;
  }

  .footer-column {
    width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .footer-label {
    font-size: 11px !important;
    margin-bottom: 14px !important;
    white-space: nowrap !important;
  }

  .footer-column > a,
  .footer-contact > a {
    font-size: 11px !important;
    line-height: 1.5 !important;
    margin-bottom: 9px !important;
    overflow-wrap: anywhere !important;
  }

  .footer-socials {
    display: flex !important;
    gap: 6px !important;
    margin-top: 10px !important;
  }

  .footer-socials a {
    width: 26px !important;
    height: 26px !important;
  }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 430px) {

  .footer-top {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .footer-label {
    font-size: 10px !important;
    letter-spacing: .08em !important;
  }

  .footer-column > a,
  .footer-contact > a {
    font-size: 10px !important;
  }

  .footer-socials {
    gap: 5px !important;
  }

  .footer-socials a {
    width: 24px !important;
    height: 24px !important;
  }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 360px) {

  .footer-top {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .footer-label {
    font-size: 9px !important;
  }

  .footer-column > a,
  .footer-contact > a {
    font-size: 9px !important;
  }

  .footer-socials {
    gap: 4px !important;
  }

  .footer-socials a {
    width: 22px !important;
    height: 22px !important;
  }
}

/* =========================================================
   MOBILE FOOTER WORD — KEEP FULLY INSIDE SCREEN
   ========================================================= */

@media (max-width: 700px) {

  .footer {
    overflow: hidden !important;
  }

  .footer-word {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;

    width: 100% !important;
    max-width: 100% !important;

    white-space: nowrap !important;
    text-align: center !important;

    pointer-events: none !important;
  }
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.footer-socials a {
  width: 32px;
  height: 32px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255,255,255,.14);

  color: #aeb9ac;
  text-decoration: none;

  font-size: 13px;

  transition:
    background .35s ease,
    color .35s ease,
    transform .35s ease,
    border-color .35s ease;
}

.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest);
  transform: translateY(-3px);
}

/* =========================================================
   PRODUCT FILTER ANIMATION
   ========================================================= */

.product-card {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition:
        opacity 0.55s ease,
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.product-card--enter {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.product-card--hidden {
    display: none !important;
}


/* =========================================================
   PRODUCT IMAGE
   ========================================================= */

.product-card-media img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0;
    transition:
        opacity 0.5s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card-media img[src] {
    opacity: 1;
}

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


/* =========================================================
   IMAGE FALLBACK
   ========================================================= */

.product-card-media.is-fallback img {
    display: none;
}

.product-card-media .fallback-icon {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    opacity: 0.35;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

.reduced-motion .product-card {
    transition: none;
    transform: none;
}

.reduced-motion .product-card-media img {
    transition: none;
}

@media (prefers-reduced-motion: reduce) {

    .product-card {
        transition: none;
        transform: none;
    }

    .product-card-media img {
        transition: none;
    }

}

/* =========================================================
   REAL POUCH PRODUCT IMAGE
========================================================= */

.hero-pouch {
  position: relative;
  width: min(390px, 30vw);
  aspect-ratio: 0.72;
  transform-style: preserve-3d;
  isolation: isolate;
}

/* Real PNG wrapper */
.pouch-content {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: visible;
}

/* Actual pouch PNG */
.pouch-real-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  max-width: none;

  user-select: none;
  -webkit-user-drag: none;

  filter:
    drop-shadow(0 28px 35px rgba(7, 22, 15, 0.18))
    drop-shadow(0 10px 12px rgba(7, 22, 15, 0.10));

  transform: translateZ(20px);

  transition:
    transform 0.7s var(--ease),
    filter 0.7s var(--ease);
}

/* Keep the real pouch above the decorative layers */
.hero-pouch:hover .pouch-real-image {
  transform:
    translateZ(25px)
    scale(1.015);

  filter:
    drop-shadow(0 34px 42px rgba(7, 22, 15, 0.22))
    drop-shadow(0 12px 16px rgba(7, 22, 15, 0.12));
}


/* =========================================================
   POUCH TOP
========================================================= */

.pouch-top {
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;

  height: 10px;

  z-index: 3;

  border-radius: 999px;

  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.28),
    rgba(255,255,255,0.08)
  );

  opacity: 0.55;

  pointer-events: none;
}


/* =========================================================
   POUCH SHINE
========================================================= */

.pouch-shine {
  position: absolute;
  inset: 0;

  z-index: 4;

  border-radius: inherit;

  background:
    linear-gradient(
      110deg,
      transparent 20%,
      rgba(255,255,255,0.08) 42%,
      rgba(255,255,255,0.20) 50%,
      rgba(255,255,255,0.06) 58%,
      transparent 76%
    );

  background-size: 220% 100%;
  background-position: 150% 0;

  pointer-events: none;

  mix-blend-mode: screen;

  animation: pouchShine 7s ease-in-out infinite;
}

@keyframes pouchShine {
  0%,
  55% {
    background-position: 150% 0;
    opacity: 0;
  }

  65% {
    opacity: 0.5;
  }

  82%,
  100% {
    background-position: -80% 0;
    opacity: 0;
  }
}

/* =========================================================
   REAL POUCH PRODUCT IMAGE
========================================================= */

.hero-pouch {
  position: relative;
  width: min(390px, 30vw);
  aspect-ratio: 0.72;
  transform-style: preserve-3d;
  isolation: isolate;
}

/* Real PNG wrapper */
.pouch-content {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: visible;
}

/* Actual pouch PNG */
.pouch-real-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  max-width: none;

  user-select: none;
  -webkit-user-drag: none;

  filter:
    drop-shadow(0 28px 35px rgba(7, 22, 15, 0.18))
    drop-shadow(0 10px 12px rgba(7, 22, 15, 0.10));

  transform: translateZ(20px);

  transition:
    transform 0.7s var(--ease),
    filter 0.7s var(--ease);
}

/* Keep the real pouch above the decorative layers */
.hero-pouch:hover .pouch-real-image {
  transform:
    translateZ(25px)
    scale(1.015);

  filter:
    drop-shadow(0 34px 42px rgba(7, 22, 15, 0.22))
    drop-shadow(0 12px 16px rgba(7, 22, 15, 0.12));
}


/* =========================================================
   POUCH TOP
========================================================= */

.pouch-top {
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;

  height: 10px;

  z-index: 3;

  border-radius: 999px;

  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.28),
    rgba(255,255,255,0.08)
  );

  opacity: 0.55;

  pointer-events: none;
}


/* =========================================================
   POUCH SHINE
========================================================= */

.pouch-shine {
  position: absolute;
  inset: 0;

  z-index: 4;

  border-radius: inherit;

  background:
    linear-gradient(
      110deg,
      transparent 20%,
      rgba(255,255,255,0.08) 42%,
      rgba(255,255,255,0.20) 50%,
      rgba(255,255,255,0.06) 58%,
      transparent 76%
    );

  background-size: 220% 100%;
  background-position: 150% 0;

  pointer-events: none;

  mix-blend-mode: screen;

  animation: pouchShine 7s ease-in-out infinite;
}

@keyframes pouchShine {
  0%,
  55% {
    background-position: 150% 0;
    opacity: 0;
  }

  65% {
    opacity: 0.5;
  }

  82%,
  100% {
    background-position: -80% 0;
    opacity: 0;
  }
}

/* =========================================================
   HERO REAL PRODUCT — CLEAN PREMIUM PRESENTATION
========================================================= */

.hero-pouch {
  position: relative;

  width: min(390px, 30vw);
  aspect-ratio: 0.72;

  /* REMOVE THE GREEN BOX */
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;

  transform-style: preserve-3d;
  isolation: isolate;

  overflow: visible;
}


/* =========================================================
   REAL PRODUCT IMAGE
========================================================= */

.pouch-content {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent !important;
  border: none !important;
  box-shadow: none !important;

  overflow: visible;
  z-index: 2;
}

.pouch-real-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  max-width: none;

  user-select: none;
  -webkit-user-drag: none;

  /* Only the actual pouch gets the shadow */
  filter:
    drop-shadow(0 24px 30px rgba(0, 0, 0, 0.22))
    drop-shadow(0 8px 12px rgba(0, 0, 0, 0.10));

  transform: translateZ(20px);

  transition:
    transform 0.7s var(--ease),
    filter 0.7s var(--ease);
}


/* =========================================================
   PREMIUM HOVER
========================================================= */

.hero-pouch:hover .pouch-real-image {
  transform:
    translateZ(25px)
    scale(1.018);

  filter:
    drop-shadow(0 30px 38px rgba(0, 0, 0, 0.25))
    drop-shadow(0 10px 15px rgba(0, 0, 0, 0.12));
}


/* =========================================================
   REMOVE OLD FAKE POUCH TOP
========================================================= */

.pouch-top {
  display: none !important;
}


/* =========================================================
   REMOVE OLD POUCH SHINE
========================================================= */

.pouch-shine {
  display: none !important;
}

/* =========================================================
   FINAL HERO POUCH
   REAL PNG — LARGE + FULLY RESPONSIVE
========================================================= */

.hero-pouch {
  position: relative;

  /*
    Main desktop size.
    Increase/decrease this single value if needed.
  */
  width: clamp(340px, 30vw, 460px);

  /*
    Your pouch image is portrait.
  */
  aspect-ratio: 0.72;

  height: auto;

  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;

  overflow: visible !important;

  transform-style: preserve-3d;
  isolation: isolate;

  /*
    Keep the existing floating animation.
  */
  animation: productFloat 6s ease-in-out infinite;
}


/* =========================================================
   REAL PNG CONTAINER
========================================================= */

.pouch-content {
  position: absolute;

  /*
    Make the image area larger than the pouch wrapper.
    This is what makes the real PNG visually bigger.
  */
  top: -10%;
  left: -10%;

  width: 120%;
  height: 120%;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 !important;

  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;

  overflow: visible !important;

  z-index: 2;
}


/* =========================================================
   REAL PRODUCT PNG
========================================================= */

.pouch-real-image {
  display: block;

  width: 100%;
  height: 100%;

  max-width: none !important;
  max-height: none !important;

  object-fit: contain;
  object-position: center;

  user-select: none;
  -webkit-user-drag: none;

  /*
    Premium natural floating shadow.
  */
  filter:
    drop-shadow(0 28px 35px rgba(0, 0, 0, 0.22))
    drop-shadow(0 10px 14px rgba(0, 0, 0, 0.12));

  transform: translateZ(20px);

  transition:
    transform 0.7s var(--ease),
    filter 0.7s var(--ease);
}


/* =========================================================
   DESKTOP HOVER
========================================================= */

@media (hover: hover) {

  .hero-pouch:hover .pouch-real-image {
    transform:
      translateZ(25px)
      scale(1.018);

    filter:
      drop-shadow(0 34px 42px rgba(0, 0, 0, 0.25))
      drop-shadow(0 12px 16px rgba(0, 0, 0, 0.12));
  }

}


/* =========================================================
   REMOVE OLD FAKE POUCH ELEMENTS
========================================================= */

.pouch-top,
.pouch-shine {
  display: none !important;
}


/* =========================================================
   LARGE LAPTOP
   1200px
========================================================= */

@media (max-width: 1200px) {

  .hero-pouch {
    width: clamp(320px, 34vw, 410px);
  }

  .pouch-content {
    top: -9%;
    left: -9%;

    width: 118%;
    height: 118%;
  }

}


/* =========================================================
   TABLET / SMALL LAPTOP
   1000px
========================================================= */

@media (max-width: 1000px) {

  .hero-product {
    height: 540px;
  }

  .hero-pouch {
    width: clamp(300px, 43vw, 390px);
  }

  .pouch-content {
    top: -8%;
    left: -8%;

    width: 116%;
    height: 116%;
  }

}


/* =========================================================
   TABLET
   800px
========================================================= */

@media (max-width: 800px) {

  .hero-product {
    height: 500px;
  }

  .hero-pouch {
    width: clamp(290px, 50vw, 370px);
  }

  .pouch-content {
    top: -7%;
    left: -7%;

    width: 114%;
    height: 114%;
  }

}


/* =========================================================
   MOBILE
   700px
========================================================= */

@media (max-width: 700px) {

  .hero-product {
    width: 100%;
    height: 440px;

    margin-top: 10px;
  }

  .hero-pouch {
    width: clamp(260px, 72vw, 340px);
  }

  .pouch-content {
    top: -6%;
    left: -6%;

    width: 112%;
    height: 112%;
  }

  .pouch-real-image {
    filter:
      drop-shadow(0 22px 28px rgba(0, 0, 0, 0.20))
      drop-shadow(0 8px 12px rgba(0, 0, 0, 0.10));
  }

}


/* =========================================================
   SMALL MOBILE
   430px
========================================================= */

@media (max-width: 430px) {

  .hero-product {
    height: 410px;
  }

  .hero-pouch {
    width: 78vw;
    max-width: 320px;
  }

  .pouch-content {
    top: -5%;
    left: -5%;

    width: 110%;
    height: 110%;
  }

}


/* =========================================================
   VERY SMALL PHONES
   360px
========================================================= */

@media (max-width: 360px) {

  .hero-product {
    height: 370px;
  }

  .hero-pouch {
    width: 82vw;
    max-width: 300px;
  }

  .pouch-content {
    top: -4%;
    left: -4%;

    width: 108%;
    height: 108%;
  }

}



/* =========================================================
   GROVIA PRODUCT RESPONSIVE SYSTEM
   Put this at the VERY BOTTOM of CSS
   ========================================================= */


/* ---------------------------------------------------------
   LARGE DESKTOP
   --------------------------------------------------------- */

@media (min-width: 1450px) {

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

    gap: 28px;
  }

  .product-card {
    padding: 12px 12px 19px;
  }

  .product-card-body {
    padding-top: 19px;
  }

}


/* ---------------------------------------------------------
   NORMAL DESKTOP
   --------------------------------------------------------- */

@media (max-width: 1300px) {

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

    gap: 22px;
  }

  .product-card-body p {
    font-size: 11px;
  }

}


/* ---------------------------------------------------------
   SMALL DESKTOP / LARGE TABLET
   --------------------------------------------------------- */

@media (max-width: 1050px) {

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

    gap: 18px;
  }

}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 800px) {

  .products-section {
    overflow: hidden;
  }

  .category-filter {
    flex-wrap: nowrap;

    overflow-x: auto;

    margin-right: -6vw;
    padding-right: 6vw;

    padding-bottom: 7px;

    scrollbar-width: none;

    overscroll-behavior-x: contain;
  }

  .category-filter::-webkit-scrollbar {
    display: none;
  }

  .filter-pill {
    min-height: 40px;

    padding: 0 17px;

    flex: 0 0 auto;

    font-size: 8.5px;
  }

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

    gap: 14px;
  }

  .product-card {
    border-radius: 18px;

    padding:
      9px
      9px
      14px;
  }

  .product-card-media {
    border-radius: 13px;
  }

  .product-card-body {
    padding-top: 14px;
  }

  .product-card-body h3 {
    font-size: 1rem;
  }

  .product-card-body p {
    font-size: 10.5px;

    line-height: 1.6;
  }

  .product-card-foot {
    margin-top: 13px;
    padding-top: 10px;
  }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 600px) {

  .products-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .products-section .section-heading {
    margin-bottom: 35px;
  }

  .products-section .section-title {
    font-size:
      clamp(2.65rem, 12vw, 3.7rem);

    line-height: .94;
  }

  .category-filter {
    gap: 7px;

    margin-bottom: 30px;
  }

  .filter-pill {
    min-height: 37px;

    padding: 0 14px;

    gap: 7px;

    font-size: 8px;
  }

  .filter-pill .count {
    font-size: 8px;
  }

  .product-grid {
    gap: 11px;
  }

  .product-card {
    padding:
      8px
      8px
      12px;

    border-radius: 16px;
  }

  .product-card-media {
    border-radius: 12px;
  }

  .product-card-media img {
    width: 84%;
    height: 84%;
  }

  .product-card-body {
    padding-top: 12px;
  }

  .product-card-body h3 {
    font-size: .94rem;
  }

  .product-card-body p {
    margin-top: 6px;

    font-size: 9.5px;

    line-height: 1.58;
  }

  .product-card-foot {
    min-height: 30px;

    margin-top: 10px;
    padding-top: 9px;
  }

  .product-card-cta {
    font-size: 8px;
  }

}


/* ---------------------------------------------------------
   SMALL PHONES
   --------------------------------------------------------- */

@media (max-width: 430px) {

  .products-section {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .product-grid {
    gap: 9px;
  }

  .product-card {
    padding:
      7px
      7px
      11px;

    border-radius: 14px;
  }

  .product-card-media {
    border-radius: 10px;
  }

  .product-card-body {
    padding-top: 11px;
  }

  .product-card-body h3 {
    font-size: .86rem;
  }

  .product-card-body p {
    font-size: 8.8px;
    line-height: 1.55;
  }

  .product-card-foot {
    margin-top: 9px;
    padding-top: 8px;
  }

  .product-card-cta {
    font-size: 7.5px;
  }

}


/* ---------------------------------------------------------
   VERY SMALL PHONES
   --------------------------------------------------------- */

@media (max-width: 360px) {

  .product-grid {
    gap: 8px;
  }

  .product-card {
    padding:
      6px
      6px
      10px;

    border-radius: 13px;
  }

  .product-card-body h3 {
    font-size: .8rem;
  }

  .product-card-body p {
    font-size: 8px;
  }

  .product-card-cta {
    font-size: 7px;
  }

}

/* =========================================================
   PRODUCT CARD ANIMATION
   ========================================================= */

.product-card {

  position: relative;

  min-width: 0;

  display: flex;
  flex-direction: column;

  padding: 11px 11px 17px;

  overflow: hidden;

  border: 1px solid rgba(24, 51, 38, .10);
  border-radius: 22px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.96),
      rgba(255,255,255,.88)
    );

  box-shadow:
    0 4px 18px rgba(24, 51, 38, .025);


  /* INITIAL STATE */

  opacity: 0;

  transform:
    translate3d(0, 28px, 0)
    scale(.985);


  will-change:
    opacity,
    transform;


  transition:
    opacity .55s var(--ease),
    transform .65s var(--ease),
    box-shadow .7s var(--ease),
    border-color .7s var(--ease);
}


/* =========================================================
   ENTER
   ========================================================= */

.product-card--enter {

  opacity: 1;

  transform:
    translate3d(0, 0, 0)
    scale(1);
}


/* =========================================================
   EXIT
   ========================================================= */

.product-card--exit {

  opacity: 0;

  transform:
    translate3d(0, -22px, 0)
    scale(.97);

  pointer-events: none;
}


/* =========================================================
   HIDDEN
   ========================================================= */

.product-card[hidden] {
  display: none !important;
}