:root {
  --gold: #cdb685;
  --gold-deep: #af9349;
  --green: #5d966c;
  --green-dark: #253a1b;
  --green-deep: #1d3015;
  --blue: #447490;
  --white: #ffffff;
  --off-white: #f5f5f2;
  --soft-gray: #f2f2f2;
  --ink: #333333;
  --text: #666666;
  --heading: #555555;
  --line: rgba(205, 182, 133, 0.35);
  --shadow: 0 24px 60px rgba(26, 41, 20, 0.18);
  --radius: 8px;
  --header-offset: 120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Montserrat, Avenir Next, Segoe UI, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--green-dark);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 140;
  width: var(--scroll-progress, 0%);
  height: 4px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(205, 182, 133, 0.8);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  isolation: isolate;
}

.promo-bar {
  display: grid;
  min-height: 40px;
  place-items: center;
  padding: 0.4rem 1rem;
  color: var(--white);
  background: color-mix(in srgb, var(--green) 82%, var(--green-dark));
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 80px;
  padding: 0 4.8vw;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(85, 85, 85, 0.12);
  box-shadow: 0 14px 42px rgba(20, 32, 16, 0.12);
  backdrop-filter: blur(22px) saturate(150%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 176px;
}

.brand img {
  width: 100%;
}

.nav-menu {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 1.7rem;
}

.nav-link,
.nav-menu-button,
.cart-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4f4f4f;
  font-size: 1.28rem;
  font-weight: 500;
  min-height: 80px;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-menu-button:hover,
.cart-link:hover {
  color: var(--gold-deep);
}

.nav-menu-button svg {
  width: 22px;
  height: 22px;
  margin-left: 0.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform 220ms ease;
}

.has-menu.is-open .nav-menu-button svg {
  transform: rotate(180deg);
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% - 0.25rem);
  left: -0.75rem;
  display: grid;
  gap: 0.25rem;
  width: 330px;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(18px);
}

.has-menu.is-open .dropdown,
.has-menu:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown a {
  padding: 0.85rem 0.95rem;
  border-radius: 6px;
  color: var(--heading);
  font-weight: 700;
}

.dropdown a:hover {
  background: rgba(205, 182, 133, 0.16);
  color: var(--green-dark);
}

.nav-cta,
.button {
  --x: 50%;
  --y: 50%;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.88rem 1.75rem;
  color: var(--white);
  background:
    radial-gradient(circle at var(--x) var(--y), rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(135deg, var(--gold), var(--gold-deep));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(175, 147, 73, 0.26);
  overflow: hidden;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  transform: translate3d(0, 0, 0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nav-cta {
  min-width: 126px;
  min-height: 72px;
  align-self: center;
  padding: 0.8rem 1.45rem;
  font-size: 1.15rem;
}

.button::before,
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  pointer-events: none;
}

.button::after,
.nav-cta::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-left: 0.75rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(175, 147, 73, 0.36);
}

.button:hover::after,
.nav-cta:hover::after {
  transform: translateX(3px) rotate(45deg);
}

.button-compact {
  min-width: 214px;
  min-height: 48px;
  padding: 0.7rem 1.2rem;
}

.cart-link {
  width: 44px;
}

.cart-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  justify-self: end;
  border: 1px solid rgba(205, 182, 133, 0.48);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-dark);
  border-radius: 2px;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 7vw));
  margin: 0 auto;
}

section {
  position: relative;
  overflow: clip;
}

.hero {
  min-height: 500px;
  display: grid;
  align-items: center;
  color: var(--white);
  isolation: isolate;
}

.hero-slides,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slides {
  overflow: hidden;
  background: #1c3112;
}

