:root {
  --forest: #14251c;
  --moss: #2f5d3d;
  --leaf: #4a7c59;
  --cream: #f3eee4;
  --linen: #e7dfd2;
  --paper: #faf7f1;
  --ink: #1c1916;
  --muted: #6b645a;
  --border: #d8d0c4;
  --sand: #cbbfaa;
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, [role="button"] { cursor: pointer; font-family: inherit; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; letter-spacing: -0.03em; line-height: 1.12; margin: 0; }
p { margin: 0; }
.wrap { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.topbar {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 16px;
}
header.site {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in oklab, var(--paper) 95%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
}
header.site.scrolled { border-bottom-color: var(--border); }
.navrow {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--forest); }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--forest); color: var(--cream);
  display: grid; place-items: center;
}
.logo-mark svg { width: 20px; height: 20px; fill: currentColor; }
.logo-name { font-family: var(--display); font-size: 1.2rem; letter-spacing: 0.14em; line-height: 1; }
.logo-sub { display: block; margin-top: 3px; font-size: 0.62rem; font-weight: 500; letter-spacing: 0.32em; text-transform: uppercase; color: var(--moss); }
nav.primary { display: flex; gap: 28px; }
nav.primary a { text-decoration: none; font-size: 0.9rem; font-weight: 500; color: var(--muted); }
nav.primary a:hover, nav.primary a.active { color: var(--forest); }
.iconbtn {
  width: 44px; height: 44px; border: 0; border-radius: 999px;
  background: transparent; color: var(--forest);
  display: grid; place-items: center; position: relative;
}
.iconbtn:hover { background: var(--linen); }
.badge {
  position: absolute; right: 4px; top: 4px; min-width: 16px; height: 16px;
  padding: 0 4px; border-radius: 999px; background: var(--moss);
  color: var(--cream); font-size: 0.62rem; font-weight: 600; line-height: 16px;
}
.menu { display: none; border: 0; }
.mobile-nav { display: none; border-top: 1px solid var(--border); padding: 8px 0 16px; }
.mobile-nav a { display: flex; height: 44px; align-items: center; text-decoration: none; }
.hero {
  position: relative; min-height: 78vh; overflow: hidden; background: var(--forest); color: var(--cream);
  display: flex; align-items: flex-end;
}
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: ken 22s ease-in-out infinite alternate; }
.hero .shade { position: absolute; inset: 0; background: linear-gradient(to top, var(--forest), color-mix(in oklab, var(--forest) 55%, transparent) 45%, color-mix(in oklab, var(--forest) 20%, transparent)); }
.hero .copy { position: relative; padding: 112px 0 72px; }
.kicker { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--moss); }
.hero .kicker { color: color-mix(in oklab, var(--cream) 80%, transparent); }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); max-width: 16ch; margin-top: 16px; }
.hero p { max-width: 36rem; margin-top: 18px; color: color-mix(in oklab, var(--cream) 80%, transparent); }
.row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 24px; border-radius: 999px; border: 0;
  text-decoration: none; font-size: 0.9rem; font-weight: 500;
  transition: transform 150ms ease-out, background 150ms;
}
.btn:active { transform: scale(0.96); }
.btn-cream { background: var(--cream); color: var(--forest); }
.btn-forest { background: var(--forest); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--cream); box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--cream) 35%, transparent); }
.marquee { overflow: hidden; background: var(--cream); border-block: 1px solid var(--border); padding: 12px 0; }
.marquee-track {
  display: flex; gap: 40px; width: max-content;
  animation: marquee 32s linear infinite;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--moss);
}
section { padding: 72px 0; }
.grid-3 { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
.grid-4 { display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }
.grid-2 { display: grid; gap: 40px; grid-template-columns: 1.1fr 0.9fr; align-items: center; }
.card {
  background: var(--cream); border-radius: 28px; padding: 24px;
  box-shadow: inset 0 0 0 1px var(--border);
}
.card h2 { font-size: 1.5rem; color: var(--forest); margin-top: 14px; }
.muted { color: var(--muted); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
h2.display { font-size: clamp(2rem, 4vw, 3rem); color: var(--forest); margin-top: 8px; }
.product {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--cream); border-radius: 28px; box-shadow: inset 0 0 0 1px var(--border);
}
.product .imgwrap { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--linen); }
.product img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.product:hover img { transform: scale(1.06); }
.chip {
  position: absolute; left: 12px; top: 12px; background: color-mix(in oklab, var(--paper) 90%, transparent);
  padding: 4px 10px; border-radius: 999px; font-size: 0.68rem; font-weight: 500; color: var(--moss);
}
.product .body { display: flex; flex-direction: column; gap: 12px; padding: 18px; flex: 1; }
.product h3 { font-size: 1.35rem; }
.price { font-size: 0.9rem; font-weight: 500; color: var(--forest); }
.price span { font-weight: 400; color: var(--muted); }
.add {
  height: 44px; padding: 0 16px; border: 0; border-radius: 999px;
  background: var(--forest); color: var(--cream); font-size: 0.9rem; font-weight: 500;
}
.media { overflow: hidden; border-radius: 32px; }
.media img { width: 100%; height: 100%; object-fit: cover; }
.steps { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 24px; }
.steps li { display: flex; gap: 20px; }
.num { font-family: var(--display); font-size: 1.8rem; color: var(--leaf); }
.band { position: relative; overflow: hidden; color: var(--cream); text-align: center; }
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band .shade { position: absolute; inset: 0; background: color-mix(in oklab, var(--forest) 70%, transparent); }
.band .inner { position: relative; padding: 96px 16px; }
footer.site { background: var(--forest); color: var(--cream); margin-top: auto; }
.footgrid { display: grid; gap: 40px; padding: 56px 0; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
.footgrid a { color: color-mix(in oklab, var(--cream) 85%, transparent); text-decoration: none; }
.footgrid ul { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 8px; font-size: 0.9rem; }
.foot-kicker { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in oklab, var(--cream) 55%, transparent); }
.footbar { border-top: 1px solid color-mix(in oklab, var(--cream) 10%, transparent); padding: 18px 0; font-size: 0.75rem; color: color-mix(in oklab, var(--cream) 50%, transparent); }
.logo.invert { color: var(--cream); }
.logo.invert .logo-mark { background: var(--cream); color: var(--forest); }
.logo.invert .logo-sub { color: color-mix(in oklab, var(--cream) 70%, transparent); }
.page { padding: 56px 0 80px; }
.filters { display: flex; gap: 8px; overflow: auto; padding-bottom: 4px; }
.filter {
  height: 44px; padding: 0 16px; border-radius: 999px; border: 0;
  background: var(--cream); color: var(--ink); box-shadow: inset 0 0 0 1px var(--border);
  font-size: 0.9rem; font-weight: 500; white-space: nowrap;
}
.filter.on { background: var(--forest); color: var(--cream); box-shadow: none; }
.search {
  height: 48px; width: min(420px, 100%); border-radius: 999px; border: 1px solid var(--border);
  background: var(--cream); padding: 0 16px 0 40px; font: inherit;
}
.toolbar { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; margin: 32px 0 16px; }
.searchwrap { position: relative; flex: 1; max-width: 420px; }
.searchwrap svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); }
.legal h2 { margin-top: 32px; font-size: 1.5rem; color: var(--forest); }
.legal p, .legal li { color: var(--muted); margin-top: 8px; }
details.faq { background: var(--cream); border-radius: 20px; padding: 8px 20px; box-shadow: inset 0 0 0 1px var(--border); }
details.faq + details.faq { margin-top: 12px; }
details.faq summary { cursor: pointer; list-style: none; padding: 12px 0; font-family: var(--display); font-size: 1.25rem; color: var(--forest); }
details.faq summary::-webkit-details-marker { display: none; }
.form { display: grid; gap: 12px; }
label span { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 4px; }
input, textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 12px;
  background: var(--paper); padding: 12px; font: inherit; color: var(--ink);
}
input { height: 48px; }
.drawer {
  position: fixed; inset: 0; z-index: 50; display: none;
}
.drawer.open { display: block; }
.drawer .back { position: absolute; inset: 0; background: color-mix(in oklab, var(--forest) 50%, transparent); border: 0; width: 100%; }
.panel {
  position: absolute; inset: 0 0 0 auto; width: min(420px, 100%);
  background: var(--paper); display: flex; flex-direction: column;
  animation: slide 400ms var(--ease);
}
@keyframes slide { from { transform: translateX(100%); } to { transform: none; } }
@keyframes ken { from { transform: scale(1.04); } to { transform: scale(1.12) translate(-1.5%, 1%); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.line { display: flex; gap: 12px; background: var(--cream); border-radius: 16px; padding: 12px; box-shadow: inset 0 0 0 1px var(--border); margin-bottom: 12px; }
.line img { width: 80px; height: 80px; object-fit: cover; border-radius: 12px; }
.qty { display: inline-flex; align-items: center; border-radius: 999px; background: var(--paper); box-shadow: inset 0 0 0 1px var(--border); }
.qty button { width: 36px; height: 36px; border: 0; background: transparent; }
.reveal { opacity: 0; transform: translateY(16px); filter: blur(4px); transition: 500ms var(--ease); }
.reveal.in { opacity: 1; transform: none; filter: none; }
@media (max-width: 900px) {
  nav.primary { display: none; }
  .menu { display: grid; }
  .grid-3, .grid-4, .grid-2, .footgrid { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
}
@media (prefers-reduced-motion: reduce) {
  .hero img, .marquee-track, .panel { animation: none; }
  .reveal { opacity: 1; transform: none; filter: none; }
}
