:root {
  --bg: #f4efe4;
  --ink: #141c13;
  --paper: #f4efe4;
  --cream: #fbf6ec;
  --basil: #24532c;
  --leaf: #356338;
  --muted: #5a6356;
  --line: #d4ccba;
  --sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --display: "Fraunces", ui-serif, Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 0 0 1px rgb(27 36 25 / 0.06), 0 1px 2px -1px rgb(27 36 25 / 0.06), 0 2px 8px 0 rgb(27 36 25 / 0.04);
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; background: var(--bg); color: var(--ink); }
body { font-family: var(--sans); line-height: 1.5; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3 { font-family: var(--display); font-weight: 500; letter-spacing: -0.03em; line-height: 1.12; text-wrap: balance; margin: 0; }
p { margin: 0; text-wrap: pretty; }

.kicker { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.muted { color: var(--muted); }
.wrap { width: min(72rem, calc(100% - 2rem)); margin-inline: auto; }

.ticker {
  background: var(--ink); color: rgb(244 239 228 / 0.85); text-align: center;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; padding: 0.5rem 1rem;
}
.site-head { position: sticky; top: 0; z-index: 40; background: rgb(244 239 228 / 0.9); backdrop-filter: blur(12px); }
.bar {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  height: 3.5rem; border-bottom: 1px solid rgb(212 204 186 / 0.8);
  width: min(72rem, calc(100% - 2rem)); margin-inline: auto;
}
.logo { display: inline-flex; align-items: center; overflow: hidden; background: transparent; }
.logo img { height: 2.25rem; width: auto; max-width: 9.5rem; object-fit: contain; object-position: left; background: transparent; border: 0; outline: 0; box-shadow: none; }
nav.desk { display: none; gap: 1.75rem; }
nav.desk a { font-size: 0.9rem; font-weight: 500; color: rgb(20 28 19 / 0.8); }
nav.desk a:hover { color: var(--basil); }
.head-actions { display: flex; align-items: center; gap: 0.35rem; }
.icon-btn { width: 2.75rem; height: 2.75rem; border: 0; background: transparent; border-radius: 0.75rem; cursor: pointer; color: var(--ink); }
.icon-btn:hover { background: #ebe4d4; }
.mobile-nav { display: grid; grid-template-rows: 0fr; overflow: hidden; border-bottom: 1px solid var(--line); transition: grid-template-rows 250ms var(--ease); }
.mobile-nav.open { grid-template-rows: 1fr; }
.mobile-nav .inner { min-height: 0; padding: 0.75rem 1rem 1rem; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav a { height: 2.75rem; display: flex; align-items: center; border-radius: 0.75rem; padding: 0 0.75rem; font-weight: 500; }
.mobile-nav a:hover { background: #ebe4d4; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  height: 3rem; padding: 0 1.25rem; border-radius: 0.75rem; font-size: 0.9375rem; font-weight: 500;
  border: 0; cursor: pointer; transition: background 150ms var(--ease), transform 150ms var(--ease);
}
.btn:active { transform: scale(0.96); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { opacity: 0.92; }
.btn-cream { background: var(--cream); color: var(--ink); }
.btn-cream:hover { background: #ebe4d4; }
.btn-basil { background: var(--basil); color: var(--paper); }
.btn-basil:hover { background: var(--leaf); }
.btn-ghost { background: transparent; color: var(--paper); }
.btn-ghost:hover { background: rgb(244 239 228 / 0.1); }
.btn-line { background: var(--cream); color: var(--ink); box-shadow: var(--shadow); }

.stage { position: relative; overflow: hidden; background: var(--ink); min-height: 100dvh; }
.fill-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.veil { position: absolute; inset: 0; background: linear-gradient(to top, #141c13, rgb(20 28 19 / 0.35), rgb(20 28 19 / 0.2)); }
.veil-side { position: absolute; inset: 0; background: linear-gradient(to right, #141c13, rgb(20 28 19 / 0.7), rgb(20 28 19 / 0.3)); }
.veil-up { position: absolute; inset: 0; background: linear-gradient(to top, rgb(20 28 19 / 0.8), transparent); }
.hero-copy {
  position: relative; width: min(72rem, calc(100% - 2.5rem)); margin-inline: auto;
  min-height: 100dvh; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 7rem 0 4rem; color: var(--paper);
}
.hero-copy h1 { font-style: italic; font-size: clamp(3rem, 8vw, 6rem); max-width: 22ch; line-height: 0.92; font-weight: 600; }
.hero-copy .lede { margin-top: 1.25rem; max-width: 24rem; color: rgb(244 239 228 / 0.8); }
.hero-copy .kicker { color: rgb(244 239 228 / 0.7); letter-spacing: 0.28em; }
.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

.split { display: grid; }
.split-card { position: relative; min-height: 70dvh; overflow: hidden; background: var(--ink); color: var(--paper); }
.split-card .cap { position: absolute; inset-inline: 0; bottom: 0; padding: 2rem; }
.split-card .cap .kicker { color: rgb(244 239 228 / 0.6); }
.split-card .cap p.title { font-family: var(--display); font-style: italic; font-size: 2.25rem; margin-top: 0.5rem; }

.section { padding: 4rem 0; }
.section-tight { padding: 3rem 0 5rem; }
.card-grid { display: grid; gap: 1rem; margin-top: 2.5rem; }
.pack { overflow: hidden; border-radius: 1.75rem; background: var(--cream); box-shadow: var(--shadow); color: inherit; }
.pack img, .pack video { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.pack .body { padding: 1.25rem; }
.pack .body h3 { font-style: italic; font-size: 1.85rem; }
.pack .price { margin-top: 0.75rem; font-family: var(--display); font-style: italic; font-size: 1.85rem; color: var(--basil); }

.band { border-block: 1px solid var(--line); background: var(--cream); }
.steps { display: grid; gap: 2rem; margin-top: 2.5rem; }
.steps .n { font-family: var(--display); font-style: italic; font-size: 0.9rem; color: var(--basil); }
.steps h3 { font-style: italic; font-size: 1.5rem; margin-top: 0.5rem; }
.steps p { margin-top: 0.5rem; font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

.story-band { position: relative; min-height: 70dvh; overflow: hidden; background: var(--ink); color: var(--paper); }
.story-inner {
  position: relative; width: min(72rem, calc(100% - 2.5rem)); margin-inline: auto;
  min-height: 70dvh; display: flex; align-items: center; padding: 4rem 0;
}
.story-inner h2 { font-style: italic; font-size: clamp(2.25rem, 5vw, 3.75rem); margin-top: 0.75rem; }
.story-inner p { margin-top: 1.25rem; color: rgb(244 239 228 / 0.8); max-width: 32rem; }

.cta-row {
  width: min(72rem, calc(100% - 2rem)); margin-inline: auto; padding: 4rem 0;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.cta-row h2 { font-style: italic; font-size: clamp(1.85rem, 4vw, 2.5rem); }

footer { background: var(--ink); color: var(--paper); }
footer .grid { width: min(72rem, calc(100% - 2rem)); margin-inline: auto; padding: 3.5rem 0; display: grid; gap: 2.5rem; }
footer .logo img { height: 2.5rem; max-width: 11rem; }
footer p, footer li { font-size: 0.9rem; color: rgb(244 239 228 / 0.8); }
footer .blurb { margin-top: 0.75rem; max-width: 22rem; line-height: 1.65; color: rgb(244 239 228 / 0.7); }
footer .label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgb(244 239 228 / 0.45); }
footer ul { list-style: none; margin: 0.75rem 0 0; padding: 0; display: grid; gap: 0.5rem; }
footer a:hover { color: var(--paper); }
.legal { border-top: 1px solid rgb(244 239 228 / 0.1); }
.legal .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem; padding: 1rem 0; font-size: 0.75rem; color: rgb(244 239 228 / 0.45); }

.photo { border-radius: 1.5rem; width: 100%; object-fit: cover; }
.panel { background: var(--cream); border-radius: 1.5rem; padding: 1.5rem; box-shadow: var(--shadow); }
.map-card { overflow: hidden; border-radius: 1.75rem; background: var(--cream); box-shadow: var(--shadow); }
.map-card iframe { width: 100%; min-height: 280px; border: 0; background: #ebe4d4; }
.faq { max-width: 42rem; }
.faq div { padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.faq dt { font-weight: 500; }
.faq dd { margin: 0.5rem 0 0; font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

.page-hero { position: relative; min-height: 80dvh; overflow: hidden; background: var(--ink); color: var(--paper); }
.page-hero .copy { position: relative; width: min(72rem, calc(100% - 2rem)); margin-inline: auto; min-height: 80dvh; display: flex; align-items: flex-end; padding-bottom: 3rem; }
.page-hero h1 { font-style: italic; font-size: clamp(2.25rem, 6vw, 3.75rem); max-width: 18ch; }
.prose { max-width: 42rem; margin: 0 auto; padding: 4rem 1rem; display: grid; gap: 1.5rem; }
.prose .lead { font-family: var(--display); font-style: italic; font-size: 1.5rem; line-height: 1.3; }
.pillars { display: grid; gap: 2rem; width: min(72rem, calc(100% - 2rem)); margin: 0 auto; padding: 3.5rem 0; }
.three-vid { display: grid; }
.three-vid > div { position: relative; min-height: 50dvh; overflow: hidden; background: var(--ink); }
.shop-pair { display: grid; gap: 0; }

.rise { animation: rise 500ms var(--ease) both; }
.rise-2 { animation: rise 500ms var(--ease) 80ms both; }
.rise-3 { animation: rise 500ms var(--ease) 140ms both; }
.rise-4 { animation: rise 500ms var(--ease) 200ms both; }
@keyframes rise {
  from { opacity: 0; transform: translateY(12px); filter: blur(4px); }
  to { opacity: 1; transform: none; filter: none; }
}

.wa-desk { display: none; }

@media (min-width: 640px) {
  .bar { height: 4rem; }
  .logo img { height: 2.5rem; max-width: 11rem; }
  .split { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .cta-row { flex-direction: row; align-items: center; justify-content: space-between; }
  .map-card { display: grid; grid-template-columns: 0.9fr 1.1fr; }
  .map-card iframe { min-height: 360px; height: 100%; }
  .three-vid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (min-width: 768px) {
  nav.desk { display: flex; }
  .menu-btn { display: none; }
  .mobile-nav { display: none; }
  .wa-desk { display: inline-flex !important; }
  footer .grid { grid-template-columns: 5fr 2fr 2fr 3fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .care-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: end; }
  .shop-pair { grid-template-columns: 1fr 1fr; align-items: center; }
}
@media (min-width: 1024px) {
  .hero-copy { justify-content: center; padding-bottom: 6rem; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .pillars { grid-template-columns: 1fr 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* PHP commerce and admin-backed content bridge */
body.cart-open { overflow: hidden; }
.site-head nav.desk a.active { color: var(--basil); }
.site-head nav.desk a.active::after { display: block; height: 1px; margin-top: .2rem; content: ""; background: currentColor; }
.cart-trigger { position: relative; display: grid; place-items: center; }
.cart-trigger svg { width: 1.35rem; height: 1.35rem; }
.cart-trigger b { position: absolute; top: -.05rem; right: -.05rem; display: grid; width: 1rem; height: 1rem; place-items: center; color: var(--paper); border-radius: 999px; background: var(--basil); font-size: .58rem; line-height: 1; }
.harvest-backdrop { position: fixed; z-index: 79; inset: 0; opacity: 0; background: rgb(20 28 19 / .62); backdrop-filter: blur(3px); transition: opacity 220ms var(--ease); }
.harvest-backdrop.open { opacity: 1; }
.harvest-drawer { position: fixed; z-index: 80; top: 0; right: 0; bottom: 0; display: flex; width: min(29rem,100%); padding: 1.5rem; flex-direction: column; transform: translateX(102%); color: var(--ink); background: var(--cream); box-shadow: -2rem 0 5rem rgb(20 28 19 / .22); transition: transform 320ms var(--ease); }
.harvest-drawer.open { transform: translateX(0); }
.harvest-head { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 1.25rem; border-bottom: 1px solid var(--line); }
.harvest-head p { font-family: var(--display); font-size: 1.85rem; font-style: italic; }
.harvest-head span { color: var(--muted); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.harvest-head button { width: 2.5rem; height: 2.5rem; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: 1.5rem; cursor: pointer; }
.harvest-empty { display: grid; margin: auto 0; justify-items: center; padding: 2.5rem 1rem; text-align: center; }
.harvest-empty > span { display: grid; width: 4.25rem; height: 4.25rem; place-items: center; margin-bottom: 1.5rem; border: 1px solid var(--line); border-radius: 50%; font-size: 1.7rem; }
.harvest-empty h2 { font-size: 2.5rem; font-style: italic; }
.harvest-empty p { max-width: 19rem; margin: .75rem 0 1.5rem; color: var(--muted); }
.harvest-items { overflow-y: auto; }
.harvest-items article { display: grid; grid-template-columns: 4.75rem 1fr auto; align-items: center; gap: .85rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.harvest-items img { width: 4.75rem; height: 4.75rem; border-radius: 1rem; object-fit: cover; background: #fff; }
.harvest-items a { display: block; font-family: var(--display); font-size: 1.1rem; font-style: italic; }
.harvest-items span { color: var(--muted); font-size: .75rem; }
.harvest-items strong { font-family: var(--display); font-weight: 500; }
.harvest-total { display: flex; justify-content: space-between; margin-top: auto; padding: 1.2rem 0; border-top: 1px solid var(--line); }
.harvest-total strong { font-family: var(--display); font-size: 1.35rem; font-style: italic; }
.harvest-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }

.theme-wa-float { position: fixed; z-index: 35; right: 1rem; bottom: 1rem; display: grid; width: 3rem; height: 3rem; place-items: center; color: var(--paper); border-radius: 999px; background: var(--basil); box-shadow: 0 .9rem 2rem rgb(20 28 19 / .25); }
.theme-wa-float svg { width: 1.45rem; height: 1.45rem; }
.footer-instagram { display: inline-block; margin-top: .8rem; color: var(--paper); font-size: .82rem; }

.theme-section-title { margin-top: .5rem; font-size: clamp(2rem,5vw,3rem); font-style: italic; }
.travel-wrap { padding: 4rem 0; }
.story-kicker { color: rgb(244 239 228 / .5); }
.pack-copy { margin-top: .35rem; font-size: .9rem; }
.pack-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .65rem; margin-top: 1.15rem; }
.pack-actions form { margin: 0; }
.cta-copy { max-width: 28rem; margin-top: .5rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .65rem; }

.plant-intro h1, .delivery-intro h1 { max-width: 18ch; margin-top: .5rem; font-size: clamp(2.5rem,6vw,4rem); font-style: italic; }
.plant-intro .muted, .delivery-intro .muted { max-width: 36rem; margin-top: 1rem; }
.product-showcase { padding-top: 0; }
.product-showcase-list { display: grid; gap: 2.5rem; }
.product-feature .body { padding: clamp(1.5rem,4vw,3rem); }
.product-feature h2 { margin-top: .45rem; font-size: clamp(2rem,4vw,2.7rem); font-style: italic; }
.product-feature-lead { margin-top: .85rem; }
.product-feature-copy { margin-top: 1rem; color: var(--muted); }
.stock-line { display: flex; align-items: center; gap: .45rem; margin-top: 1rem; color: var(--basil); font-size: .75rem; font-weight: 500; }
.stock-line i { width: .45rem; height: .45rem; border-radius: 50%; background: #51a24d; }
.product-photo-row { padding-top: 0; }
.product-photo-row .wrap { display: grid; gap: 1rem; grid-template-columns: repeat(3,1fr); }
.product-photo-row img { height: 28rem; }

.theme-page-hero { background: var(--ink); }
.pillars .kicker { color: var(--basil); }
.pillars h2 { margin-top: .45rem; font-size: 1.5rem; font-style: italic; }
.pillars .muted { margin-top: .55rem; font-size: .9rem; }
.process-detail-grid { display: grid; gap: 1rem; }
.process-detail-grid .panel h2, .care-panels .panel h2 { margin-top: .45rem; font-size: 1.5rem; font-style: italic; }
.process-detail-grid .rich-copy, .care-panels .muted { margin-top: .7rem; color: var(--muted); font-size: .9rem; line-height: 1.7; }
.theme-number { color: var(--basil); font-family: var(--display); font-size: .9rem; font-style: italic; }

.care-hero h1 { margin-top: .5rem; font-size: clamp(2.25rem,6vw,3.75rem); font-style: italic; }
.care-hero > div > .muted { max-width: 28rem; margin-top: 1rem; }
.care-steps-section { padding-top: 0; }
.care-panels { display: grid; gap: 1rem; }
.care-troubleshooting .wrap { padding: 4rem 0; }
.care-troubleshooting h2, .faq h2 { font-size: 2rem; font-style: italic; }
.care-troubleshooting dl { display: grid; gap: 2rem; margin-top: 2rem; }
.care-troubleshooting dt { font-weight: 500; }
.care-troubleshooting dd { margin: .5rem 0 0; color: var(--muted); font-size: .9rem; }

.map-section { padding-top: 0; }
.map-copy { padding: 2.5rem 1.5rem; }
.map-copy h2 { margin-top: .5rem; font-size: 2rem; font-style: italic; }
.map-copy > .muted { margin-top: .75rem; }
.map-copy .map-note { margin-top: .5rem; font-size: .9rem; }
.delivery-states .wrap { display: grid; gap: 2rem; padding: 3rem 0; }
.delivery-states h2 { font-size: 1.5rem; font-style: italic; }
.delivery-states p { margin-top: .5rem; font-size: .9rem; }
.contact-theme-grid { display: grid; gap: 2.5rem; align-items: start; }
.contact-theme-grid > div:first-child h2 { margin-top: .5rem; font-size: clamp(2rem,5vw,2.8rem); font-style: italic; }
.contact-theme-grid > div:first-child > .muted { max-width: 30rem; margin-top: 1rem; }
.theme-contact-list { display: grid; gap: .55rem; margin-top: 1.5rem; font-size: .9rem; font-weight: 500; }

.button { display: inline-flex; min-height: 3rem; align-items: center; justify-content: center; gap: .5rem; padding: 0 1.25rem; border: 0; border-radius: .75rem; font-size: .9375rem; font-weight: 500; cursor: pointer; }
.button-primary { color: var(--paper); background: var(--ink); }
.button-outline { color: var(--ink); border: 1px solid var(--line); background: var(--cream); }
.button-accent { color: var(--paper); background: var(--basil); }
.styled-form { display: grid; gap: 1rem; }
.styled-form label { color: var(--ink); font-size: .72rem; font-weight: 500; letter-spacing: .05em; }
.styled-form input:not([type="checkbox"]):not([type="radio"]), .styled-form select, .styled-form textarea { width: 100%; margin-top: .35rem; padding: .85rem 1rem; color: var(--ink); border: 1px solid var(--line); border-radius: .8rem; outline: 0; background: #fffdf8; }
.styled-form input:focus, .styled-form select:focus, .styled-form textarea:focus { border-color: var(--basil); box-shadow: 0 0 0 3px rgb(36 83 44 / .1); }
.styled-form textarea { resize: vertical; }
.address-autocomplete { position: relative; }
.address-autocomplete > label { display: block; }
.address-autocomplete > input { width: 100%; margin-top: .35rem; padding: .85rem 1rem; color: var(--ink); border: 1px solid var(--line); border-radius: .8rem; outline: 0; background: #fffdf8; }
.address-autocomplete > input:focus { border-color: var(--basil); box-shadow: 0 0 0 3px rgb(36 83 44 / .1); }
.address-autocomplete > small { display: block; margin-top: .42rem; color: var(--muted); font-size: .68rem; letter-spacing: 0; }
.address-suggestions { position: absolute; z-index: 30; right: 0; left: 0; top: calc(100% - 1.15rem); overflow: hidden; padding: .35rem; border: 1px solid var(--line); border-radius: .9rem; background: #fffdf8; box-shadow: 0 18px 45px rgb(20 32 21 / .16); }
.address-suggestions button { display: grid; width: 100%; gap: .15rem; padding: .72rem .8rem; color: var(--ink); border: 0; border-radius: .6rem; background: transparent; text-align: left; cursor: pointer; }
.address-suggestions button:hover, .address-suggestions button:focus { outline: 0; background: #edf1e7; }
.address-suggestions strong { font-size: .8rem; }
.address-suggestions small { color: var(--muted); font-size: .7rem; }
.policy-page { padding: 5rem 0 7rem; }
.policy-shell { max-width: 58rem; }
.policy-shell > h1 { margin-bottom: .65rem; color: var(--ink); font-size: clamp(3.2rem, 8vw, 6.5rem); font-style: italic; }
.policy-updated { color: var(--muted); font-size: .78rem; }
.policy-copy { display: grid; gap: 1px; margin-top: 3rem; overflow: hidden; border: 1px solid var(--line); border-radius: 1.5rem; background: var(--line); }
.policy-copy section { padding: clamp(1.4rem, 4vw, 2.3rem); background: var(--paper); }
.policy-copy h2 { margin: 0 0 .75rem; color: var(--ink); font-size: 1.65rem; font-style: italic; }
.policy-copy p { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.75; }
.policy-copy a { color: var(--basil); text-decoration: underline; }
.form-panel { padding: clamp(1.25rem,4vw,2.25rem); color: var(--ink); border-radius: 1.5rem; background: var(--cream); box-shadow: var(--shadow); }
.form-submit { width: 100%; }
.form-row { display: grid; gap: 1rem; }
.check-label { display: flex!important; align-items: flex-start; gap: .65rem; letter-spacing: 0!important; }
.check-label input { margin-top: .2rem; }
.honeypot { position: absolute; left: -9999px; }

.form-page { padding: 4rem 0; color: var(--paper); background: var(--ink); }
.form-page-grid { display: grid; gap: 3rem; }
.form-intro h1 { margin-top: .5rem; font-size: clamp(2.5rem,6vw,4rem); font-style: italic; }
.form-intro > p:not(.eyebrow) { margin-top: 1rem; color: rgb(244 239 228 / .72); }
.form-benefits { margin-top: 2rem; }
.form-intro > img { margin-top: 2rem; border-radius: 1.5rem; }

.cart-page, .checkout-page, .product-detail, .project-detail { background: var(--bg)!important; }
.cart-heading h1, .checkout-main h1, .product-detail-copy h1, .project-detail-header h1 { font-family: var(--display); font-style: italic; }
.order-summary, .checkout-summary { border-radius: 1.5rem; background: var(--cream); box-shadow: var(--shadow); }
.product-detail-image img, .project-cover img, .project-card-image, .journal-card img { border-radius: 1.5rem; }
.page-hero-products, .page-hero-dark, .page-hero-gallery, .about-hero, .contact-hero { background: var(--ink); }

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .delivery-states .wrap { grid-template-columns: repeat(3,1fr); }
  .contact-theme-grid { grid-template-columns: .85fr 1.15fr; }
  .process-detail-grid, .care-panels { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .product-feature:nth-child(even) .shop-pair > :first-child { order: 2; }
  .form-page-grid { grid-template-columns: .85fr 1.15fr; align-items: start; }
}
@media (max-width: 767px) {
  .cart-trigger { display: grid; }
  .product-photo-row .wrap { grid-template-columns: 1fr; }
  .product-photo-row img { height: 24rem; }
}
@media (max-width: 520px) {
  .harvest-drawer { padding: 1rem; }
  .harvest-actions { grid-template-columns: 1fr; }
  .pack-actions, .pack-actions form, .pack-actions .btn, .cta-actions, .cta-actions .btn { width: 100%; }
}
