:root {
  --ink: #151412;
  --ink-soft: #2b2925;
  --paper: #f4f0e9;
  --surface: #fbf8f2;
  --surface-2: #e8e0d5;
  --muted: #69645d;
  --accent: #9a6942;
  --accent-deep: #6f4227;
  --line: rgba(21, 20, 18, .15);
  --serif: "Iowan Old Style", Baskerville, "Palatino Linotype", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --container: 2200px;
  --gutter: clamp(12px, 2.6vw, 48px);
  --radius: 2px;
  --shadow: 0 24px 64px rgba(39, 29, 20, .13);
  --ease: cubic-bezier(.22, .78, .18, 1);
}

* { box-sizing: border-box; }
html {
  min-width: 320px;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

::selection { background: var(--ink); color: var(--paper); }
:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -100px;
  left: 16px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

main,
.home-showcase-header-shell,
.minimal-footer-shell {
  width: min(calc(100% - (2 * var(--gutter))), var(--container));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 240, 233, .94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.home-showcase-header-shell {
  min-height: clamp(72px, 5.3vw, 88px);
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
}
.home-showcase-brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.home-showcase-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  overflow: hidden;
  border: 1px solid rgba(21,20,18,.26);
  border-radius: 50%;
  background: var(--surface-2);
}
.home-showcase-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.home-showcase-brand strong {
  font-family: var(--serif);
  font-size: clamp(1.06rem, 1.25vw, 1.36rem);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.home-showcase-role {
  margin: 0;
  color: var(--ink);
  font-size: clamp(.65rem, .75vw, .8rem);
  font-weight: 600;
  letter-spacing: .075em;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
}
.home-showcase-role span { margin-inline: .22em; color: var(--accent-deep); }
.home-showcase-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}
.home-showcase-icon,
.menu-button {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s ease, color .25s ease, border-color .25s ease;
}
.home-showcase-icon:hover,
.menu-button:hover { transform: translateY(-2px); background: var(--ink); border-color: var(--ink); color: white; }
.home-showcase-linkedin {
  border-radius: 8px;
  border-color: #0a66c2;
  background: #0a66c2;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}
.home-showcase-linkedin span { transform: translateY(-1px); }

/* Off-canvas menu */
.menu-overlay {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  opacity: 0;
  background: rgba(10, 9, 8, .55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity .3s ease, visibility .3s ease;
}
.menu-overlay.is-open { visibility: visible; opacity: 1; }
.menu-panel {
  width: min(620px, 100%);
  min-height: 100%;
  padding: max(24px, env(safe-area-inset-top)) clamp(24px, 5vw, 68px) max(36px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform .42s var(--ease);
}
.menu-overlay.is-open .menu-panel { transform: translateX(0); }
.menu-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.35rem;
}
.overlay-nav { display: grid; margin: 28px 0; }
.overlay-nav a {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 4px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.overlay-nav a span { color: var(--accent); font-size: .65rem; letter-spacing: .14em; }
.overlay-nav a strong {
  min-width: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.035em;
  overflow-wrap: anywhere;
}
.overlay-nav a svg { transition: transform .25s var(--ease); }
.overlay-nav a:hover svg { transform: translateX(6px); }
.menu-foot { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); }
.menu-foot p { max-width: 48ch; color: var(--muted); }
.menu-foot > div { display: flex; flex-wrap: wrap; gap: 18px; }
.menu-foot a { display: inline-flex; align-items: center; gap: 6px; font-size: .84rem; font-weight: 650; }

/* Homepage editorial grid */
.home-portfolio-index { padding: clamp(12px, 1.4vw, 24px) 0 clamp(28px, 3vw, 50px); }
.home-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(84px, min(6.2vw, 11.4svh), 146px);
  gap: clamp(8px, .72vw, 15px);
}
.index-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  text-decoration: none;
  isolation: isolate;
}
.index-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease), filter .45s ease;
}
.index-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,8,8,.02) 22%, rgba(7,8,8,.74) 100%);
  transition: background .35s ease;
}
.index-copy {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 1.8vw, 34px);
  right: clamp(66px, 5vw, 90px);
  bottom: clamp(17px, 1.8vw, 34px);
}
.index-copy strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 3.2vw, 4.9rem);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.052em;
  text-wrap: balance;
}
.index-arrow {
  position: absolute;
  z-index: 2;
  right: clamp(16px, 1.6vw, 28px);
  bottom: clamp(16px, 1.6vw, 28px);
  width: clamp(39px, 3vw, 48px);
  height: clamp(39px, 3vw, 48px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 50%;
  transition: transform .3s var(--ease), background-color .3s ease, color .3s ease;
}
.index-card:hover img { transform: scale(1.025); filter: saturate(1.04); }
.index-card:hover .index-shade { background: linear-gradient(180deg, rgba(7,8,8,.04) 15%, rgba(7,8,8,.86) 100%); }
.index-card:hover .index-arrow { transform: translateX(4px); background: white; color: var(--ink); }
.home-portfolio-grid .card-about { grid-column: span 5; grid-row: span 4; }
.home-portfolio-grid .card-vietnam { grid-column: span 7; grid-row: span 2; }
.home-portfolio-grid .card-world { grid-column: span 4; grid-row: span 2; }
.home-portfolio-grid .card-languages { grid-column: span 3; grid-row: span 2; }
.home-portfolio-grid .card-docs { grid-column: span 5; grid-row: span 3; }
.home-portfolio-grid .card-camera { grid-column: span 7; grid-row: span 3; }
.home-portfolio-grid .card-about img { object-position: 50% 34%; }
.home-portfolio-grid .card-vietnam img { object-position: 50% 50%; }
.home-portfolio-grid .card-docs img { object-position: 50% 40%; }
.home-portfolio-grid .card-languages .index-copy strong { font-size: clamp(2rem, 2.55vw, 3.65rem); }
body[data-page="home"] .site-footer { display: none; }

/* Category masthead */
.category-masthead {
  position: relative;
  min-height: clamp(540px, min(44vw, 76svh), 850px);
  margin: clamp(28px, 4vw, 72px) 0 clamp(40px, 5vw, 82px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  isolation: isolate;
}
.category-masthead > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body[data-category="documentaries"] .category-masthead > img { object-position: 50% 33%; }
body[data-category="languages"] .category-masthead > img { object-position: 50% 20%; }
.category-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,11,10,.87) 0%, rgba(12,11,10,.58) 46%, rgba(12,11,10,.1) 78%),
    linear-gradient(0deg, rgba(12,11,10,.55), transparent 56%);
}
.category-heading {
  width: min(790px, 62%);
  margin: clamp(28px, 5vw, 96px);
}
.category-heading h1 {
  margin: 0 0 clamp(14px, 1.5vw, 24px);
  font-family: var(--serif);
  font-size: clamp(4.4rem, 8vw, 9.2rem);
  font-weight: 500;
  line-height: .82;
  letter-spacing: -.065em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
body[data-category="documentaries"] .category-heading h1 { font-size: clamp(4rem, 7.1vw, 8.1rem); }
body[data-category="languages"] .category-heading h1 { font-size: clamp(3.9rem, 6.8vw, 7.8rem); }
.category-heading p {
  max-width: 66ch;
  margin: 0;
  color: rgba(255,255,255,.84);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.45vw, 1.55rem);
  line-height: 1.42;
}

