/* =====================================================
   Duncklee Group — shared brand page styles
   Palette + type match dunckleegroup.com homepage
   ===================================================== */

:root {
  --navy: #132238;
  --bg: #F7F5F0;
  --blue: #477A9E;
  --blue-dk: #3A6685;
  --gold: #D8A84E;
  --gold-dk: #A87B22;
  --teal: #3B7A7A;
  --text: #1C2430;
  --gray: #E8EBEE;
  --muted: #5B6472;
  --border: #E6E9ED;
  --white: #FFFFFF;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --shadow-card: 0 1px 2px rgba(19,34,56,.04), 0 10px 30px rgba(19,34,56,.055);
  --shadow-card-hover: 0 3px 8px rgba(19,34,56,.07), 0 22px 52px rgba(19,34,56,.11);
  --container: 1180px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
svg { display: block; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
}
p { color: var(--muted); }
.eyebrow {
  font-family: var(--font-display); font-weight: 600; font-size: 12.5px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--accent-dk);
  display: inline-block; margin-bottom: 14px;
}
.section-lede { font-size: 17px; color: var(--muted); max-width: 660px; margin-top: 14px; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.section { padding: 92px 0; }
.section-alt { background: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: 15px 30px; border-radius: 100px; border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn-accent {
  background: var(--accent); color: var(--white);
  box-shadow: 0 2px 6px rgba(19,34,56,.14), 0 10px 26px rgba(19,34,56,.14);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(19,34,56,.18), 0 16px 36px rgba(19,34,56,.20); }
.btn-primary { background: var(--navy); color: var(--white); box-shadow: 0 2px 6px rgba(19,34,56,.14), 0 10px 26px rgba(19,34,56,.14); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(19,34,56,.18), 0 16px 36px rgba(19,34,56,.20); }
.btn-secondary { background: transparent; border-color: #CFD5DC; color: var(--navy); }
.btn-secondary:hover { border-color: var(--navy); background: rgba(19,34,56,.03); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.45); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); }
.btn-sm { padding: 11px 22px; font-size: 13.5px; }

/* ---------- Nav ---------- */
header.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,245,240,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 34px; width: auto; }
@media (min-width: 700px) { .nav-logo img { height: 40px; } }
.nav-links { display: none; align-items: center; gap: 32px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--text); transition: color .15s ease; }
.nav-links a:hover { color: var(--accent-dk); }
.nav-links a.active { color: var(--accent-dk); font-weight: 600; }
.nav-cta { display: none; }
.nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }
@media (min-width: 900px) { .nav-links { display: flex; } .nav-cta { display: inline-flex; } .nav-toggle { display: none; } }
.mobile-menu { display: none; flex-direction: column; padding: 8px 0 20px; border-top: 1px solid var(--gray); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 13px 4px; font-size: 15px; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--gray); }
.mobile-menu a.btn { margin-top: 16px; justify-content: center; border-bottom: none; }
.mobile-menu a.btn-primary { color: var(--white); }
@media (min-width: 900px) { .mobile-menu { display: none !important; } }

/* ---------- Breadcrumb ---------- */
.crumb { padding: 22px 0 0; font-size: 13px; color: var(--muted); }
.crumb a:hover { color: var(--accent-dk); text-decoration: underline; }
.crumb span { margin: 0 8px; opacity: .5; }

/* ---------- Hero ---------- */
.bhero { padding: 46px 0 84px; }
.bhero-inner { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
@media (min-width: 940px) { .bhero-inner { grid-template-columns: 1.15fr .85fr; gap: 60px; } }
.bhero h1 { font-size: clamp(34px, 4.4vw, 50px); margin-bottom: 18px; }
.bhero .lede { font-size: 18px; color: var(--muted); }
.bhero-ctas { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.bhero-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.meta-pill {
  font-family: var(--font-display); font-weight: 600; font-size: 11px;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--accent-dk); background: var(--tint);
  padding: 6px 14px; border-radius: 100px;
}
.bhero-panel {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 30px; box-shadow: var(--shadow-card); position: relative; overflow: hidden;
}
.bhero-panel::before { content:""; position:absolute; top:0; left:0; right:0; height:4px; background: var(--accent); }
.bhero-panel h2 { font-size: 15px; margin-bottom: 18px; }
.bhero-panel dl { display: grid; gap: 15px; }
.bhero-panel .row { display: flex; justify-content: space-between; gap: 18px; align-items: baseline; padding-bottom: 13px; border-bottom: 1px solid var(--border); }
.bhero-panel .row:last-child { border-bottom: none; padding-bottom: 0; }
.bhero-panel dt { font-size: 13px; color: var(--muted); }
.bhero-panel dd { font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--navy); text-align: right; }

/* ---------- Feature grid ---------- */
.feat-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 46px; }
@media (min-width: 700px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .feat-grid { grid-template-columns: repeat(3, 1fr); } }
.feat-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 28px 26px; box-shadow: 0 1px 2px rgba(19,34,56,.03), 0 8px 22px rgba(19,34,56,.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.feat-card .ico {
  width: 46px; height: 46px; border-radius: 12px; background: var(--tint);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feat-card h3 { font-size: 17px; margin-bottom: 8px; }
.feat-card p { font-size: 14.2px; }

/* ---------- Format list ---------- */
.fmt-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 44px; }
@media (min-width: 780px) { .fmt-grid { grid-template-columns: repeat(2, 1fr); } }
.fmt-item { display: flex; gap: 16px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px 24px; }
.fmt-item .num {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px; background: var(--accent);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
}
.fmt-item h3 { font-size: 15.5px; margin-bottom: 5px; }
.fmt-item p { font-size: 13.8px; }

/* ---------- Audience chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.chip {
  font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--navy);
  background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 10px 20px;
  transition: border-color .18s ease, transform .18s ease;
}
.chip:hover { border-color: var(--accent); transform: translateY(-2px); }

/* ---------- FAQ ---------- */
.faq { margin-top: 44px; max-width: 860px; }
.faq details {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 20px 24px; margin-bottom: 14px;
}
.faq details[open] { box-shadow: var(--shadow-card); }
.faq summary {
  font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--navy);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 22px; font-weight: 400; color: var(--accent-dk); line-height: 1; flex-shrink: 0;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p { font-size: 14.4px; margin-top: 13px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: var(--white); }
.cta-band h2 { color: var(--white); font-size: 32px; }
.cta-band p { color: rgba(255,255,255,.75); font-size: 16.5px; margin-top: 14px; max-width: 620px; }
.cta-band .btns { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

/* ---------- Sibling brand links ---------- */
.sib-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
@media (min-width: 700px) { .sib-grid { grid-template-columns: repeat(2, 1fr); } }
.sib-card {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 24px 26px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.sib-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.sib-card h3 { font-size: 17px; margin-bottom: 4px; }
.sib-card p { font-size: 13.5px; }
.sib-card .arrow { flex-shrink: 0; color: var(--muted); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy); color: rgba(255,255,255,.62); padding: 62px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
@media (min-width: 780px) { .footer-top { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-brand .nav-logo img { height: 34px; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: 13.5px; margin-top: 14px; max-width: 330px; }
.footer-col h4 { color: var(--white); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--font-display); }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,.68); margin-bottom: 11px; transition: color .15s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding-top: 26px; font-size: 12.5px; }
.footer-statement { font-size: 13px; color: rgba(255,255,255,.5); max-width: 640px; margin-bottom: 10px; }
