:root {
  --bg: #FDF6EC;
  --bg-alt: #F5EDE0;
  --fg: #1C1713;
  --fg-muted: #6B5E52;
  --accent: #C4521A;
  --accent-dark: #A03E10;
  --sage: #7A8C6B;
  --border: #E2D8CA;
  --card-bg: #FFFFFF;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  padding: 80px 40px 0;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 80px;
}

.hero-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 420px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 64px rgba(28, 23, 19, 0.18);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-stripe {
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--sage) 60%, var(--accent) 100%);
}

/* DIFFERENCE */
.difference {
  padding: 96px 40px;
  background: var(--bg-alt);
}

.difference-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.section-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.difference h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  max-width: 620px;
  margin-bottom: 56px;
  color: var(--fg);
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.diff-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
}

.diff-icon {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.diff-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.diff-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* PRODUCTS */
.products {
  padding: 96px 40px;
}

.products-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.product-row--peppers .product-text {
  order: 1;
}

.product-row--peppers .product-visual {
  order: 2;
}

.product-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(28, 23, 19, 0.12);
  display: block;
}

.product-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent);
  color: white;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.product-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
}

.product-text > p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-points li {
  font-size: 0.9rem;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}

.product-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--accent);
}

/* CLOSING */
.closing {
  padding: 96px 40px;
  background: var(--fg);
  color: var(--bg);
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.closing blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--bg);
  margin-bottom: 20px;
}

.closing-byline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 48px;
}

.closing-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 40px;
}

.closing h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  margin-bottom: 12px;
}

.closing-sub {
  font-size: 0.95rem;
  color: #B8AFA4;
}

/* FOOTER */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  display: block;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.footer-links {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    padding: 48px 24px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-lede {
    max-width: 100%;
  }

  .difference {
    padding: 64px 24px;
  }

  .difference-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .products {
    padding: 64px 24px;
  }

  .products-inner {
    gap: 64px;
  }

  .product-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-row--peppers .product-text,
  .product-row--peppers .product-visual {
    order: unset;
  }

  .closing {
    padding: 64px 24px;
  }

  .footer {
    padding: 32px 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 375px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-badges {
    flex-direction: column;
  }
}

/* STOREFRONT */
.store-header {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}

.store-header-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.store-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--fg);
  text-decoration: none;
}

.store-nav {
  display: flex;
  gap: 32px;
}

.store-nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.store-nav-link:hover,
.store-nav-link--active {
  color: var(--fg);
}

.store-nav-link--active {
  border-bottom: 2px solid var(--accent);
}

.store-hero {
  padding: 72px 40px 64px;
  background: var(--bg);
}

.store-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.store-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--fg);
  margin: 16px 0 20px;
}

.store-hero-lede {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

.store-grid-section {
  padding: 64px 40px 96px;
  background: var(--bg-alt);
}

.store-grid-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.store-empty {
  text-align: center;
  padding: 64px;
  color: var(--fg-muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
}

.product-card:hover {
  box-shadow: 0 12px 40px rgba(28, 23, 19, 0.12);
}

.product-card-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-image {
  transform: scale(1.03);
}

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card-badge--pepper {
  background: var(--sage);
}

.product-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 10px;
  line-height: 1.25;
}

.product-card-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 24px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-card-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--fg);
}

.btn-buy {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 3px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-buy:hover {
  background: var(--accent-dark);
}

/* Trust bar */
.trust-bar {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 40px;
}

.trust-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--fg-muted);
}

.trust-icon {
  font-size: 1.2rem;
}

/* Storefront responsive */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .store-header {
    padding: 0 24px;
  }

  .store-hero {
    padding: 48px 24px 40px;
  }

  .store-grid-section {
    padding: 48px 24px 64px;
  }

  .trust-bar {
    padding: 24px;
  }

  .trust-bar-inner {
    gap: 24px;
  }

  .trust-item {
    font-size: 0.8rem;
  }
}