/* Bridgelink Holdings — site styles */

.blh {
  --evergreen: #1F4A3F;
  --evergreen-deep: #143028;
  --canvas: #FAF7F2;
  --canvas-warm: #F2EBDD;
  --terracotta: #B95C3E;
  --terracotta-deep: #8E4329;
  --sand: #E8A689;
  --mint: #C8E8DC;
  --ink: #1A1814;
  --ink-soft: #4A453E;
  --ink-faint: #8A857C;
  --rule: #E2DACC;

  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--canvas);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.blh *, .blh *::before, .blh *::after { box-sizing: border-box; }

.blh h1, .blh h2, .blh h3, .blh h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--evergreen-deep);
  margin: 0; padding: 0;
  text-transform: none;
}
.blh p { color: var(--ink-soft); margin: 0; padding: 0; }
.blh a { color: inherit; text-decoration: none; background-image: none; }
.blh a:hover { text-decoration: none; }
.blh ul { margin: 0; padding: 0; list-style: none; }

.blh .container { max-width: 1360px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 64px); }
.blh .narrow { max-width: 760px; margin: 0 auto; }
.blh .lede.wide { max-width: 1080px; }

/* ===== NAV ===== */
.blh .blh-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.blh .nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  /* vertical only — the horizontal gutter comes from .container so the
     brand lines up with the page content below it */
  padding-top: 18px; padding-bottom: 18px;
}
.blh .brand { display: flex; flex-direction: column; line-height: 1.1; flex-shrink: 0; }
.blh .brand-name {
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500;
  color: var(--evergreen-deep); letter-spacing: -0.01em;
}
.blh .brand-tag {
  font-size: 10px; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--terracotta-deep); margin-top: 4px;
}
.blh .nav-links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.blh .nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  transition: color 0.2s ease; position: relative; padding: 4px 0;
}
.blh .nav-links a:hover { color: var(--evergreen); }
.blh .nav-links a.active { color: var(--evergreen-deep); }
.blh .nav-links a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--terracotta);
}
.blh .nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border: 1px solid var(--evergreen);
  color: var(--evergreen-deep); font-size: 13px; font-weight: 500;
  border-radius: 999px; transition: all 0.2s ease; flex-shrink: 0;
}
.blh .nav-cta:hover { background: var(--evergreen); color: var(--canvas); }

/* ===== BUTTONS ===== */
.blh .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.blh .btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; font-size: 14px; font-weight: 500;
  border-radius: 999px; transition: all 0.2s ease;
  border: 1px solid transparent; cursor: pointer;
}
.blh .btn-primary { background: var(--evergreen); color: var(--canvas); border-color: var(--evergreen); }
.blh .btn-primary:hover { background: var(--evergreen-deep); border-color: var(--evergreen-deep); transform: translateY(-1px); }
.blh .btn-secondary { background: transparent; color: var(--evergreen-deep); border-color: var(--rule); }
.blh .btn-secondary:hover { border-color: var(--evergreen); background: rgba(31, 74, 63, 0.04); }
.blh .btn-light { background: var(--canvas); color: var(--evergreen-deep); border-color: var(--canvas); }
.blh .btn-light:hover { background: #fff; transform: translateY(-1px); }
.blh .btn-ghost-light { background: transparent; color: var(--canvas); border-color: rgba(250,247,242,0.3); }
.blh .btn-ghost-light:hover { border-color: var(--canvas); background: rgba(250,247,242,0.06); }
.blh .btn .arrow { transition: transform 0.2s ease; }
.blh .btn:hover .arrow { transform: translateX(3px); }

.blh .textlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--evergreen);
  border-bottom: 1px solid var(--rule); padding-bottom: 3px;
  transition: all 0.2s ease;
}
.blh .textlink:hover { border-color: var(--evergreen); gap: 12px; }
.blh .blh-section.dark .textlink { color: var(--mint); border-color: rgba(200,232,220,0.3); }
.blh .blh-section.dark .textlink:hover { border-color: var(--mint); }

/* ===== SECTIONS ===== */
.blh .blh-section { padding: clamp(72px, 10vw, 118px) 0; }
.blh .blh-section.alt { background: var(--canvas-warm); }
.blh .blh-section.dark { background: var(--evergreen-deep); color: var(--canvas); }
.blh .blh-section.dark h2, .blh .blh-section.dark h3, .blh .blh-section.dark h4 { color: var(--canvas); }
.blh .blh-section.dark p { color: rgba(250, 247, 242, 0.78); }
.blh .blh-section.tight { padding: clamp(56px, 7vw, 84px) 0; }

