:root {
  --ink: #213129;
  --forest: #284d3d;
  --forest-dark: #17362a;
  --cream: #fffaf0;
  --paper: #ffffff;
  --honey: #d89535;
  --clay: #a55035;
  --sage: #dfe9df;
  --line: #d9ded6;
  --muted: #637069;
  --shadow: 0 14px 36px rgba(29, 48, 38, .12);
  --radius: 20px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.6; }
img { display: block; width: 100%; }
a { color: inherit; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; transform: translateY(-140%); background: #fff; padding: .75rem 1rem; border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }
.announcement { background: var(--forest-dark); color: #fff; text-align: center; padding: .55rem 1rem; font-size: .9rem; }
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(255,250,240,.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(40,77,61,.12); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; font-family: Georgia, serif; font-weight: 700; font-size: 1.18rem; letter-spacing: -.02em; }
.brand-mark { width: 42px; height: 42px; border-radius: 50% 50% 44% 44%; background: var(--forest); color: #fff; display: grid; place-items: center; font-size: 1.3rem; }
.desktop-nav { display: flex; align-items: center; gap: 1.75rem; }
.desktop-nav a { text-decoration: none; font-weight: 700; font-size: .95rem; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--clay); }
.cart-link { display: inline-flex; align-items: center; gap: .5rem; background: var(--forest); color: #fff !important; padding: .7rem 1rem; border-radius: 999px; }
.cart-count { min-width: 1.45rem; height: 1.45rem; padding: 0 .35rem; border-radius: 999px; background: var(--honey); color: var(--forest-dark); display: grid; place-items: center; font-size: .78rem; }
.menu-toggle { display: none; border: 0; background: transparent; font-weight: 800; }
.mobile-nav { display: none; }
.hero { padding: clamp(3.5rem, 8vw, 7.5rem) 0 4.5rem; overflow: hidden; position: relative; }
.hero::after { content: ""; position: absolute; width: 480px; height: 480px; right: -180px; top: -120px; border-radius: 50%; background: rgba(216,149,53,.12); z-index: -1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.eyebrow { margin: 0 0 .65rem; color: var(--clay); font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 900; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.08; letter-spacing: -.025em; margin-top: 0; }
h1 { font-size: clamp(2.8rem, 7vw, 5.7rem); margin-bottom: 1.35rem; max-width: 12ch; }
h2 { font-size: clamp(2rem, 4.5vw, 3.7rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-bottom: .6rem; }
.lead { color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.25rem); max-width: 57ch; }
.button-row { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.8rem; }
.button { display: inline-flex; justify-content: center; align-items: center; border: 2px solid var(--forest); border-radius: 999px; padding: .85rem 1.2rem; background: var(--forest); color: #fff; text-decoration: none; font-weight: 800; transition: transform .18s, background .18s; }
.button:hover, .button:focus-visible { transform: translateY(-2px); background: var(--forest-dark); }
.button-outline { background: transparent; color: var(--forest); }
.button-small { border: 0; padding: .65rem .9rem; font-size: .9rem; }
.hero-image { position: relative; }
.hero-image img { aspect-ratio: 4/5; object-fit: cover; border-radius: 48% 48% 24px 24px; box-shadow: var(--shadow); }
.hero-card { position: absolute; left: -1.5rem; bottom: 2rem; background: #fff; padding: 1rem 1.1rem; border-radius: 14px; box-shadow: var(--shadow); max-width: 220px; font-weight: 800; }
.trust-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.48); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 1.25rem; text-align: center; font-weight: 800; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-heading { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: 2rem; }
.section-heading p { max-width: 46ch; color: var(--muted); margin: 0; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.product-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 18px rgba(29,48,38,.05); }
.product-photo { overflow: hidden; background: var(--sage); }
.product-photo img { aspect-ratio: 4/3; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-photo img { transform: scale(1.03); }
.product-info { padding: 1.3rem; }
.product-description { color: var(--muted); margin: 0 0 .8rem; }
.fulfillment { display: inline-flex; background: var(--sage); color: var(--forest-dark); border-radius: 999px; padding: .3rem .65rem; font-weight: 800; font-size: .78rem; }
.product-action { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1.25rem; }
.product-action strong { font-size: 1.12rem; }
.story-band { background: var(--forest); color: #fff; }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.story-grid img { border-radius: 22px; aspect-ratio: 4/3; object-fit: cover; }
.story-grid .eyebrow { color: #ffd28f; }
.story-grid p { color: #e8f0ea; }
.page-hero { padding: 4rem 0 2.5rem; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
.filter-note { color: var(--muted); max-width: 60ch; }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.about-grid img { border-radius: 28px; aspect-ratio: 4/5; object-fit: cover; }
.about-copy { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 3rem); }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.8rem; }
.value { padding: 1rem; border-radius: 14px; background: var(--sage); }
.value strong { display: block; }
.checkout-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: start; }
.checkout-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.2rem, 3vw, 2rem); }
.checkout-items { list-style: none; margin: 0; padding: 0; }
.checkout-item { display: grid; grid-template-columns: 66px 1fr auto auto; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.checkout-item img { width: 66px; height: 66px; object-fit: cover; border-radius: 10px; }
.checkout-item span { display: block; color: var(--muted); font-size: .9rem; }
.quantity { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.quantity button { width: 34px; height: 34px; border: 0; background: var(--sage); font-weight: 900; }
.quantity span { min-width: 28px; text-align: center; color: var(--ink); }
.summary-row { display: flex; justify-content: space-between; padding: .8rem 0; }
.summary-total { border-top: 2px solid var(--ink); font-size: 1.15rem; font-weight: 900; }
.field { margin-bottom: 1rem; }
.field label, .field legend { display: block; font-weight: 800; margin-bottom: .4rem; }
.field input, .field textarea { width: 100%; padding: .8rem .9rem; border: 1px solid #9ca7a0; border-radius: 10px; background: #fff; }
.field input:focus, .field textarea:focus { outline: 3px solid rgba(216,149,53,.4); border-color: var(--forest); }
fieldset.field { border: 0; padding: 0; }
.radio-option { display: flex; gap: .65rem; align-items: flex-start; padding: .8rem; border: 1px solid var(--line); border-radius: 10px; margin-bottom: .6rem; }
.radio-option input { width: auto; margin-top: .35rem; }
.checkout-message { margin-top: 1rem; padding: 1rem; background: #fff3d8; border-left: 4px solid var(--honey); border-radius: 8px; }
.empty-state { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 3rem 1rem; }
.site-footer { padding: 3rem 0; background: var(--forest-dark); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 2rem; }
.site-footer a { color: #fff; }
.footer-links { display: grid; gap: .45rem; align-content: start; }
.fine-print { color: #c8d4cc; font-size: .85rem; }
.cart-bump { animation: bump .3s; }
@keyframes bump { 50% { transform: scale(1.07); } }
@media (max-width: 820px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav.open { display: grid; gap: .75rem; padding: 0 1rem 1rem; }
  .mobile-nav a { padding: .45rem 0; font-weight: 800; }
  .hero-grid, .story-grid, .about-grid, .checkout-layout { grid-template-columns: 1fr; }
  .hero-image { max-width: 570px; }
  .hero-card { left: .75rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .product-grid, .values, .trust-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .section-heading { align-items: start; flex-direction: column; }
  .checkout-item { grid-template-columns: 56px 1fr auto; }
  .checkout-item > strong:last-child { grid-column: 2 / -1; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; } }
.product-placeholder { aspect-ratio: 4/3; display: grid; place-items: center; padding: 1.5rem; text-align: center; color: var(--forest); font-weight: 700; letter-spacing: .04em; }
