/* ===================================================================
   JH Pro Marketing Services — Main Stylesheet
   Editorial dark, oversized type, terminal-meets-magazine
=================================================================== */

/* --- Reset & Base ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
img { display: block; max-width: 100%; }
ul, ol { padding: 0; margin: 0; }

/* --- Accessibility: Focus Visible -------------------------------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- Accessibility: Skip Link ------------------------------------ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  background: var(--accent);
  color: var(--bg);
  padding: 12px 24px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 0 0 4px 0;
  transition: top 0.1s;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

/* --- Accessibility: Screen Reader Only --------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- CSS Custom Properties --------------------------------------- */
:root {
  --bg: #0E0E0C;
  --bg-2: #161614;
  --surface: #1C1C19;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --ink: #F5F1E8;
  --ink-2: #C7C2B5;
  --muted: #807A6E;
  --accent: #FF5C2E;
  --accent-2: #FFD166;
  --green: #8BD17C;
  --maxw: 1320px;
  --pad: clamp(20px, 4vw, 64px);
  --font-display: 'Bricolage Grotesque', 'Inter', sans-serif;
  --font-display-italic: 'Instrument Serif', 'Times New Roman', serif;
  --headline-weight: 500;
  --photo-crop: 28%;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* --- Layout Containers ------------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.wrap-tight { max-width: 920px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* === TOPBAR (terminal-style status bar) ========================== */
.bold-topbar {
  position: relative;
  background: rgba(14,14,12,0.95);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
}
.bold-topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 10px var(--pad);
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 16px;
}
.bold-topbar .left { color: var(--muted); display: flex; align-items: center; gap: 12px; }
.bold-topbar .status {
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
}
.bold-topbar .status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s infinite;
}
@keyframes blink { 50% { opacity: 0.4; } }
@media (prefers-reduced-motion: reduce) {
  .bold-topbar .status::before { animation: none; }
}
.bold-topbar .center {
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-family: var(--font-body);
  font-size: 14px;
}
.bold-topbar .right { color: var(--muted); text-align: right; }

/* === NAV ======================================================== */
.bold-nav {
  display: flex;
  align-items: center;
  padding: 18px var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  justify-content: space-between;
  gap: 16px;
}
.bold-nav-logo {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
  text-align: left;
  flex-shrink: 0;
}
.bold-nav-logo .name { font-size: 22px; font-weight: 600; color: var(--ink); }
.bold-nav-logo .sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.bold-nav-list {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.bold-nav-list li a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  border: 1px solid transparent;
  border-radius: 999px;
  transition: all 200ms cubic-bezier(0.4,0,0.2,1);
}
.bold-nav-list li a:hover { color: var(--ink); border-color: var(--line-strong); }
.bold-nav-list li a[aria-current="page"] { color: var(--bg); background: var(--ink); }
.bold-nav-cta {
  margin-left: 12px;
  background: var(--accent);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 150ms cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  white-space: nowrap;
}
.bold-nav-cta:hover { transform: scale(1.04); }
.bold-nav-cta svg { flex-shrink: 0; }

/* Mobile Nav Toggle */
.bold-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  margin-left: 8px;
}
.bold-nav-toggle:hover { background: var(--surface); }

@media (max-width: 820px) {
  .bold-nav-toggle { display: flex; }
  .bold-nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    padding: 12px var(--pad);
    gap: 4px;
    z-index: 100;
  }
  .bold-nav-list.open { display: flex; }
  .bold-nav-list li { width: 100%; }
  .bold-nav-list li a { border-radius: 6px; padding: 12px 16px; }
  .bold-nav-cta { display: none; }
}

/* Nav wrapper needs position relative for mobile dropdown */
.bold-nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14,14,12,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

/* === HERO ======================================================= */
.bold-hero { padding: 24px 0 56px; position: relative; overflow: hidden; }
.bold-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.bold-hero-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s infinite;
}
@media (prefers-reduced-motion: reduce) { .bold-hero-tag .dot { animation: none; } }

