@font-face {
  font-family: 'Candidalog BoldItalic';
  src: url('../fonts/Candidalog-Bolditalic.otf') format('opentype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Candidalog Italic';
  src: url('../fonts/Candidalog-Italic.otf') format('opentype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

 :root {
  --portfolio-baseline-offset: 41px;
  --text-vinzent-offset: -7px;
  --grid-margin-top: 149px;
  --grid-margin-side: 32px;
  --grid-columns: 5;
  --grid-gutter: 32px;
  --grid-row-height: 149px;
  --grid-row-gutter: 32px;
  --grid-line-color: rgba(77, 107, 255, 0.75);
  --grid-line-width: 1px;
  --page-bg: #ffffff;
  --text-color: #000000;
  /* Capped to 1920px by viewport-scale.js; below 1920px this equals 100vw. */
  --viewport-width: 100vw;
  --grid-row-step: calc(var(--grid-row-height) + var(--grid-row-gutter));
  --project-arrow-size: 88px;
}

html,
body {
  width: 100%;
  min-height: 100%;
  background: var(--page-bg);
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: "Helvetica Neue LT Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* Declared here (not :root) so it resolves against body's own
     --viewport-width, which viewport-scale.js overrides with the capped
     value above 1920px. Custom properties inherit their COMPUTED value, so
     declaring this at :root would freeze it to the real (uncapped) 100vw
     before the zoom-scaled body ever applies its cap, double-scaling
     anything positioned with it (e.g. .text-vinzent) on wide screens. */
  --grid-cell-width: calc((var(--viewport-width) - (2 * var(--grid-margin-side)) - ((var(--grid-columns) - 1) * var(--grid-gutter))) / var(--grid-columns));
}

.a0-page {
  position: relative;
  min-height: 100vh;
  background: var(--page-bg);
}

.layer {
  position: absolute;
  inset: 0;
}

/* z-index: auto (not 1) so .layer-projects does NOT create a stacking
   context. That lets the expanded .project-panel escape to the root
   stacking context and sit ABOVE the grid lines, while the collapsed
   summary bars (no z-index) stay BELOW them. */
.layer-projects {
  z-index: auto;
}

.layer-white-cover {
  z-index: 1;
  pointer-events: none;
}

.layer-grid {
  z-index: 2;
  pointer-events: none;
}

.layer-digital-bar {
  z-index: 4;
  pointer-events: none;
}

.layer-text {
  z-index: 5;
  pointer-events: none;
}

.layer-impressum-bar {
  z-index: 6;
  pointer-events: none;
}

.projects-stack {
  position: absolute;
  left: 0;
  top: calc((4 * var(--grid-row-height)) + (4 * var(--grid-row-gutter)) + var(--grid-margin-top));
  width: var(--viewport-width);
  display: flex;
  flex-direction: column;
  gap: var(--grid-row-gutter);
}

.project-dropdown {
  width: var(--viewport-width);
  min-height: var(--grid-row-height);
  margin: 0;
  padding: 0;
  border: 0;
  background: #d9d9d9;
  overflow: hidden;
}

.project-dropdown[open] {
  min-height: auto;
}

.project-summary {
  position: relative;
  display: block;
  width: 100%;
  height: var(--grid-row-height);
  margin: 0;
  padding: 0;
  list-style: none;
  cursor: pointer;
}

.project-summary::-webkit-details-marker {
  display: none;
}

.project-summary::marker {
  content: "";
}

.project-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.project-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(217, 217, 217, 0.12);
  pointer-events: none;
}

.project-dropdown:hover .project-bg-image,
.project-dropdown[open] .project-bg-image {
  opacity: 1;
}

/* Trimming the line box to cap/baseline means translateY(-50%) centres the
   VISIBLE capitals in the bar, not the font's em box (whose ascender and
   descender space is asymmetric, which is what made the text sit slightly
   high). Font-independent, so it holds for the webfont and any fallback. */
.project-text {
  position: absolute;
  top: 50%;
  left: var(--grid-margin-side);
  transform: translateY(-50%);
  text-box: trim-both cap alphabetic;
  color: #000000;
  font-family: "neue-haas-grotesk-display", "Helvetica Neue LT Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 50px;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.project-arrow {
  position: absolute;
  top: 50%;
  right: var(--grid-margin-side);
  transform: translateY(-50%);
  width: var(--project-arrow-size);
  height: var(--project-arrow-size);
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
}

.project-panel {
  position: relative;
  z-index: 3;
  width: 100%;
  height: auto;
  padding: 32px;
}

.project-content-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(4, auto);
  gap: 32px;
  width: 100%;
  height: auto;
}

.project-copy-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-copy-block:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.project-copy-block:nth-child(2) {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}

.project-copy-block:nth-child(3) {
  grid-column: 1 / 3;
  grid-row: 3 / 4;
}

.project-subheading {
  margin: 0;
  font-family: "neue-haas-grotesk-display", "Helvetica Neue LT Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: #000000;
}

.project-body-text {
  margin: 0;
  font-family: "neue-haas-grotesk-display", "Helvetica Neue LT Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  /* Line spacing tuned so exactly 6 lines fill one grid row (149px). */
  line-height: calc(var(--grid-row-height) / 6);
  font-weight: 400;
  color: #000000;
  text-align: left;
  word-spacing: 0;
  letter-spacing: 0;
  font-stretch: 100%;
  font-kerning: normal;
  font-feature-settings: "kern" 1;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  overflow-wrap: normal;
  word-break: normal;
  hyphenate-limit-chars: 10 4 4;
  -webkit-hyphenate-limit-before: 4;
  -webkit-hyphenate-limit-after: 4;
}

.project-content-image,
.project-content-video {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
}

.image-one {
  grid-column: 3 / 4;
  grid-row: 1;
}

.image-two {
  grid-column: 4 / 5;
  grid-row: 1;
}

.image-three {
  grid-column: 3 / 5;
  grid-row: 2;
}

.project-content-video {
  grid-column: 5 / 6;
  grid-row: 1;
}

/* Embedded video (e.g. YouTube iframe). Unlike an <img>/<video>, an <iframe>
   has no intrinsic aspect ratio, so the wrapper reserves a fixed 16:9 box
   and the iframe fills it absolutely. */
.project-content-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  grid-column: 3 / 6;
  grid-row: 1;
}

