/* ── Base ── */
:root {
  --bg: #faf8f2;
  --bg-alt: #f2ede4;
  --fg: #1a1a18;
  --fg-muted: #6b6b5e;
  --accent: #f5a623;
  --accent-dark: #c8860e;
  --green: #1a3a2a;
  --green-light: #2d5c42;
  --border: #e0dbd0;
  --card-bg: #ffffff;
}

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

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 400;
}

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--green);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 28px;
}

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

.nav-links a:hover { color: var(--fg); }

/* ── Hero ── */
.hero {
  padding: 80px 24px 64px;
  max-width: 1120px;
  margin: 0 auto;
}

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

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green);
  margin-bottom: 20px;
  max-width: 520px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.7;
}

.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(26, 58, 42, 0.07);
  position: relative;
}

.hero-card-label {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.hero-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 10px;
  line-height: 1.3;
}

.hero-card-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-card-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
}

.hero-card-rating {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(245, 166, 35, 0.12);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ── Section Header ── */
.section-header {
  margin-bottom: 40px;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--green);
}

/* ── Showcase ── */
.showcase {
  padding: 64px 24px;
  background: var(--bg-alt);
}

.showcase .section-header,
.niches .section-header {
  max-width: 1120px;
  margin: 0 auto 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.product-card:hover {
  box-shadow: 0 8px 32px rgba(26, 58, 42, 0.1);
  transform: translateY(-2px);
}

.product-img-placeholder {
  background: var(--bg-alt);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
}

.product-img-placeholder svg {
  width: 80px;
  height: 80px;
}

.product-info {
  padding: 20px;
}

.product-name {
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem;
  color: var(--green);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.product-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}

.product-was {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: line-through;
}

.product-rating {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(245, 166, 35, 0.12);
  padding: 3px 8px;
  border-radius: 20px;
}

/* ── Trust ── */
.trust {
  padding: 64px 24px;
  max-width: 1120px;
  margin: 0 auto;
}

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

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.trust-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--green);
}

.trust-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── Niches ── */
.niches {
  padding: 64px 24px;
  background: var(--bg-alt);
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.niche-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: box-shadow 0.2s;
}

.niche-card:hover {
  box-shadow: 0 4px 20px rgba(26, 58, 42, 0.08);
}

.niche-icon { margin-bottom: 12px; }

.niche-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 8px;
}

.niche-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.niche-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.niche-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--fg-muted);
}

/* ── Closing ── */
.closing {
  padding: 80px 24px;
  background: var(--green);
}

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

.closing-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--bg);
  margin-bottom: 16px;
}

.closing-sub {
  font-size: 1rem;
  color: rgba(250, 248, 242, 0.7);
  line-height: 1.7;
}

/* ── Footer ── */
.footer {
  padding: 40px 24px 32px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--green);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--fg); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 8px;
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .niche-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero { padding: 48px 20px 40px; }
  .showcase, .niches { padding: 48px 20px; }
  .trust { padding: 48px 20px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .niche-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 16px; }
  .closing { padding: 60px 20px; }
}