/* ---------------------------------
   RESET
---------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f7f4ee;
  color: #211d1e;
  font-family: "DM Sans", sans-serif;
}


/* ---------------------------------
   SITE COLOURS
---------------------------------- */

:root {
  --cream: #f7f4ee;
  --bone: #e7ded1;

  --ink: #1c1719;

  --wine: #4d0d12;
  --oxblood: #70252f;

  --brass: #b29463;

  --dusty-blue: #8794a1;

  --soft-black: #211d1e;
  --ivory: #f8f3eb;
}


/* ---------------------------------
   HEADER
---------------------------------- */

.site-header {
  width: 100%;
  height: 82px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 5%;

  background: var(--cream);

  border-bottom: 1px solid rgba(33, 29, 30, 0.11);
}

.logo {
  color: var(--soft-black);
  text-decoration: none;

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 3px;
}

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

nav a {
  position: relative;

  color: var(--soft-black);
  text-decoration: none;

  font-size: 12px;
}

nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -7px;

  width: 0;
  height: 1px;

  background: var(--wine);

  transition: width 0.25s ease;
}

nav a:hover::after {
  width: 100%;
}


/* ---------------------------------
   HERO
---------------------------------- */

.hero {
  min-height: 76vh;

  display: grid;
  grid-template-columns: 1.18fr 0.82fr;

  align-items: center;

  gap: 70px;

  padding: 48px 5% 38px;

  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 5;
}

.eyebrow {
  margin-bottom: 20px;

  color: var(--oxblood);

  font-size: 10px;
  font-weight: 500;

  letter-spacing: 3.4px;
}

h1 {
  font-family: "Cormorant Garamond", serif;

  font-size: clamp(88px, 11vw, 178px);

  font-weight: 500;

  line-height: 0.73;

  letter-spacing: -7px;
}

h1 span {
  display: block;
  margin-left: 7%;
}

.hero-text {
  max-width: 500px;

  margin-top: 38px;

  font-size: 18px;
  font-weight: 300;

  line-height: 1.55;
}