.project-content-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Project-A1 individual layout */
#projectA1Dropdown .project-content-grid {
  grid-template-rows: auto auto;
}

#projectA1Dropdown .project-copy-block:nth-child(1) {
  grid-column: 1 / 6;
  grid-row: 1;
}

#projectA1Dropdown .project-content-embed {
  grid-column: 1 / 6;
  grid-row: 2;
}

/* Project-A2 individual layout */
/* Same structure as A1: text full-width on row 1. Two postcard photos
   (portrait + landscape) sit side by side on row 2 instead of one embed. */
#projectA2Dropdown .project-content-grid {
  grid-template-rows: auto auto;
}

#projectA2Dropdown .project-copy-block:nth-child(1) {
  grid-column: 1 / 6;
  grid-row: 1;
}

#projectA2Dropdown .image-one {
  grid-column: 1 / 3;
  grid-row: 2;
  height: auto;
}

#projectA2Dropdown .image-two {
  grid-column: 3 / 6;
  grid-row: 2;
  height: auto;
}

/* A grid of many same-sized images (e.g. a stamp series) doesn't fit the
   outer 5-column system evenly, so it gets its own independent 3-column
   grid nested inside one cell of the outer grid. */
.project-stamp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.project-stamp-grid .project-content-image {
  width: 100%;
  height: auto;
}

/* Project-A3 individual layout */
/* Same structure as A1/A2: text full-width on row 1. The six watercolour
   stamp scans fill row 2 as a 3x2 grid. */
#projectA3Dropdown .project-content-grid {
  grid-template-rows: auto auto;
}

#projectA3Dropdown .project-copy-block:nth-child(1) {
  grid-column: 1 / 6;
  grid-row: 1;
}

#projectA3Dropdown .project-stamp-grid {
  grid-column: 1 / 6;
  grid-row: 2;
}

.project-cover-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 154px;
  background: #ffffff;
}

.top-margin-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--grid-margin-top);
  background: var(--page-bg);
}

