/*
Theme Name: J4G Design
Theme URI: https://www.j4gdesign.co.uk
Author: Christopher Mollard
Author URI: https://www.j4gdesign.co.uk/about
Description: Bold, brash B&W + yellow theme for the J4G Design studio. First-person voiced. Built around ACF Pro and SeoPress.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: j4g
*/

/* ============================================================
   J4G DESIGN — MAIN STYLESHEET
   High-contrast, image-rich, aggressive hierarchy.
   ============================================================ */

/* --- Custom Properties ------------------------------------ */
/* Palette sourced from live j4gdesign.co.uk — teal-green +
   warm gold (variations + neutral extensions). */
:root {
  --green:         #175666;  /* brand primary — dark teal-green */
  --green-mid:     #1F6F85;  /* brighter hover/accent */
  --green-light:   #E5F0F6;  /* pale section background (from live site) */
  --green-dark:    #122327;  /* deep surface — replaces near-black */
  --green-deepest: #0A181B;  /* ultra-dark hero/footer */

  --yellow:        #ECB826;  /* brand gold */
  --yellow-dark:   #B8901A;  /* hover/pressed */
  --yellow-light:  #FBEFC0;  /* pale cream-gold */

  --white:        #FFFFFF;
  --off-white:    #F6F5F1;
  --light-grey:   #E4E4E1;
  --mid-grey:     #8F8F8B;
  --dark-grey:    #3A3A38;
  --near-black:   #122327;   /* brand deep teal — was #0A0A0A */
  --black:        #000000;

  --font-head: 'Lato', 'Segoe UI', sans-serif;
  --font-body: 'Lato', 'Segoe UI', system-ui, sans-serif;

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 128px;
  --space-3xl: 180px;

  --max-w: 1280px;
  --max-w-wide: 1440px;
  --gutter: 28px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.14);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.22);
  --shadow-xl: 0 40px 90px rgba(0,0,0,0.32);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--near-black);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--near-black); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--green); }
ul { list-style: none; }
::selection { background: var(--yellow); color: var(--near-black); }

/* --- Typography -------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--near-black);
}
h1 {
  font-size: clamp(2.6rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.04em;
}
h1.display {
  font-size: clamp(3rem, 11vw, 8.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.92;
}
h2 {
  font-size: clamp(2rem, 5.2vw, 4.2rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
}
h3 {
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
h4 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}
p  { font-size: 1rem; line-height: 1.7; color: var(--dark-grey); }
p + p { margin-top: var(--space-sm); }
.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: var(--dark-grey);
  font-weight: 400;
}
.kicker {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  line-height: 1.5;
  color: var(--dark-grey);
  font-weight: 500;
  max-width: 60ch;
}
.display-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(4rem, 14vw, 11rem);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--yellow);
}
.mark-yellow {
  background: linear-gradient(180deg, transparent 60%, var(--yellow) 60%);
  padding: 0 0.1em;
}
em.accent { color: var(--yellow); font-style: normal; }
em.green  { color: var(--green); font-style: normal; }

/* --- Layout ------------------------------------------------ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-wide {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section      { padding: var(--space-2xl) 0; }
.section-lg   { padding: var(--space-3xl) 0; }
.section-sm   { padding: var(--space-xl)  0; }
.section-alt  { background: var(--off-white); }
.section-dark { background: var(--near-black); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p  { color: rgba(255,255,255,0.72); }
.section-dark .eyebrow { color: var(--yellow); }
.section-green { background: var(--green); color: var(--white); }
.section-green h1, .section-green h2, .section-green h3, .section-green h4 { color: var(--white); }
.section-green p { color: rgba(255,255,255,0.82); }
.section-green .eyebrow { color: var(--yellow); }

.grid          { display: grid; gap: var(--space-md); }
.grid-2        { grid-template-columns: repeat(2, 1fr); }
.grid-3        { grid-template-columns: repeat(3, 1fr); }
.grid-4        { grid-template-columns: repeat(4, 1fr); }
.grid-auto     { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

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

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--yellow);
  color: var(--near-black);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--near-black);
  border-color: var(--near-black);
  color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-dark {
  background: var(--near-black);
  color: var(--white);
  border-color: var(--near-black);
}
.btn-dark:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--near-black);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--near-black);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--near-black);
  border-color: var(--near-black);
}
.btn-outline:hover {
  background: var(--near-black);
  color: var(--yellow);
}
.btn-sm  { padding: 12px 22px; font-size: 0.9rem; }
.btn-lg  { padding: 22px 40px; font-size: 1.1rem; }

/* --- Skip Nav --------------------------------------------- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--yellow);
  color: var(--near-black);
  padding: 10px 20px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: 700;
  z-index: 9999;
}
.skip-nav:focus { top: 0; }

/* --- Navigation ------------------------------------------- */
.nav {
  background: var(--near-black);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 0;
}
.nav__logo img {
  display: block;
  height: 50px;
  width: auto;
  max-width: 100%;
}
.footer__logo .nav__logo img { height: 56px; }
@media (max-width: 600px) {
  .nav__logo img { height: 40px; }
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}
.nav__links > li > a {
  color: rgba(255,255,255,0.82);
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 10px 2px;
  text-decoration: none;
  position: relative;
  transition: color 0.2s var(--ease);
  white-space: nowrap;
}
.nav__links > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width 0.25s var(--ease);
}
.nav__links > li > a:hover { color: var(--white); }
.nav__links > li > a:hover::after { width: 100%; }

.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 10px;
  z-index: 300;
  border: 1px solid rgba(0,0,0,0.06);
}
.nav__dropdown:hover .nav__dropdown-menu { display: block; }
.nav__dropdown-menu li a {
  display: block;
  padding: 12px 16px;
  color: var(--near-black);
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.nav__dropdown-menu li a:hover {
  background: var(--near-black);
  color: var(--yellow);
}
.nav__dropdown-menu li a::after { display: none; }
.nav__cta {
  background: var(--yellow) !important;
  color: var(--near-black) !important;
  padding: 12px 22px !important;
  border-radius: 100px;
  font-weight: 800 !important;
  font-family: var(--font-head);
}
.nav__cta:hover { background: var(--white) !important; color: var(--near-black) !important; }
.nav__cta::after { display: none !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* --- Breadcrumb ------------------------------------------- */
.breadcrumb { padding: 14px 0; background: var(--near-black); border-bottom: 1px solid rgba(255,255,255,0.08); }
.breadcrumb ol {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 8px; color: rgba(255,255,255,0.3); }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb li:last-child { color: var(--yellow); }

/* --- Eyebrow labels --------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--near-black);
  margin-bottom: var(--space-sm);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--yellow);
}
.eyebrow-pill {
  display: inline-block;
  background: var(--yellow);
  color: var(--near-black);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

/* --- Section header --------------------------------------- */
.section-header { margin-bottom: var(--space-xl); max-width: 900px; }
.section-header-center {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-xl);
}
.section-header-center .eyebrow { justify-content: center; }
.section-header-center .eyebrow::before { display: none; }
.section-header h2,
.section-header-center h2 { margin-bottom: var(--space-md); }

/* --- Hero ------------------------------------------------- */
.hero {
  background: var(--near-black);
  color: var(--white);
  padding: var(--space-2xl) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__copy { position: relative; z-index: 2; }
.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  max-width: 14ch;
}
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero p {
  color: rgba(255,255,255,0.78);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 52ch;
  margin-bottom: var(--space-lg);
  line-height: 1.55;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}
.hero__image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--green-dark);
  box-shadow: var(--shadow-xl);
}
.hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(1.02);
}
.hero__image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}
.hero__badge {
  position: absolute;
  top: var(--space-md); left: var(--space-md);
  background: var(--yellow);
  color: var(--near-black);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 100px;
  z-index: 3;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero__stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}
.hero__stat span {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.02em;
}

/* --- Page Header (interior) ------------------------------- */
.page-header {
  background: var(--near-black);
  color: var(--white);
  padding: var(--space-2xl) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}
.page-header__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: end;
}
.page-header h1 { color: var(--white); margin-bottom: var(--space-md); }
.page-header p {
  color: rgba(255,255,255,0.78);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  max-width: 60ch;
  line-height: 1.55;
}
.page-header__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--green-dark);
  box-shadow: var(--shadow-xl);
}
.page-header__image img { width: 100%; height: 100%; object-fit: cover; }