.hero-button {
  display: inline-flex;
  align-items: center;

  gap: 18px;

  margin-top: 26px;

  padding: 15px 22px;

  background: var(--oxblood);
  color: var(--ivory);

  text-decoration: none;

  font-size: 12px;
  font-weight: 500;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.hero-button span {
  transition: transform 0.25s ease;
}

.hero-button:hover {
  background: var(--wine);
  transform: translateY(-2px);
}

.hero-button:hover span {
  transform: translateX(4px);
}


/* ---------------------------------
   HERO BOOK ART
---------------------------------- */

.hero-art {
  position: relative;

  min-height: 555px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.cover-backdrop {
  position: absolute;

  width: 78%;
  max-width: 395px;

  aspect-ratio: 2 / 3;

  background: var(--bone);

  transform:
    translate(24px, 22px)
    rotate(4deg);
}

.cover-wrapper {
  position: relative;

  width: 78%;
  max-width: 395px;

  z-index: 2;

  transform: rotate(2.2deg);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;

  box-shadow:
    0 28px 55px rgba(28, 23, 25, 0.15);
}

.cover-wrapper:hover {
  transform:
    rotate(0deg)
    translateY(-8px);

  box-shadow:
    0 38px 70px rgba(28, 23, 25, 0.23);
}

.book-cover {
  display: block;

  width: 100%;
  height: auto;
}

.book-note {
  position: absolute;

  right: -10px;
  bottom: 68px;

  z-index: 4;

  display: flex;
  align-items: center;

  gap: 12px;

  transform: rotate(-2deg);
}

.note-line {
  width: 42px;
  height: 1px;

  background: var(--oxblood);
}

.book-note p {
  color: var(--oxblood);

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 2.8px;
}


/* ---------------------------------
   SCROLL TEASER
---------------------------------- */

.scroll-tease {
  min-height: 42px;

  display: flex;
  justify-content: center;
  align-items: center;

  gap: 12px;

  padding-bottom: 14px;

  color: var(--oxblood);

  font-size: 8px;
  font-weight: 500;

  letter-spacing: 2.8px;
}

.scroll-arrow {
  font-size: 14px;
}


/* ---------------------------------
   FEATURED BOOK
---------------------------------- */

.featured-book {
  position: relative;

  width: 100%;

  padding: 110px 5% 125px;

  background: var(--wine);
  color: var(--ivory);

  overflow: hidden;
}

.featured-book::after {
  content: "PVT";

  position: absolute;

  right: -45px;
  bottom: -110px;

  font-family: "Cormorant Garamond", serif;

  font-size: 320px;
  font-weight: 500;

  color: rgba(248, 243, 235, 0.035);

  pointer-events: none;
}

.featured-book-inner {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;
}

.featured-book-number {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 62px;

  color: var(--brass);

  font-size: 9px;
  font-weight: 500;

  letter-spacing: 2.8px;
}

.featured-book-line {
  display: block;

  width: 55px;
  height: 1px;

  background: var(--brass);
}

.featured-kicker {
  margin-bottom: 18px;

  color: var(--brass);

  font-size: 9px;
  font-weight: 500;

  letter-spacing: 3px;
}

.featured-book-title h2 {
  max-width: 1000px;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(76px, 10vw, 155px);
  font-weight: 500;

  line-height: 0.77;

  letter-spacing: -5px;
}

.featured-book-title h2 span {
  display: block;
  margin-left: 8%;
}

.featured-book-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;

  gap: 110px;

  align-items: end;

  margin-top: 75px;
}

.featured-book-copy {
  max-width: 620px;
}

.featured-book-copy p {
  margin-bottom: 22px;

  color: rgba(248, 243, 235, 0.78);

  font-size: 16px;
  font-weight: 300;

  line-height: 1.7;
}

.featured-book-copy .featured-lead {
  color: var(--ivory);

  font-family: "Cormorant Garamond", serif;

  font-size: 28px;
  font-weight: 400;

  line-height: 1.35;
}

.featured-book-button {
  display: inline-flex;
  align-items: center;

  gap: 18px;

  margin-top: 10px;

  padding-bottom: 6px;

  color: var(--ivory);

  text-decoration: none;

  border-bottom: 1px solid rgba(248, 243, 235, 0.65);

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.featured-book-button span {
  transition: transform 0.25s ease;
}

.featured-book-button:hover span {
  transform: translateX(5px);
}

.featured-review {
  position: relative;

  max-width: 440px;

  padding-left: 35px;

  border-left: 1px solid rgba(178, 148, 99, 0.55);
}

.review-mark {
  display: block;

  height: 62px;

  font-family: "Cormorant Garamond", serif;

  font-size: 100px;

  line-height: 0.8;

  color: var(--brass);
}

.featured-review blockquote {
  font-family: "Cormorant Garamond", serif;

  font-size: 32px;
  font-style: italic;

  line-height: 1.25;
}

.review-credit {
  margin-top: 24px;

  color: var(--brass);

  font-size: 9px;
  font-weight: 500;

  letter-spacing: 2.6px;
}


/* ---------------------------------
   ABOUT
---------------------------------- */

.about-home {
  position: relative;

  padding: 120px 5% 135px;

  background: var(--bone);

  overflow: hidden;
}

.about-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.about-label {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 65px;

  color: var(--oxblood);

  font-size: 9px;
  font-weight: 500;

  letter-spacing: 2.8px;
}

.about-label-line {
  width: 55px;
  height: 1px;

  background: var(--oxblood);
}

.about-grid {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;
  grid-template-rows: auto auto;

  column-gap: 95px;
  row-gap: 30px;

  align-items: center;
}

.about-photo-wrap {
  position: relative;

  grid-row: 1 / span 2;

  width: 100%;
  max-width: 470px;
}

.about-photo-backdrop {
  position: absolute;

  width: 100%;
  height: 100%;

  left: 22px;
  top: 22px;

  background: var(--dusty-blue);

  transform: rotate(-3deg);
}

.about-photo {
  position: relative;
  z-index: 2;

  display: block;

  width: 100%;
  height: auto;

  transform: rotate(1.5deg);

  box-shadow:
    0 28px 55px rgba(28, 23, 25, 0.14);
}

.about-photo-note {
  position: absolute;

  left: -24px;
  bottom: 28px;

  z-index: 3;

  padding: 10px 14px;

  background: var(--cream);

  color: var(--oxblood);

  font-size: 8px;
  font-weight: 600;

  letter-spacing: 2.3px;

  transform: rotate(-2deg);
}

.about-copy {
  max-width: 650px;
}

.about-kicker {
  margin-bottom: 18px;

  color: var(--dusty-blue);

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 3px;
}

.about-copy h2 {
  margin-bottom: 34px;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(70px, 8vw, 128px);

  font-weight: 500;

  line-height: 0.78;

  letter-spacing: -4px;
}

.about-copy h2 span {
  display: block;
  margin-left: 12%;
}

.about-copy p {
  margin-bottom: 20px;

  max-width: 610px;

  color: rgba(33, 29, 30, 0.82);

  font-size: 16px;
  font-weight: 300;

  line-height: 1.7;
}

.about-copy .about-lead {
  color: var(--soft-black);

  font-family: "Cormorant Garamond", serif;

  font-size: 27px;
  font-weight: 400;

  line-height: 1.35;
}

.about-button {
  display: inline-flex;
  align-items: center;

  gap: 16px;

  margin-top: 8px;

  padding-bottom: 6px;

  color: var(--soft-black);

  text-decoration: none;

  border-bottom: 1px solid rgba(33, 29, 30, 0.5);

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}

.about-button span {
  transition: transform 0.25s ease;
}

.about-button:hover span {
  transform: translateX(5px);
}

.about-statement {
  grid-column: 2;

  margin-top: 20px;
}

.about-statement p {
  max-width: 680px;

  color: var(--oxblood);

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(44px, 5vw, 78px);

  font-style: italic;

  line-height: 0.95;

  letter-spacing: -2px;
}


/* ---------------------------------
   EVENTS HOME
---------------------------------- */

.events-home {
  padding: 115px 5% 125px;

  background: var(--cream);
}

.events-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.events-label {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 60px;

  color: var(--oxblood);

  font-size: 9px;
  font-weight: 500;

  letter-spacing: 2.8px;
}

.events-label-line {
  width: 55px;
  height: 1px;

  background: var(--oxblood);
}

.events-heading-row {
  display: grid;

  grid-template-columns: 1.3fr 0.7fr;

  gap: 70px;

  align-items: end;

  margin-bottom: 70px;
}

.events-kicker {
  margin-bottom: 16px;

  color: var(--dusty-blue);

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 3px;
}

.events-heading-row h2 {
  font-family: "Cormorant Garamond", serif;

  font-size: clamp(72px, 8vw, 128px);
  font-weight: 500;

  line-height: 0.78;

  letter-spacing: -4px;
}

.events-heading-row h2 span {
  display: block;
  margin-left: 8%;
}

.events-intro {
  max-width: 400px;

  padding-bottom: 8px;

  color: rgba(33, 29, 30, 0.72);

  font-size: 15px;
  font-weight: 300;

  line-height: 1.7;
}


/* ---------------------------------
   EVENT LIST
---------------------------------- */

.event-list {
  border-top: 1px solid rgba(33, 29, 30, 0.18);
}

.event-card {
  display: grid;

  grid-template-columns: 180px 1fr 110px;

  gap: 40px;

  align-items: center;

  min-height: 190px;

  padding: 28px 0;

  border-bottom: 1px solid rgba(33, 29, 30, 0.18);

  transition:
    padding-left 0.3s ease,
    background 0.3s ease;
}

.event-card:hover {
  padding-left: 18px;

  background: rgba(231, 222, 209, 0.45);
}

.event-date {
  display: grid;

  grid-template-columns: auto auto;

  align-items: end;

  width: fit-content;
}

.event-month {
  grid-column: 1;

  margin-bottom: 5px;

  color: var(--oxblood);

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 2px;
}

.event-day {
  grid-column: 1;

  font-family: "Cormorant Garamond", serif;

  font-size: 82px;
  font-weight: 500;

  line-height: 0.72;

  letter-spacing: -4px;
}

.event-year {
  grid-column: 2;

  margin-left: 8px;
  margin-bottom: 3px;

  color: rgba(33, 29, 30, 0.48);

  font-size: 9px;

  writing-mode: vertical-rl;

  transform: rotate(180deg);

  letter-spacing: 1.5px;
}

.event-location {
  margin-bottom: 8px;

  color: var(--oxblood);

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 2.5px;
}

.event-info h3 {
  margin-bottom: 8px;

  font-family: "Cormorant Garamond", serif;

  font-size: 37px;
  font-weight: 500;

  line-height: 1;
}

.event-description {
  color: rgba(33, 29, 30, 0.65);

  font-size: 14px;
  font-weight: 300;

  line-height: 1.6;
}

.event-link-wrap {
  display: flex;
  justify-content: flex-end;
}

.event-link {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  color: var(--soft-black);

  text-decoration: none;

  font-size: 10px;
  font-weight: 500;

  letter-spacing: 1.3px;

  text-transform: uppercase;
}

.event-link span {
  transition: transform 0.25s ease;
}

.event-link:hover span {
  transform: translateX(5px);
}


/* ---------------------------------
   EVENTS FOOTER
---------------------------------- */

.events-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 30px;

  margin-top: 45px;
}

.events-footer p {
  color: rgba(33, 29, 30, 0.55);

  font-size: 12px;
}

.events-button {
  display: inline-flex;
  align-items: center;

  gap: 16px;

  padding: 15px 21px;

  background: var(--oxblood);
  color: var(--ivory);

  text-decoration: none;

  font-size: 10px;
  font-weight: 500;

  letter-spacing: 1.4px;

  text-transform: uppercase;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.events-button span {
  transition: transform 0.25s ease;
}

.events-button:hover {
  background: var(--wine);
  transform: translateY(-2px);
}

.events-button:hover span {
  transform: translateX(5px);
}


/* ---------------------------------
   BLOG HOME
---------------------------------- */

.blog-home {
  position: relative;

  padding: 115px 5% 120px;

  background: var(--ink);
  color: var(--ivory);

  overflow: hidden;
}

.blog-home::after {
  content: "READ";

  position: absolute;

  right: -35px;
  bottom: -115px;

  font-family: "Cormorant Garamond", serif;

  font-size: 300px;
  font-weight: 500;

  color: rgba(248, 243, 235, 0.025);

  pointer-events: none;
}

.blog-inner {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;
}

.blog-label {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 58px;

  color: var(--brass);

  font-size: 9px;
  font-weight: 500;

  letter-spacing: 2.8px;
}

.blog-label-line {
  width: 55px;
  height: 1px;

  background: var(--brass);
}

.blog-heading-row {
  display: grid;

  grid-template-columns: 1.25fr 0.75fr;

  gap: 90px;

  align-items: end;

  margin-bottom: 65px;
}

.blog-kicker {
  margin-bottom: 16px;

  color: var(--dusty-blue);

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 3px;
}

.blog-heading-row h2 {
  max-width: 850px;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(66px, 7.5vw, 120px);
  font-weight: 500;

  line-height: 0.8;

  letter-spacing: -4px;
}

.blog-heading-row h2 span {
  display: block;

  margin-left: 8%;
}

.blog-heading-row h2 em {
  display: block;

  margin-top: 12px;

  color: var(--brass);

  font-size: 0.6em;
  font-weight: 400;
  font-style: italic;

  letter-spacing: -2px;
}

.blog-heading-side {
  max-width: 400px;

  padding-bottom: 8px;
}

.blog-heading-side p {
  margin-bottom: 24px;

  color: rgba(248, 243, 235, 0.62);

  font-size: 15px;
  font-weight: 300;

  line-height: 1.7;
}

.blog-top-link {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  padding-bottom: 5px;

  color: var(--ivory);

  border-bottom: 1px solid rgba(248, 243, 235, 0.4);

  text-decoration: none;

  font-size: 10px;
  font-weight: 500;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}

.blog-top-link span {
  transition: transform 0.25s ease;
}

.blog-top-link:hover span {
  transform: translateX(5px);
}


/* ---------------------------------
   BLOG CARDS
---------------------------------- */

.blog-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid rgba(248, 243, 235, 0.15);
  border-bottom: 1px solid rgba(248, 243, 235, 0.15);
}

.blog-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 390px;

  padding: 30px 35px 32px;

  border-right: 1px solid rgba(248, 243, 235, 0.15);

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.blog-card:last-child {
  border-right: none;
}

.blog-card:hover {
  background: rgba(248, 243, 235, 0.045);

  transform: translateY(-5px);
}

.blog-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 70px;
}

