/* ============================================================
   services-alt.css — alt-style skin for the Services page.
   Loads after home-alt.css + page-alt.css and restyles the
   existing service markup (banners, audience rows, process
   timeline, Q&A, tactics, marketing grid) in the navy/white +
   Italiana / Roboto Condensed / Roboto system.
   ============================================================ */

/* ---- Sticky section nav (was .page-toc) ------------------- */
.alt-svcnav {
  position: sticky; top: 116px; z-index: 40; /* clears the full sticky header (40px topbar + 76px nav) so it isn't hidden behind it */
  background: var(--navy-deep);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.alt-svcnav-inner { display: flex; align-items: center; gap: 1.75rem; min-height: 54px; }
.alt-svcnav-label {
  font-family: var(--font-condensed); font-size: .75rem; letter-spacing: .18em; /* 12px tiny label */
  text-transform: uppercase; color: var(--on-dark-soft);
}
.alt-svcnav-links { display: flex; gap: 1.9rem; }
.alt-svcnav-links a {
  position: relative; padding: .35rem 0;
  font-family: var(--font-condensed); font-size: .875rem; letter-spacing: .08em; /* 14px nav/label */
  text-transform: uppercase; color: var(--on-dark-soft);
}
.alt-svcnav-links a:hover { color: #fff; }
.alt-svcnav-links a.is-current { color: #fff; }
.alt-svcnav-links a.is-current::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: #fff;
}

/* ---- Service block ---------------------------------------- */
.svc-block { padding: 7rem 0; background: var(--paper); scroll-margin-top: 140px; } /* more room between Buying/Selling/Commercial */
#selling { background: var(--cream); }

.svc-banner { margin-bottom: 4rem; }
.svc-banner-img {
  width: 100%; height: clamp(240px, 32vw, 440px); object-fit: cover;
  border-radius: var(--radius); display: block;
}

/* ---- Section + sub headers (centered) --------------------- */
.service-section-header { text-align: center; max-width: 780px; margin: 0 auto 4.5rem; }
.service-section-eyebrow {
  display: inline-block; font-family: var(--font-condensed); font-weight: 600;
  font-size: .875rem; letter-spacing: .22em; text-transform: uppercase; /* 14px eyebrow — matches site */
  color: var(--ink-soft); margin-bottom: 1rem;
}
.service-section-header h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.8rem, 1rem + 1.8vw, 2.25rem); color: var(--ink); margin: 0 0 1rem; /* caps at 36px scale */
}
.service-section-header p { font-size: 1.125rem; line-height: 1.7; color: var(--ink-soft); margin: 0; } /* 18px body */

.svc-subheading { text-align: center; max-width: 720px; margin: 7rem auto 2.75rem; } /* breathing room before each subsection */
/* Drop the sub-section eyebrows (e.g. "Concerns & Answers", "Negotiation &
   Tactics") — they just restate the title below. The wayfinding eyebrow on
   each service block's .service-section-header ("For Buyers" etc.) stays. */
.svc-subheading .service-section-eyebrow { display: none; }
.svc-subheading-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.35rem, 1rem + 1.1vw, 1.5rem); color: var(--ink); margin: 0 0 .75rem; /* caps at 24px h3 scale */
}
.svc-subheading p { font-size: 1.125rem; line-height: 1.7; color: var(--ink-soft); margin: 0; } /* 18px body */

/* ---- Audience rows ---------------------------------------- */
.audience-flow { max-width: 940px; margin: 0 auto; }
.audience-row {
  display: grid; grid-template-columns: 230px 1fr; gap: 2rem;
  padding: 1.85rem 0; border-top: 1px solid var(--line);
}
.audience-row:last-child { border-bottom: 1px solid var(--line); }
.audience-row-label-tag {
  display: inline-block; font-family: var(--font-condensed); font-weight: 700;
  font-size: .875rem; letter-spacing: .07em; text-transform: uppercase; color: var(--navy); /* 14px label */
}
.audience-row-body h4 { font-size: 1.125rem; color: var(--ink); margin: 0 0 .5rem; } /* 18px h4 scale */
.audience-row-body p { font-size: 1.125rem; line-height: 1.7; color: var(--ink-soft); margin: 0; } /* 18px body */

/* ---- Process timeline ------------------------------------- */
.process-timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  max-width: 1120px; margin: 0 auto;
}
.process-step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.4rem; box-shadow: 0 8px 24px rgba(18,42,68,.05);
}
.process-step-number {
  display: block;
  font-family: var(--font-display); font-size: 2.25rem; line-height: 1; /* large standalone numeral, no circle */
  color: var(--navy); margin-bottom: .65rem;
}
.process-step h4 { font-size: 1.125rem; color: var(--ink); margin: 0 0 .5rem; } /* 18px h4 scale — matches other sub-item headings */
.process-step p { font-size: 1rem; line-height: 1.6; color: var(--ink-soft); margin: 0; } /* 16px dense-card */

/* ---- Q&A -------------------------------------------------- */
.qa-list { max-width: 840px; margin: 0 auto; }
.qa-row { padding: 1.4rem 0; border-top: 1px solid var(--line); }
.qa-row:last-child { border-bottom: 1px solid var(--line); }
.qa-row dt {
  font-family: var(--font-condensed); font-weight: 700; font-size: 1.125rem; line-height: 1.5; /* 18px question */
  color: var(--ink); margin-bottom: .4rem;
}
.qa-row dd { margin: 0; font-size: 1.125rem; line-height: 1.7; color: var(--ink-soft); } /* 18px body */

/* ---- Tactics ---------------------------------------------- */
.tactics-flow { max-width: 880px; margin: 0 auto; display: grid; gap: 1.5rem; }
.tactic-row { padding-left: 1.4rem; border-left: 2px solid var(--navy); }
.tactic-row h4 { font-size: 1.125rem; color: var(--ink); margin: 0 0 .5rem; } /* 18px h4 scale */
.tactic-row p { font-size: 1.125rem; line-height: 1.7; color: var(--ink-soft); margin: 0; } /* 18px body */

/* ---- Marketing / services grid ---------------------------- */
.svc-marketing-grid {
  list-style: none; padding: 0; max-width: 940px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem;
}
.svc-marketing-grid li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: .85rem 1rem; font-size: 1rem; color: var(--ink); /* 16px dense-card */
  display: flex; align-items: center; gap: .6rem;
}
.svc-marketing-grid li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--navy); flex: none;
}

/* ---- Section CTA ------------------------------------------ */
.svc-section-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 5rem; }

/* ---- Responsive ------------------------------------------- */
@media (max-width: 1024px) {
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .svc-marketing-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-row { grid-template-columns: 1fr; gap: .6rem; }
  /* Keep the section breathing room generous but not cavernous on phones. */
  .svc-block { padding: 4.5rem 0; }
  .svc-subheading { margin-top: 4.5rem; }
  .service-section-header { margin-bottom: 3.25rem; }
  .svc-section-cta { margin-top: 3.5rem; }
}
@media (max-width: 560px) {
  .process-timeline { grid-template-columns: 1fr; }
  .svc-marketing-grid { grid-template-columns: 1fr; }
  .alt-svcnav-label { display: none; }
  .alt-svcnav-links { gap: 1.4rem; }
}
