@import url('https://fonts.googleapis.com/css2?family=Cute+Font&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Micro+5&display=swap');

/* Jump to sections 
  (Use Cmd+F and search for these codes):
  Browser Reset: BR01A2B3
  Themes / Color Palettes: TV12P3Q4
  Header / Navigation: HD12Y3Z4
  Footer: FT34A5B6
  Landing Page Styles: LG45C6D7
  Showreel Page Styles: SH89E0F1
  Work Page Styles: WK23G4H5
  About Page Styles: AB67I8J9
  WIP Page Styles: WP01K2L3
  Animations & Transitions: AT78N9O0
  Table Styles: TB89O0P1
  Mobile Styles: MB23Q4R5
*/

/* —————————————————————————————————————————————————————————————— */
/*   Browser Reseting CSS [BR01A2B3] */
/*   #region Browser Reset */

/* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 | Public Domain */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Box sizing reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* #endregion Browser Reset */
/* —————————————————————————————————————————————————————————————— */

/* —————————————————————————————————————————————————————————————— */
/*   Themes / Color Palettes [TV12P3Q4] */
/*   #region Themes / Color Palettes */
:root {
  /* Color Palette */
  --black: #000000;
  --baby-pink: #E9D8F2;
  --white: #FFFFFF;
  --pink: #e78fc1;
  --purple: #422433;
  --blue: #83BBE5;

  /* Font Families */
  --font-cute: 'Cute Font', sans-serif;
  --font-micro: 'Micro 5', sans-serif;

  /* Font Sizes */
  --font-menu: 40px;

  /* Typography */
  --h1-font-family: 'Cute Font', sans-serif;
  --h1-font-weight: 400;
  --h1-font-size: 250px;
  --h1-line-height: 115px;
  --h1-letter-spacing: -4%;

  --h2-font-family: 'Cute Font', sans-serif;
  --h2-font-weight: 400;
  --h2-font-size: 100px;
  --h2-line-height: 115px;
  --h2-letter-spacing: -4%;

  --h3-font-family: 'Cute Font', sans-serif;
  --h3-font-weight: 400;
  --h3-font-size: 75px;
  --h3-line-height: 40px;
  --h3-letter-spacing: -4%;

  --h4-font-family: 'Cute Font', sans-serif;
  --h4-font-weight: 400;
  --h4-font-size: 40px;
  --h4-line-height: 40px;
  --h4-letter-spacing: -4%;

  --h5-font-family: 'Micro 5', sans-serif;
  --h5-font-weight: 400;
  --h5-font-size: 30px;
  --h5-line-height: 40px;
  --h5-letter-spacing: -4%;

  --p-font-family: 'Micro 5', sans-serif;
  --p-font-weight: 400;
  --p-font-size: 30px;
  --p-line-height: 30px;
  --p-letter-spacing: -4%;

  /* Color */
  --color-text: var(--purple);
  --color-background: var(--pink);
  --color-background-secondary: var(--baby-pink);
  --color-primary: var(--pink);
  --color-secondary: ;
  --color-accent: var(--blue);
}

/*   #endregion Themes / Color Palettes */
/* —————————————————————————————————————————————————————————————— */

/* —————————————————————————————————————————————————————————————— */
/*   Base / Global Styles [BS56V7W8] */
/*   #region Base / Global Styles */

body.noScroll {
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  background-color: var(--color-background);
}

.container {
  flex: 0 0 auto;
  display: block;
  margin: 100px auto 0;
  width: calc(100% - 200px);
  max-width: 1240px;
  max-width: 1240px;
}

.landingContentBlock,
.showreelContentBlock,
.workContentBlock,
.aboutContentBlock,
.snapshotsContentBlock,
.aboutContentBlock {
  background-color: var(--color-background-secondary);
  height: calc(100vh - 100px);
}

/* Typography Styles */
h1 {
  font-family: var(--h1-font-family);
  font-weight: var(--h1-font-weight);
  font-size: var(--h1-font-size);
  line-height: var(--h1-line-height);
  letter-spacing: var(--h1-letter-spacing);
}

