:root {
  --paper: #f3f7ec;
  --paper-deep: #e7f0dc;
  --paper-warm: #fbf3df;
  --ink: #24241f;
  --muted: #6d725f;
  --line: #cbd8bc;
  --leaf: #405f2b;
  --leaf-dark: #2f4721;
  --leaf-soft: #d8e8c5;
  --leaf-mist: #edf5e5;
  --sage: #c7d5b5;
  --herb: #8fa56e;
  --tomato: #b9533d;
  --tomato-soft: #f1d7ce;
  --carrot: #d99a57;
  --sun: #f3e6bd;
  --berry: #a95a52;
  --sky: #d8e9ee;
  --radius: 8px;
  --shadow: 0 22px 55px rgba(48, 69, 33, 0.12);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(118deg, rgba(216, 232, 197, 0.72) 0 18%, transparent 18% 43%, rgba(241, 215, 206, 0.46) 43% 58%, transparent 58%),
    linear-gradient(180deg, #f5f8ee 0%, #eaf3e1 24%, #f7f0dc 52%, #edf5e5 76%, #f4f8ee 100%);
  color: var(--ink);
  font-family: "Avenir Next", "SF Pro Display", "Trebuchet MS", sans-serif;
  min-width: 320px;
}

body.is-cart-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(64, 95, 43, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 95, 43, 0.032) 1px, transparent 1px);
  background-size: 36px 36px;
}

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 4vw, 4rem);
  width: 100%;
  margin: 0;
  padding: 26px max(20px, calc((100vw - 1780px) / 2)) 18px;
  background:
    linear-gradient(90deg, rgba(244, 249, 236, 0.9), rgba(250, 244, 225, 0.82)),
    rgba(243, 247, 236, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--leaf);
  border: 1px solid rgba(64, 95, 43, 0.2);
  border-radius: 50%;
  text-decoration: none;
}

.brand svg {
  width: 42px;
  height: 42px;
  stroke-width: 2;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1.2rem, 5vw, 7rem);
}

.nav-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: #1d1d1a;
  cursor: pointer;
  font: inherit;
  font-size: clamp(0.95rem, 1.15vw, 1.3rem);
  text-decoration: none;
  transition: color 220ms ease, transform 220ms ease;
}

.nav-link:hover {
  color: var(--leaf);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--leaf-dark);
  font-weight: 800;
}

.nav-link--menu {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link--menu svg {
  width: 18px;
  height: 18px;
  transition: transform 260ms var(--ease);
}

.nav-link--menu[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.catalog-popover {
  position: absolute;
  top: calc(100% - 4px);
  left: 90px;
  z-index: 6;
  display: grid;
  gap: 4px;
  width: min(310px, calc(100vw - 40px));
  padding: 8px;
  border: 1px solid rgba(64, 95, 43, 0.14);
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(145deg, rgba(248, 249, 237, 0.94), rgba(224, 237, 211, 0.9));
  box-shadow: 0 20px 60px rgba(39, 43, 28, 0.16);
  backdrop-filter: blur(18px);
  animation: menu-in 260ms var(--ease) both;
}

.catalog-popover a {
  padding: 14px 16px;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transition: background 200ms var(--ease), color 200ms var(--ease), transform 200ms var(--ease);
}

.catalog-popover a:hover {
  background: var(--leaf-soft);
  color: var(--leaf-dark);
  transform: translateX(2px);
}

.cart-button,
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  background: var(--leaf);
  color: #fffdf4;
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: background 220ms ease, transform 220ms ease;
}

.cart-button:hover,
.primary-cta:hover {
  background: var(--leaf-dark);
  transform: translateY(-2px);
}

.cart-button:active,
.primary-cta:active {
  transform: translateY(0) scale(0.98);
}

.primary-cta:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.cart-button svg {
  width: 25px;
  height: 25px;
  margin-right: 12px;
}

.cart-count {
  display: grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  margin-left: 12px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 800;
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(520px, 1.08fr) minmax(520px, 0.92fr);
  align-items: start;
  gap: clamp(2rem, 4vw, 4rem);
  width: min(100% - 2px, 1780px);
  margin: 0 auto;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(132deg, rgba(216, 232, 197, 0.72), rgba(251, 243, 223, 0.62) 48%, rgba(216, 233, 238, 0.46));
  box-shadow: 0 0 0 100vmax rgba(232, 242, 221, 0.28);
  clip-path: inset(0 -100vmax);
}

.hero-media {
  position: relative;
  align-self: start;
  justify-self: end;
  overflow: hidden;
  width: min(100%, 980px);
  aspect-ratio: 1.45 / 1;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-media img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 38% center;
}

.harvest-badge {
  position: absolute;
  left: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 42px);
  width: min(300px, calc(100% - 36px));
  padding: 18px 20px;
  color: #fdfbf1;
  background: rgba(35, 48, 26, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.harvest-badge span,
.eyebrow,
.tag,
.micro-note {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.harvest-badge strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2vw, 2.35rem);
  font-weight: 400;
  line-height: 1.02;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: clamp(420px, 41vw, 640px);
  padding: clamp(2rem, 5vw, 7rem) clamp(2rem, 5vw, 6rem) clamp(2rem, 5vw, 6rem) 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--leaf);
  font-weight: 700;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(3.55rem, 5.55vw, 6.7rem);
  line-height: 0.95;
}

