/* ---------- Reset & base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Georgia, 'Times New Roman', serif;
  color: #1a1a1a;
  background: #fffaf3;
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #8B0000; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Layout ---------- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 28px; }

/* ---------- Header / nav ---------- */
header {
  background: #1a1a1a;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid #C9972A;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand {
  color: #fffaf3;
  font-weight: bold;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.nav-brand span { color: #C9972A; }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: #fffaf3;
  font-size: 0.95rem;
}
.nav-links a:hover {
  color: #C9972A;
  text-decoration: none;
}
.nav-cta {
  background: #8B0000;
  color: #fffaf3 !important;
  padding: 8px 18px;
  border-radius: 4px;
  border: 1px solid #8B0000;
}
.nav-cta:hover {
  background: #C9972A;
  border-color: #C9972A;
  text-decoration: none !important;
}

/* ---------- Hero (home only) ---------- */
.hero {
  background: linear-gradient(180deg, #1a1a1a 0%, #2a1010 100%);
  color: #fffaf3;
  padding: 90px 0 100px;
  text-align: center;
  border-bottom: 4px solid #C9972A;
}
.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  max-width: 820px;
  margin: 0 auto 24px;
  font-weight: normal;
}
.hero h1 strong { color: #C9972A; font-weight: bold; }
.hero p.subhead {
  font-size: 1.2rem;
  max-width: 720px;
  margin: 0 auto 40px;
  color: #f5e6d3;
  line-height: 1.5;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(180deg, #1a1a1a 0%, #2a1010 100%);
  color: #fffaf3;
  padding: 70px 0 70px;
  text-align: center;
  border-bottom: 4px solid #C9972A;
}
.page-hero h1 {
  font-size: 2.2rem;
  color: #C9972A;
  margin-bottom: 16px;
  font-weight: bold;
}
.page-hero p.subhead {
  font-size: 1.15rem;
  max-width: 720px;
  margin: 0 auto;
  color: #f5e6d3;
  line-height: 1.5;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 1rem;
  font-family: Georgia, serif;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s;
}
.btn-primary {
  background: #C9972A;
  color: #1a1a1a;
  font-weight: bold;
}
.btn-primary:hover {
  background: #fffaf3;
  text-decoration: none;
  color: #1a1a1a;
}
.btn-ghost {
  background: transparent;
  color: #fffaf3;
  border-color: #fffaf3;
}
.btn-ghost:hover {
  background: #fffaf3;
  color: #1a1a1a;
  text-decoration: none;
}

/* ---------- Section base ---------- */
section {
  padding: 80px 0;
}
section.alt { background: #f5ede0; }
section h2 {
  font-size: 2rem;
  color: #8B0000;
  margin-bottom: 18px;
  text-align: center;
}
section h2 + p.lead {
  text-align: center;
  font-size: 1.1rem;
  color: #4a4a4a;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* ---------- Prose ---------- */
.prose {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: #2a2a2a;
}
.prose em { color: #8B0000; font-style: italic; font-weight: bold; }

/* ---------- About page: founder photo placeholder ---------- */
.founder-image-placeholder {
  background: #f5ede0;
  border: 2px dashed #C9972A;
  padding: 60px;
  text-align: center;
  margin: 40px 0;
  border-radius: 4px;
}
.founder-image-placeholder p {
  color: #8a7860;
  font-style: italic;
}

/* ---------- About page: value blocks ---------- */
.value-block {
  margin: 32px 0;
  padding-left: 24px;
  border-left: 4px solid #C9972A;
}
.value-block h3 {
  color: #8B0000;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.value-block p { color: #2a2a2a; font-size: 1rem; }

/* ---------- About page: team grid ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 32px;
}
.team-member {
  background: #fffaf3;
  padding: 24px;
  border-radius: 4px;
  border-top: 4px solid #C9972A;
}
.team-member h3 {
  color: #1a1a1a;
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.team-member p.role {
  color: #8B0000;
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.team-member p { color: #4a4a4a; font-size: 0.95rem; line-height: 1.5; }

/* ---------- Home page: problem grid ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.problem-card {
  background: #fffaf3;
  padding: 28px;
  border-left: 4px solid #8B0000;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.problem-card h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.problem-card p { color: #4a4a4a; font-size: 0.98rem; }

/* ---------- Home page: agents ---------- */
.agents-intro {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 1.05rem;
  color: #4a4a4a;
}
.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.agent {
  background: #fffaf3;
  padding: 24px;
  border-radius: 6px;
  border: 1px solid #e8d9bc;
}
.agent-name {
  color: #C9972A;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 4px;
}
.agent-role {
  color: #1a1a1a;
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.agent-desc {
  color: #4a4a4a;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ---------- Home page: manifesto ---------- */
.manifesto {
  background: #1a1a1a;
  color: #fffaf3;
  padding: 90px 0;
  text-align: center;
}
.manifesto blockquote {
  font-size: 1.5rem;
  line-height: 1.5;
  max-width: 760px;
  margin: 0 auto 28px;
  font-style: italic;
  color: #fffaf3;
}
.manifesto blockquote::before {
  content: '"';
  color: #C9972A;
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
}
.manifesto blockquote::after {
  content: '"';
  color: #C9972A;
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.4em;
  margin-left: 4px;
}
.manifesto cite {
  color: #C9972A;
  font-style: normal;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* ---------- Home page: difference list ---------- */
.difference-list {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
}
.difference-list li {
  padding: 20px 0;
  border-bottom: 1px solid #e8d9bc;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.difference-list li:last-child { border-bottom: none; }
.difference-list .num {
  color: #C9972A;
  font-size: 1.6rem;
  font-weight: bold;
  flex-shrink: 0;
  width: 48px;
}
.difference-list .content h4 {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.difference-list .content p {
  color: #4a4a4a;
  font-size: 0.98rem;
}

/* ---------- Pricing page ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.pricing-card {
  background: #fffaf3;
  padding: 36px 28px;
  border-radius: 6px;
  border: 1px solid #e8d9bc;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border: 3px solid #C9972A;
  position: relative;
  transform: scale(1.04);
}
.pricing-card.featured::before {
  content: 'Recommended';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #C9972A;
  color: #1a1a1a;
  padding: 4px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.pricing-tier-name {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: bold;
}
.pricing-tier-tagline {
  color: #4a4a4a;
  font-size: 0.95rem;
  margin-bottom: 28px;
  min-height: 50px;
}
.pricing-tier-price {
  margin-bottom: 28px;
}
.pricing-tier-price .setup {
  font-size: 0.85rem;
  color: #8a7860;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.pricing-tier-price .monthly {
  font-size: 2.4rem;
  font-weight: bold;
  color: #8B0000;
  line-height: 1.1;
}
.pricing-tier-price .month {
  font-size: 0.9rem;
  color: #4a4a4a;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  flex-grow: 1;
}
.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid #f5ede0;
  font-size: 0.95rem;
  color: #2a2a2a;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '✓ ';
  color: #C9972A;
  font-weight: bold;
  margin-right: 6px;
}
.pricing-card .btn {
  margin-top: auto;
}

.pricing-faq {
  max-width: 760px;
  margin: 0 auto;
}
.pricing-faq-item {
  margin: 24px 0;
  padding-left: 24px;
  border-left: 4px solid #C9972A;
}
.pricing-faq-item h4 {
  color: #8B0000;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.pricing-faq-item p {
  color: #2a2a2a;
  font-size: 1rem;
}

/* ---------- Industries page ---------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.industry-card {
  background: #fffaf3;
  padding: 32px 28px;
  border-radius: 6px;
  border-top: 4px solid #C9972A;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.industry-card h3 {
  color: #8B0000;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.industry-card p.specialty {
  color: #1a1a1a;
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.industry-card p {
  color: #4a4a4a;
  font-size: 0.98rem;
  line-height: 1.55;
}
.industry-card ul {
  margin-top: 14px;
  padding-left: 20px;
  color: #4a4a4a;
  font-size: 0.95rem;
}
.industry-card li { margin-bottom: 6px; }

/* ---------- FAQ page ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  margin: 32px 0;
  padding: 28px;
  background: #fffaf3;
  border-radius: 4px;
  border-left: 4px solid #C9972A;
}
.faq-item h3 {
  color: #8B0000;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.faq-item p {
  color: #2a2a2a;
  font-size: 1rem;
  margin-bottom: 12px;
}
.faq-item p:last-child { margin-bottom: 0; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}
.contact-info h3 {
  color: #8B0000;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.contact-info .contact-method {
  margin-bottom: 28px;
}
.contact-info .label {
  color: #C9972A;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-info .value {
  font-size: 1.15rem;
  color: #1a1a1a;
}
.contact-info .value a { color: #1a1a1a; }
.contact-info .value a:hover { color: #8B0000; }
.contact-info p.note {
  color: #4a4a4a;
  font-size: 0.95rem;
  margin-top: 8px;
}

.contact-form {
  background: #fffaf3;
  padding: 36px;
  border-radius: 6px;
  border: 1px solid #e8d9bc;
}
.contact-form h3 {
  color: #8B0000;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  color: #1a1a1a;
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d4c4a0;
  border-radius: 4px;
  font-family: Georgia, serif;
  font-size: 1rem;
  background: #fffaf3;
  color: #1a1a1a;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C9972A;
  box-shadow: 0 0 0 3px rgba(201, 151, 42, 0.15);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-submit {
  background: #8B0000;
  color: #fffaf3;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 4px;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-weight: bold;
  cursor: pointer;
}
.form-submit:hover { background: #C9972A; color: #1a1a1a; }

/* ---------- CTA section ---------- */
.cta-band {
  background: #8B0000;
  color: #fffaf3;
  padding: 70px 0;
  text-align: center;
}
.cta-band h2 {
  color: #fffaf3;
  font-size: 1.8rem;
  margin-bottom: 18px;
}
.cta-band p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: #f5e6d3;
}
.cta-band .btn-primary {
  background: #C9972A;
  color: #1a1a1a;
}
.cta-band .btn-primary:hover { background: #fffaf3; }

/* ---------- Footer ---------- */
footer {
  background: #1a1a1a;
  color: #d4c4a0;
  padding: 50px 0 30px;
  border-top: 4px solid #C9972A;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}
.footer-brand h3 {
  color: #fffaf3;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.footer-brand span { color: #C9972A; }
.footer-brand p {
  font-size: 0.92rem;
  color: #a8987a;
  margin-bottom: 6px;
}
.footer-col h4 {
  color: #C9972A;
  font-size: 0.95rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: #d4c4a0;
  font-size: 0.92rem;
}
.footer-col a:hover { color: #fffaf3; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid #3a2a2a;
  padding-top: 24px;
  text-align: center;
  color: #8a7860;
  font-size: 0.85rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 60px 0 70px; }
  .hero h1 { font-size: 1.9rem; }
  .hero p.subhead { font-size: 1.05rem; }
  .page-hero { padding: 50px 0 50px; }
  .page-hero h1 { font-size: 1.7rem; }
  section { padding: 60px 0; }
  section h2 { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .manifesto blockquote { font-size: 1.2rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
}
