/* Business/style.css — styles for the BUSINESS/services site */
:root {
  --bg: #0c0c0e;
  --bg-raised: #141416;
  --bg-card: #18181b;
  --gold: #c9a227;
  --gold-soft: #8a7020;
  --text: #ededea;
  --text-dim: #9a9a97;
  --rule: #2a2a2c;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: "Georgia", "Iowan Old Style", serif;
  font-weight: 400;
  margin: 0 0 0.6rem;
}

a { color: inherit; }

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--rule);
}

.brand {
  text-decoration: none;
  font-family: "Georgia", serif;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.site-header nav a {
  text-decoration: none;
  margin-left: 1.75rem;
  font-size: 0.92rem;
  color: var(--text-dim);
}

.site-header nav a:hover { color: var(--text); }

.hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}

.eyebrow {
  color: var(--gold-soft);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  margin: 0 0 0.9rem;
}

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.3;
}

.hero-sub {
  color: var(--text-dim);
  max-width: 55ch;
  margin: 1rem auto 2rem;
}

.cta {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  background: var(--gold);
  color: #14120a;
  text-decoration: none;
  border-radius: 3px;
  font-size: 0.95rem;
}

.cta.secondary {
  background: transparent;
  border: 1px solid var(--gold-soft);
  color: var(--gold);
}

section {
  max-width: 980px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.services h2, .pricing h2, .contact h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 720px) {
  .service-grid, .price-grid { grid-template-columns: 1fr; }
}

.service {
  border: 1px solid var(--rule);
  padding: 1.75rem;
  background: var(--bg-raised);
}

.num {
  color: var(--gold-soft);
  font-family: "Georgia", serif;
  font-size: 0.85rem;
}

.service p { color: var(--text-dim); font-size: 0.92rem; }

.pricing-note, .contact-note {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-top: -1.25rem;
  margin-bottom: 2rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.price-card {
  border: 1px solid var(--rule);
  background: var(--bg-raised);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-card.featured {
  border-color: var(--gold-soft);
  background: var(--bg-card);
}

.price {
  font-family: "Georgia", serif;
  font-size: 1.9rem;
  color: var(--gold);
  margin: 0.25rem 0 1rem;
}

.price span {
  font-family: -apple-system, sans-serif;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-left: 0.4rem;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  color: var(--text-dim);
  font-size: 0.9rem;
  flex: 1;
}

.price-card li { padding: 0.3rem 0; }
.price-card .cta { text-align: center; }

.contact {
  max-width: 560px;
}

#lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

#lead-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-dim);
}

#lead-form input, #lead-form textarea {
  background: var(--bg-raised);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 0.65rem 0.75rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}

#lead-form input:focus, #lead-form textarea:focus {
  outline: 2px solid var(--gold-soft);
  outline-offset: 1px;
}

#lead-form button {
  align-self: flex-start;
  padding: 0.75rem 1.6rem;
  background: var(--gold);
  color: #14120a;
  border: none;
  border-radius: 3px;
  font-size: 0.95rem;
  cursor: pointer;
}

#form-status {
  font-size: 0.88rem;
  color: var(--gold);
  min-height: 1.2em;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--rule);
  color: var(--text-dim);
  font-size: 0.85rem;
}

.site-footer a { text-decoration: none; color: var(--text-dim); }
.site-footer a:hover { color: var(--gold); }
