/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ===== VARIABLES ===== */
:root {
  --navy: #0C1E3C;
  --navy-mid: #163258;
  --blue: #1A4B8C;
  --blue-light: #2E6BC4;
  --gold: #B8943A;
  --gold-light: #D4AC55;
  --white: #FFFFFF;
  --off-white: #F7F5F0;
  --light-gray: #EEF0F4;
  --mid-gray: #8A94A6;
  --dark-gray: #3D4A5C;
  --text: #1A2535;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(12, 30, 60, 0.08);
  --shadow-hover: 0 12px 40px rgba(12, 30, 60, 0.16);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { width: 90%; max-width: 1160px; margin: 0 auto; }
.section { padding: 96px 0; }
.section--gray { background: var(--off-white); }
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 12px;
  border: 1px solid var(--gold-light);
  border-radius: 2px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--mid-gray);
  max-width: 540px;
}
.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px 0 40px;
  border-radius: 2px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,148,58,0.3); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(12, 30, 60, 0.08);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(12,30,60,0.1); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.nav__logo span { color: var(--gold); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--dark-gray);
  position: relative;
  transition: var(--transition);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav__links a:hover, .nav__links a.active { color: var(--navy); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__cta { margin-left: 16px; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 20px 0 24px;
  border-top: 1px solid var(--light-gray);
  gap: 4px;
}
.nav__mobile a {
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-gray);
  transition: var(--transition);
}
.nav__mobile a:hover { color: var(--navy); padding-left: 8px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.08;
  margin-bottom: 12px;
}
.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--blue);
  font-style: italic;
  margin-bottom: 24px;
}
.hero__desc {
  font-size: 1rem;
  color: var(--dark-gray);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--light-gray);
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.hero__stat-num span { color: var(--gold); }
.hero__stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-top: 6px;
}
.hero__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__image-frame {
  position: relative;
  width: 380px;
  height: 460px;
}
.hero__image-frame::before {
  content: '';
  position: absolute;
  top: -16px; right: -16px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold-light);
  border-radius: 4px;
  z-index: 0;
}
.hero__image-frame::after {
  content: '';
  position: absolute;
  bottom: -12px; left: -12px;
  width: 70%; height: 70%;
  background: var(--navy);
  border-radius: 4px;
  z-index: 0;
  opacity: 0.06;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-hover);
}
.hero__badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  z-index: 2;
  background: var(--white);
  border-radius: 4px;
  padding: 14px 18px;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__badge-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--navy), var(--blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}
.hero__badge-text { font-size: 0.78rem; font-weight: 600; color: var(--navy); line-height: 1.4; }
.hero__badge-text span { display: block; font-weight: 400; color: var(--mid-gray); font-size: 0.72rem; }