/* --- Cards ------------------------------------------------ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--light-grey);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--near-black); }
.card-dark {
  background: var(--near-black);
  border-color: var(--near-black);
  color: var(--white);
}
.card-dark h3, .card-dark h4 { color: var(--white); }
.card-dark p { color: rgba(255,255,255,0.72); }
.card-green {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.card-green h3, .card-green h4 { color: var(--white); }
.card-green p { color: rgba(255,255,255,0.82); }
.card-yellow-top { border-top: 4px solid var(--yellow); }

.card__icon {
  width: 56px; height: 56px;
  background: var(--yellow);
  color: var(--near-black);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: var(--space-md);
  font-weight: 800;
}
.card-dark .card__icon { background: var(--yellow); color: var(--near-black); }
.card-green .card__icon { background: var(--yellow); color: var(--near-black); }
.card h3 { margin-bottom: var(--space-xs); }

/* --- Service cards (image-rich) --------------------------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-grey);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--near-black);
}
.service-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--near-black);
  overflow: hidden;
}
.service-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55));
  pointer-events: none;
}
.service-card__num {
  position: absolute;
  top: var(--space-md); left: var(--space-md);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--yellow);
  letter-spacing: 0.08em;
  z-index: 2;
}
.service-card__title {
  position: absolute;
  bottom: var(--space-md); left: var(--space-md); right: var(--space-md);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  z-index: 2;
}
.service-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}
.service-card__body p { margin-bottom: 0; }
.service-card__list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.service-card__list li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 0.92rem;
  color: var(--dark-grey);
  border-bottom: 1px solid var(--light-grey);
}
.service-card__list li:last-child { border-bottom: none; }
.service-card__list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--near-black);
  font-weight: 800;
}
.service-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--near-black);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: gap 0.25s var(--ease);
}
.service-card__cta::after {
  content: '→';
  transition: transform 0.25s var(--ease);
}
.service-card:hover .service-card__cta { gap: 14px; }
.service-card:hover .service-card__cta::after { transform: translateX(4px); }

/* --- Testimonials ----------------------------------------- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--light-grey);
  position: relative;
  transition: all 0.25s var(--ease);
}
.testimonial:hover {
  border-color: var(--near-black);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testimonial::before {
  content: '“';
  position: absolute;
  top: 10px; left: var(--space-md);
  font-family: var(--font-head);
  font-size: 6rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.testimonial__quote {
  font-family: var(--font-head);
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--near-black);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: var(--space-lg) 0 var(--space-md);
  position: relative;
}
.testimonial__author { font-family: var(--font-head); font-weight: 800; font-size: 0.95rem; color: var(--near-black); letter-spacing: -0.01em; }
.testimonial__company { font-size: 0.85rem; color: var(--mid-grey); margin-top: 2px; }

/* --- Pricing --------------------------------------------- */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 2px solid var(--light-grey);
  text-align: left;
  transition: all 0.25s var(--ease);
  position: relative;
}
.pricing-card:hover { border-color: var(--near-black); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pricing-card--featured {
  border-color: var(--near-black);
  background: var(--near-black);
  color: var(--white);
}
.pricing-card--featured .pricing__label { color: var(--yellow); }
.pricing-card--featured .pricing__price { color: var(--white); }
.pricing-card--featured p { color: rgba(255,255,255,0.78); }
.pricing-card--featured .pricing__features li { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.1); }
.pricing-card--featured .pricing__features li::before { color: var(--yellow); }
.pricing-card--featured .btn-outline {
  border-color: var(--yellow);
  color: var(--yellow);
}
.pricing-card--featured .btn-outline:hover { background: var(--yellow); color: var(--near-black); }

.pricing-badge {
  position: absolute;
  top: -14px; left: var(--space-lg);
  background: var(--yellow);
  color: var(--near-black);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.pricing__label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--near-black);
  margin-bottom: var(--space-sm);
}
.pricing__price {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  font-weight: 900;
  color: var(--near-black);
  margin: var(--space-sm) 0 var(--space-md);
  line-height: 1;
  letter-spacing: -0.04em;
}
.pricing__price sup { font-size: 1.2rem; vertical-align: top; margin-top: 10px; font-weight: 700; }
.pricing__price sub { font-size: 0.95rem; font-weight: 500; color: var(--dark-grey); letter-spacing: -0.01em; }
.pricing-card--featured .pricing__price sub { color: rgba(255,255,255,0.6); }
.pricing__desc { font-size: 0.95rem; margin-bottom: var(--space-md); }
.pricing__features {
  list-style: none;
  text-align: left;
  margin: var(--space-md) 0;
}
.pricing__features li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--light-grey);
  font-size: 0.9rem;
  color: var(--dark-grey);
  position: relative;
}
.pricing__features li:last-child { border-bottom: none; }
.pricing__features li::before { content: '✓'; position: absolute; left: 0; color: var(--near-black); font-weight: 800; }

/* --- Multi-tier pricing (3 audience tiers per package) --- */
.pricing__timeframe {
  font-size: 0.78rem;
  color: var(--mid-grey);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: -4px 0 var(--space-sm);
  font-weight: 700;
}
.pricing-card--featured .pricing__timeframe { color: rgba(255,255,255,0.55); }
.pricing__tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: var(--space-sm) 0 var(--space-md);
  padding: 10px;
  background: var(--off-white);
  border-radius: var(--radius-md);
}
.pricing__tier {
  text-align: center;
  padding: 10px 4px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--light-grey);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.pricing__tier--featured { background: var(--yellow-light); border-color: var(--yellow); }
.pricing__tier-label {
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mid-grey);
  line-height: 1.2;
}
.pricing__tier-price {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--near-black);
  line-height: 1;
  letter-spacing: -0.02em;
}
.pricing__tier-price sup { font-size: 0.65rem; vertical-align: top; margin-right: 1px; font-weight: 700; }
.pricing-card--featured .pricing__tiers { background: rgba(255,255,255,0.06); }
.pricing-card--featured .pricing__tier { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.pricing-card--featured .pricing__tier--featured { background: var(--yellow); border-color: var(--yellow); }
.pricing-card--featured .pricing__tier-label { color: rgba(255,255,255,0.55); }
.pricing-card--featured .pricing__tier-price { color: var(--white); }
.pricing-card--featured .pricing__tier--featured .pricing__tier-label { color: var(--near-black); }
.pricing-card--featured .pricing__tier--featured .pricing__tier-price { color: var(--near-black); }

/* --- Location Grid ---------------------------------------- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-sm);
}
.location-card {
  background: var(--white);
  border: 2px solid var(--near-black);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: left;
  text-decoration: none;
  color: var(--near-black);
  transition: all 0.25s var(--ease);
  display: block;
  position: relative;
  overflow: hidden;
}
.location-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--near-black);
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
  z-index: 0;
}
.location-card:hover::before { transform: translateY(0); }
.location-card:hover {
  color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.location-card > * { position: relative; z-index: 1; }
.location-card__icon {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: var(--space-sm);
}
.location-card:hover .location-card__icon { color: rgba(255,255,255,0.5); }
.location-card__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.location-card__label {
  font-size: 0.82rem;
  color: var(--dark-grey);
  display: block;
}
.location-card:hover .location-card__label { color: rgba(255,255,255,0.7); }

/* --- Process steps ---------------------------------------- */
.process-grid { display: grid; gap: var(--space-lg); }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-lg);
  align-items: start;
  padding: var(--space-md) 0;
  border-top: 1px solid var(--light-grey);
}
.process-step:first-child { border-top: 2px solid var(--near-black); }
.process-step__num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--near-black);
  line-height: 1;
  letter-spacing: -0.04em;
}
.process-step h4 { margin-bottom: 8px; font-size: 1.35rem; letter-spacing: -0.02em; }
.process-step p { font-size: 1rem; }

.section-dark .process-step,
.section-green .process-step { border-top-color: rgba(255,255,255,0.14); }
.section-dark .process-step:first-child,
.section-green .process-step:first-child { border-top-color: var(--yellow); }
.section-dark .process-step__num,
.section-green .process-step__num { color: var(--yellow); }

/* --- Two-column ------------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.two-col-60 { grid-template-columns: 3fr 2fr; }
.two-col-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.two-col-image__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--green-dark);
  box-shadow: var(--shadow-lg);
}
.two-col-image__media img { width: 100%; height: 100%; object-fit: cover; }

/* --- Highlight / info boxes ------------------------------- */
.box-yellow {
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  color: var(--near-black);
}
.box-yellow h3, .box-yellow h4 { color: var(--near-black); }
.box-yellow p { color: var(--near-black); }
.box-dark {
  background: var(--near-black);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  color: var(--white);
}
.box-dark h3, .box-dark h4 { color: var(--white); }
.box-dark p { color: rgba(255,255,255,0.78); }
.box-green {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  color: var(--white);
}
.box-green h3, .box-green h4 { color: var(--yellow); }
.box-green p { color: rgba(255,255,255,0.88); }

/* --- Trust bar -------------------------------------------- */
.trust-bar {
  background: var(--yellow);
  padding: var(--space-md) 0;
  border-top: 2px solid var(--near-black);
  border-bottom: 2px solid var(--near-black);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--near-black);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.trust-item strong { font-weight: 800; }
.trust-item__icon { font-size: 1.3rem; }

/* --- CTA Banner ------------------------------------------- */
.cta-banner {
  background: var(--near-black);
  color: var(--white);
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(245,197,24,0.1), transparent 70%);
  pointer-events: none;
}
.cta-banner > .container { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); margin-bottom: var(--space-md); font-size: clamp(2.4rem, 6vw, 5rem); }
.cta-banner p {
  color: rgba(255,255,255,0.78);
  margin-bottom: var(--space-lg);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.15rem;
}
.cta-banner__actions { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; }

/* --- CTA Split (image + copy) ----------------------------- */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--near-black);
  color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-items: stretch;
}
.cta-split__media {
  min-height: 420px;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}
.cta-split__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.cta-split__copy { padding: var(--space-xl); display: flex; flex-direction: column; justify-content: center; }
.cta-split h2 { color: var(--white); margin-bottom: var(--space-md); }
.cta-split p { color: rgba(255,255,255,0.78); margin-bottom: var(--space-lg); }

