/* ============================================
   GABRIEL DIMA NKOA — Portfolio Ingénieur GCE
   Industrial / Editorial / Premium / Light
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Design Tokens --- */
:root {
  /* Colors — industrial / light editorial */
  --bg-light: #f5f3ef;
  --bg-white: #faf9f6;
  --bg-surface: #edeae4;
  --bg-card: #ffffff;
  --bg-dark: #1c1c1c;
  --bg-anthracite: #2a2a2a;

  --text-dark: #1a1a1a;
  --text-body: #4a4540;
  --text-muted: #8a857e;
  --text-light: #b5b0a8;
  --text-on-dark: #f0ece6;

  --accent: #4a6e6f;
  --accent-hover: #3a5a5b;
  --accent-light: rgba(74, 110, 111, 0.08);
  --accent-border: rgba(74, 110, 111, 0.2);

  --border: #ddd8d0;
  --border-light: #e8e4dc;
  --border-dark: #333333;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: clamp(64px, 10vw, 120px);
  --container-max: 1140px;
  --container-narrow: 760px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-hover);
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* --- Section --- */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section__divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 40px;
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(245, 243, 239, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all var(--transition-smooth);
}

.nav2.scrolled {
  background: rgba(245, 243, 239, 0.95);
  box-shadow: 0 1px 0 var(--border);
  padding: 12px 0;
}

.nav2__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav2__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.nav2__links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav2__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  position: relative;
}

.nav2__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--transition-smooth);
}

.nav2__link:hover {
  color: var(--text-dark);
}

.nav2__link:hover::after {
  width: 100%;
}

/* Mobile hamburger */
.nav2__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav2__toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--text-dark);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav2__toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav2__toggle.active span:nth-child(2) { opacity: 0; }
.nav2__toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.nav2__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(245, 243, 239, 0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}

.nav2__mobile.open { display: flex; }

.nav2__mobile a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-body);
  transition: color var(--transition-fast);
}

.nav2__mobile a:hover { color: var(--accent); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

/* Subtle grid texture */
.hero2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--border-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
  pointer-events: none;
}

.hero2__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero2__content { position: relative; }

.hero2__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp2 0.7s 0.2s forwards;
}

.hero2__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: block;
}

.hero2__name {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.08;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp2 0.7s 0.35s forwards;
}

.hero2__title {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 400;
  color: var(--text-body);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp2 0.7s 0.5s forwards;
}

.hero2__description {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 500px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp2 0.7s 0.65s forwards;
}

.hero2__ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp2 0.7s 0.8s forwards;
}

.hero2__micro {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp2 0.7s 0.95s forwards;
}

.hero2__micro span {
  color: var(--text-body);
  font-weight: 500;
}

/* Hero image */
.hero2__image-wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
  opacity: 0;
  animation: fadeIn2 1s 0.3s forwards;
}

.hero2__image-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-surface);
}

.hero2__image-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, var(--bg-white) 0%, transparent 100%);
  pointer-events: none;
}

.hero2__portrait {
  width: 100%;
  display: block;
  filter: contrast(1.02) brightness(0.98);
  transition: filter var(--transition-slow);
}

.hero2__image-frame:hover .hero2__portrait {
  filter: contrast(1.06) brightness(1);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 13px 26px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.btn2--primary {
  background: var(--accent);
  color: #fff;
}

.btn2--primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(74, 110, 111, 0.2);
}

.btn2--outline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border);
}

.btn2--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn2--ghost {
  background: transparent;
  color: var(--accent);
  padding: 8px 0;
  font-weight: 500;
}

.btn2--ghost:hover { color: var(--accent-hover); }
.btn2--ghost .arrow { transition: transform var(--transition-fast); }
.btn2--ghost:hover .arrow { transform: translateX(4px); }

/* ============================================
   CREDIBILITY BAR
   ============================================ */
.proof-bar {
  padding: 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Remove container constraint inside proof-bar */
.proof-bar .container {
  max-width: 100%;
  padding: 0;
}

.proof-bar__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.proof-bar__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.proof-bar__item {
  text-align: center;
  padding: clamp(28px, 4vw, 48px) clamp(16px, 3vw, 40px);
  border-right: 1px solid var(--border);
  transition: background var(--transition-fast);
}

.proof-bar__item:last-child {
  border-right: none;
}

.proof-bar__item:hover {
  background: var(--bg-white);
}

.proof-bar__value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.2;
}

.proof-bar__label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   PROFILE / ABOUT
   ============================================ */
.profile__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.profile__text p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 18px;
}

.profile__text p:first-of-type::first-line {
  color: var(--text-dark);
  font-weight: 500;
}

.profile__aside {
  position: relative;
}

.profile__image-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.profile__lab-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 1px solid var(--border);
  filter: saturate(0.5) contrast(1.04);
  transition: filter var(--transition-smooth);
}

.profile__lab-img:hover {
  filter: saturate(0.8) contrast(1.08);
}

.profile__lab-img:first-child {
  grid-row: 1 / 3;
  height: 100%;
}

.profile__caption {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-style: italic;
}

