/* Minimal modern CSS reset */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

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

:root {
  --font-size-base: clamp(14.5px, 13px + 0.46875vw, 19px);
}

:root {
  --color-lightest: rgb(255, 255, 245);
  --color-light: rgb(193, 113, 98);
  --color-medium: rgb(123, 45, 26);
  --color-dark: rgb(76, 28, 25);
  --color-accent: rgb(239, 222, 172);
  --color-accent-light: rgba(239, 222, 172, 0.35);
  --color-accent-dark: rgb(225.7151515152, 194.6, 103.0848484848);
}

html {
  font-size: var(--font-size-base);
}

body {
  background-color: var(--color-accent-light);
  color: rgb(76, 28, 25);
  font-family: "Source Serif 4", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: min(1600px, 92vw);
  margin-inline: auto;
  padding: 2rem 0;
}

a {
  color: rgb(123, 45, 26);
}

.interest {
  background: rgba(239, 222, 172, 0.2);
  background-image: url("https://www.transparenttextures.com/patterns/bedge-grunge.png");
  background-image: url("https://www.transparenttextures.com/patterns/concrete-wall.png");
  background-image: url("https://www.transparenttextures.com/patterns/dark-tire.png");
  background-image: url("https://www.transparenttextures.com/patterns/debut-light.png");
}

.interest-intro {
  max-width: 720px;
  margin: 0.65rem 0 1.1rem 0;
}

.interest-form {
  display: block;
  max-width: 720px;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.interest-form .field-group {
  margin-bottom: 0.9rem;
}

.interest-form label {
  display: block;
  font-family: inherit;
  font-weight: 600;
  padding: 0 0.25rem;
  margin-bottom: 0.15rem;
}

.interest-form input[type=text],
.interest-form input[type=email],
.interest-form textarea {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgb(239, 222, 172);
  border-radius: 0.4rem;
  background: #fff;
  color: rgb(76, 28, 25);
}

.interest-form input[type=text]:focus,
.interest-form input[type=email]:focus,
.interest-form textarea:focus {
  outline: none;
  box-shadow: none;
  border-color: rgb(225.7151515152, 194.6, 103.0848484848);
}

.interest-form input[type=text]:focus-visible,
.interest-form input[type=email]:focus-visible,
.interest-form textarea:focus-visible {
  outline: none;
  box-shadow: none;
  border-color: rgb(225.7151515152, 194.6, 103.0848484848);
}

.interest-form fieldset {
  border: 1px solid rgb(225.7151515152, 194.6, 103.0848484848);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
}

.interest-form legend {
  font-weight: 600;
  padding: 0 0.25rem;
}

.interest-form .checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem 1rem;
  margin: 0.35rem 0 0.5rem 0;
}

.interest-form .checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.interest-form .checkbox-grid label {
  font-weight: 400;
}

.interest-form .checkbox-grid input[type=checkbox] {
  margin-top: 0;
  width: 1.15em;
  height: 1.15em;
  accent-color: rgb(123, 45, 26);
  flex: 0 0 auto;
}

.interest-form .separate {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-weight: 400;
  margin-top: 0.9rem;
}

.interest-form input[type=checkbox] {
  width: 1.15em;
  height: 1.15em;
  margin-top: 0;
  accent-color: rgb(123, 45, 26);
  flex: 0 0 auto;
}

