/* TTD Darshan Autofill — content site shared styles */
:root {
  --accent1: #d9631f;
  --accent2: #b5451b;
  --cream: #fdf9f4;
  --cream-card: #fff8ec;
  --border: #e5e0da;
  --ink: #2a2420;
  --ink-soft: #5a4f45;
  --green: #1a7a3c;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}
a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.wrap { max-width: 760px; margin: 0 auto; padding: 0 20px; }
.wrap-wide { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* Header */
header.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  max-width: 1000px; margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px; color: var(--ink); }
.brand-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800;
}
nav.site-nav { display: flex; gap: 22px; font-size: 13.5px; font-weight: 600; }
nav.site-nav a { color: var(--ink-soft); }
nav.site-nav a.active, nav.site-nav a:hover { color: var(--accent2); }
.header-cta {
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  color: #fff !important; padding: 8px 16px; border-radius: 20px;
  font-size: 13px; font-weight: 700; white-space: nowrap;
}
.header-cta:hover { text-decoration: none; opacity: 0.92; }

/* Hero */
.hero { padding: 56px 0 40px; text-align: center; }
.hero .eyebrow {
  display: inline-block; background: var(--cream-card); border: 1px solid #f0d9a8;
  color: #7a5a12; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 20px;
  margin-bottom: 18px;
}
.hero h1 { font-size: 34px; line-height: 1.25; margin: 0 0 16px; color: var(--ink); }
.hero h1 span { color: var(--accent2); }
.hero p.lead { font-size: 16px; color: var(--ink-soft); max-width: 560px; margin: 0 auto 26px; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent1), var(--accent2)); color: #fff;
  padding: 13px 24px; border-radius: 9px; font-weight: 700; font-size: 14.5px; display: inline-block;
}
.btn-primary:hover { text-decoration: none; opacity: 0.93; }
.btn-secondary {
  background: #fff; color: var(--ink); border: 1px solid var(--border);
  padding: 13px 24px; border-radius: 9px; font-weight: 700; font-size: 14.5px; display: inline-block;
}
.btn-secondary:hover { text-decoration: none; border-color: var(--accent1); color: var(--accent2); }

/* Cards / sections */
.section { padding: 44px 0; }
.section-title { font-size: 24px; margin: 0 0 8px; color: var(--ink); }
.section-sub { color: var(--ink-soft); font-size: 14.5px; margin: 0 0 30px; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 20px;
}
.card h3 { margin: 0 0 8px; font-size: 15.5px; color: var(--ink); }
.card p { margin: 0; font-size: 13.5px; color: var(--ink-soft); }
.card .num {
  width: 28px; height: 28px; border-radius: 50%; background: var(--cream-card); color: var(--accent2);
  font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px;
}

/* Blog article body */
article.post { padding: 36px 0 60px; }
article.post .post-meta { color: var(--ink-soft); font-size: 12.5px; margin-bottom: 8px; }
article.post h1 { font-size: 30px; line-height: 1.3; margin: 0 0 18px; }
article.post h2 { font-size: 20px; margin: 34px 0 10px; color: var(--ink); }
article.post h3 { font-size: 16.5px; margin: 22px 0 8px; color: var(--ink); }
article.post p { font-size: 15px; color: #3a332d; margin: 0 0 14px; }
article.post ul, article.post ol { font-size: 15px; color: #3a332d; padding-left: 22px; margin: 0 0 16px; }
article.post li { margin-bottom: 6px; }
.callout {
  background: var(--cream-card); border: 1px solid #f0d9a8; border-radius: 10px;
  padding: 16px 18px; margin: 22px 0; font-size: 14px; color: #6b4e10;
}
.callout strong { color: #4d3808; }
.source-note { font-size: 12px; color: #9a8f83; margin-top: 40px; border-top: 1px solid var(--border); padding-top: 14px; }
.source-note a { color: #9a8f83; text-decoration: underline; }

/* Step list (install page) */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.steps li {
  counter-increment: step; position: relative; padding: 4px 0 22px 44px; font-size: 14.5px; color: #3a332d;
}
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: 0;
  width: 30px; height: 30px; border-radius: 50%; background: var(--accent1); color: #fff;
  font-weight: 800; font-size: 13.5px; display: flex; align-items: center; justify-content: center;
}
.steps li strong { color: var(--ink); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq-item h3 { margin: 0 0 8px; font-size: 15.5px; color: var(--ink); }
.faq-item p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* Footer */
footer.site-footer { border-top: 1px solid var(--border); padding: 32px 0; margin-top: 20px; }
.footer-inner { max-width: 1000px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12.5px; color: #9a8f83; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.disclaimer { max-width: 1000px; margin: 0 auto 20px; padding: 0 20px; font-size: 11.5px; color: #b0a89e; text-align: center; }

@media (max-width: 640px) {
  nav.site-nav { display: none; }
  .hero h1 { font-size: 27px; }
}
