@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

:root {
  --spacing-unit: 0.25rem;
  --s--2: clamp(0.4924rem, 0.3855rem + 0.5349cqi, 0.8rem);
  --s--1: clamp(0.6564rem, 0.5369rem + 0.5975cqi, 1rem);
  --s-0: clamp(0.875rem, 0.7446rem + 0.6522cqi, 1.25rem);
  --s-1: clamp(1.1664rem, 1.0286rem + 0.6889cqi, 1.5625rem);
  --s-2: clamp(1.5548rem, 1.4162rem + 0.6928cqi, 1.9531rem);
  --s-3: clamp(2.0725rem, 1.9442rem + 0.6415cqi, 2.4414rem);
  --s-4: clamp(2.7627rem, 2.6621rem + 0.5028cqi, 3.0518rem);
  --s-5: clamp(3.6826rem, 3.6367rem + 0.2297cqi, 3.8147rem);
  --transition-1: 0.5s;
  --menu-icon-size: 1.5em;
  --c-bg: #FAF9F6;
  --c-nav-bg: rgb(250 249 246);
  --c-link-hover: rgb(123, 123, 123);
}

html, body {
  padding: 0;
  margin: 0;
  background: var(--c-bg);
}

body {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  font-size: var(--s-0);
  font-family: "Cardo", serif;
  /* font-family: "Spectral", cursive */
  /* font-family: "Cormorant Garamond", cursive */
  /* font-family: "Lusitana", cursive */
  font-family: "Newsreader", serif;
}

body > * {
  width: 100%;
  max-width: 80rem;
}

.header {
  width: 100%;
  position: relative;
  padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 8);
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: auto 1fr;
  align-items: center;
}
.header__title {
  font-size: var(--s-2);
  margin: calc(var(--spacing-unit) * 2) 0 0 auto;
  grid-row: 1;
  grid-column: 2;
  /* font-family: "Cormorant Upright", serif */
  /* font-family: "Tangerine", serif */
  /* font-family: "Montserrat", cursive */
}
@media (min-width: 40em) {
  .header__title {
    font-size: var(--s-4);
    margin: calc(var(--spacing-unit) * 2) auto;
  }
}
.header__nav-checkbox-wrapper {
  display: block;
  position: relative;
  padding: 0;
  width: var(--menu-icon-size);
  height: var(--menu-icon-size);
  margin: 0 auto;
}
.header__nav-checkbox-wrapper:has(:focus-visible) {
  outline: 1px solid;
}
@media (min-width: 40em) {
  .header__nav-checkbox-wrapper {
    display: none;
  }
}
.header__nav-checkbox {
  position: absolute;
  width: var(--menu-icon-size);
  height: var(--menu-icon-size);
  opacity: 0;
  z-index: 1;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.header__nav-toggle {
  width: var(--menu-icon-size);
  height: var(--menu-icon-size);
  background: url("/assets/icons/menu.svg") center/100%;
  color: transparent;
  display: block;
  padding: 0;
  margin: 0;
  grid-row: 1;
  grid-column: 1;
}
.header__nav-toggle:has(~ :checked) {
  background-image: url("/assets/icons/cross.svg");
}
.header:has(.header__nav-checkbox:checked) {
  background: var(--c-nav-bg);
}
.header__nav-label {
  cursor: pointer;
  display: block;
  width: 2em;
  overflow-wrap: break-word;
}
.header__nav-label, .header__nav-label::-webkit-details-marker {
  list-style: none;
}
@media (min-width: 40em) {
  .header__nav-label {
    display: none;
  }
}
.header__nav {
  width: 100%;
}
@media (max-width: 40em) {
  .header__nav {
    font-size: var(--s-1);
  }
}
.header:has(.header__nav-checkbox:checked) {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 40em) {
  .header:has(.header__nav-checkbox:not(:checked)) > .header__nav:not(:focus-within):not(:active) {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }
}
@media (max-width: 40em) {
  .header:has(.header__nav-checkbox:checked) > .header__nav, .header__nav:focus-within {
    background: var(--c-nav-bg);
    text-align: center;
    padding: calc(var(--spacing-unit) * 4);
    border: 0;
    line-height: 1.6;
    grid-row: 2;
    grid-column: 1/-1;
    align-self: flex-start;
  }
}
@media (min-width: 40em) {
  .header {
    display: flex;
    flex-flow: row-reverse nowrap;
    justify-content: flex-end;
    flex-flow: column nowrap;
    text-align: center;
  }
}

.nav {
  margin: 0 auto;
  border: 1px solid;
  max-width: 60rem;
}
.nav__list {
  padding: 0;
  justify-content: center;
  list-style: none;
  width: 100%;
  margin: 0;
}
@media (min-width: 40em) {
  .nav__list {
    display: flex;
    flex-flow: row nowrap;
  }
}
@media (min-width: 40em) {
  .nav__item + .nav__item {
    margin-left: 2em;
  }
}
.nav__link {
  color: inherit;
  transition: var(--transition-1) text-decoration-color ease-out, var(--transition-1) color ease-out;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
}
.nav__link:hover, .nav__link:focus-within {
  text-decoration-color: currentColor;
  color: var(--c-link-hover);
}
.nav__link[aria-current=page] {
  font-weight: bold;
}
@media (min-width: 40em) {
  .nav {
    width: 100%;
    margin-top: calc(var(--spacing-unit) * 2);
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);
    border: 0.075em dotted transparent;
    border-top-color: currentColor;
    border-bottom-color: currentColor;
    /* background: rgba(0, 50%, 0, 0.1) */
    max-width: max-content;
  }
}

