
/* ==================== GLOBAL ==================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'PPMori', sans-serif;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

body {
  background-color: #ffffff;
  color: #111;
  overflow-x: hidden;
  font-size: 16px;
}

/* ==================== DARK MODE ==================== */

body.dark-mode {
  background-color: #000;
  color: #fff;
}

body.dark-mode .hero-section h1 {
  color: #fff;
}

body.dark-mode .section-divider {
  border-color: #222;
}

body.dark-mode .info-col-title {
  color: #fff;
}

body.dark-mode .entry-label {
  color: #e0e0e0;
}

body.dark-mode .entry-desc {
  color: #999;
}

body.dark-mode .entry-year {
  color: #555;
}

body.dark-mode .entry-link {
  color: #ccc;
}

body.dark-mode .footer-left p,
body.dark-mode .footer-right a {
  color: #fff;
}

body.dark-mode .footer-line,
body.dark-mode .footer-line-mobile {
  background-color: #fff;
}

body.dark-mode .get-in-text-top,
body.dark-mode .get-in-text-bottom,
body.dark-mode .get-in-text-top-mobile,
body.dark-mode .get-in-text-bottom-mobile {
  color: #fff;
}

/* ==================== HERO ==================== */

.hero-section {
  padding: 2.5em 2.5em 3em;
}

.hero-section h1 {
  font-family: sans-serif;
  font-size: clamp(1.5em, 3vw, 2.75em);
  font-weight: normal;
  line-height: 1.18;
  color: #111;
  max-width: 100%;
}

.hero-section h1 em {
  font-style: italic;
  font-family: sans-serif;
}

/* ==================== DIVIDER ==================== */

.section-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0 2.5em 3.5em;
}

/* ==================== INFO GRID ==================== */

.info-section {
  padding: 0 2.5em 6em;
}

.info-grid {
  display: grid;
  grid-template-columns: 340px repeat(4, minmax(0, 256px));
  gap: 2.5em;
  align-items: start;
justify-content: space-between;
}

/* Photo */
.info-photo {
  width: 340px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: #e0e0e0;
  flex-shrink: 0;
}

.info-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Columns */
.info-col {
  display: flex;
  flex-direction: column;
}

.info-col-title {
  font-family: 'ABCDiatypeMono', monospace;
  font-size: 0.65em;
  font-weight: 400;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25em;
}

.info-col-title--spaced {
  margin-top: 2.5em;
}

/* Entries */
.info-entry {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  margin-bottom: 1.75em;
  text-decoration: none;
  color: inherit;
}

.info-entry:last-child {
  margin-bottom: 0;
}

.info-entry--link {
  transition: opacity 0.15s ease;
}

.info-entry--link:hover {
  opacity: 0.55;
}

.entry-label {
  font-family: 'ABCDiatypeMono', monospace;
  font-size: 0.9em;
  font-weight: 400;
  color: #111;
  line-height: 1.4;
}

.entry-desc {
  font-family: 'ABCDiatypeMono', monospace;
  font-size: 0.75em;
  font-weight: 300;
  font-style: italic;
  color: #444;
  line-height: 1.5;
}

.entry-desc--italic {
  font-style: italic;
}

.entry-year {
  font-family: 'ABCDiatypeMono', monospace;
  font-size: 0.6875em;
  font-weight: 300;
  color: #999;
  font-style: normal;
  line-height: 1.4;
}

.entry-link {
  font-family: 'ABCDiatypeMono', monospace;
  font-size: 0.75em;
  font-weight: 300;
  color: #333;
  text-decoration: underline;
  text-underline-offset: 2px;
  line-height: 1.8;
  transition: opacity 0.15s ease;
}

.entry-link:hover {
  opacity: 0.55;
}

/* ==================== FOOTER ==================== */

footer {
  position: relative;
  height: 200px;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  padding: 0 2.5em 1.875em;
}

.interactive-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

.footer-left p {
  color: #333;
  font-size: 0.875em;
  font-weight: normal;
  margin: 0;
  font-family: 'ABCDiatypeMono', monospace;
}

.footer-right {
  display: flex;
  gap: 1.5em;
}

.footer-right a {
  color: #333;
  text-decoration: none;
  font-size: 0.875em;
  font-weight: normal;
  transition: opacity 0.2s ease;
  font-family: 'ABCDiatypeMono', monospace;
}

.footer-right a:hover {
  opacity: 0.7;
}

.footer-center {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9375em;
  text-decoration: none;
  color: inherit;
  padding: 1.25em 0;
}

.footer-line {
  width: 31.25em;
  height: 0.3125em;
  background-color: #333;
  transition: all 0.2s ease;
}

.get-in-text-top,
.get-in-text-bottom {
  font-size: 4em;
  font-weight: normal;
  color: #333;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  line-height: 1.2;
  font-family: 'PPNeueMontreal', sans-serif;
  padding: 0.3125em 0;
}

.footer-center:hover .get-in-text-top,
.footer-center:hover .get-in-text-bottom {
  opacity: 1;
}

.footer-center:hover .footer-line {
  width: 32.5em;
}

.footer-center-mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.9375em;
  width: 100%;
  margin-bottom: 1.875em;
  text-decoration: none;
  color: #333;
}

.footer-line-mobile {
  width: 15.625em;
  height: 0.1875em;
  background-color: #333;
}

.get-in-text-top-mobile,
.get-in-text-bottom-mobile {
  font-size: 2.5em;
  font-weight: normal;
  color: #333;
  line-height: 1.2;
  font-family: 'PPNeueMontreal', sans-serif;
  padding: 0.3125em 0;
}

/* ==================== MOBILE ==================== */

@media (max-width: 1100px) {
  .info-grid {
    grid-template-columns: 260px repeat(4, minmax(0, 120px));
    gap: 1.75em;
  }

  .info-photo {
    width: 260px;
  }
}

@media (max-width: 900px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2em;
  }

  .info-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 2em 1.5em 2.5em;
  }

  .section-divider {
    margin: 0 1.5em 2.5em;
  }

  .info-section {
    padding: 0 1.5em 4em;
  }

  .info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2em;
  }

  .info-photo {
    grid-column: 1 / -1;
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  footer {
    padding: 0 1.5em 1.25em;
    height: 150px;
  }

  .footer-center {
    display: none !important;
  }

  .footer-center-mobile {
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 1.5em 1.25em 2em;
  }

  .section-divider {
    margin: 0 1.25em 2em;
  }

  .info-section {
    padding: 0 1.25em 3em;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 2.5em;
  }

  .info-photo {
    grid-column: 1;
    aspect-ratio: 3 / 4;
    max-width: 260px;
  }

  footer {
    height: auto;
    min-height: 15.625em;
    padding: 3.75em 1.25em 1.25em;
    display: block;
  }

  .interactive-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    justify-content: center;
    padding-top: 1.25em;
  }

  .footer-center {
    display: none;
  }

  .footer-center-mobile {
    display: flex;
    order: 1;
    margin-bottom: 2.5em;
  }

  .footer-left {
    order: 3;
  }

  .footer-right {
    order: 4;
    margin-top: 0.9375em;
    justify-content: center;
    gap: 1.875em;
  }

  .footer-left p,
  .footer-right a {
    font-size: 0.75em;
  }
}