/* ==========================================================================
   L. Burke Files — burkefiles.com
   Static rebuild based on the feeinc.com template
   Palette: change --accent / --accent-dark below to retheme the whole site.
   ========================================================================== */

:root {
  --accent: #c9a227;        /* gold */
  --accent-dark: #0e2a47;   /* deep navy */
  --orange: var(--accent);  /* legacy alias so shared rules keep working */
  --dark: #14212f;
  --black: #000000;
  --white: #ffffff;
  --gray: #807f7f;
  --card-bg: #f7f7f7;
  --font-head: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Frank Ruhl Libre", Georgia, serif;
  --font-legal: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1140px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--gray); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: none; opacity: .9; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--black); margin: 0 0 .4em; line-height: 1.1; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 8px; top: 8px; background: var(--white); padding: 8px 14px; z-index: 100; }

/* ---- Top bar (sticky) ---- */
.topbar { background: var(--dark); position: sticky; top: 0; z-index: 100; }
.topbar .container { display: flex; justify-content: flex-end; gap: 40px; padding-top: 8px; padding-bottom: 8px; }
.topbar a { color: var(--white); font-family: var(--font-head); font-size: 11px; font-weight: 600; line-height: 1.6em; letter-spacing: .08em; text-transform: uppercase; }

/* ---- Header / nav ---- */
.site-header { background: var(--white); border-bottom: 1px solid rgba(0,0,0,.04); }
.site-header .container { display: flex; align-items: center; gap: 30px; padding-top: 17px; padding-bottom: 17px; }
.site-header .logo img { width: 70px; }
.site-nav { display: flex; flex-wrap: wrap; gap: 40px; }
.site-nav a { color: var(--dark); font-family: var(--font-head); font-size: 12px; font-weight: 700; line-height: 1.2em; text-transform: uppercase; }
.site-nav a.active, .site-nav a:hover { color: var(--orange); }

/* ---- Hero (two column) ---- */
.hero { padding: 110px 0 120px; }
.hero .container { display: grid; grid-template-columns: 55% 1fr; gap: 60px; align-items: center; }
.hero h1 { font-size: clamp(2.75rem, 5.2vw, 5rem); font-weight: 700; letter-spacing: -.01em; line-height: 1.02; }
.hero h1 .accent { color: var(--orange); }
.hero .lead strong, .lead-head { display: block; font-family: var(--font-body); font-size: 20px; font-weight: 700; color: var(--dark); line-height: 1.35; margin-bottom: 14px; }
.hero .lead p, .lead p { font-weight: 600; color: var(--dark); font-size: 15.5px; }
.hero .lead a, .lead a { color: var(--orange); font-weight: 700; }

/* ---- Press logos strip (continuous marquee, like the Elementor carousel) ---- */
.press-strip { background: var(--accent-dark); padding: 13px 0; overflow: hidden; }
.press-track { display: flex; align-items: center; gap: 90px; width: max-content; animation: press-marquee 35s linear infinite; }
.press-track img { height: 58px; width: auto; flex: none; }
@keyframes press-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .press-track { animation: none; }
}

/* ---- Full-bleed imagery ---- */
.bleed img { width: 100%; height: auto; }

/* ---- Parallax image bands (fixed background) ---- */
.parallax { background-size: cover; background-position: center; background-attachment: fixed; min-height: 62vh; }
/* iOS ignores fixed attachment; fall back to normal scroll there */
@supports (-webkit-touch-callout: none) {
  .parallax { background-attachment: scroll; }
}

/* ---- Fixed background video band (scroll-over "window" effect) ---- */
.video-band { position: relative; clip-path: inset(0); height: 40vh; overflow: hidden; }
.video-band video { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; object-fit: cover; z-index: -1; }

/* ---- Generic two-column section ---- */
.split { padding: 110px 0; }
.split .container { display: grid; grid-template-columns: 55% 1fr; gap: 60px; align-items: center; }
.split h2 { font-size: clamp(2.4rem, 4.6vw, 4.5rem); font-weight: 700; line-height: 1.05; }
.split h2 .accent { color: var(--orange); }

/* ---- Eyebrow label ---- */
.eyebrow { display: block; font-family: var(--font-head); font-size: 13px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }

/* ---- Centered section heading ---- */
.section-head { text-align: center; padding: 90px 0 20px; }
.section-head h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; }

/* ---- Card grids ---- */
.cards { display: grid; gap: 36px; padding: 50px 0 110px; }
.cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--card-bg); padding: 46px 44px 54px; }
.card .icon { color: var(--orange); margin-bottom: 26px; }
.card .icon svg { width: 34px; height: 34px; fill: currentColor; }
.card h3 { font-size: 26px; font-weight: 600; letter-spacing: .01em; }
.card.caps h3 { text-transform: uppercase; font-size: 22px; letter-spacing: .04em; }
.card p { color: var(--dark); font-weight: 500; font-size: 15.5px; }

