@font-face {
  font-family: 'sans';
  src: url("../fonts/HelveticaNeueLTPro-Lt.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'italic';
  src: url("../fonts/LIFE-ITA.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'serif';
  src: url("../fonts/LIFE-ROM.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
}

/* =====================
STYLES
=====================*/

/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:left}

html {
  box-sizing: border-box;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

::-webkit-scrollbar {
  display: none;
}

::selection {
  color: var(--accent);
  background-color:hsl(10, 17%, 96%);
}

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

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
}

:root {
  --px: 18px;
  --base: var(--px);
  --lhvalue: 1.24;
  --lineheight: calc(var(--base) * var(--lhvalue));
  --bg: white;
  --color: black;
  --accent: hsl(353, 100%, 45%);
  --sans: 'sans', Helvetica, sans-serif;
  --serif: 'serif', Times, serif;
  --italic: 'italic', 'serif', Times, serif;

  --padd: .875em;
  --text-small: .75;
  --text-indent: 4ch;

  --grid-col: 12;
  --grid-column-gap: var(--padd);
  --grid-row-gap: var(--padd);
}

@media screen and (min-width: 500px) {
  :root {
    --padd: 1em;
  }
}

@media (min-width: 800px) {
  :root {
    --px: clamp(1.125rem, 0.9485rem + 0.4902vw, 1.5rem);
    --padd: 1.5rem;
  }
}

@media screen and (min-width: 1000px) {
  :root {
  }
}
@media screen and (min-width: 1200px) {
  :root {
  }
}

@media screen and (min-width: 1400px) {
  :root {
  }
}

@media screen and (min-width: 1600px) {
  :root {
  }
}

body {
  color: var(--color);
  background: var(--bg);
  line-height: var(--lineheight);
  font-size: var(--base);
  font-family: var(--serif);
  -webkit-text-size-adjust: none;
  display: flex;
  flex-wrap: wrap;
  flex-flow: column;
  overflow-x: hidden;
  min-width: 1vw;
  height: 100%;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.1s ease;
}

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

ul,ol,li {
  margin: 0;
  padding: 0;
}

h1 a,h2 a,h3 a,h4 a,h5 a,h6 a {
  text-decoration: none;
}

em, strong, i, strong {
  font-family: var(--italic);
  font-style: normal;
  font-weight: 400;
}
small {
  font-size: 10px;
}

.accent {
  color: var(--accent);
}

header {
  width: 100%;
  z-index: 500;
  padding: 0;
  display: flex;
  flex-flow: column;
  height: 100dvh;
  margin-bottom: calc(var(--lineheight) * 2);
}
.h-name {
  width: 100%;
  display: inline-block;
  margin-top: calc(var(--px) * 1.125);
  font-family: var(--sans);
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  flex: 0 1 auto;
  margin-bottom: calc(var(--px) * 1.125);
}
.headshot {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 0 auto;
  position: relative;
}
.headshot img {
  position: absolute;
  width: auto;
  max-height: 100%;
}

@media (min-width: 800px) {
  .h-name {
    margin-top: calc(var(--lineheight) * 1);
  }
  .headshot img {
    max-height: calc(100% - 3em);
  }
}

.h-sec {
  display: grid;
  grid-template-columns: repeat(var(--grid-col), 1fr);
  padding: var(--padd);
  flex: 1;
  flex: 0 1 auto;
}

.h-svg {
  text-align: center;
  margin-bottom: calc(var(--lineheight) * 3);
  font-size: 1.125em;
}

.bio {
  grid-column: span 12;
  font-size: calc(1em * var(--text-small));
  line-height: calc(calc(var(--px) * var(--text-small)) * var(--lhvalue));
  text-align: justify;
}
.bio p {
  text-indent: var(--text-indent);
}
.bio p:first-of-type {
  text-indent: 0;
}

@media (min-width: 500px) {
  .bio {
    grid-column: 2 / span 10;
  }
}
@media (min-width: 800px) {
  .bio {
    grid-column: 3 / span 8;
  }
}
@media (min-width: 1200px) {
  .bio {
    grid-column: 4 / span 6;
  }
}

footer {
  padding: 0 var(--padd);
  text-align: center;
  margin-top: calc(var(--lineheight)*5);
  margin-bottom: calc(var(--lineheight)*.5);
  font-family: var(--sans);
  text-transform: uppercase;
}
footer small {
  font-size: 12px;
  line-height: var(--lhvalue);
  display: inline-block;
  margin-top: calc(var(--lineheight)*8);
}
footer small span {
  display: inline-block;
  margin-right: 4ch;
}

/* =====================
  MAIN
=====================*/
main {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  flex-wrap: wrap;
  flex: 1;
}

.heading {
  line-height: .9 !important;
  text-transform: uppercase;
  font-size: 2.4em;
  letter-spacing: -.03em;
  color: var(--accent);
}
.subheading {
  font-size: .4em;
  letter-spacing: -.01em;
}

@media (min-width: 800px) {
  .heading {
    font-size: 3em;
  }
}

.item-row, .title-row, .sec-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--grid-col), 1fr);
  width: 100%;
  padding: 0 var(--padd);
  margin-bottom: calc(calc(var(--px) * var(--lhvalue)) * 4);
}
.title-row {
  margin-bottom: calc(calc(var(--px) * var(--lhvalue)) * 2);
}
.item-row:after {
  display: none;
  content: "";
  height: 1px;
  background-color: var(--color);
  grid-column: 1 / span 12;
  margin-right: calc(var(--padd)*-1);
  order: 4;
  margin-top: calc(calc(var(--px)*.35) * var(--lhvalue));
}
.ir-title {
  grid-column: span 12;
  text-align: center;
  font-family: var(--sans);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: var(--lineheight);
}
.ir-title--solo {
  margin-bottom: 0 !important;
}
.ir-title:before {
  display: none;
  content: "";
  position: absolute;
  top: calc(var(--lineheight)/2);
  left: var(--padd);
  margin-right: calc(var(--padd) * -1);
  height: 4px;
  width: 4px;
  background-color: var(--color);
  margin-bottom: .25em;
}
.ir-desc p {
  text-indent: var(--text-indent);
}
.ir-desc p:first-of-type {
  text-indent: 0;
}
.ir-desc {
  grid-column: 1 / span 12;
  order: 2;
  font-size: calc(1em * var(--text-small));
  line-height: calc(calc(var(--px) * var(--text-small)) * var(--lhvalue));
  text-align: justify;
}
.ir-button {
  order: 3;
  font-size: calc(1em * var(--text-small));
  line-height: calc(calc(var(--px) * var(--text-small)) * var(--lhvalue));
  grid-column: 1 / span 12;
  text-align: center;
  padding: 1em;
  margin-top: var(--lineheight);
  transition: background-color .1s ease, color .1s ease;
}
.ir-button:hover {
  background-color: rgba(0,0,0,0.03);
}
.ir-img {
  grid-column: span 12;
  height: calc(var(--lineheight)*20);
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom: calc(var(--lineheight)*3);
}
.ir-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}


