:root {
  --ocean-950: #03101b;
  --ocean-900: #071827;
  --ocean-800: #0d2738;
  --ocean-700: #12384c;
  --ink: #07142a;
  --muted: #5b6872;
  --paper: #fbfcfa;
  --white: #ffffff;
  --line: #d7d2c4;
  --gold: #c99d57;
  --gold-bright: #edc879;
  --seaglass: #77aaa5;
  --shadow: 0 28px 80px rgba(3, 16, 27, 0.18);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

#manta-way,
#involvement,
#about,
#credentials,
#contact {
  scroll-margin-top: 96px;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: rgba(201, 157, 87, 0.35);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 42px;
  padding: 0 56px;
  color: var(--white);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    height 220ms ease,
    color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  height: 74px;
  background: rgba(3, 16, 27, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a,
.mobile-nav a,
.site-footer a {
  position: relative;
}

.site-nav a::after,
.mobile-nav a::after,
.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.mobile-nav a:hover::after,
.mobile-nav a:focus-visible::after,
.site-footer a:hover::after,
.site-footer a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid var(--gold-bright);
  color: var(--gold-bright);
  font-weight: 700;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--gold-bright);
  color: var(--ocean-950);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 19;
  top: 74px;
  left: 0;
  right: 0;
  display: none;
  padding: 20px 28px 30px;
  background: rgba(3, 16, 27, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.mobile-nav a {
  display: block;
  width: fit-content;
  padding: 11px 0;
  font-weight: 700;
}

.mobile-nav.is-open {
  display: block;
}

.hero {
  position: relative;
  min-height: calc(100svh - 120px);
  overflow: hidden;
  background: var(--ocean-950);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  transform: scale(1.035);
}

.hero__poster {
  animation: hero-drift 16s ease-in-out infinite alternate;
}

.hero__video {
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero.is-video-ready .hero__video {
  opacity: 1;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 16, 27, 0.92) 0%, rgba(3, 16, 27, 0.72) 31%, rgba(3, 16, 27, 0.18) 65%, rgba(3, 16, 27, 0.18) 100%),
    linear-gradient(180deg, rgba(3, 16, 27, 0.3) 0%, rgba(3, 16, 27, 0) 42%, rgba(3, 16, 27, 0.78) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 164px 56px 64px;
  margin-left: 48px;
  color: var(--white);
}

.hero__label,
.section-kicker {
  margin: 0 0 28px;
  color: var(--gold-bright);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1,
.manta-way h2,
.work-list h2,
.pioneer-detail h2,
.about h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero h1 {
  font-size: 5.15rem;
  max-width: 820px;
}

.hero__copy {
  max-width: 560px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 34px;
  border: 1px solid currentColor;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button svg,
.work-row__arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover svg,
.button:focus-visible svg,
.work-row:hover .work-row__arrow svg,
.work-row:focus-visible .work-row__arrow svg {
  transform: translateX(5px);
}

.button--primary {
  background: var(--gold-bright);
  color: var(--ocean-950);
  border-color: var(--gold-bright);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #f4d38c;
  border-color: #f4d38c;
}

.button--ghost {
  color: var(--white);
  border-color: var(--gold-bright);
  background: rgba(3, 16, 27, 0.25);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(237, 200, 121, 0.12);
  color: var(--gold-bright);
}

.button--outline-dark {
  color: var(--ink);
  border-color: var(--gold);
  background: transparent;
}

.button--outline-dark:hover,
.button--outline-dark:focus-visible {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.section-inner {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.section-pad {
  padding: 118px 0;
}

.manta-way {
  position: relative;
  padding: 64px 0 88px;
  background: var(--paper);
}

.manta-way::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: var(--gold);
}

.manta-way__grid {
  display: grid;
  grid-template-columns: 1px 1.05fr 0.9fr;
  gap: 54px;
  align-items: start;
}

.section-rule {
  width: 1px;
  min-height: 136px;
  background: var(--gold);
}

.manta-way h2 {
  font-size: 3.35rem;
  color: var(--ink);
}

.manta-way__text p,
.pioneer-detail__copy p,
.about-profile__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.9;
}

.manta-way__text p + p,
.about-profile__copy p + p {
  margin-top: 22px;
}

.involvement {
  position: relative;
  background: var(--paper);
}

.involvement::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 92px;
  background: linear-gradient(180deg, rgba(7, 24, 39, 0.04), rgba(7, 24, 39, 0));
  pointer-events: none;
}

.involvement__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 86px;
  align-items: start;
}

.media-rail {
  display: grid;
  grid-template-rows: 260px 260px 260px;
  border-top: 1px solid var(--gold);
}

.media-rail__item {
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--paper);
}

.media-rail__item img,
.pioneer-detail__image img,
.portrait img,
.contact__ocean img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-rail__item--large img {
  object-position: 62% 36%;
}

.work-list {
  padding-top: 44px;
}

.work-list h2 {
  max-width: 760px;
  margin-bottom: 48px;
  font-size: 4.1rem;
  color: var(--ink);
}

.work-row {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr 48px;
  gap: 24px;
  align-items: center;
  min-height: 156px;
  border-top: 1px solid var(--line);
}

.work-row:last-child {
  border-bottom: 1px solid var(--line);
}

.work-row::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.work-row__marker {
  position: relative;
  z-index: 1;
  width: 17px;
  height: 17px;
  margin-left: 18px;
  border-radius: 50%;
  background: var(--seaglass);
  box-shadow: 0 0 0 7px var(--paper);
}

.work-row__body {
  display: grid;
  gap: 12px;
  padding: 28px 0;
}

.work-row__title {
  font-family: var(--display);
  font-size: 2.15rem;
  font-weight: 600;
  line-height: 1.05;
  color: var(--ink);
}

.work-row__copy {
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.work-row__arrow {
  color: var(--gold);
}

.work-row:hover .work-row__title,
.work-row:focus-visible .work-row__title {
  color: var(--ocean-700);
}

.pioneer-detail {
  overflow: hidden;
  padding: 0 0 118px;
  background: var(--paper);
}

.pioneer-detail__grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 72px;
  align-items: center;
}

.pioneer-detail__image {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 157, 87, 0.5);
  background: var(--white);
  box-shadow: var(--shadow);
}

