/* ─── SHARED LAYOUT ───────────────────────────────────────────────────── */
    .section-inner { max-width: 1200px; margin: 0 auto; }

    /* Headline + Eyebrow + Accent shape pattern */
    .headline-block { display: flex; flex-direction: column; gap: 16px; padding: 16px 0; }
    .headline-block--tall { padding: 24px 0; }
    .eyebrow {
      font-family: 'Inter', sans-serif; font-weight: 600;
      font-size: 16px; line-height: 19px;
      letter-spacing: 4px; text-transform: uppercase;
      white-space: normal;
    }
    .headline {
      font-family: 'Outfit', sans-serif; font-weight: 700;
    }
    .headline--h2 { font-size: 72px; line-height: 91px; }
    .headline--h4 { font-size: 48px; line-height: 60px; }
    .accent-bar {
      width: 88px; height: 8px;
      flex-shrink: 0;
    }

    /* ─── SUBJECT TAGS ────────────────────────────────────────────────────── */
    .tag {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 4px 8px; border-radius: 24px;
      font-family: 'Inter', sans-serif; font-weight: 600;
      font-size: 12px; line-height: 15px;
      white-space: nowrap; flex-shrink: 0;
    }
    .tag--placeholder { background: var(--dusty); color: var(--navy); }
    /* Colors theme */
    .tag--design-systems     { background: var(--aqua);       color: var(--navy); }
    .tag--enterprise-ux      { background: var(--largo-teal); color: var(--gypsum); }
    .tag--multi-platform     { background: var(--rad-blue);   color: var(--navy); }
    .tag--conversational-ux  { background: var(--lime);       color: var(--navy); }
    .tag--branding           { background: var(--lime);       color: var(--navy); }
    .tag--design-governance  { background: var(--largo-teal); color: var(--gypsum); }
    .tag--component-libs     { background: var(--aqua);       color: var(--navy); }
    .tag--healthcare-ux      { background: var(--banana);     color: var(--navy); }
    .tag--accessibility      { background: var(--banana);     color: var(--navy); }
    .tag--mobile-apps        { background: var(--rad-blue);   color: var(--navy); }
    /* Light theme (for dark backgrounds) */
    .tag--light {
      background: rgba(64,64,64,0.1);
      border: 1px solid var(--gypsum);
      color: var(--gypsum);
    }
    /* Eggplant theme */
    .tag--eggplant { background: var(--eggplant); color: var(--gypsum); }

    /* ─── SECTION: TITLE BLOCK (Hero) ────────────────────────────────────── */
    .title-block {
      background: var(--navy);
      padding: 120px 120px 48px;
      position: relative; overflow: hidden;
    }
    .title-block .section-inner {
      position: relative; z-index: 1;
      display: flex; align-items: center; gap: 48px;
    }
    .title-block__text { flex: 1 1 0; min-width: 0; }
    .intro-body {
      font-family: 'Inter', sans-serif; font-weight: 400;
      font-size: 20px; line-height: 24px;
      color: var(--gypsum); margin-bottom: 32px;
    }
    .title-block__image, .origin-section__image { flex: 0 0 400px; width: 400px; height: 400px; }

    /* Contact line */
    .contact-line {
      font-family: 'Inter', sans-serif; font-weight: 700;
      font-size: 16px; line-height: 19px;
      color: var(--gypsum);
      display: flex; flex-wrap: wrap; align-items: center; gap: 0;
    }
    .contact-line__sep { color: var(--lime); margin: 0 8px; }
    .contact-line a { color: var(--gypsum); text-decoration: none; transition: color 150ms; }
    .contact-line a:hover { color: var(--lime); }

    /* Download buttons */
    .download-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 0; }
    .btn-outline {
      font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 16px;
      line-height: 20px;
      color: var(--gypsum);
      background: transparent;
      border: 1px solid var(--gypsum);
      border-radius: 24px;
      padding: 14px 20px;
      display: inline-flex; align-items: center; gap: 8px;
      cursor: pointer; text-decoration: none;
      transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 100ms ease;
      white-space: nowrap;
    }
    .btn-outline:hover { 
      background: var(--aqua); 
      border-color: var(--aqua); 
      color: var(--navy); 
      transform: translateY(-1px); 
    }
    .btn-outline:active { 
      background: var(--banana); 
      border-color: var(--banana); 
      color: var(--navy); 
      transform: translateY(0); 
    }

    /* Arrow icon inside outline button */
    .btn-arrow {
      display: inline-flex; align-items: center; justify-content: center;
      width: 20px; height: 14px;
    }

    /* ─── MEDIA IMAGE PLACEHOLDER ─────────────────────────────────────────── */
    .media-placeholder {
      border-radius: 24px;
      border: 1px solid var(--blackberry);
      background: var(--rad-blue);
      flex-shrink: 0;
      overflow: hidden;
      position: relative;
    }
    .media-placeholder--square { width: 400px; height: 400px; }

    /* ─── SECTION: WHO I AM + CORE SKILLS ────────────────────────────────── */
    .who-section {
      background: var(--dusty);
      padding: 48px 120px;
      position: relative; overflow: hidden;
    }
    .who-section .section-inner {
      position: relative; z-index: 1;
      display: flex; align-items: center; gap: 48px;
    }
    .who-section__text { flex: 1 1 0; min-width: 0; }
    .who-body {
      font-family: 'Inter', sans-serif; font-weight: 400;
      font-size: 20px; line-height: 24px; letter-spacing: -0.5px;
      color: var(--blackberry);
    }
    .who-body p { margin-bottom: 24px; }
    .who-body p:last-child { margin-bottom: 0; }

    /* Skills card */
    .skills-card {
      background: var(--snowball);
      border-radius: 24px;
      padding: 16px 24px 24px;
      box-shadow: 0 36px 71px 0 rgba(79,78,78,0.15);
      flex: 0 0 400px;
      width: 400px;
      overflow: hidden;
    }
    .skills-card__title {
      font-family: 'Outfit', sans-serif; font-weight: 700;
      font-size: 16px; line-height: 20px;
      color: var(--blackberry);
      padding-bottom: 12px; padding-top: 2px;
      border-bottom: 1px solid var(--largo-teal);
      margin-bottom: 18px;
    }
    .skills-sets { display: flex; flex-direction: column; gap: 18px; }
    .skills-group { display: flex; flex-direction: column; gap: 8px; }
    .skills-group__label {
      font-family: 'Inter', sans-serif; font-weight: 600;
      font-size: 12px; line-height: 13px;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--blackberry);
    }
    .skills-row-group { display: flex; flex-direction: column; gap: 4px; }
    .skills-row { display: flex; flex-wrap: wrap; gap: 4px; }

    /* ─── SECTION: RESUME TIMELINE ────────────────────────────────────────── */
    .timeline-section {
      background: var(--aqua);
      padding: 0 120px 80px;
      position: relative;
      overflow: hidden;
    }
    /* Largo Teal squiggle — exact same technique as homepage case studies */
    .timeline-squiggle {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 110%;
      pointer-events: none;
      z-index: 1;
    }
    /* Noise overlay on top of squiggle, behind content */
    .timeline-section::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      opacity: 0.45;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.303' numOctaves='3' seed='5993' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      background-size: 100px 100px;
      background-repeat: repeat;
      mix-blend-mode: multiply;
    }
    .timeline-section .section-inner {
      position: relative;
      z-index: 3; /* above squiggle and noise */
    }

    .timeline-heading { padding-top: 48px; }

    .timeline { display: flex; flex-direction: column; padding: 32px 0 48px; }

    /* Timeline row: indicator + card */
    .tl-row { display: flex; gap: 32px; align-items: stretch; }

    /* Indicator column: full-height relative container */
    .tl-indicator {
      width: 18px; flex-shrink: 0;
      position: relative;
      display: flex;
      align-items: flex-start;
      justify-content: center;
    }
    /* The continuous vertical line — runs full height of the indicator */
    .tl-indicator::before {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      background: var(--gypsum);
    }
    /* Hide the line above the dot on the first item */
    .tl-indicator--first::before {
      top: 33px; /* dot top-offset (24px padding + half dot) */
    }
    /* Hide the line below the dot on the last item */
    .tl-indicator--last::before {
      bottom: auto;
      height: 33px;
    }
    /* The dot — sits on top of the line via z-index */
    .tl-dot {
      border-radius: 50%;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
      margin-top: 24px; /* align dot with role title (matches card padding-top) */
    }
    .tl-dot--first { background: var(--navy);  width: 18px; height: 18px; }
    .tl-dot--mid   { background: var(--banana); width: 14px; height: 14px; margin-top: 26px; margin-left: 2px; margin-right: 2px; }
    .tl-dot--last  { background: var(--banana); width: 14px; height: 14px; margin-top: 26px; margin-left: 2px; margin-right: 2px; }

    /* Filler between rows — single line segment connecting card bottom to next card top */
    .tl-filler {
      display: flex; gap: 32px;
      height: 32px;
    }
    .tl-filler__line {
      width: 18px; flex-shrink: 0;
      display: flex; justify-content: center;
    }
    .tl-filler__line div {
      width: 2px; height: 100%; background: var(--gypsum);
    }

    /* Resume card */
    .resume-card {
      flex: 1 1 0; min-width: 0;
      border-radius: 24px;
      padding: 24px;
      display: flex; flex-direction: column; gap: 16px;
    }
    .resume-card--current { background: var(--navy); }
    .resume-card--past    { background: var(--dusty); border: 1px solid rgba(38,15,37,0.08); }

    .resume-card__header {
      display: flex; justify-content: space-between;
      align-items: flex-start; gap: 16px; width: 100%;
    }
    .resume-card__role-co { display: flex; flex-direction: column; gap: 6px; flex: 1 0 0; min-width: 0; }
    .resume-card__role {
      font-family: 'Outfit', sans-serif; font-weight: 700;
      font-size: 20px; line-height: 25px;
    }
    .resume-card--current .resume-card__role { color: var(--gypsum); }
    .resume-card--past    .resume-card__role { color: var(--blackberry); }

    .resume-card__company {
      font-family: 'Inter', sans-serif; font-weight: 400;
      font-size: 14px; line-height: 17px;
    }
    .resume-card--current .resume-card__company { color: var(--gypsum); }
    .resume-card--past    .resume-card__company { color: var(--blackberry); }
    .resume-card__company .bullet { color: var(--neon-pink); }

    .resume-card__dates {
      font-family: 'Inter', sans-serif; font-weight: 400;
      font-size: 12px; line-height: 15px;
      white-space: nowrap; flex-shrink: 0;
    }
    .resume-card--current .resume-card__dates { color: var(--gypsum); }
    .resume-card--past    .resume-card__dates { color: var(--blackberry); }

    .resume-card__body {
      font-family: 'Inter', sans-serif; font-weight: 400;
      font-size: 14px; line-height: 17px;
      display: flex; flex-direction: column; gap: 8px;
    }
    .resume-card--current .resume-card__body { color: var(--gypsum); }
    .resume-card--past    .resume-card__body { color: var(--blackberry); }

    .resume-card__bullets { list-style: disc; padding-left: 21px; }
    .resume-card__bullets li { margin-bottom: 0; }

    .resume-card__tags {
      display: flex; flex-wrap: wrap; gap: 4px;
      overflow: hidden;
    }

    /* ─── SECTION: WHERE IT STARTED ──────────────────────────────────────── */
    .origin-section {
      background: var(--navy);
      padding: 48px 120px;
      position: relative; overflow: hidden;
    }
    .origin-section .section-inner {
      position: relative; z-index: 1;
      display: flex; align-items: center; gap: 48px;
    }
    .origin-section__text { flex: 1 1 0; min-width: 0; }
    .origin-body {
      font-family: 'Inter', sans-serif; font-weight: 400;
      font-size: 16px; line-height: 19px;
      color: var(--gypsum);
    }
    .origin-body p { margin-bottom: 19px; }
    .origin-body p:last-child { margin-bottom: 0; }

    /* ─── SECTION: CTA / LET'S WORK ──────────────────────────────────────── */
    .cta-section {
      background: var(--snowball);
      padding: 72px 120px;
      position: relative; overflow: hidden;
    }
    .cta-section .noise-layer::before {
      mix-blend-mode: multiply; opacity: 0.18;
    }
    .cta-section .section-inner {
      position: relative; z-index: 1;
      display: flex; flex-direction: column;
      align-items: center; gap: 24px;
      text-align: center;
    }
    .cta-heading {
      font-family: 'Outfit', sans-serif; font-weight: 700;
      font-size: 64px; line-height: 81px;
      color: var(--blackberry);
      max-width: 1200px;
    }
    .cta-sub {
      font-family: 'Inter', sans-serif; font-weight: 400;
      font-size: 20px; line-height: 24px; letter-spacing: -0.5px;
      color: var(--blackberry);
      max-width: 1200px;
    }

    /* Resume icon buttons row */
    .cta-btn-row { display: flex; gap: 12px; align-items: center; justify-content: center; }

    /* Resume icon button — eggplant base, aqua hover, banana active */
    .resume-icon-btn {
      width: 48px; height: 48px;
      border-radius: 24px;
      background: var(--eggplant);
      border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      position: relative;
      transition: background 150ms ease, transform 150ms ease;
      color: var(--gypsum);
      flex-shrink: 0;
    }
    .resume-icon-btn:hover { background: var(--aqua); color: var(--navy); transform: translateY(-2px); }
    .resume-icon-btn:active { background: var(--banana); color: var(--navy); }
    .resume-icon-btn:hover .btn-tooltip { opacity: 1; transform: translateX(-50%) translateY(0); }

    .btn-tooltip {
      position: absolute; bottom: calc(100% + 8px); left: 50%;
      transform: translateX(-50%) translateY(4px);
      background: var(--blackberry); color: var(--gypsum);
      font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600;
      letter-spacing: 0.04em; white-space: nowrap;
      padding: 5px 10px; border-radius: 8px;
      opacity: 0; pointer-events: none;
      transition: opacity 150ms ease, transform 150ms ease;
    }
    .btn-tooltip::after {
      content: ''; position: absolute; top: 100%; left: 50%;
      transform: translateX(-50%);
      border: 5px solid transparent;
      border-top-color: var(--blackberry);
    }

    /* ─── FOOTER ──────────────────────────────────────────────────────────── */
    .site-footer {
      background: var(--grape);
      padding: 24px 16px;
      text-align: center;
    }
    .site-footer p {
      font-family: 'Inter', sans-serif; font-size: 12px;
      color: var(--gypsum);
      opacity: 0.7;
    }

    /* ─── RESPONSIVE ──────────────────────────────────────────────────────── */
    @media (max-width: 1100px) {
      .intro-body, .who-body { font-size: 18px; line-height: 22px; }
      .title-block { padding: 100px 48px 48px; }
      
      .who-section,
      .timeline-section,
      .origin-section,
      .cta-section { padding: 48px 48px; }

      /* Scale text instead of breaking to single column */
      .cta-heading { font-size: 48px; line-height: 60px; }
      .headline--h2 { font-size: 56px; line-height: 70px; }

      /* Scale images/cards so they fit in 2 columns */
      .title-block__image, .origin-section__image { flex: 0 0 260px; width: 260px; height: 260px; }
      .media-placeholder--square { flex: 0 0 260px; width: 260px; height: 260px; }
      .skills-card { flex: 0 0 260px; width: 260px; }
    }

    @media (max-width: 699px) {
      .intro-body { font-size: 18px; line-height: 22px; }
      .who-body { font-size: 16px; line-height: 19px; }
      .nav-pill { display: none; }
      .nav-mobile { display: block; }

      .title-block { padding: 88px 24px 40px; }
      
      /* Switch to single column layout */
      .title-block .section-inner { flex-direction: column; gap: 32px; align-items: center; }
      .title-block__text { width: 100%; }

      /* Center contact info and outline buttons when in single column */
      .contact-line { justify-content: center; text-align: center; font-size: 13px; }
      .download-btns { flex-direction: column; width: 100%; max-width: 400px; margin: 0 auto; }
      .download-btns > a { justify-content: center; width: 100%; }

      .who-section,
      .timeline-section,
      .origin-section,
      .cta-section { padding: 40px 24px; }
      
      .who-section .section-inner { flex-direction: column; gap: 32px; align-items: center; }
      .who-section__text { width: 100%; }
      .skills-card { width: 100%; max-width: 400px; }

      .origin-section .section-inner { flex-direction: column; gap: 32px; align-items: center; }
      .origin-section__text { width: 100%; }

      .site-footer { padding: 24px; }

      .headline--h2 { font-size: 40px; line-height: 50px; }
      .headline--h4 { font-size: 36px; line-height: 45px; }
      .cta-heading { font-size: 36px; line-height: 45px; }

      /* Media placeholders stay visible at mobile — centered */
      .media-placeholder--square { width: 100%; max-width: 400px; min-width: 280px; height: auto; aspect-ratio: 1 / 1; }
      .title-block__image, .origin-section__image { width: 100%; max-width: 400px; height: auto; aspect-ratio: 1 / 1; justify-content: center; }

      .tl-row { gap: 16px; }
      .resume-card { padding: 16px; }
    }