/* --- Tags ------------------------------------------------- */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tag-yellow { background: var(--yellow); color: var(--near-black); }
.tag-dark   { background: var(--near-black); color: var(--white); }
.tag-outline { background: transparent; color: var(--near-black); border: 1.5px solid var(--near-black); }

/* --- Check list ------------------------------------------- */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  padding-left: 32px;
  position: relative;
  font-size: 1rem;
  color: var(--dark-grey);
  line-height: 1.55;
}
.check-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 2px;
  color: var(--near-black);
  font-weight: 800;
  font-size: 1.05rem;
  background: var(--yellow);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* --- Feature grid with images ----------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s var(--ease);
}
.feature-card:hover { border-color: var(--near-black); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--off-white);
}
.feature-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.feature-card:hover .feature-card__media img { transform: scale(1.05); }
.feature-card__body { padding: var(--space-md) var(--space-lg) var(--space-lg); }
.feature-card__body h4 { margin-bottom: 8px; font-size: 1.25rem; }
.feature-card__body p { font-size: 0.95rem; }

/* --- Image mosaic ----------------------------------------- */
.mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: repeat(2, 220px);
  gap: var(--space-sm);
}
.mosaic__tile {
  background: var(--near-black);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.mosaic__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.mosaic__tile:hover img { transform: scale(1.06); }
.mosaic__tile--tall { grid-row: span 2; }
.mosaic__tile--wide { grid-column: span 2; }

/* --- Big stat --------------------------------------------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
  border-top: 2px solid var(--near-black);
  border-bottom: 2px solid var(--near-black);
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat__num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  color: var(--near-black);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 6px;
}
.stat__label {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-grey);
  letter-spacing: -0.01em;
  max-width: 22ch;
}
.section-dark .stat-row,
.section-green .stat-row {
  border-top-color: var(--yellow);
  border-bottom-color: var(--yellow);
}
.section-dark .stat__num,
.section-green .stat__num { color: var(--yellow); }
.section-dark .stat__label,
.section-green .stat__label { color: rgba(255,255,255,0.78); }

/* --- Work / portfolio grid -------------------------------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-md);
}
.work-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--near-black);
  display: block;
  color: var(--white);
}
.work-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.6s var(--ease), opacity 0.4s var(--ease);
}
.work-card:hover img { transform: scale(1.06); opacity: 0.55; }
.work-card__tag {
  position: absolute;
  top: var(--space-md); left: var(--space-md);
  background: var(--yellow);
  color: var(--near-black);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  z-index: 2;
}
.work-card__title {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--space-lg) var(--space-md) var(--space-md);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  z-index: 2;
}

/* --- Footer ----------------------------------------------- */
.footer { background: var(--near-black); padding: var(--space-2xl) 0 var(--space-lg); color: var(--white); }
.footer p { color: inherit; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
@media (max-width: 1100px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-lg); } }
.footer__logo { margin-bottom: var(--space-md); }
.footer__heading {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 42ch;
  margin: 0 0 0.85rem;
}
.footer__tagline { font-size: 0.95rem; line-height: 1.7; max-width: 42ch; }
.footer__tagline p { margin: 0; color: rgba(255,255,255,0.92); }
.footer__tagline p + p { margin-top: 0.85rem; }
.footer__contact { margin-top: var(--space-md); display: flex; flex-direction: column; gap: 8px; }
.footer__contact a { color: rgba(255,255,255,0.92); font-size: 0.95rem; transition: color 0.2s var(--ease); font-family: var(--font-head); font-weight: 600; }
.footer__contact-row > span:not(.footer__contact-label) { color: rgba(255,255,255,0.92); font-size: 0.95rem; font-family: var(--font-head); font-weight: 600; }
.footer__contact a:hover { color: var(--yellow); }
.footer__col-head {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: var(--space-md);
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: rgba(255,255,255,0.62); font-size: 0.92rem; font-family: var(--font-head); font-weight: 500; letter-spacing: -0.01em; transition: color 0.2s var(--ease); }
.footer__links a:hover { color: var(--yellow); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer__bottom a { color: rgba(255,255,255,0.5); }
.footer__bottom a:hover { color: var(--yellow); }

/* --- Related links section -------------------------------- */
.related-links { display: flex; flex-wrap: wrap; gap: 10px; }
.related-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1.5px solid var(--near-black);
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--near-black);
  transition: all 0.2s var(--ease);
}
.related-link:hover { background: var(--near-black); color: var(--yellow); }

/* --- Media placeholder ------------------------------------ */
.media-placeholder {
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.media-placeholder--yellow {
  background:
    repeating-linear-gradient(-45deg, rgba(0,0,0,0.05) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  color: rgba(0,0,0,0.5);
}

/* --- Responsive ------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-lg); }
  .hero__image { aspect-ratio: 16 / 10; max-height: 420px; }
  .page-header__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .page-header__image { aspect-ratio: 16 / 10; max-height: 360px; }
  .cta-split { grid-template-columns: 1fr; }
  .cta-split__media { min-height: 280px; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 200px); }
  .mosaic__tile--tall { grid-row: auto; }
  .mosaic__tile--wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --space-2xl: 80px; --space-3xl: 110px; }
  .nav__links { display: none; }
  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 80px;
    left: 0; right: 0;
    background: var(--near-black);
    padding: var(--space-md);
    gap: 4px;
    z-index: 199;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav__links.is-open > li { width: 100%; }
  .nav__links.is-open > li > a { display: block; padding: 14px 8px; font-size: 1rem; }
  .nav__toggle { display: flex; }
  .nav__dropdown-menu {
    position: static !important;
    box-shadow: none !important;
    background: rgba(255,255,255,0.04) !important;
    margin-top: 4px;
    padding: 4px 0;
    display: none;
    border: none !important;
  }
  .nav__dropdown.is-open .nav__dropdown-menu { display: block; }
  .nav__dropdown-menu li a { color: rgba(255,255,255,0.72) !important; padding-left: 24px !important; }
  .nav__dropdown-menu li a:hover { background: rgba(255,255,255,0.08) !important; color: var(--yellow) !important; }
  .nav__cta { margin-top: 8px; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .two-col, .two-col-60, .two-col-image { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .process-step { grid-template-columns: 60px 1fr; gap: var(--space-md); }
  .process-step__num { font-size: 1.8rem; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .trust-bar__inner { gap: var(--space-sm); }
  .trust-item { font-size: 0.85rem; }
  .hero { padding: var(--space-xl) 0; }
  .mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(4, 200px); }
  .mosaic__tile--wide { grid-column: auto; }
}

@media (max-width: 480px) {
  :root { --gutter: 20px; }
  .btn { padding: 14px 24px; font-size: 0.95rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .trust-bar__inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   BOLD THEME — brash B&W + yellow, uppercase-first.
   Opt-in via `<body class="theme-bold">`. Site-wide nav/body
   styling scopes under .theme-bold; component classes use the
   `bold-` prefix and can be used with or without the body class.
   ============================================================ */
:root { --font-hand: 'Caveat', cursive; }

body.theme-bold { background: var(--near-black); color: var(--white); }
.theme-bold .nav { background: var(--near-black); border-bottom: 1px solid rgba(255,255,255,0.1); }
.theme-bold .nav__links > li > a { color: var(--white); }
.theme-bold .nav__links > li > a:hover { color: var(--yellow); }
.theme-bold .nav__cta {
  background: var(--yellow) !important;
  color: var(--near-black) !important;
  border-color: var(--yellow) !important;
}
.theme-bold .breadcrumb {
  background: var(--near-black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* --- Bold button -------------------------------------------- */
.bold-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.bold-btn--yellow { background: var(--yellow); color: var(--near-black); border-color: var(--yellow); }
.bold-btn--yellow:hover { background: var(--white); border-color: var(--white); color: var(--near-black); }
.bold-btn--ghost { background: transparent; color: var(--white); }
.bold-btn--ghost:hover { background: var(--white); color: var(--near-black); }
.bold-btn--dark { background: var(--near-black); color: var(--white); border-color: var(--near-black); }
.bold-btn--dark:hover { background: var(--yellow); color: var(--near-black); border-color: var(--yellow); }
.bold-btn--outline-dark { background: transparent; color: var(--near-black); border-color: var(--near-black); }
.bold-btn--outline-dark:hover { background: var(--near-black); color: var(--white); }

/* --- Bold eyebrow ------------------------------------------- */
.bold-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: var(--space-md);
}
.bold-eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--yellow);
}

/* --- Bold hero ---------------------------------------------- */
.bold-hero {
  background: var(--near-black);
  color: var(--white);
  padding: 60px 0 40px;
  position: relative;
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.bold-hero--compact { min-height: auto; padding: 80px 0 60px; }

/* Stepped vertical bands — used on the homepage primary hero.
   Five horizontal stops, decreasing brightness left → right. */
.bold-hero--banded {
  background:
    linear-gradient(
      to right,
      #1d4759 0%, #1d4759 38%,
      #15363f 38%, #15363f 50%,
      #0d2531 50%, #0d2531 60%,
      #061620 60%, #061620 79%,
      #00040d 79%, #00040d 100%
    );
}
/* No yellow blur on the banded variant — the bands carry the visual weight */
.bold-hero--banded::before { display: none; }

.bold-hero::before {
  content: '';
  position: absolute;
  top: 10%; right: -200px;
  width: 500px; height: 500px;
  background: var(--yellow);
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.25;
  z-index: 0;
}
.bold-hero__inner { position: relative; z-index: 2; }
.bold-hero h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3.2rem, 13vw, 11rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}
.bold-hero--compact h1 {
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}
.bold-hero h1 .amp {
  color: var(--yellow);
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.bold-hero h1 .hl {
  color: var(--yellow);
  position: relative;
  display: inline-block;
}
.bold-hero h1 .hl::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px;
  bottom: 6%;
  height: 18%;
  background: rgba(236,184,38,0.15);
  z-index: -1;
}
.bold-hero h1 em {
  color: var(--yellow);
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.02em;
}
.bold-hero h1 .scribble {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.55em;
  color: var(--yellow);
  transform: rotate(-6deg) translateY(-0.5em);
  letter-spacing: 0;
  text-transform: none;
  margin-left: 0.2em;
}
.bold-hero__foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.bold-hero__sub {
  max-width: 52ch;
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
}
.bold-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* --- Bold marquee ------------------------------------------- */
.bold-marq {
  background: var(--yellow);
  color: var(--near-black);
  padding: 22px 0;
  overflow: hidden;
  border-top: 3px solid var(--near-black);
  border-bottom: 3px solid var(--near-black);
}
.bold-marq__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: boldscroll 30s linear infinite;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}
.bold-marq__track span { display: inline-flex; align-items: center; gap: 48px; }
.bold-marq__dot {
  width: 14px; height: 14px;
  background: var(--near-black);
  border-radius: 50%;
  display: inline-block;
}
.bold-marq--dark { background: var(--near-black); color: var(--yellow); border-color: var(--yellow); }
.bold-marq--dark .bold-marq__dot { background: var(--yellow); }
@keyframes boldscroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- Bold statement band ------------------------------------ */
.bold-statement {
  background: var(--white);
  color: var(--near-black);
  padding: 120px 0 100px;
  position: relative;
}
.bold-statement h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.8rem, 10vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  color: var(--near-black);
  max-width: 16ch;
}
.bold-statement h2 .punct { color: var(--yellow); }
.bold-statement h2 em { font-family: var(--font-head); font-style: italic; font-weight: 400; color: var(--near-black); text-transform: none; }
.bold-statement__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 2px solid var(--near-black);
  flex-wrap: wrap;
  gap: var(--space-md);
}
.bold-statement__sub {
  max-width: 48ch;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--near-black);
  font-weight: 500;
}
.bold-statement__tag {
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

/* --- Bold alternating rows ---------------------------------- */
.bold-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
  gap: 2px;
  background: var(--near-black);
  border-top: 2px solid var(--near-black);
}
.bold-row + .bold-row { border-top: 0; }
.bold-row__media {
  background: var(--near-black);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bold-row__media--yellow { background: var(--yellow); }
.bold-row__media--white  { background: var(--white); }
.bold-row__copy {
  background: var(--white);
  color: var(--near-black);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.bold-row:nth-child(even) .bold-row__copy { order: -1; }
.bold-row__copy--dark { background: var(--near-black); color: var(--white); }
.bold-row__copy--yellow { background: var(--yellow); color: var(--near-black); }
.bold-row__num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.bold-row__num::before {
  content: '';
  width: 28px; height: 28px;
  background: currentColor;
  display: inline-block;
}
.bold-row h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: inherit;
}
.bold-row p {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 44ch;
  color: inherit;
  opacity: 0.88;
}
.bold-row__link {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid currentColor;
  align-self: flex-start;
  color: inherit;
  margin-top: 12px;
}
.bold-row__media .media-placeholder {
  background: transparent;
  border: none;
  color: currentColor;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  opacity: 0.15;
  text-align: center;
  line-height: 1;
}
.bold-row__media--yellow .media-placeholder,
.bold-row__media--white  .media-placeholder { color: var(--near-black); }
.bold-row__media--dark   .media-placeholder { color: var(--yellow); }

/* --- Bold process (thin grid lines) ------------------------- */
.bold-process {
  background: var(--near-black);
  color: var(--white);
  padding: 120px 0;
}
.bold-process__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.bold-process__header h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: var(--white);
  max-width: 14ch;
}
.bold-process__header h2 em {
  color: var(--yellow);
  font-style: italic;
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: none;
}
.bold-process__header p {
  max-width: 42ch;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}