h2 {
  font-family: var(--h2-font-family);
  font-weight: var(--h2-font-weight);
  font-size: var(--h2-font-size);
  line-height: var(--h2-line-height);
  letter-spacing: var(--h2-letter-spacing);
}

h3 {
  font-family: var(--h3-font-family);
  font-weight: var(--h3-font-weight);
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
  letter-spacing: var(--h3-letter-spacing);
}

h4 {
  font-family: var(--h4-font-family);
  font-weight: var(--h4-font-weight);
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  letter-spacing: var(--h4-letter-spacing);
}

h5 {
  font-family: var(--h5-font-family);
  font-weight: var(--h5-font-weight);
  font-size: var(--h5-font-size);
  line-height: var(--h5-line-height);
  letter-spacing: var(--h5-letter-spacing);
}

p {
  font-family: var(--p-font-family);
  font-weight: var(--p-font-weight);
  font-size: var(--p-font-size);
  line-height: var(--p-line-height);
  letter-spacing: var(--p-letter-spacing);
}

/*   #endregion Base / Global Styles */
/* —————————————————————————————————————————————————————————————— */

/* —————————————————————————————————————————————————————————————— */
/*   Header / Navigation [HD12Y3Z4] */
/*   #region Header / Navigation */
.menu {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  /* distribute items evenly along the x-axis */
  gap: 0;
}

.menuBtn {
  background-color: var(--color-background-secondary);
  flex: 1 1 auto;
  height: 45px;
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--color-primary);
}

.menuBtn h4 {
  text-transform: uppercase;
}

.menuBtn h4:hover {
  color: var(--color-accent);
}

.menuBtn.unselcted {
  border-bottom: 7px solid var(--color-primary);
}

.closeBtn {
  position: fixed;
  top: 30px;
  width: calc(100% - 275px);
  z-index: 100;
  background: none;
  border: none;
  cursor: pointer;
  height: 45px;
  display: flex;
  align-items: end;
  flex-direction: column-reverse;
}

/*   #endregion Header / Navigation */
/* —————————————————————————————————————————————————————————————— */

/* —————————————————————————————————————————————————————————————— */
/*   Footer [FT34A5B6] */
/*   #region Footer */
/*   #endregion Footer */
/* —————————————————————————————————————————————————————————————— */

/* —————————————————————————————————————————————————————————————— */
/*   Animations & Transitions [AT78N9O0] */
/*   #region Animations & Transitions */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0%);
  }
}

/* Slide-down animation */
.slideDown {
  transform: translateY(-100%);
  animation: slideDown 0.8s ease-out forwards;
}

/*   #endregion Animations & Transitions */
/* —————————————————————————————————————————————————————————————— */

/* —————————————————————————————————————————————————————————————— */
/*   Landing Page Styles [LG45C6D7] */
/*   #region Landing Page Styles */
.landingContainer {
  margin: 100px auto 0;
  width: calc(100% - 200px);
  max-width: 1240px;
  max-width: 1240px;
  position: relative;
  display: flex;
  flex-direction: column-reverse;
}

