/* ============================================================
   MISSION INTEGRATION GROUP — style.css
   ============================================================

   PALETTE
     Graphite  #1A2230   dark sections, body text, footer
     Slate     #5C7A8C   accent — borders, links, buttons, motifs
     White     #FFFFFF   canvas

   TYPOGRAPHY
     Headings  Barlow Semi Condensed 600 / 700
     Body      DM Sans 400 / 500

   DESIGN MOTIF
     A 2px × 40px horizontal slate bar precedes every section label.
     All text cards carry a 4px slate left border.
     These two elements are the visual signature of the site.

   ARCHITECTURE
     Mobile-first. Three breakpoints: 640px / 900px / 1200px.
     CSS Grid and Flexbox only — no floats.
     No preprocessor. No framework. No build step.
     Class names: BEM-lite (block__element--modifier).

   EDITING GUIDE
     • Change the accent color everywhere → edit --c-slate in :root
     • Change the dark color everywhere  → edit --c-graphite in :root
     • Change heading font               → edit --f-heading in :root
     • Change body font                  → edit --f-body in :root
     • Change max content width          → edit --max-w in :root
     • Change a section's background     → edit background on that section rule
   ============================================================ */


/* ── CUSTOM PROPERTIES ──────────────────────────────────────── */
:root {
  /* Colors */
  --c-graphite:    #1A2230;
  --c-slate:       #5C7A8C;
  --c-slate-dim:   rgba(92, 122, 140, 0.15);  /* tint for hover states */
  --c-slate-dark:  #4A6678;                    /* button hover */
  --c-white:       #FFFFFF;
  --c-text:        #1A2230;
  --c-text-muted:  #4E5D6C;
  --c-border:      #D6DDE3;
  --c-card-shadow: rgba(26, 34, 48, 0.08);

  /* Typography */
  --f-heading: 'Barlow Semi Condensed', system-ui, sans-serif;
  --f-body:    'DM Sans', system-ui, sans-serif;

  /* Size scale */
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.375rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  3rem;
  --fs-4xl:  3.75rem;
  --fs-5xl:  4.5rem;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;

  /* Layout */
  --max-w:       1200px;
  --header-h:    88px;   /* total header height (contact bar + nav bar) */
  --radius:      8px;    /* standard border-radius for cards and images */
  --card-border: 4px solid var(--c-slate);  /* left-border card motif */
}


/* ── RESET & BASE ────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--f-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--c-slate);
  text-decoration: none;
}

a:hover {
  color: var(--c-slate-dark);
}

ul {
  list-style: none;
}


/* ── CONTAINER ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-md);
}

@media (min-width: 640px) {
  .container { padding-inline: var(--sp-lg); }
}


/* ── SECTION PADDING ─────────────────────────────────────────── */
.section-padding {
  padding-block: var(--sp-2xl);
}

@media (min-width: 640px) {
  .section-padding {
    padding-block: 5rem;
  }
}


/* ── UTILITY TYPOGRAPHY ─────────────────────────────────────── */
.section-label {
  display: block;
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-slate);
  margin-top: var(--sp-xs);
}

/* The 40px slate bar that precedes every section label — the site's motif */
.accent-rule {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--c-slate);
}

.section-headline {
  font-family: var(--f-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-slate);
  margin-top: var(--sp-xs);
}

@media (min-width: 900px) {
  .section-headline {
    font-size: var(--fs-3xl);
  }
}

.body-lg {
  font-size: var(--fs-md);
  line-height: 1.7;
}

.text-muted {
  color: var(--c-text-muted);
}


