:root {
  --black: #000000;
  --ink: #111111;
  --white: #ffffff;
  --cream: #f3f3f1;
  --soft: #e9e7e3;
  --muted: #6e6e6e;
  --green: #38b764;
  --green-dark: #1f7a3d;
  --gold: #c99b45;
  --line: rgba(255, 255, 255, 0.16);
  --header-height: 100px;
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  line-height: 1.55;
  max-width: 100%;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-height);
  padding: 20px clamp(28px, 5vw, 72px);
  background: var(--black);
  color: var(--white);
}

@media (min-width: 981px) {
  .site-header .main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.brand {
  position: relative;
  display: inline-flex;
  min-width: 158px;
  flex-direction: column;
  color: var(--white);
  line-height: 0.8;
}

.header-logo {
  height: clamp(50px, 6vw, 65px);
  width: auto;
  object-fit: contain;
  border-radius: 50%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  font-size: 0.96rem;
  font-weight: 900;
}

.main-nav a {
  color: var(--white);
  transition: color 160ms ease;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--green);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding-top: var(--header-height);
  place-items: center;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.home-hero-bg {
  position: absolute;
  inset: var(--header-height) 0 0;
  background-color: var(--black);
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.84)),
    url("assets/sossou2_2560x1440.jpeg"),
    linear-gradient(135deg, #000000 0%, #10140f 100%);
  background-position:
    center,
    center,
    center 20%,
    center;
  background-repeat: no-repeat;
  background-size:
    cover,
    cover,
    cover,
    cover;
  filter: saturate(0.96) contrast(1.02);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.home-hero-content {
  position: relative;
  display: grid;
  width: min(100% - 36px, 980px);
  justify-items: center;
  padding-top: 18vh;
  text-align: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1,
h2 {
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

h1 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(4.4rem, 10vw, 8.7rem);
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
}

.home-hero-content p {
  margin: 0;
  color: var(--white);
  font-size: clamp(0.9rem, 1.7vw, 1.18rem);
  font-weight: 900;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.scroll-button {
  display: grid;
  width: 44px;
  height: 44px;
  margin-top: 54px;
  place-items: center;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.scroll-button span {
  width: 13px;
  height: 13px;
  border-right: 5px solid var(--green);
  border-bottom: 5px solid var(--green);
  transform: translateY(-3px) rotate(45deg);
}

.about-split {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  justify-items: end;
  padding: clamp(76px, 9vw, 128px) clamp(22px, 5vw, 72px);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.about-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.9)),
    url("assets/linkedin-patience-post.jpg") left center / cover no-repeat;
  filter: saturate(0.86);
}

.about-copy {
  position: relative;
  width: min(610px, 100%);
  text-align: center;
}

.about-copy h2,
.videos-intro h2,
.articles-intro h2,
.don-band h2,
.page-hero h1,
.book-feature-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 5.6vw, 5.15rem);
}

.about-copy p {
  max-width: 640px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.02rem;
  font-weight: 500;
}

.button {
  display: inline-flex;
  min-width: 170px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border: 0;
  font-size: 0.96rem;
  font-weight: 900;
  text-decoration: underline;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-light {
  background: var(--white);
  color: var(--black);
}

.button-dark {
  background: var(--black);
  color: var(--white);
}

.book-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  min-height: 560px;
  padding: clamp(72px, 9vw, 116px) clamp(28px, 6vw, 86px);
  gap: clamp(36px, 6vw, 86px);
  background: var(--cream);
  color: var(--black);
}

.book-feature-copy p {
  max-width: 600px;
  margin-bottom: 34px;
  color: #121212;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 500;
}

.book-mockups {
  display: flex;
  min-height: 330px;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  perspective: 1100px;
}

.book-showcase {
  display: flex;
  min-height: 390px;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
}

