:root {
  --cream: #f6ede1;
  --cream-soft: #efe1cd;
  --brown: #2e1f16;
  --brown-dim: #6b5545;
  --rust: #b5533c;
  --rust-dark: #93412e;
  --line: #e1d1b8;

  --font-display: "Fraunces", serif;
  --font-body: "Karla", ui-sans-serif, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--brown);
  font-family: var(--font-body);
  line-height: 1.6;
}

h1, h2, h3 { font-family: var(--font-display); margin: 0; font-weight: 600; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.demo-strip { display: block; text-align: center; background: var(--rust-dark); color: #fff; font-size: 13px; padding: 8px 12px; }
.demo-strip:hover { background: var(--rust); }

.header { position: sticky; top: 0; z-index: 50; background: rgba(246,237,225,0.9); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; height: 76px; gap: 32px; }
.logo { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a { font-size: 14px; color: var(--brown-dim); font-weight: 500; }
.nav a:hover { color: var(--rust); }
.cart-btn { font-size: 13px; font-weight: 600; border: 1px solid var(--brown); padding: 9px 16px; border-radius: 999px; }
.cart-btn:hover { background: var(--brown); color: var(--cream); }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 13px 26px; border-radius: 999px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all .2s ease; }
.btn-primary { background: var(--rust); color: #fff; }
.btn-primary:hover { background: var(--rust-dark); }
.btn-outline { background: transparent; border: 1px solid var(--brown); color: var(--brown); }
.btn-outline:hover { background: var(--brown); color: var(--cream); }
.btn-sm { padding: 8px 16px; font-size: 12px; }

.hero { position: relative; padding: 88px 0; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.eyebrow { display: block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rust); font-weight: 700; margin-bottom: 18px; }
.hero h1 { font-size: clamp(34px, 4.6vw, 54px); line-height: 1.1; font-style: italic; font-weight: 500; }
.hero-sub { display: block; margin: 24px 0 32px; color: var(--brown-dim); font-size: 17px; max-width: 460px; }

.hero-art { border-radius: 24px; overflow: hidden; aspect-ratio: 4 / 5; box-shadow: 0 30px 60px -24px rgba(46,31,22,0.35); }
.hero-photo { width: 100%; height: 100%; object-fit: cover; animation: kenburns 18s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1) translate(0,0); } to { transform: scale(1.12) translate(-1%, 1%); } }

.section { padding: 88px 0; }
.section-alt { background: var(--cream-soft); }
.section-head { margin-bottom: 48px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 10px; }
.section-head p { color: var(--brown-dim); font-size: 15px; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card { display: flex; flex-direction: column; }
.product-visual { height: 220px; border-radius: 18px; display: flex; align-items: flex-end; padding: 16px; position: relative; margin-bottom: 18px; overflow: hidden; }
.product-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-visual img { transform: scale(1.06); }
.product-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.45), transparent 55%); }
.product-tag { position: relative; z-index: 2; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; background: rgba(255,255,255,0.9); color: var(--brown); padding: 6px 12px; border-radius: 999px; }
.product-card h3 { font-size: 20px; margin-bottom: 6px; }
.product-notes { font-size: 13px; color: var(--brown-dim); margin-bottom: 18px; }
.product-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.product-price { font-weight: 600; font-size: 14px; }

.story-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.story-visual { height: 340px; border-radius: 20px; overflow: hidden; }
.story-visual img { width: 100%; height: 100%; object-fit: cover; }
.story-text p { color: var(--brown-dim); font-size: 15px; margin-top: 16px; }
.story-text h2 { font-size: clamp(26px, 3.2vw, 34px); margin-top: 12px; }

.subscribe-inner { text-align: center; max-width: 520px; margin: 0 auto; }
.subscribe-inner h2 { font-size: clamp(28px, 3.4vw, 38px); }
.subscribe-inner p { display: block; color: var(--brown-dim); margin: 14px 0 32px; }
.subscribe-form { display: flex; gap: 10px; }
.subscribe-form input { flex: 1; padding: 13px 18px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-family: var(--font-body); font-size: 14px; }
.subscribe-form input:focus { outline: 2px solid var(--rust); }

.footer { border-top: 1px solid var(--line); padding: 36px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-disclaimer { font-size: 13px; color: var(--brown-dim); }
.footer-disclaimer a { color: var(--rust); font-weight: 700; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-art { aspect-ratio: 16 / 10; order: -1; }
  .product-grid { grid-template-columns: 1fr; }
  .story-inner { grid-template-columns: 1fr; }
  .story-visual { height: 220px; }
}
@media (max-width: 600px) {
  .nav { display: none; }
  .subscribe-form { flex-direction: column; }
}
