  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --white:      #FFFFFF;
    --off-white:  #F6F6F4;
    --light:      #EFEFED;
    --mid:        #C4C4C0;
    --muted:      #888884;
    --dark:       #3A3A38;
    --near-black: #1A1A18;
    --black:      #0C0C0A;
    --border:     rgba(0,0,0,0.09);
    --border-mid: rgba(0,0,0,0.18);
  }

  html { font-size: 16px; scroll-behavior: smooth; }

  body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--white);
    color: var(--near-black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }

  /* ============ NAV ============ */
  .nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 0.5px solid var(--border);
    padding: 0 2rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .nav-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
  }

  .nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 2px;
    background: transparent;
    color: var(--black);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    flex-shrink: 0;
  }

  .nav-toggle-bar {
    display: block;
    width: 20px;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-logo img {
    height: 38px;
    width: auto;
    filter: invert(1);
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    margin-left: auto;
  }

  .nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: var(--dark);
    letter-spacing: 0.02em;
    transition: color 0.15s;
  }

  .nav-links a:hover { color: var(--black); }

  .nav-links .nav-current a {
    color: var(--black);
    font-weight: 500;
  }

  .nav-social-item {
    display: flex;
    align-items: center;
  }

  .nav-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--black) !important;
  }

  .nav-social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    display: block;
  }

  .nav-cta {
    background: var(--black) !important;
    color: var(--white) !important;
    padding: 7px 18px !important;
    border-radius: 2px;
    font-size: 12px !important;
    letter-spacing: 0.04em !important;
  }

  .nav-cta:hover { background: var(--dark) !important; }

  .header-survey-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--black);
    color: var(--white) !important;
    border: 0.5px solid transparent;
    padding: 11px 20px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
  }

  .header-survey-cta:hover {
    background: var(--near-black);
  }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    width: 100%;
    min-height: 88vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .hero-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      160deg,
      rgba(0,0,0,0.05) 0%,
      rgba(0,0,0,0.20) 40%,
      rgba(0,0,0,0.72) 100%
    );
  }

  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2.5rem 4rem;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 1.25rem;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: rgba(255,255,255,0.5);
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(32px, 5.5vw, 62px);
    line-height: 1.1;
    color: var(--white);
    max-width: 700px;
    margin-bottom: 1.5rem;
  }

  .hero h1 em {
    font-style: italic;
    font-weight: 400;
  }

  .hero-sub {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 2.25rem;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
  }

  .btn-primary {
    display: inline-block;
    background: var(--white);
    color: var(--black);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 12px 28px;
    border-radius: 2px;
    transition: background 0.15s;
  }

  .btn-primary:hover { background: var(--light); }

  .hero-actions .btn-ghost {
    display: inline-block;
    color: var(--white) !important;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 12px 0;
    border-bottom: 0.5px solid rgba(255,255,255,0.35);
    transition: color 0.15s, border-color 0.15s;
  }

  .hero-actions .btn-ghost:hover {
    color: var(--white) !important;
    border-color: rgba(255,255,255,0.7);
  }

  /* ============ TRUST STRIP ============ */
  .trust-strip {
    background: var(--near-black);
    padding: 0 2rem;
  }

  .trust-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1.1rem 0;
    flex: 1;
    border-right: 0.5px solid rgba(255,255,255,0.08);
  }

  .trust-item:first-child { padding-left: 0; }
  .trust-item:last-child { border-right: none; padding-right: 0; }
  .trust-item + .trust-item { padding-left: 2rem; }

  .trust-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .trust-icon svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.7); }

  .trust-text { line-height: 1.3; }
  .trust-label { font-size: 13px; font-weight: 500; color: var(--white); }
  .trust-sub { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.02em; }

  /* ============ SECTION WRAPPER ============ */
  .section { padding: 5rem 2rem; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-alt { background: var(--off-white); }

  .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .section-kicker {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.2;
    color: var(--black);
  }

  .section-link {
    font-size: 12px;
    font-weight: 500;
    color: var(--dark);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    border-bottom: 0.5px solid var(--border-mid);
    padding-bottom: 1px;
    flex-shrink: 0;
  }

  .section-link:hover { color: var(--black); border-color: var(--black); }

  /* ============ SERVICES ============ */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 0.5px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
  }

  .service-card {
    background: var(--white);
    padding: 2rem 1.75rem;
    transition: background 0.15s;
  }

  .service-card:hover { background: var(--off-white); }

  .service-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--light);
    line-height: 1;
    margin-bottom: 1.25rem;
    font-style: italic;
  }

  .service-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.6rem;
    line-height: 1.3;
  }

  .service-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
  }

  /* ============ FEATURED POST ============ */
  .featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 0.5px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 2.5rem;
  }

  .featured-img {
    position: relative;
    overflow: hidden;
  }

  .featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .featured:hover .featured-img img { transform: scale(1.03); }

  .featured-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 0.5px solid var(--border);
    background: var(--white);
  }

  .post-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
  }

  .featured-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
    transition: color 0.15s;
  }

  .featured:hover .featured-title { color: var(--dark); }

  .featured-excerpt {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    flex: 1;
  }

  .post-meta {
    font-size: 12px;
    color: var(--mid);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .post-meta-sep { color: var(--light); }

  /* ============ POST GRID ============ */
  .posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .post-card {
    border: 0.5px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.15s;
  }

  .post-card:hover { border-color: var(--border-mid); }

  .post-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--light);
  }

  .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .post-card:hover .post-thumb img { transform: scale(1.04); }

  .post-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .post-date {
    font-size: 11px;
    color: var(--mid);
    letter-spacing: 0.04em;
  }

  .post-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--black);
    flex: 1;
    transition: color 0.15s;
  }

  .post-card:hover .post-title { color: var(--dark); }

  .post-excerpt {
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* ============ COVERAGE ============ */
  .coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .coverage-text {}

  .coverage-text p {
    font-size: 15px;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }

  .area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 1.5rem;
  }

  .area-tag {
    font-size: 12px;
    color: var(--dark);
    background: var(--white);
    border: 0.5px solid var(--border-mid);
    border-radius: 20px;
    padding: 4px 12px;
  }

  .coverage-visual {
    background: var(--light);
    border-radius: 3px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.5px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  .map-placeholder {
    font-size: 13px;
    color: var(--muted);
    text-align: center;
    padding: 2rem;
  }

  /* ============ CTA BAND ============ */
  .cta-band {
    background: var(--near-black);
    padding: 5rem 2rem;
    text-align: center;
  }

  .cta-band-inner {
    max-width: 580px;
    margin: 0 auto;
  }

  .cta-band h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1rem;
  }

  .cta-band h2 em { font-style: italic; font-weight: 400; }

  .cta-band p {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .cta-band-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-white {
    background: var(--white);
    color: var(--black);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 12px 28px;
    border-radius: 2px;
    display: inline-block;
    transition: background 0.15s;
  }

  .btn-white:hover { background: var(--light); }

  .cta-band-actions .btn-outline-white {
    color: rgba(255,255,255,0.82) !important;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 12px 28px;
    border-radius: 2px;
    display: inline-block;
    border: 0.5px solid rgba(255,255,255,0.25);
    transition: border-color 0.15s, color 0.15s;
  }

  .cta-band-actions .btn-outline-white:hover {
    border-color: rgba(255,255,255,0.6);
    color: var(--white) !important;
  }

  /* ============ FOOTER ============ */
  footer {
    background: var(--black);
    padding: 3rem 2rem 2rem;
    border-top: 0.5px solid rgba(255,255,255,0.06);
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 0.5px solid rgba(255,255,255,0.08);
    margin-bottom: 1.5rem;
  }

  .footer-brand img {
    height: 30px;
    width: auto;
    margin-bottom: 1rem;
  }

  .footer-brand p {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
  }

  .footer-col h4 {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1rem;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

  .footer-col ul a {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    transition: color 0.15s;
  }

  .footer-col ul a:hover { color: rgba(255,255,255,0.85); }

  .footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
  }

  .social-links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
  }

  .social-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    transition: color 0.15s;
    letter-spacing: 0.04em;
  }

  .social-links a:hover { color: rgba(255,255,255,0.7); }

  .floating-cta {
    position: fixed;
    bottom: max(24px, calc(env(safe-area-inset-bottom, 0px) + 24px));
    right: max(24px, calc(env(safe-area-inset-right, 0px) + 24px));
    z-index: 9999;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 24px;
    border-radius: 2px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    border: 0.5px solid transparent;
  }

  .floating-cta.is-light-bg {
    background: #0C0C0A;
    color: #FFFFFF !important;
    border-color: transparent;
  }

  .floating-cta.is-dark-bg {
    background: #FFFFFF;
    color: #0C0C0A !important;
    border-color: rgba(0,0,0,0.12);
  }

  .page-contact-us .floating-cta {
    display: none;
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 900px) {
    .nav {
      padding-right: 1rem;
      padding-left: 1rem;
    }

    .nav-toggle {
      display: inline-flex;
    }

    .header-survey-cta {
      display: none;
    }

    .nav > .nav-links {
      position: absolute;
      top: calc(100% + 1px);
      left: 1rem;
      right: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      padding: 0.9rem;
      list-style: none;
      background: rgba(255,255,255,0.98);
      border: 0.5px solid var(--border);
      border-radius: 3px;
      box-shadow: 0 16px 48px rgba(12,12,10,0.14);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(-8px);
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
      align-items: stretch;
      z-index: 220;
    }

    .nav > .nav-links li {
      width: 100%;
    }

    .nav > .nav-links a {
      display: block;
      width: 100%;
      padding: 0.9rem 1rem;
      font-size: 14px;
      border-bottom: 0.5px solid var(--border);
    }

    .nav > .nav-links .nav-social-link {
      width: 100%;
      height: auto;
      justify-content: flex-start;
      padding: 0.9rem 1rem;
    }

    .nav > .nav-links .nav-social-link svg {
      width: 24px;
      height: 24px;
    }

    .nav > .nav-links li:last-child a {
      border-bottom: 0;
    }

    .nav > .nav-links .nav-cta {
      margin-top: 0.35rem;
      text-align: center;
      border-bottom: 0;
    }

    .nav.is-open > .nav-links {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }

    .nav.is-open .nav-toggle-bar:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
    }

    .nav.is-open .nav-toggle-bar:nth-child(2) {
      opacity: 0;
    }

    .nav.is-open .nav-toggle-bar:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
    }

    .services-grid { grid-template-columns: 1fr 1fr; }
    .featured { grid-template-columns: 1fr; }
    .featured-img { aspect-ratio: 16/9; }
    .posts-grid { grid-template-columns: 1fr 1fr; }
    .coverage-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
    .posts-grid { grid-template-columns: 1fr; }
    .trust-inner { flex-direction: column; gap: 0; }
    .trust-item { border-right: none; border-bottom: 0.5px solid rgba(255,255,255,0.08); padding-left: 0 !important; }
    .trust-item:last-child { border-bottom: none; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .hero { min-height: 70vh; }
    .floating-cta {
      bottom: max(16px, calc(env(safe-area-inset-bottom, 0px) + 16px));
      right: max(16px, calc(env(safe-area-inset-right, 0px) + 16px));
      padding: 13px 20px;
      font-size: 13px;
    }
  }

