:root {
  --bg: #f6f1ea;
  --bg-alt: #efe6d8;
  --ink: #1c1a17;
  --ink-soft: #4a443c;
  --muted: #8a8378;
  --line: #d9cfbf;
  --accent: #b04a2f;
  --accent-deep: #8b3620;
  --copper: #c87b4a;
  --cream: #fffaf2;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.eyebrow { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent); font-weight: 600; margin: 0 0 1rem; }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: 1px solid transparent;
  transition: all 0.2s ease;
  font-family: inherit;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--accent-deep); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-block { width: 100%; justify-content: center; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 241, 234, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-mark {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  background: var(--ink); color: var(--cream);
  border-radius: 50%;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 0.85rem;
}
.brand-name {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: 1.15rem;
}
.nav { display: flex; gap: 2rem; }
.nav a { font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); }
.nav a:hover { color: var(--accent); }
.cart-btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: transparent; border: 1px solid var(--line);
  padding: 0.55rem 1rem; border-radius: 999px;
  cursor: pointer; color: var(--ink);
  font-family: inherit; font-weight: 500;
}
.cart-btn:hover { border-color: var(--ink); }
.cart-count {
  display: inline-grid; place-items: center;
  min-width: 22px; height: 22px; padding: 0 6px;
  background: var(--accent); color: var(--cream);
  border-radius: 999px; font-size: 0.72rem; font-weight: 700;
}

/* Hero */
.hero { padding: 5rem 0 4rem; }
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center;
}
.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 38ch; margin: 0 0 2rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-points {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 2rem; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 1.5rem;
  font-size: 0.9rem; color: var(--ink-soft);
}
.hero-points strong { color: var(--ink); font-weight: 600; }

/* Pan illustration */
.hero-visual { position: relative; min-height: 420px; }
.pan-stage {
  position: relative; width: 100%; height: 100%;
  display: grid; place-items: center;
}
.pan {
  position: relative;
  width: 340px; height: 340px;
  animation: drift 8s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-12px) rotate(-4deg); }
}
.pan-body {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #4a3a2e 0%, #2a201a 55%, #15100c 100%);
  box-shadow:
    inset 0 -10px 30px rgba(0,0,0,0.6),
    inset 0 10px 20px rgba(255,200,140,0.05),
    0 30px 50px rgba(0,0,0,0.25);
}
.pan-inner {
  position: absolute; inset: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #3a2c22 0%, #1a120d 70%);
  box-shadow: inset 0 6px 18px rgba(0,0,0,0.7);
}
.pan-shine {
  position: absolute; top: 12%; left: 18%;
  width: 35%; height: 18%;
  background: radial-gradient(ellipse at center, rgba(255,210,160,0.22), transparent 70%);
  border-radius: 50%;
  filter: blur(6px);
}
.pan-handle {
  position: absolute;
  top: 38%; right: -160px;
  width: 180px; height: 28px;
  background: linear-gradient(180deg, #2a201a 0%, #1a120d 50%, #2a201a 100%);
  border-radius: 6px 16px 16px 6px;
  transform: rotate(8deg);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
.pan-handle::after {
  content: ''; position: absolute;
  right: 14px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: #15100c;
}
.pan-shadow {
  position: absolute; bottom: 8%;
  width: 320px; height: 30px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.25), transparent 70%);
  filter: blur(8px);
}

/* Trust strip */
.strip {
  background: var(--ink); color: var(--cream);
  padding: 1.25rem 0;
}
.strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  align-items: center;
}
.strip-inner > div { display: flex; align-items: center; gap: 0.8rem; }
.strip-inner span { color: var(--copper); font-size: 1.1rem; }
.strip-inner p { margin: 0; color: var(--cream); font-size: 0.88rem; opacity: 0.85; }

/* Section heads */
.section-head { text-align: center; margin: 0 auto 2.5rem; max-width: 600px; }
.section-head p { color: var(--muted); margin: 0; }

/* Shop */
.shop { padding: 6rem 0; }
.filters {
  display: flex; gap: 0.5rem; justify-content: center;
  margin-bottom: 3rem; flex-wrap: wrap;
}
.filter {
  background: transparent; border: 1px solid var(--line);
  padding: 0.5rem 1.1rem; border-radius: 999px;
  font-family: inherit; font-size: 0.88rem; font-weight: 500;
  cursor: pointer; color: var(--ink-soft);
  transition: all 0.18s ease;
}
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--cream);
  border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid transparent;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(28, 26, 23, 0.08);
  border-color: var(--line);
}
.card-img {
  aspect-ratio: 1;
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.card-img svg { width: 75%; height: 75%; }
.badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--ink); color: var(--cream);
  font-size: 0.7rem; font-weight: 600;
  padding: 0.3rem 0.7rem; border-radius: 999px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.badge.new { background: var(--accent); }
