:root {
  --background: var(--brand-paper, #f8f6f2);
  --text: var(--brand-charcoal-ink, #3f3a37);
  --paper: #fffdf7;
  --muted: #68625c;
  --line: rgba(63, 58, 55, 0.18);
  --field: rgba(255, 253, 247, 0.78);
  --shadow: 0 28px 84px rgba(63, 58, 55, 0.12);
  --font-sans: "Gabriel Sans", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --font-typewriter: "Courier Prime", "Courier New", Courier, monospace;
  --type-h1: 2.375rem;
  --type-h2: 2.125rem;
  --type-h3: 2rem;
  --type-h4: 1.625rem;
  --type-h5: 1.25rem;
  --type-small: 0.8125rem;
  --type-body-large: 1.125rem;
  --type-body: 0.9375rem;
  --type-action: 1.0625rem;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: #fbfaf7;
  font-family: var(--font-sans);
  line-height: 1.55;
}

a {
  color: inherit;
}

.menu-toggle {
  position: relative;
  z-index: 30;
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  grid-column: 10 / -1;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  border: 0;
  border-radius: 0;
  background: var(--paper);
  color: var(--text);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: var(--type-action);
  font-weight: 400;
  line-height: 1.3;
}

.menu-toggle-icon {
  width: 22px;
  height: 15px;
  position: relative;
  display: inline-block;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  border-top: 2px solid currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-icon::before {
  top: 5px;
}

.menu-toggle-icon::after {
  top: 5px;
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
  border-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
  opacity: 1;
  transform: rotate(-45deg);
}

.mega-menu {
  position: absolute;
  z-index: 20;
  top: clamp(132px, 15vw, 178px);
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  padding: clamp(24px, 4vw, 38px);
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr) minmax(260px, 0.54fr);
  gap: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.mega-menu[hidden] {
  display: none;
}

.menu-rail {
  display: grid;
  align-content: start;
  gap: 0;
}

.menu-rail a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--type-h5);
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
}

.menu-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 44px;
}

.menu-content section {
  min-width: 0;
}

.menu-content h2,
.menu-promo h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--type-h5);
  font-weight: 700;
  line-height: 1.3;
}

.menu-content ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.menu-content li + li {
  margin-top: 8px;
}

.menu-content a {
  color: var(--text);
  font-size: var(--type-body-large);
  line-height: 1.333;
  text-decoration: none;
}

.menu-content a:hover,
.menu-content a:focus-visible,
.menu-rail a:hover,
.menu-rail a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.12em;
}

.menu-promo {
  position: relative;
  min-height: 300px;
  padding: 138px 26px 26px;
  display: grid;
  align-content: end;
  overflow: hidden;
  border-radius: 8px;
  background: var(--brand-deep-moss, #2c5f54);
  color: var(--paper);
  isolation: isolate;
}

.menu-promo-botanical {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 128px;
  max-height: none;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
  pointer-events: none;
}

.menu-promo .eyebrow,
.menu-promo p,
.menu-promo h2 {
  position: relative;
  z-index: 1;
  color: var(--paper);
}

.menu-promo p:not(.eyebrow) {
  margin: 16px 0 0;
  color: rgba(255, 253, 247, 0.82);
  font-size: var(--type-body);
  line-height: 1.4;
}

.menu-promo a {
  position: relative;
  z-index: 1;
  min-height: 50px;
  width: fit-content;
  margin-top: 24px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--type-action);
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

@media (max-width: 900px) {
  .mega-menu {
    grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr);
  }

  .footer-menu {
    grid-template-columns: 1fr;
  }

  .footer-menu .menu-content {
    grid-template-columns: 1fr;
  }

  .footer-menu .menu-promo {
    grid-column: auto;
  }

  .menu-promo {
    min-height: 0;
    padding: 124px 24px 22px;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }

  .menu-promo-botanical {
    top: 0;
    left: 0;
    width: 100%;
    height: 108px;
    max-height: none;
    opacity: 1;
  }

  .menu-promo .eyebrow {
    grid-column: auto;
  }

  .menu-promo h2 {
    margin: 0;
    font-size: var(--type-h5);
  }

  .menu-promo p:not(.eyebrow) {
    margin-top: 8px;
    max-width: 44rem;
  }

  .menu-promo a {
    margin-top: 8px;
    align-self: start;
  }
}