.blh .eyebrow {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--terracotta-deep); font-weight: 500;
  margin-bottom: 24px; display: inline-block;
}
.blh .blh-section.dark .eyebrow { color: var(--sand); }

.blh h2 { font-size: clamp(32px, 4vw, 46px); font-weight: 400; margin-bottom: 32px; max-width: 760px; }
.blh h2 em { font-style: italic; color: var(--evergreen); }
.blh .blh-section.dark h2 em { color: var(--mint); }

.blh .lede {
  font-family: 'Fraunces', serif;
  font-size: clamp(19px, 2.1vw, 23px);
  line-height: 1.5; font-weight: 300;
  color: var(--ink); margin-bottom: 24px;
}
.blh .blh-section.dark .lede { color: var(--canvas); }

/* ===== HOME HERO ===== */
.blh .hero { padding: clamp(40px, 4vw, 68px) 0 clamp(64px, 8vw, 100px); overflow: hidden; }
.blh .hero-grid {
  display: grid; grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.blh .hero-eyebrow {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--terracotta-deep); font-weight: 500; margin-bottom: 28px;
}
.blh .hero h1 {
  font-size: clamp(38px, 4.4vw, 58px); font-weight: 300; margin-bottom: 28px;
  text-wrap: balance;
}
.blh .hero h1 em { font-style: italic; font-weight: 400; color: var(--evergreen); }
.blh .hero-sub {
  font-size: 19px; line-height: 1.55; color: var(--ink-soft);
  margin-bottom: 40px; max-width: 540px;
}
.blh .hero-image {
  position: relative; aspect-ratio: 4 / 5; border-radius: 4px;
  overflow: hidden; background: var(--canvas-warm);
}
.blh .hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blh .hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,48,40,0.15) 100%);
  pointer-events: none;
}

/* ===== INTERIOR PAGE HERO ===== */
.blh .page-hero {
  padding: clamp(64px, 8vw, 104px) 0 clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--rule);
}
.blh .page-hero h1 {
  font-size: clamp(36px, 4.8vw, 56px); font-weight: 300;
  max-width: 860px; margin-bottom: 24px;
}
.blh .page-hero h1 em { font-style: italic; font-weight: 400; color: var(--evergreen); }
.blh .page-hero .lede { max-width: 1080px; margin-bottom: 0; }

/* ===== STAT BAR ===== */
.blh .statbar {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--rule);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.blh .stat { background: var(--canvas); padding: 36px 28px; text-align: center; }
.blh .blh-section.alt .stat { background: var(--canvas-warm); }
.blh .stat-value {
  font-family: 'Fraunces', serif; font-size: 34px; font-weight: 400;
  color: var(--evergreen); line-height: 1; margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.blh .stat-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.13em;
  color: var(--ink-faint); font-weight: 500;
}

/* ===== MODEL CARDS ===== */
.blh .model-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 52px;
}
.blh .model-card {
  padding: 34px 28px; background: var(--canvas);
  border: 1px solid var(--rule); border-radius: 6px;
  transition: all 0.25s ease;
}
.blh .blh-section.alt .model-card { background: var(--canvas); }
.blh .model-card:hover { border-color: var(--evergreen); transform: translateY(-2px); }
.blh .model-num {
  font-family: 'Fraunces', serif; font-size: 13px; font-style: italic;
  color: var(--terracotta); margin-bottom: 16px; display: block;
}
.blh .model-card h3 {
  font-size: 21px; font-weight: 500; margin-bottom: 12px;
  color: var(--evergreen-deep);
}
.blh .model-card p { font-size: 15px; line-height: 1.6; }

/* ===== CRITERIA CARDS ===== */
.blh .criteria-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 52px;
}
.blh .criterion {
  padding: 32px 24px; background: var(--canvas);
  border: 1px solid var(--rule); border-radius: 6px;
  transition: all 0.25s ease;
}
.blh .criterion:hover { border-color: var(--evergreen); transform: translateY(-2px); }
.blh .criterion-value {
  font-family: 'Fraunces', serif; font-size: 36px; font-weight: 400;
  color: var(--evergreen); line-height: 1; margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.blh .criterion-label { font-size: 13px; color: var(--ink-soft); line-height: 1.4; }
.blh .criterion-label strong {
  color: var(--ink); font-weight: 600; display: block;
  margin-bottom: 4px; font-size: 14px;
}
.blh .criteria-note {
  margin-top: 40px; font-size: 15px; color: var(--ink-soft);
  max-width: 700px; line-height: 1.6;
}

/* ===== SPEC COLUMNS (People / Business / Financials) ===== */
.blh .spec-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 52px); margin-top: 52px;
}
.blh .spec h3 {
  font-size: 20px; font-weight: 500; margin-bottom: 20px;
  padding-bottom: 14px; border-bottom: 1px solid var(--rule);
  color: var(--evergreen-deep);
}
.blh .spec ul li {
  font-size: 15px; line-height: 1.55; color: var(--ink-soft);
  padding-left: 20px; position: relative; margin-bottom: 14px;
}
.blh .spec ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terracotta); opacity: 0.65;
}