.book-cover {
  width: min(270px, 42vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(26px 28px 28px rgba(0, 0, 0, 0.18));
}

.book-cover-main {
  width: min(315px, 46vw);
  transform: rotate(-2deg);
}

.book-cover-secondary {
  width: min(305px, 45vw);
  margin-top: 42px;
  transform: rotate(2deg);
}

.book-wrapper-secondary {
  position: relative;
  display: inline-block;
}

.badge-coming-soon {
  position: absolute;
  top: 25px;
  right: -15px;
  background: var(--gold);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transform: rotate(8deg);
  z-index: 10;
}

.book-mockup {
  position: relative;
  display: flex;
  width: min(240px, 42vw);
  aspect-ratio: 0.72;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  box-shadow: 26px 28px 38px rgba(0, 0, 0, 0.18);
  transform: rotateY(-18deg) rotateZ(-1deg);
}

.book-mockup::after {
  position: absolute;
  top: 0;
  right: -20px;
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, #bfbfbf, #f7f7f7);
  content: "";
  transform: skewY(44deg);
  transform-origin: left top;
}

.book-mockup span,
.book-mockup em {
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.book-mockup strong {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.02;
}

.book-mockup-dark {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    #101015;
  color: var(--white);
}

.book-mockup-light {
  margin-top: 42px;
  background: #f9f9f6;
  color: var(--black);
}

.videos-preview,
.articles-preview {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(42px, 7vw, 98px);
  padding: clamp(76px, 10vw, 136px) clamp(28px, 6vw, 86px);
  background: var(--white);
  color: var(--black);
}

.articles-intro p {
  max-width: 560px;
  margin-bottom: 30px;
  font-size: 1.02rem;
  font-weight: 500;
}

.home-article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
  gap: 22px;
  align-items: stretch;
}

.home-article-card {
  display: grid;
  min-height: 440px;
  grid-template-rows: auto auto auto 1fr;
  gap: 16px;
  padding: 24px;
  background: var(--black);
  color: var(--white);
}

.home-article-card-large {
  min-height: 520px;
}

.home-article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 38%;
  filter: grayscale(1) contrast(1.04);
}

.home-article-card span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-article-card strong {
  font-size: clamp(1.55rem, 2.5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.home-article-card p {
  align-self: end;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 600;
}

.videos-main {
  background: var(--white);
}

.videos-page-lead {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
  min-height: calc(100vh - var(--header-height));
  padding: clamp(72px, 9vw, 122px) clamp(28px, 6vw, 86px);
  background: var(--white);
  color: var(--black);
}

.videos-lead-copy {
  max-width: 520px;
}

.page-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.videos-lead-copy h1 {
  margin-bottom: 24px;
  color: var(--black);
  font-size: clamp(3.2rem, 6.4vw, 6.4rem);
  text-shadow: none;
}

.videos-lead-copy p {
  max-width: 500px;
  margin-bottom: 30px;
  color: #222222;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 500;
}

.featured-video {
  position: relative;
  min-height: clamp(360px, 46vw, 560px);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 34px 75px rgba(0, 0, 0, 0.16);
}

.featured-video img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 42%;
  filter: grayscale(1) contrast(1.04);
}

.featured-video::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(0, 0, 0, 0.86));
  content: "";
}

.featured-video > div {
  position: absolute;
  right: clamp(22px, 4vw, 46px);
  bottom: clamp(22px, 4vw, 42px);
  left: clamp(22px, 4vw, 46px);
  z-index: 2;
}

.featured-video small {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.featured-video strong {
  display: block;
  max-width: 720px;
  font-size: clamp(1.75rem, 3.4vw, 3.45rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.video-library-section {
  padding-top: 0;
}

.compact-video-grid {
  align-items: stretch;
}

.videos-intro p {
  max-width: 560px;
  margin-bottom: 30px;
  font-size: 1.02rem;
  font-weight: 500;
}

.video-grid {
  display: grid;
  gap: 22px;
}

.video-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.video-card-large {
  min-height: 400px;
}

.video-card img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 38%;
  filter: grayscale(1) contrast(1.03);
}

.video-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.76));
  content: "";
}

