/* ============================================================
   CV Uplifted — "Boutique Personal" direction. Blush cream + deep
   plum + a warm gold accent; Playfair Display (serif display, self-
   hosted) + Inter — a pairing not used elsewhere in this batch.
   No homepage topic-tile/icon-grid at all this time — other sites in
   this batch already used a quiet list, colored tiles, and a terminal
   checklist for that role — this build's distinct section is a
   vertical timeline instead, and the topic breakdown lives only on
   guides.php. (A centered-logo/dropdown-only header and single-column
   footer were tried and reverted — read as too sparse; standard
   header/footer chrome kept for this build.)
   ============================================================ */

/* ============================================================
   Hero — text left, a tilted "reference letter" card as a small
   accent object on the right (not a dominant photo/terminal/split
   panel) — a seventh distinct hero skeleton in this batch.
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--topbar-h));
  display: flex;
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--bg);
  overflow: hidden;
}
.hero .container.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  max-width: var(--container);
  width: 100%;
}
.hero__inner {
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  border-radius: 0;
  padding: 0;
}
.hero__eyebrow { color: var(--accent-ink); }
.hero__title { color: var(--ink); font-family: var(--font-head-display); font-weight: 700; }
.hero__brand-sub { color: var(--brand); font-style: italic; font-family: var(--font-head); }
.hero__lead { color: var(--ink-soft); }
.hero__trust { border-top-color: var(--line); color: var(--ink-soft); }
.hero__media { position: relative; inset: auto; opacity: 1; order: 2; display: flex; justify-content: center; }
.ref-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.75rem 1.85rem;
  max-width: 20rem;
  transform: rotate(-4deg);
}
.ref-card__quote {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 1rem;
}
.ref-card__attr { display: flex; align-items: center; gap: 0.6rem; }
.ref-card__avatar {
  width: 2.3rem; height: 2.3rem; border-radius: 50%;
  background: var(--brand-tint); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700;
}
.ref-card__name { font-weight: 700; color: var(--ink); font-size: 0.92rem; display: block; }
.ref-card__role { color: var(--muted); font-size: 0.82rem; display: block; }
@media (max-width: 860px) {
  .hero .container.hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .ref-card { transform: rotate(-2deg); }
}

/* ============================================================
   Glow-up timeline — vertical timeline with a connector line and
   week markers, this build's structurally distinct section. Not a
   table, tile grid, mosaic, or checklist.
   ============================================================ */
.timeline { position: relative; margin: 0; padding: 0; list-style: none; }
.timeline::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: var(--line);
}
.timeline__item { position: relative; padding: 0 0 2.25rem 3.75rem; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  z-index: 1;
}
.timeline__week { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-ink); }
.timeline__title { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--ink); margin: 0.2rem 0 0.35rem; }
.timeline__desc { color: var(--ink-soft); max-width: 34rem; }

@media (max-width: 860px) {
  .hero .container.hero__inner { grid-template-columns: 1fr; }
}

.brand--wordmark .brand__name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
}
.brand--wordmark .brand__name b { color: var(--brand); }
