:root {
  --paper: #f3eee6;
  --paper-deep: #e8e0d4;
  --ink: #2b2824;
  --ink-soft: #5c564c;
  --rule: #cfc6b8;
  --accent: #7a6a52;
  --header-h: 6.9rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.6rem);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Outfit", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: clip;
  overflow-wrap: break-word;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0 0 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  opacity: 0.28;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
  padding: 0.6rem 2.4rem 0.4rem;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in srgb, var(--rule) 70%, transparent);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  height: 6.6rem;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav a,
.nav-collab {
  text-decoration: none;
  color: var(--ink-soft);
}

.nav a:hover,
.nav-collab:hover {
  color: var(--ink);
}

.lang {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.6rem;
  padding-left: 1rem;
  border-left: 1px solid var(--rule);
}

.lang button {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--rule);
  cursor: pointer;
}

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

.lang-sep {
  color: var(--rule);
}

.menu-btn {
  display: none;
  width: 2rem;
  height: 1.4rem;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 1px;
  background: var(--ink);
}

.menu-btn span + span {
  margin-top: 0.45rem;
}

/* Layout */

main {
  padding: 0 2.4rem 5rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.6rem;
}

.section-head h2 {
  font-size: clamp(2.1rem, 4vw, 3.15rem);
}

.intro {
  margin-top: 1rem;
  color: var(--ink-soft);
}

/* Hero */

.hero {
  position: relative;
  max-width: 58rem;
  padding: 5.5rem 0 6.5rem;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.1rem);
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 1.8rem;
}

.hero h1 em {
  display: block;
  font-style: italic;
  font-weight: 400;
}

.lede {
  max-width: 34rem;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.4rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--rule);
}

/* Atelier */

.atelier,
.papiers,
.contact {
  padding: 4.2rem 0;
  border-top: 1px solid var(--rule);
}

.atelier-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(16rem, 0.7fr);
  gap: 3.5rem;
  align-items: start;
}

.atelier-text {
  max-width: 38rem;
  font-size: 1.05rem;
}

.atelier-text .note {
  margin-top: 1.8rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.dates {
  position: relative;
  border-left: 1px solid var(--rule);
  padding: 0.2rem 0 0.2rem 1.6rem;
  min-height: 16rem;
}

.dates::after {
  content: "";
  position: absolute;
  right: -1.2rem;
  top: -1.4rem;
  width: 16rem;
  height: 16rem;
  background: url("../img/logo.png") center / contain no-repeat;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

.dates > * {
  position: relative;
  z-index: 1;
}

.dates div + div {
  margin-top: 1.5rem;
}

.dates strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.dates span {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.shot {
  margin: 2.6rem 0 0;
}

.shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: var(--paper-deep);
}

.shot-main img {
  max-height: min(70vh, 42rem);
}

.shot-wide {
  margin-top: 3rem;
}

.shot-wide img {
  max-height: min(70vh, 42rem);
}

figcaption {
  margin-top: 0.7rem;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.fred {
  display: grid;
  grid-template-columns: minmax(14rem, 0.9fr) minmax(0, 1.2fr);
  gap: 2.6rem;
  align-items: center;
  margin: 3.4rem 0 0;
}

.fred-shot {
  margin: 0;
}

.fred-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
  background: var(--paper-deep);
}

.fred-text h3 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  margin-bottom: 1rem;
}

.geste {
  max-width: 38rem;
  margin-top: 2.8rem;
}

.geste h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.1rem;
}

.geste p {
  font-size: 1.05rem;
}

.shots {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.1rem;
  margin-top: 2.4rem;
}

.shots .shot {
  margin: 0;
}

.shots img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.shots-two {
  grid-template-columns: 1fr 1fr;
}

/* Papers */

.paper-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}

.paper-list li {
  padding: 1.7rem 1.6rem 1.7rem 0;
}

.paper-list li + li {
  padding-left: 1.6rem;
  border-left: 1px solid var(--rule);
}

.paper-list h3 {
  font-size: 1.55rem;
  margin-bottom: 0.7rem;
}