/* Submit button refinements (scoped) */
.interest-form .button {
  border: none;
  box-shadow: none;
  font-variant: normal;
  text-transform: lowercase;
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

.interest-form .button:hover {
  background: rgb(193, 113, 98);
}

.interest-status {
  margin-top: 0.75rem;
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  font-size: 0.95rem;
}

.interest-status--pending {
  opacity: 0.8;
}

.interest-status--success {
  color: rgb(123, 45, 26);
}

.interest-status--error {
  color: rgb(193, 113, 98);
}

.interest-success {
  margin-top: 1rem;
  max-width: 720px;
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 220ms ease-in-out;
}

.interest-form,
.interest-success {
  transition: opacity 220ms ease-in-out;
}

.interest--submitted .interest-form {
  opacity: 0;
  pointer-events: none;
}

.interest--submitted .interest-success {
  opacity: 1;
}

@media (min-width: 900px) {
  .interest-form .checkbox-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}

.content-grid .cards {
  margin-block: 0;
}

.content-grid__right {
  background: #fff;
  padding: 1.25rem;
  border-radius: 0.5rem;
}

.content-grid__left .bio-image {
  float: left;
  width: 220px;
  height: auto;
  border-radius: 0.5rem;
  margin: 0 1rem 0.5rem 0;
}

.content-grid__left .inline-h3 {
  display: inline;
  font-family: "Bree Serif", Georgia, Cambria, "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: calc(var(--font-size-base) * 1.1783196535);
  margin-right: 0.35rem;
}

.content-grid__left p + p {
  margin-top: 0.75rem;
}

.bio-collapsible .bio-more {
  display: inline;
}

.bio-collapsible .bio-more-toggle {
  display: none;
}

@media (min-width: 900px) {
  .content-grid {
    grid-template-columns: 30% 1fr;
    align-items: start;
    gap: 3rem;
  }
}
@media (max-width: 600px) {
  .content-grid__left .bio-image {
    width: 150px;
  }
  .bio-collapsible .bio-more {
    display: none;
  }
  .bio-collapsible .bio-more-toggle {
    display: inline;
    font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    font-size: calc(var(--font-size-base) * 0.9819330446);
    margin-left: 0.25rem;
    color: rgb(123, 45, 26);
    text-decoration: underline;
    cursor: pointer;
  }
  .bio-more-paragraph {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 280ms ease, opacity 200ms ease;
    margin-top: 0.5rem;
  }
}
header {
  --header-height-base: 24vw;
  --header-height-max: 340px;
  --header-height-min: 280px;
  --header-height: clamp(var(--header-height-min), var(--header-height-base), var(--header-height-max));
  --logo-factor: 0.15;
  margin: calc(var(--header-height) * 0.16) 0 0.5rem 0;
  background-color: rgb(123, 45, 26);
  background-image: url("https://www.transparenttextures.com/patterns/bedge-grunge.png");
  background-image: url("https://www.transparenttextures.com/patterns/concrete-wall.png");
  background-image: url("https://www.transparenttextures.com/patterns/dark-tire.png");
  background-image: url("https://www.transparenttextures.com/patterns/debut-light.png");
  color: rgb(255, 255, 245);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header-height);
  padding: 0;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: min(1600px, 98vw);
}
header .container .logo {
  max-height: 100%;
  max-width: 100%;
  position: relative;
  --logo-aspect-ratio: calc(1024 / 999);
}
header .container .logo img {
  --logo-width: calc(var(--header-height) * (1 + var(--logo-factor)));
  --logo-height: calc(var(--logo-width) * (1 / var(--logo-aspect-ratio)));
  width: var(--logo-width);
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
  filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.1));
  margin-top: calc((var(--logo-height) - var(--header-height)) * -0.5);
}
header .heading {
  margin-right: auto;
}
header h1 {
  color: rgb(255, 255, 245);
  margin: 0;
}
header h2 {
  color: rgb(239, 222, 172);
}
header .info {
  margin-top: 0.5rem;
}
header .info .info-divider {
  margin: 0 0.5rem;
}
header .info .classes {
  font-size: calc(var(--font-size-base) * 1.095445115);
  margin-top: 0.5rem;
}
header .info .dates {
  display: inline-block;
  font-size: calc(var(--font-size-base) * 1);
  padding: 0.15rem 0.6rem;
  margin-right: 0.5rem;
  border-radius: 9999px;
  background-color: rgb(239, 222, 172);
  color: rgb(76, 28, 25);
  line-height: 1.1;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.12);
  vertical-align: middle;
}
header .info .about {
  max-width: 85ch;
  font-size: calc(var(--font-size-base) * 1);
  font-style: italic;
  margin-top: 1rem;
}

@media (max-width: 600px) {
  header {
    --logo-factor: 0;
  }
  header .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-items: center;
    height: auto;
    text-align: center;
    gap: 1rem;
  }
  header .container .heading {
    padding: 0 1rem 1rem;
  }
  header .container .logo img {
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: -10%;
  }
}
.cards {
  display: grid;
  grid-template-columns: 1fr;
  --cards-gap: 3rem;
  gap: var(--cards-gap);
  margin-block: 2rem;
}