.hero-lead {
  max-width: 620px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  line-height: 1.55;
}

.sprig {
  width: min(180px, 48vw);
  margin: 0 0 34px 6px;
  color: var(--leaf);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.micro-note {
  color: var(--muted);
  font-weight: 700;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 650px);
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  display: grid;
  gap: 7px;
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(64, 95, 43, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(250, 246, 226, 0.74), rgba(224, 237, 211, 0.72));
}

.hero-proof strong {
  color: var(--leaf-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 1.8vw, 2.25rem);
  font-weight: 400;
  line-height: 1;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.3;
}

.seed-strip {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 14px;
  width: min(100% - 80px, 1660px);
  margin: 22px auto;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(239, 246, 229, 0.52), rgba(251, 243, 223, 0.32));
  box-shadow: 0 0 0 100vmax rgba(239, 246, 229, 0.18);
  clip-path: inset(0 -100vmax);
}

.strip-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding: 0 0 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.strip-track::-webkit-scrollbar {
  display: none;
}

.strip-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(64, 95, 43, 0.12);
  border-radius: 50%;
  background: rgba(247, 249, 236, 0.9);
  color: #1f241d;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(47, 47, 35, 0.1);
  transition: transform 180ms ease, border-color 180ms ease;
}

.strip-arrow:hover {
  border-color: rgba(64, 95, 43, 0.35);
  transform: translateY(-1px);
}

.strip-arrow svg {
  width: 23px;
  height: 23px;
}

.mini-card {
  position: relative;
  overflow: hidden;
  min-height: 192px;
  border-radius: var(--radius);
  background: var(--sage);
  box-shadow: 0 12px 30px rgba(59, 52, 35, 0.1);
}

.mini-card img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mini-card::after,
.category-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  background: linear-gradient(180deg, transparent, rgba(22, 30, 17, 0.62));
}

.mini-card span {
  position: absolute;
  left: 16px;
  bottom: 13px;
  z-index: 1;
  color: #fffdf7;
  font-weight: 700;
}

.mini-card:hover img,
.category-card:hover img,
.product-card:hover img {
  transform: scale(1.045);
}

.category-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 1fr;
  gap: 22px;
  width: min(100% - 128px, 1660px);
  margin: 0 auto;
  padding: 4px 0 38px;
  border-bottom: 1px solid var(--line);
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.4rem, 4vw, 5rem);
  width: min(100% - 80px, 1660px);
  margin: 0 auto;
  padding: 40px 0 44px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(224, 237, 211, 0.72), rgba(214, 229, 188, 0.42));
  box-shadow: 0 0 0 100vmax rgba(224, 237, 211, 0.24);
  clip-path: inset(0 -100vmax);
}

.trust-panel h2 {
  max-width: 560px;
}

.trust-list {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.25fr;
  gap: 14px;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 172px;
  padding: 24px;
  border: 1px solid rgba(64, 95, 43, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(250, 247, 228, 0.9), rgba(217, 233, 198, 0.8));
  box-shadow: 0 16px 32px rgba(54, 48, 31, 0.07);
}

.trust-list strong {
  color: var(--leaf-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 3vw, 3.7rem);
  font-weight: 400;
  line-height: 0.95;
}

.trust-list span {
  color: var(--muted);
  line-height: 1.45;
}

.season-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(1.8rem, 5vw, 6rem);
  width: min(100% - 80px, 1660px);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 92px) 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(251, 243, 223, 0.76), rgba(216, 233, 238, 0.46) 58%, rgba(232, 245, 229, 0.62));
  box-shadow: 0 0 0 100vmax rgba(248, 240, 218, 0.24);
  clip-path: inset(0 -100vmax);
}

.showcase-copy {
  align-self: center;
}

.showcase-copy h2 {
  max-width: 690px;
}

.showcase-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.3vw, 1.32rem);
  line-height: 1.58;
}

.showcase-board {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  grid-auto-rows: minmax(210px, 1fr);
  gap: 16px;
  align-items: stretch;
}

.showcase-frame {
  position: relative;
  overflow: hidden;
  min-height: 265px;
  margin: 0;
  padding: 7px;
  border: 1px solid rgba(64, 95, 43, 0.12);
  border-radius: calc(var(--radius) + 14px);
  background:
    linear-gradient(145deg, rgba(250, 247, 226, 0.94), rgba(214, 229, 188, 0.74));
  box-shadow: 0 22px 52px rgba(54, 48, 31, 0.11);
  transition: transform 520ms var(--ease), box-shadow 520ms var(--ease);
}

.showcase-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 68px rgba(54, 48, 31, 0.15);
}

.showcase-frame--tall {
  grid-row: span 2;
  min-height: 580px;
}

