/* ============================================================
   Crucial Crates — landing page
   ============================================================ */

:root {
  --cream: #f7f4ec;
  --cream-2: #efe9db;
  --paper: #fbfaf5;
  --ink: #1d2a22;
  --ink-2: #3a4a3f;
  --muted: #6b7770;
  --line: #e3ddcd;
  --green: #2f5d3f;
  --green-2: #244a31;
  --green-soft: #d9e6d8;
  --moss: #8aa991;
  --terracotta: #c0623f;
  --wheat: #e8d8a8;
  --shadow-sm: 0 1px 2px rgba(29, 42, 34, 0.04), 0 2px 6px rgba(29, 42, 34, 0.06);
  --shadow-md: 0 6px 18px rgba(29, 42, 34, 0.07), 0 18px 40px rgba(29, 42, 34, 0.08);
  --shadow-lg: 0 18px 50px rgba(29, 42, 34, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1180px;
  --pad: clamp(20px, 4vw, 40px);
  --t: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; transition: color 180ms var(--t); }
a:hover { color: var(--green); }

button { font: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip {
  position: absolute;
  top: -100px; left: 8px;
  background: var(--ink); color: var(--cream);
  padding: 10px 14px; border-radius: 8px;
  z-index: 100;
  transition: top 200ms var(--t);
}
.skip:focus { top: 8px; }

/* -------- Typography -------- */
h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); }
h4 { font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase; font-family: "Inter", sans-serif; font-weight: 600; }
p { margin: 0; color: var(--ink-2); }
em { font-style: italic; color: var(--green); }

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 14px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); position: relative;
}
.eyebrow .dot::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--green);
  opacity: 0.4;
  animation: pulse 2.4s var(--t) infinite;
}
@keyframes pulse {
  0% { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 200ms var(--t), box-shadow 220ms var(--t), background 200ms var(--t), color 200ms var(--t), border-color 200ms var(--t);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn--primary {
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 8px 24px -10px rgba(47, 93, 63, 0.6);
}
.btn--primary:hover { background: var(--green-2); transform: translateY(-1px); box-shadow: 0 14px 30px -12px rgba(47, 93, 63, 0.7); color: var(--cream); }
.btn--outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline:hover { background: var(--green); color: var(--cream); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--paper); color: var(--ink); }
.btn--quiet {
  background: transparent;
  color: var(--ink-2);
}
.btn--quiet:hover { color: var(--green); }

/* -------- Nav -------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 244, 236, 0.7);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 240ms var(--t), background 240ms var(--t);
}
.nav.is-scrolled {
  background: rgba(247, 244, 236, 0.92);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.brand__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--green);
  color: var(--cream);
}
.brand__name {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.005em;
  display: inline-flex; flex-direction: column; line-height: 1;
}
.brand__sub {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: lowercase;
  margin-top: 4px;
}
.nav__links {
  display: flex; gap: 28px;
  font-size: 0.93rem;
  color: var(--ink-2);
}
.nav__links a { position: relative; padding: 6px 0; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform 240ms var(--t);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__burger {
  display: none;
  background: transparent; border: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  position: relative;
}
.nav__burger span {
  position: absolute; left: 9px; right: 9px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 240ms var(--t), opacity 200ms var(--t), top 240ms var(--t);
}
.nav__burger span:nth-child(1) { top: 13px; }
.nav__burger span:nth-child(2) { top: 19px; }
.nav__burger span:nth-child(3) { top: 25px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.nav__sheet {
  display: none;
  padding: 20px var(--pad) 28px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  gap: 14px;
  font-size: 1.05rem;
}
.nav__sheet[hidden] { display: none; }
.nav__sheet.is-open { display: flex; }

/* -------- Hero -------- */
.hero {
  position: relative;
  padding: clamp(60px, 8vw, 120px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  will-change: transform;
}
.blob--a {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--green-soft) 0%, transparent 70%);
  top: -120px; left: -120px;
  animation: float 18s ease-in-out infinite;
}
.blob--b {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #f0e2c4 0%, transparent 70%);
  bottom: -160px; right: -80px;
  animation: float 22s ease-in-out -6s infinite reverse;
}
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.05); }
}
.grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  mix-blend-mode: multiply;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}
.hero__copy { display: flex; flex-direction: column; gap: 26px; }
.hero__title { letter-spacing: -0.02em; }
.hero__lede { font-size: clamp(1.05rem, 1.4vw, 1.18rem); max-width: 52ch; color: var(--ink-2); }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__proof {
  margin: 14px 0 0; padding: 0; list-style: none;
  display: flex; gap: clamp(20px, 4vw, 42px); flex-wrap: wrap;
}
.hero__proof li {
  display: flex; flex-direction: column;
  border-left: 2px solid var(--green);
  padding-left: 14px;
}
.hero__proof strong { font-family: "Fraunces", serif; font-size: 1.55rem; color: var(--ink); }
.hero__proof span { font-size: 0.82rem; color: var(--muted); }