.holding-page {
  position: relative;
  width: min(100% - 60px, 1080px);
  margin: 0 auto;
  padding: clamp(44px, 7vw, 92px) 0 76px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(16px, 2vw, 28px);
}

.menu-backdrop {
  position: fixed;
  z-index: 10;
  inset: 0;
  width: 100%;
  min-height: 100vh;
  padding: 0;
  border: 0;
  background: rgba(74, 94, 88, 0.28);
  cursor: default;
  opacity: 0;
  transition: opacity 180ms ease;
}

.menu-backdrop:not([hidden]) {
  opacity: 1;
}

.holding-header {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: subgrid;
  align-items: start;
  min-height: clamp(116px, 13vw, 160px);
}

@supports not (grid-template-columns: subgrid) {
  .holding-header {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(16px, 2vw, 28px);
  }
}

.masthead-copy {
  display: grid;
  grid-column: 3 / span 7;
  grid-row: 1;
  justify-items: start;
  text-align: left;
  align-self: start;
}

.logo-link {
  width: clamp(67px, 7.31vw, 96px);
  display: block;
  grid-column: 1 / span 2;
  grid-row: 1;
  justify-self: start;
  align-self: start;
  line-height: 0;
}

.logo-link img {
  display: block;
  width: 100%;
  height: auto;
}

.wordmark-image,
.tagline-image {
  display: block;
  width: 100%;
  height: auto;
}

.wordmark-image {
  max-width: min(100%, clamp(360px, 49vw, 559px));
}

.tagline-image {
  max-width: clamp(360px, 58vw, 744px);
  margin-top: 16px;
}

.letter-section {
  grid-column: 3 / span 8;
  width: 100%;
  max-width: 800px;
  margin: clamp(68px, 7vw, 92px) 0 0;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: var(--type-small);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.46;
  text-align: left;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  margin-top: 28px;
  font-size: 38pt;
  font-weight: 400;
  font-kerning: normal;
  letter-spacing: 0;
  line-height: 44pt;
  text-align: left;
}

.reading-time {
  margin: 18px 0 0;
  color: #4a5e58;
  font-family: var(--font-sans);
  font-size: var(--type-small);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.46;
  text-transform: none;
}

.letter-copy {
  max-width: 800px;
  margin: clamp(42px, 5vw, 56px) 0 0;
  position: relative;
  color: #252525;
  font-family: var(--font-typewriter);
  font-size: var(--type-body-large);
  line-height: 1.5;
}

.typed-letter {
  position: absolute;
  inset: 0;
}

.letter-source {
  visibility: hidden;
  pointer-events: none;
}

.typed-letter p,
.letter-source p {
  margin: 0;
}

.typed-letter h2,
.letter-source h2 {
  margin: clamp(34px, 4vw, 48px) 0 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 400;
  line-height: 1.18;
}

.typed-letter h2.section-subtitle,
.letter-source h2.section-subtitle {
  margin-top: 4px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 2.4vw, 1.72rem);
  font-weight: 400;
  line-height: 1.2;
}

.typed-letter p + p,
.letter-source p + p {
  margin-top: 28px;
}

.typed-letter h2 + p,
.letter-source h2 + p {
  margin-top: 18px;
}

.typed-letter h2.section-subtitle + p,
.letter-source h2.section-subtitle + p {
  margin-top: 18px;
}

.typed-letter .resource-link,
.letter-source .resource-link {
  font-family: var(--font-sans);
  font-size: var(--type-body-large);
  font-weight: 700;
  line-height: 1.4;
}

.typed-letter .resource-link a,
.letter-source .resource-link a {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.14em;
}

.typed-letter .resource-link + p,
.letter-source .resource-link + p {
  margin-top: 8px;
}

.typed-letter.is-typing::after {
  content: "";
  width: 0.65ch;
  height: 1.2em;
  margin-left: 2px;
  display: inline-block;
  vertical-align: -0.18em;
  background: currentColor;
  animation: cursor-blink 0.9s steps(2, start) infinite;
}