/* ── BUTTONS ─────────────────────────────────────────────────── */
/* TO CHANGE BUTTON COLOR: edit --c-slate in :root */
.btn {
  display: inline-block;
  font-family: var(--f-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
  white-space: nowrap;
}

/* Primary: slate fill, white text */
.btn-primary {
  background: var(--c-slate);
  color: var(--c-white);
  border-color: var(--c-slate);
}

.btn-primary:hover {
  background: var(--c-slate-dark);
  border-color: var(--c-slate-dark);
  color: var(--c-white);
}

/* Secondary: outline, slate border, white or dark text */
.btn-secondary {
  background: transparent;
  color: var(--c-white);
  border-color: var(--c-white);
}

.btn-secondary:hover {
  background: var(--c-white);
  color: var(--c-graphite);
}

/* Secondary on light backgrounds */
.btn-secondary-dark {
  background: transparent;
  color: var(--c-graphite);
  border-color: var(--c-graphite);
}

.btn-secondary-dark:hover {
  background: var(--c-graphite);
  color: var(--c-white);
}


/* ═══════════════════════════════════════════════════════════════
   HEADER
   Two-row persistent header:
     Row 1 (.header-contact): slate bg — phone and email links
     Row 2 (.header-nav): white bg — logo, nav links, hamburger

   TO CHANGE PHONE: edit the <a href="tel:..."> in index.html
   TO CHANGE EMAIL: edit the <a href="mailto:..."> in index.html
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
}

/* Contact bar */
.header-contact {
  background: var(--c-graphite);
  padding-block: 0.5rem;
}

.header-contact .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--sp-md);
}

.header-contact__link {
  font-size: var(--fs-sm);
  color: var(--c-white);
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 150ms ease;
}

.header-contact__link:hover {
  opacity: 1;
  color: var(--c-white);
}

.header-contact__link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Nav bar */
.header-nav {
  padding-block: var(--sp-sm);
}

.header-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  height: 64px;
  width: auto;
}

/* Nav links */
.site-nav__links {
  display: none;
  align-items: center;
  gap: var(--sp-lg);
}

.site-nav__links a {
  font-family: var(--f-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-graphite);
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 150ms ease, color 150ms ease;
}

.site-nav__links a:hover {
  color: var(--c-slate);
  border-color: var(--c-slate);
}

@media (min-width: 900px) {
  .site-nav__links { display: flex; }
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--c-graphite);
  border-radius: 1px;
  transition: transform 200ms ease, opacity 200ms ease;
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
}

/* Mobile nav open state */
.site-header.nav-open .site-nav__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  border-bottom: 3px solid var(--c-slate);
  padding: var(--sp-md) var(--sp-lg);
  gap: var(--sp-md);
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* ═══════════════════════════════════════════════════════════════
   HERO
   Full-bleed image — fully visible, no global darkening.
   A 40% graphite card floats over the LEFT portion only.
   The right side of the image is completely untouched.

   TO CHANGE HERO IMAGE:      update src on .hero__img in index.html
   TO CHANGE OVERLAY OPACITY: edit rgba(26,34,48, X) on .hero__card
   TO CHANGE HEADLINE:        edit the <h1> text
   TO CHANGE SUBHEAD:         edit .hero__sub text
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  height: 72vh;
  max-height: 780px;
  overflow: hidden;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

/* Semi-transparent card — left side only */
.hero__card {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  background: rgba(26, 34, 48, 0.82);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-xl) var(--sp-lg);
  gap: var(--sp-md);
}

@media (min-width: 700px) {
  .hero__card {
    width: 52%;
    background: rgba(26, 34, 48, 0.40);
    padding: var(--sp-2xl) var(--sp-xl);
  }
}

@media (min-width: 1100px) {
  .hero__card {
    width: 46%;
  }
}

.hero__label {
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-slate);
}

.hero__card h1 {
  font-family: var(--f-heading);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--c-white);
}

.hero__sub {
  font-size: var(--fs-base);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42ch;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  margin-top: var(--sp-xs);
}


/* ═══════════════════════════════════════════════════════════════
   PAIN SECTION
   White background. Three numbered cards.

   TO CHANGE A BEAT: edit the .pain-card block in index.html
   TO CHANGE THE NUMBER: edit .pain-card__num text
   ═══════════════════════════════════════════════════════════════ */
.pain {
  background: var(--c-white);
}

.pain__intro {
  margin-bottom: var(--sp-xl);
}

.pain__intro .section-headline {
  max-width: 32ch;
  margin-top: var(--sp-sm);
}