.video-card strong {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 1;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  line-height: 1.08;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 74px;
  height: 52px;
  border-radius: 15px;
  background: var(--green);
  transform: translate(-50%, -50%);
}

.play-icon::after {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--white);
  content: "";
  transform: translate(-50%, -50%);
}

.don-band {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  min-height: 500px;
  padding: 60px clamp(24px, 6vw, 86px) 80px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.78)),
    url("assets/don-background.jpg") center center / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.don-band p {
  max-width: 620px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px clamp(28px, 5vw, 72px);
  background: var(--black);
  color: var(--white);
}

.footer-logo {
  display: inline-flex;
  width: 82px;
  height: 82px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--white);
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.86rem;
  font-weight: 900;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--green);
}

.footer-contact .whatsapp-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--green);
}

.page-main {
  padding-top: var(--header-height);
  background: var(--white);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
  padding: clamp(72px, 10vw, 128px) clamp(24px, 6vw, 86px);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.78)),
    var(--hero-image, url("assets/linkedin-patience-post.jpg")) var(--hero-position, center) / cover no-repeat;
  content: "";
  filter: grayscale(1) contrast(1.05);
}

.page-hero > div {
  position: relative;
  width: min(920px, 100%);
}

.page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 600;
}

.about-page-hero {
  background-color: var(--black);
}

.about-page-hero::before {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.8)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.74)),
    url("assets/sossou1_2560x1440.jpeg"),
    linear-gradient(135deg, #000000 0%, #10140f 100%);
  background-position:
    center,
    center,
    center 42%,
    center;
  background-repeat: no-repeat;
  background-size:
    cover,
    cover,
    cover,
    cover;
  filter: saturate(0.96) contrast(1.02);
}

.videos-page-hero {
  --hero-image: url("assets/linkedin-planification-post_2560x1440.jpg");
  --hero-position: center 36%;
}

.books-page-hero {
  --hero-image: url("assets/linkedin-planification-post_2560x1440.jpg");
  --hero-position: center 38%;
}

.articles-page-hero {
  --hero-image: url("assets/linkedin-planification-post_2560x1440.jpg");
  --hero-position: center 38%;
}

.don-page-hero {
  --hero-image: url("assets/linkedin-patience-post.jpg");
  --hero-position: center 42%;
}

.content-section {
  padding: clamp(72px, 10vw, 128px) clamp(24px, 6vw, 86px);
}

.content-wrap {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: center;
}

.portrait-frame {
  overflow: hidden;
  background: var(--black);
}

.portrait-frame img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.rich-copy h2,
.section-title {
  margin-bottom: 24px;
  color: var(--black);
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.rich-copy p,
.content-wrap > p {
  color: #222222;
  font-size: clamp(1rem, 1.42vw, 1.15rem);
  font-weight: 500;
}

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

.info-card {
  min-height: 280px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--black);
  color: var(--white);
}

.info-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 900;
  line-height: 1.08;
}

.info-card p {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

.books-grid,
.videos-page-grid,
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.book-card,
.article-resource-card {
  display: grid;
  min-height: 420px;
  align-content: start;
  gap: 18px;
  padding: 24px;
  background: var(--cream);
  color: var(--black);
}

.book-card .book-mockup {
  width: min(180px, 100%);
  margin: 0 auto;
  transform: rotateY(-14deg);
}

.book-card-cover {
  width: min(230px, 100%);
  margin: 0 auto 4px;
  object-fit: contain;
  filter: drop-shadow(18px 20px 20px rgba(0, 0, 0, 0.16));
}

.book-status {
  display: inline-block;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: -6px;
}

.book-card h3,
.article-resource-card h3,
.video-list-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.28rem, 2vw, 1.75rem);
  font-weight: 900;
  line-height: 1.08;
}

.book-card p,
.article-resource-card p,
.video-list-card p {
  color: #333333;
  font-weight: 500;
}

.book-card a,
.article-resource-card a,
.video-list-card a {
  width: max-content;
  max-width: 100%;
  margin-top: auto;
}

