/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
html,
body {
  width: 100%;
  height: 100%;
  font-family: Helvetica, Arial, sans-serif;
  background: white;
  color: black;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  width: 0;
  height: 0;
}

html.scroll-locked,
body.scroll-locked {
  overflow: hidden;
}

/* Top bar */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: black;
}

.top-bar-title {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 550;
  z-index: 10;
  text-transform: uppercase;
  color: black;
  pointer-events: none;
}

/* Navigation */
.nav {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

/* Project bottom nav (prev/next) */
.project-bottom-nav {
  position: sticky;
  left: 0;
  bottom: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  top: 50vh;
  transform: translateY(-50%);
  z-index: 10;
  opacity: 1;
  pointer-events: auto;
  margin: 40px 0 60px;
}

@media (max-width: 700px) {
  .project-bottom-nav {
    padding: 0 20px;
  }
}

.nav-single-right {
  justify-content: flex-end;
}

.nav-single-center {
  justify-content: center;
}

.nav-item {
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 550;
  color: inherit;
  text-decoration: none;
  line-height: 1;
  display: inline-block;
  padding: 12px 0;
  margin: -12px 0;

}

.project-bottom-nav .nav-item:hover,
.project-bottom-nav .nav-item:focus-visible {
  color: #0002ff;
}

.project-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.project-nav .nav-item:nth-child(1) {
  justify-self: start;
}

.project-nav .nav-item:nth-child(2) {
  justify-self: center;
  text-align: center;
}

.project-nav .nav-item:nth-child(3) {
  justify-self: end;
}

.project-nav .nav-item:only-child {
  grid-column: 2;
  justify-self: center;
  text-align: center;
}

.home-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
}

.home-nav .nav-item:nth-child(1) {
  justify-self: start;
}

.home-nav .nav-item:nth-child(2) {
  justify-self: center;
  text-align: center;
}

.home-nav .nav-item:nth-child(3) {
  justify-self: end;
}

/* Footer (shared) */
.footer {
  position: fixed;
  bottom: 20px;
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0.06em;
}

/* Footer Left */
.footer-left {
  left: 20px;
  text-align: left;
}

/* Footer Right */
.footer-right {
  right: 20px;
  text-align: right;
}

.footer-right .contact {
  margin-top: 4px;
}

.contact-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.contact-link:hover {
  color: #0002ff;
}