.pain-cards {
  display: grid;
  gap: var(--sp-md);
}

@media (min-width: 900px) {
  .pain-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Individual pain card */
.pain-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-left: var(--card-border);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.pain-card__num {
  font-family: var(--f-heading);
  font-size: var(--fs-4xl);
  font-weight: 700;
  line-height: 1;
  color: var(--c-slate);
  opacity: 0.35;
}

.pain-card h2 {
  font-family: var(--f-heading);
  font-size: var(--fs-xl);
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-slate);
}

.pain-card p {
  color: var(--c-text-muted);
  font-size: var(--fs-base);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════════
   PILLARS
   Alternating image + text card rows.
   Images stand alone — no captions, rounded corners.
   Text lives in a card with the 4px slate left-border motif.

   Odd pillars: image left, card right.
   Even pillars: card left, image right (CSS order property).

   TO CHANGE A PILLAR IMAGE: update src on its <img>
   TO CHANGE PILLAR COPY:    edit the .pillar-card content
   ═══════════════════════════════════════════════════════════════ */
.pillars {
  background: var(--c-white);
  padding-block: var(--sp-xl);
}

.pillar {
  display: grid;
  gap: var(--sp-lg);
  align-items: center;
  padding-block: var(--sp-xl);
  border-top: 1px solid var(--c-border);
}

.pillar:first-child {
  border-top: none;
  padding-top: 0;
}

@media (min-width: 900px) {
  .pillar {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2xl);
  }

  /* Even pillars: flip order so image goes right */
  .pillar:nth-child(even) .pillar__figure {
    order: 2;
  }

  .pillar:nth-child(even) .pillar-card {
    order: 1;
  }
}

.pillar__figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  line-height: 0;
  /* clip children to rounded corners */
  -webkit-mask-image: -webkit-radial-gradient(white, black); /* remove inline gap below img */
}

.pillar__figure img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  vertical-align: bottom;
}

@media (min-width: 900px) {
  .pillar__figure img {
    height: 420px;
  }
}

/* Text card */
.pillar-card {
  background: var(--c-white);
  border-left: var(--card-border);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--sp-lg) var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.pillar-card .section-label {
  margin-top: var(--sp-xs);
}

.pillar-card h3 {
  font-family: var(--f-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-slate);
  margin-top: var(--sp-xs);
}

@media (min-width: 900px) {
  .pillar-card h3 {
    font-size: var(--fs-2xl);
  }
}

.pillar-card p {
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-top: var(--sp-xs);
}


/* ═══════════════════════════════════════════════════════════════
   SERVICES SECTION
   Graphite background. White cards with slate top-border motif.

   TO CHANGE A SERVICE: edit the .service-card in index.html
   TO ADD A SERVICE:    duplicate a .service-card block
   ═══════════════════════════════════════════════════════════════ */
.services {
  background: var(--c-graphite);
}

.services .section-headline {
  color: var(--c-white);
}

.services .accent-rule {
  background: var(--c-slate);
}

.services .section-label {
  color: rgba(255, 255, 255, 0.55);
}

.services__header {
  margin-bottom: var(--sp-xl);
}

.services__header p {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--fs-md);
  margin-top: var(--sp-sm);
  max-width: 60ch;
}

.services__grid {
  display: grid;
  gap: var(--sp-md);
}

@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.services__coming {
  display: grid;
  gap: var(--sp-md);
  margin-top: var(--sp-md);
}

@media (min-width: 640px) {
  .services__coming {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Service card */
.service-card {
  background: var(--c-white);
  border-radius: var(--radius);
  border-top: 3px solid var(--c-slate);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.service-card--coming {
  border-top-color: rgba(92, 122, 140, 0.45);
  opacity: 0.72;
}

.service-card__tag {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-slate);
}

.service-card--coming .service-card__tag {
  color: var(--c-text-muted);
}

.service-card h3 {
  font-family: var(--f-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-slate);
}

.service-card p {
  font-size: var(--fs-base);
  color: var(--c-text-muted);
  line-height: 1.7;
  flex: 1;
}

.service-card__date {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-slate);
  margin-top: auto;
  flex: 0 !important;
}

.service-card__link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-slate);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}

