/* ========================================================================
   v7 — the "On my way out" handoff summary, folded into the bottom of the
   Retrospective ("What I learned") section. Eyebrow + title + lede only,
   held in a white rounded card that keeps the original light color scheme.
   ======================================================================== */
/* A touch more space above the card, less below, so it reads evenly
   between the retrospective list and the outro. */
#retrospective {
  padding-bottom: clamp(8px, 1.5vw, 16px);
}
.retro-handoff {
  max-width: var(--maxw);
  margin: clamp(40px, 4.7vw, 64px) auto 0;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
}
.rh-dateline {
  order: -1;
  position: relative;
  max-width: 82ch;
  /* Centered on the page, flanked by a rule on each side: —[ text ]—.
     Tighter above (closer to the list) and more room below (off the card). */
  margin: 0 auto clamp(37px, 5vw, 64px);
  padding-inline: clamp(44px, 6vw, 84px);
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  text-wrap: pretty;
}
.rh-dateline::before,
.rh-dateline::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(24px, 4vw, 56px);
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}
.rh-dateline::before { left: clamp(4px, 1vw, 12px); }
.rh-dateline::after { right: clamp(4px, 1vw, 12px); }
.retro-handoff-card {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--ink-200);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: clamp(34px, 3.8vw, 52px) clamp(34px, 5vw, 72px);
}

/* Oversized, faded, tilted accent icon on the right of the card. */
.rh-icon {
  position: absolute;
  right: clamp(-30px, -2vw, -10px);
  top: 50%;
  width: clamp(190px, 24vw, 320px);
  color: var(--azure);
  opacity: 0.1;
  transform: translateY(-50%) rotate(-14deg);
  pointer-events: none;
  z-index: 0;
}
.rh-icon svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Light color scheme, mirroring the original handoff section head. */
.rh-eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--azure);
  margin: 0 0 16px;
}
.rh-eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--azure);
}
.rh-title {
  position: relative;
  z-index: 1;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--oxford);
  text-wrap: balance;
  max-width: 22ch;
}
.rh-lede {
  position: relative;
  z-index: 1;
  max-width: 54ch;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-600);
  margin: 0;
  text-wrap: pretty;
}
.rh-body {
  position: relative;
  z-index: 1;
  max-width: 54ch;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-600);
  margin: 16px 0 0;
  text-wrap: pretty;
}
.rh-postscript {
  flex: none;
  max-width: 62ch;
  margin: 0;
  text-align: left;font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  text-wrap: pretty;
}

/* Closing paragraph shifted to the right, with a large, faded decorative
   icon sitting to its left. */
.rh-postscript-row {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
  max-width: calc(62ch + 150px);
  margin: clamp(37px, 5vw, 64px) 0 clamp(23px, 3.7vw, 50px) auto;
}
.rh-decor-icon {
  flex: none;
  display: flex;
  color: var(--steel);
  opacity: 0.55;
}
.rh-decor-icon svg {
  width: clamp(86px, 10.7vw, 138px);
  height: auto;
  display: block;
}
   ======================================================================== */
/* Top-align the two columns so the contact block anchors to the headline. */
.outro-grid {
  align-items: start;
}

/* Availability status pill above the headline. */
.outro-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 6px 13px 6px 11px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(16, 130, 242, 0.16);
  border: 1px solid rgba(16, 130, 242, 0.42);
  border-radius: 999px;
  white-space: nowrap;
}
.outro-status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(14, 154, 95, 0.28);
}

/* Contact column: primary email button + a clean list of links. */
.outro-meta {
  gap: 20px;
}
.outro-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 12px 20px;
  background: var(--azure);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.16s ease, transform 0.12s ease;
}
.outro-cta:hover { background: var(--azure-hover); }
.outro-cta:active { transform: scale(0.97); }
.outro-cta svg { width: 16px; height: 16px; }
.outro-links {
  display: grid;
  gap: 12px;
}
.outro-meta .row a.v {
  width: fit-content;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.outro-meta .row a.v:hover {
  color: var(--baby);
  border-bottom-color: currentColor;
}

/* Quieter bottom bar. */
.outro-footer {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.42);
}

/* ========================================================================
   v7 — audience badges + section eyebrow numbers hidden site-wide.
   (Markup kept in place; toggled off here.)
   ======================================================================== */
.aud { display: none !important; }
.section-eyebrow .num { display: none !important; }

/* Footer: hide the availability pill + "Email me" button (kept in markup). */
.outro-status,
.outro-cta { display: none !important; }

/* ========================================================================
   v7 — Month-by-month carousel on mobile.
   Desktop keeps a consistent (tallest-slide) height; on mobile the viewport
   height hugs the active slide's own content, and horizontal swipe navigates.
   ======================================================================== */
@media (max-width: 900px) {
  .highlights-viewport {
    height: auto;
    transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    touch-action: pan-y;
  }
  /* Don't stretch every slide to the tallest — let each size to its content. */
  .highlights-track { align-items: flex-start; }
}
