/* ==========================================================================
   HILLBLENDS & CO.
   ========================================================================== */
@font-face {
  font-family: "Beau Rivage";
  src: url("assets/fonts/beaurivage.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}
:root {
  --forest-950: #101a11;
  --forest-900: #182719;
  --forest-800: #233924;
  --forest-700: #315035;

  --cream-50: #fffdf7;
  --cream-10: #fbf8ee;
  --cream-100: #f8f3e5;
  --cream-200: #eee4ca;

  --gold-500: #b9924d;
  --gold-300: #d8bd82;

  --text: #1c261d;
  --muted: #5c685d;
  --white: #fffdf8;
  --danger: #a0433c;

  --heading: "Beau Rivage", Georgia, serif;
  --body: "Montserrat", Arial, sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --pill: 999px;

  --shadow-sm: 0 8px 22px rgba(16, 26, 17, 0.08);
  --shadow-md: 0 18px 50px rgba(16, 26, 17, 0.14);

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}


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

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

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  background: var(--cream-50);
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  min-width: 280px;
  overflow-x: hidden;

  -ms-overflow-style: none;

  color: var(--text);
  background: var(--cream-50);

  font-family: var(--body);
  line-height: 1.65;
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

a {
  text-decoration: none;
}

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


/* ==========================================================================
   IMPORTANT AOS FAIL-SAFE

   If AOS JS fails to load for any reason, ALL AOS content stays visible.
   This prevents the blank-page problem.
   ========================================================================== */

html.no-aos [data-aos] {
  opacity: 1 !important;
  visibility: visible !important;

  transform: none !important;

  transition: none !important;
}


/* ==========================================================================
   GLOBAL LAYOUT
   ========================================================================== */

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: clamp(72px, 5vw, 116px) 0;
  scroll-margin-top: 78px;
}

.eyebrow {
  margin: 0 0 10px;

  color: var(--forest-700);

  font-size: 0.72rem;
  font-weight: 600;

  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;

  margin: 0 auto clamp(34px, 5vw, 58px);

  text-align: center;
}

.section-heading h2,
.custom-order-heading h2,
.about-copy h2,
.packaging-copy h2,
.modal-card h2 {
  margin: 0;

  color: var(--forest-700);

  font-family: var(--heading);
  font-weight: 400;

  line-height: 0.98;
}

.section-heading h2 {
  font-size: clamp(2.8rem, 6vw, 4.7rem);
}

.section-heading > p:last-child {
  max-width: 610px;

  margin: 15px auto 0;

  color: var(--muted);

  font-size: 0.96rem;
}


/* ==========================================================================
   NORMAL BUTTON
   ========================================================================== */

.btn {
  position: relative;

  min-height: 50px;

  padding: 0.82rem 1.65rem;

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

  overflow: hidden;

  border: 1px solid transparent;
  border-radius: var(--pill);

  cursor: pointer;

  font-size: 0.76rem;
  font-weight: 600;

  letter-spacing: 0.095em;
  line-height: 1;

  text-align: center;
  text-transform: uppercase;

  isolation: isolate;

  transition:
    transform 240ms var(--ease),
    box-shadow 240ms ease,
    background 240ms ease,
    border-color 240ms ease;
}

.btn-primary {
  color: var(--white);

  border-color: rgba(216, 189, 130, 0.18);

  background:
    linear-gradient(
      135deg,
      #376341,
      #2d5637 50%,
      #26492e
    );

  box-shadow:
    0 12px 26px rgba(16, 26, 17, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.17);
}

.btn-primary:hover {
  transform: translateY(-3px);

  background:
    linear-gradient(
      135deg,
      #3d6b47,
      #294e32
    );

  box-shadow:
    0 18px 34px rgba(16, 26, 17, 0.27),
    0 0 0 1px rgba(216, 189, 130, 0.14);
}


/* ==========================================================================
   LET'S TALK BUTTON
   ========================================================================== */

.talk-button {
  position: relative;

  min-width: 178px;
  min-height: 50px;

  padding: 5px 5px 5px 22px;

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

  gap: 20px;

  overflow: hidden;

  border: 1px solid transparent;
  border-radius: var(--pill);

  cursor: pointer;

  font-family: var(--body);

  font-size: 0.7rem;
  font-weight: 600;

  letter-spacing: 0.105em;

  line-height: 1;

  text-transform: uppercase;

  isolation: isolate;

  transition:
    transform 260ms var(--ease),
    color 260ms ease,
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.talk-button::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: -1;

  opacity: 0;

  background:
    linear-gradient(
      110deg,
      transparent 10%,
      rgba(255, 255, 255, 0.2) 46%,
      transparent 80%
    );

  transform: translateX(-120%);

  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 250ms ease;
}

.talk-button:hover::before {
  opacity: 1;

  transform: translateX(120%);
}

.talk-button-label {
  position: relative;

  z-index: 1;

  white-space: nowrap;
}

.talk-button-icon {
  position: relative;

  z-index: 1;

  width: 40px;
  height: 40px;

  flex: 0 0 40px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  font-size: 1rem;

  line-height: 1;

  transition:
    color 260ms ease,
    background 260ms ease,
    transform 260ms var(--ease);
}

.talk-button-hero {
  color: var(--forest-950);

  border-color: rgba(255, 253, 248, 0.58);

  background: rgba(255, 253, 248, 0.93);

  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

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

.talk-button-hero .talk-button-icon {
  color: var(--gold-300);

  background: var(--forest-900);

  box-shadow:
    0 6px 16px rgba(12, 24, 14, 0.18);
}

.talk-button-hero:hover {
  color: var(--forest-950);

  border-color: rgba(216, 189, 130, 0.9);

  background: var(--cream-50);

  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.29),
    0 0 0 1px rgba(216, 189, 130, 0.16);

  transform: translateY(-3px);
}

.talk-button-hero:hover .talk-button-icon {
  color: #fff;

  background: var(--forest-700);

  transform: rotate(45deg);
}

.talk-button-section {
  color: var(--white);

  border-color: rgba(49, 80, 53, 0.14);

  background: var(--forest-700);

  box-shadow:
    0 12px 26px rgba(34, 55, 37, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.talk-button-section .talk-button-icon {
  color: var(--forest-900);

  background: var(--gold-300);
}

.talk-button-section:hover {
  color: #fff;

  border-color: rgba(185, 146, 77, 0.46);

  background: var(--forest-800);

  box-shadow:
    0 17px 34px rgba(34, 55, 37, 0.2);

  transform: translateY(-3px);
}

.talk-button-section:hover .talk-button-icon {
  color: var(--forest-950);

  background: #ead49d;

  transform: rotate(45deg);
}


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

.navbar {
  position: fixed;

  z-index: 1000;

  inset: 0 0 auto;

  min-height: 76px;

  padding: 0 4vw;

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

  gap: 30px;

  background: transparent;

  transition:
    min-height 250ms var(--ease),
    background 280ms ease,
    box-shadow 280ms ease,
    backdrop-filter 280ms ease;
}

.navbar.scrolled {
  min-height: 66px;

  background: rgba(16, 26, 17, 0.72);

  -webkit-backdrop-filter: blur(18px) saturate(135%);
  backdrop-filter: blur(18px) saturate(135%);

  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.14);
}

.brand-logo {
  position: relative;

  z-index: 1002;

  width: clamp(50px, 3.5vw, 68px);

  display: flex;
  align-items: center;
}

.brand-logo img {
  width: 100%;
  height: auto;

  max-height: 54px;

  object-fit: contain;

  filter:
    drop-shadow(
      0 2px 7px rgba(0, 0, 0, 0.2)
    );
}

.navbar.scrolled .brand-logo {
  width: clamp(46px, 3.2vw, 62px);
}

.nav-links {
  margin: 0;
  padding: 0;

  display: flex;
  align-items: center;

  gap: clamp(18px, 2.4vw, 34px);

  list-style: none;
}

.nav-links a {
  position: relative;

  padding: 10px 0;

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

  overflow: hidden;

  color: #fff;

  font-size: 0.73rem;
  font-weight: 500;

  letter-spacing: 0.095em;

  text-transform: uppercase;
}

.nav-letter {
  display: inline-block;

  transform: translateY(0);

  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    color 250ms ease;

  transition-delay:
    calc(var(--letter-index) * 22ms);
}

.nav-space {
  width: 0.35em;
}

.nav-links a:hover .nav-letter {
  color: var(--gold-300);

  transform: translateY(-4px);
}

.nav-links a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 3px;

  width: 100%;
  height: 1px;

  background: var(--gold-300);

  transform: scaleX(0);

  transform-origin: right;

  transition:
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover::after {
  transform: scaleX(1);

  transform-origin: left;
}

.nav-toggle {
  position: relative;

  z-index: 1002;

  width: 38px;
  height: 38px;

  padding: 8px;

  display: none;
  flex-direction: column;
  justify-content: center;

  gap: 5px;

  border: 0;

  background: transparent;

  cursor: pointer;
}

.nav-toggle span {
  width: 100%;
  height: 2px;

  border-radius: 999px;

  background: #fff;

  transform-origin: center;

  transition:
    transform 220ms var(--ease),
    opacity 180ms ease;
}

.nav-toggle.active span:nth-child(1) {
  transform:
    translateY(7px)
    rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform:
    translateY(-7px)
    rotate(-45deg);
}


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

.hero-section {
  position: relative;

  /*
    Progress driven by scroll.js, 0 (top of page)
    to 1 (hero fully scrolled past). Read by the
    background, content and scroll-cue transforms
    below.
  */

  --hero-progress: 0;

  min-height: 100svh;

  padding:
    110px 20px
    70px;

  display: grid;
  place-items: center;

  overflow: clip;

  color: var(--white);

  background: var(--forest-950);

  isolation: isolate;
}

.hero-bg {
  position: absolute;

  z-index: -2;

  inset: 0;

  background:
    url("assets/hero.webp")
    center / cover
    no-repeat;

  transform:
    scale(
      calc(1 + var(--hero-progress) * 0.22)
    );

  will-change: transform;

  /*
    Scroll (and especially touch-scroll) events fire
    in coarser, uneven bursts on mobile than the CSS
    custom property updates they drive, so the raw
    step-to-step jump reads as jagged. A short linear
    transition interpolates between those steps so
    the zoom reads as continuous instead of stepped.
    Neutralised for prefers-reduced-motion below.
  */

  transition: transform 120ms linear;

  backface-visibility: hidden;
}

.hero-overlay {
  position: absolute;

  z-index: -1;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(8, 14, 9, 0.42),
      rgba(8, 14, 9, 0.32) 45%,
      rgba(8, 14, 9, 0.72)
    ),
    radial-gradient(
      circle at 50% 45%,
      transparent 0 26%,
      rgba(10, 17, 11, 0.43) 100%
    );
}

.hero-content {
  position: relative;

  width: min(860px, 100%);

  text-align: center;

  opacity:
    calc(1 - var(--hero-progress) * 1.15);

  transform:
    scale(
      calc(1 - var(--hero-progress) * 0.18)
    )
    translateY(
      calc(var(--hero-progress) * -34px)
    );

  will-change: transform, opacity;

  /*
    Same smoothing as .hero-bg above — interpolates
    between the scroll-driven updates on mobile.
  */

  transition:
    transform 120ms linear,
    opacity 120ms linear;

  backface-visibility: hidden;
}

.hero-content h1 {
  margin: 0;

  color: var(--white);

  font-family: var(--heading);

  font-size:
    clamp(3.9rem, 8vw, 6.3rem);

  font-weight: 400;

  line-height: 0.94;

  text-shadow:
    0 6px 26px rgba(0, 0, 0, 0.35);
}

.hero-copy {
  max-width: 700px;

  margin:
    22px auto 0;

  color:
    rgba(255, 253, 248, 0.93);

  font-size:
    clamp(0.95rem, 2vw, 1.05rem);
}

.hero-actions {
  margin-top: 30px;

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

  gap: 12px;
}

.hero-scroll-cue {
  position: absolute;

  left: 50%;
  bottom: 24px;

  width: 27px;
  height: 43px;

  border:
    1px solid
    rgba(255, 255, 255, 0.56);

  border-radius: 20px;

  background:
    rgba(8, 14, 9, 0.16);

  backdrop-filter: blur(4px);

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.13);

  transform: translateX(-50%);

  opacity:
    calc(1 - var(--hero-progress) * 4);

  transition: opacity 0.2s linear;
}