.service-card__link:hover {
  color: var(--c-slate-dark);
}

.service-card__link::after {
  content: '→';
}


/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION
   White background. Two columns: bio card left, photo right.

   TO ADD ROLAND'S PHOTO: replace the .about__placeholder div with:
   <img src="assets/images/roland-headshot.jpg" alt="Roland Matte">
   ═══════════════════════════════════════════════════════════════ */
.about {
  background: var(--c-white);
}

.about__inner {
  display: grid;
  gap: var(--sp-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* Bio card — carries the left-border motif */
.about-card {
  border-left: var(--card-border);
  padding-left: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.about-card p {
  color: var(--c-text-muted);
  line-height: 1.75;
}

.about-card p + p {
  margin-top: var(--sp-sm);
}

/* Photo column */
.about__photo {
  display: flex;
  justify-content: center;
}

.about__photo img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  display: block;
}

/* Placeholder shown until real headshot is added */
.about__placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  background: var(--c-slate-dim);
  border-radius: var(--radius);
  border: 2px dashed var(--c-slate);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--c-slate);
  font-size: var(--fs-sm);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════
   BULL INTEGRATIONS CALLOUT
   Thin slate band — links to sister company.

   TO CHANGE TEXT: edit the <p> in index.html
   TO CHANGE LINK: edit the <a href="..."> in index.html
   ═══════════════════════════════════════════════════════════════ */
.bull-callout {
  background: var(--c-slate);
  padding-block: var(--sp-md);
}

.bull-callout .container {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  align-items: flex-start;
}

@media (min-width: 640px) {
  .bull-callout .container {
    flex-direction: row;
    align-items: center;
    gap: var(--sp-md);
  }
}

.bull-callout p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.bull-callout a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bull-callout a:hover {
  color: rgba(255, 255, 255, 0.8);
}


/* ═══════════════════════════════════════════════════════════════
   CTA / LEAD MAGNET SECTION
   Graphite background. White card, centered.

   TO CONNECT YOUR CRM FORM:
     1. Log in to your email platform (Brevo, MailerLite, HubSpot, etc.)
     2. Create a form for the free resource download
     3. Copy their embed code
     4. Delete the .cta__fallback div in index.html
     5. Paste the embed code inside .cta__embed
   ═══════════════════════════════════════════════════════════════ */
.cta {
  background: var(--c-graphite);
}

.cta__card {
  background: var(--c-white);
  border-radius: var(--radius);
  border-top: 3px solid var(--c-slate);
  padding: var(--sp-xl) var(--sp-lg);
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.cta__card .accent-rule {
  margin-inline: auto;
  margin-bottom: var(--sp-sm);
}

.cta__card .section-label {
  display: block;
  text-align: center;
}

.cta__card h2 {
  font-family: var(--f-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-graphite);
  margin-top: var(--sp-sm);
}

.cta__card p {
  color: var(--c-text-muted);
  margin-top: var(--sp-sm);
  line-height: 1.7;
}

.cta__embed {
  margin-top: var(--sp-lg);
}

/* Fallback shown until real CRM embed is wired in */
.cta__fallback {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

@media (min-width: 480px) {
  .cta__fallback {
    flex-direction: row;
  }
}

.cta__fallback input[type="email"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--c-border);
  border-radius: 2px;
  font-family: var(--f-body);
  font-size: var(--fs-base);
  color: var(--c-text);
  outline: none;
}

.cta__fallback input[type="email"]:focus {
  border-color: var(--c-slate);
}

.cta__disclaimer {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin-top: var(--sp-sm);
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER
   Graphite background.

   TO CHANGE FOOTER LINKS:  edit the <ul> lists in index.html
   TO CHANGE FOOTER TAGLINE: edit .footer-brand p in index.html
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--c-graphite);
  padding-block: var(--sp-2xl) var(--sp-xl);
}

.site-footer__grid {
  display: grid;
  gap: var(--sp-xl);
  margin-bottom: var(--sp-xl);
}

@media (min-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--sp-2xl);
  }
}

