  :root {
    /* ============================================================
       THEME — heavy industrial / contractor-trade
       Swap --brand (and optionally --brand-dark/--brand-soft)
       to re-skin the whole site for a new client.
       Everything else is neutral and should stay put.
       ============================================================ */

    /* --- BRAND (client swap point) --- */
    --brand: #db011c;          /* Milwaukee red — client brand color goes here */
    --brand-dark: #a8000f;     /* hover/active */
    --brand-soft: #fde8eb;     /* tinted wash for soft accent backgrounds */

    /* --- SURFACES --- */
    --bg: #ffffff;             /* primary background */
    --bg-soft: #ededed;        /* light gray section bg */
    --bg-cream: #f4f1e8;       /* warm cream alt sections */
    --bg-dark: #141414;        /* near-black for dark sections + footer */
    --bg-darker: #0a0a0a;      /* deepest black, for photo placeholders */
    --surface: #ffffff;        /* card surface */

    /* --- INK --- */
    --ink: #141414;            /* primary text */
    --ink-muted: #5a5a5a;      /* secondary text */
    --ink-subtle: #8a8a8a;     /* tertiary text */
    --ink-on-brand: #141414;   /* BLACK on red — contractor/Milwaukee convention */
    --ink-on-dark: #ffffff;    /* white on dark backgrounds */
    --ink-muted-on-dark: #a8a8a8;

    /* --- LINES --- */
    --border: #e0ddd0;         /* subtle divider */
    --border-strong: #c0b8a0;
    --border-dark: #2a2a2a;    /* divider on dark sections */

    /* --- SHADOWS --- */
    --shadow-sm: 0 1px 2px rgba(20,20,20,0.04);
    --shadow-md: 0 4px 14px rgba(20,20,20,0.08);
    --shadow-lg: 0 18px 40px rgba(20,20,20,0.12);

    /* --- LEGACY ALIASES (kept so unrefactored rules still work) --- */
    --orange: var(--brand);
    --orange-dark: var(--brand-dark);
    --black: var(--ink);
    --charcoal: var(--bg-dark);
    --gray-900: var(--ink);
    --gray-600: var(--ink-muted);
    --gray-300: var(--border);
    --gray-100: var(--bg-soft);
    --cream: var(--bg-cream);
    --white: var(--bg);
    --bg-alt: var(--bg-soft);
  }

  .fh * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .fh {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.62;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .fh h1, .fh h2, .fh h3, .fh .display {
    font-family: 'Big Shoulders Display', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.12;
    text-transform: uppercase;
    color: var(--ink);
  }

  .fh h1 .accent, .fh h2 .accent, .fh h3 .accent { color: var(--brand); }

  .fh a { color: inherit; text-decoration: none; }
  .fh img { max-width: 100%; display: block; }
  .fh button { cursor: pointer; font-family: inherit; }

  .fh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ============ HEADER ============ */
  .fh-header {
    background: var(--bg);
    color: var(--ink);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
  }
  .fh-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .fh-logo {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
  }
  .fh-logo-mark {
    width: 32px;
    height: 32px;
    background: var(--brand);
    border: none;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--ink-on-brand);
    font-weight: 700;
    font-family: 'Big Shoulders Display', sans-serif;
    letter-spacing: 0;
  }
  .fh-nav {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .fh-nav a {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--ink);
    transition: color 0.15s;
  }
  .fh-nav a:hover { color: var(--brand); }
  .fh-phone {
    background: var(--brand);
    color: var(--ink-on-brand) !important;
    padding: 12px 22px;
    font-weight: 700 !important;
    font-family: 'Big Shoulders Display', sans-serif !important;
    font-size: 14px !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.15s ease;
  }
  .fh-phone:hover {
    background: var(--brand-dark) !important;
    color: var(--ink-on-brand) !important;
  }
  .fh-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--ink);
    font-size: 28px;
  }

  /* ============ EYEBROW (red bordered tag with square bullet) ============ */
  .fh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--brand);
    color: var(--brand);
    padding: 8px 14px;
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 24px;
    border-radius: 2px;
    line-height: 1;
  }
  .fh-eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--brand);
    display: inline-block;
  }

  /* ============ HERO ============ */
  .fh-hero {
    background: var(--bg);
    color: var(--ink);
    padding: 72px 0 0;
    position: relative;
    overflow: hidden;
  }
  .fh-hero-inner {
    max-width: 880px;
    position: relative;
    z-index: 1;
  }
  .fh-hero-eyebrow {
    /* alias to .fh-eyebrow */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--brand);
    color: var(--brand);
    padding: 8px 14px;
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 28px;
    border-radius: 2px;
    line-height: 1;
  }
  .fh-hero-eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--brand);
    display: inline-block;
  }
  .fh-hero h1 {
    font-size: clamp(56px, 7.2vw, 96px);
    font-weight: 900;
    margin-bottom: 28px;
    color: var(--ink);
    line-height: 0.95;
    letter-spacing: 0.005em;
  }
  .fh-hero h1 .accent { color: var(--brand); }
  .fh-hero-summary {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-muted);
    margin-bottom: 36px;
    max-width: 520px;
  }
  .fh-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }

  /* ============ BUTTONS — solid red + outlined dark, with chunky offset shadow ============ */
  .fh-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: all 0.15s ease;
    border: 2px solid var(--ink);
    border-radius: 2px;
    line-height: 1;
    position: relative;
  }
  .fh-btn-primary {
    background: var(--brand);
    color: var(--ink-on-brand);
    border-color: var(--ink);
    box-shadow: 4px 4px 0 0 var(--ink);
  }
  .fh-btn-primary:hover {
    background: var(--brand-dark);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 0 var(--ink);
  }
  .fh-btn-secondary {
    background: var(--bg);
    color: var(--ink);
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 0 var(--ink);
  }
  .fh-btn-secondary:hover {
    background: var(--ink);
    color: var(--bg);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 0 var(--ink);
  }
  .fh-btn-arrow::after {
    content: '→';
    margin-left: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
  }

  .fh-hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
    color: var(--ink-muted);
    padding-top: 8px;
  }
  .fh-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .fh-hero-trust-item.with-icon::before {
    content: '';
    width: 14px;
    height: 14px;
    border: 1.5px solid var(--brand);
    border-radius: 50%;
    display: inline-block;
  }

  /* ============ HERO PHOTO PLACEHOLDER (dark with diagonal hash + corner brackets) ============ */
  .fh-photo {
    position: relative;
    background: var(--bg-darker);
    background-image:
      radial-gradient(ellipse at center, rgba(219,1,28,0.12) 0%, transparent 60%),
      repeating-linear-gradient(
        135deg,
        transparent 0,
        transparent 14px,
        rgba(219,1,28,0.06) 14px,
        rgba(219,1,28,0.06) 15px
      );
    border: 1.5px solid var(--brand);
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }
  .fh-photo-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--ink);
    color: var(--ink-on-dark);
    padding: 5px 10px;
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 2px;
    z-index: 2;
  }
  .fh-photo-bracket-tr,
  .fh-photo-bracket-bl {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--ink-on-dark);
    z-index: 2;
  }
  .fh-photo-bracket-tr {
    top: 12px;
    right: 12px;
    border-left: none;
    border-bottom: none;
  }
  .fh-photo-bracket-bl {
    bottom: 12px;
    left: 12px;
    border-right: none;
    border-top: none;
  }
  .fh-photo-caption {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: var(--ink-on-dark);
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    z-index: 2;
  }
  /* ============ TRUST STRIP ============ */
  .fh-trust-strip {
    background: var(--bg-cream);
    padding: 36px 0;
    border-top: 2px solid var(--brand);
    margin-top: 72px;
  }
  .fh-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px 40px;
    align-items: center;
  }
  .fh-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .fh-trust-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border: 1.5px solid var(--brand);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 16px;
  }
  .fh-trust-text {
    line-height: 1.2;
  }
  .fh-trust-label {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 2px;
  }
  .fh-trust-sub {
    font-size: 12px;
    color: var(--ink-muted);
  }

  /* ============ SECTION FRAME ============ */
  .fh-section {
    padding: 96px 0;
    background: var(--bg);
  }
  .fh-section-soft { background: var(--bg-soft); }
  .fh-section-cream { background: var(--bg-cream); }
  .fh-section-dark {
    background: var(--bg-dark);
    color: var(--ink-on-dark);
  }
  .fh-section-dark h1, .fh-section-dark h2, .fh-section-dark h3 { color: var(--ink-on-dark); }
  .fh-section-dark .fh-section-lede { color: var(--ink-muted-on-dark); }

  .fh-section-header {
    max-width: 760px;
    margin-bottom: 56px;
  }
  .fh-section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .fh-section-eyebrow {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 16px;
    display: block;
  }
  .fh-section h2 {
    font-size: clamp(44px, 5.4vw, 72px);
    margin-bottom: 20px;
    line-height: 0.95;
    letter-spacing: 0.005em;
  }
  .fh-section h2 .accent { color: var(--brand); }
  .fh-section-lede {
    font-size: 17px;
    color: var(--ink-muted);
    line-height: 1.6;
    max-width: 540px;
  }

  /* ============ SERVICES ============ */
  .fh-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
    gap: 0;
    background: var(--bg-soft);
  }
  /* Add 1px gutters via outer border */
  .fh-service-card {
    background: var(--bg);
    padding: 36px 36px 32px;
    border: 1px solid var(--border);
    margin: -0.5px;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .fh-service-card:hover {
    border-color: var(--brand);
    z-index: 2;
  }
  .fh-service-card h3 {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 28px;
    color: var(--ink);
    line-height: 1;
    letter-spacing: 0.01em;
  }
  .fh-service-card > p {
    font-size: 15px;
    color: var(--ink-muted);
    line-height: 1.55;
    margin-bottom: 8px;
  }
  .fh-service-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
  }
  .fh-service-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 0;
  }
  .fh-service-bullets li {
    font-size: 14px;
    color: var(--ink-muted);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .fh-service-bullets li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--brand);
    flex-shrink: 0;
    display: inline-block;
  }

  .fh-service-card-link {
    margin-top: auto;
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand);
    padding-top: 12px;
  }
  .fh-service-card-link::after {
    content: '→';
    margin-left: 6px;
    transition: transform 0.2s;
    display: inline-block;
  }
  .fh-service-card:hover .fh-service-card-link::after {
    transform: translateX(4px);
  }

  /* Services footer banner */
  .fh-services-footer {
    background: var(--ink);
    color: var(--ink-on-dark);
    padding: 22px 32px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .fh-services-footer-text {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 18px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
  }
  .fh-services-footer-text .accent { color: var(--brand); }
  .fh-services-footer-phone {
    color: var(--ink-on-dark);
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .fh-services-footer-phone::before { content: '☎'; }

  /* ============ HOW IT WORKS — huge red numerals ============ */
  .fh-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    border-top: 1px solid var(--border);
  }
  .fh-step {
    text-align: left;
    position: relative;
    padding: 40px 36px 40px 0;
    border-bottom: 1px solid var(--border);
  }
  .fh-step + .fh-step {
    border-left: 1px solid var(--border);
    padding-left: 36px;
  }
  .fh-step-number {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 96px;
    font-weight: 400;
    color: var(--brand);
    line-height: 0.85;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
  }
  .fh-step h3 {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 22px;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
  }
  .fh-step p {
    font-size: 15px;
    color: var(--ink-muted);
    line-height: 1.55;
  }

  /* ============ PRICING TIERS ============ */
  .fh-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  .fh-pricing-card {
    background: var(--bg-dark);
    color: var(--ink-on-dark);
    padding: 36px 32px 32px;
    position: relative;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .fh-pricing-card.featured {
    background: var(--brand);
    color: var(--ink-on-brand);
  }
  .fh-pricing-tag {
    position: absolute;
    top: -14px;
    left: 24px;
    background: var(--ink);
    color: var(--ink-on-dark);
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
  }
  .fh-pricing-card h3 {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 28px;
    margin-bottom: 4px;
    letter-spacing: 0.04em;
    color: inherit;
  }
  .fh-pricing-sub {
    font-size: 14px;
    line-height: 1.55;
    opacity: 0.8;
    margin-bottom: 12px;
  }
  .fh-pricing-card.featured .fh-pricing-sub { color: var(--ink); opacity: 0.85; }
  .fh-pricing-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: 'Big Shoulders Display', sans-serif;
    margin-bottom: 4px;
  }
  .fh-pricing-price .num {
    font-size: 56px;
    line-height: 1;
    letter-spacing: 0.005em;
  }
  .fh-pricing-price .unit {
    font-size: 16px;
    letter-spacing: 0.04em;
    opacity: 0.85;
  }
  .fh-pricing-fineprint {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 14px;
  }
  .fh-pricing-card.featured .fh-pricing-fineprint { color: var(--ink); opacity: 0.7; }
  .fh-pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
  }
  .fh-pricing-features li {
    font-size: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .fh-pricing-card.featured .fh-pricing-features li {
    border-bottom-color: rgba(20,20,20,0.18);
  }
  .fh-pricing-features li::before {
    content: '✓';
    color: var(--brand);
    font-weight: 700;
    width: 16px;
    flex-shrink: 0;
  }
  .fh-pricing-card.featured .fh-pricing-features li::before {
    color: var(--ink);
  }
  .fh-pricing-card .fh-btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
    box-shadow: none;
    border-color: transparent;
  }
  .fh-pricing-card .fh-btn-primary {
    background: var(--brand);
    color: var(--ink-on-brand);
    border-color: var(--brand);
  }
  .fh-pricing-card .fh-btn-primary:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    transform: none;
    box-shadow: none;
  }
  .fh-pricing-card.featured .fh-btn-primary {
    background: var(--ink);
    color: var(--ink-on-dark);
    border-color: var(--ink);
  }
  .fh-pricing-card.featured .fh-btn-primary:hover {
    background: var(--bg);
    color: var(--ink);
    border-color: var(--ink);
  }
  .fh-pricing-card.dark .fh-btn-primary {
    background: var(--brand);
  }

  /* Pricing footer strip — 4 commitment lines on dark bg */
  .fh-pricing-footer {
    background: var(--bg-dark);
    color: var(--ink-on-dark);
    padding: 32px;
    margin-top: 28px;
    border-radius: 2px;
  }
  .fh-pricing-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
  }
  .fh-pricing-footer-item h4 {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 15px;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
    color: var(--ink-on-dark);
  }
  .fh-pricing-footer-item p {
    font-size: 13px;
    color: var(--ink-muted-on-dark);
    margin: 0;
  }

  /* ============ PRICING TEASER CARD ============
     Used on subpages (services hub) to surface the same pricing
     rates as the homepage tier grid, in a single compact card.
     ============================================================ */
  .fh-hero-card {
    background: var(--bg);
    padding: 36px;
    border: 1.5px solid var(--ink);
    border-top: 4px solid var(--brand);
    box-shadow: 6px 6px 0 0 var(--ink);
  }
  .fh-hero-card h3 {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 28px;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
  }
  .price-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }
  .price-line:last-of-type {
    border-bottom: none;
  }
  .price-line .label {
    color: var(--ink-muted);
  }
  .price-line .amount {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.005em;
    font-variant-numeric: tabular-nums;
  }
  .fh-hero-card-footer {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 2px solid var(--ink);
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.6;
  }

  /* ============ REVIEWS ============ */
  .fh-reviews {
    background: var(--bg-soft);
  }
  .fh-review-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 980px;
    margin: 0 auto;
  }
  .fh-review {
    background: var(--bg);
    padding: 24px 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: start;
  }
  .fh-review.featured { border-bottom: 4px solid var(--brand); }
  .fh-review-avatar {
    width: 44px;
    height: 44px;
    background: var(--brand);
    color: var(--ink-on-brand);
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 20px;
    letter-spacing: 0;
  }
  .fh-review-body { min-width: 0; }
  .fh-review-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 14px;
    margin-bottom: 10px;
  }
  .fh-review-author {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 17px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
  }
  .fh-review-author-meta {
    font-size: 13px;
    color: var(--ink-muted);
  }
  .fh-review-stars {
    color: var(--brand);
    font-size: 14px;
    letter-spacing: 2px;
    align-self: start;
    padding-top: 4px;
  }
  .fh-review-quote {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink);
  }
  .fh-rating-card {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 14px 20px;
    border-radius: 2px;
  }
  .fh-rating-google {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--brand);
    border-radius: 50%;
    color: var(--brand);
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .fh-rating-card-label {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-muted);
  }
  .fh-rating-card-stars {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-family: 'Big Shoulders Display', sans-serif;
  }
  .fh-rating-card-stars .stars { color: var(--brand); font-size: 14px; letter-spacing: 1px; }
  .fh-rating-card-stars .num { color: var(--brand); font-size: 18px; }

  /* ============ SERVICE AREA (chips) ============ */
  .fh-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    max-width: none;
    justify-content: flex-start;
  }
  .fh-area-chip {
    padding: 10px 18px;
    background: var(--bg);
    border: 1px solid var(--border-strong);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
    border-radius: 2px;
    transition: all 0.15s ease;
    cursor: default;
  }
  .fh-area-chip:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--ink-on-brand);
  }
  .fh-shop-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--ink);
    color: var(--ink-on-dark);
    padding: 14px 22px;
    margin-top: 8px;
    margin-bottom: 32px;
    border-radius: 2px;
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .fh-shop-pill::before {
    content: '⌖';
    color: var(--brand);
    font-size: 18px;
  }
  .fh-areas-note {
    text-align: left;
    font-size: 15px;
    color: var(--ink-muted);
  }

  /* ============ FAQ ============ */
  .fh-faq-list {
    max-width: 880px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
  }
  .fh-faq-item {
    border-bottom: 1px solid var(--border);
  }
  .fh-faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: color 0.15s;
  }
  .fh-faq-item.open .fh-faq-question { color: var(--brand); }
  .fh-faq-toggle {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--bg);
    color: var(--brand);
    border: 1.5px solid var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
  }
  .fh-faq-item.open .fh-faq-toggle {
    background: var(--brand);
    color: var(--ink-on-brand);
    transform: rotate(180deg);
  }
  .fh-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-muted);
  }
  .fh-faq-item.open .fh-faq-answer {
    max-height: 600px;
    padding-bottom: 24px;
  }

  /* ============ CTA BANNER (red) ============ */
  .fh-cta-banner {
    background: var(--brand);
    color: var(--ink-on-brand);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  .fh-cta-banner::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 50%;
    height: 140%;
    background:
      linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .fh-cta-inner { position: relative; z-index: 1; max-width: 720px; }
  .fh-cta-banner .fh-eyebrow {
    border-color: var(--ink);
    color: var(--ink);
  }
  .fh-cta-banner .fh-eyebrow::before { background: var(--ink); }
  .fh-cta-banner h2 {
    font-size: clamp(40px, 5.4vw, 72px);
    margin-bottom: 18px;
    color: var(--ink-on-brand);
    line-height: 0.95;
  }
  .fh-cta-banner p {
    font-size: 17px;
    margin-bottom: 32px;
    max-width: 540px;
    color: var(--ink);
    opacity: 0.85;
  }
  .fh-cta-banner-ctas {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .fh-cta-banner .fh-btn {
    width: 100%;
    justify-content: space-between;
    background: var(--ink);
    color: var(--ink-on-dark);
    border-color: var(--bg);
    box-shadow: 4px 4px 0 0 var(--bg);
    padding: 22px 28px;
  }
  .fh-cta-banner .fh-btn:hover {
    background: var(--bg);
    color: var(--ink);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 0 var(--bg);
  }
  .fh-cta-banner .fh-btn .arrow { font-size: 20px; }
  .fh-cta-banner .fh-btn-phone {
    background: transparent;
    color: var(--ink);
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 0 var(--ink);
  }
  .fh-cta-banner .fh-btn-phone:hover {
    background: var(--ink);
    color: var(--ink-on-dark);
  }
  .fh-cta-banner .fh-btn-phone .meta {
    font-size: 11px;
    letter-spacing: 0.16em;
    opacity: 0.75;
  }

  /* ============ CONTACT / FORM ============ */
  .fh-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .fh-contact-info h2 {
    text-align: left;
    margin-bottom: 20px;
  }
  .fh-contact-list {
    list-style: none;
    margin-top: 28px;
    padding: 0;
  }
  .fh-contact-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
  }
  .fh-contact-icon {
    width: 40px;
    height: 40px;
    background: var(--brand);
    color: var(--ink-on-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 700;
    border-radius: 2px;
  }
  .fh-contact-label {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-muted);
  }
  .fh-contact-value {
    font-weight: 600;
    color: var(--ink);
  }

  .fh-form {
    background: var(--bg);
    padding: 36px;
    border: 1.5px solid var(--ink);
    border-top: 4px solid var(--brand);
    box-shadow: 6px 6px 0 0 var(--ink);
  }
  .fh-form h3 {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 30px;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
  }
  .fh-form-sub {
    font-size: 14px;
    color: var(--ink-muted);
    margin-bottom: 24px;
  }
  .fh-form .fh-btn {
    width: 100%;
    padding: 18px;
    margin-top: 8px;
    justify-content: center;
  }

  /* ============ GHL EMBED ZONES ============ */
  .fh-form iframe,
  .fh-form .ghl-form,
  .fh-form .ghl-survey {
    width: 100%;
    border: none;
    min-height: 520px;
    display: block;
    background: transparent;
  }
  .fh-embed-placeholder {
    border: 2px dashed var(--border-strong);
    background: var(--bg-cream);
    padding: 36px 24px;
    text-align: center;
    color: var(--ink-muted);
    font-size: 14px;
    line-height: 1.65;
    border-radius: 2px;
  }
  .fh-embed-placeholder-eyebrow {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 10px;
  }
  .fh-embed-placeholder h4 {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
  .fh-embed-placeholder code {
    font-family: 'SFMono-Regular', Consolas, monospace;
    font-size: 12px;
    background: var(--bg);
    padding: 2px 6px;
    border: 1px solid var(--border);
    border-radius: 2px;
    color: var(--ink);
  }

  /* ============ THE CREW (story + stats + photo grid) ============ */
  .fh-crew-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .fh-crew-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 36px;
  }
  .fh-stat {
    border-top: 2px solid var(--brand);
    padding-top: 12px;
  }
  .fh-stat-num {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 44px;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: 0.005em;
  }
  .fh-stat-label {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-muted);
    line-height: 1.3;
  }
  /* Single owner photo — fills the right column with a 4:5 portrait crop */
  .fh-owner-photo {
    width: 100%;
    max-width: 480px;
    justify-self: end;
  }
  .fh-owner-photo .fh-photo,
  .fh-owner-photo > img,
  .fh-owner-photo > picture > img {
    aspect-ratio: 4 / 5;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border: 1.5px solid var(--brand);
    border-radius: 2px;
  }

  /* ============ RECENT WORK GALLERY ============ */
  .fh-work-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
  }
  .fh-work-link {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .fh-work-link::after {
    content: '→';
    font-family: 'Inter', sans-serif;
    font-weight: 700;
  }
  .fh-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  /* Both placeholder <figure> and real <picture>/<img> share these dims */
  .fh-work-item {
    aspect-ratio: 5 / 4;
    margin: 0;
    overflow: hidden;
  }
  picture.fh-work-item,
  .fh-work-item > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1.5px solid var(--brand);
    border-radius: 2px;
  }

  /* ============ FOOTER (black) ============ */
  .fh-footer {
    background: var(--bg-dark);
    color: var(--ink-muted-on-dark);
    padding: 56px 0 24px;
    border-top: none;
  }
  .fh-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .fh-footer h4 {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 20px;
  }
  .fh-footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 18px;
    max-width: 320px;
    color: var(--ink-muted-on-dark);
  }
  .fh-footer .fh-logo { color: var(--ink-on-dark); }
  .fh-footer .fh-logo-mark { background: var(--brand); color: var(--ink-on-brand); }
  .fh-footer-contact {
    list-style: none;
    margin-top: 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .fh-footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--ink-on-dark);
  }
  .fh-footer-contact li::before {
    color: var(--brand);
    font-size: 14px;
    width: 16px;
    flex-shrink: 0;
  }
  .fh-footer-contact .phone::before { content: '☎'; }
  .fh-footer-contact .email::before { content: '✉'; }
  .fh-footer-contact .addr::before { content: '⌖'; }
  .fh-footer ul { list-style: none; padding: 0; }
  .fh-footer ul li {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .fh-footer ul a {
    color: var(--ink-on-dark);
    transition: color 0.15s;
  }
  .fh-footer ul a:hover { color: var(--brand); }
  .fh-footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-dark);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: var(--ink-muted-on-dark);
  }
  .fh-footer-social {
    display: flex;
    gap: 14px;
    align-items: center;
  }
  .fh-footer-social a {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-dark);
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-on-dark);
    font-size: 13px;
    transition: all 0.15s;
  }
  .fh-footer-social a:hover {
    background: var(--brand);
    color: var(--ink-on-brand);
    border-color: var(--brand);
  }
  .fh-footer-bottom-links {
    display: flex;
    gap: 18px;
  }
  .fh-footer-bottom-links a:hover { color: var(--brand); }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 980px) {
    .fh-contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .fh-crew-inner { grid-template-columns: 1fr; gap: 40px; }
    .fh-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .fh-services-grid { grid-template-columns: 1fr; }
    .fh-step + .fh-step { border-left: none; padding-left: 0; }
    .fh-work-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 680px) {
    .fh-section { padding: 64px 0; }
    .fh-hero { padding: 56px 0 0; }
    .fh-hero h1 { font-size: clamp(44px, 11vw, 64px); }
    .fh-section h2 { font-size: clamp(36px, 9vw, 56px); }
    .fh-nav { display: none; }
    .fh-nav.active {
      display: flex;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--bg);
      padding: 20px;
      flex-direction: column;
      align-items: stretch;
      gap: 16px;
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-md);
      z-index: 99;
    }
    .fh-menu-toggle { display: block; font-size: 26px; }
    .fh-footer-grid { grid-template-columns: 1fr; }
    .fh-hero-ctas { flex-direction: column; align-items: stretch; }
    .fh-btn { width: 100%; justify-content: center; }
    .fh-pricing-card .fh-btn, .fh-cta-banner .fh-btn { width: 100%; }
    .fh-review { grid-template-columns: auto 1fr; }
    .fh-review-stars { grid-column: 1 / -1; padding-top: 0; }
    .fh-step-number { font-size: 72px; }
    .fh-crew-stats { grid-template-columns: 1fr 1fr; }
  }

  /* ============================================================
     SUBPAGE PATTERNS — used on every page except the homepage
     ============================================================ */

  .fh-breadcrumbs {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    font-size: 13px;
    color: var(--ink-muted);
  }
  .fh-breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
  }
  .fh-breadcrumbs li + li::before {
    content: "›";
    margin-right: 6px;
    color: var(--ink-subtle);
  }
  .fh-breadcrumbs a {
    color: var(--brand);
    text-decoration: none;
  }
  .fh-breadcrumbs a:hover { text-decoration: underline; }
  .fh-breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

  .fh-subhero {
    background: var(--bg-cream);
    padding: 80px 0 72px;
    border-bottom: 2px solid var(--brand);
  }
  .fh-subhero-inner { max-width: 880px; }
  .fh-subhero .fh-hero-eyebrow { margin-bottom: 22px; }
  .fh-subhero h1 {
    font-size: clamp(48px, 6vw, 80px);
    margin-bottom: 22px;
    line-height: 0.95;
  }
  .fh-subhero p.fh-subhero-lede {
    font-size: 18px;
    color: var(--ink-muted);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 680px;
  }
  .fh-subhero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .fh-category { margin-bottom: 56px; }
  .fh-category:last-child { margin-bottom: 0; }
  .fh-category-header {
    border-left: 4px solid var(--brand);
    padding: 4px 0 4px 16px;
    margin-bottom: 24px;
  }
  .fh-category-header-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 6px;
  }
  .fh-category-header-top h3 {
    margin-bottom: 0;
  }
  .fh-category-header h3 {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
  }
  .fh-category-price {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
  }
  .fh-category-header p {
    font-size: 15px;
    color: var(--ink-muted);
    margin: 0;
  }
  .fh-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
  }
  .fh-category-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 18px 20px;
    transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
  }
  .fh-category-item:hover {
    border-color: var(--brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  /* Pending variant — used in hubs when the detail page hasn't shipped yet.
     Keeps the visible card so the hub still demonstrates scope, but suppresses
     the click affordance (no link, no hover lift). */
  .fh-category-item.fh-category-item-pending {
    cursor: default;
    opacity: 0.85;
  }
  .fh-category-item.fh-category-item-pending:hover {
    border-color: var(--border);
    transform: none;
    box-shadow: none;
  }
  .fh-category-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 6px;
    color: var(--ink);
  }
  .fh-category-item p {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.5;
    margin: 0;
  }
  .fh-category-item a {
    color: inherit;
    display: block;
  }

  .fh-teaser {
    background: var(--brand-soft);
    border: 1.5px solid var(--brand);
    border-radius: 2px;
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    margin: 32px 0;
  }
  .fh-teaser h3 {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 26px;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
  }
  .fh-teaser p {
    color: var(--ink-muted);
    margin: 0;
    font-size: 15px;
  }
  @media (max-width: 680px) {
    .fh-teaser { grid-template-columns: 1fr; text-align: left; }
    .fh-subhero { padding: 56px 0; }
    .fh-category-header h3 { font-size: 22px; }
  }