.landingMenu {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.landingContentBlock {
  display: grid;
  grid-template-rows: 1fr auto;
  background-color: transparent;
  justify-items: end;
}

.landingTitle {
  width: fit-content;
  align-items: center;
}

.landingTitle img {
  width: 40vw;
}

/*   #endregion Landing Page Styles */
/* —————————————————————————————————————————————————————————————— */

/* —————————————————————————————————————————————————————————————— */
/*   Showreel Page Styles [SH89E0F1] */
/*   #region Showreel Page Styles */

.showreelContentBlock {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  place-items: center center;
  position: relative;
}

.showreelContentBlock iframe {
  grid-column: 1;
  grid-row: 1;
  margin: 0 50px;
  width: 100%;
  max-width: calc(100% - 100px);
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#showreelPaperClip {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  justify-self: left;
  align-self: center;
  height: 42px;
  z-index: 10;
  transform: translate(-10%, -200%);
}

/*   #endregion Showreel Page Styles */
/* —————————————————————————————————————————————————————————————— */

/* —————————————————————————————————————————————————————————————— */
/*   Work Page Styles [WK23G4H5] */
/*   #region Work Page Styles */
.workContentBlock {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  position: relative;
  padding: 40px;
  overflow: hidden;
  height: 100vh;
}

.project-stack {
  width: 80%;
  margin: 0 auto;
  position: relative;
  padding-bottom: -100px;
}

.project-card {
  display: block;
  text-decoration: none;
  background-color: var(--white);
  border: 3px solid var(--color-primary);
  border-radius: 15px;
  padding: 0 25px 45px 25px;
  margin-bottom: -455px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.project-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  align-items: start;
}

.project-left {
  padding-right: 20px;
}

.project-left h4 {
  margin-bottom: 20px;
  line-height: 35px;
  color: var(--color-text);
}

.project-left table {
  width: 100%;
  margin-top: 10px;
}

.project-left table td {
  padding: 4px 0;
  font-family: var(--font-micro);
  font-size: 26px;
  color: var(--color-text);
  line-height: 1;
}

.project-left table tr+tr {
  margin-top: -4px;
}

.project-left table td:first-child {
  width: 30%;
  font-weight: bold;
}

.project-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.project-card:hover {
  transform: translateY(0);
}

.project-card:hover~.project-card {
  transform: translateY(300px);
}

.project-card h2 {
  color: var(--color-primary);
  font-size: 75px;
  font-weight: bold;
  text-transform: uppercase;
}

.project-card p {
  color: var(--color-text);
}

.project-card:hover {
  transform: translateY(-2px);
}

.project-image {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.project-image1 {
  background-image: url('Assets/wrk/RLM.jpeg');
  background-size: cover;
  background-position: top;
  transform: rotate(-2deg);
}

.project-image2 {
  background-image: url('Assets/wrk/PortseaMews.png');
  background-size: cover;
  background-position: top;
  transform: rotate(2deg);
}

.project-image3 {
  background-image: url('Assets/wrk/SPManaged.png');
  background-size: cover;
  background-position: top;
  transform: rotate(-2deg);
}

.project-image4 {
  background-image: url('Assets/wrk/BTS.jpg');
  background-size: cover;
  background-position: top;
  transform: rotate(10deg) translate(-25px, 20px);
}

.project-card.empty {
  min-height: 800px;
}

.project-card.empty>* {
  opacity: 0;
}

/*   #endregion Work Page Styles */
/* —————————————————————————————————————————————————————————————— */

/* —————————————————————————————————————————————————————————————— */
/*   About Page Styles [AB67I8J9] */
/*   #region About Page Styles [AB67I8J9] */
.aboutContentBlock {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  position: relative;
  align-items: center;
  padding: 0 25px 0;
}

.aboutContentBlock .aboutBlurb {
  grid-area: 1 / 1 / 2 / 3;
  transform: rotate(-2deg) translate(30px, -83px);
}

.aboutContentBlock .CV {
  grid-area: 1 / 2 / 2 / 4;
  width: 90%;
  height: auto;
  transform: rotate(2.5deg) translate(5%, 20%);
}

#aboutPaperClipLeft {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  justify-self: left;
  align-self: center;
  z-index: 10;
  transform: rotate(2.5deg) translate(-20%, 275%);
}

#aboutPaperClipRight {
  grid-column: 3;
  grid-row: 1;
  position: relative;
  justify-self: right;
  align-self: center;
  transform: scaleX(-1) translate(-22%, -175%) rotate(15deg);
  z-index: 10;
}

/*   #endregion About Page Styles [AB67I8J9] */
/* —————————————————————————————————————————————————————————————— */

/* —————————————————————————————————————————————————————————————— */
/*   Snapshots Page Styles [WP01K2L3] */
/*   #region Snapshots Page Styles [WP01K2L3] */
.snapshotsContentBlock {
  position: relative;
  display: grid;
  padding: 40px 40px 20px 0px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 0.1fr 1fr 0.1fr 1fr 0.1fr;
  grid-column-gap: 20px;
  grid-row-gap: 40px;
}

