/* SolTribe.org vendor 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: #f3e4d0;
  color: #141414;
}

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

.st-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;
}

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

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

.st-wordmark {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #d4af37;
  font-size: 0.95rem;
}

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

.st-nav a:hover {
  opacity: 1;
  color: #d4af37;
}

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

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

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

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

.st-hero-card {
  background: #141414;
  color: #f3e4d0;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.st-hero-card ul {
  margin-top: 0.75rem;
  padding-left: 1.2rem;
  line-height: 1.6;
}

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

.st-section-alt {
  background: #fff5e7;
}

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

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

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

.st-list {
  margin-top: 0.75rem;
  padding-left: 1.2rem;
  line-height: 1.6;
}

.st-form {
  max-width: 800px;
  margin-top: 1.5rem;
}

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

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

.st-form textarea {
  resize: vertical;
}

.st-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;
}

.st-btn-primary {
  background: #d4af37;
  color: #141414;
}

.st-btn-secondary {
  background: #2ab3a6;
  color: #141414;
}

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

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

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

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