.pioneer-detail__image::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.pioneer-detail__copy {
  border-left: 1px solid var(--gold);
  padding-left: 42px;
}

.pioneer-detail h2 {
  margin-bottom: 24px;
  font-size: 3.2rem;
}

.about {
  background:
    linear-gradient(90deg, rgba(119, 170, 165, 0.08) 0 1px, transparent 1px 100%),
    var(--white);
  background-size: 112px 100%;
  border-top: 1px solid var(--line);
}

.about-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 84px;
  align-items: center;
}

.about-profile h2 {
  max-width: 830px;
  margin-bottom: 32px;
  font-size: 5rem;
}

.about-profile__copy {
  max-width: 860px;
}

.about-gallery {
  margin-top: 72px;
  padding-top: 34px;
  border-top: 1px solid var(--gold);
}

.about-gallery__intro {
  margin-bottom: 24px;
}

.about-gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 150px;
  gap: 10px;
}

.about-shot {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ocean-900);
  border: 1px solid rgba(201, 157, 87, 0.24);
}

.about-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 220ms ease,
    transform 500ms ease;
}

.about-shot:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.about-shot--wide {
  grid-column: span 2;
}

.about-shot--tall {
  grid-row: span 2;
}

.about-shot--letter {
  grid-column: span 2;
  background: var(--white);
}

.about-shot--letter img {
  object-fit: contain;
  padding: 22px;
  background: var(--white);
}