@keyframes cursor-blink {
  50% {
    opacity: 0;
  }
}

.article-reactions {
  grid-column: 3 / span 8;
  width: 100%;
  max-width: 800px;
  margin: clamp(52px, 7vw, 78px) 0 0;
}

.article-reactions h2 {
  margin-top: 16px;
  font-size: var(--type-h4);
  line-height: 1.23;
}

.reaction-buttons {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reaction-buttons button {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--text);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: var(--type-action);
  font-weight: 400;
  line-height: 1.4;
}

.reaction-buttons button:hover,
.reaction-buttons button:focus-visible {
  border-color: rgba(63, 58, 55, 0.42);
}

.reaction-buttons button[aria-pressed="true"] {
  border-color: var(--brand-metadata-sage, #4a5e58);
  background: rgba(74, 94, 88, 0.1);
  color: var(--brand-metadata-sage, #4a5e58);
}

.reaction-buttons svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 16;
}

.aloe-accent {
  grid-column: 8 / -1;
  width: min(42%, 220px);
  margin: clamp(44px, 7vw, 82px) 0 calc(clamp(132px, 15vw, 190px) * -0.62) auto;
  justify-self: end;
  pointer-events: none;
}

.aloe-accent img {
  display: block;
  width: 100%;
  height: auto;
}

.promo-blocks {
  grid-column: 1 / -1;
  width: 100%;
  margin: clamp(108px, 12vw, 156px) 0 0;
  display: grid;
  gap: 28px;
}

.promo-strip {
  min-height: 150px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 8px;
  background: var(--brand-metadata-sage, #4a5e58);
  color: var(--paper);
}

.promo-strip-inner {
  max-width: 900px;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  grid-template-areas:
    "image title copy"
    "image title copy";
  gap: 8px clamp(22px, 4vw, 44px);
  align-items: start;
}

.promo-strip img {
  grid-area: image;
  width: min(100%, 96px);
  height: auto;
  justify-self: center;
  mix-blend-mode: multiply;
}

.promo-strip h2,
.promo-feature-card h2 {
  margin: 0;
  color: inherit;
  font-family: var(--font-sans);
  font-size: var(--type-h2);
  font-weight: 400;
  line-height: 1.176;
}

.promo-strip h2 {
  grid-area: title;
}

.promo-strip p,
.promo-feature-card p:not(.eyebrow) {
  margin: 0;
  color: inherit;
  font-size: var(--type-body-large);
  line-height: 1.333;
}

.promo-strip p {
  margin: 0;
}

.promo-strip p .keep-together {
  display: block;
}

.promo-strip a,
.promo-feature-card a {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 7px;
  color: inherit;
  font-family: var(--font-sans);
  font-size: var(--type-action);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}

.promo-strip-copy {
  grid-area: copy;
  display: grid;
  justify-items: start;
  align-self: start;
  gap: 18px;
}

.promo-strip-copy a {
  margin-top: 4px;
}

.promo-feature-card {
  min-height: 420px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--text);
}

.promo-feature-copy {
  padding: clamp(34px, 6vw, 70px);
  display: grid;
  align-content: center;
  justify-items: start;
}

.promo-feature-copy .eyebrow {
  color: var(--brand-metadata-sage, #4a5e58);
}

.promo-feature-card a {
  margin-top: 30px;
}

.promo-feature-art {
  min-height: 360px;
  padding: clamp(28px, 5vw, 54px);
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.18), rgba(255, 253, 247, 0.02)),
    var(--brand-deep-moss, #2c5f54);
}

.promo-feature-art img {
  width: min(78%, 360px);
  height: auto;
  filter: drop-shadow(20px 24px 34px rgba(63, 58, 55, 0.18));
}

.reading-card {
  grid-column: 3 / span 8;
  width: 100%;
  max-width: 920px;
  margin: clamp(54px, 8vw, 92px) 0 0;
  padding: clamp(28px, 4.4vw, 44px);
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 54px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.reading-art {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.book-cover {
  min-height: 310px;
  padding: 24px 22px;
  display: grid;
  align-content: space-between;
  justify-items: center;
  border: 1px solid rgba(63, 58, 55, 0.14);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(201, 168, 76, 0.14), rgba(255, 253, 247, 0.1)),
    #fbfaf7;
  color: var(--text);
  text-align: center;
  box-shadow: 16px 18px 0 rgba(44, 95, 84, 0.12);
}

.book-cover img {
  width: min(44%, 92px);
  height: auto;
}

.book-cover-kicker,
.book-cover-author {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: var(--type-small);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.46;
  text-transform: uppercase;
}

.book-cover-title {
  max-width: 9ch;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--type-h2);
  font-weight: 400;
  line-height: 1.05;
}

.reading-copy {
  max-width: 520px;
}

.reading-label {
  text-align: left;
}

.reading-title {
  margin-top: 22px;
  font-size: var(--type-h2);
  line-height: 1.18;
  text-align: left;
}

.reading-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: var(--type-body-large);
  line-height: 1.333;
}