.profile__lab-img--full {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  border: 1px solid var(--border);
  filter: saturate(0.5) contrast(1.04);
  transition: filter var(--transition-smooth);
}

.profile__lab-img--full:hover {
  filter: saturate(0.8) contrast(1.08);
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.projects2__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 20px;
}

.project2 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  transition: box-shadow var(--transition-smooth);
}

.project2:hover {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
}

.project2__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 14px;
}

.project2__name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.project2__dates {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}

.project2__context {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 18px;
}

.project2__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.project2__tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 11px;
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid var(--accent-border);
}

.project2__body {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 18px;
}

.project2__demonstrates {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.project2__demonstrates strong {
  color: var(--text-body);
  font-weight: 500;
}

.project2__links {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

/* ============================================
   SKILLS SECTION
   ============================================ */
.skills2 {
  background: var(--bg-white);
}

.skills2__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.skill2-block {
  padding: 30px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color var(--transition-smooth);
}

.skill2-block:hover {
  border-color: var(--accent-border);
}

.skill2-block__title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.skill2-block__sub {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 600;
}

.skill2-block__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.skill2-block__item {
  font-size: 0.84rem;
  color: var(--text-body);
  padding-left: 14px;
  position: relative;
}

.skill2-block__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 1.5px;
  background: var(--accent);
}

.skill2-block__item--core {
  color: var(--text-dark);
  font-weight: 500;
}

.skills2__qualities {
  margin-top: 20px;
  padding: 30px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.skills2__qualities-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.skills2__qualities-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quality-chip {
  font-size: 0.78rem;
  padding: 7px 16px;
  border: 1px solid var(--border);
  color: var(--text-body);
  transition: all var(--transition-fast);
}

.quality-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================
   TIMELINE / JOURNEY
   ============================================ */
.journey2 {
  background: var(--bg-light);
}

.timeline2 {
  position: relative;
  margin-top: 36px;
}

.timeline2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: var(--border);
}

.tl-item {
  position: relative;
  padding-left: 44px;
  padding-bottom: 44px;
}

.tl-item:last-child { padding-bottom: 0; }

.tl-dot {
  position: absolute;
  left: -4px;
  top: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 2px solid var(--accent);
}

.tl-item--active .tl-dot {
  background: var(--accent);
}

.tl-date {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
}

.tl-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.tl-institution {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 8px;
}

.tl-text {
  font-size: 0.86rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 540px;
}

/* ============================================
   CERTIFICATIONS / DOCUMENTS
   ============================================ */
.docs__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 20px;
  margin-top: 20px;
}

.doc-card {
  padding: 36px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.doc-card__issuer {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.doc-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.doc-card__desc {
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}

.doc-card__date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.doc-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.doc-sidebar__block {
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 14px;
  flex: 1;
}

.doc-sidebar__text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact2 {
  background: var(--bg-anthracite);
  color: var(--text-on-dark);
}

.contact2 .section__label { color: rgba(74, 110, 111, 0.85); }

.contact2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact2__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 400;
  color: var(--text-on-dark);
  line-height: 1.3;
  margin-bottom: 18px;
}

.contact2__subtitle {
  font-size: 0.9rem;
  color: rgba(240, 236, 230, 0.65);
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact2__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact2__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact2__icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-dark);
  color: var(--accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.contact2__label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 236, 230, 0.4);
  margin-bottom: 2px;
}

.contact2__value {
  font-size: 0.88rem;
  color: var(--text-on-dark);
}

.contact2__value a {
  color: var(--text-on-dark);
  transition: color var(--transition-fast);
}

.contact2__value a:hover { color: var(--accent); }

/* ============================================
   FOOTER
   ============================================ */
.footer2 {
  padding: 28px 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  text-align: center;
}

.footer2__text {
  font-size: 0.72rem;
  color: rgba(240, 236, 230, 0.35);
  letter-spacing: 0.04em;
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeUp2 {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn2 {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .hero2__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .hero2__content { order: 2; }
  .hero2__image-wrapper { order: 1; justify-content: center; }
  .hero2__image-frame { max-width: 320px; }
  .hero2__description { margin: 0 auto 32px; }
  .hero2__ctas { justify-content: center; }
  .hero2__micro { text-align: center; }
  .hero2__badge { justify-content: center; }

  .proof-bar__grid { grid-template-columns: repeat(3, 1fr); }

  .profile__grid { grid-template-columns: 1fr; gap: 36px; }
  .profile__aside { order: -1; }

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

  .skills2__grid { grid-template-columns: repeat(2, 1fr); }

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

  .contact2__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 640px) {
  .nav2__links { display: none; }
  .nav2__toggle { display: flex; }

  .hero2 {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 56px;
  }

  .hero2__name { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero2__image-frame { max-width: 260px; }

  .hero2__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero2__ctas .btn2 { justify-content: center; }

  .proof-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .project2 { padding: 22px; }

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

  .tl-item { padding-left: 30px; padding-bottom: 32px; }

  .doc-sidebar { flex-direction: row; }
  .doc-sidebar__block { padding: 20px; }
}