.bold-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
}
.bold-process__steps--5 { grid-template-columns: repeat(5, 1fr); }
.bold-step {
  background: var(--near-black);
  padding: 40px 28px;
  position: relative;
  transition: background 0.3s var(--ease);
}
.bold-step:hover { background: #131313; }
.bold-step__num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 4rem;
  line-height: 0.9;
  color: var(--yellow);
  letter-spacing: -0.05em;
  margin-bottom: var(--space-md);
}
.bold-step h4 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--white);
}
.bold-step p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
}

/* --- Bold quotes -------------------------------------------- */
.bold-quotes {
  background: var(--yellow);
  color: var(--near-black);
  padding: 120px 0;
}
.bold-quotes__head h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--near-black);
  max-width: 14ch;
  margin-bottom: var(--space-xl);
}
.bold-quotes__head h2 em { font-family: var(--font-head); font-style: italic; font-weight: 400; text-transform: none; }
.bold-quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.bold-quote {
  background: var(--near-black);
  color: var(--white);
  padding: var(--space-lg);
  position: relative;
}
.bold-quote::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 7rem;
  position: absolute;
  top: -10px; left: 20px;
  line-height: 1;
  color: var(--yellow);
}
.bold-quote p {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--white);
  margin-top: 60px;
  margin-bottom: var(--space-md);
}
.bold-quote__who strong {
  font-family: var(--font-head);
  font-weight: 900;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--yellow);
}
.bold-quote__who span { font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.bold-quote blockquote { margin: 0; }
.bold-quote__stars {
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: var(--space-sm);
}
.bold-quote__stars-empty { color: rgba(255,255,255,0.25); }
.bold-quote__src {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
a.bold-quote__src { color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.3); }
a.bold-quote__src:hover { color: var(--yellow); border-bottom-color: var(--yellow); }
.bold-quotes__head .bold-eyebrow { display: block; margin-bottom: var(--space-sm); color: var(--near-black); }
.bold-quotes__grid--single { grid-template-columns: minmax(0, 720px); justify-content: center; }
.bold-quotes--strip { padding: var(--space-2xl) 0; }
.bold-quotes--strip .bold-quotes__head h2 { font-size: clamp(1.6rem, 4vw, 3rem); max-width: none; margin-bottom: var(--space-lg); }

/* --- Bold locations (grid lines) ---------------------------- */
.bold-loc {
  background: var(--white);
  color: var(--near-black);
  padding: 120px 0;
}
.bold-loc__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  align-items: end;
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--near-black);
}
.bold-loc h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--near-black);
  max-width: 14ch;
}
.bold-loc h2 em { font-family: var(--font-head); font-style: italic; font-weight: 400; text-transform: none; }
.bold-loc__intro {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--near-black);
  max-width: 52ch;
  font-weight: 500;
}
.bold-loc__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(10,10,10,0.15);
  border: 1px solid rgba(10,10,10,0.15);
}
.bold-loc__item {
  background: var(--white);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--near-black);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.bold-loc__item:hover { background: var(--near-black); color: var(--white); }
.bold-loc__item:hover .bold-loc__meta { color: rgba(255,255,255,0.6); }
.bold-loc__pc {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--yellow);
  text-transform: uppercase;
}
.bold-loc__name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.96;
  color: inherit;
}
.bold-loc__meta {
  font-size: 0.92rem;
  color: rgba(10,10,10,0.6);
  transition: color 0.3s var(--ease);
}

/* --- Bold CTA ----------------------------------------------- */
.bold-cta {
  background: var(--near-black);
  color: var(--white);
  padding: 140px 0;
  text-align: center;
  border-top: 3px solid var(--yellow);
}
.bold-cta__small {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-block;
  margin-bottom: 10px;
}
.bold-cta h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3.5rem, 14vw, 12rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-lg);
}
.bold-cta--compact h2 { font-size: clamp(2.6rem, 7vw, 5.5rem); }
.bold-cta h2 em {
  color: var(--yellow);
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
}
.bold-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 52ch;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}
.bold-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --- Bold service split: body copy + inline lead form ----------- */
.bold-service-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: var(--space-2xl);
  align-items: start;
}
.bold-service-split__copy { max-width: none; margin: 0; }
.bold-service-split__form {
  position: sticky;
  top: var(--space-lg);
  scroll-margin-top: 100px;
  background: var(--near-black);
  color: var(--white);
  padding: var(--space-lg);
  border: 1px solid var(--near-black);
  border-top: 4px solid var(--yellow);
}
.bold-service-split__form:focus { outline: none; }
.bold-service-split__form .bold-eyebrow { color: var(--yellow); }
.bold-service-split__form h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin: var(--space-sm) 0 var(--space-sm);
}
.bold-service-split__form h2 em {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--yellow);
}
.bold-service-split__sub {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 0 var(--space-md);
}
.bold-service-split__embed { margin-top: var(--space-sm); }