/* ── POST PAGE ── */

.progress-bar {
  position: fixed;
  top: 60px;
  left: 0;
  height: 2px;
  background: var(--near-black);
  width: 0%;
  z-index: 199;
  transition: width 0.1s linear;
}

.breadcrumb {
  border-bottom: 0.5px solid var(--border);
}

.breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}

.breadcrumb-inner a { color: var(--muted); transition: color 0.15s; }
.breadcrumb-inner a:hover { color: var(--black); }
.breadcrumb-sep { color: var(--light); }

.article-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 5rem;
  align-items: start;
}

.article-header {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 0.5px solid var(--border);
}

.article-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.article-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 13px;
  color: var(--mid);
  flex-wrap: wrap;
}

.meta-sep { color: var(--light); }

.meta-tag {
  background: var(--light);
  color: var(--dark);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.gh-content {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--dark);
}

.gh-content p { margin-bottom: 1.5rem; }
.gh-content p:last-child { margin-bottom: 0; }

.gh-content h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 26px;
  color: var(--black);
  line-height: 1.25;
  margin: 2.5rem 0 1rem;
  padding-top: 0.5rem;
}

.gh-content h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--black);
  line-height: 1.3;
  margin: 2rem 0 0.75rem;
}

.gh-content h2:first-child,
.gh-content h3:first-child { margin-top: 0; }