/* ---- Expert profiles (About) ---- */
.expert { padding: 90px 0; }
.expert.alt { background: var(--card-bg); }
.expert .container { display: grid; grid-template-columns: 42% 1fr; gap: 60px; align-items: start; }
.expert .photo img { width: 100%; }
.expert h2 { font-size: clamp(1.9rem, 3.2vw, 3rem); font-weight: 700; }
.expert .tagline { font-family: var(--font-head); font-size: 20px; font-weight: 600; color: var(--black); margin: 6px 0 0; line-height: 1.3; }
.expert .bio p, .expert .bio li { color: var(--dark); font-weight: 500; font-size: 16px; }
.expert .bio li { margin-bottom: 12px; }
.expert .bio li strong { color: var(--black); }

/* ---- FAQ ---- */
.faq { padding: 30px 0 110px; }
.faq .container { max-width: 900px; }
.faq h2 { text-align: center; font-size: clamp(2rem, 3.6vw, 3rem); margin-bottom: 30px; }
.faq details { border-bottom: 1px solid #e5e5e5; padding: 18px 0; }
.faq summary { cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--black); list-style: none; position: relative; padding-right: 30px; }
.faq summary::after { content: "+"; position: absolute; right: 4px; color: var(--orange); font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--dark); font-weight: 500; margin: 12px 0 0; }

/* ---- Legal pages (same fonts as the rest of the site) ---- */
.legal-hero { padding: 100px 0 60px; }
.legal-hero .container { display: grid; grid-template-columns: 55% 1fr; gap: 60px; align-items: center; }
.legal-hero h1 { font-family: var(--font-head); font-size: clamp(2.6rem, 5vw, 4.5rem); font-weight: 700; line-height: 1.05; color: var(--black); }
.legal-hero .intro { font-family: var(--font-body); font-weight: 600; font-size: 17px; color: var(--dark); }
.legal-body { padding: 20px 0 110px; }
.legal-body .container { max-width: 860px; }
.legal-body { font-family: var(--font-body); font-weight: 400; font-size: 16.5px; color: var(--dark); line-height: 1.75; }
.legal-body h2 { font-family: var(--font-head); font-weight: 700; font-size: 21px; letter-spacing: .02em; margin-top: 2em; text-transform: uppercase; }
.legal-body strong { font-weight: 700; color: var(--black); }

/* ---- 404 ---- */
.error-hero { padding: 140px 0 160px; }
.error-hero .container { display: grid; grid-template-columns: 55% 1fr; gap: 60px; align-items: center; }
.error-hero h1 { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 700; }
.error-hero h1 .accent { color: var(--orange); }

/* ---- Footer ---- */
.footer-brand { background: var(--accent-dark); padding: 44px 0 40px; }
.footer-brand img { width: 235px; }
.footer-brand .rule { border: 0; border-top: 1px solid rgba(255,255,255,.35); max-width: 630px; margin: 26px 0 0; }
.footer-links { background: var(--accent-dark); border-top: 1px solid rgba(255,255,255,.15); padding: 34px 0 26px; }
.footer-links .rows { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; }
.footer-links nav { display: flex; flex-wrap: wrap; gap: 32px; }
.footer-links a { color: var(--white); font-family: var(--font-head); font-size: 17px; font-weight: 700; }
.footer-links .copyright { text-align: center; color: var(--white); font-family: var(--font-head); font-size: 12.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin: 30px 0 0; }

/* ---- Responsive ---- */
@media (max-width: 940px) {
  .hero .container, .split .container, .expert .container, .legal-hero .container, .error-hero .container { grid-template-columns: 1fr; gap: 34px; }
  .cards.cols-2, .cards.cols-3 { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 70px; }
  .split, .expert { padding: 60px 0; }
  .topbar .container { justify-content: space-evenly; gap: 12px; }
  .site-header .container { flex-direction: column; gap: 14px; }
  .site-nav { justify-content: center; gap: 22px; }
  .press-track { gap: 40px; }
  .press-track img { height: 40px; }
  .footer-links .rows { justify-content: center; }
}

/* ==========================================================================
   burkefiles.com additions
   ========================================================================== */

/* ---- Live-text logo ---- */
.logo-text { font-family: var(--font-head); font-weight: 700; font-size: 24px; letter-spacing: .02em; color: var(--black); line-height: 1.1; white-space: nowrap; }
.logo-text:hover { color: var(--accent); }
.footer-logo-text { font-family: var(--font-head); font-weight: 700; font-size: 28px; color: var(--white); margin: 0; }