.video-list-card {
  display: grid;
  gap: 18px;
  padding: 0 0 24px;
  background: var(--cream);
  color: var(--black);
}

.video-list-card .video-card {
  min-height: 260px;
}

.video-list-card h3,
.video-list-card p,
.video-list-card a {
  margin-right: 24px;
  margin-left: 24px;
}

.article-resource-card {
  background: var(--black);
  color: var(--white);
}

.article-resource-card img,
.resource-thumb {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-resource-card span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-resource-card p {
  color: rgba(255, 255, 255, 0.74);
}

.article-resource-card a {
  /* color handled by .button classes */
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: clamp(56px, 8vw, 92px);
  background: var(--black);
  color: var(--white);
}

.contact-panel h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.signup-form {
  display: grid;
  gap: 14px;
}

.signup-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signup-form input,
.signup-form textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: 0;
  padding: 14px 16px;
}

.signup-form textarea {
  min-height: 120px;
  resize: vertical;
}

.signup-form input::placeholder,
.signup-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.signup-form input:focus,
.signup-form textarea:focus {
  border-color: var(--green);
}

@media (max-width: 980px) {
  :root {
    --header-height: 84px;
  }

  .site-header {
    padding: 16px 22px;
  }

  .menu-toggle {
    display: grid;
    flex: 0 0 44px;
    place-items: center;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 8px 24px 24px;
    background: var(--black);
    border-top: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.08rem;
  }

  .book-feature,
  .videos-preview,
  .articles-preview,
  .videos-page-lead,
  .two-column,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .about-split {
    justify-items: center;
  }

  .about-bg {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.92)),
      url("assets/linkedin-patience-post.jpg") center / cover no-repeat;
  }

  .about-copy {
    margin-top: 280px;
  }

  .cards-grid,
  .books-grid,
  .videos-page-grid,
  .home-article-grid,
  .articles-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 76px;
  }

  .brand {
    min-width: 132px;
  }

  .header-logo {
    height: 52px;
  }

  .home-hero {
    min-height: 88vh;
  }

  .home-hero-bg {
    background-position:
      center,
      center,
      68% 20%,
      center;
    background-size:
      cover,
      cover,
      cover,
      cover;
  }

  .about-page-hero::before {
    background-position:
      center,
      center,
      center 42%,
      center;
    background-size:
      cover,
      cover,
      cover,
      cover;
  }

  .home-hero-content {
    padding-top: 12vh;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 5.4rem);
  }

  .home-hero-content p {
    max-width: 280px;
    font-size: 0.78rem;
    letter-spacing: 0.28em;
  }

  .about-copy h2,
  .videos-intro h2,
  .articles-intro h2,
  .don-band h2,
  .page-hero h1,
  .book-feature-copy h2,
  .rich-copy h2,
  .section-title {
    font-size: clamp(2.15rem, 10vw, 3.3rem);
  }

  .book-feature,
  .videos-preview,
  .articles-preview,
  .videos-page-lead,
  .content-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .videos-page-lead {
    min-height: auto;
    padding-top: 54px;
  }

  .featured-video {
    min-height: 300px;
  }

  .book-mockups {
    align-items: center;
    flex-direction: column;
  }

  .book-showcase {
    min-height: auto;
    flex-direction: column;
  }

  .book-cover,
  .book-cover-main {
    width: min(270px, 82vw);
  }

  .book-mockup {
    width: min(230px, 78vw);
  }

  .book-mockup-light {
    margin-top: 0;
  }

  .video-card-large,
  .video-card {
    min-height: 250px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav,
  .cards-grid,
  .books-grid,
  .videos-page-grid,
  .home-article-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .books-grid,
  .videos-page-grid,
  .home-article-grid,
  .articles-grid {
    display: grid;
  }

  .home-article-card,
  .home-article-card-large {
    min-height: 360px;
  }

  .contact-panel {
    padding: 34px 22px;
  }

  .button {
    width: 100%;
  }
}
