.tl-item:first-child/* ============================================================
   MURIEL VIRSEDA · DESIGN SYSTEM
   Single source of truth — all pages import only this file
   ============================================================

   TABLE OF CONTENTS
   1.  Tokens (custom properties)
   2.  Reset
   3.  Typography scale  ← h1–h4 single classes
   4.  Layout primitives (page, section-pad, grid helpers)
   5.  Navigation
   6.  Footer
   7.  Shared components (label, link-arrow, tag, btn, img-hover)
   8.  Page header (shared across all interior pages)
   9.  Hero (index only)
   10. Stats strip (index)
   11. Intro strip (index)
   12. Work list / project rows (index + proyectos)
   13. Image grid (index)
   14. Project featured cards (proyectos)
   15. Project card grid (proyectos)
   16. Filter bar (proyectos)
   17. CTA strip
   18. Bio section (sobre-mi)
   19. Principles grid (sobre-mi)
   20. Skills (sobre-mi)
   21. Tools (sobre-mi)
   22. Formation (sobre-mi)
   23. Timeline (experiencia)
   24. Clients grid (experiencia)
   25. CV download (experiencia)
   26. Contact (contacto)
   27. Responsive overrides
   ============================================================ */
<style>
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
</style>
.dm-sans-<uniquifier> {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

/* ── 1. TOKENS ─────────────────────────────────────────── */
:root {
  /* Brand */
  --yellow:      #EDD94C;
  --yellow-dim:  rgba(237, 217, 76, 0.18);
  --blue:        #7A9EA8;
  --blue-dark:   #4E7A87;
  --blue-light:  #D6E8EC;

  /* Neutrals */
  --off-white:   #F8F7F4;
  --white:       #FFFFFF;
  --ink:         #171A21;
  --border:      #eaeaea;

  /* Typography */
  --font:        "DM Sans", sans-serif;
	 


  /* Layout */
  --nav-h:       60px;
  --pad-x:       48px;   /* horizontal page padding */
  --pad-section: 72px;   /* vertical section padding */
	.ml-5{
		margin-left:25px;}

  /* Motion */
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
}
/* ── BURGER BUTTON ─────────────────────────────────────── */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s;
  transform-origin: center;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU PANEL ─────────────────────────────────── */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px var(--pad-x);
  gap: 0;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.nav__mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav__mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.nav__mobile-menu ul li { border-bottom: 1px solid var(--border); }
.nav__mobile-menu ul li:first-child { border-top: 1px solid var(--border); }
.nav__mobile-menu ul a {
  display: block;
  padding: 20px 0;
  font-size: clamp(22px, 6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 0.2s;
}
.nav__mobile-menu ul a:hover,
.nav__mobile-menu ul a.active { color: var(--blue); }
.nav__mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.nav__mobile-cta:hover { color: var(--yellow); border-color: var(--yellow); }

.nav__contact--desktop { display: inline-flex; }

/* ── 2. RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--off-white);
  color: var(--ink);
  font-size: 16px;
  line-height: 22px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a   { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; object-fit: cover; }


/* ── 3. TYPOGRAPHY SCALE ───────────────────────────────── */

/* Display — hero name, massive titles */
.t-display {
  font-size: clamp(56px, 9vw, 116px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.t-display span { font-weight: 300; color: var(--blue); }

/* H1 — page headers */
.t-h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--blue);
}
.t-h1 span { font-weight: 300; color: var(--ink); }

/* H2 — section headings, project titles */
.t-h2 {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.t-h2 span { font-weight: 300; color: var(--blue); }

/* H3 — card titles, sub-headings */
.t-h3 {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* H4 — metadata labels, small emphasis */
.t-h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

/* Body styles */
.t-body        { font-size: 16px; font-weight: 300; line-height: 2; color: var(--ink); }
.t-body-lead   { font-size: clamp(18px, 2.2vw, 28px); font-weight: 300; line-height: 2; color: var(--ink); }
.t-body-small  { font-size: 14px; font-weight: 400; color: var(--blue); }
.t-meta        { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); }


/* ── 4. LAYOUT PRIMITIVES ──────────────────────────────── */
.page          { padding-top: var(--nav-h); }
.section       { padding: var(--pad-section) var(--pad-x); }
.section--ruled { border-bottom: 1px solid var(--border); }
.section--white { background: var(--white); }
.section--off   { background: var(--off-white); }

/* two-col grid used on many sections */
.cols-2        { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.cols-2--end   { align-items: end; }
/*
.cols-sidebar  { display: grid; grid-template-columns: 200px 1fr; gap: 64px; align-items: start; }*/
.cols-sidebar  { display: flex;  align-items: start; }
.rule          { border: none; border-top: 1px solid var(--border); }


/* ── 5. NAVIGATION ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
}
.nav__logo {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.nav__links {
  display: flex;
  list-style: none;
  gap: 40px;
}
.nav__links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--blue);
  transition: color 0.2s;
}
.nav__links a:hover   { color: var(--ink); }
.nav__links a.active  { color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 1px; }
.nav__contact {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.nav__contact:hover   { color: var(--yellow); border-color: var(--yellow); }
 ul.nav__links{
	 margin-bottom: 0px;
}

/* ── 6. FOOTER ─────────────────────────────────────────── */
.footer {
  padding: 15px var(--pad-x);
 /* border-top: 1px solid var(--border);*/
	background-color: var(--blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy     { font-size: 12px; font-weight: 600; color: var(--white); }
.footer__nav      { display: flex; gap: 32px; list-style: none; margin-bottom:0}
.footer__nav a    { font-size: 12px; font-weight: 600; color: var(--white); transition: color 0.2s; }
.footer__nav a:hover { color: var(--ink); }


/* ── 7. SHARED COMPONENTS ──────────────────────────────── */

/* Label — blue uppercase caption */
.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

/* Link with arrow underline */
.link-arrow {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.link-arrow:hover { color: var(--blue-dark); border-color: var(--blue-dark); }

/* Category tag pill */
.cat-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid var(--blue-light);
  padding: 3px 8px;
  transition: all 0.2s;
}
.cat-tag:hover { background: var(--yellow-dim); border-color: var(--yellow); color: var(--ink); }

/* Availability dot */
.avail-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}

/* Dark filled button */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--off-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  border: 1px solid var(--ink);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  font-family: var(--font);
}
.btn-dark:hover { background: transparent; color: var(--ink); }

/* Image with yellow hover overlay */
.img-hover {
  position: relative;
  overflow: hidden;
  display: block;
}
.img-hover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.img-hover::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--ink);
  opacity: 0;
  transition: opacity 0.3s;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.img-hover:hover img  { transform: scale(1.04); }
.img-hover:hover::after { opacity: 0.38; }

/* Meta row (key + value pair) */
.meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  padding-top: 28px;
	margin-top:28px;
  border-top: 1px solid var(--border);
}
.meta-key { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 2px; }



/* ── 8. PAGE HEADER (all interior pages) ───────────────── */
.page-head {
  padding: 80px var(--pad-x) 64px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.page-head__meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: end;
}
.page-head__sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.8;
  max-width: 380px;
}


/* ── 9. HERO (index) ───────────────────────────────────── */
.hero {
  padding: 96px var(--pad-x) 80px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}
.hero__left  { display: flex; flex-direction: column; }
.hero__role  { font-size: 14px; font-weight: 300; color: var(--ink); line-height: 1.8; max-width: 360px; margin: 28px 0 32px; }
.hero__status { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--blue); margin-top: 24px; }
.hero__img   { height: 480px; border: 1px solid var(--border); }