.hero-slide {
  inset: 0 0 0 52%;
  width: auto;
  height: 100%;
  box-sizing: border-box;
  padding: clamp(0.8rem, 2.4vw, 2.2rem);
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transform: none;
  background:
    radial-gradient(circle at 78% 42%, rgba(255, 255, 255, 0.13), transparent 32%),
    linear-gradient(90deg, rgba(28, 49, 18, 0.2), rgba(28, 49, 18, 0.46));
  filter: saturate(1.08) contrast(1.04);
  transition: opacity 1400ms ease;
}

.hero-slide:nth-child(1) {
  object-position: center;
}

.hero-slide:nth-child(2) {
  object-position: center;
}

.hero-slide:nth-child(3) {
  object-position: center;
}

.hero-slide:nth-child(4) {
  object-position: center;
}

.hero-slide:nth-child(5) {
  object-position: center;
}

.hero-slide:nth-child(6) {
  object-position: center;
}

.hero-slide:nth-child(7) {
  object-position: center;
}

.hero-slide:nth-child(2n) {
  transform: none;
}

.hero-slide:nth-child(3n) {
  transform: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: none;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(28, 49, 18, 0.88) 0%, rgba(43, 71, 28, 0.62) 42%, rgba(43, 71, 28, 0.22) 100%),
    linear-gradient(0deg, rgba(18, 31, 12, 0.22), rgba(18, 31, 12, 0.22));
}

.hero-slide-rail {
  position: absolute;
  right: clamp(1.5rem, 4vw, 3.75rem);
  bottom: clamp(1.35rem, 4vw, 3rem);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(7, minmax(18px, 3vw));
  gap: 0.55rem;
  pointer-events: none;
}

.hero-slide-rail span {
  position: relative;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 0 18px rgba(205, 182, 133, 0.34);
}

.hero-slide-rail span::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), #fff7d7);
}

.hero-slide-rail span.is-active::before {
  animation: slideRail 6.2s linear forwards;
}

.hero-inner {
  padding: 2.6rem 0 2.8rem;
}

.hero-copy {
  max-width: 590px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--heading);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.section-invert h1,
.section-invert h2,
.section-invert h3,
.section-invert p,
.section-invert li {
  color: var(--white);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.2rem;
  text-align: center;
}

h3 {
  font-size: 1.35rem;
}

p,
li {
  font-size: 1.12rem;
  line-height: 1.55;
}

.hero p {
  max-width: 560px;
  margin-top: 1.4rem;
  font-size: 1.18rem;
  font-weight: 700;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.34);
}

.hero .button {
  margin-top: 1.5rem;
}

.trusted {
  padding: 2.2rem 0 4.2rem;
}