.showcase-frame--wide {
  min-height: 245px;
}

.showcase-frame img {
  height: 100%;
  min-height: inherit;
  border-radius: calc(var(--radius) + 8px);
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.showcase-frame:hover img {
  transform: scale(1.035);
}

.showcase-frame figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(35, 48, 26, 0.76);
  color: #fffdf4;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.picker-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(1.6rem, 5vw, 6rem);
  width: min(100% - 80px, 1660px);
  margin: 0 auto;
  padding: clamp(38px, 5vw, 72px) 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(237, 245, 229, 0.82), rgba(241, 215, 206, 0.36));
  box-shadow: 0 0 0 100vmax rgba(237, 245, 229, 0.2);
  clip-path: inset(0 -100vmax);
}

.picker-copy {
  align-self: center;
}

.picker-copy h2 {
  max-width: 680px;
}

.picker-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  line-height: 1.55;
}

.picker-card {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(64, 95, 43, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(249, 247, 227, 0.95), rgba(214, 232, 197, 0.84));
  box-shadow: var(--shadow);
}

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

.picker-options button {
  min-height: 58px;
  border: 1px solid rgba(64, 95, 43, 0.16);
  border-radius: 999px;
  background: rgba(249, 247, 227, 0.78);
  color: var(--leaf-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease);
}

.picker-options button:hover,
.picker-options button.active {
  background: var(--leaf);
  color: #fffdf4;
  transform: translateY(-2px);
}

.picker-result {
  min-height: 142px;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(246, 249, 237, 0.78);
  color: var(--muted);
}

.picker-result span {
  display: block;
  margin-bottom: 10px;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.picker-result p {
  margin: 0;
  font-size: clamp(1.05rem, 1.3vw, 1.28rem);
  line-height: 1.48;
}

.category-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 230px;
  border-radius: var(--radius);
  color: #fffdf7;
  text-decoration: none;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.category-card img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card span {
  position: absolute;
  left: 34px;
  bottom: 31px;
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 2.9vw, 3.45rem);
  line-height: 1;
}

.category-card svg {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 1;
  width: 58px;
  height: 58px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
}

.catalog-section {
  width: min(100% - 80px, 1660px);
  margin: 0 auto;
  padding: 44px 0 24px;
  background: linear-gradient(180deg, rgba(244, 249, 236, 0.72), rgba(250, 239, 220, 0.34));
  box-shadow: 0 0 0 100vmax rgba(244, 249, 236, 0.16);
  clip-path: inset(0 -100vmax);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4vw, 4.9rem);
  line-height: 0.98;
}

.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pill {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(64, 95, 43, 0.18);
  border-radius: 999px;
  background: rgba(247, 249, 236, 0.72);
  color: var(--leaf-dark);
  cursor: pointer;
  font: inherit;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.pill.active,
.pill:hover {
  background: var(--leaf);
  color: #fffdf4;
}

.pill:active {
  transform: scale(0.98);
}

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

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(230px, 0.95fr) auto;
  overflow: hidden;
  min-height: 530px;
  border: 1px solid rgba(64, 95, 43, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(248, 247, 226, 0.82), rgba(230, 241, 216, 0.74));
  box-shadow: 0 18px 38px rgba(54, 48, 31, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, opacity 220ms ease;
}

.product-card.is-hidden {
  display: none;
}

.empty-state {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 220px;
  padding: 28px;
  border: 1px dashed rgba(64, 95, 43, 0.25);
  border-radius: var(--radius);
  background: rgba(244, 249, 236, 0.72);
  color: var(--muted);
  text-align: center;
}

.empty-state strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
  font-weight: 400;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(54, 48, 31, 0.13);
}

.product-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card > div {
  display: grid;
  gap: 10px;
  padding: 18px 70px 64px 20px;
}

.tag {
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--leaf-soft);
  color: var(--leaf-dark);
  font-weight: 800;
}

.product-card h3 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 1.7vw, 2rem);
  font-weight: 400;
  line-height: 1.02;
}

.product-card p {
  margin-bottom: 0;
  color: var(--tomato);
  font-weight: 800;
  font-size: 1.1rem;
}

.product-card .product-note {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.38;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 2px 0 0;
}

.product-meta div {
  min-width: 0;
  padding: 8px;
  border-radius: calc(var(--radius) - 2px);
  background: rgba(211, 228, 190, 0.64);
}

.product-meta dt {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-meta dd {
  margin: 4px 0 0;
  color: var(--leaf-dark);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.15;
}

.product-card button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--leaf);
  color: #fffdf5;
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.product-card button:hover {
  background: var(--leaf-dark);
  transform: rotate(90deg);
}

.product-card button:active {
  transform: rotate(90deg) scale(0.94);
}