.contact-page {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-phone {
  font-size: 14px;
}
/* Hide default cursor */
html,
body {
  cursor: none !important;
}

html,
body,
*,
a,
button,
input,
textarea,
select,
.nav-item,
.dropdown-item {
  cursor: none !important;
}

*::before,
*::after {
  cursor: none !important;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 4;

  background: black;
  mix-blend-mode: normal; /* 👈 TRÈS IMPORTANT */
  color: black;
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-cursor::after {
  content: attr(data-label);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.custom-cursor.is-scroll {
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: white;
  mix-blend-mode: difference;
}

.custom-cursor.is-scroll::after {
  opacity: 1;
}

.custom-cursor.is-hero {
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: white;
  mix-blend-mode: normal;
}

.custom-cursor.is-hero::after {
  opacity: 1;
}

@media (max-width: 900px), (pointer: coarse) {
  html,
  body,
  *,
  a,
  button,
  input,
  textarea,
  select,
  .nav-item,
  .dropdown-item,
  *::before,
  *::after {
    cursor: auto !important;
  }

  .custom-cursor {
    display: none;
  }
}

body.hero-active .nav,
body.hero-active .statement,
body.hero-active .home-sketches,
body.hero-active .project-footer {
  opacity: 0;
}
.statement {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  font-size: clamp(10px, 3vw, 15px);
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  white-space: pre;

  color: black;
  z-index: 10;

  /* masque fermé par défaut */
  -webkit-mask-image: radial-gradient(
    circle 0px at 50% 50%,
    black 100%,
    transparent 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}



.work {
  position: relative;
  padding-bottom: 15px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 40px;

  display: flex;
  flex-direction: column;
  align-items: center;     /* 👈 centre horizontalement */
  gap: 6px;

  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
}

.work:hover .dropdown,
.dropdown:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}



.dropdown-item {
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 500;

  padding: 15px 0;
  color: inherit;
  text-decoration: none;
  display: block;
}


.dropdown {
  gap: 30px;
}

* {
  cursor: none !important;
}

.dropdown-item {
  color: black;
}

.dropdown-item:hover {
  color: #0002ff;
}


.hero-bg {
  position: fixed;
  inset: 0;
  z-index: 1;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;
  pointer-events: none;

  transform: scale(1.05);
  transition:
    opacity 0.5s ease,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-sketches {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 2;
  padding: 0 20px;
  width: max-content;
  max-width: calc(100% - 40px);
}

.home-sketches .sketch-item {
  display: inline-grid;
  place-items: center;
  position: relative;
}

.home-sketches img {
  height: 140px;
  width: auto;
  display: block;
}

.home-sketches .sketch-item img {
  grid-area: 1 / 1;
}

.home-sketches .sketch-base {
  z-index: 0;
  transition: opacity 0.25s ease;
}

.home-sketches .sketch-blue {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.home-sketches .sketch-item:hover .sketch-blue {
  opacity: 1;
}

.home-sketches .sketch-item:hover .sketch-base {
  opacity: 0;
}

.home-sketches .sketch-hotspot {
  position: absolute;
  display: block;
  width: 60px;
  height: 120px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  z-index: 2;
  text-decoration: none;
}

.home-sketches .sketch-hotspot-clivet {
  transform: translate(-50%, -50%) rotate(90deg);
}


.project-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  z-index: 0;
  background-image: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transform-origin: center;
}

.project-drama {
  position: fixed;
  inset: 0;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  z-index: 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.project-drama.is-hidden {
  opacity: 0;
}

.project-nacelle .project-hero,
.project-nacelle .project-drama {
  background-position: center;
  background-size: auto 100%;
}

.project-midea .project-hero,
.project-midea .project-drama {
  background-position: center;
  background-size: auto 100%;
}

.project-carel .project-hero,
.project-carel .project-drama {
  background-position: center top;
  background-size: auto 100%;
}

.project-xeno .project-hero,
.project-xeno .project-drama {
  background-position: right center;
  background-size: auto 100%;
}

.project-clivet .project-hero,
.project-clivet .project-drama {
  background-position: right center;
  background-size: auto 100%;
}

.project-hf .project-hero,
.project-hf .project-drama {
  background-position: left center;
  background-size: auto 100%;
}

.project-title {
  padding: 40px 20px 0;
  font-size: clamp(38px, 8vw, 128px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 0.9;
  text-align: left;
}

.project-copy {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 20px 0;
  font-size: clamp(12px, 2vw, 16px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.project-copy-left,
.project-copy-right {
  width: min(520px, 48%);
}

.project-copy-left {
  text-align: left;
}

.project-copy-right {
  text-align: right;
}

.project-copy-right-end {
  align-self: flex-end;
}

.project-image {
  padding: 20px 20px 0;
}

.project-image img {
  display: block;
  width: 100%;
  height: auto;
}

.project-subtitle {
  margin-top: 20px;
  padding: 0 20px;
  font-size: clamp(26px, 6vw, 52px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 650;
  text-align: right;
}

.project-subtitle-spaced {
  margin-top: 300px;
}

.project-subtitle-left {
  text-align: left;
}

.project-subtitle-after-media {
  margin-top: 300px;
}

.project-subtitle-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 20px 0;
}

.project-subtitle-row .project-subtitle {
  margin-top: 0;
}

.project-subtitle-item {
  width: min(520px, 48%);
}

.project-subtitle-drop {
  margin-top: 60px;
}

.carel-subtitles {
  display: flex;
  flex-direction: column;
  gap: 55px;
  margin-top: 10px;
}

.carel-subtitle {
  margin-top: 0;
  white-space: nowrap;
}

.carel-subtitle-left {
  text-align: left;
  padding-left: 20px;
  padding-right: 0;
}

.carel-subtitle-right {
  text-align: right;
  padding-left: 0;
  padding-right: 20px;
}

.carel-image-after-subtitles {
  padding-top: 10px;
}

.project-note-after-subtitle {
  margin-top: 40px;
  padding-top: 0;
}

.project-note-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-note-left {
  margin-left: 20px;
}

.project-note-left-tight {
  margin-left: 0;
}

.project-note-align-bottom {
  align-self: flex-end;
}

.project-note-after-image {
  margin-top: 20px;
}

.project-note-after-story {
  margin-top: 200px;
}

.project-image-spaced {
  padding-top: 300px;
}

.project-image-tight {
  padding-top: 20px;
}

.project-image-before-footer {
  padding-bottom: 60px;
}

.project-image-split {
  display: flex;
  gap: 20px;
  padding: 20px 20px 0;
}

.project-image-split img {
  display: block;
  width: calc(50% - 10px);
  height: auto;
}

.project-image-step {
  padding: 20px 20px 0;
}

.project-image-step img {
  display: block;
  width: calc(50% - 10px);
  height: auto;
}

.project-image-step.step-right img {
  margin-left: auto;
}

.project-image-step.step-left img {
  margin-right: auto;
}

.project-note-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 20px 0;
  font-size: clamp(12px, 2vw, 16px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.project-note-row-tight {
  padding-top: 20px;
}

.project-note-pair {
  padding-top: 0;
}

.project-note-with-image {
  align-items: flex-end;
  gap: 20px;
  padding-top: 20px;
}

.project-note-image-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding: 0 20px;
  font-size: clamp(12px, 2vw, 16px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.project-note-image-left {
  flex: 0 0 calc(50% - 10px);
}

.project-note-image-left img {
  display: block;
  width: 100%;
  height: auto;
}

.project-note {
  width: min(520px, 48%);
  text-align: left;
}

.project-note-right {
  width: min(560px, 52%);
  text-align: right;
  margin-left: auto;
  margin-right: 20px;
}

.project-note-right-tight {
  margin-right: 0;
}

.project-note-right-edge {
  margin-right: 0;
}

.project-note-figure {
  width: calc(50% - 10px);
  flex: 0 0 auto;
  margin-left: auto;
}

.project-note-stack-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  padding: 20px 20px 0;
}

.project-image-half {
  padding: 20px 20px 0;
}

.project-image-half img {
  display: block;
  width: calc(50% - 10px);
  height: auto;
}

.project-image-half-left img {
  margin-right: auto;
}

.project-image-half-right img {
  margin-left: auto;
}

.project-two-column-bottom {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding: 20px 20px 0 0;
}

.project-image-column-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc(50% - 10px);
  margin-left: auto;
}

.project-image-column-right img {
  display: block;
  width: 100%;
  height: auto;
}

.project-note-with-image .project-note {
  flex: 0 0 auto;
  width: min(520px, 48%);
  margin-top: 8px;
}

.project-note-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.project-after-text {
  padding-top: 40px;
}

.project-after-notes {
  padding-top: 40px;
}

.project-stack-end {
  padding-bottom: 40px;
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 20px;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 550;
  text-transform: uppercase;
}

.project-footer:not(.project-footer-fixed) {
  padding-bottom: 20px;
  margin-top: 200px;
}

.project-footer-item {
  flex: 1;
}

.project-footer-left {
  text-align: left;
}

.project-footer-center {
  text-align: center;
}

.project-footer-right {
  text-align: right;
}

.project-footer-fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
}

.project-footer-home {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  margin: 0;
  padding: 0 20px 20px;
}

.project-footer-home-line {
  flex: 0 0 auto;
  display: block;
  width: max-content;
  margin: 0 auto;
  white-space: nowrap;
  text-align: center;
  letter-spacing: 0;
  font-size: 12px;
  line-height: 1;
}

.project-page .project-footer:not(.project-footer-fixed) {
  margin-top: 100vh;
  margin-top: 100svh;
  margin-top: 100dvh;
}

.about-page {
  padding: 20px 20px 40px;
  font-size: clamp(12px, 2vw, 16px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  --about-gap: 40px;
  --about-header-gap: 20px;
  --about-grid-extra: 20px;
  --about-lang-extra: -130px;
}

.about-body {
  overflow: hidden;
}

.about-header {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--about-header-gap);
  align-items: start;
}

.about-photo {
  grid-column: 1;
  align-self: start;
}

.about-photo img {
  display: block;
  height: 300px;
  width: auto;
  max-width: 100%;
  margin-left: 0;
}

.about-intro-col {
  display: flex;
  flex-direction: column;
  align-self: start;
  height: 300px;
  margin-top: 0;
}

.about-intro-col-1 {
  grid-column: 2;
}

.about-intro-col-2 {
  grid-column: 3;
}

.about-intro-text {
  text-align: left;
  margin: 0;
  width: 100%;
  max-width: 300px;
}

.about-intro-col .about-intro-text + .about-intro-text {
  margin-top: auto;
}


.about-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--about-gap);
  margin-top: 60px;
  margin-left: 0;
  width: 100%;
}

.about-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.about-title {
  font-weight: 700;
  margin-bottom: 16px;
  text-align: left;
  margin-top: var(--about-title-shift, 0px);
}

.about-block + .about-block {
  margin-top: 22px;
}

.about-block {
  text-align: left;
  margin-top: 5px;
}

.about-nowrap {
  white-space: nowrap;
}

.about-col-languages {
  grid-column: 4;
  grid-row: 2;
  margin-top: var(--about-lang-shift, 0px);
}


/* état actif */
.hero-bg.is-visible {
  opacity: 1;
  transform: scale(1);
}

.bg-preview {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;

  opacity: 0;
  transform: scale(1);
  transition: opacity 0.6s ease, transform 0.9s ease;

  pointer-events: none;
}

.bg-preview.is-visible {
  opacity: 1;
  transform: scale(1.6);
}

/* Work page */
.work-page {
  height: 100vh;
  overflow: hidden;
  position: relative;
  background: white;
  transition: background-color 0.2s ease;
}

.work-main {
  height: 100vh;
  padding: 10vh 20px 20vh;
  position: relative;
  z-index: 2;
}

.work-list {
  max-width: 420px;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(8px, 1vh, 12px);
  width: -moz-fit-content;
  width: fit-content;
  --work-text-width: clamp(160px, 22vh, 240px);
  --work-sketch-width: clamp(180px, 26vh, 340px);
  --work-sketch-width-65: clamp(117px, 16.9vh, 221px);
  --work-gap: 16px;
}

.work-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--work-gap);
  text-decoration: none;
  color: inherit;
  width: -moz-fit-content;
  width: fit-content;
}

.work-text {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 0.6vh, 6px);
  width: var(--work-text-width);
}

.work-title {
  font-size: clamp(14px, 2.6vh, 34px);
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

.work-subtitle {
  font-size: clamp(10px, 1.4vh, 16px);
  letter-spacing: 0.06em;
  font-weight: 550;
  text-transform: uppercase;
  white-space: nowrap;
}

.work-sketch {
  width: var(--work-sketch-width);
  height: clamp(48px, 8vh, 120px);
  object-fit: contain;
  display: block;
  margin-left: auto;
}

.work-divider {
  height: 1px;
  background: black;
  width: calc(var(--work-text-width) + var(--work-gap) + var(--work-sketch-width-65));
  opacity: 0.6;
}

.work-drama-bg {
  position: fixed;
  inset: 0;
  background-color: black;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

.work-drama-bg.is-visible {
  opacity: 1;
}

.work-drama-black {
  position: fixed;
  inset: 0;
  background: black;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.work-drama-black.is-visible {
  opacity: 1;
}

.work-page .nav,
.work-page .top-bar {
  position: relative;
  z-index: 20;
}

.work-page .project-footer.project-footer-fixed {
  z-index: 20;
}

.work-page .nav,
.work-page .nav .nav-item {
  pointer-events: auto;
}

.work-page.work-drama-active {
  color: white;
  background: black;
}

.work-page.work-drama-active .nav-item {
  color: white !important;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.work-page.work-drama-active .work-divider {
  background: white;
}

.work-page.work-drama-active .work-title,
.work-page.work-drama-active .work-subtitle {
  color: white;
}

.work-item.is-active .work-title,
.work-item.is-active .work-subtitle {
  color: #0002ff;
}

@media (max-width: 700px) {
  .project-carel .project-hero,
  .project-carel .project-drama {
    background-position: 16.6667% center;
  }

  .work-main {
    padding: 5vh 20px 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .work-list {
    max-width: 420px;
    width: 100%;
    height: auto;
  }
}

.nav,
.footer,
.statement {
  z-index: 10;
}

@media (max-width: 700px) {
  .project-copy,
  .project-note-row,
  .project-note,
  .project-note-right,
  .project-note-image-row,
  .project-note-stack-right,
  .project-note-with-image {
    font-size: 12px;
  }

  .project-footer.project-footer-fixed {
    bottom: 20px;
    padding-bottom: 0;
  }

  .project-footer.project-footer-fixed.project-footer-home {
    bottom: 0;
    padding-bottom: 20px;
  }

  .project-page .project-footer:not(.project-footer-fixed) {
    margin-top: 100px;
  }

  .about-body {
    overflow-y: auto;
  }

  .project-copy {
    flex-direction: column;
    gap: 20px;
  }

  .project-copy-left,
  .project-copy-right {
    width: 100%;
  }

  .project-copy-left {
    text-align: left;
  }

  .project-copy-right {
    text-align: left;
  }

  .project-copy-right-end {
    align-self: stretch;
  }

  .project-subtitle-row {
    flex-direction: column;
    gap: 20px;
  }

  .project-subtitle-item {
    width: 100%;
  }

  .project-subtitle-drop {
    margin-top: 0;
  }

  .project-note-row {
    flex-direction: column;
    gap: 20px;
  }

  .project-note,
  .project-note-right {
    width: 100%;
  }

  .project-note-left {
    margin-left: 0;
  }

  .project-note-right {
    text-align: right;
    margin-left: 0;
    margin-right: 0;
  }

  .project-page > .project-note,
  .project-page > .project-note-right,
  .project-page > .project-note-left {
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
  }

  .project-note-with-image,
  .project-note-image-row,
  .project-two-column-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .project-note-image-row .project-note,
  .project-note-image-row .project-note-right {
    order: 1;
  }

  .project-note-image-row .project-note-image-left {
    order: 2;
  }

  .project-two-column-bottom {
    padding: 20px 20px 0;
  }

  .project-image-column-right {
    width: 100%;
    margin-left: 0;
    align-items: flex-end;
  }

  .project-image-column-right img {
    width: calc(50% - 10px);
    margin-left: auto;
  }

  .about-photo img {
    width: 160px;
    height: auto;
  }

  .about-page {
    padding-top: 20px;
  }

  .about-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-photo,
  .about-intro-col,
  .about-intro-text {
    grid-column: auto;
  }

  .about-intro-col {
    height: auto;
    gap: 16px;
  }

  .about-intro-text {
    width: 100%;
    margin-top: 0;
  }

  .about-intro-col .about-intro-text + .about-intro-text {
    margin-top: 16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 60px;
    margin-left: 0;
    width: 100%;
  }

  .about-col-languages {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }

}
