/* SoulTribe.com consumer site styles with logo */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: #f8f3ea;
  color: #141414;
}

a {
  text-decoration: none;
  color: inherit;
}

.sc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #141414;
  color: #f3e4d0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.sc-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sc-logo img {
  height: 40px;
  width: auto;
}

.sc-wordmark {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #2ab3a6;
  font-size: 0.95rem;
}

.sc-nav a {
  margin-left: 1rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.sc-nav a:hover {
  opacity: 1;
  color: #2ab3a6;
}

.sc-hero {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2rem;
  padding: 3rem 1.5rem;
}

.sc-hero-text h1 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.sc-hero-text p {
  max-width: 640px;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.sc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sc-hero-panel {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.sc-hero-panel h2 {
  margin-bottom: 1rem;
}

.sc-trust-card {
  background: #141414;
  color: #f3e4d0;
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
}

.sc-trust-label {
  font-size: 0.8rem;
  opacity: 0.85;
}

.sc-trust-score {
  font-size: 2rem;
  font-weight: 700;
  color: #2ab3a6;
}

.sc-trust-meta {
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.sc-hero-note {
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

.sc-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-align: center;
}

.sc-btn-primary {
  background: #2ab3a6;
  color: #141414;
}

.sc-btn-secondary {
  background: #d4af37;
  color: #141414;
}

.sc-btn-primary:hover,
.sc-btn-secondary:hover {
  opacity: 0.9;
}

.sc-section {
  padding: 3rem 1.5rem;
}

.sc-section-alt {
  background: #fffdf8;
}

.sc-section h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.sc-section-intro {
  margin-bottom: 1rem;
  max-width: 640px;
}

.sc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.sc-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.sc-card-pill h3 {
  margin-bottom: 0.5rem;
}

.sc-vendor-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.sc-vendor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.sc-vendor-score {
  background: #2ab3a6;
  color: #141414;
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.sc-vendor-card p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.sc-vendor-card ul {
  padding-left: 1.2rem;
  line-height: 1.5;
  font-size: 0.9rem;
}

.sc-form {
  max-width: 640px;
  margin-top: 1.5rem;
}

.sc-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.sc-form input,
.sc-form select {
  flex: 1 1 200px;
  padding: 0.6rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #d9cbb5;
  font-size: 0.9rem;
}

.sc-form-message {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  min-height: 1rem;
}

.sc-footer {
  text-align: center;
  padding: 1.5rem;
  background: #141414;
  color: #f3e4d0;
  font-size: 0.85rem;
  margin-top: 2rem;
}

@media (max-width: 800px) {
  .sc-hero {
    grid-template-columns: 1fr;
  }
  .sc-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .sc-nav {
    display: flex;
    flex-wrap: wrap;
  }
  .sc-form-row {
    flex-direction: column;
  }
}