.punchCard {
  position: relative;
  display: grid;
  grid-template-rows: 2(1fr);
  row-gap: 20px;
  justify-items: right;
  align-items: start;
  padding: 15px;
  background-color: var(--color-background);
  border-radius: 10px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

a.punchCard {
  display: grid;
  text-decoration: none;
  color: inherit;
}

.punchCard:hover {
  background-color: var(--color-accent);
}

.punchCard:hover h3 {
  color: var(--color-accent);
}

.punchCard1 {
  grid-area: 2 / 1 / 4 / 2;
  transform: translate(25%, 0);
}

.punchCard2 {
  grid-area: 1 / 3 / 3 / 5;
}

.punchCard3 {
  grid-area: 4 / 2 / 6 / 3;
  transform: translate(-10%, 0);
}

.punchCard4 {
  grid-area: 3 / 4 / 5 / 5;
  transform: translate(-50%, 0);
}

.snapshotsIMG {
  background-color: var(--purple);
  height: 200%;
  width: 100%;
  border-radius: 10px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.LTPhero {
  background-image: url('Assets/snap/LTP/Pot.jpg');
}

.FThero {
  background-image: url('Assets/snap/FT/FT\ Title.png');
  background-size: contain;
  background-color: #ffffff;
}

.ICIShero {
  background-image: url('Assets/snap/ICIS/ICIS\ Title.png');
  background-color: #cbcbcb;
  background-size: contain;
}

.DFhero {
  background-image: url('Assets/snap/DF/factory.jpeg');
  grid-row: 2;
  justify-self: end;
  align-self: end;
  transform: translate(0px, 10px);
}

#Tape1 {
  position: absolute;
  top: -2.5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

#Tape2a {
  position: absolute;
  top: 50%;
  left: -1.5%;
  transform: translateY(-50%) scale(0.8);
  z-index: 10;
}

#Tape2b {
  position: absolute;
  top: 50%;
  right: -1.5%;
  transform: translateY(-50%) scale(0.8);
  z-index: 10;
}

#Tape3 {
  position: absolute;
  top: -2.5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

#Tape4a {
  position: absolute;
  transform: rotate(-15deg);
  top: 0;
  left: -10%;
  z-index: 10;
}

#Tape4b {
  position: absolute;
  transform: rotate(15deg);
  top: 0;
  right: -10%;
  z-index: 10;
}

.snapshotsTextBox {
  justify-self: end;
  align-self: end;
  text-align: end;
}

.snapshotsTextBox1 {
  transform: translate(-20px, 0)
}

.snapshotsTextBox2 {
  transform: translate(-20px, 0)
}

.snapshotsTextBox3 {
  transform: translate(-20px, 0)
}

.snapshotsTextBox4 {
  transform: translate(-20px, 10px);
  align-self: start;
}

.textbg {
  padding: 5px 0;
  /* top and bottom padding */
  color: var(--color-primary);
  line-height: 0.9;
  /* use this to create horizontal space between lines */
  display: inline;
  background-color: var(--white);
  box-shadow: 20px 0 0 0 rgb(255, 255, 255), -10px 0 0 0 rgb(255, 255, 255);
  /* left/right padding  (IE8 needs fallback) */
  left: 15px;
  /* match px of box-shadow above to align text */
  border-radius: 10px;
}

/*   #endregion Snapshots Page Styles [WP01K2L3] */
/* —————————————————————————————————————————————————————————————— */

/* —————————————————————————————————————————————————————————————— */
/*   Table Styles [TB89O0P1] */
/*   #region Table Styles */
table td {
  font-family: var(--font-micro);
  font-weight: var(--p-font-weight);
  font-size: var(--p-font-size);
  line-height: var(--p-line-height);
  letter-spacing: var(--p-letter-spacing);
}

/*   #endregion Table Styles */
/* —————————————————————————————————————————————————————————————— */

