* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  background: #f7f4f1;
  color: #1b1b1b;
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(247, 244, 241, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e7e1dc;
  z-index: 10;
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-weight: 800;
  font-size: 20px;
  color: #912f1a;
}

.nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #3b2f2a;
  font-weight: 600;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn.primary {
  background: #b63a20;
  color: #fff;
}

.btn.secondary {
  background: #fff;
  color: #b63a20;
  border: 1px solid #e1b8ae;
}

.btn.ghost {
  background: transparent;
  color: #3b2f2a;
}

.btn.small {
  padding: 8px 16px;
  font-size: 14px;
}

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.eyebrow {
  color: #b63a20;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 12px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  margin: 12px 0 16px;
}

.subtitle {
  color: #4f433d;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stats h3 {
  font-size: 24px;
  color: #912f1a;
}

.region-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.region-btn {
  background: #f6e7e2;
  color: #3b2f2a;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.region-btn:hover {
  border-color: #b63a20;
}

.region-btn.active {
  background: #b63a20;
  color: #fff;
}

.hero-card {
  display: grid;
  gap: 20px;
}

.match-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 30px 60px rgba(145, 47, 26, 0.15);
}

.match-header {
  display: flex;
  justify-content: space-between;
  color: #7a645c;
  font-weight: 600;
  margin-bottom: 20px;
}

.pill {
  background: #f6e7e2;
  color: #b63a20;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.match-profile {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f2c9a1, #d88462);
}

.match-actions {
  display: flex;
  gap: 12px;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.city-list span {
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  border: 1px solid #efe5df;
}

.regions-overview {
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 60px 24px;
  background: linear-gradient(135deg, #faf5f0 0%, #f6e7e2 100%);
  border-radius: 32px;
}

.regions-overview h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 32px;
  text-align: center;
}

.regions-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.region-card {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid #efe5df;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.region-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #b63a20;
}

.region-card p {
  color: #6d5c55;
  margin-bottom: 16px;
  line-height: 1.5;
}

.region-count {
  display: inline-block;
  background: #f6e7e2;
  color: #b63a20;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
}

.section {
  max-width: 1100px;
  margin: 16px auto;
  padding: 60px 24px;
}

.section h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 32px;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #efe5df;
}

.card.testimonial {
  font-style: italic;
}

.accent {
  background: #fff;
  border-radius: 32px;
  margin: 0 auto 40px;
}

.split {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 12px;
}

.checklist li::before {
  content: "✓";
  color: #b63a20;
  margin-right: 8px;
  font-weight: 700;
}

.stats-card {
  background: #f6e7e2;
  padding: 28px;
  border-radius: 24px;
}

.stats-card h3 {
  font-size: 36px;
  color: #912f1a;
}

.cta {
  max-width: 1100px;
  margin: 40px auto 80px;
  padding: 40px 24px;
  background: #b63a20;
  color: #fff;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 48px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: #6d5c55;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer a {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 860px) {
  .nav-actions {
    display: none;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .region-selector {
    justify-content: center;
  }
}