/* ============================================================
   content.css — EZ BH Projects SEO Content Pages
   Brand: Navy #0A2540, Gold #D4AF37, Off-white #f8f6f1
   Fonts: Cormorant Garamond (headings), Montserrat (body)
   Mobile-first: 320px → 1280px
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --navy: #0A2540;
  --navy-dark: #061a2e;
  --gold: #D4AF37;
  --gold-light: #e8cc6b;
  --off-white: #f8f6f1;
  --text: #1a1a1a;
  --text-muted: #5a6475;
  --border: #ddd8ce;
  --radius: 4px;
  --transition: 200ms ease;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --section-pad: clamp(2rem, 5vw, 4rem);
  --inner-max: 860px;
  --wide-max: 1200px;
}

/* ── Base Content Page ─────────────────────────────────────── */
.content-page {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
}

/* ── Content Hero ──────────────────────────────────────────── */
.content-hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 1.25rem clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
}

.content-hero--dark {
  background: var(--navy);
  color: #fff;
}

.content-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.content-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.content-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,37,64,0.72) 0%, rgba(10,37,64,0.88) 100%);
}

.content-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--wide-max);
  margin: 0 auto;
}

.content-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
  color: inherit;
}

.content-hero__subtitle {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 300;
  opacity: 0.88;
  margin: 0;
  max-width: 640px;
}

.content-hero__category {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* ── Breadcrumb ────────────────────────────────────────────── */
.content-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0.75;
}

.content-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.content-breadcrumb a:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* ── Headline Answer ───────────────────────────────────────── */
.headline-answer {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin: 0;
}

.headline-answer p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.65;
  margin: 0;
  color: var(--navy);
  max-width: var(--inner-max);
}

@media (min-width: 768px) {
  .headline-answer {
    padding: 1.5rem 2rem;
  }
}

/* ── Content Sections ──────────────────────────────────────── */
.content-section {
  padding: var(--section-pad) 1.25rem;
}

.content-section + .content-section {
  padding-top: 0;
}

.content-section__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
}

.content-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 300;
  color: var(--navy);
  margin: 0 0 1.25rem;
  line-height: 1.2;
}

.content-section h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.75rem;
}

.section-eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* ── Byline ────────────────────────────────────────────────── */
.content-byline {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  background: var(--off-white);
}

.content-byline a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

.content-byline a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.byline__role,
.byline__reviewed,
.byline__updated {
  font-size: 0.8125rem;
}

/* ── Fact Table ────────────────────────────────────────────── */
.fact-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 0.5rem 0 1.5rem;
}

.fact-table thead {
  background: var(--navy);
  color: #fff;
}

.fact-table thead th {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  text-align: left;
}

.fact-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.fact-table tbody tr:nth-child(even) {
  background: var(--off-white);
}

.fact-table td {
  padding: 0.75rem 1rem;
  vertical-align: top;
  line-height: 1.5;
}

.fact-table td:first-child {
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .fact-table td:first-child {
    white-space: normal;
  }
}

/* ── FAQ Block ─────────────────────────────────────────────── */
.faq-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.content-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.content-faq-item[open] {
  border-color: var(--gold);
}

.content-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
  background: var(--off-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
  user-select: none;
}

.content-faq-item summary::-webkit-details-marker {
  display: none;
}

.content-faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}

.content-faq-item[open] summary::after {
  content: '−';
}

.content-faq-item summary:hover {
  background: #eeeae3;
}

.content-faq-item__answer {
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text);
  border-top: 1px solid var(--border);
}

.content-faq-item__answer p {
  margin: 0;
}

/* ── CTA Block ─────────────────────────────────────────────── */
.cta-block {
  background: var(--navy);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 5rem) 1.25rem;
  text-align: center;
}

.cta-block__inner {
  max-width: 680px;
  margin: 0 auto;
}

.cta-block__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 300;
  margin: 0.75rem 0 1rem;
  line-height: 1.15;
}

.cta-block__body {
  font-size: 1rem;
  opacity: 0.88;
  margin: 0 0 2rem;
  line-height: 1.6;
}

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

/* accent-line override for dark bg */
.cta-block .accent-line--center {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.25rem;
}

/* ── Related Block ─────────────────────────────────────────── */
.related-block {
  background: var(--off-white);
  padding: var(--section-pad) 1.25rem;
  border-top: 1px solid var(--border);
}

.related-block__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 300;
  color: var(--navy);
  margin: 0 0 1.25rem;
}

.related-block__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.related-block__list--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.5rem;
}

.related-block__link {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
}