/* ===== EXPERTISE STRIP ===== */
.expertise-strip {
  background: var(--navy);
  padding: 28px 0;
  overflow: hidden;
}
.expertise-strip__inner {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.expertise-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.expertise-strip__item::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-preview__img-wrap { position: relative; }
.about-preview__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  box-shadow: var(--shadow-hover);
}
.about-preview__accent {
  position: absolute;
  top: -20px; left: -20px;
  width: 140px; height: 140px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 4px;
  opacity: 0.08;
  z-index: -1;
}
.about-preview__tag {
  position: absolute;
  top: 32px; right: -20px;
  background: var(--gold);
  color: white;
  padding: 8px 16px;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.skill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--dark-gray);
  font-weight: 500;
}
.skill-item::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== EXPERIENCE TIMELINE ===== */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--navy), var(--light-gray));
}
.timeline-item { position: relative; margin-bottom: 48px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -40px; top: 6px;
  width: 14px; height: 14px;
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: 50%;
  z-index: 1;
  transition: var(--transition);
}
.timeline-item.current .timeline-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 5px rgba(184,148,58,0.15);
}
.timeline-period {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.timeline-role {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.timeline-company {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 12px;
}
.timeline-desc {
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.7;
}
.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.timeline-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 2px;
  background: var(--light-gray);
  color: var(--navy);
}

/* ===== PROJECTS CARDS ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.project-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.project-card__header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 28px 28px 20px;
  position: relative;
  overflow: hidden;
}
.project-card__header::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 100px; height: 100px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.project-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.08);
  position: absolute;
  top: 12px; right: 20px;
  line-height: 1;
}
.project-card__icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.project-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.project-card__client {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
}
.project-card__body { padding: 24px 28px 28px; }
.project-card__desc {
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}
.project-card__stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.project-card__stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
}
.project-card__stat-label {
  font-size: 0.78rem;
  color: var(--mid-gray);
  font-weight: 500;
}

/* ===== ABOUT PAGE FULL ===== */
.about-hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}
.about-hero__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.about-photo-wrap { position: relative; }
.about-photo {
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow-hover);
}
.about-photo-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--navy);
  color: white;
  padding: 20px 24px;
  border-radius: 4px;
  text-align: center;
}
.about-photo-badge__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-light);
}
.about-photo-badge__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}
.about-name {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 8px;
}
.about-role {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--blue-light);
  margin-bottom: 28px;
}
.about-bio {
  font-size: 1rem;
  color: var(--dark-gray);
  line-height: 1.8;
}
.about-bio + .about-bio { margin-top: 16px; }
.about-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
  padding: 28px;
  background: var(--off-white);
  border-radius: 6px;
}
.about-meta__item label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 4px;
}
.about-meta__item span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}
.certifications { margin-top: 56px; }
.cert-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.cert-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  transition: var(--transition);
}
.cert-item:hover { border-color: var(--gold-light); box-shadow: var(--shadow); }
.cert-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cert-text { font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.cert-sub { font-size: 0.8rem; color: var(--mid-gray); margin-top: 2px; }
.languages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.lang-card {
  padding: 20px 24px;
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  transition: var(--transition);
}
.lang-card:hover { border-color: var(--gold-light); }
.lang-name { font-weight: 700; color: var(--navy); font-size: 0.95rem; margin-bottom: 6px; }
.lang-level {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--light-gray);
}
.lang-dot.filled { background: var(--gold); }
.lang-label { font-size: 0.75rem; color: var(--mid-gray); margin-left: 6px; }
.awards-section { margin-top: 56px; }
.award-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 6px;
  margin-bottom: 16px;
  color: white;
}
.award-icon { font-size: 1.8rem; flex-shrink: 0; }
.award-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.award-desc { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* ===== CONTACT PAGE ===== */
.contact-hero {
  padding: 160px 0 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,148,58,0.12) 0%, transparent 70%);
}
.contact-hero .section-title { color: var(--white); }
.contact-hero .section-subtitle { color: rgba(255,255,255,0.6); max-width: none; }
.contact-hero .badge { color: var(--gold-light); border-color: rgba(184,148,58,0.4); }
.contact-body { padding: 80px 0 100px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--light-gray);
}
.contact-info-card:first-child { padding-top: 0; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 4px; }
.contact-info-value { font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.contact-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--light-gray);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark-gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 28px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
}
.footer__logo span { color: var(--gold-light); }
.footer__links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--gold-light); }
.footer__divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
}
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.fade-up-2 { animation-delay: 0.15s; }
.fade-up-3 { animation-delay: 0.28s; }
.fade-up-4 { animation-delay: 0.42s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero__grid,
  .about-preview__grid,
  .about-hero__grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero::before { width: 100%; clip-path: none; opacity: 0.5; }
  .hero__image-wrap { order: -1; }
  .hero__image-frame { width: 100%; max-width: 320px; margin: 0 auto; }
  .about-hero { padding: 120px 0 60px; }
  .contact-hero { padding: 120px 0 60px; }
  .section { padding: 64px 0; }
  .hero__stats { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile.open { display: flex; }
  .about-meta { grid-template-columns: 1fr; }
  .about-photo-badge { bottom: 12px; right: 12px; }
  .languages-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .projects-grid { grid-template-columns: 1fr; }
  .languages-grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 16px; }
  .contact-form-wrap { padding: 24px; }
  .expertise-strip__inner { gap: 20px; }
}