.section-muted {
  background: linear-gradient(180deg, var(--soft-gray), #fbfbfa);
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.8rem;
}

.logo-tile {
  display: grid;
  min-height: 168px;
  place-items: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(85, 85, 85, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(20, 32, 16, 0.08);
  backdrop-filter: blur(14px);
  color: inherit;
  text-decoration: none;
}

a.logo-tile {
  cursor: pointer;
}

.logo-tile-static {
  cursor: default;
}

a.logo-tile:focus-visible {
  outline: 3px solid rgba(156, 181, 78, 0.8);
  outline-offset: 5px;
}

.logo-tile img {
  max-height: 94px;
  object-fit: contain;
}

.products {
  padding: 5.2rem 0 5.8rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 55%, #f7f4ed 100%),
    repeating-linear-gradient(90deg, rgba(68, 116, 144, 0.08) 0 1px, transparent 1px 90px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 3rem;
  perspective: 1200px;
}

.product-card {
  position: relative;
  min-height: 560px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(205, 182, 133, 0.42);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 160ms ease, box-shadow 160ms ease;
  will-change: transform;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(125deg, transparent 0 38%, rgba(205, 182, 133, 0.18) 44%, transparent 54%),
    linear-gradient(180deg, rgba(68, 116, 144, 0.07), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.product-card:hover {
  box-shadow: 0 30px 70px rgba(26, 41, 20, 0.22);
}

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

.product-visual {
  display: grid;
  position: relative;
  min-height: 280px;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(245, 245, 242, 0.95), rgba(255, 255, 255, 0.55)),
    repeating-linear-gradient(135deg, rgba(205, 182, 133, 0.18) 0 1px, transparent 1px 22px);
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: auto 12% 18px;
  height: 16px;
  background: rgba(33, 44, 28, 0.2);
  filter: blur(10px);
  transform: scaleX(0.72);
}

.product-visual img {
  position: relative;
  z-index: 2;
  max-height: 250px;
  transition: transform 280ms ease;
}

.product-card:hover .product-visual img {
  transform: translateY(-8px) scale(1.04);
}

.product-card h3 {
  min-height: 3.2rem;
  margin-top: 1.35rem;
}

.product-card .stars {
  width: 118px;
  margin-top: 0.9rem;
}

.price {
  min-height: 4.8rem;
  margin: 0.75rem 0 1.1rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--heading);
}

.split-feature,
.difference {
  min-height: 620px;
  display: grid;
  align-items: center;
}

.feature-bg,
.pattern-bg,
.footer-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(247, 244, 237, 0.1) 45%, rgba(247, 244, 237, 0.78) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}

.split-right {
  justify-items: end;
}

.feature-copy {
  position: relative;
}

.why .feature-copy {
  max-width: 540px;
  padding: 2.4rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(205, 182, 133, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(26, 41, 20, 0.14);
  backdrop-filter: blur(18px);
}

.why .feature-copy h2,
.why .feature-copy p,
.why .feature-copy li {
  color: var(--ink);
}

.feature-copy h2 {
  text-align: left;
}

.feature-copy p {
  margin-top: 1.5rem;
  font-weight: 650;
}

.check-list,
.dot-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.8rem 0 2rem;
  padding: 0;
  list-style: none;
}

.check-list li,
.dot-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.75rem;
  align-items: start;
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 0.25rem;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--gold), var(--gold-deep));
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.55);
}

.dot-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 0.7rem;
  border-radius: 50%;
  background: var(--white);
}

.reviews {
  padding: 5.3rem 0 5.8rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 3rem;
}

.review-card {
  min-height: 330px;
  padding: 1.7rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(85, 85, 85, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(20, 32, 16, 0.09);
}

.stars-large {
  width: 190px;
  max-width: 100%;
}

.review-card p {
  margin-top: 1rem;
  color: var(--heading);
  font-weight: 650;
}

.difference,
.site-footer {
  background: var(--green-dark);
}

.difference::after,
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 53, 21, 0.94), rgba(31, 53, 21, 0.78)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 96px);
}

.pattern-bg {
  opacity: 0.38;
  mix-blend-mode: screen;
}

.image-frame {
  position: relative;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 700ms ease;
}

.image-frame:hover img {
  transform: scale(1.045);
}

.difference-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 700ms ease;
}

.difference-video-frame:hover video {
  transform: scale(1.035);
}

.farm {
  padding: 0;
  background:
    linear-gradient(180deg, #ffffff, #f8f8f4),
    repeating-linear-gradient(120deg, rgba(68, 116, 144, 0.07) 0 1px, transparent 1px 80px);
}

.farm .feature-copy {
  padding: 0 0.5rem;
}

.farm .feature-copy p,
.farm .feature-copy h2 {
  color: var(--heading);
}

.image-frame-offset {
  transform: translateY(-18px);
}

.farm-motion {
  min-height: min(620px, 72vw);
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 24% 18%, rgba(214, 230, 170, 0.24), transparent 32%),
    linear-gradient(145deg, var(--green-deep), #1f3323);
}

.farm-motion-video,
.farm-motion-scrim {
  position: absolute;
  inset: 0;
}

.farm-motion-video {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  opacity: 0;
  transition: opacity 260ms ease;
  z-index: 0;
}

.farm-motion-video.is-active {
  opacity: 1;
  z-index: 1;
}

.farm-motion-scrim {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(26, 41, 20, 0.08), rgba(26, 41, 20, 0.38)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 44%);
  pointer-events: none;
}

