/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 72px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #FFFFFF;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ─── PAGE CARD ──────────────────────────────────────── */
.page-card {
  background: #FFFFFF;
  width: 100%;
  position: relative;
}

/* ─── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #EBEBEA;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  gap: 24px;
}
.nav-avail {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F5F5F5;
  border: 1px solid #E8E8E8;
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  flex-shrink: 0;
}
.avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(34,197,94,.2);
  animation: pulse-dot 2.5s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 2px rgba(34,197,94,.2); }
  50%       { box-shadow: 0 0 0 5px rgba(34,197,94,.15); }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  letter-spacing: 0.01em;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: #F5F5F5; color: #1A1A1A; }
.nav-links a.active { background: #F0F0F0; color: #1A1A1A; }
.nav-badge {
  background: #1A1A1A;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  letter-spacing: 0;
  line-height: 1.6;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1A1A1A;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: #333; transform: translateY(-1px); }

/* Mobile hamburger */
.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav-ham span { display: block; width: 22px; height: 2px; background: #1A1A1A; border-radius: 2px; transition: .3s; }
.mob-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: #fff;
  flex-direction: column;
  padding: 24px;
}
.mob-menu.open { display: flex; }
.mob-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.mob-logo { font-size: 18px; font-weight: 800; color: #1A1A1A; }
.mob-close {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #F5F5F5;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer; border: none;
}
.mob-nav-links { display: flex; flex-direction: column; gap: 0; flex: 1; }
.mob-nav-links a {
  padding: 20px 0;
  font-size: 28px;
  font-weight: 700;
  color: #1A1A1A;
  border-bottom: 1px solid #F0F0F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mob-nav-links a span { font-size: 14px; color: #999; font-weight: 400; }
.mob-cta-wrap { padding-top: 32px; }
.mob-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #1A1A1A;
  color: #fff;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  height: 100vh;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

/* Foot strip only — pushed to bottom */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}
.hero-overlay > * { pointer-events: auto; }

/* Name row — absolute, sits BEHIND the photo */
.hero-name-zone {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: calc(160px + 5vh) 40px 0;
  z-index: 2; /* below photo (z-index:5) */
  pointer-events: none;
  will-change: transform;
}
.hero-name-outlined {
  font-size: clamp(24px, 11.5vw, 220px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px #1A1A1A;
  user-select: none;
  flex-shrink: 0;
}
.hero-name-solid {
  font-size: clamp(24px, 11.5vw, 220px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #1A1A1A;
  user-select: none;
  flex-shrink: 0;
}

/* Photo — absolute, fills full hero height, sits behind overlay */
.hero-photo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  z-index: 5;
  width: clamp(972px, 54vw, 1728px);
  overflow: hidden;
  cursor: crosshair;
}
/* Both layers absolutely positioned — guarantees pixel-perfect overlap */
.photo-bw,
.photo-color {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  user-select: none;
  pointer-events: none;
}
.photo-bw {
  filter: grayscale(100%) contrast(1.05);
}
.photo-color {
  -webkit-mask-image: radial-gradient(circle 0px at 50% 50%, black 45%, transparent 100%);
  mask-image: radial-gradient(circle 0px at 50% 50%, black 45%, transparent 100%);
}
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  background: #F0F0F0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 48px;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  color: rgba(0,0,0,.12);
  letter-spacing: -3px;
}

/* Footer info row — overlays the bottom of the portrait */
.hero-foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 40px 40px;
  gap: 24px;
  flex-shrink: 0;
}
.hero-role-title {
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 6px;
  line-height: 1.3;
}
.hero-role-sub {
  font-size: 13px;
  color: #888;
  line-height: 1.65;
  max-width: 290px;
  margin-bottom: 20px;
}
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1A1A1A;
  color: #fff;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s, transform .2s;
}
.hero-cta-btn:hover { background: #333; transform: translateY(-2px); }
.hero-foot-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  flex-shrink: 0;
}
.hero-social {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  padding: 7px 16px;
  border: 1px solid #E5E5E5;
  border-radius: 100px;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.hero-social:hover { border-color: #1A1A1A; color: #1A1A1A; }
.hero-social-icon { font-size: 13px; opacity: 0.65; }

/* Horizontal divider */
.section-divider {
  height: 1px;
  background: #EBEBEA;
  margin: 0 48px;
}

/* ─── SECTION SHARED ─────────────────────────────────── */
.section { padding: 80px 48px; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: #1A1A1A;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 15px;
  color: #888;
  max-width: 340px;
  line-height: 1.6;
  text-align: right;
}

/* ─── WORK SECTION ───────────────────────────────────── */
#work.section { padding: 48px 48px 52px; }
#work .section-header { margin-bottom: 20px; }

/* Filter bar */
.work-filterbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.work-filters {
  display: flex;
  align-items: center;
  gap: 4px;
}
.work-filter-btn {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #888;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, color .2s;
}
.work-filter-btn:hover { background: #F5F5F5; color: #1A1A1A; }
.work-filter-btn.active { background: #1A1A1A; color: #fff; }
.work-viewall {
  font-size: 13px;
  font-weight: 600;
  color: #888;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
}
.work-viewall:hover { color: #1A1A1A; }

/* Grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 24px;
  width: 80%;
  margin: 0 auto;
}
.work-card-extra { display: none; }
.work-card {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 4px rgba(0,0,0,.04), 0 8px 20px rgba(0,0,0,.08), 0 24px 32px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(0,0,0,.04), 0 16px 32px rgba(0,0,0,.10), 0 36px 48px rgba(0,0,0,.08);
}
.work-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #F5F5F5;
  flex-shrink: 0;
}
.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .4s;
}
.work-card:hover .work-thumb img { transform: scale(1.03); }
.work-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
}
.work-card:hover .work-overlay { opacity: 1; }
.work-overlay-text {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.work-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,.92);
  color: #1A1A1A;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.work-badge.exploration {
  background: rgba(26,26,26,.8);
  color: #fff;
}
.work-info {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid #F2F2F2;
}
.work-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.4;
}
.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.work-tag {
  padding: 5px 13px;
  border-radius: 100px;
  background: #F4F4F4;
  font-size: 12px;
  font-weight: 500;
  color: #666;
}

/* ─── SERVICE SECTION ────────────────────────────────── */
.service-section { background: #fff; }
.service-list { display: flex; flex-direction: column; }

.service-row {
  border-top: 1px solid #E8E8E8;
  overflow: hidden;
  border-radius: 0;
  transition: background .3s ease, border-color .3s ease, border-radius .3s ease;
}
.service-row:last-child { border-bottom: 1px solid #E8E8E8; }

/* Open row → dark card */
.service-row.open {
  background: #1A1A1A;
  border-color: transparent;
  border-radius: 16px;
  padding: 0 32px;
  margin: 4px 0;
}
/* Remove top border of the row immediately following an open row */
.service-row.open + .service-row {
  border-top-color: transparent;
}

.service-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}
.service-row-name {
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  transition: color .25s;
}
.service-row-arrow {
  font-size: 20px;
  color: #AAA;
  transition: transform .35s, color .25s;
  flex-shrink: 0;
  font-weight: 300;
}

/* Open state — white text, rotate arrow to × */
.service-row.open .service-row-name { color: #fff; }
.service-row.open .service-row-arrow {
  transform: rotate(45deg);
  color: rgba(255,255,255,.45);
}

.service-row:not(.open):hover .service-row-name { color: #555; }
.service-row:not(.open):hover .service-row-arrow { color: #555; }

.service-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4,0,.2,1);
}
.service-body.open { max-height: 640px; }

.service-body-inner {
  padding: 0 0 40px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.service-body-num {
  font-size: 80px;
  font-weight: 900;
  color: rgba(255,255,255,.06);
  line-height: 1;
  letter-spacing: -4px;
  margin-bottom: 10px;
}
.service-body-desc {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  max-width: 400px;
}
.service-body-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.service-skill {
  padding: 6px 14px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
}
.service-body-img {
  border-radius: 14px;
  overflow: hidden;
  height: 240px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
  transform: translateY(-12px);
}
.service-body-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.service-body-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: rgba(255,255,255,.25);
}

/* ─── EXPERIENCE SECTION ─────────────────────────────── */
.exp-section {
  background: #1A1A1A;
  position: relative;
  overflow: hidden;
  padding: 80px 48px;
}
.exp-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 900;
  color: rgba(255,255,255,.03);
  white-space: nowrap;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.exp-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 16px;
}
.exp-section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 8px;
}
.exp-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.exp-years-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
}
.exp-years-badge strong {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}
.exp-list { position: relative; z-index: 1; }
.exp-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  align-items: start;
}
.exp-item:last-child { border-bottom: 1px solid rgba(255,255,255,.08); }
.exp-date {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  font-weight: 400;
  line-height: 1.6;
  padding-top: 4px;
}
.exp-date-badge {
  display: inline-block;
  margin-top: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.15);
  padding: 3px 8px;
  border-radius: 100px;
}
.exp-company {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.exp-role {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  font-weight: 400;
  margin-bottom: 12px;
}
.exp-bullets {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.exp-bullets li {
  font-size: 13.5px;
  color: rgba(255,255,255,.4);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.exp-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,.2);
}

/* Education block inside experience section */
.exp-edu {
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 1;
}
.exp-edu-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-bottom: 12px;
}
.exp-edu-degree {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.exp-edu-school {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  font-weight: 400;
}

/* ─── CTA SECTION ────────────────────────────────────── */
.cta-section {
  padding: 100px 48px;
  text-align: center;
  background: #FFFFFF;
}
.cta-avail-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F5F5F5;
  border: 1px solid #E8E8E8;
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  margin-bottom: 28px;
}
.cta-heading {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 900;
  color: #1A1A1A;
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.cta-sub {
  font-size: 16px;
  color: #888;
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1A1A1A;
  color: #fff;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  transition: background .2s, transform .2s;
  letter-spacing: -0.01em;
}
.cta-btn:hover { background: #333; transform: translateY(-3px); }
.cta-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.cta-link {
  font-size: 13px;
  color: #999;
  font-weight: 500;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.cta-link:hover { color: #1A1A1A; }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  padding: 24px 48px;
  border-top: 1px solid #EBEBEA;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-left {
  font-size: 13px;
  color: #BBB;
  font-weight: 400;
}
.footer-left span { color: #1A1A1A; font-weight: 600; }
.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-link {
  font-size: 13px;
  color: #BBB;
  font-weight: 500;
  transition: color .2s;
}
.footer-link:hover { color: #1A1A1A; }

/* ─── SCROLL REVEAL ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .navbar { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-avail { display: none; }
  .nav-ham { display: flex; }
  /* Hero mobile */
  .hero { height: 100svh; }
  .hero-name-zone { padding: calc(72px + 12px) 20px 0; }
  .hero-photo-center { width: clamp(320px, 74vw, 864px); }
  .hero-foot { padding: 20px 16px 28px; gap: 16px; }
  .hero-foot-right { flex-direction: row; flex-wrap: wrap; justify-content: flex-end; gap: 6px; }
  .hero-social { font-size: 12px; padding: 5px 12px; }
  /* Other sections */
  .section { padding: 60px 24px; }
  .section-divider { margin: 0; }
  .service-body-inner { grid-template-columns: 1fr; }
  .service-body-img { height: 180px; transform: none; }
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; width: 100%; }
  .work-card-title { font-size: 15px; }
  .work-info { padding: 16px 18px 20px; }
  .exp-section { padding: 60px 24px; }
  .exp-item { grid-template-columns: 1fr; gap: 12px; }
  .exp-date { padding-top: 0; }
  .cta-section { padding: 70px 24px; }
  .footer { padding: 20px 24px; }
}
@media (max-width: 600px) {
  .hero-name-zone { padding: calc(30svh) 5px 0; }
  .hero-photo-center {
    top: auto;
    bottom: 0;
    height: 100svh;
    width: 120vw;
  }
  .photo-bw,
  .photo-color { object-position: top center; }
  .hero-foot {
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* tall multi-stop fade so portrait bleeds through naturally */
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(255,255,255,0.55) 28%,
      rgba(255,255,255,0.92) 52%,
      #fff 72%
    );
    padding: 88px 20px 36px;
    gap: 0;
  }
  .hero-role-title { font-size: 17px; }
  .hero-foot-right { display: none; }
  .hero-role-sub { display: none; }
  .hero-cta-btn { display: none; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .section-subtitle { text-align: left; }
  .work-grid { grid-template-columns: 1fr; gap: 40px; width: 100%; }
}