/* —————————————————————————————————————————————————————————————— */
/*   Mobile Styles [MB23Q4R5] */
/*   #region Mobile Styles */

/* --- Basic mobile-first overrides (phones ≤ 600px) --- */
@media (max-width: 600px) {

  /* Layout & spacing */
  body {
    background-color: var(--color-background);
  }

  .container,
  .landingContainer {
    position: fixed;
    /* align relative to viewport */
    top: 60px;
    /* 30px offset from top */
    right: 30px;
    /* 30px offset from right */
    bottom: 0;
    /* flush with bottom edge */
    left: 0;
    /* flush with left edge */

    width: auto;
    height: auto;
    margin: 0;

    display: grid;
    grid-template-columns: 1fr 56px;
    /* green area + blue rail */
    grid-template-rows: 1fr;
    gap: 0;
  }

  /* Type scale (smaller, consistent rhythm) */
  h1 {
    font-size: 64px;
    line-height: 1.0;
    letter-spacing: -1px;
  }

  h2 {
    font-size: 42px;
    line-height: 1.0;
    letter-spacing: -0.5px;
  }

  h3 {
    font-size: 32px;
    line-height: 1.05;
  }

  h4 {
    font-size: 24px;
    line-height: 1.1;
  }

  h5,
  p,
  table td {
    font-size: 18px;
    line-height: 1.35;
  }

  /* Navigation */
  .menu {
    display: flex;
    flex-direction: column;
    position: static;
    /* live inside the blue rail */
    top: auto;
    left: auto;
    bottom: auto;
    /* neutralize fixed values */
    grid-column: 2 / 3;
    /* right blue rail */
    grid-row: 1 / 2;
    width: 56px;
    height: 100%;
    justify-content: stretch;
    align-items: stretch;
  }

  .closeBtn {
    position: fixed;
    /* relative to the viewport */
    top: 10px;
    /* 15px from top of viewport */
    right: 30px;
    /* aligns with container's right offset */
    width: auto;
    /* shrink to content */
    height: 45px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }

  .closeBtn img {
    display: block;
    height: 100%;
    width: auto;
  }

  .menuBtn {
    background-color: var(--color-background-secondary);
    width: 100%;
    height: auto;
    flex: 1 1 0;
    /* each fills vertical space equally */
    clip-path: polygon(0% 0%, 100% 10%, 100% 90%, 0% 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--color-primary);
  }

  .menuBtn h4 {
    text-transform: uppercase;
    transform: rotate(90deg);
    transform-origin: center;
    white-space: nowrap;
  }

  /* Hide non-active menu items on interior pages (mobile only, but keep their space) */
  .container .menu .menuBtn.unselcted {
    visibility: hidden;
    /* keep space, hide visually */
    pointer-events: none;
    /* non-interactive */
  }

  .menu {
    background-color: transparent;
  }

  /* Landing */
  .landingContentBlock {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .landingTitle img {
    width: 65vw;
  }

  .landingMenu {
    position: static;
    /* participate in grid */
    grid-column: 1 / 2;
    /* BLUE rail first */
    grid-row: 1 / 2;
    width: 56px;
    height: 100%;
  }

  .landingContainer {
    grid-template-columns: 56px 1fr;
    /* BLUE (menu) | GREEN (content) */
  }

  /* Showreel */
  .showreelContentBlock {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    padding: 16px;
    height: 100%;
    width: 100%;
  }

  .showreelContentBlock iframe {
    margin: 0;
    width: 166%;
    max-width: 166%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    rotate: 89deg;
  }

  #showreelPaperClip {
    height: 32px;
    justify-self: right;
    rotate: 155deg;
    transform: translate(-10%, -200%);
  }

  /* Work */
  .workContentBlock {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    padding: 16px;
    height: 100%;
    overflow-y: auto;
    /* enable scrolling inside work area */
    -webkit-overflow-scrolling: touch;
    /* smooth momentum scroll on iOS */
  }

  .project-details {
    display: none;
  }

  .project-stack {
    --overlap: clamp(180px, 28vh, 340px);
    /* mobile stack reveal amount */
    width: 100%;
  }

  .project-card {
    margin: 0 0 calc(var(--overlap) * -1) 0;
    /* overlap only on mobile */
    padding: 16px;
  }

  .project-card:hover {
    transform: none;
  }

  .project-card:hover~.project-card {
    transform: none;
  }

  /* Scroll-activated stacking on mobile */
  .project-card.is-active~.project-card {
    transform: translateY(var(--overlap)) !important;
  }

  .project-card.is-active {
    transform: translateY(0);
  }

  .project-content {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .project-right {
    grid-row: 1;
  }

  .project-left {
    grid-row: 2;
  }

  .project-left {
    padding-right: 0;
  }

  .project-card h2 {
    font-size: 58px;
    margin-top: 0;
    line-height: 60px;
  }

  .project-left h4 {
    margin-bottom: 0;
    line-height: 20px;
  }

  .project-image {
    height: 200px;
  }

  .project-image1,
  .project-image2,
  .project-image3,
  .project-image4 {
    transform: none;
  }

  .project-card.empty {
    min-height: 350px;
  }

  /* About */
  .aboutContentBlock {
    grid-template-columns: 1fr;
    padding: 16px;
    align-items: start;
    height: 100%;
    min-height: 100%;
  }

  .aboutContentBlock .aboutBlurb,
  .aboutContentBlock .CV {
    grid-area: 1 / 1; /* stack both in the same grid cell */
    width: 100%;
  }

  .aboutContentBlock .aboutBlurb {
    z-index: 2;            /* underneath */
    transform: translateX(-6%);
    margin-top: 15%;
  }

  .aboutContentBlock .CV {
    z-index: 1;        
    width: 115%;  
    transform: rotate(-4deg) translate(-20%, 95%);
  }

  /* Ensure images inside <picture> scale within the stacked cell */
  .aboutContentBlock .aboutBlurb img,
  .aboutContentBlock .CV img {
    display: block;
    width: 100%;
    height: auto;
  }


  #aboutPaperClipLeft,
  #aboutPaperClipRight {
    grid-area: 1 / 1;
    z-index: 5;
  }

  #aboutPaperClipRight {
    align-self: flex-start;
    transform: scale(-0.5) translate(-77%, -350%) rotate(10deg);
  }

  #aboutPaperClipLeft {
    align-self: end;
    justify-self: right;
    transform: scale(0.5) rotate(145.5deg) translate(-122%, 60%);
  }
  /* Snapshots */
  .snapshotsContentBlock {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 16px;
    grid-row-gap: 16px;
    grid-column-gap: 0;
  }

  .punchCard,
  a.punchCard {
    grid-template-rows: auto;
  }

  .punchCard1,
  .punchCard2,
  .punchCard3,
  .punchCard4 {
    grid-area: auto;
    transform: none;
  }

  .snapshotsIMG {
    height: 200px;
  }

  #Tape1,
  #Tape2a,
  #Tape2b,
  #Tape3,
  #Tape4a,
  #Tape4b {
    display: none;
  }

  .snapshotsTextBox,
  .snapshotsTextBox1,
  .snapshotsTextBox2,
  .snapshotsTextBox3,
  .snapshotsTextBox4 {
    justify-self: start;
    align-self: start;
    text-align: left;
    transform: none;
  }

  /* Tables */
  table {
    width: 100%;
  }

  .project-left table td:first-child {
    width: 40%;
  }

  /* Utilities */
  .hide-on-mobile {
    display: none !important;
  }

  .touch-target {
    min-height: 44px;
  }
}

/* Respect reduced motion on mobile */
@media (max-width: 600px) and (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .slideDown {
    transform: none !important;
  }
}

/*   #endregion Mobile Styles */
/* —————————————————————————————————————————————————————————————— */


/* Pre tag styles */
pre {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 20px;
  background-color: var(--color-background-secondary);
  border: 2px solid var(--color-primary);
  border-radius: 10px;
  font-family: var(--font-micro);
  color: var(--color-text);
  z-index: 10;
}