.hero-scroll-cue span {
  position: absolute;

  top: 7px;
  left: 50%;

  width: 3px;
  height: 6px;

  border-radius: 999px;

  background: var(--gold-300);

  transform: translateX(-50%);

  animation:
    scrollCue
    1.8s ease-in-out
    infinite;
}

@keyframes scrollCue {

  0%,
  100% {
    opacity: 0.35;

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

  45% {
    opacity: 1;

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

}


/* ==========================================================================
   PRODUCTS
   ========================================================================== */

.products-section {
  background:
    radial-gradient(
      circle at top center,
      rgba(238, 228, 202, 0.5),
      transparent 38%
    ),
    var(--cream-50);
}

.product-grid {
  display: grid;

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

  gap:
    25px
    21px;

  perspective: 1200px;
}


/*
  AOS lives on this wrapper.

  The actual .product-card keeps its existing
  transform so the 3D hover is not destroyed.
*/

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

  height: 100%;
}

.product-card-reveal > .product-card {
  width: 100%;
  height: 100%;
}


.product-card {
  --rotate-x: 0deg;
  --rotate-y: 0deg;

  position: relative;

  min-width: 0;

  overflow: hidden;

  border:
    1px solid
    rgba(185, 146, 77, 0.16);

  border-radius: var(--radius-md);

  background:
    linear-gradient(
      150deg,
      #fffef9,
      #fbf7ed
    );

  box-shadow:
    0 10px 24px rgba(39, 52, 39, 0.09),
    0 24px 46px rgba(39, 52, 39, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);

  transform:
    perspective(1000px)
    rotateX(var(--rotate-x))
    rotateY(var(--rotate-y));

  transform-style: preserve-3d;

  will-change: transform;

  transition:
    transform 180ms ease-out,
    box-shadow 280ms ease,
    border-color 280ms ease;
}

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

  position: absolute;

  z-index: 8;

  inset: 0;

  pointer-events: none;

  border-radius: inherit;

  opacity: 0;

  background:
    radial-gradient(
      circle
      at var(--glow-x, 50%)
      var(--glow-y, 50%),
      rgba(255, 255, 255, 0.3),
      transparent 36%
    );

  transition:
    opacity 220ms ease;
}