/* Inherit the on-dark FluentForm overrides */
.bold-service-split__form .fluentform { color: var(--white); }
.bold-service-split__form .fluentform .ff-el-form-check-label,
.bold-service-split__form .fluentform .ff-el-input--label label { color: var(--white); }
.bold-service-split__form .fluentform .ff-el-form-control {
  background: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.65);
  color: var(--near-black);
}

@media (max-width: 900px) {
  .bold-service-split { grid-template-columns: 1fr; gap: var(--space-xl); }
  .bold-service-split__form { position: static; }
}

/* --- Bold portfolio / work tiles ---------------------------- */
.bold-portfolio {
  background: var(--white);
  color: var(--near-black);
  padding: 120px 0;
}
.bold-portfolio--dark { background: var(--near-black); color: var(--white); }
.bold-portfolio__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  align-items: end;
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--near-black);
}
.bold-portfolio--dark .bold-portfolio__head { border-bottom-color: rgba(255,255,255,0.15); }
.bold-portfolio__head h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--near-black);
  max-width: 14ch;
}
.bold-portfolio--dark .bold-portfolio__head h2 { color: var(--white); }
.bold-portfolio__head h2 em { font-family: var(--font-head); font-style: italic; font-weight: 400; text-transform: none; }
.bold-portfolio__intro {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--near-black);
  max-width: 52ch;
  font-weight: 500;
}
.bold-portfolio--dark .bold-portfolio__intro { color: rgba(255,255,255,0.7); font-weight: 400; }
/* --- Portfolio grid — clean traditional layout ----------------- */
.bold-work {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg) var(--space-md);
}
.bold-work--grid-3 { grid-template-columns: repeat(3, 1fr); }
.bold-work a {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.bold-work a img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: rgba(10,10,10,0.06);
  transition: transform 0.6s var(--ease);
}
.bold-work a:hover img { transform: scale(1.03); }
.bold-work__media-frame { overflow: hidden; }
.bold-work__tag {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}
.bold-work__title {
  display: block;
  margin-top: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: inherit;
  transition: color 0.2s var(--ease);
}
.bold-work a:hover .bold-work__title { color: var(--green-mid); }
.bold-work__title em {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
/* Dark portfolio variant (service page + project archive) */
.bold-portfolio--dark .bold-work__tag { color: var(--yellow); }
.bold-portfolio--dark .bold-work__title { color: var(--white); }
.bold-portfolio--dark .bold-work a:hover .bold-work__title { color: var(--yellow); }

/* Pagination — bold pill buttons, scoped to whatever section colour the parent provides */
.navigation.pagination {
  margin-top: var(--space-xl);
  text-align: center;
}
.navigation.pagination .nav-links {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 12px 18px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid currentColor;
  border-radius: 100px;
  color: inherit;
  background: transparent;
  text-decoration: none;
  line-height: 1;
  transition: all 0.2s var(--ease);
}
.navigation.pagination .page-numbers:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--near-black);
}
.navigation.pagination .page-numbers.current {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--near-black);
}
.navigation.pagination .page-numbers.dots {
  border: none;
  padding: 12px 4px;
  opacity: 0.5;
  min-width: 0;
}
.navigation.pagination .page-numbers.prev,
.navigation.pagination .page-numbers.next {
  font-size: 0.78rem;
  padding: 12px 22px;
}

.bold-portfolio__foot { margin-top: var(--space-xl); text-align: center; }
.bold-portfolio__foot .bold-btn {
  border-color: var(--near-black);
  color: var(--near-black);
}
.bold-portfolio__foot .bold-btn:hover { background: var(--near-black); color: var(--white); }
.bold-portfolio--dark .bold-portfolio__foot .bold-btn { border-color: var(--white); color: var(--white); }
.bold-portfolio--dark .bold-portfolio__foot .bold-btn:hover { background: var(--white); color: var(--near-black); }

/* --- Bold insights / posts ---------------------------------- */
.bold-insights {
  background: var(--near-black);
  color: var(--white);
  padding: 120px 0;
}
.bold-insights--light { background: var(--white); color: var(--near-black); }
.bold-insights__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  align-items: end;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.bold-insights--light .bold-insights__head { border-bottom: 2px solid var(--near-black); }
.bold-insights__head h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--white);
  max-width: 14ch;
}
.bold-insights--light .bold-insights__head h2 { color: var(--near-black); }
.bold-insights__head h2 em {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--yellow);
}
.bold-insights__intro {
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  max-width: 52ch;
}
.bold-insights--light .bold-insights__intro { color: var(--near-black); font-weight: 500; }
.bold-insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
}
.bold-insights--light .bold-insights__grid {
  background: rgba(10,10,10,0.15);
  border-color: rgba(10,10,10,0.15);
}
.bold-post {
  background: var(--near-black);
  color: var(--white);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.bold-insights--light .bold-post { background: var(--white); color: var(--near-black); }
.bold-post:hover { background: var(--yellow); color: var(--near-black); }
.bold-post:hover .bold-post__cat { color: var(--near-black); }
.bold-post:hover .bold-post__date { color: rgba(10,10,10,0.7); }
.bold-post:hover .bold-post__excerpt { color: rgba(10,10,10,0.85); }
.bold-post:hover .bold-post__link { color: var(--near-black); }
.bold-post__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.bold-post__cat { color: var(--yellow); transition: color 0.3s var(--ease); }
.bold-post__date { color: rgba(255,255,255,0.5); transition: color 0.3s var(--ease); }
.bold-insights--light .bold-post__date { color: rgba(10,10,10,0.5); }
.bold-post__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: inherit;
}
.bold-post__title em { font-family: var(--font-head); font-style: italic; font-weight: 400; text-transform: none; }
.bold-post__excerpt {
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  transition: color 0.3s var(--ease);
}
.bold-insights--light .bold-post__excerpt { color: rgba(10,10,10,0.7); }
.bold-post__link {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid currentColor;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: inherit;
  align-self: flex-start;
  transition: color 0.3s var(--ease);
}
.bold-insights__foot { margin-top: var(--space-xl); text-align: center; }
.bold-insights__foot .bold-btn--ghost { border-color: rgba(255,255,255,0.3); }

/* --- Bold pricing (grid-line cards) ------------------------- */
.bold-pricing {
  background: var(--white);
  color: var(--near-black);
  padding: 120px 0;
}
.bold-pricing--dark { background: var(--near-black); color: var(--white); }
.bold-pricing__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  align-items: end;
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--near-black);
}
.bold-pricing--dark .bold-pricing__head { border-bottom-color: rgba(255,255,255,0.15); }
.bold-pricing__head h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--near-black);
  max-width: 14ch;
}
.bold-pricing--dark .bold-pricing__head h2 { color: var(--white); }
.bold-pricing__head h2 em { font-family: var(--font-head); font-style: italic; font-weight: 400; text-transform: none; color: var(--yellow); }
.bold-pricing__intro { font-size: 1.08rem; line-height: 1.65; color: var(--near-black); max-width: 52ch; font-weight: 500; }
.bold-pricing--dark .bold-pricing__intro { color: rgba(255,255,255,0.7); font-weight: 400; }
.bold-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(10,10,10,0.18);
  border-left: 1px solid rgba(10,10,10,0.18);
}
.bold-pricing__grid > .bold-price {
  border-right: 1px solid rgba(10,10,10,0.18);
  border-bottom: 1px solid rgba(10,10,10,0.18);
}
.bold-pricing__grid--cols-1 { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
.bold-pricing__grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.bold-pricing__grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.bold-pricing__grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) {
  .bold-pricing__grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .bold-pricing__grid--cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .bold-pricing__grid--cols-2,
  .bold-pricing__grid--cols-3,
  .bold-pricing__grid--cols-4 { grid-template-columns: 1fr; }
}
.bold-pricing--dark .bold-pricing__grid {
  border-top-color: rgba(255,255,255,0.15);
  border-left-color: rgba(255,255,255,0.15);
}
.bold-pricing--dark .bold-pricing__grid > .bold-price {
  border-right-color: rgba(255,255,255,0.15);
  border-bottom-color: rgba(255,255,255,0.15);
}
.bold-price {
  background: var(--white);
  color: var(--near-black);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.bold-pricing--dark .bold-price { background: var(--near-black); color: var(--white); }
.bold-price--featured { background: var(--near-black); color: var(--white); }
.bold-pricing--dark .bold-price--featured { background: var(--yellow); color: var(--near-black); }
.bold-price__label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
}
.bold-price--featured .bold-price__label { color: var(--yellow); }
.bold-pricing--dark .bold-price--featured .bold-price__label { color: var(--near-black); }
.bold-price__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: inherit;
}
.bold-price__timeframe {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(10,10,10,0.5);
}
.bold-price--featured .bold-price__timeframe { color: rgba(255,255,255,0.5); }
.bold-pricing--dark .bold-price .bold-price__timeframe { color: rgba(255,255,255,0.5); }
.bold-pricing--dark .bold-price--featured .bold-price__timeframe { color: rgba(10,10,10,0.5); }
.bold-price__tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(10,10,10,0.12);
  border: 1px solid rgba(10,10,10,0.12);
  margin: 4px 0 10px;
}
.bold-price--featured .bold-price__tiers,
.bold-pricing--dark .bold-price .bold-price__tiers {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.12);
}
.bold-pricing--dark .bold-price--featured .bold-price__tiers {
  background: rgba(10,10,10,0.18);
  border-color: rgba(10,10,10,0.18);
}
.bold-price__tier {
  background: var(--white);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}
