:root {
  --bg: #FEF9F3;
  --bg-alt: #FDF3E8;
  --fg: #1A0E08;
  --fg-muted: #6B4C3B;
  --accent: #C4704F;
  --accent-green: #2D5016;
  --amber: #E8A838;
  --border: rgba(26,14,8,0.1);
  --card-shadow: 0 2px 16px rgba(26,14,8,0.08);
  --radius: 12px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

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

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.5px;
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.2px;
}

/* Hero */
.hero {
  padding: 80px 48px 100px;
  overflow: hidden;
}

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

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-search-bar {
  display: flex;
  align-items: center;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 14px 20px;
  max-width: 440px;
  margin-bottom: 20px;
  box-shadow: var(--card-shadow);
}

.search-icon { color: var(--fg-muted); margin-right: 12px; flex-shrink: 0; }

.search-input {
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--fg-muted);
  width: 100%;
  background: transparent;
  cursor: default;
}

.search-input::placeholder { color: #B8A090; }

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--bg-alt);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
}

/* Map Card */
.hero-illustration { display: flex; justify-content: center; }

.map-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 8px 40px rgba(26,14,8,0.12);
  border: 1px solid var(--border);
}

.map-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.map-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.map-dot-green { background: #22c55e; }

.map-result {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.map-result:last-child { border-bottom: none; }

.map-result-alt { background: #FFFBF5; margin: 0 -24px; padding: 14px 24px; border-radius: 0; border-bottom: 1px solid var(--border); }

.result-icon { flex-shrink: 0; }

.paw-circle {
  width: 48px;
  height: 48px;
  background: #FFF0E0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.paw-teal { background: #E6F4EE; color: var(--accent-green); }
.paw-amber { background: #FEF4DC; color: #C07B1A; }

.result-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 3px;
}

.result-meta {
  font-size: 12px;
  color: var(--fg-muted);
}

.score-badge {
  background: var(--accent-green);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
}

.score-alt { background: #6B8F5A; }
.score-amber { background: #C07B1A; }

/* Sections */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: -1px;
  margin-bottom: 56px;
}

/* How It Works */
.howitworks {
  padding: 100px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.howitworks .section-label { text-align: center; }

.steps {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.step-number {
  font-family: 'Fraunces', serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.step-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.step-connector { color: var(--border); }

/* Features */
.features {
  padding: 100px 48px;
}

.features .section-label { text-align: center; }
.features .section-headline { text-align: center; }

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

.feature-card {
  padding: 28px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s ease;
}

.feature-card:hover {
  box-shadow: 0 4px 24px rgba(26,14,8,0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}

.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Why SniffSpot */
.whynosniff {
  padding: 100px 48px;
  background: var(--fg);
  color: white;
}

.whynosniff-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.whynosniff .section-label { color: var(--amber); }
.whynosniff .section-label { text-transform: uppercase; font-size: 11px; font-weight: 700; letter-spacing: 2px; margin-bottom: 16px; }

.whynosniff-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  color: white;
}

.whynosniff-body {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 96px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -3px;
}

.stat-label {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Spread */
.spread {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}

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

.spread-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.spread-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 40px;
}

.cities-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.city-chip {
  padding: 10px 20px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}

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

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.footer-tagline {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .hero { padding: 60px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-illustration { order: -1; }
  .map-card { max-width: 100%; }
  .howitworks, .features, .whynosniff, .spread { padding: 70px 24px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .step-connector { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .whynosniff-inner { grid-template-columns: 1fr; gap: 40px; }
  .stat-number { font-size: 64px; }
}