/* Crate illustration */
.hero__art {
  position: relative;
  aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center;
}
.crate {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, #e6cfa6 0%, #d6b984 50%, #c9a76b 100%);
  border-radius: 18px;
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,0.3);
  transform: rotate(-2deg);
  transition: transform 600ms var(--t);
}
.crate:hover { transform: rotate(-1deg) translateY(-4px); }
.crate::before, .crate::after {
  content: ""; position: absolute; left: 8%; right: 8%;
  height: 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0.06), transparent);
  border-radius: 6px;
}
.crate::before { top: 18%; }
.crate::after { top: 58%; }
.crate__lid {
  position: absolute;
  top: -8px; left: -8px; right: -8px;
  height: 30px;
  background: linear-gradient(180deg, #d9b884 0%, #c4a06a 100%);
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}
.crate__body {
  position: absolute;
  inset: 12% 10% 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 12px;
}
.item {
  border-radius: 10px;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06), var(--shadow-sm);
  animation: itemIn 700ms var(--t) backwards;
}
.item--soap { background: linear-gradient(135deg, #f0e2c4, #e0c987); }
.item--soap::after { content: ""; position: absolute; inset: 18% 14%; border-radius: 4px; background: rgba(255,255,255,0.4); }
.item--bottle { background: linear-gradient(180deg, #708d6f, #4f6f55); grid-row: span 2; animation-delay: 80ms; }
.item--bottle::before {
  content: ""; position: absolute;
  left: 35%; right: 35%; top: -10%; height: 18%;
  background: #5a7a5e; border-radius: 4px 4px 0 0;
}
.item--bottle::after {
  content: ""; position: absolute; left: 18%; right: 18%; top: 35%;
  height: 6px; background: rgba(255,255,255,0.4); border-radius: 2px;
}
.item--cloth {
  background: repeating-linear-gradient(45deg, #f4e7c8 0 6px, #e9d8a8 6px 12px);
  animation-delay: 160ms;
}
.item--brush {
  background: linear-gradient(180deg, #8b5e34, #6a4524);
  animation-delay: 240ms;
}
.item--brush::after {
  content: ""; position: absolute; left: 10%; right: 10%; top: 12%;
  height: 22%; background: #2d2014; border-radius: 2px;
  box-shadow: 0 4px 0 #2d2014;
}
.item--leaf {
  background: linear-gradient(135deg, #b6d1ab, #7fa37a);
  grid-column: span 2;
  animation-delay: 320ms;
}
.item--leaf::after {
  content: ""; position: absolute; inset: 22% 30%;
  background: radial-gradient(ellipse at center, #f7f4ec 30%, transparent 70%);
  border-radius: 50%;
}
@keyframes itemIn {
  from { transform: translateY(8px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.crate__tag {
  position: absolute;
  bottom: -18px; left: 50%; transform: translateX(-50%);
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--ink-2);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid var(--muted);
  border-radius: 999px;
  display: none;
}
.hero__scroll span {
  position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--muted); border-radius: 2px;
  animation: scrollDot 1.8s var(--t) infinite;
}
@keyframes scrollDot {
  0% { transform: translate(-50%, 0); opacity: 1; }
  60% { transform: translate(-50%, 14px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}
@media (min-width: 980px) { .hero__scroll { display: block; } }

/* -------- Marquee -------- */
.marquee {
  background: var(--green);
  color: var(--cream);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid var(--green-2);
  border-bottom: 1px solid var(--green-2);
}
.marquee__track {
  display: inline-flex; gap: 28px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: "Fraunces", serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.marquee__track span:nth-child(odd) { font-style: italic; }
.marquee__track span:nth-child(even) { opacity: 0.5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* -------- Sections shared -------- */
section { padding: clamp(72px, 9vw, 130px) 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 70px);
}
.section-head--left { text-align: left; margin-left: 0; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--ink-2); font-size: 1.05rem; }

/* -------- How it works -------- */
.how { background: var(--paper); }
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 320ms var(--t), box-shadow 320ms var(--t), border-color 320ms var(--t);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-soft);
}
.step__num {
  font-family: "Fraunces", serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--green);
  line-height: 1; margin-bottom: 18px;
  display: inline-flex;
  align-items: center; gap: 12px;
}
.step__num::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
  display: block; width: 60px;
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 0.96rem; }
.step__art {
  position: absolute;
  right: -10px; bottom: -10px;
  width: 90px; height: 90px;
  opacity: 0.6;
  display: flex; align-items: center; justify-content: center;
}
.check {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green-soft); margin: 0 3px;
  animation: blink 1.6s var(--t) infinite;
}
.check:nth-child(2) { animation-delay: 0.2s; background: var(--moss); }
.check:nth-child(3) { animation-delay: 0.4s; background: var(--green); }
@keyframes blink {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}
.cal {
  width: 60px; height: 60px;
  border: 2px solid var(--moss);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 4px;
  gap: 3px;
}
.cal span {
  background: var(--green-soft); border-radius: 2px;
}
.cal span:nth-child(3) { background: var(--green); }
.door {
  width: 56px; height: 70px;
  border: 2px solid var(--moss);
  border-radius: 4px 4px 0 0;
  position: relative;
}
.door::after {
  content: ""; position: absolute;
  right: 8px; top: 36px;
  width: 4px; height: 4px; border-radius: 50%; background: var(--moss);
}
.door__pkg {
  position: absolute;
  bottom: 6px; left: 8px;
  width: 18px; height: 16px;
  background: var(--wheat);
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}

/* -------- Crates cards -------- */
.crates__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  display: flex; flex-direction: column; gap: 20px;
  transition: transform 320ms var(--t), box-shadow 320ms var(--t), border-color 320ms var(--t);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card--curated {
  background: linear-gradient(180deg, #f0e8d6 0%, var(--paper) 60%);
  border-color: var(--wheat);
}
.card__pill {
  position: absolute; top: -12px; left: 36px;
  background: var(--green); color: var(--cream);
  padding: 6px 14px; border-radius: 999px;
  font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.card__lede { font-size: 1rem; color: var(--ink-2); }
.card__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.card__list li {
  padding-left: 26px;
  position: relative;
  color: var(--ink-2);
  font-size: 0.95rem;
}
.card__list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 14px; height: 14px;
  border-radius: 50%; background: var(--green-soft);
  box-shadow: inset 0 0 0 4px var(--green);
}
.card__foot {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.price { color: var(--muted); font-size: 0.92rem; }
.price strong {
  font-family: "Fraunces", serif;
  font-size: 1.4rem; color: var(--ink);
  font-weight: 600; margin: 0 2px;
}

/* -------- Values -------- */
.values { background: var(--paper); }
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 320ms var(--t), box-shadow 320ms var(--t);
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
}
.value__icon svg { width: 28px; height: 28px; }

/* -------- Carousel -------- */
.carousel { position: relative; }
.carousel__viewport { overflow: hidden; }
.carousel__track {
  list-style: none; margin: 0; padding: 0;
  display: flex;
  transition: transform 600ms var(--t);
}
.quote {
  flex: 0 0 100%;
  padding: 6px;
  display: flex;
}
.quote p {
  font-family: "Fraunces", serif;
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  line-height: 1.35;
  color: var(--ink);
  background: var(--paper);
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  flex: 1;
  position: relative;
}
.quote p::before {
  content: "“";
  position: absolute;
  top: 14px; left: 22px;
  font-size: 4rem;
  color: var(--green-soft);
  line-height: 1;
  font-family: "Fraunces", serif;
}
.quote footer {
  display: flex; flex-direction: column;
  margin-top: 22px;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  color: var(--ink-2);
}
.quote footer strong { color: var(--ink); }
.quote footer span { color: var(--muted); font-size: 0.85rem; margin-top: 2px; }

.carousel__nav {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 30px;
}
.carousel__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 220ms var(--t), color 220ms var(--t), transform 220ms var(--t), box-shadow 220ms var(--t);
}
.carousel__btn:hover { background: var(--green); color: var(--cream); border-color: var(--green); transform: translateY(-1px); }
.carousel__dots { display: inline-flex; gap: 8px; }
.carousel__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line); border: 0;
  transition: background 220ms var(--t), transform 220ms var(--t);
}
.carousel__dot.is-active { background: var(--green); transform: scale(1.3); }

/* -------- Sustainable living -------- */
.living {
  background: var(--green);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.living::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
  opacity: 0.6;
}
.living h2, .living .kicker { color: var(--cream); }
.living .kicker { color: var(--green-soft); }
.living p { color: rgba(247, 244, 236, 0.85); font-size: 1.05rem; max-width: 56ch; }
.living__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative; z-index: 1;
}
.living__copy { display: flex; flex-direction: column; gap: 22px; }
.living__stats {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.living__stats li {
  border-top: 1px solid rgba(247, 244, 236, 0.2);
  padding-top: 14px;
  display: flex; flex-direction: column;
}
.living__stats strong {
  font-family: "Fraunces", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--cream);
}
.living__stats span { color: rgba(247, 244, 236, 0.7); font-size: 0.82rem; margin-top: 4px; }

.living__art {
  position: relative;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.leaf {
  position: absolute;
  width: 50%; height: 50%;
  background: radial-gradient(ellipse at center, var(--moss) 0%, transparent 70%);
  border-radius: 50% 0 50% 0;
  filter: blur(6px);
  opacity: 0.7;
  animation: sway 8s ease-in-out infinite;
}
.leaf--b {
  top: 10%; right: 10%;
  background: radial-gradient(ellipse at center, var(--green-soft) 0%, transparent 70%);
  animation-delay: -2s;
}
.leaf--c {
  bottom: 8%; left: 8%;
  background: radial-gradient(ellipse at center, var(--wheat) 0%, transparent 70%);
  animation-delay: -4s;
  opacity: 0.5;
}
@keyframes sway {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(6px, -8px) rotate(8deg); }
}
.ripple {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px solid rgba(247, 244, 236, 0.25);
  box-shadow:
    inset 0 0 0 30px rgba(247, 244, 236, 0.02),
    0 0 0 30px rgba(247, 244, 236, 0.05);
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* -------- FAQ -------- */
.faq { background: var(--cream); }
.faq__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: flex-start;
}
.accordion { display: flex; flex-direction: column; gap: 12px; }
.acc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 220ms var(--t), box-shadow 220ms var(--t);
}
.acc[open] {
  border-color: var(--green-soft);
  box-shadow: var(--shadow-sm);
}
.acc summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: "Fraunces", serif;
  font-size: 1.08rem;
  color: var(--ink);
  font-weight: 600;
}
.acc summary::-webkit-details-marker { display: none; }
.acc__icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.acc__icon::before, .acc__icon::after {
  content: ""; position: absolute;
  background: var(--green); border-radius: 1px;
  transition: transform 280ms var(--t);
}
.acc__icon::before { left: 0; right: 0; top: 50%; height: 2px; transform: translateY(-50%); }
.acc__icon::after { top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%); }
.acc[open] .acc__icon::after { transform: translateX(-50%) scaleY(0); }
.acc__body { padding: 0 28px 22px; }
.acc__body p { color: var(--ink-2); }