.bold-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) { .bold-hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.bold-hero-main { display: flex; flex-direction: column; gap: 28px; align-items: flex-start; }

.bold-hero-h1 {
  font-family: var(--font-display);
  font-weight: var(--headline-weight);
  font-size: clamp(52px, 8.4vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.bold-hero-h1 em {
  font-family: var(--font-display-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.bold-hero-h1 .underline {
  display: inline-block;
  position: relative;
}
.bold-hero-h1 .underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.12em;
  background: var(--accent-2);
  z-index: -1;
}

.bold-hero-lede {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-2);
  max-width: 52ch;
  line-height: 1.5;
  text-wrap: pretty;
  margin: 0;
}

.bold-hero-side { display: flex; flex-direction: column; gap: 16px; }

.bold-hero-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  background: #14130F;
  border: 1px solid var(--line);
}
.bold-hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center var(--photo-crop);
  filter: contrast(1.04) saturate(0.92) brightness(0.98);
}
.bold-hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(14,14,12,0.65) 100%);
}
.bold-hero-portrait .crosshair {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px dashed rgba(255,255,255,0.2);
  pointer-events: none;
}
.bold-hero-portrait .label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  z-index: 1;
  display: flex;
  justify-content: space-between;
}

.bold-hero-cta { display: flex; gap: 10px; flex-wrap: wrap; margin: 0; }

/* === BUTTONS ==================================================== */
.bold-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: all 200ms cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.bold-btn svg { flex-shrink: 0; }
.bold-btn-primary { background: var(--accent); color: var(--bg); }
.bold-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,92,46,0.35); }
.bold-btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.bold-btn-ghost:hover { background: var(--surface); }

/* === HERO STATS ================================================= */
.bold-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bold-stat {
  padding: 24px 0;
  padding-right: 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bold-stat:last-child { border-right: 0; }
.bold-stat .v {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
}
.bold-stat .v em { font-style: italic; color: var(--accent); }
.bold-stat .l {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* === MARQUEE ==================================================== */
.bold-marquee {
  margin-top: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 48px;
  overflow: hidden;
  align-items: center;
  background: var(--bg);
}
.bold-marquee-track {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-shrink: 0;
  animation: scrollX 36s linear infinite;
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: var(--ink-2);
  font-weight: 400;
  white-space: nowrap;
}
@keyframes scrollX { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .bold-marquee-track { animation: none; }
}
.bold-marquee-track .star { color: var(--accent); font-style: normal; }

/* === SECTIONS =================================================== */
.bold-section { padding: 64px 0; position: relative; }
.bold-section + .bold-section { border-top: 1px solid var(--line); }

.bold-section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}
@media (max-width: 720px) { .bold-section-head { grid-template-columns: 1fr; gap: 16px; } }

.bold-section-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  gap: 16px;
  padding-bottom: 12px;
  align-self: end;
  white-space: nowrap;
}
.bold-section-num span { color: var(--accent); }