.product-card-action {
  position: absolute;
  right: 72px;
  bottom: 31px;
  color: var(--leaf-dark);
  font-size: 0.82rem;
  font-weight: 800;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.product-card:hover .product-card-action {
  opacity: 1;
  transform: translateX(0);
}

.product-more {
  position: absolute;
  left: 20px;
  bottom: 24px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.product-card h3 a {
  color: inherit;
  text-decoration: none;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.58fr);
  gap: clamp(2rem, 6vw, 8rem);
  width: min(100% - 80px, 1660px);
  margin: 0 auto;
  padding: clamp(62px, 8vw, 120px) 0 clamp(36px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(232, 242, 221, 0.78), rgba(251, 243, 223, 0.58) 54%, rgba(216, 233, 238, 0.42));
  box-shadow: 0 0 0 100vmax rgba(232, 242, 221, 0.22);
  clip-path: inset(0 -100vmax);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(3.5rem, 6.6vw, 8.4rem);
  overflow-wrap: anywhere;
  hyphens: auto;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.45vw, 1.45rem);
  line-height: 1.55;
}

.catalog-statement {
  display: grid;
  gap: 14px;
  align-self: end;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(64, 95, 43, 0.14);
  border-radius: var(--radius);
  background: rgba(247, 249, 236, 0.82);
  box-shadow: var(--shadow);
}

.catalog-statement strong {
  color: var(--leaf-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
}

.page-hero--media {
  grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1.18fr);
  align-items: center;
}

.page-hero-visual {
  position: relative;
  align-self: stretch;
  min-height: clamp(390px, 34vw, 560px);
  padding: 7px;
  border: 1px solid rgba(64, 95, 43, 0.12);
  border-radius: calc(var(--radius) + 16px);
  background:
    linear-gradient(145deg, rgba(248, 247, 226, 0.76), rgba(213, 231, 194, 0.68));
  box-shadow: var(--shadow);
  isolation: isolate;
}

.page-hero-visual::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: calc(var(--radius) + 10px);
  background: linear-gradient(180deg, transparent 48%, rgba(28, 37, 20, 0.34));
  pointer-events: none;
}

.page-hero-visual img {
  height: 100%;
  min-height: inherit;
  border-radius: calc(var(--radius) + 10px);
  object-fit: cover;
  object-position: 60% center;
}

.page-hero-visual--about img {
  object-position: 44% center;
}

.page-hero-visual--catalog img,
.page-hero-visual--shop img,
.page-hero-visual--delivery img {
  object-position: 50% center;
}

.page-hero-visual .catalog-statement {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 1;
  width: min(310px, calc(100% - 36px));
  background: rgba(248, 249, 237, 0.9);
}

.category-rail {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 1fr;
  gap: 16px;
  width: min(100% - 80px, 1660px);
  margin: 26px auto 0;
}

.category-rail a {
  display: grid;
  gap: 10px;
  min-height: 160px;
  padding: 24px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(250, 247, 226, 0.94), rgba(211, 229, 190, 0.8));
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(54, 48, 31, 0.07);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.category-rail a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-rail span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 0.95;
}

.category-rail strong {
  align-self: end;
  color: var(--leaf-dark);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-page-section {
  padding-top: clamp(44px, 6vw, 84px);
}

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

.product-detail {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 7rem);
  width: min(100% - 80px, 1560px);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 100px) 0;
  background: linear-gradient(120deg, rgba(244, 249, 236, 0.8), rgba(251, 243, 223, 0.5));
  box-shadow: 0 0 0 100vmax rgba(244, 249, 236, 0.2);
  clip-path: inset(0 -100vmax);
}

.product-detail-media {
  overflow: hidden;
  align-self: start;
  border-radius: var(--radius);
  background: var(--sage);
  box-shadow: var(--shadow);
}

.product-detail-media img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
}

.product-detail-copy h1 {
  margin: 12px 0 18px;
}

.product-detail-copy > p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.45vw, 1.45rem);
  line-height: 1.55;
}

.breadcrumb {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--leaf);
  font-weight: 800;
  text-decoration: none;
}

.product-detail-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.product-detail-specs div {
  padding: 18px;
  border: 1px solid rgba(64, 95, 43, 0.13);
  border-radius: var(--radius);
  background: rgba(248, 249, 237, 0.76);
}

.product-detail-specs dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-specs dd {
  margin: 8px 0 0;
  color: var(--leaf-dark);
  font-weight: 900;
}

.product-detail-buy {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.product-detail-buy strong {
  color: var(--tomato);
  font-size: clamp(2rem, 3vw, 3.3rem);
}

.product-care {
  max-width: 760px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.product-care h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 3.5rem);
}

.library-grid,
.delivery-grid,
.story-grid {
  display: grid;
  width: min(100% - 80px, 1660px);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 76px) 0;
  gap: 16px;
}

.library-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

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

.story-grid {
  grid-template-columns: 1.35fr repeat(3, 0.75fr);
}

.library-grid article,
.delivery-grid article,
.story-grid article {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 250px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(64, 95, 43, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(249, 247, 226, 0.84), rgba(226, 239, 211, 0.72));
  box-shadow: 0 14px 32px rgba(54, 48, 31, 0.06);
}