.gh-content img {
  width: 100%;
  border-radius: 3px;
  margin: 2rem 0;
  display: block;
}

.gh-content figure { margin: 2rem 0; }

.gh-content figure img {
  margin: 0;
  width: 100%;
  border-radius: 3px;
}

.gh-content figcaption {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 0.6rem;
  font-style: italic;
}

.gh-content ul,
.gh-content ol { margin: 0 0 1.5rem 1.5rem; }

.gh-content li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.gh-content blockquote {
  border-left: 2px solid var(--near-black);
  margin: 2rem 0;
  padding: 0.5rem 1.5rem;
  font-style: italic;
  font-size: 20px;
  color: var(--near-black);
}

.gh-content a {
  color: var(--near-black);
  border-bottom: 0.5px solid var(--border-mid);
  transition: border-color 0.15s;
}

.gh-content a:hover { border-color: var(--near-black); }

.gh-content hr {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 2.5rem 0;
}

.author-block {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 0.5px solid var(--border);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--light);
  border: 0.5px solid var(--border);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 2px;
}

.author-location {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

@media (prefers-color-scheme: dark) {
  body,
  .site,
  .site-content {
    background: var(--black);
    color: rgba(255,255,255,0.88);
  }

  .nav {
    background: rgba(12,12,10,0.96);
    border-bottom-color: rgba(255,255,255,0.08);
  }

  .nav-toggle {
    color: var(--white);
  }

  .nav-logo img {
    filter: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.72);
  }

  .nav-links a:hover,
  .nav-links .nav-current a,
  .nav-social-link {
    color: var(--white) !important;
  }

  .header-survey-cta {
    background: var(--white);
    color: var(--black) !important;
    border-color: rgba(255,255,255,0.14);
  }

  .header-survey-cta:hover {
    background: rgba(255,255,255,0.92);
  }

  .section {
    background: var(--black);
  }

  .section-alt {
    background: var(--near-black);
  }

  .section-kicker,
  .post-tag,
  .post-date,
  .post-meta,
  .coverage-text p,
  .map-placeholder,
  .service-desc,
  .post-excerpt,
  .featured-excerpt {
    color: rgba(255,255,255,0.62);
  }

  .section-title,
  .section-link,
  .service-name,
  .featured-title,
  .post-title {
    color: var(--white);
  }

  .section-link {
    border-bottom-color: rgba(255,255,255,0.18);
  }

  .section-link:hover,
  .featured:hover .featured-title,
  .post-card:hover .post-title {
    color: rgba(255,255,255,0.86);
    border-color: rgba(255,255,255,0.45);
  }

  .services-grid,
  .featured,
  .post-card {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
  }

  .service-card,
  .featured-body,
  .post-body {
    background: #151513;
  }

  .service-card:hover,
  .post-card:hover {
    background: #1c1c19;
  }

  .featured-body {
    border-left-color: rgba(255,255,255,0.08);
  }

  .service-num {
    color: rgba(255,255,255,0.16);
  }

  .post-meta-sep,
  .breadcrumb-sep {
    color: rgba(255,255,255,0.18);
  }

  .post-thumb,
  .coverage-visual,
  .author-avatar {
    background: #141412;
    border-color: rgba(255,255,255,0.08);
  }

  .area-tag,
  .meta-tag {
    background: #181815;
    color: rgba(255,255,255,0.78);
    border-color: rgba(255,255,255,0.12);
  }

  .map-placeholder div[style] {
    color: rgba(255,255,255,0.32) !important;
  }

  .progress-bar {
    background: var(--white);
  }

  .breadcrumb,
  .article-header,
  .author-block,
  .gh-content hr {
    border-color: rgba(255,255,255,0.08);
  }

  .breadcrumb-inner,
  .breadcrumb-inner a,
  .article-meta,
  .article-tag,
  .gh-content figcaption,
  .author-location {
    color: rgba(255,255,255,0.58);
  }

  .article-title,
  .gh-content h2,
  .gh-content h3,
  .author-name {
    color: var(--white);
  }

  .gh-content,
  .gh-content a {
    color: rgba(255,255,255,0.78);
  }

  .gh-content blockquote {
    border-left-color: rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.88);
  }

  .gh-content a {
    border-bottom-color: rgba(255,255,255,0.22);
  }

  .gh-content a:hover,
  .breadcrumb-inner a:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.46);
  }

}