.work-list {
  font-family: var(--serif);
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  justify-content: start;
  align-content: start;
}
.title {
  margin-top: var(--lineheight);
  font-family: var(--sans)
}


@media (min-width: 500px) {
  .ir-desc {
    grid-column: 2 / span 10;
  }
  .item-row:after {
    grid-column: 2 / span 11;
  }
}

@media (min-width:800px) {
  .work-list {
    margin-top: calc(calc(var(--px) * var(--lhvalue) * 2));
  }
  .item-row {
    margin-bottom: calc(var(--lineheight) * 3);
  }
  .ir-desc, .ir-button {
    grid-column: 3 / span 8;
  }
  .ir-title {
    margin-bottom: calc(var(--lineheight) * 2);
  }
  .ir-desc p {
    text-indent: var(--text-indent);
  }
  .item-row:after {
    grid-column: 3 / span 10;
  }
}

@media (min-width:1200px) {
  .ir-desc, .ir-button {
    grid-column: 4 / span 6;
  }
  .item-row {
    margin-bottom: calc(var(--lineheight) * 4);
  }
  .item-row:after {
    grid-column: 4 / span 9;
  }
}

/* journalism work link list */

.j-list--row {
  width: 100%;
  grid-template-columns: repeat(var(--grid-col), 1fr);
  display: grid;
  position: relative;
  font-size: calc(1em * var(--text-small));
  line-height: var(--lhvalue);
  column-gap: 1em;
}
.j-l--r-conference .j-col--3 {
  margin-bottom: calc(calc(var(--px)*.35) * var(--lhvalue));
}

