:root {
  --cream: #fbf7f0;
  --paper: #ffffff;
  --ink: #1f2a44;
  --ink-soft: #55607a;
  --line: #e9e2d6;
  --coral: #e8735a;
  --coral-dark: #cf5c44;
  --sage: #9db8a0;
  --butter: #f2c94c;
  --sky: #8fb8de;
  --blush: #f3b7b0;
  --radius: 22px;
  --shadow: 0 10px 30px rgba(31, 42, 68, .08);
  --display: "Fraunces", Georgia, serif;
  --body: "DM Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--ink); font-family: var(--body); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, 100% - 40px); margin-inline: auto; }

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; }
h1 { font-size: clamp(2.5rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: 1.3rem; }
.eyebrow { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--coral-dark); margin-bottom: 14px; }
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 560px; }
.section { padding: 100px 0; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head p { color: var(--ink-soft); margin-top: 14px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 28px; border-radius: 999px; font-weight: 700; font-size: 1rem; border: 2px solid transparent; cursor: pointer; transition: transform .15s, background .15s, color .15s; font-family: inherit; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: var(--coral-dark); }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }

/* Top bar & header */
.topbar { background: var(--ink); color: #dfe3ec; font-size: .85rem; text-align: center; padding: 9px 20px; }
.topbar strong { color: var(--butter); }
.header { position: sticky; top: 0; z-index: 50; background: rgba(251, 247, 240, .92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { font-family: var(--display); font-size: 1.7rem; font-weight: 700; letter-spacing: .02em; display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 38px; height: 38px; border-radius: 12px; background: var(--coral); display: grid; place-items: center; color: #fff; font-size: 1.2rem; transform: rotate(-6deg); }
.logo small { display: block; font-family: var(--body); font-size: .62rem; letter-spacing: .22em; font-weight: 700; color: var(--ink-soft); margin-top: -4px; }
.nav-links { display: flex; gap: 34px; list-style: none; font-weight: 500; }
.nav-links a { position: relative; padding: 6px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--coral); transition: width .2s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { padding: 11px 22px; font-size: .95rem; }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px auto; transition: .2s; }

/* Hero */
.hero { padding: 80px 0 100px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.hero h1 em { font-style: italic; color: var(--coral); }
.hero .lead { margin: 24px 0 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 52px; padding-top: 30px; border-top: 1px solid var(--line); }
.hero-stats b { display: block; font-family: var(--display); font-size: 2rem; }
.hero-stats span { font-size: .9rem; color: var(--ink-soft); }
.hero-art { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hero-art .tile { border-radius: var(--radius); aspect-ratio: 1; display: grid; place-items: center; padding: 16%; box-shadow: var(--shadow); }
.hero-art .tile:nth-child(1) { background: #fde3dc; color: var(--coral); transform: translateY(30px); }
.hero-art .tile:nth-child(2) { background: #e3eee4; color: #6f9a74; }
.hero-art .tile:nth-child(3) { background: #fdf1cc; color: #d9a91c; transform: translateY(30px); }
.hero-art .tile:nth-child(4) { background: #dfeaf6; color: #5e8fc0; }
.hero-art .tile svg { width: 100%; height: 100%; }
.badge-float { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -30%) rotate(-4deg); background: var(--ink); color: #fff; padding: 14px 22px; border-radius: 16px; font-weight: 700; font-size: .95rem; box-shadow: var(--shadow); white-space: nowrap; }
.badge-float span { color: var(--butter); }

/* Trust strip */
.strip { background: var(--paper); border-block: 1px solid var(--line); padding: 26px 0; }
.strip ul { display: flex; justify-content: center; gap: 14px 36px; list-style: none; flex-wrap: wrap; font-weight: 600; color: var(--ink-soft); }
.strip li { display: flex; align-items: center; gap: 10px; }
.strip li::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--sage); }

/* Categories */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cat-card { background: var(--paper); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); transition: transform .2s, box-shadow .2s; }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cat-art { aspect-ratio: 4/3; display: grid; place-items: center; padding: 12%; }
.cat-art svg { width: 62%; height: 100%; }
.cat-body { padding: 22px 24px 26px; }
.cat-body p { color: var(--ink-soft); font-size: .95rem; margin-top: 6px; }
.cat-meta { display: flex; justify-content: space-between; margin-top: 16px; font-size: .85rem; font-weight: 700; }
.cat-meta span:last-child { color: var(--coral-dark); }
.bg-coral { background: #fde3dc; color: var(--coral); }
.bg-sage { background: #e3eee4; color: #6f9a74; }
.bg-butter { background: #fdf1cc; color: #d9a91c; }
.bg-sky { background: #dfeaf6; color: #5e8fc0; }
.bg-blush { background: #fbe7ea; color: #d9848f; }
.bg-lilac { background: #ece6f6; color: #9580c2; }

/* Why us */
.why { background: var(--ink); color: #fff; border-radius: 40px; margin: 0 20px; }
.why .eyebrow { color: var(--butter); }
.why .section-head p { color: #b9c1d3; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius); padding: 30px 26px; }
.why-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 20px; }
.why-card p { color: #b9c1d3; font-size: .95rem; margin-top: 10px; }

/* Process */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 70px; }
.step::before { counter-increment: step; content: "0" counter(step); position: absolute; top: 0; left: 0; font-family: var(--display); font-size: 3rem; font-weight: 600; color: var(--coral); line-height: 1; }
.step::after { content: ""; position: absolute; top: 24px; left: 90px; right: 0; border-top: 2px dashed var(--line); }
.step:last-child::after { display: none; }
.step p { color: var(--ink-soft); font-size: .95rem; margin-top: 8px; }

/* Terms table */
.terms { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.terms-card { background: var(--paper); border-radius: var(--radius); border: 1px solid var(--line); padding: 10px 32px; box-shadow: var(--shadow); }
.terms-row { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.terms-row:last-child { border-bottom: 0; }
.terms-row span { color: var(--ink-soft); }
.terms-row b { text-align: right; }

/* CTA band */
.cta-band { background: var(--coral); color: #fff; border-radius: 36px; padding: 70px 60px; display: flex; justify-content: space-between; align-items: center; gap: 40px; position: relative; overflow: hidden; }
.cta-band::before, .cta-band::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255, 255, 255, .12); }
.cta-band::before { width: 280px; height: 280px; right: -60px; top: -120px; }
.cta-band::after { width: 160px; height: 160px; right: 220px; bottom: -90px; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band p { opacity: .9; margin-top: 10px; max-width: 520px; }

/* Page header */
.page-hero { padding: 80px 0 50px; }
.page-hero .lead { margin-top: 18px; }

/* Collections page */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.chip { padding: 10px 20px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--paper); font-weight: 600; font-size: .92rem; cursor: pointer; font-family: inherit; color: var(--ink); }
.chip.active, .chip:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.prod { background: var(--paper); border-radius: 18px; border: 1px solid var(--line); overflow: hidden; }
.prod .cat-art { aspect-ratio: 1; }
.prod-body { padding: 16px 18px 20px; }
.prod-body small { color: var(--ink-soft); font-weight: 600; letter-spacing: .06em; font-size: .75rem; }
.prod-body h3 { font-size: 1.08rem; margin: 4px 0 10px; }
.tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tags span { font-size: .75rem; background: var(--cream); padding: 4px 10px; border-radius: 999px; font-weight: 600; color: var(--ink-soft); }
.prod-link { display: inline-block; margin-top: 14px; font-weight: 700; font-size: .9rem; color: var(--coral-dark); }
.prod.hide { display: none; }

/* About split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-art { border-radius: 30px; aspect-ratio: 5/4; display: grid; place-items: center; }
.split-art svg { width: 45%; }
.check-list { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.check-list li { padding-left: 34px; position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; background: var(--sage); color: #fff; font-size: .75rem; display: grid; place-items: center; font-weight: 700; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; align-items: start; }
.info-card { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 40px 36px; }
.info-card h3 { margin-bottom: 24px; }
.info-item { padding: 16px 0; border-top: 1px solid rgba(255, 255, 255, .12); }
.info-item span { display: block; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--butter); font-weight: 700; margin-bottom: 4px; }
.form-card { background: var(--paper); border-radius: var(--radius); border: 1px solid var(--line); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--cream); font: inherit; font-size: 1rem; color: var(--ink); transition: border-color .15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--coral); background: #fff; }
.field textarea { min-height: 130px; resize: vertical; }
.checks { display: flex; flex-wrap: wrap; gap: 10px; }
.checks label { display: flex; align-items: center; gap: 8px; font-weight: 500; padding: 9px 14px; border: 1.5px solid var(--line); border-radius: 999px; cursor: pointer; font-size: .9rem; }
.checks input { accent-color: var(--coral); width: auto; }
.hp { position: absolute; left: -9999px; }
.form-note { font-size: .85rem; color: var(--ink-soft); margin-top: 14px; }
.alert { padding: 16px 20px; border-radius: 12px; margin-bottom: 22px; font-weight: 600; }
.alert.ok { background: #e3eee4; color: #36603c; }
.alert.err { background: #fde3dc; color: #a2412c; }

/* Footer */
.footer { background: var(--ink); color: #b9c1d3; padding: 70px 0 30px; margin-top: 100px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer .logo { color: #fff; }
.footer .logo small { color: #8d97ad; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 10px; font-size: .95rem; }
.footer a:hover { color: #fff; }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .1); display: flex; justify-content: space-between; font-size: .85rem; flex-wrap: wrap; gap: 10px; }

/* Reveal */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* Responsive */
@media (max-width: 1024px) {
  .why-grid, .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .step::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .nav.open .nav-links { display: flex; flex-direction: column; gap: 0; position: absolute; top: 76px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--line); padding: 10px 20px 20px; }
  .nav.open .nav-links a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .hero-grid, .terms, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 460px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 50px 30px; }
  .why { margin: 0 10px; border-radius: 28px; }
  .section { padding: 72px 0; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { width: calc(100% - 32px); }
  .cat-grid, .why-grid, .steps, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero-stats { gap: 24px; }
  .hero-stats b { font-size: 1.6rem; }
  .form-card, .info-card { padding: 28px 22px; }
  .terms-card { padding: 4px 20px; }
  .topbar { font-size: .78rem; }
}

/* Product photos */
.hero-art .tile.photo, .cat-art.photo { padding: 0; overflow: hidden; background: #f3ede3; }
.hero-art .tile.photo img, .cat-art.photo img { width: 100%; height: 100%; object-fit: cover; }
.prod .cat-art.photo { aspect-ratio: 4/5; }
.prod-body p { font-size: .88rem; color: var(--ink-soft); margin-bottom: 10px; }

/* Critique fixes */
:root { --coral: #c2553d; --coral-dark: #a8452f; }
.hero h1 em { color: #d4644b; }
.chip { min-height: 44px; }
.prod-body p { font-size: .92rem; }
.proof { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.proof div { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 16px; }
.proof b { display: block; font-family: var(--display); font-size: 2.2rem; color: var(--ink); }
.proof span { color: var(--ink-soft); font-size: .95rem; }
.wa-fab { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; background: #1f8f4e; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.2); transition: transform .15s; }
.wa-fab:hover { transform: scale(1.07); }
details.more { margin-bottom: 18px; border: 1.5px dashed var(--line); border-radius: 12px; padding: 14px 16px; }
details.more summary { cursor: pointer; font-weight: 600; color: var(--coral-dark); }
details.more[open] summary { margin-bottom: 16px; }
@media (max-width: 860px) { .proof { grid-template-columns: 1fr 1fr; } }
.section, [id] { scroll-margin-top: 80px; }

/* Policies */
.policy-toc { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.policy-toc a { padding: 10px 18px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--paper); font-weight: 600; font-size: .92rem; }
.policy-toc a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.policy { max-width: 820px; }
.policy article { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; margin-bottom: 24px; }
.policy h2 { font-size: 1.8rem; margin-bottom: 18px; }
.policy h3 { font-family: var(--body); font-size: 1.05rem; font-weight: 700; margin: 22px 0 8px; }
.policy p, .policy li { color: var(--ink-soft); }
.policy ul { padding-left: 20px; display: grid; gap: 8px; }
.policy a { color: var(--coral-dark); font-weight: 600; text-decoration: underline; }
.policy-note { color: var(--ink-soft); text-align: center; margin-top: 30px; }
@media (max-width: 560px) { .policy article { padding: 26px 20px; } }