.top-margin-line {
  position: fixed;
  top: var(--grid-margin-top);
  left: 0;
  right: 0;
  height: var(--grid-line-width);
  background: var(--grid-line-color);
  filter: blur(0.22px);
  opacity: 0.9;
}

.grid-surface {
  position: relative;
  margin-top: var(--grid-margin-top);
  min-height: 8000px;
  background-color: transparent;
  background-image:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent calc(var(--grid-row-height) - var(--grid-line-width)),
      color-mix(in srgb, var(--grid-line-color) 90%, transparent) calc(var(--grid-row-height) - var(--grid-line-width)),
      color-mix(in srgb, var(--grid-line-color) 90%, transparent) var(--grid-row-height),
      transparent var(--grid-row-height),
      transparent calc(var(--grid-row-height) + var(--grid-row-gutter) - var(--grid-line-width)),
      color-mix(in srgb, var(--grid-line-color) 90%, transparent) calc(var(--grid-row-height) + var(--grid-row-gutter) - var(--grid-line-width)),
      color-mix(in srgb, var(--grid-line-color) 90%, transparent) calc(var(--grid-row-height) + var(--grid-row-gutter))
    );
  background-size: 100% calc(var(--grid-row-height) + var(--grid-row-gutter));
  background-repeat: repeat-y;
}

.grid-columns {
  position: fixed;
  top: var(--grid-margin-top);
  left: var(--grid-margin-side);
  width: calc(var(--viewport-width) - (var(--grid-margin-side) * 2));
  height: calc(100vh - var(--grid-margin-top));
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), minmax(0, 1fr));
  column-gap: var(--grid-gutter);
}

.col-line {
  position: relative;
  height: 100vh;
}

.col-line::before,
.col-line::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100vh;
  width: var(--grid-line-width);
  background: var(--grid-line-color);
  filter: blur(0.22px);
  opacity: 0.9;
}

.col-line::before { left: 0; }
.col-line::after { right: 0; }

.digital-bar {
  position: absolute;
  left: 0;
  top: calc((3 * var(--grid-row-height)) + (3 * var(--grid-row-gutter)) + var(--grid-margin-top));
  width: var(--viewport-width);
  height: var(--grid-row-height);
  background: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.digital-bar.is-stuck {
  position: fixed;
  top: 0;
  left: 0;
}

.digital-bar-text {
  color: #ffffff;
  font-family: "neue-haas-grotesk-display", "Helvetica Neue LT Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
  padding-left: var(--grid-margin-side);
}

.text-vinzent,
.text-portfolio,
.text-2026 {
  position: absolute;
  pointer-events: none;
}

.text-vinzent {
  left: calc(var(--grid-margin-side) + (2 * (var(--grid-cell-width) + var(--grid-gutter))));
  top: calc(var(--grid-margin-top) + var(--text-vinzent-offset) + var(--grid-row-step));
  width: var(--grid-cell-width);
  color: var(--text-color);
  font-family: "neue-haas-grotesk-display", "Helvetica Neue LT Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 206px;
  line-height: 181px;
  letter-spacing: 0;
  white-space: nowrap;
}

.text-portfolio {
  left: var(--grid-margin-side);
  top: calc(var(--grid-row-height) - var(--portfolio-baseline-offset) + var(--grid-margin-top));
  width: var(--grid-cell-width);
  color: var(--text-color);
  font-family: "neue-haas-grotesk-display", "Helvetica Neue LT Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 50px;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
}

.text-2026 {
  right: var(--grid-margin-side);
  top: calc(var(--grid-row-height) - var(--portfolio-baseline-offset) + var(--grid-margin-top));
  width: var(--grid-cell-width);
  color: var(--text-color);
  font-family: "neue-haas-grotesk-display", "Helvetica Neue LT Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 50px;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.lightbox-trigger {
  cursor: pointer;
}

.media-lightbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--grid-overlay-height, 100%);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 48px;
}

.media-lightbox.is-open {
  display: flex;
}

.media-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.media-lightbox-dialog {
  position: relative;
  width: min(1100px, calc(var(--viewport-width) - 96px));
  max-height: calc(100vh - 96px);
  overflow: visible;
}

