:root {
  --bg: #fbf7ed;
  --paper: #fffdf7;
  --ink: #242015;
  --muted: #6e6654;
  --brand: #7f5b18;
  --brand-dark: #5d3f0b;
  --accent: #d6a82d;
  --green: #627a33;
  --line: rgba(36, 32, 21, 0.12);
  --shadow: 0 24px 70px rgba(50, 37, 10, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(214,168,45,.28), transparent 28rem),
    radial-gradient(circle at 90% 0%, rgba(98,122,51,.18), transparent 26rem),
    var(--bg);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 237, 0.78);
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: center; gap: .7rem; font-weight: 800; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}

nav { display: flex; gap: clamp(.8rem, 2vw, 2rem); color: var(--muted); font-weight: 700; }
nav a:hover { color: var(--brand); }
.cart-button {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: .7rem 1rem;
  font-weight: 800;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem) 3rem;
}

.hero-copy h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: .94;
  margin: 0;
}
.hero-copy h1 { font-size: clamp(3rem, 8vw, 6.8rem); max-width: 10ch; }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
.lead { font-size: clamp(1.05rem, 2vw, 1.35rem); line-height: 1.65; color: var(--muted); max-width: 43rem; }
.eyebrow { color: var(--green); font-weight: 800; letter-spacing: .13em; text-transform: uppercase; font-size: .78rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 2rem 0; }
.button {
  border: 0;
  border-radius: 999px;
  padding: .95rem 1.25rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.primary { background: var(--brand); color: white; box-shadow: 0 12px 30px rgba(127, 91, 24, .28); }
.primary:hover { background: var(--brand-dark); }
.ghost { background: rgba(255,255,255,.55); border: 1px solid var(--line); }
.full { width: 100%; }

.trust-list { display: flex; flex-wrap: wrap; gap: .7rem; padding: 0; margin: 0; list-style: none; }
.trust-list li { background: rgba(255,255,255,.55); border: 1px solid var(--line); border-radius: 999px; padding: .55rem .8rem; color: var(--muted); font-weight: 700; }

.hero-card { position: relative; border-radius: 2rem; overflow: hidden; box-shadow: var(--shadow); transform: rotate(1.5deg); }
.hero-card img { aspect-ratio: 4 / 3; object-fit: cover; }
.floating-badge { position: absolute; right: 1rem; bottom: 1rem; background: rgba(36,32,21,.84); color: white; border-radius: 999px; padding: .65rem .9rem; font-weight: 800; }

.section { padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 4rem); }
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: end; }
.intro > p { color: var(--muted); font-size: 1.15rem; line-height: 1.7; margin: 0; }
.section-heading { margin-bottom: 1.6rem; }

.products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.product-card { background: rgba(255,253,247,.82); border: 1px solid var(--line); border-radius: 1.5rem; padding: 1.1rem; box-shadow: 0 12px 40px rgba(50,37,10,.08); display: grid; gap: .9rem; }
.product-card img { border-radius: 1rem; aspect-ratio: 4 / 3; object-fit: cover; }
.product-card h3 { margin: 0; font-size: 1.25rem; }
.product-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.price { font-size: 1.4rem; font-weight: 900; color: var(--brand-dark); }
.pill { color: var(--green); background: rgba(98,122,51,.12); padding: .35rem .6rem; border-radius: 999px; font-weight: 800; font-size: .8rem; }

.process-section { margin: 0 clamp(1rem, 4vw, 4rem); display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--ink); color: white; border-radius: 2rem; overflow: hidden; box-shadow: var(--shadow); }
.process-section img { height: 100%; object-fit: cover; }
.process-copy { padding: clamp(2rem, 5vw, 4rem); }
.process-copy .eyebrow { color: var(--accent); }
ol { padding-left: 1.2rem; line-height: 1.85; color: rgba(255,255,255,.78); }
ol strong { color: white; }

.quote-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: center; padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 4rem); }
.quote-section img { border-radius: 2rem; box-shadow: var(--shadow); }
blockquote { font-family: "Playfair Display", Georgia, serif; font-size: clamp(2.2rem, 6vw, 5.2rem); line-height: .98; margin: 0; color: var(--brand-dark); }

.checkout { display: grid; grid-template-columns: 1fr minmax(280px, 420px); gap: 2rem; align-items: start; }
.checkout p { color: var(--muted); line-height: 1.65; }
.cart-panel { background: var(--paper); border: 1px solid var(--line); border-radius: 1.4rem; padding: 1rem; box-shadow: 0 14px 45px rgba(50,37,10,.10); }
.cart-items { display: grid; gap: .8rem; min-height: 4rem; }
.cart-items.empty { color: var(--muted); align-content: center; }
.cart-row { display: grid; grid-template-columns: 1fr auto; gap: .6rem; border-bottom: 1px solid var(--line); padding-bottom: .75rem; }
.cart-row small { color: var(--muted); }
.cart-total { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; font-size: 1.1rem; }
.note { min-height: 1.4rem; font-weight: 700; color: var(--green) !important; }

footer { padding: 2rem clamp(1rem, 4vw, 4rem); border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: .7rem 1.5rem; justify-content: space-between; color: var(--muted); }
footer strong { color: var(--ink); }

@media (max-width: 840px) {
  nav { display: none; }
  .hero, .intro, .products, .process-section, .quote-section, .checkout { grid-template-columns: 1fr; }
  .hero-copy h1 { max-width: none; }
  .process-section img { max-height: 360px; width: 100%; }
}

@media (max-width: 520px) {
  .topbar { padding-inline: .85rem; }
  .brand span:last-child { display: none; }
  .hero { padding-top: 2rem; }
  .hero-card { transform: none; border-radius: 1.25rem; }
}