/* Article cards */
.category-work-list { padding: 0 0 clamp(72px, 8vw, 130px); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.25vw, 24px);
  align-items: stretch;
}
.work-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251,248,242,.7);
  text-decoration: none;
  content-visibility: auto;
  contain-intrinsic-size: 420px;
  transition: transform .32s var(--ease), box-shadow .32s ease, background-color .32s ease;
}
.work-card:hover { transform: translateY(-5px); background: var(--surface); box-shadow: var(--shadow); }
.work-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-2);
}
.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .55s var(--ease);
}
.work-card:hover .work-image img { transform: scale(1.035); }
.work-open {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(21,20,18,.88);
  color: white;
  backdrop-filter: blur(6px);
}
.work-copy {
  min-height: clamp(124px, 9vw, 178px);
  padding: clamp(18px, 1.7vw, 28px);
  display: flex;
  align-items: flex-start;
}
.work-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.42rem, 1.85vw, 2.28rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.035em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

/* About */
.about-profile-layout {
  padding: clamp(42px, 5vw, 92px) 0 clamp(70px, 8vw, 128px);
  display: grid;
  grid-template-columns: minmax(350px, clamp(420px, 31vw, 670px)) minmax(0, 1fr);
  align-items: start;
  gap: clamp(44px, 6vw, 116px);
}
.about-mobile-heading { display: none; }
.about-profile-image {
  position: sticky;
  top: clamp(96px, 8vw, 126px);
  margin: 0;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 48% 48% 18px 18px / 18% 18% 18px 18px;
  background: var(--surface-2);
  box-shadow: var(--shadow);
}
.about-profile-image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.about-profile-content { min-width: 0; padding-top: clamp(0px, 1.3vw, 18px); }
.about-profile-content h1,
.about-mobile-heading h1 {
  margin: 0 0 clamp(18px, 2vw, 30px);
  font-family: var(--serif);
  font-size: clamp(4.6rem, 7.7vw, 8.6rem);
  font-weight: 500;
  line-height: .8;
  letter-spacing: -.065em;
}
.about-profile-intro {
  max-width: 760px;
  margin: 0;
  color: var(--accent-deep);
  font-family: var(--serif);
  font-size: clamp(1.28rem, 1.75vw, 1.95rem);
  line-height: 1.35;
}
.about-biography {
  max-width: 900px;
  margin-top: clamp(32px, 4vw, 58px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.eyebrow {
  color: var(--accent-deep);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.about-biography-copy { margin-top: 17px; }
.about-biography-copy p {
  margin: 0 0 1.05em;
  color: var(--muted);
  font-size: clamp(.98rem, .9vw, 1.08rem);
  line-height: 1.76;
}
.about-gallery-section { padding: 0 0 clamp(80px, 8vw, 132px); }
.about-gallery-heading {
  margin-bottom: clamp(12px, 1.5vw, 22px);
  padding-top: clamp(28px, 4vw, 54px);
  border-top: 1px solid var(--line);
}
.about-gallery-heading h2 {
  margin: 0;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.8vw, 5.5rem);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.05em;
}
.editorial-gallery.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 8px;
  grid-auto-flow: dense;
  gap: 6px;
  align-items: start;
}
.editorial-gallery.about-gallery-grid figure {
  min-width: 0;
  width: 100%;
  margin: 0;
  grid-column: auto !important;
  overflow: hidden;
  background: var(--surface-2);
}
.editorial-gallery.about-gallery-grid img {
  width: 100%;
  height: auto;
  transition: transform .55s var(--ease);
}
.editorial-gallery.about-gallery-grid figure:hover img { transform: scale(1.012); }

/* Fixed page shortcuts on all category pages */
.floating-page-nav {
  position: fixed;
  z-index: 85;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(18px, calc(env(safe-area-inset-bottom) + 18px));
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.floating-page-action {
  width: clamp(46px, 3.2vw, 54px);
  height: clamp(46px, 3.2vw, 54px);
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 50%;
  background: rgba(21,20,18,.91);
  color: white;
  box-shadow: 0 10px 28px rgba(21,20,18,.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: transform .25s var(--ease), background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.floating-page-action svg {
  width: clamp(19px, 1.45vw, 23px);
  height: clamp(19px, 1.45vw, 23px);
  stroke-width: 1.85;
}
.floating-page-action:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 4px;
}
@media (hover: hover) {
  .floating-page-action:hover {
    transform: translateY(-2px);
    border-color: var(--ink);
    background: var(--surface);
    color: var(--ink);
    box-shadow: 0 14px 34px rgba(21,20,18,.27);
  }
}

/* Minimal footer */
.site-footer.minimal-footer { margin-top: 0; background: var(--ink); color: white; }
.minimal-footer-shell {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.minimal-home-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.55);
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
  font-weight: 700;
  transition: gap .2s ease, opacity .2s ease;
}
.minimal-home-button:hover { gap: 15px; opacity: .75; }

/* Reveal animation: only below-the-fold elements use this class. */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease var(--delay, 0ms), transform .65s var(--ease) var(--delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Large desktop / 2K / 4K */
@media (min-width: 1500px) {
  .work-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Compact laptop and tablet landscape */
@media (max-width: 1099px) {
  .home-showcase-header-shell {
    grid-template-columns: minmax(205px, 1fr) auto minmax(170px, 1fr);
    gap: 14px;
  }
  .home-showcase-role { font-size: .64rem; letter-spacing: .045em; }
  .home-portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 12px;
  }
  .home-portfolio-grid .index-card[class*="card-"] { grid-column: auto; grid-row: auto; aspect-ratio: 4 / 3; }
  .home-portfolio-grid .card-about,
  .home-portfolio-grid .card-camera { aspect-ratio: 4 / 5; }
  .home-portfolio-grid .index-copy strong,
  .home-portfolio-grid .card-languages .index-copy strong { font-size: clamp(2.2rem, 6vw, 3.65rem); }
  .category-heading { width: min(720px, 72%); }
  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-profile-layout { grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr); gap: clamp(34px, 5vw, 64px); }
  .editorial-gallery.about-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .editorial-gallery.about-gallery-grid figure { grid-column: auto; }
}

/* Tablet portrait and phones */
@media (max-width: 767px) {
  :root { --gutter: clamp(10px, 3.6vw, 18px); }
  .home-showcase-header-shell {
    min-height: 96px;
    padding: 9px 0;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "role role";
    row-gap: 7px;
  }
  .home-showcase-brand { grid-area: brand; min-width: 0; }
  .home-showcase-role {
    grid-area: role;
    max-width: calc(100vw - 28px);
    justify-self: center;
    font-size: clamp(.58rem, 2.55vw, .68rem);
    letter-spacing: .042em;
    white-space: normal;
  }
  .home-showcase-actions { grid-area: actions; gap: 5px; }
  .home-showcase-avatar { width: 40px; height: 40px; flex-basis: 40px; }
  .home-showcase-brand strong { overflow: hidden; text-overflow: ellipsis; font-size: 1.08rem; }
  .home-showcase-icon,
  .menu-button { width: 37px; height: 37px; flex-basis: 37px; }

  .home-portfolio-index { padding-top: 12px; }
  .home-portfolio-grid { grid-template-columns: 1fr; gap: 12px; }
  .home-portfolio-grid .index-card[class*="card-"] {
    width: 100%;
    aspect-ratio: 4 / 5;
    grid-column: 1;
    grid-row: auto;
  }
  .home-portfolio-grid .index-copy {
    left: clamp(18px, 5vw, 24px);
    right: 66px;
    bottom: clamp(18px, 5vw, 24px);
  }
  .home-portfolio-grid .index-copy strong,
  .home-portfolio-grid .card-languages .index-copy strong {
    font-size: clamp(2.2rem, 10.2vw, 3.25rem);
  }
  .home-portfolio-grid .index-arrow {
    right: clamp(16px, 4.5vw, 21px);
    bottom: clamp(16px, 4.5vw, 21px);
    width: 42px;
    height: 42px;
  }
  .home-portfolio-grid .card-about img { object-position: 50% 32%; }
  .home-portfolio-grid .card-docs img { object-position: 50% 38%; }

  .category-masthead {
    min-height: clamp(520px, 125vw, 680px);
    margin: 18px 0 30px;
  }
  .category-overlay {
    background:
      linear-gradient(0deg, rgba(12,11,10,.89) 0%, rgba(12,11,10,.56) 48%, rgba(12,11,10,.08) 84%),
      linear-gradient(90deg, rgba(12,11,10,.2), transparent 62%);
  }
  .category-heading {
    width: auto;
    margin: clamp(20px, 5.6vw, 28px);
  }
  .category-heading h1,
  body[data-category="documentaries"] .category-heading h1,
  body[data-category="languages"] .category-heading h1 {
    margin-bottom: 13px;
    font-size: clamp(2.65rem, 12.7vw, 4.15rem);
    line-height: .88;
    letter-spacing: -.055em;
  }
  body[data-category="languages"] .category-heading h1 { max-width: 8.5ch; }
  .category-heading p {
    font-size: clamp(.98rem, 4.15vw, 1.18rem);
    line-height: 1.4;
  }

  .category-work-list { padding-bottom: 72px; }
  .work-grid { grid-template-columns: 1fr; gap: 14px; }
  .work-image { aspect-ratio: 16 / 10; }
  .work-copy { min-height: 0; padding: clamp(17px, 5vw, 23px); }
  .work-copy h3 { font-size: clamp(1.42rem, 6.4vw, 1.95rem); }

  .about-profile-layout {
    padding: 28px 0 72px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .about-mobile-heading { display: block; order: 1; }
  .about-mobile-heading h1 {
    margin: 0;
    font-size: clamp(3.6rem, 17vw, 5.8rem);
  }
  .about-profile-image {
    position: static;
    order: 2;
    width: min(100%, 560px);
    margin: 0 auto;
    aspect-ratio: 3 / 4;
  }
  .about-profile-content { order: 3; padding: 0; }
  .about-profile-content > h1 { display: none; }
  .about-profile-intro { font-size: clamp(1.18rem, 5.4vw, 1.42rem); }
  .about-biography { margin-top: 30px; }
  .about-biography-copy p { font-size: 1rem; line-height: 1.7; }
  .about-gallery-heading h2 {
    white-space: nowrap;
    font-size: clamp(1.35rem, 6.7vw, 2.85rem);
    letter-spacing: -.04em;
  }
  .editorial-gallery.about-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }
  .editorial-gallery.about-gallery-grid figure { grid-column: auto; }
  body[data-category="languages"] .category-masthead > img {
    object-fit: contain;
    object-position: center top;
    background: #07131f;
  }
  .minimal-footer-shell { min-height: 88px; justify-content: center; }
  .floating-page-nav {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(12px, calc(env(safe-area-inset-bottom) + 12px));
    gap: 8px;
  }
  .floating-page-action {
    width: 46px;
    height: 46px;
  }

}

@media (max-width: 559px) {
  .editorial-gallery.about-gallery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 359px) {
  :root { --gutter: 9px; }
  .home-showcase-avatar { width: 36px; height: 36px; flex-basis: 36px; }
  .home-showcase-brand { gap: 8px; }
  .home-showcase-brand strong { font-size: .98rem; }
  .home-showcase-icon,
  .menu-button { width: 34px; height: 34px; flex-basis: 34px; }
  .category-heading h1,
  body[data-category="documentaries"] .category-heading h1,
  body[data-category="languages"] .category-heading h1 { font-size: clamp(2.45rem, 12vw, 3.2rem); }
}

@media (hover: none) {
  .index-card:hover img,
  .work-card:hover .work-image img,
  .editorial-gallery.about-gallery-grid figure:hover img { transform: none; }
  .index-card:hover,
  .work-card:hover { transform: none; box-shadow: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