.main {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch;
  max-width: 35em;
  padding: 0 calc(var(--spacing-unit) * 4);
  margin-top: calc(var(--spacing-unit) * 4);
}
.main--about {
  align-items: flex-start;
}
@media (max-width: 40em) {
  .main--about picture {
    flex: 0 1 40%;
  }
}
@media (min-width: 40em) {
  .main--about {
    margin-top: calc(var(--spacing-unit) * 16);
  }
}
.main--media {
  flex-flow: column nowrap;
  text-align: center;
  align-items: center;
}
.main--other {
  justify-content: flex-start;
  text-align: center;
  align-items: center;
}
.main__banner {
  width: 20rem;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
@media (min-width: 40em) {
  .main__banner {
    width: 25em;
  }
}
.main__credit {
  text-align: center;
  font-style: italic;
  font-size: var(--s--1);
  margin: calc(var(--spacing-unit) * 2) auto;
}
.main__quote {
  flex: 0 0 100%;
  text-align: center;
  padding: 0;
  margin: calc(var(--spacing-unit) * 4) 0;
}
.main__hero-wrapper {
  margin: 0;
  display: block;
  text-align: center;
  align-self: center;
  flex: 0 0 100%;
}
.main picture, .main__hero, .main__author-image {
  display: block;
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main__hero {
  max-height: 15em;
}
.main__author-text {
  margin-top: calc(var(--spacing-unit) * 4);
}
@media (min-width: 40em) {
  .main__author-text {
    margin-top: 0;
    flex: 0 1 calc(100% - 14em - var(--spacing-unit) * 4);
  }
}
.main__author-text > :first-child {
  margin-top: 0;
}
.main__hero-caption {
  font-style: italic;
}
.main__praise {
  margin: 0;
}
.main__praise-wrapper {
  margin-top: calc(var(--spacing-unit) * 8);
}
.main__praise-list {
  list-style: none;
  padding: 0;
}
.main__praise-citation {
  display: block;
  text-align: right;
}
.main__praise-citation::before {
  content: "― ";
}
.main__quote::before, .main__praise > :first-child::before {
  content: "“";
}
.main__quote::after, .main__praise > :first-child::after {
  content: "”";
}
.main__blurb {
  padding: 0;
  margin: calc(var(--spacing-unit) * 4) 0 0;
  flex: 1 0 50%;
}
@media (min-width: 40em) {
  .main__buy {
    margin-top: calc(var(--spacing-unit) * 8);
  }
}
.main__author-image-wrapper {
  margin: 0 auto;
  max-width: 12em;
}
@media (min-width: 40em) {
  .main__author-image-wrapper {
    max-width: none;
    flex: 0 1 14em;
  }
}
.main__works-section {
  flex: 0 0 100%;
}
.main__contact {
  font-style: normal;
  margin-top: calc(var(--spacing-unit) * 2);
}
.main__work + .main__work {
  margin-top: calc(var(--spacing-unit) * 2);
}
.main__work, .main__media-item, .main__play {
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
}
.main__works, .main__plays, .main__media {
  padding: 0;
}
@media (min-width: 40em) {
  .main {
    margin-top: calc(var(--spacing-unit) * 2);
    padding: calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 2);
  }
}

.work__heading {
  margin: 0;
}
.work__publication {
  margin: 0;
}

.section-heading {
  margin-top: 0;
}

.footer {
  margin-top: auto;
  padding-top: calc(var(--spacing-unit) * 2);
  text-align: center;
}

img {
  object-fit: contain;
}

:link, :visited {
  color: inherit;
}
:link:hover, :link:focus, :visited:hover, :visited:focus {
  color: var(--c-link-hover);
}

.awards {
  text-align: center;
  font-weight: 700;
  margin: 0 auto;
}
.awards + * {
  margin-top: calc(var(--spacing-unit) * 2);
}