/* ==========================================================================
   Fremgen Strategies — jimmyfremgen.com
   Stylesheet
   --------------------------------------------------------------------------
   Design system per the project brief:
   - Headlines: Lora (modern serif)
   - Body: Inter (clean sans-serif)
   - Restrained, senior, trustworthy. Generous white space.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Color palette */
  --primary:        #1F4E79;
  --primary-dark:   #173A5A;
  --secondary:      #2E75B6;
  --light-accent:   #D6E4F0;
  --text:           #1A1A1A;
  --muted:          #595959;
  --bg:             #FFFFFF;
  --subtle-bg:      #F8F9FA;
  --border:         #E3E7EC;

  /* Typography */
  --font-head: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --max-width: 1140px;
  --gutter: 1.5rem;
  --radius: 6px;

  /* Transitions */
  --ease: 0.2s ease;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;          /* 17px */
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--secondary); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--primary); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--primary);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.25rem, 4.6vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1.15rem; }
p:last-child { margin-bottom: 0; }

ul { margin: 0 0 1.15rem; padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; }

strong { font-weight: 600; }

/* Accessible focus state */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.65rem 1rem;
  z-index: 200;
}
.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
  color: #fff;
}

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow { max-width: 820px; }

.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.section--subtle { background: var(--subtle-bg); }
.section--accent { background: var(--light-accent); }
.section--primary { background: var(--primary); }

/* On the light-accent background, use the darker primary for the eyebrow
   so small text clears WCAG AA contrast. */
.section--accent .eyebrow { color: var(--primary); }

/* Anchor offset so sticky nav doesn't cover section tops */
[id] { scroll-margin-top: 90px; }

/* Section heading group (eyebrow + title) */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--secondary);
  margin: 0 0 0.75rem;
}
.section-head { margin-bottom: 2.75rem; max-width: 720px; }
.section-head > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.125rem;
  margin-top: 0.25rem;
}

.lead {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.95rem 1.7rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* On dark backgrounds */
.btn-on-dark {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-on-dark:hover {
  background: var(--light-accent);
  border-color: var(--light-accent);
  color: var(--primary);
}

/* Text link with arrow */
.btn-text {
  display: inline-block;
  font-weight: 600;
  color: var(--secondary);
}
.btn-text::after { content: " \2192"; transition: margin var(--ease); }
.btn-text:hover { color: var(--primary); }
.btn-text:hover::after { margin-left: 0.25rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
  margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   5. Site header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: saturate(180%) blur(6px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand:hover { color: var(--primary); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  margin: 5px 0;
  transition: transform var(--ease), opacity var(--ease);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.35rem 0;
  position: relative;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a.is-active { color: var(--primary); font-weight: 600; }
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--secondary);
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, var(--subtle-bg) 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: clamp(3.5rem, 8vw, 6rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
}
.hero-content { max-width: 760px; }
.hero h1 { margin-bottom: 0.6rem; }
.hero .lead { margin-top: 0.5rem; max-width: 640px; }

/* Subtle decorative capitol-dome line art, lower-right of hero */
.hero-decor {
  position: absolute;
  right: -40px;
  bottom: -20px;
  width: min(440px, 42vw);
  height: auto;
  z-index: 1;
  opacity: 0.55;
  pointer-events: none;
}

/* Compact hero variant for interior pages */
.hero--page .container {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

/* Split hero — headline alongside a photo */
.hero--split .hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: center;
}

/* Major section opener (H2 styled near H1 size on the one-page layout) */
.section-opener {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

/* Photos & captioned figures */
.hero-figure,
.about-photo,
.figure { margin: 0; }

.hero-figure img,
.about-photo img,
.figure img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--light-accent);
}
.hero-figure img { aspect-ratio: 3 / 2; }
.about-photo img { aspect-ratio: 4 / 3; }
.figure--feature { max-width: 760px; margin-left: auto; margin-right: auto; }
.figure--feature img { aspect-ratio: 16 / 10; }

.hero-figure figcaption,
.about-photo figcaption,
.figure figcaption {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--muted);
  margin-top: 0.7rem;
}

/* --------------------------------------------------------------------------
   7. Cards & grids
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.85rem;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 1rem; }
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -18px rgba(31, 78, 121, 0.45);
  border-color: var(--light-accent);
}

/* numbered service cards */
.card-num {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary);
  display: block;
  margin-bottom: 0.6rem;
}

/* Work cards: left accent rule, with optional thumbnail */
.work-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--secondary);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}
.work-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -18px rgba(31, 78, 121, 0.45);
}
.work-card .thumb {
  margin: 0;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--light-accent);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.work-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.work-card .card-body {
  padding: 1.5rem 1.65rem 1.65rem;
}
.work-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.4rem;
}
.work-card p { color: var(--muted); font-size: 0.97rem; margin: 0; }

/* Values cards on About */
.value-card h3 { color: var(--primary); }