.bold-price--featured .bold-price__tier,
.bold-pricing--dark .bold-price .bold-price__tier { background: var(--near-black); color: var(--white); }
.bold-pricing--dark .bold-price--featured .bold-price__tier { background: var(--yellow); color: var(--near-black); }
.bold-price__tier--featured { background: var(--yellow); color: var(--near-black); }
.bold-price--featured .bold-price__tier--featured,
.bold-pricing--dark .bold-price .bold-price__tier--featured { background: var(--yellow); color: var(--near-black); }
.bold-pricing--dark .bold-price--featured .bold-price__tier--featured { background: var(--near-black); color: var(--white); }
.bold-price__tier-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
  line-height: 1;
}
.bold-price__tier-price {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.bold-price__tier-price sup { font-size: 0.55em; vertical-align: top; font-weight: 800; margin-right: 1px; }
.bold-price__desc { font-size: 0.96rem; line-height: 1.55; color: inherit; opacity: 0.82; }
.bold-price__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
}
.bold-price__features li {
  padding: 10px 0 10px 22px;
  position: relative;
  font-size: 0.92rem;
  line-height: 1.4;
  border-bottom: 1px solid rgba(10,10,10,0.12);
  color: inherit;
  opacity: 0.88;
}
.bold-price--featured .bold-price__features li,
.bold-pricing--dark .bold-price .bold-price__features li { border-bottom-color: rgba(255,255,255,0.12); }
.bold-pricing--dark .bold-price--featured .bold-price__features li { border-bottom-color: rgba(10,10,10,0.15); }
.bold-price__features li:last-child { border-bottom: none; }
.bold-price__features li::before {
  content: '→';
  position: absolute; left: 0;
  font-weight: 900;
  color: var(--yellow);
}
.bold-price .bold-btn { margin-top: auto; justify-content: center; width: 100%; }
.bold-price__from {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 2px 0 10px;
}
.bold-price__from-label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.55;
  white-space: nowrap;
}
.bold-price__from-amount {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: inherit;
}
.bold-price__from-amount sup {
  font-size: 0.45em;
  vertical-align: top;
  font-weight: 800;
  margin-right: 2px;
}
.bold-price__from-amount .rate {
  font-size: 0.4em;
  font-weight: 700;
  opacity: 0.7;
  margin-left: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.bold-pricing__note {
  text-align: center;
  margin-top: var(--space-lg);
  font-size: 0.88rem;
  opacity: 0.7;
}
.bold-pricing__note a { color: var(--green); border-bottom: 1px solid currentColor; }
.bold-pricing__note a:hover { color: var(--green-mid); }
.bold-pricing--dark .bold-pricing__note a { color: var(--yellow); }
.bold-pricing--dark .bold-pricing__note a:hover { color: var(--yellow); opacity: 0.85; }
.bold-pricing--dark .bold-pricing__note { color: rgba(255,255,255,0.6); }
.bold-price__badge {
  position: absolute;
  top: -12px; left: 20px;
  background: var(--yellow);
  color: var(--near-black);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
}

/* --- Bold two-up copy / checklist (service pages) ----------- */
.bold-split {
  background: var(--white);
  color: var(--near-black);
  padding: 120px 0;
}
.bold-split--dark { background: var(--near-black); color: var(--white); }
.bold-split__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-xl);
  align-items: start;
}
.bold-split h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: inherit;
  margin-bottom: var(--space-md);
}
.bold-split h2 em { font-family: var(--font-head); font-style: italic; font-weight: 400; color: var(--yellow); text-transform: none; }
.bold-split p { font-size: 1.05rem; line-height: 1.7; color: inherit; opacity: 0.86; }
.bold-split p + p { margin-top: var(--space-sm); }
.bold-split__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: var(--space-lg); }
.bold-checklist {
  background: var(--yellow);
  color: var(--near-black);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.bold-split--dark .bold-checklist { background: var(--yellow); color: var(--near-black); }
.bold-checklist h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--near-black);
}
.bold-checklist ul { list-style: none; display: flex; flex-direction: column; gap: 0; padding: 0; margin: 0; }
.bold-checklist li {
  padding: 14px 0 14px 32px;
  position: relative;
  font-size: 0.98rem;
  line-height: 1.45;
  border-top: 1px solid rgba(10,10,10,0.2);
  color: var(--near-black);
  font-weight: 500;
}
.bold-checklist li:last-child { border-bottom: 1px solid rgba(10,10,10,0.2); }
.bold-checklist li::before {
  content: '→';
  position: absolute; left: 0; top: 14px;
  font-weight: 900;
  color: var(--near-black);
}

/* --- Bold feature grid (dark cards with thin lines) --------- */
.bold-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
}
.bold-insights--light .bold-feature-grid,
.bold-split .bold-feature-grid {
  background: rgba(10,10,10,0.15);
  border-color: rgba(10,10,10,0.15);
}
.bold-feature {
  background: var(--near-black);
  color: var(--white);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.3s var(--ease);
}
.bold-feature:hover { background: #131313; }
.bold-feature__num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
}
.bold-feature h4 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
}
.bold-feature p {
  font-size: 0.96rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
}
.bold-feature--link { text-decoration: none; }
.bold-feature--link:hover { background: #131313; }
.bold-feature__more {
  margin-top: auto;
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  color: var(--yellow);
}

/* --- Services archive page wrapper -------------------------- */
.bold-services-archive {
  background: var(--near-black);
  color: var(--white);
  padding: 120px 0;
}

/* WP standard SR-only utility */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* --- Meet the founder ------------------------------------------ */
.bold-founder {
  background: var(--white);
  color: var(--near-black);
  padding: 140px 0;
}
.bold-founder__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-2xl);
  align-items: center;
}
.bold-founder__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 4px solid var(--near-black);
}
.bold-founder__placeholder {
  aspect-ratio: 4 / 5;
  background: var(--yellow);
  border: 4px solid var(--near-black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bold-founder__placeholder span {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(6rem, 14vw, 12rem);
  letter-spacing: -0.05em;
  color: var(--near-black);
  line-height: 1;
}
.bold-founder__copy h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: var(--space-sm) 0 var(--space-md);
  color: var(--near-black);
}
.bold-founder__copy h2 em {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--yellow);
  background: var(--near-black);
  padding: 0 0.15em;
}
.bold-founder__lede {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: var(--space-md);
}
.bold-founder__copy p {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: var(--space-md);
  max-width: 56ch;
}
.bold-founder__actions { margin: var(--space-md) 0 var(--space-lg); }
.bold-founder__socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  border-top: 2px solid var(--near-black);
  padding-top: var(--space-md);
}
.bold-founder__socials a {
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  color: var(--near-black);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.15s ease;
}
.bold-founder__socials a:hover,
.bold-founder__socials a:focus { border-bottom-color: var(--yellow); }

@media (max-width: 900px) {
  .bold-founder__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .bold-founder__media { max-width: 360px; }
}

/* --- Bold related chips (locations row) --------------------- */
.bold-related {
  background: var(--white);
  color: var(--near-black);
  padding: 100px 0;
}
.bold-related__head { margin-bottom: var(--space-lg); }
.bold-related__head h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--near-black);
  margin-bottom: var(--space-sm);
}
.bold-related__head h2 em { font-family: var(--font-head); font-style: italic; font-weight: 400; text-transform: none; color: var(--yellow); }
.bold-related__head p { color: var(--near-black); font-weight: 500; max-width: 56ch; }
.bold-related__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(10,10,10,0.15);
  border: 1px solid rgba(10,10,10,0.15);
}
.bold-related__item {
  background: var(--white);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--near-black);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.bold-related__item::after {
  content: '→';
  color: var(--yellow);
  font-weight: 900;
  transition: transform 0.25s var(--ease);
}
.bold-related__item:hover { background: var(--near-black); color: var(--white); }
.bold-related__item:hover::after { transform: translateX(4px); }

/* --- Bold single-post (insights article) -------------------- */
.bold-post-hero {
  background: var(--near-black);
  color: var(--white);
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.bold-post-hero__meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: var(--space-md);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.bold-post-hero__cat { color: var(--yellow); }
.bold-post-hero__date { color: rgba(255,255,255,0.5); }
.bold-post-hero h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--white);
  max-width: 22ch;
  margin: 0;
}
.bold-post-hero h1 em {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
  text-transform: none;
  letter-spacing: -0.02em;
}
.bold-post-hero__deck {
  font-size: 1.2rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  max-width: 62ch;
  margin-top: var(--space-md);
  font-weight: 400;
}