.product-card:hover {
  border-color:
    rgba(185, 146, 77, 0.3);

  box-shadow:
    0 18px 36px rgba(44, 55, 39, 0.13),
    0 34px 66px rgba(44, 55, 39, 0.1);
}

.product-card:hover::before {
  opacity: 1;
}

.product-image-wrap {
  width: 100%;

  aspect-ratio: 4 / 3;

  overflow: hidden;

  border-radius:
    var(--radius-md)
    var(--radius-md)
    0
    0;

  background:
    linear-gradient(
      100deg,
      var(--cream-200) 28%,
      var(--cream-10) 50%,
      var(--cream-200) 72%
    );

  background-size: 200% 100%;

  animation: imageShimmer 1.6s ease-in-out infinite;

  transform: translateZ(18px);
}

.product-image-wrap.is-loaded {
  animation: none;

  background: transparent;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  border-radius:
    var(--radius-md)
    var(--radius-md)
    0
    0;

  opacity: 0;

  transform:
    translateZ(12px)
    scale(1);

  transition:
    opacity 420ms ease,
    transform 330ms var(--ease);
}

.product-image-wrap img.is-loaded {
  opacity: 1;
}

.product-card:hover
.product-image-wrap img {
  transform:
    translateZ(24px)
    scale(1.035);
}

.product-card-body {
  position: relative;

  z-index: 3;

  padding: 16px;

  transform: translateZ(24px);
}

.product-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 12px;
}

.product-title-row h3 {
  margin: 0;

  color: var(--forest-700);

  font-family: var(--heading);

  font-size: 2rem;
  font-weight: 400;

  line-height: 1;
}

.product-card-body > p {
  min-height: 3.8em;

  margin:
    10px 0 12px;

  color: var(--muted);

  font-size: 0.78rem;

  line-height: 1.55;
}

.food-mark {
  position: relative;

  width: 16px;
  height: 16px;

  flex:
    0 0 16px;

  display: inline-grid;
  place-items: center;

  border:
    1.5px solid
    currentColor;
}

.food-mark::after {
  content: "";

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: currentColor;
}

.food-mark.veg {
  color: #2e702c;
}

.food-mark.non-veg {
  color: #b23d35;
}

.product-front-info,
.product-variant-front {
  margin:
    10px 0 3px;

  padding:
    7px 0;
}

.product-front-info {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 12px;
}

.product-front-weight {
  color: var(--forest-700);

  font-size: 0.68rem;
  font-weight: 600;

  letter-spacing: 0.055em;
}

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

  font-size: 0.9rem;
  font-weight: 700;
}

.product-variant-front {
  display: grid;

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

  gap: 6px;
}

.product-variant-front > span {
  min-width: 0;

  padding: 7px 4px;

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

  gap: 2px;

  border:
    1px solid
    rgba(185, 146, 77, 0.14);

  border-radius: 9px;

  color: var(--muted);

  background:
    rgba(248, 243, 229, 0.62);

  font-size: 0.61rem;

  line-height: 1.25;
}

.product-variant-front strong {
  color: var(--forest-700);

  font-size: 0.65rem;
  font-weight: 700;
}

.product-meta {
  margin-top: 6px;

  padding-top: 12px;

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

  gap: 10px;

  border-top:
    1px solid
    rgba(49, 80, 53, 0.11);
}

.product-meta > span {
  color: var(--muted);

  font-size: 0.59rem;
  font-weight: 500;
}

.product-meta-single {
  justify-content: flex-end;
}

.text-button {
  padding: 5px 0;

  border: 0;
  border-bottom:
    1px solid transparent;

  color: var(--forest-700);

  background: transparent;

  cursor: pointer;

  font-size: 0.68rem;
  font-weight: 600;

  letter-spacing: 0.05em;

  text-transform: uppercase;

  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.text-button:hover {
  color: var(--gold-500);

  border-color: currentColor;
}


/* ==========================================================================
   LARGER ORDER
   ========================================================================== */

.custom-order-section {
  background: var(--cream-100);
}

.custom-order-shell {
  width: min(1060px, 100%);

  margin-inline: auto;

  text-align: center;
}

.custom-order-heading {
  max-width: 760px;

  margin-inline: auto;
}

.custom-order-heading h2 {
  font-size:
    clamp(3rem, 5.8vw, 4.8rem);
}

.custom-order-heading > p:last-child {
  max-width: 680px;

  margin:
    18px auto 0;

  color: var(--muted);

  font-size: 0.94rem;

  line-height: 1.75;
}

.custom-order-features {
  margin-top:
    clamp(42px, 5vw, 58px);

  display: grid;

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

  border-top:
    1px solid
    rgba(49, 80, 53, 0.12);

  border-bottom:
    1px solid
    rgba(49, 80, 53, 0.12);
}

.custom-order-feature {
  position: relative;

  min-width: 0;

  padding:
    30px 28px;

  display: flex;

  align-items: flex-start;

  gap: 16px;

  text-align: left;
}

.custom-order-feature:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 22%;
  right: 0;
  bottom: 22%;

  width: 1px;

  background:
    rgba(49, 80, 53, 0.12);
}

.custom-feature-number {
  flex: 0 0 auto;

  color: var(--gold-500);

  font-size: 0.72rem;
  font-weight: 600;

  letter-spacing: 0.08em;
}

.custom-order-feature strong {
  display: block;

  color: var(--forest-700);

  font-size: 0.84rem;
  font-weight: 600;
}

.custom-order-feature p {
  margin:
    6px 0 0;

  color: var(--muted);

  font-size: 0.78rem;

  line-height: 1.65;
}

.custom-order-action {
  margin-top: 34px;

  display: grid;

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

  align-items: center;

  gap: 22px;
}

.custom-order-action-line {
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(185, 146, 77, 0.52)
    );
}

.custom-order-action-line:last-child {
  background:
    linear-gradient(
      90deg,
      rgba(185, 146, 77, 0.52),
      transparent
    );
}


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

.process-section {
  position: relative;

  overflow: hidden;

  color: var(--white);

  background: var(--forest-900);
}

.process-section .eyebrow {
  color: var(--gold-300);
}

.process-section
.section-heading h2 {
  color: var(--white);
}

.process-section
.section-heading > p:last-child {
  color:
    rgba(255, 255, 255, 0.68);
}

.process-flow {
  position: relative;

  margin-top: 18px;
}

