:root {
  --cream: #faf6f1;
  --cream-2: #f3ebe3;
  --ink: #2f2a27;
  --muted: #6e645c;
  --coral: #d9785f;
  --coral-dark: #c45f45;
  --line: #e6ddd3;
  --blush: #e8b4b0;
  --sage: #9aaa8e;
  --terra: #c47a5a;
  --natural: #d8c3a5;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}
a { color: inherit; }
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1rem 6vw; border-bottom: 1px solid var(--line);
  background: rgba(250,246,241,.92); position: sticky; top: 0; backdrop-filter: blur(8px); z-index: 10;
}
.logo { font-family: var(--serif); font-size: 1.35rem; text-decoration: none; font-weight: 600; }
.logo span { color: var(--muted); font-size: .85rem; margin-left: .15rem; }
nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
nav a, .cart, .text-link { text-decoration: none; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.cart { white-space: nowrap; }
.hero {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: center;
  padding: 3.5rem 6vw 3rem;
}
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; color: var(--coral); margin: 0 0 .75rem; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin: 0 0 1rem; }
.lede { font-size: 1.1rem; color: var(--muted); max-width: 34rem; }
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin: 1.5rem 0 1rem; }
.btn {
  display: inline-block; text-decoration: none; border-radius: 999px; padding: .85rem 1.35rem;
  font-size: .95rem; border: 1px solid transparent;
}
.btn.primary { background: var(--coral); color: #fff; }
.btn.primary:hover { background: var(--coral-dark); }
.btn.ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn.secondary { width: 100%; text-align: center; border-color: var(--line); background: #fff; border-radius: 10px; }
.trust-inline { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; color: var(--muted); font-size: .9rem; }
.trust-inline li::before { content: "• "; color: var(--coral); }
.hero-visual {
  min-height: 320px; border-radius: 24px; background: linear-gradient(160deg, #fff, var(--cream-2));
  border: 1px solid var(--line); display: flex; align-items: end; justify-content: center; gap: 1rem; padding: 2rem;
  position: relative; overflow: hidden;
}
.cave { width: 110px; height: 100px; border-radius: 55% 55% 40% 40%; position: relative; box-shadow: 0 12px 30px rgba(47,42,39,.12); }
.cave::after {
  content: ""; position: absolute; left: 50%; bottom: 18%; transform: translateX(-50%);
  width: 42px; height: 42px; border-radius: 50%; background: rgba(47,42,39,.18);
}
.c1 { background: var(--blush); }
.c2 { background: var(--sage); transform: translateY(-10px); }
.c3 { background: var(--terra); }
.cat-peek { position: absolute; left: 50%; top: 42%; transform: translateX(-50%); font-size: 1.4rem; z-index: 1; }
.trust-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 1.5rem;
  padding: 1rem 6vw; background: var(--cream-2); color: var(--muted); font-size: .9rem; border-block: 1px solid var(--line);
}
.products, .why, .story, .reviews, .how, .faq, .cta { padding: 3.5rem 6vw; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 1rem; margin-bottom: 1.75rem; }
.section-head h2, .why h2, .reviews h2, .how h2, .faq h2, .cta h2 { margin: 0 0 .35rem; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.section-head p, .section-intro { color: var(--muted); margin: 0; max-width: 36rem; }
.grid { display: grid; gap: 1.25rem; }
.products-grid { grid-template-columns: repeat(4, 1fr); }
.three { grid-template-columns: repeat(3, 1fr); margin-top: 1.5rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1rem 1rem 1.2rem;
  display: flex; flex-direction: column; gap: .35rem;
}
.swatch { height: 150px; border-radius: 14px; margin-bottom: .5rem; }
.swatch.blush { background: linear-gradient(160deg, #f3cfcb, var(--blush)); }
.swatch.sage { background: linear-gradient(160deg, #c5d0bc, var(--sage)); }
.swatch.terra { background: linear-gradient(160deg, #e0b29a, var(--terra)); }
.swatch.natural { background: linear-gradient(160deg, #efe3d1, var(--natural)); }
.card h3 { font-size: 1.05rem; margin: 0; }
.meta { color: var(--muted); font-size: .85rem; margin: 0; }
.price { font-size: 1.15rem; margin: .2rem 0; }
.price span { color: var(--muted); font-size: .85rem; }
.blurb { color: var(--muted); font-size: .92rem; flex: 1; }
.why article, .reviews blockquote {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.35rem;
}
.reviews blockquote { margin: 0; }
.reviews footer { color: var(--muted); font-size: .9rem; margin-top: .75rem; }
.story {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: stretch;
  background: #fff; border-block: 1px solid var(--line);
}
.story ul { padding-left: 1.1rem; color: var(--muted); }
.story-panel {
  border-radius: 20px; background:
    linear-gradient(160deg, rgba(217,120,95,.9), rgba(196,122,90,.75)),
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255,255,255,.06) 12px, rgba(255,255,255,.06) 24px);
  color: #fff; display: flex; align-items: end; padding: 1.5rem; min-height: 280px;
  font-family: var(--serif); font-size: 1.35rem;
}
.steps {
  list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.steps li {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.25rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.steps span { color: var(--muted); }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1rem 1.15rem; margin-bottom: .65rem;
}
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: var(--muted); margin: .65rem 0 0; }
.cta {
  text-align: center; background: linear-gradient(180deg, var(--cream-2), #f0e4da);
  border-top: 1px solid var(--line);
}
.cta p { color: var(--muted); margin: .5rem auto 1.25rem; }
.site-footer {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.5rem;
  padding: 2.5rem 6vw; background: #2f2a27; color: #f3ebe3;
}
.site-footer a { color: #f3ebe3; }
.site-footer h3 { font-size: .95rem; margin: 0 0 .5rem; font-family: var(--sans); text-transform: uppercase; letter-spacing: .06em; color: #cbbfb4; }
.site-footer p { margin: .25rem 0; color: #d7cdc3; }
@media (max-width: 960px) {
  .hero, .story, .products-grid, .three, .steps, .site-footer { grid-template-columns: 1fr; }
  nav { display: none; }
}


.hero-visual {
  min-height: 0;
  padding: 0;
  display: block;
  overflow: hidden;
}
.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.product-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: .5rem;
  background: var(--cream-2);
}
.story-panel {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 280px;
  background: #000;
}
.story-panel img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
}
.story-panel p {
  position: relative; z-index: 1;
  margin: 0;
  padding: 1.5rem;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: end;
}
