/* =========================================================
   Darling Financial Group — VSL Template
   Restrained, editorial, fiduciary-feel
   ========================================================= */

:root {
  /* Palette — conservative navy + cream + a single warm accent */
  --ink: #0e1a2b;          /* near-black navy for body text */
  --ink-2: #2a3548;        /* secondary text */
  --ink-3: #5a6478;        /* tertiary / captions */
  --rule: #d8d3c7;         /* subtle warm rules */
  --rule-soft: #ebe6da;
  --paper: #faf7f1;        /* warm cream background */
  --paper-2: #f3eee3;      /* slightly deeper cream */
  --white: #ffffff;
  --navy: #14223a;         /* primary brand */
  --navy-deep: #0b1426;
  --accent: #8a6d3b;       /* muted gold/bronze — single accent only */
  --accent-2: #6a5329;

  --container: 1100px;
  --container-narrow: 760px;

  --serif: 'Source Serif 4', 'Source Serif Pro', 'Georgia', 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--serif);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  font-size: 18px;
}

img, video { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--accent-2); }

p { margin: 0 0 1em; }

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

/* ---------- Header ---------- */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ink);
}
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.brand-divider {
  width: 1px;
  height: 18px;
  background: var(--rule);
}
.brand-tag {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.header-nav a {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}
.header-nav a:hover { color: var(--navy); }

/* ---------- Eyebrows / section labels ---------- */
.eyebrow,
.section-eyebrow,
.byline-label,
.advisor-card-label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.section-eyebrow {
  text-align: center;
  color: var(--ink-3);
}
.eyebrow.light, .section-eyebrow.light { color: rgba(255,255,255,0.65); }

/* ---------- Hero ---------- */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.hero .eyebrow { text-align: center; margin-bottom: 20px; }

.headline {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 auto 22px;
  max-width: 820px;
}
.subheadline {
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 auto 44px;
}

/* ---------- Video ---------- */
.video-wrap {
  max-width: 880px;
  margin: 0 auto 40px;
  padding: 0;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--rule);
  /* No shadow, no rounded glow — clean rectangle */
}
.video-frame video,
.video-frame iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}

/* ---------- Buttons ---------- */
[hidden] { display: none !important; }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  padding: 16px 32px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
}
.btn:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--white);
}
.btn-lg { padding: 18px 38px; font-size: 14px; }

.btn-primary {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.btn-light {
  background: var(--paper);
  color: var(--navy);
  border-color: var(--paper);
}
.btn-light:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-ghost {
  background: transparent;
  color: var(--ink-3);
  border: 1px solid transparent;
}
.btn-ghost:hover {
  color: var(--ink);
  background: transparent;
  border-color: var(--rule);
}

.cta-block { margin-top: 12px; }
.cta-sub {
  margin: 16px 0 0;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}

/* ---------- Byline strip (featured-in) ---------- */
.byline-strip {
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
}
.byline { text-align: center; }
.byline-label {
  text-align: center;
  margin-bottom: 14px;
  color: var(--ink-3);
}
.byline-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
}
.byline-row span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}

/* ---------- Sections ---------- */
section { padding: 90px 0; }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.008em;
  color: var(--ink);
  text-align: center;
  margin: 0 0 18px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.section-lede {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink-2);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.55;
}

/* ---------- Who-for (reasons list) ---------- */
.who-for {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.reasons {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  counter-reset: reason;
}
.reasons li {
  position: relative;
  padding: 24px 0 24px 56px;
  border-top: 1px solid var(--rule-soft);
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.55;
  counter-increment: reason;
}
.reasons li:last-child { border-bottom: 1px solid var(--rule-soft); }
.reasons li::before {
  content: counter(reason, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 26px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.reasons li strong {
  font-weight: 600;
  color: var(--ink);
}

/* ---------- Inside / chapters ---------- */
.inside { background: var(--white); border-bottom: 1px solid var(--rule); }
.chapters {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: chapter;
}
.chapters li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--rule-soft);
  align-items: baseline;
}
.chapters li:last-child { border-bottom: 1px solid var(--rule-soft); }
.chapter-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--accent);
  font-weight: 500;
}
.chapters h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.chapters p {
  margin: 0;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.6;
}

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
  padding: 100px 0;
}
.testimonial figure {
  margin: 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 28px;
  letter-spacing: -0.005em;
  font-style: italic;
  position: relative;
}
.testimonial blockquote::before {
  content: "“";
  display: block;
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.6;
  color: var(--accent);
  margin-bottom: 24px;
  font-style: normal;
}
.testimonial figcaption {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.cite-name {
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  display: block;
  margin-bottom: 4px;
}
.cite-detail {
  font-style: italic;
  font-size: 14px;
  font-family: var(--serif);
  color: var(--ink-3);
}

/* ---------- Advisor / about ---------- */
.advisor {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.advisor-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.advisor-portrait {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--rule);
  margin-bottom: 24px;
  filter: grayscale(0.15);
}
.advisor-text h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 38px);
  margin: 0 0 22px;
  letter-spacing: -0.008em;
  color: var(--ink);
}
.advisor-text p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.65;
}
.advisor-card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 28px 30px;
}
.advisor-card-label {
  margin-bottom: 14px;
  color: var(--ink-3);
}
.advisor-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.advisor-card li {
  font-size: 15px;
  color: var(--ink-2);
  padding: 10px 0;
  border-top: 1px solid var(--rule-soft);
  line-height: 1.45;
}
.advisor-card li:first-child { border-top: 0; padding-top: 0; }
.advisor-card li:last-child { padding-bottom: 0; }

/* ---------- Claim (dark band) ---------- */
.claim {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  border-bottom: 0;
}
.claim-block {
  padding: 40px 0;
}
.claim-block h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 18px;
  color: var(--white);
  letter-spacing: -0.008em;
}
.claim-block p {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.55;
}
.claim-fineprint {
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
}

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.faq .section-title { margin-bottom: 48px; }
.faq details {
  border-top: 1px solid var(--rule-soft);
  padding: 22px 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--rule-soft); }
.faq summary {
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  font-size: 19px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.002em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 24px;
  color: var(--accent);
  font-weight: 400;
  margin-left: 20px;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin: 14px 0 0;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.6;
  padding-right: 40px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 36px;
  font-family: var(--sans);
}
.footer-inner { display: grid; gap: 32px; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}
.footer-brand span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-links a:hover { color: var(--accent); }
.footer-legal {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  max-width: 880px;
}
.footer-legal p { margin: 0 0 10px; }
.footer-legal p:first-child { color: rgba(255,255,255,0.6); }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  body { font-size: 17px; }
  .brand-tag, .brand-divider { display: none; }
  section { padding: 64px 0; }
  .hero { padding: 56px 0 44px; }
  .testimonial { padding: 70px 0; }
  .advisor-grid { grid-template-columns: 1fr; gap: 32px; }
  .chapters li { grid-template-columns: 48px 1fr; gap: 16px; }
  .chapter-num { font-size: 20px; }
  .byline-row { gap: 20px; }
  .byline-row span { font-size: 14px; }
  .footer-top { flex-direction: column; }
}