.library-grid article:first-child,
.story-grid .story-large {
  min-height: 380px;
  background:
    linear-gradient(135deg, rgba(64, 95, 43, 0.94), rgba(47, 71, 33, 0.96)),
    var(--leaf-dark);
  color: #fffdf4;
}

.library-grid span,
.delivery-grid span,
.story-grid span {
  color: var(--tomato);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.library-grid article:first-child span,
.story-grid .story-large p {
  color: rgba(255, 253, 244, 0.78);
}

.library-grid h2,
.delivery-grid h2,
.story-grid h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 2.4vw, 3.2rem);
}

.library-grid p,
.delivery-grid p,
.story-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.library-grid article:first-child p {
  color: rgba(255, 253, 244, 0.78);
}

.library-grid a {
  align-self: end;
  color: var(--leaf-dark);
  font-weight: 900;
  text-decoration: none;
}

.library-grid article:first-child a {
  color: #fffdf4;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.28fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  width: min(100% - 80px, 1660px);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 76px) 0;
}

.shop-sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 10px;
  align-self: start;
  padding: 18px;
  border: 1px solid rgba(64, 95, 43, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(248, 247, 226, 0.88), rgba(223, 237, 207, 0.78));
  box-shadow: 0 14px 32px rgba(54, 48, 31, 0.06);
}

.shop-sidebar .primary-cta {
  margin-top: 8px;
}

.side-link {
  padding: 11px 12px;
  border-radius: var(--radius);
  color: var(--leaf-dark);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms var(--ease), transform 180ms var(--ease);
}

.side-link:hover {
  background: rgba(223, 233, 207, 0.62);
  transform: translateX(2px);
}

.shop-products {
  width: 100%;
  padding: 0;
}

.wholesale-grid,
.brand-principles {
  display: grid;
  grid-template-columns: 1fr 1.08fr 0.92fr;
  gap: 16px;
  width: min(100% - 80px, 1660px);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 76px) 0;
}

.wholesale-grid article,
.brand-principles article {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 270px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(64, 95, 43, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(249, 247, 226, 0.84), rgba(226, 239, 211, 0.72));
  box-shadow: 0 14px 32px rgba(54, 48, 31, 0.06);
}

.wholesale-grid span,
.brand-principles span {
  color: var(--tomato);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wholesale-grid h2,
.brand-principles h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 2.4vw, 3.2rem);
}

.wholesale-grid p,
.brand-principles p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.company-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: clamp(2rem, 5vw, 7rem);
  width: min(100% - 80px, 1660px);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 104px) 0 clamp(36px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(232, 242, 221, 0.78), rgba(216, 233, 238, 0.48));
  box-shadow: 0 0 0 100vmax rgba(232, 242, 221, 0.22);
  clip-path: inset(0 -100vmax);
}

.company-copy {
  align-self: center;
}

.company-copy h1 {
  max-width: 760px;
  font-size: clamp(3.45rem, 5.8vw, 7.4rem);
}

.company-copy p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.42vw, 1.45rem);
  line-height: 1.55;
}

.text-link {
  color: var(--leaf-dark);
  font-weight: 900;
  text-decoration: none;
}

.company-photo-board {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: clamp(480px, 42vw, 720px);
}

.company-photo-board img {
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.company-photo-board img:first-child {
  grid-row: 1 / -1;
}

.search-panel {
  display: grid;
  gap: 16px;
  align-self: end;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(64, 95, 43, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(248, 247, 226, 0.9), rgba(226, 239, 211, 0.76));
  box-shadow: var(--shadow);
}

.search-panel label,
.contact-list {
  display: grid;
  gap: 10px;
}

.search-panel label {
  color: var(--leaf-dark);
  font-weight: 900;
}

.search-panel input {
  min-height: 58px;
  width: 100%;
  padding: 0 18px;
  border: 1px solid rgba(64, 95, 43, 0.18);
  border-radius: var(--radius);
  background: rgba(249, 248, 234, 0.94);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.search-panel input:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(64, 95, 43, 0.12);
}

.search-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.search-actions span {
  color: var(--muted);
  font-weight: 700;
}

.contact-list {
  margin-top: 24px;
}

.contact-list a,
.contact-list span,
.contact-methods a {
  color: var(--leaf-dark);
  font-weight: 900;
  text-decoration: none;
}

.contact-form {
  align-self: start;
  background:
    linear-gradient(135deg, rgba(45, 69, 31, 0.94), rgba(38, 55, 37, 0.96)),
    var(--leaf-dark);
}

.contact-form-shell {
  display: grid;
  gap: 18px;
}

.contact-visual {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  margin: 0;
  padding: 7px;
  border: 1px solid rgba(64, 95, 43, 0.13);
  border-radius: calc(var(--radius) + 16px);
  background:
    linear-gradient(145deg, rgba(248, 247, 226, 0.72), rgba(213, 231, 194, 0.68));
  box-shadow: var(--shadow);
}

.contact-visual img {
  height: 100%;
  min-height: inherit;
  border-radius: calc(var(--radius) + 10px);
  object-fit: cover;
}

.contact-visual figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: calc(100% - 44px);
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(35, 48, 26, 0.76);
  color: #fffdf4;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-content {
  display: grid;
  gap: 20px;
  width: min(100% - 80px, 1120px);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 74px) 0 clamp(48px, 6vw, 92px);
  background: linear-gradient(180deg, rgba(244, 249, 236, 0.74), rgba(251, 243, 223, 0.38));
  box-shadow: 0 0 0 100vmax rgba(244, 249, 236, 0.18);
  clip-path: inset(0 -100vmax);
}