/* ── 10. STATS STRIP (index) ───────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  margin-top: 56px;
}
.stat              { padding: 28px 0; border-right: 1px solid var(--border); }
.stat:last-child   { border-right: none; }
.stat + .stat      { padding-left: 32px; }
.stat__num         { font-size: 34px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px; }
.stat__label       { font-size: 14px; font-weight: 600; letter-spacing: 0.08em; color: var(--blue); }


/* ── 11. INTRO STRIP (index) ───────────────────────────── */
.intro {
  padding: 80px var(--pad-x);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}


/* ── 12. WORK LIST / PROJECT ROWS ──────────────────────── */
.work-header {
  padding: 40px var(--pad-x) 32px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--border);
}

.proj-row {
  display: flex;
  grid-template-columns: 64px 48px 1fr 180px 100px;
  align-items: center;
	justify-content: space-between;
  gap: 20px;
  padding: 0 var(--pad-x);
  height: 76px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.proj-row:hover              { background: var(--yellow-dim); }
.proj-row:hover .proj-row__arrow { opacity: 1; }

.proj-row__num    { font-size: 16px; font-weight: 600; color: var(--blue); letter-spacing: 0.08em; }
.proj-row__thumb  { width: 44px; height: 44px; border: 1px solid var(--border); overflow: hidden; flex-shrink: 0; }
.proj-row__thumb img { width: 100%; height: 100%; object-fit: cover; }
.proj-row__name   { font-size: clamp(15px, 1.6vw, 21px); font-weight: 700; letter-spacing: -0.02em; }
.proj-row__name small { display: block; font-size: 12px; font-weight: 600; color: var(--blue); margin-top: 2px; letter-spacing: 0; }
.proj-row__cat    { font-size: 16px; font-weight: 600; color: var(--blue-dark); }
.proj-row__year   { font-size: 12px; font-weight: 600; color: var(--blue); text-align: right; }
.proj-row__arrow  { font-size: 14px; color: var(--ink); opacity: 0; transition: opacity 0.2s; }


/* ── 13. IMAGE GRID (index) ────────────────────────────── */
.img-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-top: 1px solid var(--border);
}
/*.img-grid__cell        { aspect-ratio: 4/3; }*/
.img-grid__cell--span  { grid-row: span 2; aspect-ratio: auto; }