.bold-h2 {
  font-family: var(--font-display);
  font-weight: var(--headline-weight);
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
.bold-h2 em {
  font-family: var(--font-display-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.bold-section-sub {
  font-size: 17px;
  color: var(--ink-2);
  margin: 16px 0 0;
  max-width: none;
  line-height: 1.5;
}
.bold-section-sub-link {
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 150ms;
}
.bold-section-sub-link:hover { color: var(--accent-2); }

/* === SERVICES =================================================== */
.bold-services { display: flex; flex-direction: column; }
.bold-service {
  display: grid;
  grid-template-columns: 80px 1fr 2fr 200px;
  gap: 40px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  transition: padding 240ms, background 240ms;
  text-decoration: none;
  color: inherit;
}
.bold-service:last-child { border-bottom: 1px solid var(--line); }
.bold-service:hover { padding-left: 16px; padding-right: 16px; background: var(--bg-2); }
@media (max-width: 880px) {
  .bold-service { grid-template-columns: 1fr; gap: 12px; }
  .bold-service-price {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .bold-service-price .v { font-size: 28px; }
  .bold-service-pricenote { text-align: center; max-width: none; margin-top: 0; }
  .bold-service-arrow { align-self: center; }
}

.bold-service-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-top: 12px;
}
.bold-service-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0;
}
.bold-service-blurb { font-size: 16px; color: var(--ink-2); margin: 0 0 16px; max-width: 50ch; }
.bold-service-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bold-service-bullets li {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-2);
}
.bold-service-price {
  text-align: right;
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}
.bold-service-price .from {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bold-service-price .v {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.bold-service-pricenote {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  max-width: 180px;
  text-align: right;
  line-height: 1.35;
  margin-top: 4px;
}
.bold-service-arrow {
  align-self: flex-end;
  padding-bottom: 4px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  transition: all 240ms;
  flex-shrink: 0;
}
.bold-service:hover .bold-service-arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  transform: rotate(-45deg);
}

/* === CASES ====================================================== */
.bold-cases { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
@media (max-width: 880px) { .bold-cases { grid-template-columns: 1fr; } }

.bold-case {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  cursor: pointer;
  transition: background 280ms;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  color: inherit;
  text-decoration: none;
}
.bold-case:nth-child(odd) { padding-right: 32px; border-right: 1px solid var(--line); }
.bold-case:nth-child(even) { padding-left: 32px; }
.bold-case:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
@media (max-width: 880px) {
  .bold-case:nth-child(odd) { padding-right: 0; border-right: 0; }
  .bold-case:nth-child(even) { padding-left: 0; }
}
.bold-case:hover { background: linear-gradient(180deg, var(--bg-2), transparent); }

.bold-case-cover {
  aspect-ratio: 16/10;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c, var(--accent)) 0%, color-mix(in srgb, var(--c, var(--accent)), #000 50%) 100%);
  display: grid;
  place-items: end center;
  padding: 0 14% 0;
  position: relative;
}
.bold-case-cover--video,
.bold-case-cover--image { padding: 0; background: #0A0A08; }
.bold-case-cover--video iframe,
.bold-case-cover--image img { width: 100%; height: 100%; object-fit: cover; border: 0; display: block; }
.bold-case-cover--video::before,
.bold-case-cover--image::before { display: none; }
.bold-case-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 50%);
}

.bold-case-row { display: flex; gap: 16px; align-items: baseline; flex-wrap: wrap; }
.bold-case-num { font-family: var(--font-mono); font-size: 12px; color: var(--accent); }
.bold-case-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bold-case-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 4px 0 12px;
}
.bold-case-summary { font-size: 16px; color: var(--ink-2); margin: 0; }
.bold-case-note {
  font-family: var(--font-display-italic);
  font-style: italic;
  font-size: 17px;
  color: var(--accent);
  margin: 8px 0 0;
}

/* === TESTIMONIALS =============================================== */
.bold-testi-list { display: flex; flex-direction: column; gap: 0; }
.bold-testi {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}
.bold-testi:last-child { border-bottom: 1px solid var(--line); }
@media (max-width: 720px) { .bold-testi { grid-template-columns: 1fr; gap: 16px; } }

.bold-testi-side { display: flex; flex-direction: column; gap: 12px; }
.bold-testi-stars { color: var(--accent-2); font-size: 16px; letter-spacing: 3px; }
.bold-testi-author-name { font-weight: 600; font-size: 16px; color: var(--ink); }
.bold-testi-author-role { font-size: 13px; color: var(--muted); }
.bold-testi-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.015em;
  text-wrap: pretty;
  color: var(--ink);
}
.bold-testi-quote em { font-style: italic; font-family: var(--font-display-italic); color: var(--ink); }

/* === ABOUT STRIP ================================================ */
.bold-about-strip {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 880px) { .bold-about-strip { grid-template-columns: 1fr; gap: 32px; } }

