/* Karolina Bengtsson. House-programme type, one serif, paper and ink. */

:root {
  --paper: #f4efe3;
  --ink: #16130e;
  --muted: #6a5340;
  --red: #c8102e;
  --leaf: #2f6b4f;
  --ochre: #c4842a;
  --rule: rgba(28, 25, 20, 0.16);
  --serif: "Source Serif 4", "Iowan Old Style", Palatino, Georgia, serif;
  --measure: 42rem;
  --page: 70rem;
  --gutter: clamp(1.15rem, 3.2vw, 2.25rem);
  --header-h: 2.7rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 3.2rem;
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .site-header {
    transition: none;
  }

  .lang-glider {
    transition: none;
  }

  #main {
    transition: none;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.125rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  background: #e4ddd0;
}

iframe {
  display: block;
  border: 0;
  width: 100%;
}

a {
  color: var(--red);
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--ink);
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

::selection {
  background: var(--red);
  color: var(--paper);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: var(--gutter);
  top: 0.6rem;
  z-index: 30;
  padding: 0.4rem 0.7rem;
  background: var(--paper);
  color: var(--red);
  transform: translateY(-180%);
}

.skip:focus {
  transform: none;
}

.wrap {
  width: min(100% - 2 * var(--gutter), var(--page));
  margin-inline: auto;
}

#main {
  transition: opacity 0.14s ease;
}

#main.is-lang-fading {
  opacity: 0.4;
}

.prose {
  max-width: var(--measure);
}

.label,
.bio-photo figcaption,
.season-photos figcaption,
.shots figcaption,
.film-grid figcaption,
.gallery-credit {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0;
  font-variant: normal;
  text-transform: none;
  color: var(--muted);
}

/* Masthead: the identity. Not sticky. */

.top-bar {
  height: 7px;
  background: var(--red);
}

.masthead {
  background: var(--paper);
}

.mast-inner {
  position: relative;
  padding-top: 1.5rem;
  padding-bottom: 0;
}

.mast-lang {
  position: absolute;
  top: 0.1rem;
  right: 0;
  z-index: 2;
}

@media (max-width: 560px) {
  .mast-inner {
    padding-top: 0.45rem;
  }

  .mast-lang {
    position: static;
    display: flex;
    justify-content: flex-end;
  }
}

.mast-kicker {
  margin: 0.25rem 0 0;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0;
  font-variant: normal;
  text-transform: none;
  color: var(--ochre);
}

.mast-name {
  margin: 0;
  text-align: center;
  font-size: clamp(2rem, 6vw, 4.4rem);
  font-weight: 700;
  letter-spacing: 0.012em;
  line-height: 0.92;
  text-transform: uppercase;
}

.mast-name span {
  display: block;
}

.mast-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.05rem 0;
  margin: 0.7rem 0 0;
  padding: 0.38rem 0 0.55rem;
  border-top: 1px solid var(--ink);
}

.mast-nav a {
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--ink);
  text-decoration: none;
  padding: 0.12rem 0.42rem;
  min-height: auto;
  display: inline-flex;
  align-items: baseline;
}

.mast-nav a:not(:last-child)::after {
  content: "·";
  margin-left: 0.42rem;
  color: var(--muted);
  font-weight: 400;
}

.mast-nav a:hover {
  color: var(--red);
  text-decoration: none;
}

.mast-rule {
  display: none;
}

@media (max-width: 520px) {
  .mast-nav {
    gap: 0.12rem 0.65rem;
    padding: 0.3rem 0 0.4rem;
  }

  .mast-nav a {
    font-size: 0.72rem;
    padding: 0.1rem 0.12rem;
    letter-spacing: 0.02em;
  }

  .mast-nav a:not(:last-child)::after {
    content: none;
  }
}

/* Slim sticky bar: appears after the masthead leaves. */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--paper);
  border-top: 2px solid var(--red);
  border-bottom: 1px solid var(--rule);
  transform: translateY(-110%);
  transition: transform 0.22s ease;
  pointer-events: none;
}

.site-header.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.header-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem 1rem;
  min-height: var(--header-h);
  padding-block: 0.15rem;
}