/* --------------------------------------------------------------------------
   8. Press & speaking strip
   -------------------------------------------------------------------------- */
.press-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  text-align: center;
}
.press-list li {
  margin: 0;
  padding: 1.25rem 0.5rem;
  border-top: 2px solid var(--light-accent);
}
.press-name {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--primary);
  font-size: 1.05rem;
}
.press-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.15rem;
}
.press-list li > a {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s ease;
}
.press-list li > a:hover .press-name,
.press-list li > a:focus .press-name {
  color: var(--secondary);
  text-decoration: underline;
}
.check-list li > a {
  color: inherit;
  text-decoration: none;
  display: block;
}
.check-list li > a:hover,
.check-list li > a:focus {
  color: var(--secondary);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   9. About page specifics
   -------------------------------------------------------------------------- */
.about-intro {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

/* Captioned figure within the Career Arc prose.
   Capped + centered: these are lower-res source photos, so we keep the
   display size at/below native resolution to stay crisp. */
.prose-figure {
  margin: 2.5rem auto 0;
  max-width: 500px;
}
/* Lead variant — image opening a section, above the heading */
.prose-figure--lead {
  margin: 0 auto 2.75rem;
  max-width: 500px;
}
.prose-figure img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  background: var(--light-accent);
}
.prose-figure figcaption {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--muted);
  margin-top: 0.7rem;
}

/* Headshot placeholder — replace .headshot-ph block with a real <img> when available */
.headshot,
.headshot-ph {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
}
.headshot-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 1.5rem;
}
.headshot-ph .mono {
  font-family: var(--font-head);
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1;
}
.headshot-ph .ph-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-accent);
  margin-top: 0.85rem;
}

.prose p { margin-bottom: 1.25rem; }
.prose p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   10. Expertise / structured lists
   -------------------------------------------------------------------------- */
.expertise-list {
  columns: 2;
  column-gap: 3rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.expertise-list li {
  break-inside: avoid;
  padding: 0.55rem 0 0.55rem 1.6rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.expertise-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 7px;
  height: 7px;
  background: var(--secondary);
  border-radius: 50%;
}

/* Small lead-in label above a list (e.g. "Selected appearances") */
.list-label {
  font-size: 1.15rem;
  margin: 0 0 0.85rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 2rem;
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 14px;
  height: 8px;
  border-left: 2.5px solid var(--secondary);
  border-bottom: 2.5px solid var(--secondary);
  transform: rotate(-45deg);
}

/* Engagement structure / definition rows */
.detail-rows {
  border-top: 1px solid var(--border);
}
.detail-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.detail-row dt {
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font-head);
}
.detail-row dd { margin: 0; color: var(--muted); }

/* --------------------------------------------------------------------------
   11. Contact page
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  background: var(--bg);
}
.contact-card .eyebrow { margin-bottom: 0.35rem; }
.contact-card .contact-value {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary);
  word-break: break-word;
}
.contact-card a.contact-value:hover { color: var(--secondary); }

.schedule-placeholder {
  border: 2px dashed var(--secondary);
  border-radius: var(--radius);
  background: var(--subtle-bg);
  padding: 2.5rem 2rem;
  text-align: center;
}
.schedule-placeholder .eyebrow { color: var(--secondary); }
.schedule-placeholder p { color: var(--muted); margin: 0.5rem auto 0; max-width: 520px; }

/* --------------------------------------------------------------------------
   12. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 1.5rem; }
.cta-band .cta-services {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  margin: 0 0 1rem;
  line-height: 1.4;
}
.cta-band.section--accent .cta-services { color: var(--primary); }
.cta-band.section--accent h2 { color: var(--primary); }
.cta-band .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--primary);
  color: var(--light-accent);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.75rem;
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}
.footer-tagline {
  color: var(--light-accent);
  font-size: 0.95rem;
  margin-top: 0.35rem;
  max-width: 320px;
}
.footer-contact { font-size: 0.95rem; line-height: 1.9; }
.footer-contact a { color: #fff; }
.footer-contact a:hover { color: var(--light-accent); }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
  color: #fff;
  font-weight: 500;
}
.footer-social svg { width: 20px; height: 20px; fill: currentColor; }
.footer-social:hover { color: var(--light-accent); }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.85rem;
  color: var(--light-accent);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

/* --------------------------------------------------------------------------
   14. Utilities
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-lg { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   15. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .hero--split .hero-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .about-intro { grid-template-columns: 1fr; gap: 2rem; }
  .about-intro .headshot,
  .about-intro .headshot-ph { max-width: 280px; }
  .detail-row { grid-template-columns: 1fr; gap: 0.25rem; }
  .press-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0.5rem var(--gutter) 1rem;
  }
  .nav.is-open .nav-links { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav-links a.is-active::after { display: none; }
  .nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 600px) {
  body { font-size: 1rem; }
  .grid-2,
  .grid-3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .expertise-list { columns: 1; }
  .press-list { grid-template-columns: 1fr; }
  .press-list li { border-top: 0; border-bottom: 1px solid var(--border); padding: 0.85rem 0; }
  .btn { display: block; text-align: center; width: 100%; }
  .btn-text { text-align: left; }
  .btn-row { gap: 0.85rem; }
  .hero-decor { opacity: 0.35; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .card:hover,
  .work-card:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   16. v3 additions — As Quoted In / Engagement / Press
   -------------------------------------------------------------------------- */