.blog-number {
  color: var(--brass);

  font-family: "Cormorant Garamond", serif;

  font-size: 25px;
}

.blog-date {
  color: rgba(248, 243, 235, 0.38);

  font-size: 8px;
  font-weight: 500;

  letter-spacing: 1.8px;
}

.blog-card-copy {
  flex-grow: 1;
}

.blog-category {
  margin-bottom: 13px;

  color: var(--dusty-blue);

  font-size: 8px;
  font-weight: 600;

  letter-spacing: 2.5px;
}

.blog-card-copy h3 {
  margin-bottom: 18px;

  font-family: "Cormorant Garamond", serif;

  font-size: 40px;
  font-weight: 500;

  line-height: 0.95;
}

.blog-card-copy > p:last-child {
  max-width: 340px;

  color: rgba(248, 243, 235, 0.58);

  font-size: 13px;
  font-weight: 300;

  line-height: 1.65;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;

  width: fit-content;

  gap: 10px;

  margin-top: 35px;

  color: var(--ivory);

  text-decoration: none;

  font-size: 9px;
  font-weight: 500;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}

.blog-card-link span {
  transition: transform 0.25s ease;
}

.blog-card-link:hover span {
  transform: translateX(5px);
}


/* ---------------------------------
   BLOG BOTTOM
---------------------------------- */