/* Brand column */
.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: var(--sp-md);
}

.footer-brand p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 34ch;
}

.footer-brand p + p {
  margin-top: var(--sp-xs);
}

/* Nav columns */
.footer-col h4 {
  font-family: var(--f-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: var(--sp-md);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.footer-col a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: color 150ms ease;
}

.footer-col a:hover {
  color: var(--c-white);
}

/* Bottom bar */
.site-footer__bottom {
  padding-top: var(--sp-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  align-items: flex-start;
}

@media (min-width: 640px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-copyright {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
  display: flex;
  gap: var(--sp-md);
}

.footer-legal a {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.3);
  transition: color 150ms ease;
}

.footer-legal a:hover {
  color: var(--c-white);
}


/* ═══════════════════════════════════════════════════════════════
   INTERIOR PAGE STYLES
   Used on About, Services, Resources, FAQ, Privacy, Contact,
   and all Vertical pages. Not used on the homepage.
   ═══════════════════════════════════════════════════════════════ */

/* ── Page Hero (interior) ───────────────────────────────────────
   Graphite banner at top of interior pages.
   Lighter than the homepage hero — just headline + label.
   TO CHANGE: edit .page-hero background in this block.        */
.page-hero {
  background: var(--c-graphite);
  padding: var(--sp-xl) 0;
}

.page-hero__label {
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-slate);
  display: block;
  margin-bottom: var(--sp-xs);
}

.page-hero h1 {
  font-family: var(--f-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--c-white);
  max-width: 24ch;
}

.page-hero p {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.72);
  margin-top: var(--sp-sm);
  max-width: 56ch;
  line-height: 1.7;
}

/* Vertical page hero — image background with left card overlay */
.vertical-hero {
  position: relative;
  min-height: 380px;
  height: 48vh;
  max-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.vertical-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.vertical-hero__card {
  position: relative;
  z-index: 1;
  background: rgba(26, 34, 48, 0.82);
  padding: var(--sp-xl) var(--sp-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-sm);
  width: 100%;
}

@media (min-width: 700px) {
  .vertical-hero__card {
    width: 55%;
    background: rgba(26, 34, 48, 0.50);
    padding: var(--sp-2xl) var(--sp-xl);
  }
}

.vertical-hero__label {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-slate);
}

.vertical-hero__card h1 {
  font-family: var(--f-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-white);
}

.vertical-hero__card p {
  font-size: var(--fs-base);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 44ch;
}

/* ── Prose / Long-form Content ──────────────────────────────────
   Used on About, Privacy, Resources. Constrained width for
   comfortable reading. */
.prose {
  max-width: 72ch;
}

.prose p {
  color: var(--c-text-muted);
  line-height: 1.8;
}

.prose p + p {
  margin-top: var(--sp-md);
}

.prose h2 {
  font-family: var(--f-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--c-slate);
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-sm);
}

.prose h3 {
  font-family: var(--f-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--c-slate);
  margin-top: var(--sp-lg);
  margin-bottom: var(--sp-xs);
}

/* ── Two-column layout (About, etc.) ───────────────────────────*/
.two-col {
  display: grid;
  gap: var(--sp-xl);
  align-items: start;
}

@media (min-width: 900px) {
  .two-col {
    grid-template-columns: 2fr 1fr;
    gap: var(--sp-2xl);
  }

  .two-col--reversed {
    grid-template-columns: 1fr 2fr;
  }
}

/* ── Info card (sidebar-style) ──────────────────────────────────*/
.info-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-left: var(--card-border);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.info-card h3 {
  font-family: var(--f-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--c-slate);
}

.info-card p,
.info-card li {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: 1.7;
}

.info-card ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  padding-left: var(--sp-md);
  list-style: disc;
}

.info-card a {
  font-weight: 500;
  color: var(--c-slate);
}