.related-block__link:hover {
  color: var(--gold);
  text-decoration: underline;
}

.related-block__teaser {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ── Citations Footer ──────────────────────────────────────── */
.citations-footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
}

.citations-footer__heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.citations-footer__list {
  padding-left: 1.25rem;
  margin: 0;
}

.citations-footer__item {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
  line-height: 1.5;
}

.citations-footer__item a {
  color: var(--text-muted);
  text-decoration: underline;
}

.citations-footer__item a:hover {
  color: var(--navy);
}

/* ── Location Grid ─────────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.location-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.location-card:hover {
  box-shadow: 0 4px 20px rgba(10,37,64,0.1);
  border-color: var(--gold);
}

.location-card--ultra {
  background: var(--navy);
  color: #fff;
  border-color: var(--gold);
}

.location-card__badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  background: var(--off-white);
  color: var(--navy);
  margin-bottom: 0.625rem;
}

.location-card__badge--ultra {
  background: var(--gold);
  color: var(--navy);
}

.location-card__name {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.location-card__teaser,
.location-card__desc {
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0 0 1rem;
  opacity: 0.85;
}

.location-card__link,
.location-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.location-card__link:hover,
.location-card__cta:hover {
  text-decoration: underline;
}

/* ── Service Grid ──────────────────────────────────────────── */
.service-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.content-service-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
}

.content-service-card:hover {
  box-shadow: 0 4px 20px rgba(10,37,64,0.1);
  border-color: var(--gold);
}

.content-service-card--featured,
.content-service-card--partnership {
  border-color: var(--gold);
  background: var(--navy);
  color: #fff;
}

.content-service-card__badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  background: var(--gold);
  color: var(--navy);
  margin-bottom: 0.625rem;
}

.content-service-card__media {
  flex-shrink: 0;
}

.content-service-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.content-service-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.content-service-card__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.content-service-card__desc {
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0 0 1rem;
  flex: 1;
  opacity: 0.85;
}

.content-service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-top: auto;
}

.content-service-card__cta:hover {
  text-decoration: underline;
}

/* ── Guide Grid ────────────────────────────────────────────── */
.guide-grid,
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.guide-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
}

.guide-card:hover {
  box-shadow: 0 4px 20px rgba(10,37,64,0.1);
  border-color: var(--gold);
}

.guide-card__img-wrap {
  flex-shrink: 0;
}

.guide-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.guide-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.guide-card__category {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.guide-card__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  margin: 0 0 0.625rem;
  line-height: 1.2;
  color: var(--navy);
}

.guide-card__desc {
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0 0 1rem;
  flex: 1;
  color: var(--text-muted);
}

.guide-card__reading-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
  margin-bottom: 0.75rem;
}

.guide-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-top: auto;
}

.guide-card__cta:hover {
  text-decoration: underline;
}

/* ── Review Card ───────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.review-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-card__rating,
.review-card__stars,
.rating-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.review-card__body {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  font-style: italic;
  color: var(--text);
  flex: 1;
}

.review-card__body p {
  margin: 0;
}

.review-card__footer,
.review-card__author {
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem 0.75rem;
}

.review-card__author strong {
  color: var(--navy);
  font-weight: 600;
}

.review-card__neighborhood,
.review-card__location {
  font-size: 0.75rem;
  background: var(--navy);
  color: var(--gold);
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.review-card__date {
  font-size: 0.75rem;
}

/* ── Aggregate Rating ──────────────────────────────────────── */
.aggregate-rating {
  background: var(--navy);
  color: #fff;
  padding: 2rem 1.25rem;
  text-align: center;
}

.aggregate-rating__inner {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.aggregate-rating__number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.aggregate-rating__max {
  font-size: 1.125rem;
  opacity: 0.65;
}

.aggregate-rating__stars {
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

.aggregate-rating__count {
  font-size: 0.875rem;
  opacity: 0.75;
}

/* ── Process Steps ─────────────────────────────────────────── */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color var(--transition);
}

.process-step:hover {
  border-color: var(--gold);
}

.process-step__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  min-width: 2.5rem;
  flex-shrink: 0;
}

.process-step__body {
  flex: 1;
}

.process-step__name,
.process-step__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.375rem;
}

.process-step__content p,
.process-step__text {
  font-size: 0.9375rem;
  margin: 0;
  color: var(--text-muted);
}

.process-step__meta {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.25rem 0.75rem;
  font-size: 0.8125rem;
  margin: 0.5rem 0;
  color: var(--text-muted);
}

.process-step__meta dt {
  font-weight: 600;
  color: var(--navy);
}