.j-list--row:last-of-type {
  margin-bottom: calc(var(--lineheight) * 4);
}
.j-list--row:before {
  grid-column: 3 / span 10;
  height: 1px;
  background-color: var(--color);
  display: block;
  content: "";
  margin-left: 0;
  width: 100%;
  margin-top: 1px;
}

.j-col--1, .j-col--2, .j-col--3, .j-col--4 {
  padding-top: calc(calc(var(--px)*.35) * var(--lhvalue));
  padding-bottom: 0;
}
.j-col--1, .j-col--4 {
  font-family: var(--sans);
}
.j-col--1 {
  grid-column: span 2;
  padding-left: var(--padd);
  margin-top: -1px;
  padding-top: calc(calc(var(--px)*.35) * var(--lhvalue) + 2px);
  border-top: 1px solid black;
  text-align: right;
}
.j-col--2 {
  grid-column: span 10;
  opacity: 1;
  transition: opacity .1s;
  padding-right: var(--padd);
}
.j-col--3 {
  grid-column: 3 / span 10;
  padding-right: var(--padd);
}
.j-col--4 {
  grid-column: 3 / span 10;
  margin-bottom: calc(calc(1em * var(--lhvalue)) * 1);
}
@media (min-width:500px) {
  .j-col--1, .j-col--2, .j-col--3, .j-col--4 {
    padding-bottom: calc(calc(var(--px)*.35) * var(--lhvalue));
  }
  .j-col--1 {
    grid-column: span 1;
  }
  .j-col--2 {
    grid-column: span 4;
    padding-left: var(--padd);
  }
  .j-col--3 {
    grid-column: span 5;
    padding-right: 0;
  }
  .j-col--4 {
    grid-column: span 2;
    text-align: right;
    padding-right: var(--padd);
    margin-bottom: 0;
  }
  .j-list--row:before {
    grid-column: 2 / span 11;
    margin-left: var(--padd);
    width: calc(100% - var(--padd));
  }
}

@media (min-width:800px) {
  .j-col--1 {
    grid-column: span 2;
  }
  .j-col--2 {
    grid-column: span 4;
    padding-left: calc(var(--padd)/2);
  }
  .j-col--3 {
    grid-column: span 4;
  }
  .j-list--row:before {
    grid-column: 3 / span 10;
    margin-left: calc(var(--padd)/2);
    width: calc(100% - calc(var(--padd)/2));
  }
}

@media (min-width:1200px) {
  .j-col--1, .j-col--2, .j-col--3,.j-col--4 {
    grid-column: span 3;
  }
  .j-list--row:before {
    grid-column: 4 / span 9;
  }
}

.j-col--titleHov {
  position: fixed;
  z-index: 201;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  pointer-events: none;
  transition: opacity .1s ease;
  opacity: 0;
  font-family: var(--sans);
  font-weight: 300;
  display: none;
  align-content: center;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: .92;
  text-transform: uppercase;
  font-size: 2em;
  letter-spacing: -.03em;
  padding-left: 2ch;
  padding-right: 2ch;
  color: var(--accent);
  mix-blend-mode: multiply;
}

.columns-two {
  columns: 1;
  column-gap: var(--grid-column-gap);
  font-size: calc(1em * var(--text-small));
  line-height: var(--lhvalue);
  grid-column: 2 / span 10;
}
.columns-two li {
  margin-bottom: calc(1em * var(--lhvalue));
  padding-left: var(--text-indent);
  text-indent: calc(var(--text-indent) * -1);

  padding-left: 2ch;
  text-indent: calc(2ch * -1);
  break-inside: avoid;
}

@media (min-width: 500px) {
  .columns-two {
    columns: 2;
    grid-column: 2 / span 10;
  }
}
@media (min-width: 800px) {
  .columns-two {
    grid-column: 3 / span 8;
  }
}
@media (min-width: 1200px) {
  .columns-two {
    grid-column: 4 / span 6;
  }
}