.bold-post-body-wrap {
  background: var(--white);
  color: var(--near-black);
  padding: 100px 0;
}
.bold-prose {
  max-width: 70ch;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--near-black);
}
.bold-prose > p:first-child {
  font-size: 1.35rem;
  line-height: 1.55;
  font-weight: 500;
  margin-bottom: 1.4em;
}
.bold-prose p { margin-bottom: 1.2em; }
.bold-prose h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: -0.035em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2em;
  margin-bottom: 0.6em;
  color: var(--near-black);
}
.bold-prose h2 em {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
  text-transform: none;
}
.bold-prose h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 1.8em;
  margin-bottom: 0.4em;
  color: var(--near-black);
}
.bold-prose a {
  color: var(--near-black);
  border-bottom: 2px solid var(--yellow);
  font-weight: 500;
}
.bold-prose a:hover { background: var(--yellow); }
.bold-prose ul, .bold-prose ol { padding-left: 1.5em; margin: 0 0 1.2em; }
.bold-prose li { margin-bottom: 0.5em; }
.bold-prose ul li { list-style: disc; }
.bold-prose ol li { list-style: decimal; }
.bold-prose blockquote {
  border-left: 4px solid var(--yellow);
  padding: 0.4em 0 0.4em 1.5em;
  margin: 1.8em 0;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--near-black);
}
.bold-prose strong { font-weight: 700; }
.bold-prose hr {
  border: none;
  border-top: 2px solid var(--near-black);
  margin: 2.5em 0;
  max-width: 120px;
}
.bold-post-byline {
  max-width: 70ch;
  margin: 60px auto 0;
  padding-top: var(--space-md);
  border-top: 2px solid var(--near-black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--near-black);
}
.bold-post-byline span { color: rgba(10,10,10,0.6); }

/* --- Bold insights hub -------------------------------------- */
.bold-insights-hub {
  background: var(--near-black);
  color: var(--white);
  padding: 80px 0 140px;
}
.bold-insights-hub__filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: var(--space-lg) 0 var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.bold-filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: all 0.25s var(--ease);
}
.bold-filter-chip:hover { border-color: var(--yellow); color: var(--yellow); }
.bold-filter-chip.is-active { background: var(--yellow); border-color: var(--yellow); color: var(--near-black); }

/* --- Bold client-logo gallery ------------------------------- */
.bold-logos {
  background: var(--white);
  color: var(--near-black);
  padding: 100px 0;
}
.bold-logos--dark { background: var(--near-black); color: var(--white); }
.bold-logos__head {
  text-align: center;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--near-black);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.bold-logos--dark .bold-logos__head { border-bottom-color: rgba(255,255,255,0.15); }
.bold-logos__eyebrow {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-block;
  margin-bottom: var(--space-sm);
}
.bold-logos__head h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: inherit;
  margin: 0 0 var(--space-sm);
}
.bold-logos__head h2 em {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
  text-transform: none;
  letter-spacing: -0.02em;
}
.bold-logos__head p {
  font-size: 0.95rem;
  max-width: 52ch;
  margin: 0 auto;
}
.bold-logos--dark .bold-logos__head p { color: rgba(255,255,255,0.92); }
.bold-logos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(10,10,10,0.15);
  border: 1px solid rgba(10,10,10,0.15);
}
.bold-logos--dark .bold-logos__grid {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.12);
}
.bold-logos__item {
  background: var(--white);
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  color: var(--near-black);
  position: relative;
  text-align: center;
}
.bold-logos--dark .bold-logos__item { background: var(--near-black); color: var(--white); }
.bold-logos__item:hover { background: var(--yellow); color: var(--near-black); }
.bold-logos__item img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s var(--ease);
}
.bold-logos__item:hover img { filter: none; opacity: 1; }
/* Dark variant: white-logo friendly. Default uses original tone at 70% opacity
   (no invert hack — supply purpose-made white logos). Hover lifts the tile
   subtly instead of filling with yellow, so white logos stay legible. */
.bold-logos--dark .bold-logos__item img { filter: none; opacity: 0.75; }
.bold-logos--dark .bold-logos__item:hover { background: #1a1a1a; color: var(--yellow); }
.bold-logos--dark .bold-logos__item:hover img { opacity: 1; }
.bold-logos--dark .bold-logos__item:hover .bold-logos__placeholder { opacity: 1; color: var(--yellow); }
.bold-logos__placeholder {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  letter-spacing: -0.015em;
  text-transform: uppercase;
  line-height: 1.05;
  text-align: center;
  color: currentColor;
  opacity: 0.65;
  transition: opacity 0.3s var(--ease);
}
.bold-logos__item:hover .bold-logos__placeholder { opacity: 1; }
.bold-logos__foot { text-align: center; margin-top: var(--space-lg); font-size: 0.88rem; opacity: 0.7; }
.bold-logos__foot a { color: var(--green); border-bottom: 1px solid currentColor; }
.bold-logos--dark .bold-logos__foot a { color: var(--yellow); }

/* --- Bold responsive ---------------------------------------- */
@media (max-width: 1024px) {
  .bold-logos__grid { grid-template-columns: repeat(3, 1fr); }
  .bold-row { grid-template-columns: 1fr; min-height: auto; }
  .bold-row:nth-child(even) .bold-row__copy { order: 0; }
  .bold-row__media { min-height: 360px; }
  .bold-process__steps { grid-template-columns: 1fr 1fr; }
  .bold-process__steps--5 { grid-template-columns: 1fr 1fr; }
  .bold-quotes__grid { grid-template-columns: 1fr; }
  .bold-loc__head,
  .bold-portfolio__head,
  .bold-insights__head,
  .bold-pricing__head { grid-template-columns: 1fr; gap: var(--space-md); }
  .bold-loc__list { grid-template-columns: 1fr 1fr; }
  .bold-work { grid-template-columns: repeat(2, 1fr); }
  .bold-work a { grid-column: span 1 !important; }
  .bold-insights__grid,
  .bold-feature-grid,
  .bold-pricing__grid { grid-template-columns: 1fr; }
  .bold-split__grid { grid-template-columns: 1fr; }
  .bold-related__list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .bold-logos__grid { grid-template-columns: repeat(2, 1fr); }
  .bold-process__steps,
  .bold-process__steps--5 { grid-template-columns: 1fr; }
  .bold-loc__list { grid-template-columns: 1fr; }
  .bold-work { grid-template-columns: 1fr; }
  .bold-related__list { grid-template-columns: 1fr; }
}

/* --- FluentForm — theme integration + a11y polish ----------------- */
/* Brand-coloured focus + readable contrast; works on light or dark surfaces. */
.theme-bold .fluentform { font-family: inherit; }
.theme-bold .fluentform .ff-el-input--label label,
.theme-bold .fluentform .ff-el-form-check-label,
.theme-bold .fluentform legend {
  color: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
}
.theme-bold .fluentform .ff-el-input--label { margin-bottom: 8px; }
.theme-bold .fluentform .ff-el-group { margin-bottom: var(--space-md); }

/* Required asterisk → brand yellow + screen-reader text */
.theme-bold .fluentform .ff-el-is-required.asterisk-right label:after {
  color: var(--yellow);
  font-weight: 900;
}
/* Hide visual asterisk from AT and inject a real "required" announcement */
.theme-bold .fluentform .ff-el-is-required.asterisk-right label::after {
  speak: never;
}
.theme-bold .fluentform .ff-el-is-required.asterisk-right > label::before {
  content: "Required field. ";
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* Inputs: high-contrast border + visible focus on yellow */
.theme-bold .fluentform .ff-el-form-control {
  background-color: #fff;
  color: var(--near-black);
  border: 2px solid rgba(0,0,0,0.45);
  border-radius: 0;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.4;
}
.theme-bold .fluentform .ff-el-form-control:focus,
.theme-bold .fluentform .ff-el-form-check-input:focus,
.theme-bold .fluentform .ff_btn_style:focus {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
  box-shadow: none;
}
/* Clearer focus on radio/checkbox markers themselves */
.theme-bold .fluentform .ff-el-form-check-input { accent-color: var(--yellow); }
.theme-bold .fluentform .ff-el-form-check-label { display: flex; align-items: flex-start; gap: 8px; line-height: 1.45; padding: 4px 0; }

/* Submit button — adopt brand bold-btn look */
.theme-bold .fluentform .ff_btn_style {
  background: var(--yellow);
  color: var(--near-black);
  border: 2px solid var(--yellow);
  border-radius: 0;
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  font-size: 1rem;
  transition: transform 0.15s ease;
}
.theme-bold .fluentform .ff_btn_style:hover { opacity: 1; transform: translateY(-2px); }

/* Inline validation error text */
.theme-bold .fluentform .error,
.theme-bold .fluentform .text-danger { color: #ff6b6b; font-weight: 600; }

/* When the form sits inside a dark surface (contact card or service hero panel) */
.theme-bold .j4g-form-on-dark .fluentform { color: var(--white); }
.theme-bold .j4g-form-on-dark .fluentform .ff-el-form-check-label,
.theme-bold .j4g-form-on-dark .fluentform .ff-el-input--label label { color: var(--white); }
.theme-bold .j4g-form-on-dark .fluentform .ff-el-form-control {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.95);
}

/* ============================================================
   BUSINESS CARD IDENTITY ELEMENTS — added 2026-05-18
   Layered squares hero deco · boxed stacked logo · footer
   contact pattern (T:/E:/W:/IG:)
   ============================================================ */

/* --- Layered squares hero decoration ----------------------
   Three overlapping squares tucked into the right side of the
   hero — subtle backdrop, not central composition. */
.bold-hero { position: relative; overflow: hidden; }
.bold-hero > .container { position: relative; z-index: 2; }

.bold-hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bold-hero__deco::before,
.bold-hero__deco::after,
.bold-hero__deco .bold-hero__sq {
  content: "";
  position: absolute;
  aspect-ratio: 1;
  display: block;
}
.bold-hero__deco::before {
  top: -12%;
  right: -18%;
  width: 78vmin;
  transform: rotate(8deg);
  background: rgba(31, 111, 133, 0.14);
}
.bold-hero__deco::after {
  top: 4%;
  right: -6%;
  width: 68vmin;
  transform: rotate(-5deg);
  background: rgba(31, 111, 133, 0.22);
}
.bold-hero__deco .bold-hero__sq {
  top: 18%;
  right: 8%;
  width: 58vmin;
  transform: rotate(13deg);
  background: rgba(31, 111, 133, 0.10);
}

@media (max-width: 768px) {
  .bold-hero__deco::before { width: 110vmin; top: -8%; right: -30%; }
  .bold-hero__deco::after  { width: 95vmin;  top: 8%;  right: -20%; }
  .bold-hero__deco .bold-hero__sq { width: 80vmin; top: 22%; right: -10%; }
}

/* --- Boxed stacked logo (J 4 G / D E S / I G N) ----------- */
/* True square box. 3x3 grid of equal cells. Letters centred in each. */
.bold-logo-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  aspect-ratio: 1;
  width: clamp(15rem, 32vw, 24rem);
  border: 2px solid var(--yellow);
  background: transparent;
  user-select: none;
}
.bold-logo-stack > span {
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 300;
  font-size: clamp(1.6rem, 4.8vw, 3rem);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}
.bold-logo-stack__top    { color: var(--white); }
.bold-logo-stack__bottom { color: var(--yellow); }

.bold-logo-stack--xl { width: clamp(18rem, 38vw, 30rem); border-width: 3px; }

/* Card-hero stacked layout — logo above, copy below, centered */
.bold-hero__stack {
  text-align: center;
}
.bold-hero__stack > .bold-logo-stack {
  margin: 0 auto var(--space-md);
}
.bold-hero__stack .bold-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.bold-hero__stack h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 22ch;
}
.bold-hero__stack .bold-hero__foot {
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  border-top-color: rgba(255,255,255,0.08);
  width: 100%;
  margin-top: var(--space-md);
}
.bold-hero__stack .bold-hero__sub {
  margin-inline: auto;
  max-width: 52ch;
}
.bold-hero__stack .bold-hero__cta {
  justify-content: center;
}

