:root {
  --paper: #f7efe3;
  --paper-soft: #fbf7ed;
  --ink: #25231e;
  --ink-muted: #5f5a4d;
  --forest: #243b32;
  --forest-deep: #101d17;
  --moss: #6f7e55;
  --ochre: #c7923e;
  --clay: #b86158;
  --plum: #3a2933;
  --line: rgba(37, 35, 30, 0.15);
  --shadow: 0 24px 60px rgba(20, 28, 22, 0.24);
  --section-flow-gap: 1.2rem;
  --display-serif: Georgia, "Times New Roman", serif;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Avenir, "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 20;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  background: var(--paper-soft);
  color: var(--ink);
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem clamp(1rem, 4vw, 3.5rem);
  color: #fff;
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  background: rgba(16, 29, 23, 0.58);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(247, 239, 227, 0.16),
    0 1px 0 rgba(247, 239, 227, 0.1);
  backdrop-filter: blur(18px) saturate(130%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  width: 3.15rem;
  height: 3.15rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.22));
}

.brand-title,
.brand-subtitle {
  display: block;
}

.brand-title {
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.45vw, 1.18rem);
  font-weight: 500;
}

.brand-subtitle {
  margin-top: -0.2rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.76;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 0.78rem 1rem;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.65rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 0.35rem 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 18, 11, 0.9), rgba(8, 18, 11, 0.68) 42%, rgba(8, 18, 11, 0.24)),
    linear-gradient(180deg, rgba(8, 18, 11, 0.25), rgba(8, 18, 11, 0.42)),
    url("assets/hero-canopy.jpg") center 42% / cover;
  color: #fff;
}

.hero::after {
  position: absolute;
  right: -12vw;
  bottom: -24vw;
  width: 52vw;
  height: 52vw;
  min-width: 30rem;
  min-height: 30rem;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 35%, rgba(199, 146, 62, 0.42), transparent 34%),
    radial-gradient(circle at 58% 58%, rgba(184, 97, 88, 0.34), transparent 44%),
    radial-gradient(circle at 42% 65%, rgba(111, 126, 85, 0.36), transparent 45%);
  filter: blur(4px);
  opacity: 0.8;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 94svh;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 22rem);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding: 7rem clamp(1.25rem, 5vw, 5rem) 4rem;
}

.hero-copy {
  max-width: 48rem;
}

.eyebrow,
.section-label {
  margin: 0 0 1rem;
  color: var(--ochre);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.invitation h2,
.circle h2,
.author h2,
.speaking h2,
.wisdom h2,
.order h2,
.section-heading h2 {
  margin: 0;
  font-family: var(--display-serif);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 48rem;
  font-size: clamp(2.75rem, 5.35vw, 4.7rem);
}

.hero-kicker {
  max-width: 42rem;
  margin: 1rem 0 0;
  font-family: var(--display-serif);
  font-size: clamp(1.18rem, 1.72vw, 1.46rem);
  line-height: 1.2;
}

.hero-text {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 1.1vw, 1.03rem);
}

.hero-actions,
.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.order-actions {
  margin-top: var(--section-flow-gap);
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  border-color: var(--ochre);
  background: var(--ochre);
  color: var(--forest-deep);
}

.button.secondary {
  color: #fff;
}

.button.dark.secondary {
  color: var(--forest-deep);
}

.button.dark.primary {
  color: var(--forest-deep);
}

.order-actions .button.secondary {
  border-color: var(--paper-soft);
  background: var(--clay);
  color: var(--paper-soft);
}

.book-object {
  position: relative;
  align-self: center;
  justify-self: end;
  width: min(100%, 20rem);
  padding-top: 3rem;
}

.book-object img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 0.35rem;
  box-shadow: var(--shadow);
}

.book-object p {
  position: relative;
  z-index: 1;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.book-halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 239, 227, 0.25), rgba(199, 146, 62, 0.16) 38%, transparent 66%);
  transform: scale(1.25);
}

.invitation,
.pathways,
.author,
.speaking,
.wisdom,
.praise,
.order {
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1.25rem, 5vw, 5rem);
}

.invitation {
  background: var(--paper-soft);
}

.invitation .section-label {
  max-width: 58rem;
  margin-right: auto;
  margin-left: auto;
}

.invitation-grid {
  max-width: 58rem;
  margin: 0 auto;
}

.invitation-grid > div:first-child {
  max-width: 100%;
}

.invitation .prose {
  max-width: 100%;
  margin-top: var(--section-flow-gap);
}

.invitation h2,
.section-heading h2,
.circle h2,
.author h2,
.speaking h2,
.wisdom h2,
.praise h2,
.order h2 {
  font-size: clamp(1.75rem, 3.15vw, 2.95rem);
  line-height: 1.08;
}