/* ===== PILLARS ===== */
.blh .commitment-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 48px); margin-top: 48px;
}
.blh .pillar h3 {
  font-size: 22px; margin-bottom: 12px; font-weight: 500;
  display: flex; align-items: baseline; gap: 14px;
}
.blh .pillar h3 .num {
  font-family: 'Fraunces', serif; font-size: 14px; font-style: italic;
  color: var(--terracotta); font-weight: 400;
}
.blh .blh-section.dark .pillar h3 .num { color: var(--sand); }
.blh .pillar p { font-size: 16px; line-height: 1.6; max-width: 580px; }

/* ===== PROCESS ===== */
.blh .process {
  margin-top: 48px; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.blh .process::before {
  content: ''; position: absolute; top: 18px; left: 6%; right: 6%;
  height: 1px; background: var(--rule); z-index: 0;
}
.blh .blh-section.dark .process::before { background: rgba(250,247,242,0.18); }
.blh .step { position: relative; padding: 0 16px; z-index: 1; }
.blh .step-dot {
  width: 14px; height: 14px; background: var(--canvas);
  border: 2px solid var(--evergreen); border-radius: 50%; margin-bottom: 28px;
}
.blh .blh-section.alt .step-dot { background: var(--canvas-warm); }
.blh .blh-section.dark .step-dot { background: var(--evergreen-deep); border-color: var(--mint); }
.blh .step-num {
  font-family: 'Fraunces', serif; font-size: 12px; font-style: italic;
  color: var(--terracotta-deep); margin-bottom: 8px; display: block;
}
.blh .blh-section.dark .step-num { color: var(--sand); }
.blh .step-title {
  font-family: 'Fraunces', serif; font-size: 19px;
  color: var(--evergreen-deep); margin-bottom: 10px; font-weight: 500;
}
.blh .blh-section.dark .step-title { color: var(--canvas); }
.blh .step-time {
  font-size: 12px; color: var(--ink-faint); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 12px;
}
.blh .blh-section.dark .step-time { color: rgba(250,247,242,0.5); }
.blh .step-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.blh .blh-section.dark .step-desc { color: rgba(250,247,242,0.75); }

/* ===== COMPARISON TABLE ===== */
.blh .compare-wrap { margin-top: 52px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.blh table.compare {
  width: 100%; border-collapse: collapse; min-width: 720px;
  font-size: 14.5px; background: var(--canvas);
}
.blh table.compare th, .blh table.compare td {
  padding: 20px 22px; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--rule);
}
.blh table.compare thead th {
  font-family: 'Fraunces', serif; font-size: 16px; font-weight: 500;
  color: var(--evergreen-deep); background: var(--canvas-warm);
  border-bottom: 1px solid var(--rule);
}
.blh table.compare thead th:first-child { background: transparent; }
.blh table.compare thead th.highlight {
  background: var(--evergreen); color: var(--canvas);
}
.blh table.compare tbody th {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-faint); width: 170px;
}
.blh table.compare td { color: var(--ink-soft); line-height: 1.5; }
.blh table.compare td.highlight {
  background: rgba(31, 74, 63, 0.05); color: var(--ink); font-weight: 500;
}
.blh .compare-scroll-hint {
  font-size: 13px; color: var(--ink-faint); margin-top: 14px; display: none;
}

/* ===== TIMELINE ===== */
.blh .timeline { margin-top: 48px; border-left: 1px solid var(--rule); padding-left: 0; }
.blh .tl-item { position: relative; padding: 0 0 40px 32px; }
.blh .tl-item:last-child { padding-bottom: 0; }
.blh .tl-item::before {
  content: ''; position: absolute; left: -5px; top: 7px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--canvas); border: 2px solid var(--evergreen);
}
.blh .tl-when {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--terracotta-deep); font-weight: 500; margin-bottom: 6px;
}
.blh .tl-what {
  font-family: 'Fraunces', serif; font-size: 19px; font-weight: 500;
  color: var(--evergreen-deep); margin-bottom: 8px;
}
.blh .tl-desc { font-size: 15px; line-height: 1.6; color: var(--ink-soft); }