.contact {
  padding: 5rem 0;
}

.contact-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.contact-inner p {
  max-width: 680px;
  margin: 1.2rem 0 2rem;
  color: var(--heading);
  font-weight: 650;
}

.site-footer {
  position: relative;
  overflow: hidden;
}

.site-footer::after {
  background: rgba(31, 53, 21, 0.82);
}

.footer-pattern {
  opacity: 0.58;
  object-fit: cover;
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  min-height: 420px;
  padding: 4rem 0;
}

.footer-links {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  text-align: center;
}

.footer-links h2 {
  color: var(--white);
  font-size: 1.65rem;
  text-align: center;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 750;
}

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

.socials {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.socials a {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.socials svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.socials a:first-child svg,
.socials a:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

.copyright {
  position: relative;
  z-index: 2;
  padding: 1.2rem 4.8vw;
  color: var(--white);
  background: #303030;
  font-weight: 700;
}

.nav-link.is-current,
.nav-menu-button.is-current {
  color: var(--gold-deep);
}

.subpage main {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #f7f4ed 100%),
    repeating-linear-gradient(90deg, rgba(68, 116, 144, 0.06) 0 1px, transparent 1px 96px);
}

.page-hero {
  min-height: 560px;
  display: grid;
  align-items: center;
  color: var(--white);
  isolation: isolate;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(28, 49, 18, 0.96) 0%, rgba(28, 49, 18, 0.86) 38%, rgba(68, 116, 144, 0.58) 100%),
    radial-gradient(circle at 76% 22%, rgba(205, 182, 133, 0.38), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 96px);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: 4.6rem 0;
}

.page-hero-copy {
  max-width: 720px;
}

.page-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.5rem 0.75rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  backdrop-filter: blur(16px);
}

.page-hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.15rem, 4.6vw, 4rem);
}

.page-hero-copy p:not(.page-kicker) {
  max-width: 680px;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  font-weight: 720;
}

.page-hero-copy .button {
  margin-top: 1.75rem;
}

.page-hero-media {
  min-height: 390px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(205, 182, 133, 0.2));
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.page-hero-media img[src*="product"] {
  object-fit: contain;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 244, 237, 0.8)),
    repeating-linear-gradient(135deg, rgba(205, 182, 133, 0.18) 0 1px, transparent 1px 22px);
}

.page-shop {
  padding-top: 5.2rem;
}

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

.page-product-card {
  min-height: 520px;
}

.page-band {
  position: relative;
  padding: 5.4rem 0;
  overflow: clip;
}

.page-content-flow h2 {
  margin-bottom: 2.8rem;
}

.page-content-flow .section-inner > h2 {
  color: var(--heading);
}

.info-grid,
.faq-grid,
.owner-grid,
.consultation-grid,
.form-grid,
.product-detail-grid {
  display: grid;
  gap: 1.5rem;
}

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

.info-grid.two-col,
.owner-grid,
.consultation-grid,
.form-grid,
.product-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.info-block,
.faq-item,
.purchase-panel,
.questionnaire-form,
.consultation-checks,
.product-detail-visual {
  position: relative;
  padding: 1.55rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(205, 182, 133, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(20, 32, 16, 0.09);
  backdrop-filter: blur(14px);
}

.info-block::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: var(--radius) 0 0 var(--radius);
  background: linear-gradient(180deg, var(--gold), var(--green));
}

.info-block h3,
.faq-item summary,
.purchase-panel h3 {
  color: var(--heading);
}

.info-block p,
.faq-item p,
.product-detail-copy p,
.questionnaire-form label {
  margin-top: 0.85rem;
  color: var(--heading);
  font-weight: 650;
}

.faq-section {
  padding: 5rem 0;
}

.faq-section h2 {
  margin-bottom: 2.5rem;
}

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

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.35rem 1.55rem;
  font-size: 1.12rem;
  font-weight: 800;
}