/* ── What We Don't Do panel ─────────────────────────────────────*/
.dont-panel {
  background: var(--c-graphite);
  border-radius: var(--radius);
  padding: var(--sp-xl);
  margin-top: var(--sp-xl);
}

.dont-panel h2 {
  font-family: var(--f-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: var(--sp-md);
}

.dont-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.dont-item {
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
}

.dont-item__mark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 2px solid var(--c-slate);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dont-item__mark::after {
  content: '×';
  font-size: 12px;
  color: var(--c-slate);
  line-height: 1;
}

.dont-item p {
  color: rgba(255,255,255,0.75);
  font-size: var(--fs-base);
  line-height: 1.65;
}

.dont-item strong {
  color: var(--c-white);
  font-weight: 500;
}

/* ── Service full descriptions ──────────────────────────────────*/
.service-full {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
  margin-top: var(--sp-xl);
}

.service-block {
  border-left: var(--card-border);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--sp-lg) var(--sp-xl);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-left: var(--card-border);
}

.service-block__tag {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-slate);
  display: block;
  margin-bottom: var(--sp-xs);
}

.service-block h2 {
  font-family: var(--f-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--c-slate);
  line-height: 1.2;
  margin-bottom: var(--sp-sm);
}

.service-block p {
  color: var(--c-text-muted);
  line-height: 1.75;
}

.service-block p + p {
  margin-top: var(--sp-sm);
}

.service-meta {
  margin-top: var(--sp-md);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--sp-sm);
}

.service-meta__item {
  background: var(--c-slate-dim);
  border-radius: var(--radius);
  padding: var(--sp-sm) var(--sp-md);
}

.service-meta__label {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-slate);
  display: block;
  margin-bottom: 2px;
}

.service-meta__value {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-graphite);
}

/* Coming-soon variant */
.service-block--coming {
  opacity: 0.6;
  border-left-color: rgba(92,122,140,0.35);
}

/* ── FAQ ────────────────────────────────────────────────────────*/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}

.faq-item {
  border-left: var(--card-border);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-left: var(--card-border);
  padding: var(--sp-lg) var(--sp-xl);
}

.faq-item h3 {
  font-family: var(--f-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--c-slate);
  line-height: 1.25;
  margin-bottom: var(--sp-sm);
}

.faq-item p {
  color: var(--c-text-muted);
  line-height: 1.75;
}

.faq-item p + p {
  margin-top: var(--sp-xs);
}

/* ── Contact Form ───────────────────────────────────────────────*/
.contact-grid {
  display: grid;
  gap: var(--sp-xl);
  align-items: start;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-graphite);
}

.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--f-body);
  font-size: var(--fs-base);
  color: var(--c-text);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 150ms ease;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--c-slate);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-status {
  font-size: var(--fs-sm);
  padding: var(--sp-sm);
  border-radius: var(--radius);
  display: none;
}

.form-status--success {
  background: #edf5f0;
  color: #2d6a4f;
  border: 1px solid #95d5b2;
}

.form-status--error {
  background: #fdf0ee;
  color: #9b2226;
  border: 1px solid #e9c46a;
}

/* ── Resources / Lead Magnet ────────────────────────────────────*/
.resource-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-top: 3px solid var(--c-slate);
  border-radius: var(--radius);
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.resource-card h2 {
  font-family: var(--f-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--c-slate);
  line-height: 1.15;
}

.resource-card p {
  color: var(--c-text-muted);
  line-height: 1.75;
}

.resource-card__form {
  margin-top: var(--sp-sm);
}

.resource-card__disclaimer {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}

/* ── Divider ────────────────────────────────────────────────────*/
.section-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 0;
}

/* ── Bull Integrations callout (reused on interior pages) ───────*/
.related-callout {
  background: var(--c-slate);
  padding: var(--sp-lg) 0;
  margin-top: var(--sp-xl);
}

.related-callout .container {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

@media (min-width: 640px) {
  .related-callout .container {
    flex-direction: row;
    align-items: center;
    gap: var(--sp-md);
  }
}

.related-callout p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.8);
}

.related-callout a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