/* ===== ABOUT SPLIT ===== */
.blh .about-grid {
  display: grid; grid-template-columns: 0.85fr 1fr;
  gap: clamp(40px, 6vw, 72px); align-items: start;
}
.blh .about-grid.reverse { grid-template-columns: 1fr 0.85fr; }
.blh .portrait {
  aspect-ratio: 4 / 5; border-radius: 4px; overflow: hidden;
  background: var(--canvas-warm); position: sticky; top: 100px;
}
.blh .portrait.static { position: static; }
.blh .portrait img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center center; display: block;
}
.blh .about-body p { margin-bottom: 22px; font-size: 17px; max-width: 640px; }
.blh .about-body p:last-child { margin-bottom: 0; }

/* About bio: a smaller portrait so it sits close to the text height instead of
   overhanging it. Capped width keeps it from growing on large monitors, where
   the text column stops widening at its own max-width. */
.blh .about-grid.slim {
  grid-template-columns: 0.6fr 1fr;
  align-items: center;
}
.blh .about-grid.slim .portrait { max-width: 320px; }


/* ===== TRAIT LIST (About) ===== */
.blh .traits { margin-top: 30px; max-width: 620px; }
.blh .trait {
  padding: 20px 0;
  border-top: 1px solid var(--rule);
}
.blh .trait:last-child { border-bottom: 1px solid var(--rule); }
.blh .trait-name {
  font-family: 'Fraunces', serif;
  font-size: 17px; font-weight: 500;
  color: var(--evergreen);
  margin-bottom: 6px;
}
.blh .trait p { font-size: 16px; line-height: 1.6; margin: 0; max-width: 620px; }

/* ===== CAPTIONED FIGURE ===== */
.blh figure.figure { margin: 0; }
.blh figure.figure img {
  width: 100%; display: block;
  border-radius: 4px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.blh figure.figure figcaption {
  margin-top: 12px;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-faint);
  letter-spacing: 0.01em;
}
.blh .blh-section.dark figure.figure figcaption { color: rgba(250,247,242,0.55); }

/* ===== PULLQUOTE ===== */
.blh .pullquote {
  margin: 0 auto; max-width: 780px; text-align: center;
}
.blh .pullquote p {
  font-family: 'Fraunces', serif; font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.4; font-weight: 300; font-style: italic;
  color: var(--evergreen-deep);
}
.blh .blh-section.dark .pullquote p { color: var(--canvas); }
.blh .pullquote .attrib {
  font-family: 'Inter', sans-serif; font-style: normal;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-faint); margin-top: 24px;
}
.blh .blh-section.dark .pullquote .attrib { color: rgba(250,247,242,0.5); }
.blh .quote-ornament {
  width: 40px; height: 1px; background: var(--terracotta);
  margin: 0 auto 36px;
}

/* ===== FAQ ===== */
.blh .faq-list { margin-top: 48px; max-width: 840px; }
.blh details { border-bottom: 1px solid var(--rule); padding: 28px 0; }
.blh details:first-of-type { border-top: 1px solid var(--rule); }
.blh details summary {
  font-family: 'Fraunces', serif; font-size: 21px; font-weight: 500;
  color: var(--evergreen-deep); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; transition: color 0.2s ease;
}
.blh details summary::-webkit-details-marker { display: none; }
.blh details summary:hover { color: var(--terracotta-deep); }
.blh details summary::after {
  content: '+'; font-size: 24px; color: var(--terracotta);
  font-weight: 300; transition: transform 0.25s ease; flex-shrink: 0;
}
.blh details[open] summary::after { transform: rotate(45deg); }
.blh details p {
  margin-top: 18px; font-size: 16px; line-height: 1.65;
  color: var(--ink-soft); max-width: 740px;
}