.media-lightbox-close {
  position: absolute;
  top: -40px;
  right: -4px;
  display: block;
  width: auto;
  height: auto;
  font-family: Arial, sans-serif;
  font-size: 36px;
  line-height: 1;
  color: #000000;
  cursor: pointer;
  z-index: 1;
  padding: 0;
  background: none;
  border: 0;
}

.media-lightbox-content {
  width: 100%;
  line-height: 0;
}

.media-lightbox-content img,
.media-lightbox-content video {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 96px);
  object-fit: contain;
  background: transparent;
}


.project-content-video {
  display: block;
}

.project-content-video[poster] {
  background-color: #d9d9d9;
}


.impressum-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--viewport-width);
  height: var(--grid-row-height);
  background: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px var(--grid-margin-side);
}

.impressum-bar-label {
  color: #ffffff;
  font-family: "neue-haas-grotesk-display", "Helvetica Neue LT Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
}

.impressum-bar-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  color: #ffffff;
  font-family: "neue-haas-grotesk-display", "Helvetica Neue LT Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.05;
  text-align: right;
  white-space: nowrap;
}


.text-vinzent-link {
  color: var(--text-color);
  text-decoration: none;
  pointer-events: auto;
  transition: font-weight 120ms ease;
}

.text-vinzent-link:hover {
  font-weight: 700;
}


.analog-grid-surface {
  opacity: 0;
}

.analog-grid-animation {
  position: absolute;
  top: var(--grid-margin-top);
  left: 0;
  width: var(--viewport-width);
  height: calc(100% - var(--grid-margin-top));
  pointer-events: none;
  z-index: 0;
}


.text-vinzent,
.text-vinzent-link,
.text-portfolio,
.text-2026 {
  color: #ffffff;
}


.top-margin-line {
  display: none;
}

.grid-columns {
  top: 0;
  height: 100vh;
}

.analog-grid-animation {
  top: 0;
  height: 100%;
}


.analog-grid-animation {
  will-change: top, transform;
  backface-visibility: hidden;
}


html, body {
  background: #000000;
}

.a0-page {
  background: #000000;
}

.grid-columns,
.top-margin-line,
.top-margin-mask,
.col-line,
.col-line::before,
.col-line::after,
.grid-surface {
  display: none !important;
}

.digital-bar {
  background: transparent;
  background-image: url('../images/ui/analog_bar.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  color: transparent;
}

.digital-bar-text {
  opacity: 1;
  color: #ffffff;
  position: relative;
  z-index: 1;
}


html, body {
  background: #000000 url('../images/ui/analog_background.jpg') center center / cover no-repeat fixed;
}

.a0-page {
  background: transparent;
}

.digital-bar-text {
  color: #000000;
}


.vinzent-grid-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--grid-overlay-height, 100%);
  pointer-events: none;
  z-index: 12;
  opacity: 0;
  --grid-col-width: calc((var(--viewport-width) - 192px) / 5);
  background-image:
    repeating-linear-gradient(
      to right,
      rgba(0, 102, 255, 0.9) 0,
      rgba(0, 102, 255, 0.9) 1px,
      transparent 1px,
      transparent calc(var(--grid-col-width) + 1px),
      rgba(0, 102, 255, 0.9) calc(var(--grid-col-width) + 1px),
      rgba(0, 102, 255, 0.9) calc(var(--grid-col-width) + 2px),
      transparent calc(var(--grid-col-width) + 2px),
      transparent calc(var(--grid-col-width) + 34px)
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(0, 102, 255, 0.9) 0,
      rgba(0, 102, 255, 0.9) 1px,
      transparent 1px,
      transparent 150px,
      rgba(0, 102, 255, 0.9) 150px,
      rgba(0, 102, 255, 0.9) 151px,
      transparent 151px,
      transparent 183px
    );
  background-size: calc(var(--grid-col-width) + 33px) 100%, 100% 182px;
  background-position: 32px 149px, 32px 149px;
  background-repeat: repeat, repeat;
  mask-image: radial-gradient(circle at var(--grid-origin-x, 50%) var(--grid-origin-y, 50%), rgba(0,0,0,1) 0, rgba(0,0,0,1) var(--grid-radius, 0px), rgba(0,0,0,0) calc(var(--grid-radius, 0px) + 1px));
  -webkit-mask-image: radial-gradient(circle at var(--grid-origin-x, 50%) var(--grid-origin-y, 50%), rgba(0,0,0,1) 0, rgba(0,0,0,1) var(--grid-radius, 0px), rgba(0,0,0,0) calc(var(--grid-radius, 0px) + 1px));
}