/* -------- CTA -------- */
.cta {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.cta__inner {
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 18px; align-items: center;
}
.cta__inner h2 { font-size: clamp(2rem, 4vw, 3rem); }
.cta__form {
  width: 100%; max-width: 480px;
  display: flex; gap: 10px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
  margin-top: 14px;
  flex-wrap: wrap;
  align-items: center;
  transition: border-color 220ms var(--t), box-shadow 220ms var(--t);
}
.cta__form:focus-within { border-color: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }
.cta__form input {
  flex: 1; min-width: 0;
  border: 0; outline: 0; background: transparent;
  font: inherit; color: var(--ink);
  padding: 12px 0;
  font-size: 1rem;
}
.cta__form input::placeholder { color: var(--muted); }
.cta__note { font-size: 0.85rem; color: var(--muted); margin-top: 6px; width: 100%; }
.cta__note.is-ok { color: var(--green); }
.cta__note.is-err { color: var(--terracotta); }

/* -------- Footer -------- */
.footer {
  background: var(--ink);
  color: rgba(247, 244, 236, 0.78);
  padding: 70px 0 30px;
}
.footer h4 { color: var(--cream); margin-bottom: 16px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer__brand .brand { color: var(--cream); }
.footer__brand .brand__sub { color: rgba(247, 244, 236, 0.5); }
.footer__tag {
  margin-top: 16px;
  color: rgba(247, 244, 236, 0.6);
  font-size: 0.92rem;
  max-width: 36ch;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 0.94rem; }
.footer__col a { color: rgba(247, 244, 236, 0.78); }
.footer__col a:hover { color: var(--cream); }
.footer__small { font-size: 0.86rem; color: rgba(247, 244, 236, 0.55); margin-bottom: 12px; }
.footer__form {
  display: flex;
  background: rgba(247, 244, 236, 0.08);
  border: 1px solid rgba(247, 244, 236, 0.18);
  border-radius: 999px;
  padding: 4px 4px 4px 14px;
  transition: border-color 220ms var(--t);
}
.footer__form:focus-within { border-color: var(--green-soft); }
.footer__form input {
  flex: 1; min-width: 0;
  border: 0; outline: 0; background: transparent;
  color: var(--cream);
  padding: 10px 0;
  font: inherit;
}
.footer__form input::placeholder { color: rgba(247, 244, 236, 0.45); }
.footer__form button {
  background: var(--green);
  color: var(--cream);
  border: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 220ms var(--t);
}
.footer__form button:hover { background: var(--moss); color: var(--ink); }
.footer__base {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(247, 244, 236, 0.12);
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 0.82rem;
  color: rgba(247, 244, 236, 0.5);
  flex-wrap: wrap;
}

/* -------- Reveal animations -------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--t), transform 700ms var(--t);
}
.reveal.is-in {
  opacity: 1; transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* -------- Responsive -------- */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { max-width: 380px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr; }
  .crates__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .living__inner { grid-template-columns: 1fr; }
  .living__art { max-width: 280px; margin: 0 auto; }
  .faq__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: inline-flex; align-items: center; justify-content: center; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1; }
  .card { padding: 32px 26px; }
  .card__pill { left: 26px; }
  .cta__form { border-radius: 18px; padding: 10px; flex-direction: column; }
  .cta__form input { padding: 10px 14px; }
  .cta__form .btn { width: 100%; }
}