.process-grid {
  position: relative;

  z-index: 2;

  display: grid;

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

.process-step {
  position: relative;

  min-width: 0;

  padding:
    0 18px;

  text-align: center;
}

.process-number {
  position: relative;

  z-index: 4;

  width: 66px;
  height: 66px;

  margin:
    0 auto 22px;

  display: grid;
  place-items: center;

  border:
    1px solid
    rgba(216, 189, 130, 0.65);

  border-radius: 50%;

  color: var(--gold-300);

  background:
    var(--forest-900);

  font-size: 0.76rem;
  font-weight: 600;

  letter-spacing: 0.08em;

  animation:
    processNodePulse
    10s linear
    infinite;
}

.process-step:nth-child(2)
.process-number {
  animation-delay: 2s;
}

.process-step:nth-child(3)
.process-number {
  animation-delay: 4s;
}

.process-step:nth-child(4)
.process-number {
  animation-delay: 6s;
}

.process-step:nth-child(5)
.process-number {
  animation-delay: 8s;
}

.process-line {
  position: absolute;

  z-index: 1;

  top: 32px;
  left: 10%;
  right: 10%;

  height: 1px;

  overflow: hidden;

  background:
    rgba(216, 189, 130, 0.32);
}

.process-line-light {
  position: absolute;

  top: -2px;
  left: -18%;

  width: 18%;
  height: 5px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(216, 189, 130, 0.16),
      #e7ca8a,
      #fff4ce,
      transparent
    );

  animation:
    processLightTravel
    10s linear
    infinite;
}

.process-step h3 {
  margin:
    0 0 10px;

  color: #fff;

  font-size: 0.96rem;
  font-weight: 600;
}

.process-step p {
  max-width: 250px;

  margin: 0 auto;

  color:
    rgba(255, 255, 255, 0.66);

  font-size: 0.76rem;

  line-height: 1.65;
}

@keyframes processLightTravel {

  from {
    left: -18%;
  }

  to {
    left: 100%;
  }

}

@keyframes processNodePulse {

  0%,
  12%,
  100% {
    color: var(--gold-300);

    border-color:
      rgba(216, 189, 130, 0.65);

    background:
      var(--forest-900);

    box-shadow: none;

    transform: scale(1);
  }

  18% {
    color: #1b2a1c;

    border-color: #f1d694;

    background: #f1d694;

    box-shadow:
      0 0 0 7px rgba(216, 189, 130, 0.08),
      0 0 26px rgba(216, 189, 130, 0.72);

    transform: scale(1.08);
  }

  24% {
    color: var(--gold-300);

    border-color:
      rgba(216, 189, 130, 0.65);

    background:
      var(--forest-900);

    transform: scale(1);
  }

}


/* ==========================================================================
   PACKAGING
   ========================================================================== */

.packaging-section {
  position: relative;

  background: var(--cream-50);
}

.packaging-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(340px, 0.82fr);

  align-items: center;

  gap:
    clamp(52px, 7vw, 100px);
}

.packaging-copy {
  max-width: 620px;
}

.packaging-copy h2 {
  margin: 0;

  color: var(--forest-700);

  font-family: var(--heading);

  font-size:
    clamp(3.5rem, 6vw, 5.4rem);

  font-weight: 400;

  line-height: 0.95;
}

.packaging-intro,
.packaging-copy > p:not(.eyebrow) {
  max-width: 590px;

  margin:
    20px 0 0;

  color: var(--muted);

  font-size: 0.94rem;

  line-height: 1.8;
}

.clean-list {
  margin:
    34px 0 0;

  padding: 0;

  display: grid;

  list-style: none;

  border-top:
    1px solid
    rgba(49, 80, 53, 0.11);
}

.clean-list li {
  position: relative;

  padding:
    18px 0;

  display: grid;

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

  align-items: start;

  gap: 16px;

  border-bottom:
    1px solid
    rgba(49, 80, 53, 0.11);

  color: var(--forest-700);

  font-weight: 500;
}

.packaging-list-number {
  padding-top: 2px;

  color: var(--gold-500);

  font-size: 0.64rem;
  font-weight: 600;

  letter-spacing: 0.08em;
}

.clean-list strong {
  display: block;

  color: var(--forest-700);

  font-size: 0.82rem;
  font-weight: 600;
}

.clean-list p {
  max-width: 480px;

  margin:
    4px 0 0;

  color: var(--muted);

  font-size: 0.72rem;

  line-height: 1.65;
}


/* DELIVERY PANEL */

.delivery-panel {
  position: relative;

  overflow: hidden;

  border:
    1px solid
    rgba(185, 146, 77, 0.2);

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(248, 243, 229, 0.84),
      rgba(255, 253, 247, 0.98)
    );

  box-shadow:
    0 17px 42px rgba(35, 49, 36, 0.08);
}

.delivery-panel::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      var(--forest-700),
      var(--gold-300),
      transparent
    );
}

.delivery-panel-header {
  padding:
    18px 20px 13px;

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

  border-bottom:
    1px solid
    rgba(49, 80, 53, 0.08);
}

.delivery-panel-header
.eyebrow {
  margin: 0;
}

.delivery-panel-body {
  padding:
    22px 20px 20px;
}

.delivery-small-label {
  color: var(--gold-500);

  font-size: 0.54rem;
  font-weight: 600;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}

.delivery-panel h3 {
  margin:
    4px 0 0;

  color: var(--forest-700);

  font-size:
    clamp(1.4rem, 2vw, 1.8rem);

  font-weight: 600;

  line-height: 1.2;
}

.delivery-company-type {
  margin:
    2px 0 0;

  color: var(--forest-700);

  font-size: 0.69rem;
  font-weight: 500;
}

.delivery-description {
  max-width: 390px;

  margin:
    13px 0 0;

  color: var(--muted);

  font-size: 0.7rem;

  line-height: 1.65;
}

.delivery-route {
  margin-top: 21px;

  padding:
    14px 0;

  display: grid;

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

  align-items: center;

  gap: 12px;

  border-top:
    1px solid
    rgba(49, 80, 53, 0.09);

  border-bottom:
    1px solid
    rgba(49, 80, 53, 0.09);
}

.delivery-route-point {
  display: flex;
  align-items: center;

  gap: 8px;
}

.delivery-route-point > span {
  width: 7px;
  height: 7px;

  flex: 0 0 7px;

  border-radius: 50%;

  background: var(--forest-700);

  box-shadow:
    0 0 0 4px rgba(49, 80, 53, 0.08);
}

.delivery-route-point-end > span {
  background: var(--gold-500);

  box-shadow:
    0 0 0 4px rgba(185, 146, 77, 0.1);
}

.delivery-route-point small,
.delivery-route-point strong {
  display: block;
}

.delivery-route-point small {
  color: var(--muted);

  font-size: 0.44rem;
  font-weight: 600;

  letter-spacing: 0.12em;
}

.delivery-route-point strong {
  margin-top: 1px;

  color: var(--forest-700);

  font-size: 0.61rem;
  font-weight: 600;
}

.delivery-route-line {
  position: relative;

  height: 1px;

  overflow: hidden;

  background:
    rgba(49, 80, 53, 0.14);
}

.delivery-route-line span {
  position: absolute;

  top: 0;
  left: -30%;

  width: 30%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--gold-500),
      transparent
    );

  animation:
    deliveryLineMove
    3.2s linear
    infinite;
}

@keyframes deliveryLineMove {

  from {
    left: -30%;
  }

  to {
    left: 100%;
  }

}

.delivery-partner-link {
  width: fit-content;

  min-height: 37px;

  margin-top: 17px;

  padding:
    4px
    4px
    4px
    14px;

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

  gap: 11px;

  border:
    1px solid
    rgba(49, 80, 53, 0.14);

  border-radius: 999px;

  color: var(--forest-700);

  background:
    rgba(255, 255, 255, 0.74);

  box-shadow:
    0 7px 18px rgba(32, 48, 33, 0.05);

  font-size: 0.57rem;
  font-weight: 600;

  letter-spacing: 0.075em;

  text-transform: uppercase;

  transition:
    color 220ms ease,
    background 220ms ease,
    transform 220ms var(--ease),
    box-shadow 220ms ease;
}