.prose {
  color: var(--ink-muted);
  font-size: clamp(1.04rem, 1.4vw, 1.17rem);
}

.prose p,
.circle-copy p,
.author-copy p,
.wisdom-card p {
  margin: 0;
}

.prose p + p {
  margin-top: var(--section-flow-gap);
}

.pathways {
  background:
    linear-gradient(180deg, rgba(184, 97, 88, 0.88), rgba(159, 83, 76, 0.94)),
    radial-gradient(circle at 12% 24%, rgba(247, 239, 227, 0.26), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(199, 146, 62, 0.26), transparent 30%);
  color: var(--paper-soft);
}

.pathways .section-label {
  color: var(--ink);
}

.pathways h2 {
  color: var(--ink);
}

.section-heading {
  max-width: 74rem;
  margin: 0 auto var(--section-flow-gap);
}

.pathway-grid {
  display: grid;
  max-width: 74rem;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(247, 239, 227, 0.24);
  border-radius: 0.5rem;
  background: rgba(247, 239, 227, 0.24);
}

.pathway-grid article {
  min-height: 18rem;
  padding: 1.5rem;
  background: rgba(251, 247, 237, 0.9);
}

.pathway-grid span {
  color: var(--clay);
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 800;
}

.pathway-grid h3 {
  margin: 3rem 0 0.75rem;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2vw, 1.75rem);
  font-weight: 500;
}

.pathway-grid p {
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(1.04rem, 1.3vw, 1.12rem);
  line-height: 1.55;
}

.circle {
  display: grid;
  grid-template-columns: minmax(17rem, 0.9fr) minmax(18rem, 1fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
  min-height: 45rem;
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1.25rem, 5vw, 5rem);
  background: var(--forest-deep);
  color: #fff;
}

.circle-art {
  position: relative;
  width: min(78vw, 34rem);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 1px solid rgba(247, 239, 227, 0.28);
  border-radius: 50%;
}

.circle-art::before,
.circle-art::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(199, 146, 62, 0.5);
  border-radius: 50%;
}

.circle-art::before {
  inset: 13%;
}

.circle-art::after {
  inset: 29%;
  background: radial-gradient(circle, rgba(199, 146, 62, 0.26), transparent 58%);
}

.circle-art span {
  position: absolute;
  width: 4.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.72), transparent 18%),
    var(--paper);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.23);
}

.circle-art span:nth-child(1) {
  top: 13%;
  left: 50%;
}

.circle-art span:nth-child(2) {
  top: 38.5%;
  left: 85.2%;
  background-color: #d4a05c;
}

.circle-art span:nth-child(3) {
  top: 77.8%;
  left: 74.6%;
  background-color: #c87a70;
}

.circle-art span:nth-child(4) {
  top: 77.8%;
  left: 25.4%;
  background-color: #9dad80;
}

.circle-art span:nth-child(5) {
  top: 38.5%;
  left: 14.8%;
  background-color: #eee1cf;
}

.circle-copy {
  max-width: 42rem;
}

.circle-copy p {
  margin-top: var(--section-flow-gap);
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
}

.circle-copy h2 + p,
.author-copy h2 + p,
.wisdom-card h2 + p {
  margin-top: var(--section-flow-gap);
}

.circle-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: var(--section-flow-gap);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--section-flow-gap);
  color: var(--ochre);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: currentColor;
}

.author {
  display: grid;
  grid-template-columns: minmax(16rem, 0.78fr) minmax(18rem, 1fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
  background: var(--paper-soft);
}

.author-image {
  overflow: hidden;
  border-radius: 0.5rem;
  background: #dfd2c0;
  box-shadow: 0 20px 55px rgba(44, 39, 30, 0.14);
}

.author-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.author-copy {
  max-width: 42rem;
}

.author-copy p,
.speaking-copy p,
.wisdom-card p {
  margin-top: var(--section-flow-gap);
  color: var(--ink-muted);
  font-size: clamp(1.04rem, 1.4vw, 1.17rem);
}

.author-copy p + p {
  margin-top: var(--section-flow-gap);
}

.speaking {
  background: #e7eddd;
}

.speaking-copy {
  max-width: 58rem;
  margin: 0 auto;
}

.speaking h2 {
  max-width: 50rem;
  margin-top: 0.5rem;
  font-family: var(--display-serif);
  font-size: clamp(1.75rem, 3.15vw, 2.95rem);
  font-weight: 400;
  line-height: 1.08;
}

.wisdom {
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(16, 29, 23, 0.86), rgba(16, 29, 23, 0.86)),
    url("https://wisdomexchange.net/istockphoto-612735526-612x612.jpg") center / cover;
  color: #fff;
}

.wisdom-card {
  max-width: 68rem;
  margin: 0 auto;
}

