:root {
  --pink: #d394ab;
  --green: #284f3f;
  --cream: #f5f3f1;
  --ink: #1f1b19;
  --paper: #fffdf9;
  --serif: "PT Serif", Georgia, serif;
  --display: "Marcellus", Georgia, serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 26px 48px;
  color: var(--paper);
  mix-blend-mode: difference;
}

.brand,
.desktop-nav a,
.mobile-menu a {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0;
}

.brand {
  font-size: 20px;
}

.desktop-nav {
  display: flex;
  gap: 28px;
}

.desktop-nav a.active {
  opacity: 0.65;
}

.menu-toggle,
.menu-close {
  display: none;
}

.mobile-menu {
  display: none;
}

main {
  min-height: 70vh;
}

.pink {
  background: var(--pink);
}

.green {
  background: var(--green);
  color: var(--paper);
}

.cream {
  background: var(--cream);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
}

h1 {
  font-size: clamp(48px, 8vw, 118px);
}

h2 {
  font-size: clamp(36px, 5vw, 72px);
}

h3 {
  font-size: clamp(22px, 3vw, 34px);
}

.home-hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  padding: 120px 7vw 72px;
  gap: 5vw;
}

.hero-media img {
  width: min(46vw, 620px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-title {
  max-width: 760px;
}

.section {
  padding: 96px 7vw;
}

.visual-media {
  display: grid;
  gap: 56px;
}

.feature-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.media-card {
  display: grid;
  gap: 18px;
}

.media-card img {
  width: 100%;
  height: 58vw;
  max-height: 760px;
  min-height: 420px;
  object-fit: cover;
}

.media-card h4 {
  font-size: 28px;
  text-decoration: underline;
}

.pill,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  padding: 12px 30px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 15px;
}

.pill.dark,
.contact-form button {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.contracted {
  text-align: center;
}

.embed-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
  gap: 28px;
  margin: 48px auto;
}

.embed {
  background: #111;
  overflow: hidden;
}

.embed iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  border: 0;
}

.about-strip {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 44vw);
  align-items: center;
  gap: 8vw;
}

.about-strip p {
  font-size: 22px;
}

.about-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.contact-form-wrap {
  padding: 92px 7vw 120px;
}

.contact-form {
  width: min(720px, 100%);
  display: grid;
  gap: 20px;
}

.contact-form h1 {
  margin-bottom: 22px;
}

.contact-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  border: 0;
}

.contact-form legend,
.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 15px;
}

.contact-form span {
  font-size: 13px;
  opacity: 0.8;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  padding: 14px 18px;
  font: inherit;
}

.contact-form textarea {
  border-radius: 24px;
  resize: vertical;
}

.about-page,
.contact-page {
  min-height: 100vh;
  padding: 150px 7vw 96px;
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 760px);
  gap: 7vw;
  align-items: start;
}

.contact-page {
  grid-template-columns: minmax(260px, 44vw) minmax(0, 650px);
}

.about-photo img {
  aspect-ratio: 1;
  object-fit: cover;
}

.contact-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about-copy p,
.detail-copy p,
.article-page p {
  font-size: 18px;
}

.collection-page {
  padding: 150px 5vw 100px;
  min-height: 100vh;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-card {
  display: grid;
  gap: 18px;
  text-align: center;
}

.grid-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.video-grid .grid-card img {
  aspect-ratio: 16 / 9;
}

.gallery-page {
  padding: 130px 4vw 90px;
}

.masonry {
  columns: 3 260px;
  column-gap: 18px;
}

.masonry img {
  width: 100%;
  margin: 0 0 18px;
  break-inside: avoid;
}

.detail-page,
.article-page,
.blog-index,
.not-found {
  padding: 150px 8vw 96px;
  min-height: 100vh;
}

.detail-page {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  gap: 6vw;
}

.media-stack {
  display: grid;
  gap: 26px;
  align-content: start;
}

.detail-image {
  width: 100%;
  object-fit: contain;
}

.article-page article {
  width: min(850px, 100%);
  margin: 0 auto;
}

.article-page h1 {
  font-size: clamp(42px, 5vw, 76px);
  margin-bottom: 44px;
}

.article-image {
  margin: 0 0 36px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 32px;
}

.post-card {
  min-height: 260px;
}

.post-card p {
  margin: 0 0 12px;
  font-size: 14px;
}

.post-card h2 {
  font-size: 28px;
  margin-bottom: 22px;
}

.read-more {
  text-decoration: underline;
}

.page-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 42px;
}

.page-links a {
  text-decoration: underline;
}

.site-footer {
  background: var(--cream);
  display: grid;
  gap: 18px;
  justify-items: start;
  padding: 70px 7vw;
}

.site-footer h3 {
  font-size: 24px;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 78px;
    padding: 22px 24px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 6px;
    border: 0;
    background: transparent;
    color: currentColor;
    padding: 8px;
  }

  .menu-toggle span {
    width: 26px;
    height: 1px;
    background: currentColor;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    display: none;
    background: var(--cream);
    color: var(--ink);
    mix-blend-mode: normal;
    padding: 24px;
  }

  .menu-open .mobile-menu {
    display: block;
  }

  .mobile-menu-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-close {
    display: block;
    border: 0;
    background: transparent;
    font-family: var(--display);
  }

  .mobile-menu nav {
    display: grid;
    gap: 18px;
    margin-top: 70px;
  }

  .mobile-menu nav a {
    font-size: 34px;
  }

  .home-hero,
  .feature-pair,
  .about-strip,
  .about-page,
  .contact-page,
  .detail-page,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding-top: 110px;
    min-height: auto;
  }

  .hero-media img {
    width: 100%;
  }

  .media-card img {
    min-height: 0;
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .embed-row,
  .collection-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

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

  .collection-page,
  .detail-page,
  .article-page,
  .blog-index,
  .not-found,
  .about-page,
  .contact-page {
    padding-top: 110px;
  }
}
