:root {
  --bg: #FAF8F5;
  --bg-alt: #F0EDE8;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --accent: #D4621A;
  --accent-warm: #F5E6D3;
  --ink: #2C2925;
  --border: #E0DBD4;
  --white: #FFFFFF;
}

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

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

/* ── NAV ── */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.4rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-link {
  text-decoration: none;
  color: inherit;
}
.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links .nav-link {
  color: var(--fg-muted);
  transition: color 0.15s;
}
.nav-links .nav-link:hover {
  color: var(--accent);
}

/* ── HERO ── */
.hero {
  padding: 80px 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.08;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.65;
}
.hero-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}
.hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* ── SHARED SECTION STYLES ── */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

/* ── FINDERS ── */
.finders {
  padding: 80px 40px;
  background: var(--bg-alt);
}
.finders-header {
  max-width: 1100px;
  margin: 0 auto 52px;
}
.finders-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.finder-card {
  background: var(--bg);
  padding: 36px 32px;
  border: 1px solid var(--border);
}
.finder-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.finder-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.3rem;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.finder-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── HOW ── */
.how {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.how-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 400;
  min-width: 28px;
  padding-top: 4px;
}
.step h4 {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 4px;
}
.step p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.55;
}
.stat-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.stat-block:last-child { border-bottom: none; }
.stat-num {
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.6rem;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ── CATEGORIES ── */
.categories {
  padding: 80px 40px;
  background: var(--bg-alt);
}
.categories-header {
  max-width: 1100px;
  margin: 0 auto 48px;
}
.categories-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 500px;
  margin-top: 12px;
}
.cat-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.cat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cat-img-placeholder {
  height: 180px;
  background: var(--bg-alt);
  overflow: hidden;
}
.cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-img-gaming {
  background: linear-gradient(135deg, #2C2925 0%, #4A453F 100%);
}
.cat-img-furniture {
  background: linear-gradient(135deg, #8B7355 0%, #C4A882 100%);
}
.cat-img-vintage {
  background: linear-gradient(135deg, #C4A882 0%, #E8D5B7 100%);
}
.cat-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cat-body h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.cat-meta {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 16px;
}
.cat-metrics {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.cat-margin {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}
.cat-sell {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* ── EDGE ── */
.edge {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.edge-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.edge-mark {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 5rem;
  color: var(--accent);
  line-height: 0.8;
  margin-bottom: 16px;
}
blockquote {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.edge-attribution {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-style: italic;
}
.edge-breakdown {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}
.edge-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.edge-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-warm);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.edge-item p {
  font-size: 0.92rem;
  color: var(--fg);
  line-height: 1.5;
}

/* ── CLOSING ── */
.closing {
  padding: 80px 40px 100px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto 20px;
  line-height: 1.65;
}
.closing-vision {
  font-size: 0.9rem;
  color: var(--fg-muted);
  max-width: 460px;
  margin: 0 auto;
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: inline-block;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--fg);
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-image-wrap { order: -1; }
  .hero-img { height: 240px; }
  .finders-grid { grid-template-columns: 1fr; }
  .how-inner { grid-template-columns: 1fr; gap: 48px; }
  .cat-grid { grid-template-columns: 1fr; }
  .edge-inner { grid-template-columns: 1fr; gap: 40px; }
  .nav { padding: 16px 20px; }
  .hero, .finders, .how, .categories, .edge, .closing, .footer { padding-left: 20px; padding-right: 20px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}