.wisdom-card p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.78);
}

@media (min-width: 981px) {
  .wisdom {
    min-height: clamp(32rem, 45vw, 42rem);
  }
}

.praise {
  background:
    linear-gradient(180deg, rgba(251, 247, 237, 0.94), rgba(239, 226, 210, 0.96)),
    radial-gradient(circle at 82% 18%, rgba(184, 97, 88, 0.16), transparent 32%);
  overflow: hidden;
}

.praise-heading {
  max-width: 74rem;
  margin: 0 auto var(--section-flow-gap);
}

.praise h2 {
  max-width: 50rem;
  margin-top: 0.5rem;
  font-family: var(--display-serif);
  font-size: clamp(1.75rem, 3.15vw, 2.95rem);
  font-weight: 400;
  line-height: 1.08;
}

.praise h2 em {
  font-style: italic;
}

.praise-marquee {
  margin-right: clamp(-5rem, -5vw, -1.25rem);
  margin-left: clamp(-5rem, -5vw, -1.25rem);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.praise-track {
  --praise-card-width: min(78vw, 28rem);
  --praise-gap: 1rem;
  display: flex;
  width: max-content;
  gap: var(--praise-gap);
  padding: 0.2rem 0;
  animation: praise-scroll 72s linear infinite;
  will-change: transform;
}

.praise-marquee:hover .praise-track {
  animation-play-state: paused;
}

.praise-card {
  display: flex;
  flex: 0 0 var(--praise-card-width);
  flex-direction: column;
  justify-content: space-between;
  min-height: 20rem;
  padding: 1.35rem;
  border: 1px solid rgba(58, 41, 51, 0.12);
  border-radius: 0.5rem;
  background: rgba(251, 247, 237, 0.86);
  box-shadow: 0 18px 42px rgba(44, 39, 30, 0.08);
}

.praise-card blockquote {
  margin: 0;
}

.praise-card p {
  margin: 0;
  color: var(--plum);
  font-family: var(--serif);
  font-size: 1.14rem;
  font-weight: 400;
  line-height: 1.45;
}

.praise-card cite {
  display: block;
  margin-top: 1.6rem;
  color: var(--ink-muted);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.praise-card cite em {
  font-style: italic;
}

@keyframes praise-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@keyframes praise-scroll-desktop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-145rem, 0, 0);
  }
}

@media (min-width: 981px) {
  .praise-track {
    animation: praise-scroll-desktop 240s linear infinite;
  }

  .praise-marquee:hover .praise-track {
    animation-play-state: running;
  }
}

.order {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) auto;
  gap: 2rem;
  align-items: end;
  background: var(--clay);
  color: var(--forest-deep);
}

.order .eyebrow {
  color: rgba(16, 29, 23, 0.78);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1.25rem, 5vw, 5rem);
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--sans);
  font-size: 0.85rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    background: var(--paper-soft);
    color: var(--ink);
    box-shadow: 0 18px 36px rgba(20, 28, 22, 0.16);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem;
  }

  .nav-cta {
    border-color: var(--line);
    border-radius: 0.35rem;
  }

  .hero-inner,
  .invitation-grid,
  .circle,
  .author,
  .order {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: end;
    padding-top: 7rem;
  }

  .book-object {
    justify-self: start;
    width: min(72vw, 18rem);
    padding-top: 0;
  }

  .pathway-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .order {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.9rem 1rem;
  }

  .brand-subtitle {
    display: none;
  }

  .brand-mark {
    width: 2.7rem;
    height: 2.7rem;
  }

  .hero {
    background-position: 55% center;
  }

  .hero-inner {
    padding: 7rem 1rem 3rem;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 3rem);
  }

  .invitation h2,
  .section-heading h2,
  .circle h2,
  .author h2,
  .speaking h2,
  .wisdom h2,
  .praise h2,
  .order h2 {
    font-size: clamp(1.5rem, 6.05vw, 1.68rem);
    line-height: 1.08;
  }

  .hero-actions,
  .order-actions {
    display: grid;
  }

  .order-actions {
    margin-top: 0.75rem;
  }

  .button {
    width: 100%;
  }

  .invitation,
  .pathways,
  .author,
  .speaking,
  .wisdom,
  .praise,
  .order,
  .circle {
    padding-right: 1rem;
    padding-left: 1rem;
  }

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

  .pathway-grid article {
    min-height: 13rem;
  }

  .circle-art {
    width: min(88vw, 28rem);
  }

  .circle-art span {
    width: 3.5rem;
  }

  .praise-marquee {
    margin-right: -1rem;
    margin-left: -1rem;
  }

  .praise-card {
    min-height: 22rem;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .praise-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .praise-track {
    animation: none;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .praise-card[aria-hidden="true"] {
    display: none;
  }
}