/* --- Footer contact pattern (T:/E:/W:/IG:) ---------------- */
.footer__contact { display: flex; flex-direction: column; gap: 0.35rem; margin-top: 1rem; }
.footer__contact-row {
  display: grid;
  grid-template-columns: 1.8rem 1fr;
  gap: 0.4rem;
  align-items: baseline;
  margin: 0;
  font-size: 0.95rem;
}
.footer__contact-label {
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.footer__contact-row a { color: var(--white); text-decoration: none; transition: color 0.2s var(--ease); }
.footer__contact-row a:hover { color: var(--yellow); }

/* --- FAQ (page-faq.php) -------------------------------------- */
.bold-faq { margin: var(--space-lg) 0 var(--space-xl); }

.bold-faq__group {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--yellow);
  margin: var(--space-xl) 0 var(--space-md);
}
.bold-faq__group:first-of-type { margin-top: 0; }

.bold-faq__group-items {
  border-top: 1px solid rgba(0,0,0,0.12);
}

.bold-faq__item {
  border-bottom: 1px solid rgba(0,0,0,0.12);
  padding: var(--space-md) 0;
}

.bold-faq__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
  cursor: pointer;
  list-style: none;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  padding-right: var(--space-sm);
  position: relative;
}
.bold-faq__q::-webkit-details-marker { display: none; }
.bold-faq__q::marker { content: ''; }

.bold-faq__q::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
  color: var(--yellow);
}
.bold-faq__item[open] .bold-faq__q::after {
  content: '–';
  transform: rotate(0deg);
}

.bold-faq__q:hover { color: var(--yellow-dark); }
.bold-faq__q:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
  border-radius: 2px;
}

.bold-faq__a {
  margin-top: var(--space-sm);
  padding-right: var(--space-lg);
  color: rgba(0,0,0,0.78);
  font-size: 1rem;
  line-height: 1.6;
}
.bold-faq__a p + p,
.bold-faq__a ul,
.bold-faq__a ol { margin-top: var(--space-sm); }
.bold-faq__a ul,
.bold-faq__a ol { padding-left: 1.4rem; }
.bold-faq__a li + li { margin-top: 0.4em; }
.bold-faq__a strong { color: var(--near-black); }

/* Smooth open/close — works in all modern browsers via the new interpolate-size */
@media (prefers-reduced-motion: no-preference) {
  .bold-faq__item[open] .bold-faq__a {
    animation: faqOpen 0.25s var(--ease);
  }
  @keyframes faqOpen {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* --- FAQ strip (template-parts/faq.php — above footer site-wide) --- */
.bold-faq-strip {
  padding: var(--space-2xl) 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: var(--paper, #faf8f3);
  color: var(--near-black);
}
.bold-faq-strip .bold-eyebrow,
.bold-faq-strip h2,
.bold-faq-strip .bold-faq__q,
.bold-faq-strip .bold-faq__a { color: var(--near-black); }
.bold-faq-strip .bold-faq__a {
  color: rgba(0,0,0,0.78);
}
.bold-faq-strip .bold-faq__a strong { color: var(--near-black); }
.bold-faq-strip__head {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.bold-faq-strip__head h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: var(--space-sm) 0 0;
}
.bold-faq-strip__head h2 .punct { color: var(--yellow); }
.bold-faq-strip__items {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.bold-faq-strip__item {
  /* Inherits .bold-faq__item base styles */
}
.bold-faq-strip__more {
  text-align: center;
  margin-top: var(--space-lg);
}
/* Ghost button defaults to white-on-dark; override for the cream strip */
.bold-faq-strip .bold-btn--ghost {
  color: var(--near-black);
  border-color: var(--near-black);
}
.bold-faq-strip .bold-btn--ghost:hover {
  background: var(--near-black);
  color: var(--white);
}

/* ============================================================
   Premium motion layer — scroll reveals, hero stagger, hover.
   All movement is gated behind prefers-reduced-motion.
   ============================================================ */

/* 1. Scroll-triggered reveals. JS adds .js-reveal to candidates and
      toggles .is-visible when they cross the viewport. Initial hidden
      state is JS-applied so no-JS users see content normally.        */
.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.js-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* 2. Hero on-load stagger. Eyebrow → H1 (word-by-word) → sub + CTAs. */
.js-hero .bold-hero__inner > .bold-eyebrow,
.js-hero .bold-hero__inner > .bold-hero__foot {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.js-hero .bold-hero__inner > .bold-eyebrow { animation-delay: 0.1s; }
.js-hero .bold-hero__inner > .bold-hero__foot { animation-delay: 0.85s; }

.js-hero .bold-hero h1 .js-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  /* delay is set inline by JS via --d */
  animation-delay: calc(0.25s + var(--d, 0) * 60ms);
}
/* The .scribble accent draws in after its word lands. */
.js-hero .bold-hero h1 .scribble {
  opacity: 0;
  animation: scribbleIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.95s;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: none; }
}
@keyframes scribbleIn {
  from { opacity: 0; transform: rotate(-4deg) scale(0.85); }
  to   { opacity: 1; transform: rotate(-2deg) scale(1); }
}

/* 3. Portfolio thumb hover — refine the existing scale, add lift +
      tag slide. Existing rule at line ~2151 stays as the baseline.   */
.bold-work a {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.bold-work a img {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.bold-work a:hover { transform: translateY(-4px); }
.bold-work a:hover img { transform: scale(1.06); }
.bold-work__tag {
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s var(--ease),
    color 0.3s var(--ease);
}
.bold-work a:hover .bold-work__tag {
  transform: translateY(-2px);
}

/* 4. Buttons — lift + shadow on hover. Magnetic pull on yellow CTAs
      is layered in via JS using inline transform.                    */
.bold-btn {
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.bold-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}
.bold-btn:active {
  transform: translateY(0);
  transition-duration: 0.1s;
}
/* Magnetic CTAs get a slightly slower spring so the cursor-follow
   feels weighted rather than twitchy. */
.bold-btn--magnetic {
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.4s cubic-bezier(0.18, 0.9, 0.32, 1.15),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Location cards — subtle lift to match the rest of the system. */
.bold-loc__item {
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.bold-loc__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* 5. prefers-reduced-motion — kill everything motion-related, keep
      colour transitions only. Required for an accessible "premium". */
@media (prefers-reduced-motion: reduce) {
  .js-reveal,
  .js-hero .bold-hero__inner > *,
  .js-hero .bold-hero h1 .js-word,
  .js-hero .bold-hero h1 .scribble {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .bold-btn,
  .bold-btn:hover,
  .bold-work a,
  .bold-work a:hover,
  .bold-work a img,
  .bold-work a:hover img,
  .bold-loc__item,
  .bold-loc__item:hover {
    transform: none !important;
    box-shadow: none !important;
  }
}