.legal-content h2 {
  margin-top: 18px;
  font-size: clamp(1.7rem, 2.6vw, 3.2rem);
}

.legal-content p {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.reviews-section {
  width: 100%;
  margin: 18px auto 32px;
  padding: clamp(54px, 7vw, 96px) 0 clamp(36px, 5vw, 72px);
  border-top: 10px solid var(--leaf);
  background:
    linear-gradient(135deg, rgba(216, 232, 197, 0.54), rgba(243, 230, 189, 0.46) 52%, rgba(241, 215, 206, 0.32));
}

.reviews-section h2 {
  width: min(100% - 80px, 1660px);
  margin-right: auto;
  margin-bottom: clamp(34px, 5vw, 62px);
  margin-left: auto;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(24px, 4vw, 70px);
  width: min(100% - 80px, 1660px);
  margin: 0 auto;
}

.review-card {
  display: grid;
  justify-items: center;
  gap: 22px;
  min-height: 360px;
  padding: clamp(20px, 3vw, 38px) clamp(16px, 3vw, 34px);
  color: #161610;
  text-align: center;
}

.review-card--featured {
  background:
    linear-gradient(145deg, rgba(250, 247, 226, 0.94), rgba(230, 241, 216, 0.78));
  box-shadow: 20px 20px 0 rgba(64, 95, 43, 0.06), var(--shadow);
}

.review-stars {
  display: flex;
  justify-content: center;
  gap: 7px;
  color: #0d0d0b;
  font-size: clamp(1.35rem, 1.9vw, 2rem);
  line-height: 1;
}

.review-card p {
  max-width: 520px;
  margin: 0;
  font-size: clamp(1.05rem, 1.55vw, 1.52rem);
  line-height: 1.34;
}

.review-card strong {
  align-self: end;
  font-size: clamp(1.1rem, 1.45vw, 1.45rem);
  font-weight: 800;
}

.quality-section {
  width: min(100% - 80px, 1660px);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 78px) 0 12px;
  background: linear-gradient(120deg, rgba(237, 245, 229, 0.76), rgba(216, 233, 238, 0.4));
  box-shadow: 0 0 0 100vmax rgba(237, 245, 229, 0.18);
  clip-path: inset(0 -100vmax);
}

.quality-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: end;
  margin-bottom: 22px;
}

.quality-head h2 {
  max-width: 860px;
}

.quality-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr 1.18fr;
  gap: 16px;
}

.quality-grid article {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 250px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(64, 95, 43, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(249, 247, 226, 0.82), rgba(224, 237, 211, 0.7));
  box-shadow: 0 14px 32px rgba(54, 48, 31, 0.06);
}

.quality-grid article span {
  width: max-content;
  color: var(--tomato);
  font-weight: 900;
}

.quality-grid h3 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2vw, 2.25rem);
  font-weight: 400;
  line-height: 1.05;
}

.quality-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.quality-grid .quality-guarantee {
  background:
    linear-gradient(135deg, rgba(64, 95, 43, 0.94), rgba(47, 71, 33, 0.96)),
    var(--leaf-dark);
  color: #fffdf4;
}

.quality-grid .quality-guarantee span,
.quality-grid .quality-guarantee p {
  color: rgba(255, 253, 244, 0.78);
}

.garden-set {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(300px, 0.72fr) minmax(260px, 0.62fr) auto;
  align-items: center;
  gap: 28px;
  width: min(100% - 80px, 1660px);
  margin: 26px auto 56px;
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid rgba(64, 95, 43, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(244, 249, 236, 0.9), rgba(216, 232, 197, 0.84) 50%, rgba(241, 215, 206, 0.5));
  box-shadow: var(--shadow);
}

.set-media {
  overflow: hidden;
  align-self: stretch;
  min-height: 210px;
  padding: 6px;
  border: 1px solid rgba(64, 95, 43, 0.12);
  border-radius: calc(var(--radius) + 12px);
  background: rgba(248, 249, 237, 0.64);
}