.faq-item p {
  padding: 0 1.55rem 1.45rem;
}

.section-spacer {
  margin-top: 4rem;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.value-list li {
  min-height: 150px;
  padding: 1.4rem;
  color: var(--heading);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(205, 182, 133, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(20, 32, 16, 0.08);
  font-weight: 800;
}

.owner-section {
  background:
    linear-gradient(180deg, #ffffff, #f7f4ed),
    repeating-linear-gradient(90deg, rgba(68, 116, 144, 0.06) 0 1px, transparent 1px 96px);
}

.owner-section h2 {
  margin-bottom: 2.4rem;
}

.page-story-farm {
  padding: 0;
}

.product-detail-band {
  background:
    linear-gradient(180deg, #ffffff, #f7f4ed),
    repeating-linear-gradient(120deg, rgba(68, 116, 144, 0.06) 0 1px, transparent 1px 86px);
}

.product-detail-grid {
  align-items: center;
}

.product-detail-visual {
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
}

.product-detail-visual img {
  max-height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(26, 41, 20, 0.18));
}

.product-detail-copy {
  display: grid;
  gap: 1.35rem;
}

.detail-list {
  margin: 0;
}

.purchase-panel {
  display: grid;
  gap: 0.8rem;
}

.purchase-panel .button {
  width: fit-content;
}

.commerce-page {
  padding: 4.8rem 0 5.6rem;
  background:
    linear-gradient(180deg, #ffffff, #f7f4ed),
    repeating-linear-gradient(120deg, rgba(68, 116, 144, 0.05) 0 1px, transparent 1px 90px);
}

.commerce-heading {
  max-width: 780px;
  margin-bottom: 2.2rem;
}

.commerce-heading p:not(.page-kicker) {
  margin-top: 1rem;
  color: var(--heading);
  font-weight: 650;
}

.commerce-heading .page-kicker,
.product-summary .page-kicker {
  color: var(--green-deep);
  background: rgba(205, 182, 133, 0.18);
  border-color: rgba(205, 182, 133, 0.45);
}

.commerce-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 1.6rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
}

.commerce-breadcrumb a {
  color: var(--green-deep);
  text-decoration: none;
}

.product-single-grid,
.cart-layout,
.checkout-layout {
  display: grid;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
}

.product-single-grid {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.cart-layout,
.checkout-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.55fr);
}

.product-gallery,
.product-summary,
.cart-table-card,
.order-summary-card,
.checkout-form,
.checkout-notices p,
.tab-panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(205, 182, 133, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 22px 56px rgba(20, 32, 16, 0.1);
  backdrop-filter: blur(14px);
}

.product-gallery {
  padding: 1.3rem;
}

.product-single-image {
  display: grid;
  min-height: 560px;
  margin: 0;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 244, 237, 0.78)),
    repeating-linear-gradient(135deg, rgba(205, 182, 133, 0.16) 0 1px, transparent 1px 24px);
  border-radius: var(--radius);
}

.product-single-image img {
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(26, 41, 20, 0.18));
}

.product-thumb-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.85rem;
}

.product-thumb-row span {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 0.6rem;
  background: rgba(247, 244, 237, 0.72);
  border: 1px solid rgba(85, 85, 85, 0.08);
  border-radius: var(--radius);
}

.product-thumb-row img {
  max-height: 72px;
  object-fit: contain;
}

.product-summary {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.product-summary h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.rating-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.rating-line .stars {
  width: 128px;
}

.rating-line a,
.product-meta a {
  color: var(--green-deep);
  font-weight: 800;
  text-decoration: none;
}

.single-price {
  color: var(--heading);
  font-size: 1.25rem;
  font-weight: 850;
}

.single-purchase-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px auto;
  gap: 0.9rem;
  align-items: end;
  margin-top: 0.4rem;
}