/* Pull-quote card used in "As Quoted In" section */
.quote-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--secondary);
  border-radius: var(--radius);
  padding: 2rem 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform var(--ease), box-shadow var(--ease);
}
.quote-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -18px rgba(31, 78, 121, 0.45);
}
.quote-card blockquote {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.18rem;
  line-height: 1.45;
  color: var(--text);
  font-weight: 500;
}
.quote-card blockquote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-head);
  font-size: 3rem;
  line-height: 0.4;
  color: var(--secondary);
  margin-bottom: 0.6rem;
}
.quote-card cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  margin-top: auto;
}

/* Engagement type card — Work page */
.engagement-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(2rem, 3.5vw, 2.75rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.engagement-card + .engagement-card { margin-top: 2rem; }
.engagement-card h2 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  margin: 0 0 0.5rem;
}
.engagement-card .lead {
  font-size: 1.02rem;
  color: var(--text);
  margin: 0;
  line-height: 1.55;
}
.engagement-card .eyebrow { margin-bottom: 0.3rem; }
.engagement-card .meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.engagement-card .meta h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 0.65rem;
}
.engagement-card .meta ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.engagement-card .meta li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.2rem;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.55;
}
.engagement-card .meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
}
.engagement-card .btn-row { margin-top: 0.5rem; }

@media (max-width: 720px) {
  .engagement-card .meta { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* Press page — coverage list */
.press-coverage {
  list-style: none;
  margin: 0;
  padding: 0;
}
.press-coverage > li {
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
}
.press-coverage > li:first-child { padding-top: 0; }
.press-coverage > li:last-child { border-bottom: 0; }
.press-coverage .outlet {
  display: block;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.2rem;
}
.press-coverage .headline {
  display: block;
  color: var(--text);
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}
.press-coverage .meta-line {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.press-coverage a.read-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
}
.press-coverage a.read-link::after { content: " \2192"; }
.press-coverage a.read-link:hover { color: var(--primary); }

/* Group heading inside Press page */
.press-group-head {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--secondary);
  margin: 0 0 1.1rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid var(--light-accent);
}
.press-group + .press-group { margin-top: 3rem; }

/* Service niches strip — between hero and As Quoted In on Home */
.service-strip {
  background: var(--subtle-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
}
.service-niches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary);
  text-align: center;
}
.service-niches .sep {
  color: var(--secondary);
  font-weight: 400;
  opacity: 0.7;
}
@media (max-width: 600px) {
  .service-niches { font-size: 0.98rem; gap: 0.35rem 0.85rem; }
}

/* --------------------------------------------------------------------------
   17. Full-bleed cover hero, bio signature, press imagery
   -------------------------------------------------------------------------- */

/* Full-bleed photographic hero — Capitol dome on Home */
.hero--cover {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: clamp(460px, 72vh, 660px);
  background: var(--primary-dark);   /* fallback before the photo loads */
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero--cover .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;       /* keep the dome & dark sky framed */
  z-index: 0;
}
.hero--cover::after {                 /* dark scrim for text legibility */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.22));
  z-index: 1;
}
.hero--cover .container { position: relative; z-index: 2; }
.hero--cover .hero-content { max-width: 720px; }
.hero--cover h1 {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.4);
}
.hero--cover .lead {
  color: rgba(255, 255, 255, 0.96);
  max-width: 640px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.35);
}
.hero--cover .lead em { color: #fff; font-style: italic; }
.hero--cover .btn-on-dark {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* Bio signature sign-off (transparent PNG) */
.signature { margin: 2rem 0 0; }
.signature img { width: auto; max-width: 230px; height: auto; }

/* Press section imagery — single figure (leads its entry).
   Kept small so the lower-res TV/video stills render crisply. */
.press-figure { margin: 0 0 1.25rem; max-width: 340px; }
.press-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--light-accent);
  border: 1px solid var(--border);
}
.press-figure figcaption {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 0.55rem;
}

/* Press section imagery — compact gallery */
.press-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0 0 2.25rem;
}
.press-gallery--2 { grid-template-columns: repeat(2, 1fr); max-width: 680px; }
.press-gallery figure { margin: 0; }
.press-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--light-accent);
  border: 1px solid var(--border);
}
.press-gallery figcaption {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 0.5rem;
}
@media (max-width: 720px) {
  .press-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .press-gallery,
  .press-gallery--2 { grid-template-columns: 1fr; }
}