.b0-screen .portfolio-word,
.b0-screen .year-word,
.b0-screen .name-word,
.b0-screen .category-word,
.b0-screen .description-heading,
.b0-screen .project-description h3,
.b0-screen .project-description h4,
.b0-screen [data-role="portfolio"],
.b0-screen [data-role="year"],
.b0-screen [data-role="name"],
.b0-screen [data-role="category"] {
  font-family: 'Candidalog BoldItalic', serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
}

.b0-screen .project-label,
.b0-screen .project-title,
.b0-screen .project-code,
.b0-screen .description-text,
.b0-screen .project-description p,
.b0-screen .project-description li,
.b0-screen .imprint,
.b0-screen .imprint-text,
.b0-screen [data-role="project-label"],
.b0-screen [data-role="description"],
.b0-screen [data-role="imprint"] {
  font-family: 'Candidalog Italic', serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
}


.text-portfolio,
.text-2026,
.text-vinzent,
.digital-bar-text,
.project-subheading {
  font-family: 'Candidalog Italic', serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
}

.project-text,
.project-body-text,
.impressum-bar-label,
.impressum-bar-text {
  font-family: 'Candidalog Italic', serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
}


.text-vinzent {
  font-kerning: normal;
  font-feature-settings: 'kern' 1;
  letter-spacing: -0.02em;
}






/* ---------------------------------------------------------------------
   MOBILE (phones)

   Mirrors the mobile block in a0-grid.css: the fixed 1920px / 5-column
   canvas cannot reflow onto a ~390px screen, so the rhythm variables
   shrink and the project panels collapse to a single stack. b0-specific
   extras: the stamp grid drops from 3 columns to 2, and the impressum
   text is allowed to wrap.
   --------------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --grid-margin-top: 72px;
    --grid-margin-side: 16px;
    --grid-columns: 2;
    --grid-gutter: 16px;
    --grid-row-height: 72px;
    --grid-row-gutter: 16px;
    --project-arrow-size: 28px;
  }

  /* The markup ships 5 column-line elements for the 5-column desktop grid;
     only the first 2 belong to the narrowed mobile grid. */
  .col-line:nth-child(n + 3) {
    display: none;
  }

  .text-portfolio,
  .text-2026 {
    width: auto;
    font-size: 15px;
  }

  /* Anchored to the left margin instead of column 3, which is off-screen
     at this width. */
  .text-vinzent {
    left: var(--grid-margin-side);
    width: auto;
    font-size: 40px;
    line-height: 1.06;
  }

  .digital-bar-text {
    font-size: 19px;
  }

  .project-text {
    font-size: 17px;
  }

  .project-panel {
    padding: 16px;
  }

  /* Single-column stack. !important is needed to beat both the per-project
     #projectAn column/row placements and the inline width fitProjectTexts()
     writes on desktop. */
  .project-content-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    gap: 16px;
  }

  .project-content-grid > * {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    width: 100% !important;
  }

  /* Six stamps at 3-up would be ~85px wide on a phone; 2-up keeps them
     legible. The nested grid has its own gutter, independent of the outer one. */
  .project-stamp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .project-body-text {
    font-size: 15px;
    /* Desktop packs exactly 6 lines into one grid row; at this size that
       would be unreadably tight, so use a normal reading leading. */
    line-height: 1.45;
  }

  .impressum-bar {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px var(--grid-margin-side);
  }

  .impressum-bar-label {
    font-size: 19px;
  }

  .impressum-bar-text {
    align-items: flex-start;
    font-size: 12px;
    text-align: left;
    /* The address line is wider than a phone screen, so it has to wrap
       instead of running off the right edge. */
    white-space: normal;
  }

  /* Hover-only flourishes: pointless on touch and they would otherwise
     paint large fixed canvases over the layout. */
  .analog-grid-animation,
  .vinzent-grid-hover {
    display: none;
  }
}