.option-field,
.quantity-field,
.checkout-form label,
.payment-box label {
  display: grid;
  gap: 0.45rem;
  color: var(--heading);
  font-weight: 800;
}

.option-field select,
.quantity-field input,
.cart-row input,
.coupon-row input,
.checkout-form input,
.checkout-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.82rem 0.95rem;
  color: var(--heading);
  background: #ffffff;
  border: 1px solid rgba(85, 85, 85, 0.16);
  border-radius: var(--radius);
  font: inherit;
}

.product-meta {
  display: grid;
  gap: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(85, 85, 85, 0.12);
}

.product-meta p {
  margin: 0;
}

.product-tabs-band {
  padding: 4.8rem 0;
}

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

.tab-panel {
  padding: 1.45rem;
}

.tab-panel p,
.product-facts dd {
  color: var(--heading);
  font-weight: 650;
}

.product-facts {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.product-facts div,
.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(85, 85, 85, 0.1);
}

.product-facts dt,
.summary-line span {
  color: var(--muted);
  font-weight: 800;
}

.product-facts dd {
  margin: 0;
  text-align: right;
}

.related-products {
  padding-top: 4.8rem;
}

.cart-table-card,
.order-summary-card,
.checkout-form {
  padding: clamp(1.15rem, 3vw, 1.8rem);
}

.cart-table {
  display: grid;
  gap: 0.4rem;
}

.cart-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) 0.55fr 0.5fr 0.55fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(85, 85, 85, 0.1);
  color: var(--heading);
  font-weight: 750;
}

