:root {
  --ink: #111;
  --muted: #686868;
  --line: #9a9a9a;
  --paper: #fff;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

main {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 28px 32px 48px;
}

.site-header {
  padding-bottom: 0;
}

.kicker {
  margin: 0 0 22px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
}

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

h1 {
  margin: 0;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: none;
}

h1 span {
  display: inline;
  margin-left: 0.15em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.25em;
  font-weight: 400;
  font-style: italic;
  font-variant: normal;
  letter-spacing: 0;
  text-transform: none;
  vertical-align: baseline;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.7rem;
  margin-top: 14px;
  font-size: 1.05rem;
  line-height: 1.4;
  text-transform: none;
}

nav a {
  font-weight: 500;
}

.intro {
  max-width: 540px;
  padding: 28px 0 46px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.intro p {
  margin: 0;
}

.year-section,
.video-section {
  margin-top: 10px;
  padding-top: 18px;
  border-top: 2px solid var(--line);
}

h2 {
  margin: 0 0 18px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.gallery-item {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eee;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 140ms ease;
}
.gallery-item:hover img,
.gallery-item:focus-visible img {
  opacity: 0.72;
}

.gallery-item:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

video {
  display: block;
  width: min(100%, 480px);
  background: #000;
}

.video-inline {
  margin-top: 12px;
}

footer {
  margin-top: 64px;
  padding-top: 16px;
  border-top: 2px solid var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
}

footer a {
  color: inherit;
}


@media (max-width: 760px) {
  main {
    padding: 18px 16px 32px;
  }

  .site-header {
    padding-bottom: 16px;
  }

  .kicker {
    margin-bottom: 16px;
  }

h1 {
  font-size: clamp(2rem, 10vw, 3.3rem);
  line-height: 1;
  padding-bottom: 16px;
}

h1 span {
  margin-left: 0.1em;
  font-size: 0.3em;
}

nav {
  margin-top: 12px;
  gap: 0.3rem 0.55rem;
  font-size: 1rem;
}
  .intro {
    padding: 20px 0 32px;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .year-section,
  .video-section {
    border-top-width: 3px;
  }

}

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

  footer {
    display: block;
  }

  footer a {
    display: inline-block;
    margin-top: 8px;
  }
}

.featured-section {
  width: 100%;
}

.featured-gallery {
  display: block;
  width: 100%;
  max-width: 850px;
}

.featured-gallery .gallery-item {
  display: block;
  width: 100%;
  aspect-ratio: auto;
  background: transparent;
}

.featured-gallery .gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.rotor-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  width: 100%;
  margin: 42px 0 58px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.rotor-language {
  min-width: 0;
}

.rotor-language + .rotor-language {
  padding-left: 48px;
  border-left: 1px solid var(--line);
}

.rotor-intro h2 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.rotor-intro-subtitle {
  margin: 0.25rem 0 1.5rem;
  font-style: italic;
}

.rotor-intro p {
  max-width: 68ch;
}
}