.delivery-partner-arrow {
  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: var(--gold-300);

  background: var(--forest-700);

  font-size: 0.72rem;

  transition:
    transform 240ms var(--ease);
}

.delivery-partner-link:hover {
  color: #fff;

  background: var(--forest-700);

  transform:
    translateY(-2px);

  box-shadow:
    0 10px 23px rgba(32, 48, 33, 0.15);
}

.delivery-partner-link:hover
.delivery-partner-arrow {
  transform: rotate(45deg);
}


/* ==========================================================================
   ABOUT
   ========================================================================== */

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

.about-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(0, 0.95fr);

  align-items: center;

  gap:
    clamp(44px, 6vw, 90px);
}

.about-image-wrap {
  position: relative;

  overflow: hidden;

  border-radius: 26px;

  background:
    linear-gradient(
      100deg,
      var(--cream-200) 28%,
      var(--cream-10) 50%,
      var(--cream-200) 72%
    );

  background-size: 200% 100%;

  animation: imageShimmer 1.6s ease-in-out infinite;

  box-shadow:
    0 22px 55px rgba(16, 26, 17, 0.14);
}

.about-image-wrap.is-loaded {
  animation: none;

  background: transparent;
}

.about-image-wrap img {
  width: 100%;

  aspect-ratio: 4 / 3;

  object-fit: cover;

  opacity: 0;

  transition:
    opacity 420ms ease,
    transform 700ms var(--ease);
}

.about-image-wrap img.is-loaded {
  opacity: 1;
}

@keyframes imageShimmer {

  0% {
    background-position: 160% 0;
  }

  100% {
    background-position: -60% 0;
  }

}

.about-image-wrap:hover img {
  transform: scale(1.025);
}

.about-copy {
  width: 100%;

  text-align: left;
}

.about-copy h2 {
  font-size:
    clamp(3rem, 5vw, 4.5rem);

  line-height: 1;
}

.about-body {
  max-width: 580px;

  margin:
    29px 0 0;

  display: grid;

  gap: 17px;
}

.about-body p {
  margin: 0;

  color: var(--muted);

  font-size: 0.9rem;

  line-height: 1.85;
}


/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials-section {
  overflow: hidden;

  background: var(--cream-50);
}

.testimonial-heading {
  margin-bottom: 32px;

  text-align: center;
}

.testimonial-heading h2 {
  margin: 0;

  color: var(--forest-700);

  font-family: var(--heading);

  font-size:
    clamp(3rem, 5.8vw, 4.6rem);

  font-weight: 400;

  line-height: 1;
}

.testimonial-heading > p {
  margin:
    12px auto 0;

  color: var(--muted);

  font-size: 0.85rem;
}

.testimonial-feedback-btn {
  min-height: 38px;

  margin-top: 17px;

  padding:
    4px
    4px
    4px
    15px;

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

  gap: 11px;

  border:
    1px solid
    rgba(49, 80, 53, 0.15);

  border-radius: 999px;

  color: var(--forest-700);

  background: transparent;

  cursor: pointer;

  font-size: 0.59rem;
  font-weight: 600;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms var(--ease);
}

.testimonial-feedback-arrow {
  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: var(--gold-300);

  background: var(--forest-700);

  font-size: 0.72rem;

  transition:
    transform 240ms var(--ease);
}

.testimonial-feedback-btn:hover {
  color: #fff;

  background: var(--forest-700);

  transform:
    translateY(-2px);
}

.testimonial-feedback-btn:hover
.testimonial-feedback-arrow {
  transform: rotate(45deg);
}

.testimonial-marquee {
  width: 100%;

  overflow: hidden;

  -webkit-mask-image:
    linear-gradient(
      90deg,
      transparent,
      #000 5%,
      #000 95%,
      transparent
    );

  mask-image:
    linear-gradient(
      90deg,
      transparent,
      #000 5%,
      #000 95%,
      transparent
    );
}

.testimonial-track {
  width: max-content;

  display: flex;

  align-items: stretch;

  gap: 16px;

  animation:
    testimonialMarquee
    42s linear
    infinite;
}

.testimonial-group {
  display: flex;

  align-items: stretch;

  gap: 16px;
}

.testimonial-marquee:hover
.testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  width:
    min(360px, 82vw);

  flex: 0 0 auto;

  padding: 24px;

  border:
    1px solid
    rgba(185, 146, 77, 0.14);

  border-radius: var(--radius-md);

  background:
    linear-gradient(
      145deg,
      var(--cream-100),
      #f5eedc
    );

  box-shadow:
    0 10px 25px rgba(36, 52, 38, 0.07);

  animation:
    floatCard
    5.5s ease-in-out
    infinite;
}

.stars {
  color: var(--gold-500);

  font-size: 0.78rem;

  letter-spacing: 0.12em;
}

.testimonial-card p {
  margin:
    14px 0 18px;

  font-size: 0.86rem;

  line-height: 1.7;
}

.testimonial-card span {
  color: var(--forest-700);

  font-size: 0.72rem;
  font-weight: 600;
}

@keyframes testimonialMarquee {

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

}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

}


/* ==========================================================================
   FAQ
   ========================================================================== */

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

.faq-list {
  width:
    min(820px, 100%);

  margin:
    0 auto;

  border-top:
    1px solid
    rgba(49, 80, 53, 0.14);
}

.faq-item {
  border-bottom:
    1px solid
    rgba(49, 80, 53, 0.14);
}

.faq-question {
  width: 100%;

  padding:
    20px 0;

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

  gap: 20px;

  border: 0;

  color: var(--forest-700);

  background: transparent;

  cursor: pointer;

  font-size: 0.9rem;
  font-weight: 600;

  text-align: left;
}

.faq-symbol {
  color: var(--gold-500);

  font-size: 1.35rem;

  transition:
    transform 220ms var(--ease);
}

.faq-item.open
.faq-symbol {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;

  grid-template-rows: 0fr;

  transition:
    grid-template-rows
    300ms var(--ease);
}

.faq-answer > p {
  min-height: 0;

  margin: 0;

  overflow: hidden;

  color: var(--muted);

  font-size: 0.84rem;
}

.faq-item.open
.faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open
.faq-answer > p {
  padding-bottom: 20px;
}


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

.footer {
  padding:
    54px 0 22px;

  color:
    rgba(255, 255, 255, 0.7);

  background: var(--forest-950);
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.3fr
    repeat(3, 1fr);

  gap: 40px;
}

.footer h3 {
  margin:
    0 0 12px;

  color: #fff;

  font-size: 0.74rem;
  font-weight: 600;

  letter-spacing: 0.09em;

  text-transform: uppercase;
}

.footer a,
.footer p {
  display: block;

  margin:
    7px 0 0;

  color:
    rgba(255, 255, 255, 0.63);

  font-size: 0.76rem;
}

.footer a:hover {
  color: var(--gold-300);
}