/* ---- Dropdown navigation ---- */
.site-nav { align-items: center; }
.nav-item { position: relative; }
.nav-item > a, .nav-item > button { color: var(--dark); font-family: var(--font-head); font-size: 12px; font-weight: 700; line-height: 1.2em; text-transform: uppercase; background: none; border: 0; padding: 0; cursor: pointer; }
.nav-item > a::after, .nav-item > button::after { content: " \25BE"; font-size: 9px; color: var(--accent); }
.nav-item > a.no-caret::after, .site-nav > a::after { content: none; }
.dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: var(--white); min-width: 230px; padding: 10px 0; box-shadow: 0 8px 24px rgba(0,0,0,.12); border-top: 2px solid var(--accent); opacity: 0; visibility: hidden; transition: opacity .15s ease; z-index: 90; }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; }
.dropdown a { display: block; padding: 9px 20px; color: var(--dark); font-family: var(--font-head); font-size: 12px; font-weight: 600; text-transform: none; letter-spacing: .02em; }
.dropdown a:hover { color: var(--accent); background: var(--card-bg); }
@media (max-width: 940px) {
  .nav-item { position: static; }
  .dropdown { position: absolute; left: 0; right: 0; transform: none; min-width: 0; }
}

/* ---- Buttons ---- */
.btn { display: inline-block; background: var(--accent); color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; padding: 14px 28px; }
.btn:hover { background: var(--accent-dark); color: var(--white); opacity: 1; }

/* ---- Feature cards (home: video / book / article) ---- */
.card .card-tag { display: block; font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.card .card-link { font-family: var(--font-head); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--accent); }

/* ---- Press & Publications ---- */
.press-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; padding: 10px 0 40px; }
.press-filter a { font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--dark); border-bottom: 2px solid transparent; padding-bottom: 4px; }
.press-filter a:hover { color: var(--accent); border-color: var(--accent); }
.press-list { max-width: 900px; margin: 0 auto; padding: 0 20px 110px; }
.press-item { display: grid; grid-template-columns: 170px 1fr; gap: 40px; align-items: start; border-bottom: 1px solid #e5e5e5; padding: 44px 0; }
.press-item .outlet img { width: 100%; max-width: 150px; height: auto; }
.press-item h3 { font-size: 21px; font-weight: 600; line-height: 1.3; margin-bottom: 10px; }
.press-item p { color: var(--dark); font-weight: 500; font-size: 15.5px; }
.press-item .actions { display: flex; gap: 24px; margin-top: 6px; }
.press-item .actions a { font-family: var(--font-head); font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--accent); }
.press-section-head { text-align: center; padding: 70px 0 10px; }
.press-section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); font-weight: 700; }
@media (max-width: 700px) {
  .press-item { grid-template-columns: 1fr; gap: 18px; }
}

/* ---- Blog archive ---- */
.post-list { max-width: 860px; margin: 0 auto; padding: 20px 20px 110px; }
.post-list article { border-bottom: 1px solid #e5e5e5; padding: 26px 0; }
.post-list h3 { font-size: 20px; font-weight: 600; line-height: 1.35; margin: 0 0 6px; }
.post-list h3 a { color: var(--black); }
.post-list h3 a:hover { color: var(--accent); }
.post-list time { font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); }

/* ---- Single post ---- */
.post-hero { padding: 90px 0 30px; max-width: 860px; margin: 0 auto; }
.post-hero .container { max-width: 860px; }
.post-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; line-height: 1.1; }
.post-hero time { font-family: var(--font-head); font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); }
.post-body { padding: 10px 0 110px; }
.post-body .container { max-width: 760px; }
.post-body p, .post-body li { color: var(--dark); font-size: 17px; line-height: 1.75; font-weight: 400; }
.post-body h2 { font-size: 26px; font-weight: 700; margin-top: 1.8em; }
.post-body blockquote { border-left: 3px solid var(--accent); margin: 1.5em 0; padding: .2em 0 .2em 1.2em; font-style: italic; }
.post-body details { border-bottom: 1px solid #e5e5e5; padding: 16px 0; }
.post-body summary { cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: 16.5px; color: var(--black); list-style: none; position: relative; padding-right: 30px; }
.post-body summary::after { content: "+"; position: absolute; right: 4px; color: var(--accent); font-size: 20px; line-height: 1; }
.post-body details[open] summary::after { content: "\2013"; }
.post-cta { margin-top: 2.2em; }
.back-to-blog { display: inline-block; margin-top: 40px; font-family: var(--font-head); font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--accent); }