.brand {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.85rem;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.brand:hover {
  color: inherit;
}

.brand-name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-header .voice {
  display: none;
}

.voice {
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0;
  font-variant: normal;
  text-transform: none;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.85rem;
  margin-left: auto;
}

.nav a {
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  padding: 0.2rem 0;
  min-height: 0;
  display: inline-flex;
  align-items: center;
}

.nav a:hover {
  color: var(--red);
  text-decoration: none;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
}

.lang {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.lang-glider {
  position: absolute;
  left: 0;
  bottom: 0.32rem;
  width: 1.25rem;
  height: 1.5px;
  background: var(--red);
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
              width 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.lang button {
  appearance: none;
  border: 0;
  background: none;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  min-width: 1.85rem;
  min-height: 2.15rem;
  padding: 0 0.08rem;
  cursor: pointer;
}

.lang button + button::before {
  content: "·";
  color: var(--muted);
  font-weight: 400;
  margin-right: 0.35rem;
}

.lang button[aria-pressed="true"] {
  color: var(--ink);
  font-weight: 600;
}

.lang button:hover {
  color: var(--ink);
}

.menu-btn {
  display: none;
  appearance: none;
  border: 0;
  background: none;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  min-height: 2.15rem;
  min-width: auto;
  padding: 0 0.15rem;
  cursor: pointer;
}

.menu-btn:hover {
  color: var(--red);
}

.site-header .nav {
  display: flex;
}

.site-header .header-tools {
  margin-left: 0;
}

@media (max-width: 960px) {
  .header-bar {
    flex-wrap: wrap;
    min-height: 0;
    padding-block: 0.2rem;
  }

  .brand {
    flex: 1 1 auto;
  }

  .header-tools {
    margin-left: auto;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
  }

  .site-header .nav {
    display: none;
    flex: 1 1 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    margin: 0;
    padding: 0.2rem 0 0.65rem;
    border-top: 1px solid var(--rule);
    gap: 0;
  }

  .site-header .nav a {
    font-size: 1.02rem;
    letter-spacing: 0.01em;
    padding: 0.32rem 0;
    width: 100%;
  }

  .site-header .nav.is-open {
    display: flex;
  }
}

/* Opening: literary lead, then Fiordiligi, then the portrait. */

.opening {
  padding: 1.6rem 0 0.4rem;
}

.opening-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) minmax(0, 1.25fr);
  gap: 1.75rem 2.5rem;
  align-items: start;
}

.opening-copy {
  padding-bottom: 0.35rem;
}

.opening-lead {
  margin: 0 0 0.65rem;
  max-width: 24rem;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
}

.lead-red {
  color: var(--red);
}

.opening-role {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.02;
}

.opening-line {
  margin: 0.45rem 0 0;
  font-size: 1.08rem;
  line-height: 1.4;
  max-width: 24rem;
}

.opening-bio {
  margin: 1.1rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 24rem;
}

.pop-frame {
  position: relative;
  margin-right: 8px;
  margin-bottom: 8px;
}

.pop-frame::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  right: -7px;
  bottom: -7px;
  background: var(--red);
}

.pop-frame img {
  position: relative;
  width: 100%;
  height: auto;
  border: 3px solid var(--ink);
  background: #e4ddd0;
}

.opening-photo figcaption {
  margin-top: 0.7rem;
  color: var(--muted);
}

@media (max-width: 800px) {
  .opening {
    padding-top: 1.5rem;
  }

  .opening-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .pop-frame img {
    height: auto;
  }
}

/* Sections */

.section {
  padding: 2.4rem 0 0;
}

.section-head {
  margin: 0 0 1.1rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--ink);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: none;
}

/* News: splash plus briefs, like a paper. */

#news .section-head {
  border-top: 4px solid var(--red);
  padding-top: 0.55rem;
  margin-bottom: 0.85rem;
}

#news .section-head h2 {
  font-size: 1.2rem;
  font-weight: 600;
}

.news-list {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(15rem, 0.8fr);
  gap: 1.5rem 2.75rem;
  align-items: start;
}

.news-display {
  margin: 0 0 0.35rem;
  font-size: clamp(3.4rem, 9vw, 6.4rem);
  font-weight: 700;
  font-style: italic;
  line-height: 0.86;
  color: var(--red);
  letter-spacing: -0.03em;
}

.news-splash .news-date {
  margin: 0 0 0.45rem;
  color: var(--ochre);
  font-size: 1rem;
  font-style: italic;
}

.news-splash .news-flag {
  margin-left: 0.55rem;
  color: var(--red);
}

.news-splash h3 {
  margin: 0;
  max-width: 22rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.25;
}

.news-splash .body {
  margin: 0.7rem 0 0;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.65;
}

.news-briefs {
  padding-top: 0.15rem;
  border-left: 1px solid var(--ink);
  padding-left: 1.4rem;
}

.news-item {
  padding: 0.7rem 0;
  border-top: 1px solid var(--rule);
}

.news-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.news-item:last-child {
  padding-bottom: 0;
}

.news-item .news-date {
  margin: 0 0 0.15rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: italic;
}

.news-item h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.25;
}

.news-item .body {
  margin: 0.3rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink);
}

@media (max-width: 800px) {
  .news-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .news-briefs {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--ink);
    padding-top: 1rem;
  }
}

/* Biography */

.bio-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
}

