/* ===== Clean blog styles ===== */
:root {
  --text: #1f2328;
  --muted: #5a626c;
  --border: #e5e7eb;
  --link: #1a56db;
  --accent: #1a7f4b;
  --bg-soft: #f7f8fa;
  --maxw: 720px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  font-size: 18px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

a { color: var(--link); }
a:hover { text-decoration: underline; }

hr { border: none; border-top: 1px solid var(--border); margin: 36px 0; }

/* ===== Header ===== */
.site-header {
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.logo {
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
.logo span { color: var(--link); }
.header-cta {
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: var(--link);
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
}
.header-cta:hover { opacity: 0.9; text-decoration: none; }

/* ===== Headings (sans for contrast) ===== */
h1, h2, h3, .eyebrow, .byline, .entry-meta, .header-cta, .logo,
.faq summary, .price-list, .entry-cta {
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--link);
  margin: 40px 0 10px;
}
h1 { font-size: 2.3rem; line-height: 1.2; margin: 0 0 18px; }
.standfirst { font-size: 1.2rem; color: var(--muted); margin: 0 0 20px; }
.byline { font-size: 0.9rem; color: var(--muted); margin: 0; }

h2 { font-size: 1.6rem; margin: 40px 0 14px; }
h3 { font-size: 1.05rem; margin: 22px 0 8px; }

p { margin: 0 0 18px; }
ul, ol { margin: 0 0 18px; padding-left: 24px; }
li { margin-bottom: 8px; }

/* ===== List entries ===== */
.entry-head {
  border-top: 1px solid var(--border);
  padding-top: 30px;
}
.entry-head .best {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--accent);
  padding: 3px 9px;
  border-radius: 5px;
  vertical-align: middle;
  margin-left: 8px;
}
.entry-meta {
  font-size: 0.92rem;
  color: var(--muted);
  margin: -6px 0 16px;
}

.result {
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
  padding: 14px 18px;
  font-size: 0.98rem;
  border-radius: 0 6px 6px 0;
}

.entry-cta {
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background: var(--link);
  padding: 11px 22px;
  border-radius: 6px;
  text-decoration: none;
}
.entry-cta:hover { opacity: 0.9; text-decoration: none; }

/* ===== Pricing list ===== */
.price-list { list-style: none; padding: 0; }
.price-list li {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 12px;
  font-size: 0.96rem;
}
.fine { font-size: 0.85rem; color: var(--muted); }

/* ===== FAQ ===== */
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 14px 28px 14px 0;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 12px;
  font-size: 1.3rem;
  color: var(--link);
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 0 0 16px; color: var(--muted); }

/* ===== About ===== */
.about p { color: var(--muted); }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 50px;
  padding: 28px 0;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}
.site-footer p { margin: 4px 0; }

/* ===== Responsive ===== */
@media (max-width: 600px) {
  body { font-size: 17px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .standfirst { font-size: 1.08rem; }
}