.cart-head {
  color: var(--muted);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.cart-product {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.cart-product img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  background: rgba(247, 244, 237, 0.86);
  border-radius: var(--radius);
}

.cart-product small {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-weight: 750;
}

.coupon-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.order-summary-card {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 0.75rem;
}

.summary-line.total {
  border-bottom: 0;
  color: var(--heading);
  font-size: 1.15rem;
}

.checkout-notices {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.checkout-notices p {
  margin: 0;
  padding: 1rem 1.2rem;
  color: var(--heading);
  font-weight: 750;
}

.checkout-notices a {
  color: var(--green-deep);
  font-weight: 850;
  text-decoration: none;
}

.checkout-form {
  display: grid;
  gap: 1rem;
}

.checkout-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.wide-field {
  grid-column: 1 / -1;
}

.payment-box {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.8rem;
  padding: 1rem;
  background: rgba(247, 244, 237, 0.72);
  border: 1px solid rgba(85, 85, 85, 0.1);
  border-radius: var(--radius);
}

.payment-box label {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.payment-box input {
  margin-top: 0.2rem;
}

.consultation-grid {
  align-items: center;
}

.consultation-checks .check-list {
  margin: 0;
}

.form-grid {
  align-items: start;
}

.questionnaire-form {
  display: grid;
  gap: 1rem;
}

.questionnaire-form label {
  display: grid;
  gap: 0.5rem;
  margin: 0;
}

.questionnaire-form input,
.questionnaire-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  color: var(--heading);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(85, 85, 85, 0.16);
  border-radius: var(--radius);
  font: inherit;
  resize: vertical;
}

.questionnaire-form button {
  width: fit-content;
}

.back-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: rgba(37, 58, 27, 0.86);
  border: 1px solid rgba(205, 182, 133, 0.45);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-top svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes slideRail {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@media (max-width: 1060px) {
  .promo-bar {
    font-size: 1.05rem;
  }

  .nav-shell {
    padding: 0 1rem;
  }

  .brand {
    width: 170px;
  }

  .nav-menu {
    gap: 1rem;
  }

  .nav-link,
  .nav-menu-button {
    font-size: 1.05rem;
  }

  h1 {
    font-size: 2.85rem;
  }

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

  .product-card,
  .review-card {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .nav-shell {
    min-height: 76px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
    padding: 0.8rem 1rem 1rem;
    background: #ffffff;
    border-bottom: 1px solid rgba(205, 182, 133, 0.4);
    box-shadow: 0 20px 42px rgba(20, 32, 16, 0.15);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(18px);
  }

  body.nav-open .nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link,
  .nav-menu-button,
  .cart-link {
    justify-content: flex-start;
    min-height: 54px;
  }

  .nav-cta {
    width: 100%;
    min-height: 54px;
    margin: 0.4rem 0;
  }

  .dropdown {
    position: static;
    width: 100%;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .has-menu.is-open .dropdown {
    display: grid;
  }

  .hero {
    min-height: 530px;
  }

  .hero-inner {
    padding: 4rem 0 4.4rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  p,
  li,
  .hero p {
    font-size: 1.02rem;
  }

  .logo-row,
  .split-grid,
  .footer-inner,
  .page-hero-grid,
  .info-grid,
  .info-grid.two-col,
  .owner-grid,
  .consultation-grid,
  .form-grid,
  .product-detail-grid,
  .product-single-grid,
  .product-tabs,
  .cart-layout,
  .checkout-layout,
  .checkout-field-grid,
  .value-list {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 0;
  }

  .page-hero-grid {
    padding: 3.6rem 0 4rem;
  }

  .page-hero-media,
  .page-hero-media img {
    min-height: 320px;
  }

  .split-grid {
    gap: 2rem;
    padding: 3.5rem 0;
  }

  .split-right {
    justify-items: stretch;
  }

  .why .feature-copy {
    padding: 1.5rem;
  }

  .footer-inner {
    gap: 2rem;
    min-height: 0;
    text-align: center;
  }

  .footer-links {
    justify-items: center;
  }

  .footer-links h2 {
    text-align: center;
  }

  .page-band {
    padding: 3.8rem 0;
  }

  .product-detail-visual {
    min-height: 340px;
  }

  .product-single-image {
    min-height: 360px;
  }

  .product-single-image img {
    max-height: 330px;
  }

  .single-purchase-panel,
  .coupon-row {
    grid-template-columns: 1fr;
  }

  .order-summary-card {
    position: static;
  }

  .value-list li {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .promo-bar {
    min-height: 36px;
    font-size: 0.9rem;
  }

  .brand {
    width: 150px;
  }

  .section-inner {
    width: min(100% - 2rem, 1160px);
  }

  .hero {
    min-height: 500px;
  }

  h1 {
    font-size: 1.95rem;
  }

  h2 {
    font-size: 1.58rem;
  }

  .trusted,
  .products,
  .reviews,
  .contact {
    padding: 3.4rem 0;
  }

  .logo-tile {
    min-height: 126px;
  }

  .product-card {
    padding: 1rem;
  }

  .page-hero-copy h1 {
    font-size: 2rem;
  }

  .page-hero-copy p:not(.page-kicker) {
    font-size: 1.02rem;
  }

  .page-hero-media,
  .page-hero-media img {
    min-height: 260px;
  }

  .info-block,
  .faq-item summary,
  .purchase-panel,
  .questionnaire-form,
  .consultation-checks,
  .product-detail-visual,
  .product-summary,
  .cart-table-card,
  .order-summary-card,
  .checkout-form,
  .tab-panel {
    padding: 1.15rem;
  }

  .faq-item p {
    padding: 0 1.15rem 1.2rem;
  }

  .purchase-panel .button,
  .questionnaire-form button,
  .single-purchase-panel .button,
  .checkout-summary .button {
    width: 100%;
  }

  .cart-head {
    display: none;
  }

  .cart-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    align-items: start;
  }

  .cart-product img {
    width: 92px;
    height: 92px;
  }

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

  .product-visual {
    min-height: 230px;
  }

  .button,
  .button-compact {
    width: 100%;
  }

  .review-card {
    padding: 1.25rem;
  }

  .footer-links a {
    font-size: 1.1rem;
  }

  .copyright {
    padding-right: 5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