.set-media img {
  height: 100%;
  min-height: inherit;
  border-radius: calc(var(--radius) + 6px);
  object-fit: cover;
  object-position: 35% center;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.5rem, 5vw, 6rem);
  width: min(100% - 80px, 1660px);
  margin: 0 auto 28px;
  padding: 24px 0 34px;
  background: linear-gradient(180deg, rgba(251, 243, 223, 0.46), rgba(237, 245, 229, 0.58));
  box-shadow: 0 0 0 100vmax rgba(251, 243, 223, 0.14);
  clip-path: inset(0 -100vmax);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(64, 95, 43, 0.13);
  border-radius: var(--radius);
  background: rgba(248, 249, 237, 0.74);
  box-shadow: 0 10px 26px rgba(54, 48, 31, 0.05);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--leaf-soft);
  color: var(--leaf-dark);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.5;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.68fr);
  gap: clamp(2rem, 7vw, 8rem);
  width: min(100% - 80px, 1660px);
  margin: 0 auto 34px;
  padding: clamp(34px, 5vw, 72px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(45, 69, 31, 0.95), rgba(62, 82, 45, 0.94) 56%, rgba(79, 63, 37, 0.96)),
    var(--leaf-dark);
  color: #fffdf4;
  box-shadow: 0 28px 80px rgba(35, 48, 26, 0.22);
}

.order-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 253, 244, 0.76);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.55;
}

.order-benefits {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.order-benefits li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 253, 244, 0.84);
  line-height: 1.4;
}

.order-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--leaf-soft);
}

.order-section .eyebrow {
  color: var(--leaf-soft);
}

.order-form {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.order-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 253, 244, 0.82);
  font-weight: 700;
}

.order-form input,
.order-form textarea,
.order-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 244, 0.94);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.order-form input {
  min-height: 54px;
  padding: 0 16px;
}

.order-form select {
  min-height: 54px;
  padding: 0 16px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--leaf-dark) 50%),
    linear-gradient(135deg, var(--leaf-dark) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.order-form textarea {
  resize: vertical;
  padding: 14px 16px;
}

.order-form input:focus,
.order-form textarea:focus,
.order-form select:focus {
  border-color: var(--leaf-soft);
  box-shadow: 0 0 0 4px rgba(223, 233, 207, 0.22);
}

.order-form .primary-cta {
  width: 100%;
  margin-top: 4px;
  background: #fffdf4;
  color: var(--leaf-dark);
}

.order-cart-summary {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 253, 244, 0.78);
}

.order-cart-summary p,
.order-cart-summary ul {
  margin: 0;
}

.order-cart-summary ul {
  display: grid;
  gap: 6px;
  padding-left: 18px;
}

.order-cart-summary strong {
  color: #fffdf4;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 253, 244, 0.72);
  font-size: 0.95rem;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 9;
  display: grid;
  justify-items: end;
  background: rgba(26, 28, 22, 0.42);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 260ms var(--ease), visibility 260ms var(--ease);
}

.cart-drawer[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.cart-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 18px;
  width: min(430px, 100%);
  height: 100%;
  padding: 26px;
  background:
    linear-gradient(180deg, var(--paper), var(--leaf-mist) 54%, var(--paper-warm));
  box-shadow: -24px 0 70px rgba(22, 27, 17, 0.2);
  transform: translateX(24px);
  transition: transform 320ms var(--ease);
}

.cart-drawer[aria-hidden="false"] .cart-panel {
  transform: translateX(0);
}

.cart-head,
.cart-row,
.cart-total,
.site-footer,
.site-footer > div,
.site-footer nav {
  display: flex;
  align-items: center;
}

.cart-head {
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.cart-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.icon-button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(64, 95, 43, 0.14);
  border-radius: 50%;
  background: rgba(247, 249, 236, 0.9);
  color: var(--ink);
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease);
}

.icon-button:hover {
  background: var(--leaf-soft);
  transform: rotate(8deg);
}

.icon-button svg {
  width: 22px;
  height: 22px;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
  padding-right: 2px;
}

.cart-empty {
  margin: 0;
  padding: 22px;
  border: 1px dashed rgba(64, 95, 43, 0.22);
  border-radius: var(--radius);
  color: var(--muted);
  line-height: 1.5;
}

.cart-row {
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(64, 95, 43, 0.12);
  border-radius: var(--radius);
  background: rgba(244, 249, 236, 0.74);
}

.cart-row-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.cart-row-actions .icon-button {
  width: 36px;
  height: 36px;
}

.cart-row-actions .icon-button svg {
  width: 18px;
  height: 18px;
}

.cart-row strong {
  display: block;
  margin-bottom: 3px;
}