.bold-about-img {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: #1A1815;
  border: 1px solid var(--line);
}
.bold-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center var(--photo-crop);
  filter: contrast(1.04) saturate(0.92);
}
.bold-about-body { display: flex; flex-direction: column; gap: 24px; }
.bold-about-body > p { font-size: 19px; color: var(--ink-2); line-height: 1.55; margin: 0; max-width: 56ch; text-wrap: pretty; }
.bold-about-stack { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.bold-about-stack span {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--ink-2);
}

/* === CTA BANNER ================================================= */
.bold-cta {
  padding: 72px 0;
  border-top: 1px solid var(--line);
  background: radial-gradient(120% 100% at 50% 0%, rgba(255,92,46,0.18), transparent 50%);
  text-align: center;
}
.bold-cta h2 {
  font-family: var(--font-display);
  font-weight: var(--headline-weight);
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0 0 32px;
  text-wrap: balance;
}
.bold-cta h2 em {
  font-family: var(--font-display-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.bold-cta > .wrap > p { font-size: 19px; color: var(--ink-2); max-width: 56ch; margin: 0 auto 40px; }
.bold-cta-btns { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.bold-cta-info {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bold-cta-info a { color: var(--ink); }
.bold-cta-info a:hover { color: var(--accent); }

/* === BLOG ======================================================= */
.bold-blog-list { display: flex; flex-direction: column; gap: 0; }
.bold-blog-card {
  display: flex;
  flex-direction: column;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  transition: padding 240ms, background 240ms;
  color: inherit;
  text-decoration: none;
}
.bold-blog-card:last-child { border-bottom: 1px solid var(--line); }
.bold-blog-card:hover { padding-left: 16px; padding-right: 16px; background: var(--bg-2); }

.bold-blog-card-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  align-items: center;
}
.bold-blog-card-meta .bold-blog-num { color: var(--accent); }

.bold-blog-card-title {
  font-family: var(--font-display);
  font-weight: var(--headline-weight);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.bold-blog-card-excerpt {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0 0 18px;
  max-width: 64ch;
}
.bold-blog-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.bold-blog-card-tags span {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-2);
}
.bold-blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  transition: gap 200ms;
}
.bold-blog-card:hover .bold-blog-card-cta { gap: 14px; }

/* Blog post detail */
.bold-post-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  padding: 24px 0 80px;
}
@media (max-width: 880px) { .bold-post-grid { grid-template-columns: 1fr; gap: 24px; } }

.bold-post-side {
  position: sticky;
  top: 80px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bold-post-side-block { padding: 12px 0; border-bottom: 1px solid var(--line); }
.bold-post-side-block:last-child { border: 0; }
.bold-post-side-block .l {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 8px;
}
.bold-post-side-block .v { font-size: 16px; color: var(--ink); }

.bold-post-body p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 28px;
  max-width: 64ch;
  text-wrap: pretty;
}
.bold-post-body p:first-of-type {
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink-2);
}
.bold-post-body p:first-of-type::first-letter {
  font-family: var(--font-display-italic);
  font-style: italic;
  float: left;
  font-size: 4.5em;
  line-height: 0.85;
  padding: 6px 14px 0 0;
  color: var(--accent);
}

/* === FOOTER ===================================================== */
.bold-footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bold-footer-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.bold-footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  vertical-align: middle;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: color 150ms, border-color 150ms;
}
.bold-footer-social:hover,
.bold-footer-social:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
}

