:root {
  --bg: #ffffff;
  --fg: #111111;
  --font: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 7px;
  line-height: 1.35;
  letter-spacing: 0.1em;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: 100%;
  min-height: 100svh;
}

.desktop-menu {
  display: none;
}

.content-column {
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 9vh 0 14vh 5vw;
}

.image-placeholder {
  width: min(32vw, 520px);
  aspect-ratio: 0.72;
  background: #eeeeee;
}

.menu-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: block;
  width: 22px;
  height: 22px;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 2px;
  background: var(--fg);
  transform-origin: center;
}

.menu-button span:first-child {
  transform: rotate(0deg);
}

.menu-button span:last-child {
  transform: rotate(90deg);
}

body.menu-open .menu-button span:first-child {
  transform: rotate(45deg);
}

body.menu-open .menu-button span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  overflow-y: auto;
  background: var(--bg);
  padding: 16vh 7vw 14vh;
  text-align: left;
}

body.menu-open .mobile-menu {
  display: block;
}

.menu-group {
  margin-bottom: 24px;
}

.menu-group a,
.mobile-links a {
  display: block;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.menu-group a:first-child,
.mobile-links a:nth-child(1),
.mobile-links a:nth-child(7) {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.095em;
}

.mobile-links a {
  margin-bottom: 5px;
}

@media (max-width: 760px), (pointer: coarse) and (max-width: 1200px) {
  html,
  body {
    font-size: 10px;
    line-height: 1.28;
    letter-spacing: 0.055em;
  }

  .content-column {
    min-height: 100svh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10vh 0 14vh 9vw;
  }

  .image-placeholder {
    width: min(78vw, 560px);
    aspect-ratio: 0.72;
    background: #eeeeee;
  }

  .menu-button {
    right: 20px;
    bottom: 20px;
    width: 20px;
    height: 20px;
  }

  .menu-button span {
    top: 9px;
    width: 20px;
    height: 2px;
  }

  .mobile-menu {
    padding: 14vh 9vw 14vh;
    text-align: left;
  }

  .mobile-links a {
    margin-bottom: 8px;
  }
}

@media (min-width: 1600px) {
  html,
  body {
    font-size: 8px;
  }

  .image-placeholder {
    width: min(28vw, 560px);
  }
}