.bio-copy p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.72;
  max-width: 38rem;
}

.dropcap::first-letter {
  float: left;
  font-family: var(--serif);
  font-size: 3.55em;
  font-weight: 700;
  line-height: 0.78;
  color: var(--red);
  padding: 0.12em 0.12em 0 0;
}

.bio-photo {
  margin: 1.5rem 0 0;
}

.bio-photo img {
  width: 100%;
  height: min(20rem, 48vw);
  object-fit: cover;
  object-position: 30% 18%;
}

.bio-photo figcaption {
  margin-top: 0.55rem;
  color: var(--muted);
}

.quote {
  margin: 1.5rem 0 0;
  max-width: 38rem;
  padding: 0 0 0 1.1rem;
  border-left: 3px solid var(--red);
}

.quote blockquote {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.4;
}

.quote figcaption {
  margin-top: 0.65rem;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--muted);
}

@media (max-width: 720px) {
  .bio-copy {
    grid-template-columns: 1fr;
  }
}

/* Chronology */

.year-block {
  display: grid;
  grid-template-columns: 9.5rem minmax(0, 1fr);
  gap: 0.4rem 2rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--rule);
}

.year-block:last-of-type {
  border-bottom: 1px solid var(--rule);
}

.year {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.15;
}

.year::after {
  content: ".";
  color: var(--red);
}

.year-entries {
  margin: 0;
  padding: 0;
  list-style: none;
}

.year-entries li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.15rem 1.25rem;
  padding: 0.22rem 0;
  font-size: 1rem;
  line-height: 1.5;
}

.year-entries .venue {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.88rem;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
}

.year-entries .hint {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
}

.year-entries .prize {
  color: var(--muted);
  font-style: italic;
  margin-right: 0.5rem;
}

@media (max-width: 640px) {
  .year-block {
    grid-template-columns: 1fr;
  }

  .year {
    margin-bottom: 0.35rem;
  }
}

/* Birgit Nilsson band: full-bleed ink, the memorable block. */

.stipend {
  margin-top: 2.4rem;
  padding: 2.1rem 0 2.3rem;
  background: var(--ink);
  color: var(--paper);
  border-top: 4px solid var(--red);
}

.stipend-title {
  margin: 0;
  max-width: 46rem;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
  text-transform: none;
}

.stipend-title span {
  display: block;
}

.stipend-body {
  margin: 1.55rem 0 0;
  max-width: 36rem;
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(243, 238, 228, 0.78);
}

/* Repertoire */

.rep-group {
  margin-top: 0.25rem;
}

.rep-group + .rep-group {
  margin-top: 2.25rem;
}

.rep-group h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  font-weight: 400;
}

.rep-cols {
  columns: 1;
  column-gap: 3rem;
}

@media (min-width: 800px) {
  .rep-cols {
    columns: 2;
  }
}

.rep {
  break-inside: avoid;
  border-top: 1px solid var(--rule);
}

.rep:last-child {
  border-bottom: 1px solid var(--rule);
}

.rep summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0;
  cursor: pointer;
  min-height: 44px;
}

.rep summary::-webkit-details-marker {
  display: none;
}

.rep .who {
  font-size: 1.02rem;
  line-height: 1.35;
}

.rep .work {
  font-style: italic;
  color: var(--muted);
}

.rep .work:first-child {
  color: var(--ink);
}

.rep-plus {
  flex: none;
  display: inline-block;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}

.rep[open] .rep-plus {
  color: var(--red);
  transform: rotate(45deg);
}

.rep-body {
  padding: 0 0 0.95rem;
}

.rep-meta {
  margin: 0 0 0.45rem;
  color: var(--muted);
}

.rep-row {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 0.2rem 0.85rem;
  margin: 0.15rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.rep-row .k {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.88rem;
  font-weight: 600;
  font-variant: small-caps;
  letter-spacing: 0.03em;
  text-transform: none;
  padding-top: 0.28rem;
}



.rep-foot {
  margin: 1.35rem 0 0;
  max-width: var(--measure);
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 420px) {
  .rep-row {
    grid-template-columns: 1fr;
  }
}

/* Season */

.season-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2rem 2.5rem;
  align-items: start;
}

.prod {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 0.25rem 1.25rem;
  padding: 0.65rem 0;
  border-top: 1px solid var(--rule);
}

.prod:last-of-type {
  border-bottom: 1px solid var(--rule);
}