.cart-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.cart-total {
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.cart-total strong {
  color: var(--tomato);
  font-size: 1.5rem;
}

.site-footer {
  justify-content: space-between;
  gap: 22px;
  width: min(100% - 80px, 1660px);
  margin: 0 auto;
  padding: 24px 0 34px;
  color: var(--muted);
}

.site-footer > div {
  gap: 14px;
  color: var(--ink);
  font-weight: 800;
}

.footer-brand {
  width: 44px;
  height: 44px;
}

.footer-brand svg {
  width: 32px;
  height: 32px;
}

.site-footer nav {
  gap: clamp(1rem, 3vw, 2.8rem);
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.site-footer a:hover {
  color: var(--leaf-dark);
  transform: translateY(-1px);
}

.garden-set h2 {
  max-width: 780px;
  font-size: clamp(2.1rem, 3.3vw, 4.2rem);
}

.set-items {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.set-items span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(249, 247, 226, 0.64);
  color: var(--leaf-dark);
  font-weight: 700;
}

.reveal {
  animation: rise-in 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-copy.reveal {
  animation: none;
  opacity: 1;
  transform: none;
}

.hero-media.reveal {
  animation: none;
  opacity: 1;
  transform: none;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .cart-button {
    justify-self: end;
  }

  .top-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 1780px);
    gap: 0;
  }

  .hero-media {
    border-radius: var(--radius);
    min-height: 390px;
  }

  .hero-copy {
    min-height: auto;
    padding: 36px 6px 26px;
  }

  .seed-strip,
  .catalog-section,
  .legal-content,
  .garden-set,
  .season-showcase,
  .picker-section,
  .quality-section,
  .faq-section,
  .page-hero,
  .category-rail,
  .product-detail,
  .library-grid,
  .delivery-grid,
  .story-grid,
  .shop-layout,
  .wholesale-grid,
  .brand-principles,
  .company-hero,
  .trust-panel,
  .order-section,
  .site-footer {
    width: min(100% - 28px, 1660px);
  }

  .reviews-section h2,
  .reviews-grid {
    width: min(100% - 28px, 1660px);
  }

  .catalog-popover {
    left: 0;
  }

  .trust-panel,
  .season-showcase,
  .picker-section,
  .quality-head,
  .faq-section,
  .page-hero,
  .search-hero,
  .product-detail,
  .shop-layout,
  .company-hero,
  .order-section {
    grid-template-columns: 1fr;
  }

  .trust-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .category-rail,
  .library-grid,
  .delivery-grid,
  .story-grid,
  .wholesale-grid,
  .brand-principles {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }

  .category-grid {
    width: min(100% - 28px, 1660px);
    grid-template-columns: 1fr;
  }

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

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

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .garden-set {
    grid-template-columns: 1fr;
  }

  .page-hero--media {
    grid-template-columns: 1fr;
  }

  .page-hero-visual {
    min-height: 360px;
  }

  .set-items {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .trust-list {
    grid-template-columns: 1fr;
  }

  .showcase-board {
    grid-template-columns: 1fr;
  }

  .showcase-frame,
  .showcase-frame--tall,
  .showcase-frame--wide {
    grid-row: auto;
    min-height: 280px;
  }

  .hero-proof,
  .picker-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-top: 14px;
    overflow: hidden;
  }

  .brand {
    width: 50px;
    height: 50px;
  }

  .brand svg {
    width: 36px;
    height: 36px;
  }

  .cart-button {
    max-width: 164px;
    min-width: 0;
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .cart-count {
    min-width: 22px;
    height: 22px;
    margin-left: 8px;
    padding: 0 6px;
  }

  .cart-button svg {
    width: 21px;
    height: 21px;
    margin-right: 8px;
  }

  .top-nav {
    justify-content: flex-start;
    gap: 26px;
  }

  h1 {
    font-size: clamp(2.55rem, 10.4vw, 3rem);
    overflow-wrap: anywhere;
  }

  .page-hero > *,
  .company-hero > *,
  .product-detail > *,
  .shop-layout > * {
    min-width: 0;
  }

  .hero-proof {
    gap: 8px;
  }

  .hero-proof li {
    min-height: 0;
  }

  .hero-media {
    min-height: 360px;
  }

  .harvest-badge {
    display: none;
  }

  .seed-strip {
    grid-template-columns: 1fr;
  }

  .strip-arrow {
    display: none;
  }

  .strip-track {
    grid-auto-columns: 78%;
  }

  .category-card {
    min-height: 196px;
  }

  .category-card span {
    left: 22px;
    bottom: 24px;
  }

  .category-card svg {
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
    padding: 13px;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .filter-pills {
    justify-content: flex-start;
  }

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

  .product-grid--catalog,
  .product-detail-specs {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.28rem, 10.6vw, 3.25rem);
    line-height: 0.96;
    word-break: break-word;
  }

  .category-rail a,
  .library-grid article,
  .delivery-grid article,
  .story-grid article,
  .wholesale-grid article,
  .brand-principles article {
    min-height: 0;
  }

  .company-photo-board {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .company-photo-board img,
  .company-photo-board img:first-child {
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

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

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

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

  .reviews-section {
    border-top-width: 8px;
  }

  .review-card {
    padding-right: 10px;
    padding-left: 10px;
  }

  .review-card--featured {
    box-shadow: 10px 10px 0 rgba(64, 95, 43, 0.06), var(--shadow);
  }

  .garden-set {
    margin-bottom: 34px;
  }

  .season-showcase {
    padding-top: 34px;
    padding-bottom: 42px;
  }

  .page-hero-visual {
    min-height: 290px;
  }

  .page-hero-visual .catalog-statement {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -72px 12px 0;
  }

  .order-section {
    padding: 28px 18px;
  }

  .cart-panel {
    width: 100%;
    padding: 20px;
  }

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

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