/* === INNER PAGE HERO ============================================ */
.bold-page-hero { padding: 56px 0 40px; border-bottom: 1px solid var(--line); }
.bold-page-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.bold-page-hero-eyebrow .accent { color: var(--accent); }
.bold-page-hero h1 {
  font-family: var(--font-display);
  font-weight: var(--headline-weight);
  font-size: clamp(64px, 11vw, 160px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0;
  text-wrap: balance;
}
.bold-page-hero h1 em {
  font-family: var(--font-display-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.bold-page-hero .lede {
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink-2);
  max-width: none;
  margin: 32px 0 0;
  line-height: 1.45;
}

/* === CASE STUDY DETAIL ========================================= */
.bold-cs-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  padding: 24px 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap 200ms, color 200ms;
}
.bold-cs-back:hover,
.bold-cs-back:focus-visible { gap: 14px; color: var(--accent); }

.bold-cs-cover {
  margin: 48px 0;
  aspect-ratio: 16/8;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c, var(--accent)) 0%, color-mix(in srgb, var(--c, var(--accent)), #000 50%) 100%);
  position: relative;
  display: grid;
  place-items: end center;
  padding: 0 12%;
}
.bold-cs-cover--video,
.bold-cs-cover--image { padding: 0; background: #0A0A08; aspect-ratio: 16/9; }
.bold-cs-cover--video iframe,
.bold-cs-cover--image img { width: 100%; height: 100%; object-fit: cover; border: 0; display: block; }
.bold-cs-cover--video::before,
.bold-cs-cover--image::before { display: none; }
.bold-cs-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.2), transparent 50%);
}

.bold-cs-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  padding: 48px 0 100px;
  border-top: 1px solid var(--line);
}
@media (max-width: 880px) { .bold-cs-grid { grid-template-columns: 1fr; gap: 24px; } }

.bold-cs-side {
  position: sticky;
  top: 80px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bold-cs-side-block { padding: 14px 0; border-bottom: 1px solid var(--line); }
.bold-cs-side-block:last-child { border: 0; }
.bold-cs-side-block .l {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 6px;
}
.bold-cs-side-block .v { font-size: 16px; color: var(--ink); }
.bold-cs-side-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.bold-cs-side-tags span {
  padding: 4px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  font-size: 11px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}

.bold-cs-content h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 40px 0 16px;
  line-height: 1;
}
.bold-cs-content h3:first-child { margin-top: 0; }
.bold-cs-content h3 em { font-style: italic; color: var(--accent); }
.bold-cs-content p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 16px;
  max-width: 64ch;
  text-wrap: pretty;
}
.bold-cs-takeaway {
  background: var(--bg-2);
  border-left: 3px solid var(--accent);
  padding: 28px 32px;
  margin: 32px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.3;
  color: var(--ink);
  border-radius: 0 4px 4px 0;
  text-wrap: pretty;
}

/* === ABOUT PAGE ================================================= */
.bold-about-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: start;
}
.bold-about-split-text h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  line-height: 1;
}
.bold-about-split-text h3 em { font-style: italic; color: var(--accent); }
.bold-about-split-text p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 16px;
  text-wrap: pretty;
}
.bold-about-split-img {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: #1A1815;
  position: sticky;
  top: 24px;
}
.bold-about-split-img img { width: 100%; height: auto; display: block; object-fit: contain; }
@media (max-width: 900px) {
  .bold-about-split { grid-template-columns: 1fr; }
  .bold-about-split-img { position: static; }
}
.bold-about-wide p { max-width: none !important; }

.bold-cs-content.bold-about-wide h3 {
  font-size: clamp(28px, 3.5vw, 48px);
}

/* === CONTACT PAGE =============================================== */
.bold-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 64px 0 100px;
}
@media (max-width: 880px) { .bold-contact-grid { grid-template-columns: 1fr; } }

.bold-contact-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.bold-contact-row:last-of-type { border-bottom: 1px solid var(--line); }
.bold-contact-row .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--accent);
}
.bold-contact-row .l {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.bold-contact-row .v { font-size: 18px; font-weight: 500; color: var(--ink); }

/* === FAQ ======================================================== */
.bold-faq-item {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.bold-faq-item:last-child { border-bottom: 1px solid var(--line); }
.bold-faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.bold-faq-item summary::-webkit-details-marker { display: none; }
.bold-faq-item summary .marker {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 200ms;
}
.bold-faq-item[open] summary .marker { transform: rotate(45deg); }
.bold-faq-item p { margin: 14px 0 4px; color: var(--ink-2); font-size: 15px; line-height: 1.6; }

/* Also Worked With */
.bold-also-worked {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.bold-also-worked-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.bold-also-worked-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.bold-also-worked-list li span {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--ink-2);
  display: inline-block;
}