@media (prefers-color-scheme: dark) and (max-width: 900px) {
  .nav > .nav-links {
    background: rgba(12,12,10,0.98);
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 16px 48px rgba(0,0,0,0.45);
  }

  .nav > .nav-links a,
  .nav > .nav-links .nav-social-link {
    border-bottom-color: rgba(255,255,255,0.08);
  }
}

.author-bio {
  font-size: 13px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.7;
}

.article-sidebar {
  position: sticky;
  top: 80px;
}

.sidebar-card {
  background: var(--off-white);
  border: 0.5px solid var(--border);
  border-radius: 3px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.sidebar-card h3 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.detail-row { margin-bottom: 0.9rem; }
.detail-row:last-child { margin-bottom: 0; }

.detail-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.detail-value {
  font-size: 13px;
  color: var(--near-black);
  font-weight: 300;
  line-height: 1.5;
}

.scope-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 4px;
}

.scope-tag {
  font-size: 11px;
  color: var(--dark);
  background: var(--white);
  border: 0.5px solid var(--border-mid);
  border-radius: 20px;
  padding: 3px 10px;
}

.sidebar-divider {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 1rem 0;
}

.cta-card {
  background: var(--black);
  border-radius: 3px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.cta-card p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.cta-btn {
  display: block;
  width: 100%;
  padding: 9px 0;
  background: var(--white);
  color: var(--black);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s;
}

.cta-btn:hover { background: var(--light); }

.share-block {
  border: 0.5px solid var(--border);
  border-radius: 3px;
  padding: 1.25rem 1.5rem;
}

.share-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.share-links { display: flex; gap: 8px; }

.share-link {
  flex: 1;
  padding: 7px 0;
  border: 0.5px solid var(--border-mid);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 500;
  color: var(--dark);
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.15s, border-color 0.15s;
}

.share-link:hover { background: var(--off-white); border-color: var(--near-black); color: var(--black); }

.toc-block {
  border: 0.5px solid var(--border);
  border-radius: 3px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.toc-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toc-list a {
  font-size: 13px;
  color: var(--dark);
  font-weight: 300;
  padding: 4px 0;
  display: block;
  transition: color 0.15s;
}

.toc-list a:hover { color: var(--black); }
.toc-list a.active { color: var(--black); font-weight: 500; }

.related-section {
  border-top: 0.5px solid var(--border);
  padding: 3.5rem 2rem 5rem;
}

.related-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.related-kicker {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.related-heading {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 2rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.related-card {
  border: 0.5px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  display: block;
  transition: border-color 0.15s;
}

.related-card:hover { border-color: var(--border-mid); }

.related-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--light);
}

.related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}

.related-card:hover .related-thumb img { transform: scale(1.04); }

.related-body {
  padding: 1rem 1.1rem;
  border-top: 0.5px solid var(--border);
}

.related-date {
  font-size: 11px;
  color: var(--mid);
  margin-bottom: 4px;
}

.related-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.35;
}

