/* Negotiables Partners Directory Styles */
/* Brand colors and minimal styling - under 10KB */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --color-bg: #0f172a;
  --color-fg: #f8f8f7;
  --color-primary: #FF781E;
  --color-primary-dark: #ea580c;
  --color-secondary: #475569;
  --color-success: #4CAF50;
  --color-border: #334155;
  --color-muted: #64748b;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-primary-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.site-header {
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-fg);
  letter-spacing: 0.05em;
}

.site-header nav {
  display: flex;
  gap: 1.5rem;
}

.site-header nav a {
  color: rgba(248, 248, 247, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 2rem 0 1rem;
}

.breadcrumbs a {
  color: var(--color-muted);
}

.breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Page Headers */
.page-header {
  margin: 3rem 0 2rem;
  text-align: center;
}

.page-header .lead {
  font-size: 1.125rem;
  color: rgba(248, 248, 247, 0.8);
  max-width: 800px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-bg);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-fg);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-fg);
}

.btn-link {
  color: var(--color-primary);
  padding: 0;
  font-size: 0.875rem;
}

/* Grids */
.category-grid, .partner-grid {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.category-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.partner-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* Cards */
.category-card, .partner-card, .entity-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.category-card:hover, .partner-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.category-card.coming-soon {
  opacity: 0.6;
}

.partner-card h2, .partner-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.partner-card .desc {
  font-size: 0.875rem;
  color: rgba(248, 248, 247, 0.7);
  margin-bottom: 1rem;
}

.partner-card .meta {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.partner-card .area {
  display: inline-block;
  margin-right: 0.5rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--color-secondary);
  color: var(--color-fg);
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Entity Page */
.entity-card {
  max-width: 800px;
  margin: 2rem auto;
}

.entity-card header {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.entity-card .subhead {
  font-size: 1.125rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
}

.entity-card section {
  margin: 2rem 0;
}

.entity-card section h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.service-tags li {
  padding: 0.5rem 1rem;
  background: rgba(255, 120, 30, 0.1);
  border: 1px solid rgba(255, 120, 30, 0.3);
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.seo-copy {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--color-primary);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(248, 248, 247, 0.8);
}

.cta-section {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 120, 30, 0.1);
  border: 1px solid rgba(255, 120, 30, 0.3);
  border-radius: 1rem;
  margin: 3rem 0;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.entity-footer {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.875rem;
  color: var(--color-muted);
}

.related-links {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
}

.related-links h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.related-links ul {
  list-style: none;
}

.related-links li {
  margin: 0.5rem 0;
}

/* About Section */
.about-section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* City Groups */
.city-group {
  margin: 3rem 0;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.city-group h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.city-group .count {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  .page-header {
    margin: 2rem 0 1.5rem;
  }
  
  .site-header nav {
    gap: 1rem;
  }
  
  .contact-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}

/* Loading States */
.loading {
  text-align: center;
  padding: 4rem 0;
  color: var(--color-muted);
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-bg);
  padding: 0.5rem 1rem;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}