/* ===== CONTACT ===== */
.blh .contact-final { text-align: center; padding: clamp(80px, 11vw, 128px) 0; }
.blh .contact-final h2 { margin: 0 auto 28px; max-width: 740px; }
.blh .contact-final .lede {
  margin-bottom: 48px; max-width: 640px; margin-left: auto; margin-right: auto;
}
.blh .contact-details {
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(250, 247, 242, 0.2);
  display: flex; justify-content: center; gap: 48px;
  flex-wrap: wrap; font-size: 14px;
}
.blh .contact-details a {
  color: rgba(250, 247, 242, 0.85); transition: color 0.2s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.blh .contact-details a:hover { color: var(--mint); }
.blh .contact-details .label {
  color: rgba(250, 247, 242, 0.5); text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 11px; margin-right: 6px;
}

/* ===== CONTACT PAGE CARDS ===== */
.blh .contact-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px; margin-top: 8px;
}
.blh .contact-card {
  padding: 40px 34px; background: var(--canvas);
  border: 1px solid var(--rule); border-radius: 6px;
  display: flex; flex-direction: column;
}
.blh .contact-card h3 {
  font-size: 23px; font-weight: 500; margin-bottom: 12px;
  color: var(--evergreen-deep);
}
.blh .contact-card p { font-size: 15.5px; line-height: 1.6; margin-bottom: 26px; flex-grow: 1; }
.blh .contact-card .btn { align-self: flex-start; }
.blh .contact-meta {
  margin-top: 52px; padding-top: 36px; border-top: 1px solid var(--rule);
  display: flex; gap: 44px; flex-wrap: wrap; font-size: 15px;
}
.blh .contact-meta a { color: var(--ink-soft); transition: color 0.2s ease; }
.blh .contact-meta a:hover { color: var(--evergreen); }
.blh .contact-meta .label {
  display: block; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--ink-faint);
  font-weight: 500; margin-bottom: 6px;
}

/* ===== EXPECT LIST ===== */
.blh .expect-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.5vw, 44px); margin-top: 48px;
}
.blh .expect h4 {
  font-size: 17px; font-weight: 500; margin-bottom: 10px;
  color: var(--evergreen-deep);
}
.blh .blh-section.dark .expect h4 { color: var(--canvas); }
.blh .expect p { font-size: 15px; line-height: 1.6; }

/* ===== FOOTER ===== */
.blh .blh-footer {
  padding: 48px 0 36px; background: var(--evergreen-deep);
  color: rgba(250, 247, 242, 0.5); font-size: 13px;
  border-top: 1px solid rgba(250, 247, 242, 0.08);
}
.blh .footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 28px; padding-bottom: 32px;
  border-bottom: 1px solid rgba(250,247,242,0.1); margin-bottom: 28px;
}
.blh .footer-brand .brand-name { color: var(--canvas); }
.blh .footer-brand .brand-tag { color: var(--sand); }
.blh .footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.blh .footer-nav a { color: rgba(250,247,242,0.7); transition: color 0.2s ease; }
.blh .footer-nav a:hover { color: var(--canvas); }
.blh .footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .blh .nav-inner { flex-wrap: wrap; gap: 14px 24px; }
  .blh .nav-links { order: 3; width: 100%; margin-left: 0; gap: 24px;
    padding-top: 12px; border-top: 1px solid var(--rule); }
  .blh .nav-cta { margin-left: auto; }
}

@media (max-width: 880px) {
  .blh .hero-grid { grid-template-columns: 1fr; }
  /* keep the portrait ratio on small screens — forcing a landscape box here
     crops the subject's head out of a 4:5 photo */
  .blh .hero-image { aspect-ratio: 4 / 5; max-width: 360px; margin: 0 auto; }
  /* every about-grid variant stacks to one column on small screens.
     .slim must be listed explicitly — its higher specificity would
     otherwise beat this rule, since media queries add none. */
  .blh .about-grid,
  .blh .about-grid.reverse,
  .blh .about-grid.slim { grid-template-columns: 1fr; }
  .blh .portrait { max-width: 320px; margin: 0 auto; position: static; }
  .blh figure.figure { max-width: 360px; margin: 0 auto; }
  .blh .criteria-grid { grid-template-columns: repeat(2, 1fr); }
  .blh .model-grid { grid-template-columns: 1fr; }
  .blh .spec-grid { grid-template-columns: 1fr; }
  .blh .commitment-grid { grid-template-columns: 1fr; }
  .blh .expect-grid { grid-template-columns: 1fr; }
  .blh .contact-grid { grid-template-columns: 1fr; }
  .blh .statbar { grid-template-columns: 1fr; }
  .blh .process { grid-template-columns: 1fr; gap: 32px; }
  .blh .process::before { display: none; }
  .blh .step { padding: 0; }
  .blh .contact-details { flex-direction: column; gap: 20px; }
  .blh .compare-scroll-hint { display: block; }
  .blh .footer-top { flex-direction: column; }
}

@media (max-width: 520px) {
  .blh .criteria-grid { grid-template-columns: 1fr; }
  .blh .nav-links { gap: 18px; font-size: 13px; }
  .blh .contact-meta { flex-direction: column; gap: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .blh *, .blh *::before, .blh *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