.prod-dates {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.prod-title {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.25;
}

.prod-title em {
  font-style: italic;
}

.prod-role {
  margin-left: 0.65rem;
  font-size: 1rem;
  font-style: normal;
  color: var(--muted);
}

.prod-sub {
  margin: 0.25rem 0 0;
  font-size: 0.92rem;
  font-style: italic;
  color: var(--muted);
}

.prod-flag {
  margin-left: 0.55rem;
  color: var(--muted);
  font-style: italic;
  vertical-align: 0.05em;
}

.season-note {
  margin: 1.15rem 0 0;
  max-width: var(--measure);
  font-size: 0.95rem;
  color: var(--muted);
}

.season-photos figure {
  margin: 0;
}

.season-photos img.trio {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  object-position: 50% 22%;
}

.season-photos figcaption {
  margin-top: 0.5rem;
  color: var(--muted);
}

@media (max-width: 800px) {
  .season-grid {
    grid-template-columns: 1fr;
  }

  .season-photos {
    order: -1;
  }

  .season-photos img.trio {
    height: min(52vw, 18rem);
  }

  .prod {
    grid-template-columns: 1fr;
  }
}

/* Media */

.media-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
  align-items: start;
}

.media-copy h3 {
  margin: 0.15rem 0 0;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 400;
}

.media-meta {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.media-copy .body {
  margin: 0.85rem 0 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.65;
}

.embed {
  background: #ddd6c8;
}

.films {
  margin-top: 1.75rem;
}

.films h3 {
  margin: 0 0 0.85rem;
  font-size: 1.2rem;
  font-weight: 400;
}

.film-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem 2rem;
}

.film-grid figure {
  margin: 0;
}

.film-grid .embed {
  aspect-ratio: 16 / 9;
}

.film-grid iframe {
  height: 100%;
}

.film-grid figcaption {
  margin-top: 0.55rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}

.media-more {
  margin: 1.35rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 800px) {
  .media-top,
  .film-grid {
    grid-template-columns: 1fr;
  }
}

/* Gallery: two groups, slightly uneven columns. */

.gallery-group + .gallery-group {
  margin-top: 1.75rem;
}

.gallery-group h3 {
  margin: 0 0 0.9rem;
  font-size: 1.2rem;
  font-weight: 400;
}

.gallery-group:last-of-type h3 {
  color: var(--leaf);
}

.shots {
  columns: 1;
  column-gap: 1.15rem;
}

@media (min-width: 620px) {
  .shots {
    columns: 2;
  }

  .shots.smaland figure:first-child {
    margin-top: 2.75rem;
  }
}

@media (min-width: 1100px) {
  .shots.smaland {
    columns: 3;
  }

  .shots.smaland figure:first-child {
    margin-top: 0;
  }

  .shots.smaland figure:nth-child(2) {
    margin-top: 2.5rem;
  }
}

.shots figure {
  break-inside: avoid;
  margin: 0 0 1.15rem;
}

.shots img {
  width: 100%;
}

.shots.stage img {
  height: 18rem;
  object-fit: cover;
}

.shots.stage img.anna {
  height: auto;
  max-height: 22rem;
  object-fit: cover;
  object-position: 50% 55%;
}

.shots.stage img.belisa {
  object-position: 50% 30%;
}

.shots.smaland img {
  height: auto;
}

.shots.smaland img.cover {
  height: 17.5rem;
  object-fit: cover;
}

.shots.smaland .face-high {
  object-position: 50% 18%;
}

.shots.smaland .face-mid {
  object-position: 50% 20%;
}

.shots.smaland .face-top {
  object-position: 50% 16%;
}

.shots figcaption {
  margin-top: 0.45rem;
}

.gallery-credit {
  margin: -0.35rem 0 0;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem 3.5rem;
  align-items: start;
}

.contact-grid h3 {
  margin: 0 0 0.7rem;
  font-size: 1.15rem;
  font-weight: 400;
}

.contact-grid .house {
  margin: 0;
  font-size: 1.25rem;
}

.contact-grid address {
  margin: 0.45rem 0 0;
  font-style: normal;
  font-size: 1.02rem;
  line-height: 1.65;
}

.contact-grid .mail {
  display: inline-block;
  margin-top: 0.7rem;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.contact-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-links li {
  margin: 0.4rem 0;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.press {
  margin: 1.25rem 0 0;
  max-width: 28rem;
  font-size: 0.95rem;
  color: var(--muted);
  overflow-wrap: break-word;
}

@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer: quiet paper, one hairline. */

#contact.section {
  padding-bottom: 2.5rem;
}

.site-footer {
  margin-top: 0;
  padding: 1.15rem 0 1.45rem;
  background: var(--paper);
  color: var(--muted);
  border-top: 1px solid var(--rule);
  font-size: 0.85rem;
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.4rem 1.5rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--red);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-footer a:hover {
  color: var(--ink);
}

@media (min-width: 1440px) {
  :root {
    --page: 74rem;
  }

  .pop-frame img {
    height: min(72vh, 40rem);
  }
}

@media (min-width: 1920px) {
  :root {
    --page: 78rem;
  }
}