.cta-band {
  background: var(--near-black);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-band-inner { max-width: 540px; margin: 0 auto; }

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 0.9rem;
}

.cta-band h2 em { font-style: italic; font-weight: 400; }

.cta-band p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.btn-white {
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 11px 26px;
  border-radius: 2px;
  display: inline-block;
  transition: background 0.15s;
}

.btn-white:hover { background: var(--light); }

.btn-outline {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 400;
  padding: 11px 26px;
  border-radius: 2px;
  display: inline-block;
  border: 0.5px solid rgba(255,255,255,0.2);
  transition: border-color 0.15s, color 0.15s;
}

.btn-outline:hover { border-color: rgba(255,255,255,0.55); color: var(--white); }

@media (max-width: 900px) {
  .article-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .article-sidebar { position: static; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .related-grid { grid-template-columns: 1fr; }
  .article-wrap { padding: 2rem 1.25rem 4rem; }
}

@media (prefers-color-scheme: dark) {
  .author-bio,
  .related-kicker,
  .related-date {
    color: rgba(255,255,255,0.58);
  }

  .related-heading,
  .related-title {
    color: var(--white);
  }

  .related-card,
  .related-body {
    border-color: rgba(255,255,255,0.08);
    background: #151513;
  }

  .related-thumb {
    background: #141412;
  }
}