.footer-brand strong {
  display: block;

  color: #fff;

  font-family: var(--heading);

  font-size: 2.3rem;

  font-weight: 400;

  line-height: 1;
}

.footer-bottom {
  margin-top: 42px;

  padding-top: 18px;

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

  gap: 16px;

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

  font-size: 0.68rem;
}


/* ==========================================================================
   MODALS
   ========================================================================== */

.modal {
  position: fixed;

  z-index: 2000;

  inset: 0;

  padding: 20px;

  display: grid;
  place-items: center;

  visibility: hidden;

  opacity: 0;

  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.modal.open {
  visibility: visible;

  opacity: 1;
}

.modal-backdrop {
  position: absolute;

  inset: 0;

  background:
    rgba(8, 13, 9, 0.74);

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

  backdrop-filter:
    blur(6px);
}

.modal-card {
  position: relative;

  z-index: 1;

  width:
    min(520px, 100%);

  max-height:
    min(86vh, 760px);

  overflow-y: auto;

  scrollbar-width: thin;

  padding:
    clamp(26px, 5vw, 40px);

  border-radius:
    var(--radius-lg);

  background:
    var(--cream-50);

  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.3);

  opacity: 0;

  transform:
    translateY(26px)
    scale(0.96);

  transition:
    transform 480ms cubic-bezier(0.34, 1.42, 0.64, 1),
    opacity 280ms ease-out;
}


/*
  POPUP ENTRANCE

  A single spring-eased transition rather than a
  multi-keyframe bounce: one gentle overshoot as it
  settles into place, instead of visibly bouncing up
  and down.
*/