.reading-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reading-actions a {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--text);
  border-radius: 7px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--type-action);
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.reading-actions a:first-child {
  background: var(--text);
  color: var(--paper);
}

.signup-card {
  grid-column: 3 / span 8;
  width: 100%;
  max-width: 920px;
  margin: clamp(34px, 5vw, 54px) 0 0;
  padding: clamp(32px, 5vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "eyebrow socials"
    "title socials"
    "cta socials";
  gap: 0 clamp(42px, 7vw, 86px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--field);
  box-shadow: var(--shadow);
}

.signup-card .eyebrow {
  grid-area: eyebrow;
  text-align: left;
}

.signup-title {
  grid-area: title;
  margin-top: 22px;
  font-size: var(--type-h2);
  line-height: 1.18;
  text-align: left;
}

.keep-together {
  white-space: nowrap;
}

.signup-title .keep-together {
  display: block;
}

.substack-link {
  grid-area: cta;
  margin-top: 34px;
  min-height: 56px;
  width: fit-content;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--text);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: var(--type-action);
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.social-links {
  grid-area: socials;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 44px);
  gap: 14px;
  align-self: center;
}

.social-links a {
  min-height: 44px;
  width: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(239, 235, 228, 0.74);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--type-action);
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.social-links svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.social-links a:hover,
.social-links a:focus-visible,
.reading-actions a:hover,
.reading-actions a:focus-visible,
.substack-link:hover,
.substack-link:focus-visible,
.logo-link:hover,
.logo-link:focus-visible {
  border-color: rgba(63, 58, 55, 0.42);
}

.footer-menu {
  width: min(100% - 60px, 1080px);
  margin: clamp(54px, 8vw, 92px) auto 0;
  padding: clamp(24px, 4vw, 38px);
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr) minmax(260px, 0.54fr);
  gap: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.site-footer {
  width: min(100% - 60px, 1080px);
  margin: 28px auto 36px;
  padding: clamp(38px, 6vw, 62px) clamp(24px, 5vw, 56px);
  border-radius: 8px;
  background: var(--text);
  color: var(--paper);
  text-align: center;
}

.footer-links {
  width: min(100% - 60px, 1080px);
  margin: 28px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  align-items: center;
  justify-content: center;
}

.footer-links a {
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--type-action);
  font-weight: 400;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.12em;
  text-transform: uppercase;
}

.site-disclaimer {
  max-width: 760px;
  margin: clamp(34px, 5vw, 54px) auto 0;
  color: rgba(255, 253, 247, 0.74);
  font-size: var(--type-body);
  line-height: 1.7;
  text-align: left;
}

.site-disclaimer p {
  margin: 0;
}

.site-disclaimer p + p {
  margin-top: 16px;
}

.site-end-illustration {
  width: min(100% - 60px, 1080px);
  margin: 0 auto 36px;
  text-align: left;
}

.site-end-illustration img {
  display: block;
  width: min(38vw, 360px);
  min-width: 220px;
  height: auto;
  opacity: 0.82;
}

.page-bottom-link {
  width: min(100% - 60px, 1080px);
  margin: 28px auto 18px;
  text-align: right;
}

.page-bottom-link a {
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--type-action);
  font-weight: 700;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.12em;
}