.card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #fff;
  color: rgb(76, 28, 25);
  border-radius: 0.5rem;
  overflow: visible;
  box-shadow: none;
}

.card + .card {
  position: relative;
}

.card + .card::before {
  content: "";
  position: absolute;
  top: calc(-0.5 * var(--cards-gap));
  left: 30%;
  width: 40%;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
}

.card__media {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 0.5rem;
}

.button.button--interest {
  position: absolute;
  right: 0.6rem;
  bottom: 0.6rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: calc(var(--font-size-base) * 0.946772481);
  padding: 0.45rem 0.8rem 0.55rem;
  line-height: 1;
  background: rgb(239, 222, 172);
  color: rgb(76, 28, 25);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-radius: 0.5rem;
}

.button.button--interest:hover {
  background: rgb(193, 113, 98);
  color: rgb(255, 255, 245);
}

.card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: inherit;
}

.card__body {
  padding: 0.5rem 0.75rem;
}

.card__title {
  font-size: calc(var(--font-size-base) * 1.2559621673);
  margin: 0;
  display: inline;
  line-height: 1.1;
}

.card__subtitle {
  font-size: calc(var(--font-size-base) * 0.9819330446);
  line-height: 1.1;
  opacity: 0.9;
  margin: 0;
  display: inline;
  margin-left: 0.5rem;
}

.card__time {
  font-size: calc(var(--font-size-base) * 1);
  line-height: 1.2;
  margin: 0.5rem 0 0.35rem 0;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.9;
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: #333;
  font-variant-caps: all-small-caps;
}

.card__dates {
  font-size: calc(var(--font-size-base) * 1);
  line-height: 1.2;
  opacity: 0.8;
  margin: 0.35rem 0 0.6rem 0;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: #333;
  font-variant-caps: all-small-caps;
}

.card__dates > div + div {
  margin-top: 0.08rem;
}

.card__desc {
  font-size: calc(var(--font-size-base) * 0.946772481);
  line-height: 1.35;
  margin-top: 0.75rem;
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: #333;
}

.card__dates strong {
  font-variant-caps: all-small-caps;
  letter-spacing: 0.02em;
  font-weight: 700;
}

@media (min-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }
  .card {
    display: grid;
    grid-template-columns: 40% 1fr;
    align-items: stretch;
    min-height: 280px;
  }
  .card__media {
    aspect-ratio: auto;
    align-self: stretch;
  }
  .card__body {
    padding: 0 1.5rem;
  }
}
@media (max-width: 600px) {
  .card__body {
    padding: 1rem 0 0.75rem 0;
  }
  .card__time,
  .card__dates {
    font-size: calc(var(--font-size-base) * 1.0183993761);
  }
  .card__desc {
    font-size: calc(var(--font-size-base) * 0.964192504);
  }
}
h1 {
  font-size: calc(var(--font-size-base) * 2.0736);
  margin-bottom: 0.75rem;
}

h2 {
  font-size: calc(var(--font-size-base) * 1.44);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-headings, Bree Serif, Georgia, Cambria, Times New Roman, Times, serif);
  font-optical-sizing: auto;
}

.font-toggle {
  position: fixed;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 1000;
  padding: 0.35rem 0.55rem;
  border: none;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.35);
  color: rgb(255, 255, 245);
  font: inherit;
  font-size: 0.85rem;
  line-height: 1;
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 120ms ease-in-out, transform 120ms ease-in-out;
}

.font-toggle:hover {
  opacity: 1;
}

.font-toggle:active {
  transform: translateY(1px);
}

p {
  max-width: 65ch;
  opacity: 0.9;
}

@media (max-width: 900px) {
  h1 {
    font-size: calc(var(--font-size-base) * 1.728);
  }
  h2 {
    font-size: calc(var(--font-size-base) * 1.314534138);
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: calc(var(--font-size-base) * 1.5774409656);
  }
  h2 {
    font-size: calc(var(--font-size-base) * 1.2);
  }
}
.button {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: 0.5rem;
  background: rgb(123, 45, 26);
  color: rgb(255, 255, 245);
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.02em;
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

/*# sourceMappingURL=main.css.map */
