:root {
  --burgundy: #742d35;
  --burgundy-dark: #542027;
  --cream: #f4eddd;
  --ivory: #fbf7ed;
  --ink: #2b2825;
  --muted: #675f57;
  --line: rgba(84,32,39,.18);
  --max: 1160px;
  --shadow: 0 18px 45px rgba(65,39,32,.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(calc(100% - 36px), var(--max));
  margin: auto;
}


/* =========================
   HEADER / NAVIGATION
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--burgundy);
  border-bottom: 1px solid var(--burgundy-dark);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.brand img {
  width: 235px;
  max-height: 62px;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  gap: 27px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  font-weight: 700;
  color: #fff;
}

.nav a:hover,
.nav a:focus {
  color: #f3dfc3;
}


/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.45);
  background: transparent;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: #fff;
  transition: .25s;
}

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

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

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

.mobile-menu {
  display: none;
  background: var(--burgundy-dark);
  border-top: 1px solid rgba(255,255,255,.18);
}

.mobile-menu-inner {
  display: grid;
}

.mobile-menu a {
  padding: 14px 3px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  text-decoration: none;
  font-weight: 700;
  color: #fff;
}

.mobile-menu a:hover,
.mobile-menu a:focus {
  color: #f3dfc3;
}


/* =========================
   HERO
========================= */

.hero {
  padding: clamp(45px,7vw,90px) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: clamp(35px,5vw,70px);
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 800;
  font-size: .78rem;
  color: var(--burgundy);
  display: inline-block;
  margin-bottom: 13px;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--burgundy-dark);
  line-height: 1.12;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(2.5rem,5.2vw,5rem);
}

h2 {
  font-size: clamp(2rem,3.6vw,3.25rem);
}

h3 {
  font-size: 1.55rem;
}

.hero-copy > p,
.lede,
.section-intro {
  font-size: 1.12rem;
  color: var(--muted);
}

.button-row {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  min-height: 50px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.btn-primary {
  background: var(--burgundy);
  color: #fff;
}

.btn-primary:hover {
  background: var(--burgundy-dark);
}

.btn-secondary {
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  background: transparent;
}

.hero-media {
  position: relative;
  background: var(--cream);
  padding: 13px;
  border-radius: 25px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  border-radius: 17px;
}

.photo-caption {
  position: absolute;
  right: 26px;
  bottom: 25px;
  background: rgba(251,247,237,.93);
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--burgundy-dark);
  font-family: Georgia, serif;
  font-style: italic;
}


/* =========================
   GENERAL SECTIONS
========================= */

.section {
  padding: clamp(60px,8vw,100px) 0;
}

.section-soft {
  background: var(--cream);
  border-block: 1px solid var(--line);
}

.section-grid,
.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(30px,5vw,65px);
  align-items: start;
}

.paper {
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(25px,3vw,38px);
  box-shadow: var(--shadow);
}

.copy-stack p:first-child {
  margin-top: 0;
}

.copy-stack p:last-child {
  margin-bottom: 0;
}


/* =========================
   WRITING / PUBLICATIONS
========================= */

.works-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 28px;
  margin-top: 32px;
}

/*
  Top-align the contents of each publication box.
  This keeps both covers and their accompanying
  text at the top regardless of differences in
  the amount of copy.
*/

.work-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 25px;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 22px;
  align-items: start;
}

.cover {
  align-self: start;
}

.cover img {
  width: 100%;
  height: auto;
  box-shadow: 0 12px 24px rgba(0,0,0,.17);
}

.work-card > div {
  align-self: start;
}

.work-card h3 {
  margin-top: 0;
}


/* =========================
   NOTES FROM THE HOLLOW
========================= */

.section-burgundy {
  background: var(--burgundy-dark);
  color: var(--ivory);
}

.section-burgundy h2 {
  color: #fff;
}

.eyebrow.light {
  color: #ead8bd;
}

.section-burgundy .section-intro {
  color: #eadfd0;
  max-width: 700px;
}

.notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 34px;
}

.notes-grid figure {
  margin: 0;
  background: #fff;
  padding: 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,.25);
}


/* =========================
   FOOTER
========================= */

.footer {
  padding: 28px 0;
  background: #eee4d1;
  color: var(--muted);
  font-size: .92rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--burgundy);
  font-weight: bold;
  text-decoration: none;
}


/* =========================
   TABLET
========================= */

@media (max-width:900px) {

  .hero-grid,
  .section-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 650px;
  }

  .notes-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width:760px) {

  .site-header {
    position: static;
  }

  .nav-desktop {
    display: none;
  }

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

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

  .brand img {
    width: 205px;
  }

  .hero {
    padding-top: 32px;
  }

  .works-grid,
  .notes-grid {
    grid-template-columns: 1fr;
  }

  .work-card {
    grid-template-columns: 130px 1fr;
    align-items: start;
  }

  .button-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}