@media (max-width: 820px) {
  .promo-strip {
    max-width: none;
  }

  .promo-strip-inner {
    grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1fr);
    grid-template-areas:
      "title copy"
      "image copy";
    gap: 18px clamp(24px, 5vw, 40px);
  }

  .promo-strip img {
    width: min(100%, 260px);
    justify-self: start;
  }

  .reading-card {
    grid-template-columns: 1fr;
  }

  .reading-art {
    justify-items: start;
  }

  .reading-copy {
    max-width: 620px;
  }

  .reading-title {
    margin-top: 0;
  }

  .signup-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "cta"
      "socials";
    gap: 0;
  }

  .signup-title {
    max-width: 10.5em;
  }

  .signup-title .keep-together {
    display: inline;
  }

  .social-links {
    margin-top: 34px;
    grid-template-columns: repeat(3, 44px);
    align-self: start;
  }

  .substack-link {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .footer-menu {
    grid-template-columns: 1fr;
  }

  .footer-menu .menu-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .mega-menu {
    top: 96px;
    grid-template-columns: 1fr;
  }

  .footer-menu {
    grid-template-columns: 1fr;
  }

  .menu-content {
    grid-template-columns: 1fr;
  }

  .menu-promo {
    min-height: 240px;
    padding-top: 110px;
    padding-right: 24px;
    display: grid;
    grid-template-columns: 1fr;
    align-content: end;
  }

  .menu-promo-botanical {
    top: 0;
    left: 0;
    width: 100%;
    height: 96px;
    max-height: none;
    opacity: 1;
  }

  .holding-page {
    width: min(100% - 36px, 1080px);
    display: block;
  }

  .holding-header {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    justify-items: start;
    row-gap: 20px;
  }

  .masthead-copy {
    grid-column: auto;
    grid-row: auto;
    justify-items: start;
    text-align: left;
  }

  .logo-link {
    width: 85px;
    grid-column: auto;
    grid-row: auto;
  }

  .menu-toggle {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }

  .letter-section {
    margin-top: 58px;
  }

  h1,
  .wordmark-image,
  .tagline-image {
    text-align: left;
  }

  .wordmark-image {
    max-width: min(100%, 559px);
  }

  .tagline-image {
    max-width: min(100%, 470px);
    margin-top: 10px;
  }

  .letter-copy {
    margin-top: 46px;
  }

  .aloe-accent {
    width: min(44%, 150px);
    margin: 42px 0 -34px auto;
  }

  .promo-blocks {
    margin-top: 92px;
  }

  .promo-strip-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "image"
      "copy";
    justify-items: start;
    gap: 18px;
  }

  .promo-strip img {
    width: min(60%, 220px);
    justify-self: start;
  }

  .promo-feature-art {
    min-height: 260px;
  }

  .reading-card {
    margin-top: 92px;
    grid-template-columns: 1fr;
  }

  .book-cover {
    width: min(100%, 280px);
    justify-self: start;
  }

  .signup-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "cta"
      "socials";
    gap: 0;
  }

  .signup-title {
    max-width: 11em;
  }

  .signup-title .keep-together {
    display: inline;
  }

  .social-links {
    margin-top: 34px;
    grid-template-columns: repeat(3, 44px);
    align-self: start;
  }

  .substack-link {
    justify-self: start;
  }

  .site-footer {
    width: min(100% - 36px, 1080px);
  }

  .page-bottom-link {
    width: min(100% - 36px, 1080px);
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 420px) {
.menu-toggle {
  position: relative;
  z-index: 30;
  min-height: 48px;
    padding: 0 16px;
  }

  .holding-page {
    width: min(100% - 28px, 1080px);
    padding-top: 34px;
  }

  .reading-card,
  .signup-card {
    padding: 26px 22px;
  }

  .signup-title {
    max-width: 8.5em;
  }

  .social-links {
    grid-template-columns: repeat(3, 44px);
  }

  .promo-strip,
  .promo-feature-copy {
    padding: 26px 22px;
  }

  .promo-strip a,
  .promo-feature-card a,
  .reading-actions a,
  .substack-link {
    width: 100%;
  }

  .site-footer {
    width: min(100% - 28px, 1080px);
    padding: 34px 22px;
  }

  .page-bottom-link {
    width: min(100% - 28px, 1080px);
  }
}