.card-body { padding: 1.25rem 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-title { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; margin: 0 0 0.25rem; }
.card-sub { font-size: 0.85rem; color: var(--muted); margin: 0 0 1rem; }
.card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.price { font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.add-btn {
  background: var(--ink); color: var(--cream);
  border: none; padding: 0.55rem 1rem; border-radius: 999px;
  font-family: inherit; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: background 0.18s ease;
}
.add-btn:hover { background: var(--accent-deep); }

/* Story */
.story { padding: 6rem 0; background: var(--bg-alt); }
.story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.story-image { aspect-ratio: 4 / 5; position: relative; }
.story-frame {
  position: absolute; inset: 0;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,200,140,0.15), transparent 60%),
    linear-gradient(135deg, #3a2c22 0%, #1a120d 60%, #2a201a 100%);
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
  overflow: hidden;
}
.story-frame::before {
  content: ''; position: absolute;
  top: 20%; left: 25%; width: 50%; height: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 123, 74, 0.4), transparent 70%);
  filter: blur(20px);
}
.story-frame::after {
  content: '~ 1947 ~'; position: absolute;
  bottom: 24px; left: 0; right: 0;
  text-align: center;
  font-family: 'Fraunces', serif; color: rgba(255, 250, 242, 0.5);
  letter-spacing: 0.3em; font-size: 0.85rem;
}
.link-arrow { font-weight: 600; color: var(--accent); border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.link-arrow:hover { color: var(--accent-deep); }

/* Care */
.care { padding: 6rem 0; }
.care-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.care-grid article {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--ink);
}
.care-grid .num {
  font-family: 'Fraunces', serif; font-size: 0.9rem;
  color: var(--accent); font-weight: 600;
  display: block; margin-bottom: 1rem;
}
.care-grid h3 { margin: 0 0 0.5rem; }
.care-grid p { margin: 0; font-size: 0.92rem; }

/* Newsletter */
.newsletter { padding: 5rem 0; background: var(--ink); color: var(--cream); }
.newsletter h2 { color: var(--cream); }
.newsletter p { color: rgba(255, 250, 242, 0.7); margin: 0; }
.newsletter-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.news-form { display: flex; gap: 0.5rem; }
.news-form input {
  flex: 1; padding: 0.85rem 1.2rem;
  border-radius: 999px; border: 1px solid rgba(255,250,242,0.2);
  background: rgba(255,250,242,0.05); color: var(--cream);
  font-family: inherit; font-size: 0.95rem;
}
.news-form input::placeholder { color: rgba(255,250,242,0.4); }
.news-form input:focus { outline: none; border-color: var(--copper); }
.news-form .btn-primary { background: var(--copper); color: var(--ink); }
.news-form .btn-primary:hover { background: var(--cream); }

/* Footer */
.site-footer { background: var(--bg-alt); padding: 4rem 0 2rem; }
.footer-inner {
  display: grid; grid-template-columns: 1fr 2fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-cols h4 {
  font-family: 'Inter', sans-serif; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--muted); margin: 0 0 1rem; font-weight: 600;
}
.footer-cols a {
  display: block; font-size: 0.9rem; color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.fineprint {
  display: flex; justify-content: space-between;
  padding-top: 2rem; border-top: 1px solid var(--line);
  font-size: 0.82rem; color: var(--muted);
}
.fineprint p { margin: 0; }
.fineprint a { margin: 0 0.25rem; }

/* Cart drawer */
.cart-drawer {
  position: fixed; top: 0; right: 0;
  width: 100%; max-width: 420px; height: 100%;
  background: var(--cream); z-index: 100;
  transform: translateX(100%); transition: transform 0.3s ease;
  display: flex; flex-direction: column;
  box-shadow: -20px 0 50px rgba(0,0,0,0.1);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem; border-bottom: 1px solid var(--line);
}
.cart-head h3 { font-size: 1.3rem; margin: 0; }
.cart-close {
  background: transparent; border: none; font-size: 1.8rem;
  cursor: pointer; line-height: 1; color: var(--ink); padding: 0;
}
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty { text-align: center; color: var(--muted); padding: 3rem 1rem; }
.cart-row {
  display: grid; grid-template-columns: 60px 1fr auto; gap: 1rem; align-items: center;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.cart-row:last-child { border-bottom: none; }
.cart-thumb {
  width: 60px; height: 60px; border-radius: 8px;
  background: var(--bg-alt); display: grid; place-items: center;
}
.cart-thumb svg { width: 70%; height: 70%; }
.cart-info p { margin: 0; font-size: 0.92rem; }
.cart-info .name { font-weight: 600; color: var(--ink); }
.cart-info .qty-row { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.4rem; }
.qty-btn {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent;
  cursor: pointer; font-size: 0.9rem; line-height: 1;
  display: grid; place-items: center; color: var(--ink);
}
.qty-btn:hover { border-color: var(--ink); }
.cart-price { font-weight: 600; }
.cart-foot { padding: 1.5rem; border-top: 1px solid var(--line); }
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem; font-size: 1.05rem;
}
.cart-backdrop {
  position: fixed; inset: 0; background: rgba(28, 26, 23, 0.4);
  z-index: 90; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-backdrop.open { opacity: 1; pointer-events: auto; }

/* Toast */
.toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink); color: var(--cream);
  padding: 0.85rem 1.5rem; border-radius: 999px;
  font-size: 0.9rem; font-weight: 500;
  z-index: 200; transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* Responsive */
@media (max-width: 860px) {
  .nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { min-height: 320px; order: -1; }
  .pan { width: 240px; height: 240px; }
  .pan-handle { right: -120px; width: 140px; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .story-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-image { max-width: 380px; margin: 0 auto; width: 100%; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .fineprint { flex-direction: column; gap: 0.5rem; }
  .news-form { flex-direction: column; }
}
@media (max-width: 520px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .hero { padding: 3rem 0 2rem; }
  .shop, .story, .care { padding: 4rem 0; }
}
