@font-face {
  font-family: "EB Garamond";
  src: url("eb-garamond.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("eb-garamond-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #f8f6ef;
  --ink: #282621;
  --red: #7c272b;
  --muted: #68635c;
  --rule: #d7d1c7;
}

* { box-sizing: border-box; }

html { background: var(--paper); }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}

::selection { color: var(--paper); background: var(--red); }

.page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6.1vw, 88px);
}

.masthead {
  min-height: 126px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--rule);
}

.logo { display: block; width: 88px; height: 88px; object-fit: contain; }

.eyebrow {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.masthead .eyebrow, .header-date { color: var(--muted); }
.header-date { justify-self: end; font-size: 18px; font-style: italic; }

.introduction { padding: 51px 0 64px; text-align: center; }

h1 {
  margin: 0;
  font-size: clamp(44px, 9vw, 128px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -.045em;
}

.motto {
  margin: 24px 0 0;
  font-size: clamp(32px, 3.5vw, 49px);
  line-height: 1.09;
  letter-spacing: -.025em;
}

.motto em { color: var(--red); font-weight: 400; }

.editorial {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  padding: 50px 0 65px;
  border-top: 1px solid var(--rule);
}

.mission { max-width: 530px; }
.mission .eyebrow { color: var(--red); margin-bottom: 21px; }
.mission p { margin: 0 0 16px; font-size: 21px; line-height: 1.43; }
.mission p:last-child { margin-bottom: 0; }
.mission .mission-lead { margin-bottom: 20px; font-size: 32px; line-height: 1.12; letter-spacing: -.025em; }

.books {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(13px, 1.5vw, 22px);
  padding: 12px 0 30px;
}

.book { margin: 0; }
.book-two { margin-top: 44px; }
.book-three { margin-top: 88px; }
.book img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 3px 5px #2826210c, 4px 14px 23px -9px #28262130;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 29px 0 40px;
  border-top: 1px solid var(--rule);
}

.coming-soon { margin: 0; color: var(--muted); font-size: 19px; line-height: 1.35; }
.contact { text-align: right; }
.contact .eyebrow { margin-bottom: 3px; color: var(--muted); }
.contact a {
  display: inline-block;
  padding: 4px 0;
  color: var(--red);
  font-size: 25px;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 180ms ease;
}
.contact a:hover { text-decoration-color: currentColor; }
.contact a:focus-visible { outline: 2px solid var(--red); outline-offset: 6px; }

@media (min-width: 1600px) {
  .page { padding-top: 15px; }
  .introduction { padding-top: 60px; padding-bottom: 72px; }
}

@media (max-width: 900px) {
  .masthead { min-height: 110px; }
  .logo { width: 76px; height: 76px; }
  .editorial { gap: 36px; grid-template-columns: 1.05fr 1fr; }
  .mission p { font-size: 20px; }
  .mission .mission-lead { font-size: 29px; }
  .book-two { margin-top: 30px; }
  .book-three { margin-top: 60px; }
}

@media (max-width: 680px) {
  .masthead { min-height: 103px; grid-template-columns: 1fr auto; gap: 15px; }
  .masthead .eyebrow { max-width: 155px; text-align: right; font-size: 12px; }
  .header-date { display: none; }
  .logo { width: 76px; height: 76px; }
  .introduction { padding: 43px 0 44px; }
  h1 { font-size: clamp(39px, 9.4vw, 64px); letter-spacing: -.035em; }
  .motto { margin-top: 25px; font-size: clamp(29px, 6.9vw, 43px); line-height: 1.13; }
  .editorial { grid-template-columns: 1fr; gap: 37px; padding: 34px 0 40px; }
  .mission { max-width: none; }
  .mission .eyebrow { margin-bottom: 19px; }
  .mission .mission-lead { font-size: 29px; }
  .mission p { font-size: 20px; line-height: 1.4; }
  .books { max-width: 450px; width: 100%; margin: 0 auto; padding: 0 0 6px; gap: 17px; }
  .book-two { margin-top: 26px; }
  .book-three { margin-top: 52px; }
  .footer { align-items: flex-start; flex-direction: column; gap: 27px; padding: 26px 0 34px; }
  .coming-soon { font-size: 19px; }
  .contact { text-align: left; }
  .contact a { font-size: 26px; }
  .desktop-break { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}

@media print {
  .page { max-width: none; padding: 0; }
  .masthead { min-height: 95px; }
  .introduction { padding: 30px 0; }
  h1 { font-size: 70px; }
  .editorial { padding: 30px 0; }
  .book img { box-shadow: none; }
  .contact a { text-decoration-color: currentColor; }
}