.blog-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 30px;

  margin-top: 40px;
}

.blog-bottom p {
  color: rgba(248, 243, 235, 0.4);

  font-size: 11px;
}

.blog-button {
  display: inline-flex;
  align-items: center;

  gap: 16px;

  padding: 15px 21px;

  background: var(--brass);
  color: var(--ink);

  text-decoration: none;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 1.4px;

  text-transform: uppercase;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.blog-button span {
  transition: transform 0.25s ease;
}

.blog-button:hover {
  transform: translateY(-2px);

  background: var(--ivory);
}

.blog-button:hover span {
  transform: translateX(5px);
}


/* ---------------------------------
   CLOSING SECTION
---------------------------------- */

.closing-home {
  padding: 105px 5% 115px;

  background: var(--dusty-blue);
  color: var(--ink);
}

.closing-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.closing-label {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 55px;

  color: var(--wine);

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 2.8px;
}

.closing-label-line {
  width: 55px;
  height: 1px;

  background: var(--wine);
}

.closing-grid {
  display: grid;

  grid-template-columns: 1.3fr 0.7fr;

  gap: 100px;

  align-items: end;
}

.closing-kicker {
  margin-bottom: 16px;

  color: var(--wine);

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 3px;
}

.closing-copy h2 {
  font-family: "Cormorant Garamond", serif;

  font-size: clamp(72px, 8vw, 125px);
  font-weight: 500;

  line-height: 0.78;

  letter-spacing: -4px;
}

.closing-copy h2 span {
  display: block;

  margin-left: 10%;

  color: var(--ivory);
}

.closing-side {
  max-width: 430px;

  padding-bottom: 6px;
}

.closing-side > p {
  margin-bottom: 30px;

  color: rgba(28, 23, 25, 0.75);

  font-size: 15px;
  font-weight: 300;

  line-height: 1.75;
}

.social-links {
  display: flex;
  flex-wrap: wrap;

  gap: 12px 24px;
}

.social-link {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  padding-bottom: 5px;

  color: var(--ink);

  border-bottom: 1px solid rgba(28, 23, 25, 0.5);

  text-decoration: none;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 1.2px;

  text-transform: uppercase;
}

.social-link span {
  transition: transform 0.25s ease;
}

.social-link:hover span {
  transform: translate(3px, -2px);
}


/* ---------------------------------
   FOOTER
---------------------------------- */

.site-footer {
  padding: 70px 5% 28px;

  background: var(--cream);
  color: var(--soft-black);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-main {
  display: grid;

  grid-template-columns: 1fr 0.45fr 0.45fr;

  gap: 90px;

  padding-bottom: 65px;
}

.footer-brand {
  max-width: 480px;
}

.footer-logo {
  display: inline-block;

  margin-bottom: 22px;

  color: var(--soft-black);

  text-decoration: none;

  font-family: "Cormorant Garamond", serif;

  font-size: 44px;
  font-weight: 500;

  letter-spacing: -1px;
}

.footer-brand p {
  max-width: 390px;

  color: rgba(33, 29, 30, 0.6);

  font-size: 13px;
  font-weight: 300;

  line-height: 1.7;
}

.footer-heading {
  margin-bottom: 22px;

  color: var(--oxblood);

  font-size: 8px;
  font-weight: 600;

  letter-spacing: 2.5px;
}

.footer-nav,
.footer-social {
  display: flex;
  flex-direction: column;

  align-items: flex-start;
}

.footer-nav a,
.footer-social a {
  margin-bottom: 11px;

  color: var(--soft-black);

  text-decoration: none;

  font-size: 12px;
  font-weight: 300;
}

.footer-nav a:hover,
.footer-social a:hover {
  color: var(--oxblood);
}

.footer-social a {
  display: inline-flex;
  align-items: center;

  gap: 7px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 30px;

  padding-top: 22px;

  border-top: 1px solid rgba(33, 29, 30, 0.13);
}

.footer-bottom p {
  color: rgba(33, 29, 30, 0.48);

  font-size: 8px;
  font-weight: 500;

  letter-spacing: 1.5px;
}

.footer-last-word {
  font-family: "Cormorant Garamond", serif !important;

  font-size: 15px !important;
  font-style: italic;

  letter-spacing: 0 !important;
}


/* ---------------------------------
   MOBILE
---------------------------------- */

@media (max-width: 800px) {

  .site-header {
    height: 70px;
    padding: 0 6%;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 56px 6% 68px;
  }

  .eyebrow {
    font-size: 8px;
    letter-spacing: 2.2px;
  }

  h1 {
    font-size: clamp(72px, 21vw, 112px);
    line-height: 0.78;
    letter-spacing: -4px;
  }

  h1 span {
    margin-left: 0;
  }

  .hero-text {
    margin-top: 30px;
    font-size: 16px;
  }

  .hero-art {
    min-height: 500px;
    justify-content: flex-start;
  }

  .cover-wrapper {
    width: 74%;
    margin-left: 7%;
  }

  .cover-backdrop {
    width: 74%;
    left: 7%;
  }

  .book-note {
    right: 0;
    bottom: 58px;
  }


  /* FEATURED BOOK */

  .featured-book {
    padding: 80px 6% 90px;
  }

  .featured-book-number {
    margin-bottom: 42px;
  }

  .featured-book-title h2 {
    font-size: clamp(62px, 18vw, 100px);
    line-height: 0.8;
    letter-spacing: -3px;
  }

  .featured-book-title h2 span {
    margin-left: 0;
  }

  .featured-book-content {
    grid-template-columns: 1fr;
    gap: 65px;
    margin-top: 55px;
  }

  .featured-book-copy .featured-lead {
    font-size: 25px;
  }

  .featured-review {
    padding-left: 24px;
  }

  .featured-review blockquote {
    font-size: 27px;
  }

  .featured-book::after {
    font-size: 180px;
    right: -20px;
    bottom: -55px;
  }


  /* ABOUT */

  .about-home {
    padding: 80px 6% 95px;
  }

  .about-label {
    margin-bottom: 45px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;

    gap: 55px;
  }

  .about-photo-wrap {
    grid-row: auto;

    width: 85%;
    max-width: 420px;
  }

  .about-copy h2 {
    font-size: clamp(64px, 18vw, 100px);
    line-height: 0.8;
  }

  .about-copy h2 span {
    margin-left: 0;
  }

  .about-copy .about-lead {
    font-size: 24px;
  }

  .about-statement {
    grid-column: 1;
    margin-top: 0;
  }

  .about-statement p {
    font-size: clamp(42px, 13vw, 68px);
  }


  /* EVENTS */

  .events-home {
    padding: 80px 6% 90px;
  }

  .events-label {
    margin-bottom: 45px;
  }

  .events-heading-row {
    grid-template-columns: 1fr;

    gap: 25px;

    margin-bottom: 50px;
  }

  .events-heading-row h2 {
    font-size: clamp(62px, 18vw, 98px);

    line-height: 0.8;
  }

  .events-heading-row h2 span {
    margin-left: 0;
  }

  .events-intro {
    max-width: 100%;
  }

  .event-card {
    grid-template-columns: 95px 1fr;

    gap: 24px;

    min-height: auto;

    padding: 30px 0;
  }

  .event-card:hover {
    padding-left: 0;
  }

  .event-day {
    font-size: 58px;
  }

  .event-year {
    display: none;
  }

  .event-info h3 {
    font-size: 30px;
  }

  .event-link-wrap {
    grid-column: 2;

    justify-content: flex-start;
  }

  .events-footer {
    flex-direction: column;

    align-items: flex-start;
  }


  /* BLOG */

  .blog-home {
    padding: 80px 6% 90px;
  }

  .blog-label {
    margin-bottom: 44px;
  }

  .blog-heading-row {
    grid-template-columns: 1fr;

    gap: 30px;

    margin-bottom: 50px;
  }

  .blog-heading-row h2 {
    font-size: clamp(58px, 17vw, 94px);

    line-height: 0.82;
  }

  .blog-heading-row h2 span {
    margin-left: 0;
  }

  .blog-heading-row h2 em {
    margin-top: 8px;

    font-size: 0.62em;
  }

  .blog-heading-side {
    max-width: 100%;
  }

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

  .blog-card {
    min-height: 330px;

    padding: 28px 0 30px;

    border-right: none;
    border-bottom: 1px solid rgba(248, 243, 235, 0.15);
  }

  .blog-card:last-child {
    border-bottom: none;
  }

  .blog-card:hover {
    transform: none;
  }

  .blog-card-top {
    margin-bottom: 50px;
  }

  .blog-card-copy h3 {
    font-size: 36px;
  }

  .blog-bottom {
    flex-direction: column;

    align-items: flex-start;
  }

  .blog-home::after {
    font-size: 160px;

    right: -20px;
    bottom: -50px;
  }


  /* CLOSING */

  .closing-home {
    padding: 75px 6% 85px;
  }

  .closing-label {
    margin-bottom: 42px;
  }

  .closing-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .closing-copy h2 {
    font-size: clamp(58px, 17vw, 96px);

    line-height: 0.8;
  }

  .closing-copy h2 span {
    margin-left: 0;
  }

  .closing-side {
    max-width: 100%;
  }


  /* FOOTER */

  .site-footer {
    padding: 60px 6% 25px;
  }

  .footer-main {
    grid-template-columns: 1fr;

    gap: 45px;

    padding-bottom: 45px;
  }

  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 14px;
  }

}

/* ---------------------------------
   PRETTY, VIOLENT THING — SCRIPT ACCENT
---------------------------------- */
.violent-script {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.18em;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: -3px;
}
.pvt-thing {
  display: block;
  margin-left: 22%;
  font: inherit;
}