.paper-list p {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.more-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.more-links a {
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
}

.more-links a:hover {
  border-bottom-color: var(--ink);
}

.fibres {
  margin-top: 2.4rem;
  max-width: 36rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

address {
  font-style: normal;
}

address p + p {
  margin-top: 1.4rem;
}

.label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

address a {
  text-decoration: none;
}

address a:hover {
  text-decoration: underline;
}

.contact-side {
  max-width: 24rem;
}

.visit {
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
}

.write-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
}

.write-btn:hover {
  color: var(--accent);
}

.chevron {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.write-btn[aria-expanded="true"] .chevron {
  transform: rotate(-135deg);
}

.contact-panel {
  margin-top: 2.2rem;
  border-top: 1px solid var(--rule);
  padding-top: 2rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.3s ease, padding-top 0.3s ease, margin-top 0.3s ease;
}

.contact-panel.is-open {
  max-height: 46rem;
  opacity: 1;
}

.contact-panel[hidden] {
  display: block;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.6rem;
  max-width: 40rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.7rem 0.2rem 0.55rem;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}

.field textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  margin-top: 0.4rem;
}

.send-btn {
  appearance: none;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 0.7rem 1.4rem;
  font: inherit;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.send-btn:hover {
  background: transparent;
  color: var(--ink);
}

.send-btn:disabled {
  opacity: 0.55;
  cursor: wait;
}

.form-status {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Footer */

.site-footer {
  padding: 1.6rem 2.4rem 2.2rem;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: flex-start;
  gap: 0.55rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.site-footer .small,
.site-footer .credit {
  margin: 0;
}

.site-footer .credit a {
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
}

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

/* Responsive */

@media (max-width: 860px) {
  :root { --header-h: 5.85rem; }
  .site-header {
    padding: 0.5rem 1.25rem 0.35rem;
  }

  .brand img {
    height: 5.4rem;
  }

  .menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.25rem 1.4rem;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
  }

  body.nav-open .nav {
    display: flex;
  }

  .lang {
    margin: 0.4rem 0 0;
    padding: 0.6rem 0 0;
    border-left: 0;
    border-top: 1px solid var(--rule);
  }

  main {
    padding: 0 1.25rem 3.5rem;
  }

  .hero {
    padding: 3.2rem 0 4rem;
  }

  .atelier-grid,
  .contact-grid,
  .paper-list,
  .contact-form,
  .shots,
  .shots-two,
  .fred {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    align-items: start;
  }
  .fred-text {
    display: contents;
  }
  .fred-text .eyebrow,
  .fred-text h3 {
    order: 1;
  }
  .fred-shot {
    order: 2;
    max-width: 15.5rem;
    margin-inline: auto;
    width: 100%;
  }
  .fred-shot img {
    aspect-ratio: 3 / 4;
    max-height: 18rem;
    object-fit: cover;
    object-position: center 18%;
  }
  .fred-bio {
    order: 3;
  }

  .shots img {
    aspect-ratio: 4 / 3;
  }

  .paper-list li + li {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--rule);
  }

  .dates {
    border-left: 0;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }

  .dates div + div {
    margin-top: 0;
  }

  .site-footer {
    flex-direction: column;
    padding: 1.4rem 1.25rem 2rem;
  }
}

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

.social {
  margin-top: 1.3rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.social a {
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
}

.social a:hover {
  border-bottom-color: var(--ink);
}

.write-btn {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.15rem;
}

.write-btn .chevron { display: none; }

.msg-layer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.4rem;
}

.msg-layer[hidden] {
  display: none;
}

.msg-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 40, 36, 0.38);
}

.msg-card {
  position: relative;
  width: min(36rem, 100%);
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 2rem 1.7rem 1.7rem;
  z-index: 1;
  box-shadow: 0 18px 50px rgba(43, 40, 36, 0.16);
}

.msg-card .eyebrow {
  margin-bottom: 0.35rem;
}

.msg-card h2 {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  margin-bottom: 1.5rem;
}

.msg-close {
  position: absolute;
  top: 0.7rem;
  right: 0.85rem;
  border: 0;
  background: none;
  font: inherit;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
}

.msg-close:hover {
  color: var(--ink);
}

body.msg-open {
  overflow: hidden;
}

.msg-card .contact-form {
  max-width: none;
}

.map-link {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.map-link:hover {
  border-bottom-color: var(--rule);
}

.paper-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 2.4rem 0 1.8rem;
}

.paper-tabs button {
  appearance: none;
  border: 1px solid var(--rule);
  background: transparent;
  padding: 0.55rem 0.85rem;
  font: inherit;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
}

.paper-tabs button:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.paper-tabs button.is-on {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.tab-panel[hidden] {
  display: none;
}

.sheet {
  display: grid;
  grid-template-columns: minmax(12rem, 16rem) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: center;
  margin: 0 0 1.8rem;
}

.sheet img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--paper-deep);
}

.sheet h3 {
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
}

.sheet .spec {
  font-size: 0.88rem;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.sheet p:last-child {
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 720px) {
  .sheet {
    grid-template-columns: 1fr;
  }
  .sheet img {
    aspect-ratio: 4 / 3;
  }
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.95rem;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.action:hover,
.write-btn.action:hover {
  background: var(--ink);
  color: var(--paper);
}

button.action {
  font-family: inherit;
}

.action .ico {
  width: 0.95rem;
  height: 0.95rem;
  margin-right: 0.45rem;
  flex: 0 0 auto;
}

.action .ico-fly {
  width: 1.05rem;
  height: 1.05rem;
}

.products-bar {
  margin: 2.8rem 0 1rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--rule);
}

.products-bar h3 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0 0 1.1rem;
}