.modal.open
.modal-card {
  opacity: 1;

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


.modal-card h2 {
  font-size:
    clamp(2.7rem, 6vw, 4rem);
}

.modal-close {
  position: absolute;

  z-index: 5;

  top: 14px;
  right: 14px;

  width: 38px;
  height: 38px;

  border: 0;

  border-radius: 50%;

  color: var(--forest-700);

  background:
    rgba(49, 80, 53, 0.08);

  cursor: pointer;

  font-size: 1.5rem;

  line-height: 1;
}

.reach-out-modal-card {
  width:
    min(570px, 100%);
}

.reach-dialog-intro {
  max-width: 480px;

  margin:
    12px 0 24px;

  color: var(--muted);

  font-size: 0.86rem;

  line-height: 1.7;
}

.reach-dialog-options {
  display: grid;

  gap: 10px;
}

.reach-dialog-option {
  min-height: 74px;

  padding:
    14px 16px;

  display: grid;

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

  align-items: center;

  gap: 14px;

  border:
    1px solid
    rgba(185, 146, 77, 0.18);

  border-radius: 14px;

  color: var(--text);

  background:
    linear-gradient(
      135deg,
      #fffdf7,
      #f8f1df
    );

  box-shadow:
    0 7px 18px rgba(16, 26, 17, 0.04);

  transition:
    transform 230ms var(--ease),
    border-color 230ms ease,
    box-shadow 230ms ease;
}

.reach-dialog-option:hover {
  transform:
    translateX(4px);

  border-color:
    rgba(185, 146, 77, 0.42);

  box-shadow:
    0 10px 24px rgba(16, 26, 17, 0.08);
}

.reach-dialog-icon {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #fff;

  background:
    var(--forest-700);
}

.reach-dialog-copy strong,
.reach-dialog-copy span {
  display: block;
}

.reach-dialog-copy strong {
  color: var(--forest-700);

  font-size: 0.82rem;
  font-weight: 600;
}

.reach-dialog-copy span {
  margin-top: 2px;

  color: var(--muted);

  font-size: 0.7rem;
}

.reach-arrow {
  color: var(--gold-500);

  font-size: 1.2rem;
}


/* ==========================================================================
   PRODUCT MODAL
   ========================================================================== */

.product-modal-card,
.product-modal-card .eyebrow,
.product-modal-card h2 {
  text-align: left;
}

.product-modal-card h2 {
  padding-right: 48px;
}

.product-detail-heading-row {
  margin-top: 12px;

  display: flex;
  align-items: center;

  gap: 8px;
}

.product-detail-type {
  color: var(--muted);

  font-size: 0.66rem;
  font-weight: 500;

  letter-spacing: 0.05em;

  text-transform: uppercase;
}

.product-detail-description {
  margin:
    15px 0 0;

  color: var(--muted);

  font-size: 0.8rem;

  line-height: 1.7;
}

.product-detail-section {
  margin-top: 24px;
}

.product-detail-section h3 {
  margin:
    0 0 9px;

  color: var(--forest-700);

  font-size: 0.67rem;
  font-weight: 700;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}

.product-detail-section > p {
  margin: 0;

  color: var(--muted);

  font-size: 0.76rem;

  line-height: 1.75;
}

.product-detail-variants {
  display: grid;

  gap: 8px;
}

.product-detail-variant {
  padding:
    12px 13px;

  display: grid;

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

  align-items: center;

  gap: 18px;

  border:
    1px solid
    rgba(185, 146, 77, 0.16);

  border-radius: 12px;

  background:
    linear-gradient(
      135deg,
      #fffef9,
      #f7f0df
    );
}

.detail-variant-main {
  min-width: 88px;

  display: flex;

  align-items: baseline;

  gap: 10px;
}

.detail-weight {
  color: var(--forest-700);

  font-size: 0.72rem;
  font-weight: 700;
}

.detail-price {
  color: var(--forest-700);

  font-size: 0.92rem;
  font-weight: 700;
}

.detail-packaging {
  min-width: 0;

  padding-left: 16px;

  border-left:
    1px solid
    rgba(49, 80, 53, 0.1);
}

.detail-packaging span,
.detail-packaging strong {
  display: block;
}

.detail-packaging span {
  margin-bottom: 2px;

  color: var(--gold-500);

  font-size: 0.56rem;
  font-weight: 600;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.detail-packaging strong {
  color: var(--muted);

  font-size: 0.66rem;
  font-weight: 500;

  line-height: 1.45;
}

.product-detail-facts {
  margin-top: 23px;

  padding: 14px;

  display: grid;

  gap: 10px;

  border:
    1px solid
    rgba(185, 146, 77, 0.16);

  border-radius: 12px;

  background:
    linear-gradient(
      145deg,
      var(--cream-100),
      #f5eedb
    );
}

.product-detail-fact-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 18px;
}

.product-detail-fact-row span {
  color: var(--muted);

  font-size: 0.65rem;
}

.product-detail-fact-row strong {
  color: var(--forest-700);

  font-size: 0.66rem;
  font-weight: 600;

  text-align: right;
}

.product-storage-note {
  margin:
    2px 0 0;

  padding-top: 10px;

  border-top:
    1px solid
    rgba(49, 80, 53, 0.09);

  color: var(--muted);

  font-size: 0.64rem;

  line-height: 1.6;
}


/* ==========================================================================
   FEEDBACK FORM
   ========================================================================== */

.feedback-modal-card {
  width:
    min(520px, 100%);
}

.feedback-intro {
  max-width: 420px;

  margin:
    11px 0 20px;

  color: var(--muted);

  font-size: 0.78rem;

  line-height: 1.65;
}

.form-field {
  margin-top: 14px;
}

.form-field label {
  color: var(--forest-700);

  font-size: 0.72rem;
  font-weight: 600;
}

.field-hint {
  color: var(--muted);

  font-weight: 400;
}

.form-field input,
.form-field textarea {
  width: 100%;

  outline: none;

  border:
    1px solid
    rgba(49, 80, 53, 0.15);

  border-radius: 12px;

  color: var(--text);

  background:
    linear-gradient(
      180deg,
      #fff,
      #fffdf7
    );

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.form-field input {
  height: 44px;

  padding:
    0 12px;
}

.form-field textarea {
  min-height: 105px;

  padding: 14px;

  resize: vertical;

  line-height: 1.6;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color:
    rgba(49, 80, 53, 0.55);

  box-shadow:
    0 0 0 4px rgba(49, 80, 53, 0.07);
}

.form-status {
  min-height: 1.4em;

  margin:
    11px 0 0;

  color: var(--danger);

  font-size: 0.74rem;
  font-weight: 500;
}

.form-status.success {
  color: var(--forest-700);
}

.feedback-submit {
  width: 100%;

  margin-top: 13px;
}


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

@media (max-width: 1040px) {

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

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

}


@media (max-width: 900px) {

  .packaging-layout,
  .about-layout {
    grid-template-columns: 1fr;

    gap: 42px;
  }

  .packaging-copy,
  .delivery-panel,
  .about-image-wrap,
  .about-copy {
    width:
      min(650px, 100%);

    margin-inline: auto;
  }

  .about-copy {
    text-align: center;
  }

  .about-body {
    margin-inline: auto;
  }

}


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

@media (max-width: 820px) {

  .navbar {
    min-height: 62px;

    padding-inline: 16px;

    background: transparent;
  }

  .navbar.scrolled {
    min-height: 62px;

    background:
      rgba(18, 31, 20, 0.58);

    -webkit-backdrop-filter:
      blur(20px) saturate(145%);

    backdrop-filter:
      blur(20px) saturate(145%);
  }

  body.nav-open
  .navbar {
    background:
      rgba(16, 26, 17, 0.82);
  }

  .brand-logo,
  .navbar.scrolled
  .brand-logo {
    width: 44px;
  }

  .brand-logo img {
    max-height: 42px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;

    z-index: 1001;

    top: 62px;
    left: 0;

    width: 100%;
    height:
      calc(100svh - 62px);

    margin: 0;

    padding:
      26px 22px 38px;

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

    gap: 4px;

    visibility: hidden;

    opacity: 0;

    pointer-events: none;

    overflow-y: auto;

    background:
      rgba(16, 26, 17, 0.96);

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

    backdrop-filter:
      blur(18px);

    transform:
      translateY(-10px);

    transition:
      opacity 220ms ease,
      visibility 220ms ease,
      transform 240ms var(--ease);
  }

  .nav-links.active {
    visibility: visible;

    opacity: 1;

    pointer-events: auto;

    transform:
      translateY(0);
  }

  .nav-links li {
    width:
      min(280px, 100%);
  }

  .nav-links a {
    width: 100%;

    min-height: 46px;

    padding:
      10px 12px;

    justify-content: center;

    font-size: 0.76rem;

    text-align: center;
  }

  .nav-links a::after {
    display: none;
  }

}


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

@media (max-width: 620px) {

  .container {
    width:
      calc(100% - 30px);
  }

  .section {
    padding:
      52px 0;
  }

  .eyebrow {
    margin-bottom: 8px;

    font-size: 0.62rem;

    letter-spacing: 0.16em;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size:
      clamp(2.3rem, 11vw, 3rem);
  }

  .section-heading > p:last-child {
    max-width: 290px;

    margin-top: 10px;

    font-size: 0.77rem;

    line-height: 1.6;
  }


  /* HERO */

  .hero-section {
    min-height: 100svh;

    padding:
      82px 18px
      65px;
  }

  .hero-content {
    width: 100%;

    max-width: 330px;
  }

  .hero-content h1 {
    font-size:
      clamp(2.75rem, 13vw, 3.55rem);

    line-height: 0.94;

    white-space: nowrap;
  }

  .hero-copy {
    max-width: 285px;

    margin-top: 18px;

    font-size: 0.78rem;

    line-height: 1.65;
  }

  .hero-actions {
    width: 100%;

    margin:
      24px auto 0;

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

  .hero-actions
  .talk-button-hero {
    min-width: 170px;
    min-height: 44px;

    padding:
      4px
      4px
      4px
      18px;

    gap: 15px;

    font-size: 0.6rem;
  }

  .hero-actions
  .talk-button-hero
  .talk-button-icon {
    width: 34px;
    height: 34px;

    flex-basis: 34px;

    font-size: 0.84rem;
  }


  /* PRODUCTS */

  .product-grid {
    width:
      min(310px, 100%);

    margin-inline: auto;

    grid-template-columns: 1fr;

    gap: 18px;
  }

  .product-card-reveal {
    width: 100%;
  }

  .product-card,
  .product-card:hover {
    transform: none !important;

    border-radius: 16px;

    box-shadow:
      0 9px 20px rgba(35, 51, 36, 0.1),
      0 20px 38px rgba(35, 51, 36, 0.075);
  }

  .product-card::before {
    display: none;
  }

  .product-image-wrap {
    aspect-ratio: 4 / 3;

    transform: none;
  }

  .product-image-wrap img,
  .product-card:hover
  .product-image-wrap img {
    transform: none;
  }

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

    transform: none;
  }

  .product-title-row h3 {
    font-size: 1.65rem;
  }

  .product-card-body > p {
    min-height: 0;

    margin:
      8px 0 9px;

    font-size: 0.69rem;
  }

  .product-front-info,
  .product-variant-front {
    margin:
      8px 0 3px;

    padding:
      5px 0;
  }

  .product-front-weight {
    font-size: 0.61rem;
  }

  .product-front-price {
    font-size: 0.82rem;
  }

  .product-variant-front {
    gap: 4px;
  }

  .product-variant-front > span {
    padding:
      6px 2px;

    font-size: 0.54rem;
  }

  .product-meta {
    padding-top: 10px;
  }

  .product-meta > span {
    font-size: 0.55rem;
  }

  .text-button {
    font-size: 0.62rem;
  }


  /* LARGE ORDER */

  .custom-order-heading {
    width:
      min(300px, 100%);
  }

  .custom-order-heading h2 {
    font-size:
      clamp(2.45rem, 12vw, 3.25rem);
  }

  .custom-order-heading > p:last-child {
    margin-top: 13px;

    font-size: 0.77rem;

    line-height: 1.65;
  }

  .custom-order-features {
    width:
      min(310px, 100%);

    margin:
      30px auto 0;

    grid-template-columns: 1fr;
  }

  .custom-order-feature {
    padding:
      17px 10px;

    display: block;

    text-align: center;
  }

  .custom-order-feature:not(:last-child)::after {
    top: auto;
    left: 8%;
    right: 8%;
    bottom: 0;

    width: auto;
    height: 1px;
  }

  .custom-feature-number {
    display: block;

    margin-bottom: 4px;

    font-size: 0.61rem;
  }

  .custom-order-feature strong {
    font-size: 0.75rem;
  }

  .custom-order-feature p {
    max-width: 255px;

    margin:
      4px auto 0;

    font-size: 0.67rem;

    line-height: 1.55;
  }

  .custom-order-action {
    margin-top: 22px;

    display: flex;
    justify-content: center;
  }

  .custom-order-action-line {
    display: none;
  }

  .custom-order-action
  .talk-button-section {
    min-width: 184px;
    min-height: 43px;

    padding:
      4px
      4px
      4px
      17px;

    gap: 14px;

    font-size: 0.58rem;
  }

  .custom-order-action
  .talk-button-section
  .talk-button-icon {
    width: 33px;
    height: 33px;

    flex-basis: 33px;
  }


  /* PROCESS */

  .process-flow {
    width:
      min(300px, 100%);

    margin-inline: auto;
  }

  .process-grid {
    grid-template-columns: 1fr;

    gap: 28px;
  }

  .process-line {
    top: 27px;
    bottom: 27px;
    left: 50%;
    right: auto;

    width: 1px;
    height: auto;

    transform:
      translateX(-50%);
  }

  .process-line-light {
    top: -16%;
    left: -2px;

    width: 5px;
    height: 16%;

    background:
      linear-gradient(
        180deg,
        transparent,
        rgba(216, 189, 130, 0.15),
        #e7ca8a,
        #fff4ce,
        transparent
      );

    animation:
      processLightTravelMobile
      10s linear
      infinite;
  }

  .process-step {
    padding: 0;

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

    text-align: center;
  }

  .process-number {
    width: 54px;
    height: 54px;

    margin:
      0 auto 11px;

    font-size: 0.66rem;
  }

  .process-step h3 {
    position: relative;

    z-index: 3;

    margin:
      0 auto 5px;

    padding:
      0 8px;

    background:
      var(--forest-900);

    font-size: 0.78rem;
  }

  .process-step p {
    position: relative;

    z-index: 3;

    width:
      min(250px, 100%);

    padding:
      0 8px;

    background:
      var(--forest-900);

    font-size: 0.67rem;

    line-height: 1.55;
  }

  @keyframes processLightTravelMobile {

    from {
      top: -16%;
    }

    to {
      top: 100%;
    }

  }


  /* PACKAGING */

  .packaging-layout {
    gap: 30px;
  }

  .packaging-copy {
    width:
      min(310px, 100%);

    margin-inline: auto;

    text-align: center;
  }

  .packaging-copy h2 {
    font-size:
      clamp(2.45rem, 12vw, 3.25rem);
  }

  .packaging-intro,
  .packaging-copy
  > p:not(.eyebrow) {
    width:
      min(300px, 100%);

    margin:
      13px auto 0;

    font-size: 0.77rem;

    line-height: 1.65;
  }

  .clean-list {
    width:
      min(310px, 100%);

    margin:
      30px auto 0;

    display: block;

    text-align: center;
  }

  .clean-list li {
    position: relative;

    padding:
      17px 10px;

    display: block;

    border-bottom: 0;

    text-align: center;
  }

  .clean-list li:not(:last-child)::after {
    content: "";

    position: absolute;

    left: 8%;
    right: 8%;
    bottom: 0;

    height: 1px;

    background:
      rgba(49, 80, 53, 0.12);
  }

  .packaging-list-number {
    display: block;

    margin-bottom: 4px;

    padding-top: 0;

    font-size: 0.61rem;
  }

  .clean-list strong {
    font-size: 0.75rem;
  }

  .clean-list p {
    max-width: 255px;

    margin:
      4px auto 0;

    font-size: 0.67rem;

    line-height: 1.55;
  }

  .delivery-panel {
    width:
      min(310px, 100%);

    margin-inline: auto;

    border-radius: 18px;
  }

  .delivery-panel-header {
    padding:
      14px 16px 11px;
  }

  .delivery-panel-body {
    padding:
      16px;
  }

  .delivery-panel h3 {
    font-size: 1.24rem;
  }

  .delivery-description {
    font-size: 0.6rem;

    line-height: 1.58;
  }

  .delivery-route {
    display: none;
  }


  /* ABOUT */

  .about-layout {
    gap: 25px;
  }

  .about-copy {
    order: 1;

    width:
      min(300px, 100%);

    text-align: center;
  }

  .about-image-wrap {
    order: 2;

    width:
      min(300px, 100%);

    border-radius: 19px;
  }

  .about-copy h2 {
    font-size:
      clamp(2.45rem, 11vw, 3.05rem);
  }

  .about-body {
    max-width: 290px;

    margin:
      18px auto 0;

    gap: 13px;
  }

  .about-body p {
    font-size: 0.68rem;

    line-height: 1.65;
  }


  /* TESTIMONIALS */

  .testimonial-heading h2 {
    font-size:
      clamp(2.5rem, 11vw, 3.1rem);
  }

  .testimonial-card {
    width:
      min(238px, 72vw);

    min-height: 170px;

    padding:
      16px 15px;
  }

  .testimonial-card p {
    font-size: 0.68rem;
  }


  /* FOOTER */

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

    gap:
      28px 16px;

    text-align: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: center;

    text-align: center;
  }


  /* MODALS */

  .modal {
    padding: 0;

    place-items: end center;
  }

  .modal-card {
    width: 100%;

    max-height: 92svh;

    padding:
      22px 16px 18px;

    border-radius:
      22px 22px 0 0;
  }

  .modal-card h2 {
    font-size:
      clamp(2.2rem, 10vw, 2.8rem);
  }

  .reach-out-modal-card > .eyebrow,
  .reach-out-modal-card h2 {
    text-align: center;
  }

  .reach-dialog-intro {
    max-width: 285px;

    margin:
      9px auto 18px;

    font-size: 0.69rem;

    text-align: center;
  }

  .reach-dialog-options {
    width:
      min(310px, 100%);

    margin-inline: auto;
  }

  .reach-dialog-option {
    min-height: 60px;

    padding:
      10px 12px;

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

    gap: 10px;
  }

  .reach-dialog-icon {
    width: 34px;
    height: 34px;
  }


  /* PRODUCT POPUP */

  .product-modal-card,
  .product-modal-card .eyebrow,
  .product-modal-card h2 {
    text-align: left !important;
  }

  .product-modal-card h2 {
    padding-right: 42px;

    font-size:
      clamp(2rem, 9.5vw, 2.65rem);
  }

  .product-detail-description {
    font-size: 0.69rem;
  }

  .product-detail-variant {
    grid-template-columns:
      82px
      minmax(0, 1fr);
  }

}


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

@media (max-width: 380px) {

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

  .hero-content h1 {
    font-size: 2.7rem;
  }

}


/* ==========================================================================
   SHORT LANDSCAPE
   ========================================================================== */

@media (max-height: 560px) and (orientation: landscape) {

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

    padding:
      82px 20px 48px;
  }

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

  .hero-content h1 {
    font-size:
      clamp(3.1rem, 8vw, 4.4rem);
  }

}


/* ==========================================================================
   AOS
   ========================================================================== */

.products-section [data-aos] {
  will-change:
    opacity,
    transform;
}


/*
  Keep nested product animation smooth.

  We do NOT put AOS directly on .product-card because
  .product-card already owns a transform for 3D hover.
*/

.product-card-reveal {
  transform-style: preserve-3d;
}


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

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

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;
  }

}