.about-dossier {
  display: grid;
  grid-template-columns: 0.9fr 0.8fr 1.2fr;
  gap: 0;
  margin-top: 94px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dossier-column {
  padding: 38px 36px 42px 0;
}

.dossier-column + .dossier-column {
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.dossier-column .section-kicker {
  margin-bottom: 22px;
  color: var(--gold);
}

.dossier-column ul,
.dossier-column ol {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dossier-column li {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.62rem;
  font-weight: 600;
  line-height: 1.08;
}

.dossier-column--work li {
  display: grid;
  gap: 7px;
}

.dossier-column--work span {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.05;
}

.dossier-column--work strong {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.portrait {
  position: relative;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--gold);
  background: var(--white);
  box-shadow: var(--shadow);
}

.portrait::before {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  z-index: -1;
  width: 190px;
  height: 190px;
  border-right: 1px solid rgba(119, 170, 165, 0.65);
  border-bottom: 1px solid rgba(119, 170, 165, 0.65);
}

.portrait img {
  aspect-ratio: 1;
  object-position: center;
}

.portrait figcaption {
  padding: 16px 4px 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.55;
  text-transform: uppercase;
}

.contact {
  background: var(--paper);
  border-top: 1px solid var(--gold);
}

.contact__content {
  padding: 78px 0 54px;
}

.contact__heading {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 48px;
  align-items: end;
}

.contact h2 {
  font-size: 4.8rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1.05fr 0.86fr 0.86fr auto;
  align-items: center;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-method {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px 24px 0;
  color: var(--ink);
}

.contact-method + .contact-method,
.contact-methods .button {
  border-left: 1px solid var(--line);
}

.contact-method:not(:first-child) {
  padding-left: 32px;
}

.contact-method svg {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--seaglass);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-method small {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-method span {
  font-family: var(--display);
  font-size: 1.38rem;
  font-weight: 600;
  line-height: 1.2;
}

.contact-methods .button {
  min-height: 112px;
  white-space: nowrap;
}

.contact__ocean {
  height: 230px;
  overflow: hidden;
  background: var(--ocean-950);
}

.contact__ocean img {
  object-position: center 45%;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 86px;
  padding: 0 56px;
  background: var(--ocean-950);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold-bright);
  font-weight: 800;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-drift {
  from {
    transform: scale(1.035) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.07) translate3d(-16px, -8px, 0);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

}

@media (max-width: 1180px) {
  .site-header {
    padding: 0 34px;
    gap: 24px;
  }

  .site-nav {
    gap: 24px;
  }

  .hero__content {
    margin-left: 0;
    padding-left: 44px;
  }

  .hero h1 {
    font-size: 4.6rem;
  }

  .section-inner {
    width: min(100% - 56px, 1080px);
  }

  .involvement__grid,
  .about-profile {
    gap: 56px;
  }

  .work-list h2 {
    font-size: 3.4rem;
  }

  .about-profile h2 {
    font-size: 4.25rem;
  }

  .about-gallery__grid {
    grid-auto-rows: 132px;
  }

  .dossier-column li {
    font-size: 1.42rem;
  }

  .contact-methods {
    grid-template-columns: 1fr 1fr;
  }

  .contact-methods .button {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 920px) {
  .site-header {
    height: 76px;
    grid-template-columns: 1fr auto;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand {
    font-size: 1.72rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero__image {
    object-position: 68% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(3, 16, 27, 0.92) 0%, rgba(3, 16, 27, 0.72) 50%, rgba(3, 16, 27, 0.18) 100%),
      linear-gradient(180deg, rgba(3, 16, 27, 0.28) 0%, rgba(3, 16, 27, 0.08) 42%, rgba(3, 16, 27, 0.86) 100%);
  }

  .hero__content {
    max-width: 680px;
    padding: 162px 34px 94px;
  }

  .hero h1 {
    font-size: 3.7rem;
  }

  .manta-way__grid,
  .involvement__grid,
  .pioneer-detail__grid,
  .about-profile,
  .contact__heading {
    grid-template-columns: 1fr;
  }

  .section-rule {
    display: none;
  }

  .manta-way h2,
  .work-list h2,
  .pioneer-detail h2 {
    font-size: 3rem;
  }

  .manta-way__grid {
    gap: 28px;
  }

  .media-rail {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px;
  }

  .media-rail__item--large {
    grid-column: 1 / -1;
  }

  .work-list {
    padding-top: 0;
  }

  .pioneer-detail {
    padding-top: 0;
  }

  .about h2,
  .contact h2 {
    font-size: 4rem;
  }

  .about-profile__portrait,
  .portrait {
    max-width: 420px;
  }

  .about-gallery {
    margin-top: 72px;
  }

  .about-gallery__intro {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-gallery__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 134px;
  }

  .about-dossier {
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

  .dossier-column {
    padding: 30px 0 34px;
  }

  .dossier-column + .dossier-column {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-method + .contact-method,
  .contact-methods .button {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .contact-method:not(:first-child) {
    padding-left: 0;
  }

  .contact-methods .button {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 76px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    padding: 0 20px;
  }

  .brand {
    font-size: 1.46rem;
  }

  .mobile-nav {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    min-height: 720px;
  }

  .hero__image {
    object-position: 74% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(3, 16, 27, 0.94) 0%, rgba(3, 16, 27, 0.82) 58%, rgba(3, 16, 27, 0.38) 100%),
      linear-gradient(180deg, rgba(3, 16, 27, 0.3) 0%, rgba(3, 16, 27, 0.08) 38%, rgba(3, 16, 27, 0.92) 100%);
  }

  .hero__content {
    padding: 138px 22px 78px;
  }

  .hero__label,
  .section-kicker {
    margin-bottom: 18px;
    font-size: 0.76rem;
    letter-spacing: 0.2em;
  }

  .hero h1 {
    font-size: 3.05rem;
    line-height: 1;
  }

  .hero__copy {
    margin-top: 24px;
    font-size: 1rem;
  }

  .button {
    width: 100%;
    min-height: 56px;
    padding: 0 22px;
  }

  .section-inner {
    width: calc(100% - 40px);
  }

  .section-pad {
    padding: 82px 0;
  }

  .manta-way {
    padding: 46px 0 68px;
  }

  .manta-way h2,
  .work-list h2,
  .pioneer-detail h2 {
    font-size: 2.55rem;
  }

  .manta-way__grid,
  .involvement__grid,
  .pioneer-detail__grid,
  .about-profile {
    gap: 36px;
  }

  .media-rail {
    grid-template-columns: 1fr;
    grid-template-rows: 230px 230px 230px;
  }

  .work-row {
    grid-template-columns: 26px 1fr 30px;
    gap: 14px;
    min-height: 0;
  }

  .work-row::before {
    left: 12px;
  }

  .work-row__marker {
    width: 13px;
    height: 13px;
    margin-left: 6px;
    box-shadow: 0 0 0 5px var(--paper);
  }

  .work-row__body {
    padding: 28px 0;
  }

  .work-row__title {
    font-size: 1.84rem;
  }

  .work-row__copy {
    font-size: 0.94rem;
  }

  .pioneer-detail {
    padding-bottom: 82px;
  }

  .pioneer-detail__copy {
    padding-left: 22px;
  }

  .pioneer-detail__image {
    min-height: 230px;
  }

  .about h2,
  .contact h2 {
    font-size: 3.1rem;
  }

  .about-gallery {
    margin-top: 58px;
    padding-top: 34px;
  }

  .about-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 126px;
    gap: 8px;
  }

  .about-shot--wide,
  .about-shot--letter {
    grid-column: span 2;
  }

  .about-shot--letter img {
    padding: 14px;
  }

  .about-dossier {
    margin-top: 58px;
  }

  .dossier-column li,
  .dossier-column--work span {
    font-size: 1.34rem;
  }

  .portrait::before {
    display: none;
  }

  .contact__content {
    padding: 64px 0 42px;
  }

  .contact-method {
    min-height: 98px;
    gap: 16px;
    padding-right: 0;
  }

  .contact-method svg {
    width: 34px;
    height: 34px;
  }

  .contact-method span {
    font-size: 1.16rem;
  }

  .contact-methods .button {
    min-height: 88px;
  }

  .contact__ocean {
    height: 180px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    min-height: 118px;
    padding: 28px 20px;
  }
}