.ailleurs {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--rule);
}

.ailleurs-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  padding: 0.85rem 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  text-align: left;
  color: var(--ink);
  cursor: pointer;
}

.ailleurs-toggle .chevron {
  width: 0.42rem;
  height: 0.42rem;
  margin-top: -0.15rem;
  border-right: 1.6px solid var(--accent);
  border-bottom: 1.6px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}

.ailleurs-toggle[aria-expanded="true"] .chevron {
  margin-top: 0.2rem;
  transform: rotate(-135deg);
}

.ailleurs-panel {
  padding: 0.4rem 0 1.2rem;
}

.ailleurs-panel p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  max-width: 36rem;
}

.foires {
  display: grid;
  gap: 0.85rem;
}

.foire {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
}

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

.foire strong {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.foire span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.foire-card {
  grid-template-columns: 6.5rem minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
}

.foire-card img {
  width: 100%;
  height: auto;
  display: block;
}

.zoom {
  display: block;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

.zoom img {
  width: 100%;
  height: auto;
  display: block;
}

.foire-link {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
}

.zoom-layer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1.4rem;
}

.zoom-layer[hidden] {
  display: none;
}

.zoom-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 40, 36, 0.55);
}

.zoom-card {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(52rem, 100%);
  max-height: 90vh;
}

.zoom-card img {
  display: block;
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  background: var(--paper);
}

img, .shot, .fred-shot, .zoom, .hero-shot {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.shot img,
.fred-shot img,
.sheet img,
.brand img,
.zoom-card img,
.foire-card img {
  pointer-events: none;
}

.shot,
.fred-shot,
.sheet,
.zoom,
.brand {
  -webkit-user-drag: none;
}

button,
.action,
.paper-tabs button,
.menu-btn {
  touch-action: manipulation;
}

.paper-tabs button,
.action {
  min-height: 2.75rem;
}

.foire-card {
  align-items: start;
}

@media (max-width: 720px) {
  .foire-card {
    grid-template-columns: 1fr;
  }
  .foire-card img {
    max-height: 16rem;
    width: 100%;
    object-fit: contain;
  }
  .hero h1 {
    font-size: clamp(2.15rem, 12vw, 3.2rem);
  }
  .brand img {
    height: 4.6rem;
  }
}

@media (max-width: 860px) {
  .shot-main img,
  .shot-wide img {
    max-height: none;
  }
}

.hero-split {
  margin-top: 0.4rem;
}
.hero .hero-shot {
  margin: 1.4rem 0 0;
  max-width: 22rem;
}
.hero .hero-shot img {
  max-height: 16rem;
  width: 100%;
  object-fit: contain;
}

@media (min-width: 861px) {
  .hero {
    max-width: 68rem;
  }
  .hero-split {
    display: grid;
    grid-template-columns: minmax(22rem, 1.15fr) minmax(16rem, 0.85fr);
    gap: 2.4rem;
    align-items: center;
    margin-top: 0.2rem;
  }
  .hero .hero-shot {
    margin: 0;
    max-width: none;
  }
  .hero .hero-shot img {
    max-height: 26rem;
  }
  .hero-split .lede {
    max-width: none;
    margin: 0;
  }
  .fred-shot {
    max-width: 16.5rem;
    justify-self: start;
  }
  .fred {
    grid-template-columns: minmax(12rem, 16.5rem) minmax(0, 1fr);
    gap: 2.2rem;
    align-items: start;
  }
}

.photo-credit {
  margin-top: 0.55rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.photo-credit a {
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
}
.photo-credit a:hover {
  border-bottom-color: var(--ink);
}

.photo-credit-inline {
  margin-left: 0.35rem;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
}
.photo-credit-inline:hover {
  border-bottom-color: var(--ink);
}

.mill-pics .shots img {
  max-height: 18rem;
}
.mill-pics .shot-mid {
  margin: 1.4rem auto 0.4rem;
  max-width: 36rem;
}
.mill-pics .shot-mid img {
  max-height: 20rem;
  width: 100%;
  object-fit: contain;
}

@media (min-width: 861px) {
  .mill-pics .shots {
    gap: 1.4rem;
    margin-top: 2rem;
  }
  .mill-pics .shots img {
    max-height: 28rem;
    aspect-ratio: auto;
    width: 100%;
    object-fit: contain;
    background: var(--paper-deep);
  }
  .mill-pics .shot-mid {
    margin: 1.8rem auto 0.6rem;
    max-width: 48rem;
  }
  .mill-pics .shot-mid img {
    max-height: 32rem;
    width: 100%;
    object-fit: contain;
  }
}

.nav-collab {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  line-height: inherit;
  cursor: pointer;
}
.collab-card h2 {
  font-size: 2.4rem;
  margin: 0.2rem 0 0.8rem;
}