/* ── 14. PROJECT FEATURED (proyectos) ──────────────────── */
.proj-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-bottom: 1px solid var(--border);
}
.proj-featured--reverse { direction: rtl; }
.proj-featured--reverse > * { direction: ltr; }

.proj-featured__img {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border);
}
.proj-featured--reverse .proj-featured__img { border-right: none; border-left: 1px solid var(--border); }
.proj-featured__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease);min-height:650px }
.proj-featured__img::after {
  content: ''; position: absolute; inset: 0;
  background: var(--ink); opacity: 0;
  transition: opacity 0.3s; mix-blend-mode: multiply; pointer-events: none;
}
.proj-featured:hover .proj-featured__img img   { transform: scale(1.04); }
.proj-featured:hover .proj-featured__img::after { opacity: 0.3; }

/* fallback background colors */
.proj-featured__img.bg-1 { background: #D6E8EC; }
.proj-featured__img.bg-2 { background: #C8DDE3; }
.proj-featured__img.bg-3 { background: #E0EBD0; }
.proj-featured__img.bg-4 { background: #F0EAD6; }

.proj-featured__body {
  padding: 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.proj-featured__top { display: flex; flex-direction: column; gap: 12px; }
.proj-cats { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 4px; }


/* ── 15. PROJECT CARD GRID (proyectos) ─────────────────── */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.proj-card {
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.proj-card:hover                       { background: var(--white); }
.proj-card:hover .proj-card__img img   { transform: scale(1.05); }
.proj-card:hover .proj-card__img::after { opacity: 0.35; }
.proj-card:hover .proj-card__link      { color: var(--yellow); border-color: var(--yellow); }

.proj-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.proj-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.proj-card__img::after {
  content: ''; position: absolute; inset: 0;
  background: var(--yellow); opacity: 0;
  transition: opacity 0.3s; mix-blend-mode: multiply; pointer-events: none;
}

/* card image fallback colors */
.proj-card__img.bg-1 { background: #D6E8EC; }
.proj-card__img.bg-2 { background: #C8DDE3; }
.proj-card__img.bg-3 { background: #BED4DB; }
.proj-card__img.bg-4 { background: #E0EBD0; }
.proj-card__img.bg-5 { background: #F0EAD6; }
.proj-card__img.bg-6 { background: #E8D6DC; }
.proj-card__img.bg-7 { background: #D6DCE8; }
.proj-card__img.bg-8 { background: #DCE8D6; }
.proj-card__img.bg-9 { background: #E8E4D6; }

.proj-card__body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--border);
}
.proj-card__cats { display: flex; flex-wrap: wrap; gap: 0; margin-bottom: 2px; }
.proj-card__cat  { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); }
.proj-card__cat + .proj-card__cat::before { content: ' · '; }
.proj-card__tagline { font-size: 12px; font-weight: 300; color: var(--ink); line-height: 1.6; flex: 1; }
.proj-card__footer  { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; padding-top: 16px; border-top: 1px solid var(--border); }
.proj-card__year    { font-size: 11px; font-weight: 600; color: var(--blue); }
.proj-card__link    { font-size: 11px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 1px; transition: color 0.2s, border-color 0.2s; }


/* ── 16. FILTER BAR (proyectos) ────────────────────────── */
.filter-bar {
  padding: 0 var(--pad-x);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: stretch;
  position: sticky;
  top: var(--nav-h);
  background: var(--off-white);
  z-index: 50;
}
.filter-btn {
  background: none;
  border: none;
  border-right: 1px solid var(--border);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 16px 22px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.filter-btn:first-child { padding-left: 0; }
.filter-btn:last-child  { border-right: none; }
.filter-btn:hover,
.filter-btn.active      { color: var(--ink); background: var(--yellow-dim); }


/* ── 17. CTA STRIP ─────────────────────────────────────── */
.cta-strip {
  background: var(--yellow);
  padding: var(--pad-section) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
/*.cta-strip__body { display: flex; flex-direction: column; gap: 0; }*/
/*.cta-strip p { font-size: 14px; font-weight: 300; line-height: 1.75; margin-bottom: 28px; }*/


/* ── 18. BIO (sobre-mi) ────────────────────────────────── */
.bio {
  padding: var(--pad-section) var(--pad-x);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 200px 1fr 280px;
  gap: 64px;
}
.bio__text p { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--ink); margin-bottom: 18px; max-width: 560px; }
.bio__text p strong { font-weight: 700; }
.bio__data { border-left: 1px solid var(--border); padding-left: 40px; }
.bio__data-item { padding: 14px 0; border-bottom: 1px solid var(--border); }
.bio__data-item:first-child { border-top: 1px solid var(--border); }
.bio__data-val { font-size: 13px; font-weight: 400; color: var(--ink); }
.bio__data-val--avail { display: flex; align-items: center; gap: 6px; font-weight: 600; }


/* ── 19. PRINCIPLES GRID (sobre-mi) ────────────────────── */
.principles { padding: var(--pad-section) var(--pad-x); border-bottom: 1px solid var(--border); }
.principles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
}
.principle { background: var(--off-white); padding: 32px 28px; }
/*.principle__num   { font-size: 14px; font-weight: 1000; letter-spacing: 0.1em; color: var(--yellow); margin-bottom: 24px; }*/
.principle__body  { font-size: 13px; font-weight: 300; color: var(--ink); line-height: 1.7; margin-top: 10px; }


/* ── 20. SKILLS (sobre-mi) ─────────────────────────────── */
.skills { padding: var(--pad-section) var(--pad-x); border-bottom: 1px solid var(--border); }
.skill-list { display: flex; flex-direction: column; }
.skill-item {
  display: grid;
  grid-template-columns: 1fr 200px;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.skill-item:first-child { border-top: 1px solid var(--border); }
.skill-bar-wrap  { display: flex; align-items: center; gap: 14px; }
.skill-bar       { flex: 1; height: 1px; background: var(--border); position: relative; }
.skill-bar-fill  { position: absolute; left: 0; top: 0; bottom: 0; background: var(--ink); }
.skill-pct       { font-size: 11px; font-weight: 600; color: var(--blue); min-width: 32px; text-align: right; }


/* ── 21. TOOLS (sobre-mi) ──────────────────────────────── */
.tools { padding: var(--pad-section) var(--pad-x); border-bottom: 1px solid var(--border); }
.tools__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.tool {
  font-size: 14px; font-weight: 400; color: var(--dark-blue);
  border: 1px solid var(--border); padding: 6px 14px;
  transition: all 0.2s; cursor: default;
}
/*
.tool:hover, .tool--main {
  background: var(--ink); color: var(--off-white); border-color: var(--ink);
}*/


/* ── 22. FORMATION (sobre-mi) ──────────────────────────── */
.formation { padding: var(--pad-section) var(--pad-x); }
.edu-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.edu-row:first-child { border-top: 1px solid var(--border); }
.edu-year   { font-size: 12px; color: var(--blue); font-weight: 600; padding-top: 2px; }
.edu-center { font-size: 12px; color: var(--blue); font-weight: 600; margin-top: 2px; }


/* ── 23. TIMELINE (experiencia) ────────────────────────── */
.timeline-section { padding: var(--pad-section) var(--pad-x); }
.tl-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
/*.tl-item:first-child { border-top: 1px solid var(--border); }*/
.tl-dates   { font-size: 12px; font-weight: 600; color: var(--blue); margin-bottom: 8px; }
.tl-current {
  display: inline-block;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--yellow); color: var(--ink); padding: 2px 8px;
}
.tl-desc { line-height: 1.8; max-width: 560px; margin: 16px 0; }
.tl-achievements { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.tl-ach {
  
  padding-left: 16px; position: relative;
}
.tl-ach::before { content: '—'; position: absolute; left: 0; color: var(--yellow);    top: 3px;
 }
.tl-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tl-tag  { font-size: 12px; font-weight: 800; color: var(--blue); border: 1px solid var(--border); padding: 4px 10px; }


/* ── 24. CLIENTS GRID (experiencia) ────────────────────── */
.clients-section { padding: var(--pad-section) var(--pad-x); border-top: 1px solid var(--border); }
.clients-grid {
  display: flex;
	justify-content:space-between;
  grid-template-columns: repeat(8, 1fr);
  gap: 1px;
  margin-top: 40px;
}
.client-cell {
  padding: 24px 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue);
  min-height: 80px;
  transition: all 0.2s;
}
.client-cell:hover { background: var(--yellow-dim); color: var(--ink); }
.client-cell--ghost { border: 2px dashed var(--border); background: transparent; color: var(--border); }
.client-cell--ghost:hover { color: var(--blue); border-color: var(--blue-light); background: transparent; }


/* ── 25. CV DOWNLOAD (experiencia) ─────────────────────── */
.cv-section {
  padding: var(--pad-section) var(--pad-x);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}


/* ── 26. CONTACT ───────────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
}
.c-left {
  padding: 80px 64px 64px var(--pad-x);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: space-between;
}
.c-left__intro { font-size: 14px; font-weight: 300; color: var(--ink); line-height: 1.8; max-width: 380px; margin-bottom: 48px; }
.c-left__intro strong { font-weight: 600; }
.c-info        { display: flex; flex-direction: column; }
.c-info-row    {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; border-top: 1px solid var(--border);
  text-decoration: none; color: inherit; transition: opacity 0.2s;
}
.c-info-row:last-child  { border-bottom: 1px solid var(--border); }
.c-info-row:hover       { opacity: 0.5; }
.c-info-row__label      { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 2px; }
.c-info-row__val        { font-size: 14px; font-weight: 400; color: var(--ink); }
.c-info-row__arrow      { font-size: 14px; color: var(--blue); }
.c-left__avail          { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--blue); }

.c-right { padding: 80px var(--pad-x) 64px 64px; display: flex; flex-direction: column; justify-content: center; }

.mv-form           { display: flex; flex-direction: column; gap: 0; }
.form-row          { display: grid; grid-template-columns: 1fr 1fr; }
.form-group        {
  border: 1px solid var(--border); margin: -1px 0 0 -1px; padding: 16px 20px;
  transition: background 0.2s;
}
.form-group:focus-within { background: var(--white); z-index: 1; border-color: var(--ink); position: relative; }
.form-label        { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); margin-bottom: 4px; }
.form-input        {
  display: block; width: 100%; background: transparent; border: none; outline: none;
  font-family: var(--font); font-size: 14px; font-weight: 400; color: var(--ink); padding: 0;
}
.form-input::placeholder { color: var(--blue); }
textarea.form-input { resize: none; min-height: 100px; }

.type-group      { border: 1px solid var(--border); margin: -1px 0 0 -1px; padding: 16px 20px; }
.type-options    { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.type-opt        { cursor: pointer; }
.type-opt input  { display: none; }
.type-opt__lbl   {
  display: inline-block; font-size: 12px; font-weight: 400; color: var(--blue);
  border: 1px solid var(--border); padding: 5px 12px; cursor: pointer;
  transition: all 0.2s;
}
.type-opt input:checked + .type-opt__lbl { background: var(--ink); color: var(--off-white); border-color: var(--ink); }

.form-submit-row  { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; }
.form-note        { font-size: 11px; font-weight: 600; color: var(--blue); }
.btn-submit       {
  background: var(--ink); color: var(--off-white);
  font-family: var(--font); font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  padding: 14px 28px; border: 1px solid var(--ink); cursor: pointer; transition: all 0.2s;
}
.btn-submit:hover { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }

.form-success       { display: none; flex-direction: column; align-items: flex-start; gap: 16px; }
.form-success__icon { width: 40px; height: 40px; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.form-success__body { font-size: 14px; font-weight: 300; color: var(--blue); line-height: 1.7; }
.btn-reset          {
  background: none; border: 1px solid var(--border); font-family: var(--font);
  font-size: 12px; font-weight: 600; color: var(--blue); padding: 10px 20px; cursor: pointer; margin-top: 8px; transition: all 0.2s;
}
.btn-reset:hover    { border-color: var(--ink); color: var(--ink); }


/* ── 27. RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1100px) {
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --pad-x: 24px; --pad-section: 48px; }

  .page-head,
  .hero,
  .cols-2,
  .cta-strip,
  .cv-section,
  .contact-wrap  { grid-template-columns: 1fr; gap: 32px; }

  .hero__img     { height: 260px; }
  .stats         { grid-template-columns: 1fr 1fr; }

  .intro         { grid-template-columns: 1fr; }
  .cols-sidebar,
  .bio           { grid-template-columns: 1fr; }
  .bio__data     { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 32px; }

  .proj-featured { grid-template-columns: 1fr; min-height: auto; }
  .proj-featured--reverse { direction: ltr; }
  .proj-featured__img { min-height: 260px; border-right: none !important; border-left: none !important; border-bottom: 1px solid var(--border); }
  .proj-featured__body { padding: 32px 24px; }

  .proj-grid     { grid-template-columns: 1fr; }

  .proj-row { grid-template-columns: 40px 1fr; padding: 0 var(--pad-x); height: 64px; }
  .proj-row__thumb,
  .proj-row__cat,
  .proj-row__year,
  .proj-row__arrow { display: none; }

  .filter-bar    { padding: 0 var(--pad-x); overflow-x: auto; }

  .principles__grid { grid-template-columns: 1fr 1fr; }
  .clients-grid  { grid-template-columns: repeat(4, 1fr); }

  .tl-item       { grid-template-columns: 1fr; gap: 12px; }

  .contact-wrap  { min-height: auto; }
  .c-left        { padding: 48px 24px; }
  .c-right       { padding: 48px 24px; }
  .form-row      { grid-template-columns: 1fr; }

.nav__links            { display: none; }
.nav__contact--desktop { display: none; }   /* ← nueva */
.nav__burger           { display: flex; }   /* ← nueva */
.nav__mobile-menu      { display: flex; }   /* ← nueva */
}


@media (max-width: 767px) {

  .proj-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: auto;
    min-height: 56px;
    padding: 16px var(--pad-x);
    gap: 4px 8px;
  }

  .proj-row__num {
    flex: 0 0 auto;
    width: auto;
  }

  .proj-row__name {
    flex: 1 1 auto;
    font-size: 15px;
  }

  .proj-row__name small {
    font-size: 11px;
    display: block;
  }

  /* Ocultar en móvil */
  .proj-row__cat,
  .proj-row__year,
  .proj-row__arrow { display: none; }

}