.process-step__deliverables,
.process-step__gotchas {
  font-size: 0.875rem;
  margin-top: 0.375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ── Table of Contents ─────────────────────────────────────── */
.toc {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem auto;
  max-width: var(--inner-max);
}

.toc__heading {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.75rem;
}

.toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  counter-reset: toc;
}

.toc__item {
  counter-increment: toc;
}

.toc__link {
  color: var(--navy);
  font-size: 0.9375rem;
  text-decoration: none;
  font-weight: 500;
}

.toc__link::before {
  content: counter(toc) '. ';
  color: var(--gold);
  font-weight: 700;
}

.toc__link:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* ── Tag Chips ─────────────────────────────────────────────── */
.tag-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 0;
}

.tag-chip {
  display: inline-block;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  cursor: default;
  transition: background var(--transition), border-color var(--transition);
}

.tag-chip:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

/* ── Insights Grid ─────────────────────────────────────────── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.insight-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.insight-card:hover {
  box-shadow: 0 4px 20px rgba(10,37,64,0.1);
  border-color: var(--gold);
}

.insight-card__img-link {
  display: block;
  flex-shrink: 0;
}

.insight-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.insight-card__img-wrap {
  flex-shrink: 0;
}

.insight-card__img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.insight-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.insight-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.insight-card__category {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.insight-card__time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.insight-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.5rem;
  line-height: 1.25;
  flex: 1;
}

.insight-card__title a {
  color: inherit;
  text-decoration: none;
}

.insight-card__title a:hover {
  color: var(--gold);
}

.insight-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 0.75rem;
}

.insight-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.insight-card__author {
  font-weight: 600;
  color: var(--navy);
}

.insight-card__cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-top: 0.75rem;
  display: inline-block;
}

/* ── Article Meta ──────────────────────────────────────────── */
.insight-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
}

.insight-article-meta__time,
.insight-article-meta__category {
  font-weight: 600;
}

/* ── Related Articles ──────────────────────────────────────── */
.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.related-article-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

.related-article-card__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.375rem;
  line-height: 1.25;
}

.related-article-card__title a {
  color: var(--navy);
  text-decoration: none;
}

.related-article-card__title a:hover {
  color: var(--gold);
}

.related-article-card__excerpt {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ── Location Link Grid ────────────────────────────────────── */
.location-link-grid {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.5rem;
}

.location-link-grid li a {
  display: block;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.location-link-grid li a:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

/* ── Empty / Coming Soon State ─────────────────────────────── */
.coming-soon-state,
.empty-state {
  background: var(--off-white);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--text-muted);
}

.coming-soon-state p,
.empty-state__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.coming-soon-state a,
.empty-state a {
  color: var(--navy);
  font-weight: 600;
}

/* ── Stats Grid ────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0;
}

@media (min-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Credentials Grid ──────────────────────────────────────── */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.credential-item__icon {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.credential-item__text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  font-size: 0.875rem;
}

.credential-item__text strong {
  color: var(--navy);
  font-weight: 600;
}

.credential-item__text span {
  color: var(--text-muted);
}

/* ── Prose Body ────────────────────────────────────────────── */
.prose-body {
  line-height: 1.75;
  font-size: 1rem;
  color: var(--text);
  max-width: var(--inner-max);
}

.prose-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--navy);
  margin: 2rem 0 0.875rem;
}

.prose-body h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--navy);
  margin: 1.5rem 0 0.625rem;
}

.prose-body p {
  margin: 0 0 1.1rem;
}

.prose-body ul,
.prose-body ol {
  padding-left: 1.5rem;
  margin: 0.5rem 0 1.1rem;
}

.prose-body li {
  margin-bottom: 0.375rem;
}

.prose-body a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
}

.prose-body a:hover {
  color: var(--gold);
}

.prose-body strong {
  font-weight: 700;
  color: var(--navy);
}

/* ── Placeholder / Misc ────────────────────────────────────── */
.placeholder-text {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.9375rem;
  margin: 0;
}

.founder-credential {
  margin-top: 0.875rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ── Responsive Adjustments ────────────────────────────────── */
@media (min-width: 768px) {
  .content-section {
    padding: var(--section-pad) 2rem;
  }

  .content-hero {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .headline-answer {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .cta-block {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .related-block {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .content-section {
    padding: var(--section-pad) 3rem;
  }

  .content-hero {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (max-width: 480px) {
  .service-grid,
  .services-grid,
  .guide-grid,
  .guides-grid,
  .location-grid,
  .reviews-grid,
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .cta-block__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .process-step {
    flex-direction: column;
    gap: 0.5rem;
  }
}
