@font-face {
  font-family: "Manrope Variable";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/fonts/manrope-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/cormorant-italic-latin.woff2") format("woff2");
}
:root {
  --green: #102b23;
  --green-deep: #0a2019;
  --green-mid: #1f4337;
  --paper: #f7f8f2;
  --white: #fff;
  --lime: #d1ed9a;
  --ink: #172c24;
  --muted: #5a685e;
  --line: #d9dfd3;
  --font: "Manrope Variable", sans-serif;
  --serif: "Cormorant Garamond", serif;
  --pad: clamp(24px, 5.5vw, 96px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--lime);
  color: var(--green);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.055em;
}
h1 {
  font-size: clamp(3.6rem, 6.7vw, 7.4rem);
}
h2 {
  font-size: clamp(2.6rem, 4.2vw, 4.7rem);
}
h3 {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  letter-spacing: -0.035em;
}
em {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.13em;
  line-height: 0.8;
}
p {
  max-width: 65ch;
}
.container {
  width: 100%;
  max-width: 1640px;
  margin-inline: auto;
  padding-inline: var(--pad);
}
.section {
  padding-block: 112px;
}
.eyebrow {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.arrow {
  flex-shrink: 0;
  transition: transform 0.25s;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 19px 25px;
  font-size: 14px;
  font-weight: 600;
  min-height: 60px;
  transition:
    background 0.2s,
    transform 0.2s;
  border: 1px solid transparent;
}
.button:hover {
  transform: translateY(-3px);
}
.button:hover .arrow,
.text-link:hover .arrow,
.header-cta:hover .arrow {
  transform: translate(3px, -3px);
}
.button-lime {
  background: var(--lime);
  color: var(--green);
}
.button-lime:hover {
  background: #e2f8bd;
}
.button-green {
  background: var(--green);
  color: #fff;
}
.button-light {
  background: var(--paper);
  color: var(--green);
}
.button-outline {
  border-color: var(--line);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 8px;
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 20px;
  z-index: 200;
  background: var(--lime);
  color: var(--ink);
  padding: 12px 24px;
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: none;
}
:focus-visible {
  outline: 3px solid #6a9b43;
  outline-offset: 5px;
}
.site-header {
  position: relative;
  z-index: 30;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  color: #fff;
  border-color: #ffffff28;
}
.header-inner {
  height: 104px;
  max-width: 1640px;
  margin: auto;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.brand {
  display: block;
  flex-shrink: 0;
}
.logo {
  width: 226px;
  display: block;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  margin-right: auto;
}
.desktop-nav a {
  font-size: 13px;
  font-weight: 500;
  position: relative;
}
.desktop-nav a:after {
  content: "";
  height: 1px;
  background: currentColor;
  position: absolute;
  bottom: -7px;
  left: 0;
  right: 100%;
  transition: right 0.2s;
}
.desktop-nav a:hover:after,
.desktop-nav a[aria-current]:after {
  right: 0;
}
.header-cta {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 22px;
  border: 1px solid currentColor;
  padding: 12px 17px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: inherit;
  width: 44px;
  height: 44px;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: currentColor;
  margin: 7px 0;
  transition: transform 0.2s;
}
.mobile-menu {
  display: none;
}
.hero {
  height: min(940px, 100svh);
  min-height: 740px;
  position: relative;
  isolation: isolate;
  color: white;
  background: var(--green-deep);
  overflow: hidden;
}
.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  z-index: -3;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(6, 25, 18, 0.68) 0%,
      rgba(6, 25, 18, 0.31) 44%,
      transparent 80%
    ),
    linear-gradient(0deg, rgba(5, 20, 15, 0.6), transparent 26%);
  z-index: -2;
}
.hero-content {
  position: relative;
  padding-top: clamp(190px, 20vh, 250px);
  padding-bottom: 150px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #e3e8da;
  margin-bottom: 30px;
}
.little-line {
  height: 1px;
  width: 32px;
  background: var(--lime);
}
.hero h1 {
  max-width: 860px;
  font-weight: 450;
  line-height: 1.07;
  letter-spacing: -0.055em;
}
.hero h1 em {
  color: var(--lime);
}
.hero-description {
  font-size: 16px;
  line-height: 1.8;
  color: #e4e8dc;
  max-width: 390px;
  margin-top: 30px;
  margin-bottom: 31px;
}
.hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.025em;
}
.hero-bottom:before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--pad);
  right: var(--pad);
  height: 1px;
  background: #ffffff35;
}
.hero-bottom a {
  display: flex;
  align-items: center;
  gap: 18px;
}
.round-arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #ffffff60;
  border-radius: 100%;
  font-size: 18px;
}
.hero-edition {
  color: #c9d3c8;
}
.intro {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
}
.intro-label .small-note {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 60px;
}
.intro-copy h2 {
  font-size: clamp(2.6rem, 3.75vw, 4.2rem);
  max-width: 940px;
}
.intro-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
  margin-top: 35px;
}
.intro-bottom p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 535px;
}
.intro-bottom .text-link {
  margin-bottom: 5px;
}
.invitation {
  background: var(--lime);
  color: var(--green);
  padding: 100px 0;
  text-align: center;
}
.invitation .eyebrow {
  margin-bottom: 28px;
}
.invitation h2 {
  font-size: clamp(3rem, 5.2vw, 5.6rem);
}
.invitation .button {
  margin-top: 36px;
}
.invitation-note {
  display: block;
  font-size: 12px;
  margin-top: 15px;
}
.site-footer {
  background: var(--green-deep);
  color: #ecf1e9;
}
.footer-main {
  padding-block: 70px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 70px;
}
.footer-brand .logo {
  width: 260px;
}
.footer-main p {
  font-size: 13px;
  color: #b1c0b5;
  margin-top: 21px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}
.footer-links .eyebrow {
  color: #aabbad;
  margin-bottom: 14px;
}
.footer-links a {
  width: fit-content;
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-links a:hover {
  color: var(--lime);
}
.footer-links .arrow {
  width: 16px;
  height: 16px;
}
.footer-bottom {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  font-size: 12px;
  color: #b1c0b5;
  padding-block: 22px;
  border-top: 1px solid #ffffff20;
}
.footer-bottom .back-top {
  margin-left: auto;
}
@media (min-width: 1600px) {
  .hero-content {
    padding-top: 250px;
  }
}
@media (max-width: 1100px) {
  .desktop-nav {
    gap: 20px;
  }
  .logo {
    width: 200px;
  }
  .header-inner {
    gap: 20px;
  }
  .intro {
    grid-template-columns: 1fr 3fr;
    gap: 24px;
  }
  .intro-bottom {
    gap: 30px;
    display: block;
  }
  .intro-bottom .text-link {
    margin-top: 26px;
  }
  .footer-main {
    gap: 40px;
  }
  .hero h1 {
    font-size: 6.7vw;
  }
}
@media (max-width: 900px) {
  .header-inner {
    height: 88px;
  }
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .mobile-menu {
    display: flex;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--green-deep);
    color: white;
    flex-direction: column;
    padding: 20px var(--pad) 35px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition:
      opacity 0.2s,
      transform 0.2s,
      visibility 0.2s;
    box-shadow: 0 24px 30px #0003;
  }
  .mobile-menu a {
    font-size: 24px;
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #ffffff25;
    gap: 18px;
  }
  .mobile-menu a span {
    font-size: 11px;
    color: #b7c8b7;
  }
  .mobile-menu .arrow {
    margin-left: auto;
  }
  .menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .hero {
    min-height: 790px;
    max-height: 950px;
  }
  .hero-content {
    padding-top: 205px;
  }
  .hero h1 {
    font-size: clamp(3.5rem, 8.3vw, 5.5rem);
  }
  .hero-art {
    object-position: 60% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #061912bd, #06191230),
      linear-gradient(0deg, #06191299, transparent 40%);
  }
  .hero-edition {
    display: none;
  }
  .section {
    padding-block: 80px;
  }
  .intro {
    grid-template-columns: 1fr;
  }
  .intro-label .small-note {
    display: none;
  }
  .intro-copy h2 {
    font-size: 3rem;
  }
  .footer-main {
    grid-template-columns: 1.3fr 1fr;
  }
  .footer-main > div:first-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .invitation {
    padding: 80px 0;
  }
}
@media (max-width: 600px) {
  .logo {
    width: 195px;
  }
  .hero {
    min-height: 800px;
    height: 100svh;
    max-height: 950px;
  }
  .hero-content {
    padding-top: 185px;
  }
  .hero h1 {
    font-size: clamp(3.2rem, 11.6vw, 4.5rem);
    line-height: 1.08;
  }
  .hero-art {
    object-position: 64% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #061912cf, #06191240),
      linear-gradient(0deg, #061912ba, transparent 60%);
  }
  .hero-description {
    font-size: 15px;
    max-width: 310px;
    margin-top: 27px;
  }
  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.13em;
    gap: 10px;
  }
  .hero-eyebrow .little-line {
    width: 20px;
  }
  .hero .button {
    font-size: 12px;
    gap: 20px;
    padding: 17px 20px;
  }
  .hero-bottom {
    height: 85px;
    font-size: 10px;
    gap: 18px;
  }
  .hero-bottom > span:first-child {
    max-width: 155px;
  }
  .hero-bottom a {
    gap: 9px;
    white-space: nowrap;
  }
  .round-arrow {
    width: 28px;
    height: 28px;
  }
  .section {
    padding-block: 65px;
  }
  .intro {
    gap: 28px;
  }
  .intro-copy h2 {
    font-size: 2.7rem;
  }
  .desktop-break {
    display: none;
  }
  .intro-bottom {
    margin-top: 25px;
  }
  .intro-bottom p {
    font-size: 15px;
  }
  .footer-main {
    padding-block: 50px;
    gap: 40px 25px;
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand .logo {
    width: 230px;
  }
  .footer-links {
    font-size: 12px;
  }
  .footer-links .eyebrow {
    font-size: 10px;
  }
  .footer-bottom {
    gap: 16px;
    font-size: 10px;
  }
  .footer-bottom > span {
    width: 100%;
  }
  .invitation h2 {
    font-size: 2.9rem;
  }
  .invitation {
    padding: 65px 0;
  }
}
.header-dark {
  background: linear-gradient(180deg, #071d17a6, transparent);
}
.values {
  padding-bottom: 30px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.value-item {
  padding: 36px 40px 28px 0;
}
.value-item + .value-item {
  border-left: 1px solid var(--line);
  padding-left: 40px;
}
.value-number {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 35px;
}
.value-item h3 {
  font-size: 25px;
  line-height: 1.25;
  margin-bottom: 18px;
}
.value-item p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 340px;
}
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  padding-top: 90px;
}
.portrait-panel {
  position: relative;
  aspect-ratio: 0.92;
  overflow: hidden;
  background: #312a2a;
}
.portrait-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
}
.portrait-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 70px 27px 23px;
  background: linear-gradient(0deg, #0009, transparent);
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
}
.portrait-caption span:first-child {
  font-weight: 650;
}
.spotlight-copy .eyebrow {
  margin-bottom: 25px;
}
.spotlight-copy h2 {
  font-size: clamp(3rem, 4.7vw, 5rem);
  margin-bottom: 28px;
}
.spotlight-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 17px;
  max-width: 420px;
}
.spotlight-copy .button {
  margin-top: 15px;
}
.spotlight-secondary {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  margin-top: 18px;
  max-width: fit-content;
}
.spotlight-secondary .arrow {
  width: 16px;
}
.statement {
  background: var(--green);
  color: var(--paper);
  padding: 95px 0;
  position: relative;
  overflow: hidden;
}
.statement .eyebrow {
  color: var(--lime);
  margin-bottom: 32px;
}
.statement h2 {
  font-size: clamp(3rem, 5.5vw, 6rem);
}
.statement h2 em {
  color: var(--lime);
}
.statement-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid #ffffff30;
  margin-top: 45px;
  padding-top: 30px;
  gap: 35px;
}
.statement-bottom p {
  font-size: 14px;
  color: #c9d4ca;
}
.statement .text-link {
  border-color: #b8cab9;
  color: var(--lime);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 55px;
  align-items: flex-end;
  margin-bottom: 45px;
}
.section-heading .eyebrow {
  margin-bottom: 22px;
}
.section-heading > p {
  max-width: 320px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}
.resource-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.resource-card {
  display: block;
  border: 1px solid var(--line);
  transition: transform 0.3s;
}
.resource-card:hover {
  transform: translateY(-5px);
}
.book-visual,
.podcast-visual {
  height: 370px;
  overflow: hidden;
  position: relative;
}
.book-visual {
  background: #e9eeea;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.book-visual img {
  height: 100%;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.45s;
}
.resource-card:hover .book-visual img {
  transform: rotate(-2deg) scale(1.03);
}
.resource-info {
  padding: 28px 30px 32px;
}
.resource-info .eyebrow {
  font-size: 10px;
  color: var(--muted);
}
.resource-info h3 {
  margin-top: 13px;
  font-size: 27px;
}
.resource-info p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
}
.resource-info .text-link {
  margin-top: 27px;
  font-size: 12px;
  border: 0;
  padding: 0;
}
.podcast-visual {
  background: var(--green-mid);
  color: var(--lime);
  padding: 35px;
}
.podcast-visual > .eyebrow {
  font-size: 10px;
  color: #d4dfcf;
}
.podcast-title {
  font-size: clamp(3rem, 4.8vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  display: block;
  margin-top: 33px;
}
.podcast-title em {
  color: #f3f7e9;
}
.podcast-play {
  position: absolute;
  bottom: 29px;
  right: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #daeac590;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  transition:
    background 0.2s,
    color 0.2s;
}
.podcast-card:hover .podcast-play {
  background: var(--lime);
  color: var(--green);
}
.podcast-caption {
  position: absolute;
  left: 35px;
  bottom: 42px;
  font-size: 11px;
  color: #d4dfcf;
}
.journal-link {
  display: flex;
  gap: 25px;
  align-items: center;
  padding-top: 28px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.journal-link > .eyebrow {
  font-size: 10px;
  color: var(--muted);
}
.journal-action {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: auto;
  white-space: nowrap;
  font-weight: 600;
}
.journal-action .arrow {
  width: 17px;
}
.page-hero {
  padding-top: 85px;
  padding-bottom: 85px;
}
.page-hero > .eyebrow {
  margin-bottom: 37px;
}
.page-hero h1 {
  font-size: clamp(3.4rem, 6.4vw, 6.7rem);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 70px;
  align-items: end;
}
.page-hero-description {
  max-width: 375px;
  margin-left: auto;
  padding-bottom: 8px;
}
.page-hero-description p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.9;
  margin-top: 15px;
}
.chapter-number {
  display: block;
  font-size: 28px;
  letter-spacing: -0.08em;
  color: #73806e;
  margin-bottom: 38px;
}
.page-lead {
  font-size: 17px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 555px;
  margin-top: 30px;
}
.about-image {
  position: relative;
}
.about-image > img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 45%;
}
.about-image > div {
  position: absolute;
  bottom: 22px;
  left: calc(var(--pad) + 28px);
  right: calc(var(--pad) + 28px);
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 12px;
  text-shadow: 0 1px 5px #000;
}
.prose-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 35px;
}
.prose-columns p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--muted);
}
.principles {
  background: #e9eee4;
}
.principles .values-grid {
  border-color: #cbd5c5;
}
.principles .value-item {
  padding-bottom: 0;
}
.founder-note {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}
.founder-note h2 {
  margin-bottom: 30px;
}
.founder-note p:not(.eyebrow) {
  max-width: 580px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 25px;
}
.person-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
  padding-bottom: 40px;
}
.person-image {
  position: relative;
  aspect-ratio: 0.82;
  overflow: hidden;
  background: #312a2a;
}
.person-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.image-location {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--paper);
  color: var(--green);
  padding: 12px 16px;
  font-size: 11px;
}
.person-copy {
  padding-block: 13px;
}
.person-copy .eyebrow {
  margin-bottom: 25px;
}
.person-copy h2 {
  font-size: clamp(3.5rem, 5.5vw, 6rem);
}
.person-intro {
  font-size: 19px;
  line-height: 1.65;
  font-weight: 550;
  margin-block: 28px 22px;
}
.person-copy > p:not(.eyebrow):not(.person-intro) {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.person-copy .button {
  margin-top: 14px;
  font-size: 12px;
}
.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
}
.profile-links a {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
}
.profile-links .arrow {
  width: 14px;
  height: 14px;
}
.quote-section {
  padding-block: 85px;
  text-align: center;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 110px;
  color: #729360;
  line-height: 0.7;
  display: block;
}
.quote-section blockquote {
  margin: 0;
}
.quote-section blockquote p {
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1.25;
  margin: auto;
}
.quote-section cite {
  font-style: normal;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  margin-top: 25px;
  color: var(--muted);
}
.brian-section {
  background: #e9eee4;
}
.brian-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.brian-intro .eyebrow {
  margin-bottom: 25px;
}
.brian-intro h2 {
  font-size: clamp(2.5rem, 3.4vw, 4rem);
}
.founder-card {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
.founder-card > img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  filter: grayscale(100%);
}
.founder-card h3 {
  font-size: 28px;
  margin-top: 10px;
}
.founder-role {
  font-size: 11px;
  color: var(--muted);
  margin-block: 10px 24px;
}
.founder-card p:not(.founder-role) {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
}
.founder-card .text-link {
  font-size: 12px;
  margin-top: 24px;
  white-space: normal;
}
.membership-hero .button {
  margin-top: 25px;
  font-size: 13px;
}
.membership-values {
  padding-bottom: 90px;
}
.membership-values .section-heading {
  padding-top: 15px;
}
.how-section {
  background: var(--green);
  color: var(--paper);
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
}
.how-grid > div > .eyebrow {
  color: var(--lime);
  margin-bottom: 30px;
}
.how-grid > div > p:not(.eyebrow) {
  color: #c9d4ca;
  font-size: 14px;
  margin-top: 30px;
  line-height: 1.9;
}
.how-grid h2 em {
  color: var(--lime);
}
.steps {
  padding: 0;
  list-style: none;
  margin: 0;
}
.steps li {
  display: flex;
  gap: 25px;
  border-bottom: 1px solid #ffffff30;
  padding: 28px 0;
}
.steps li:first-child {
  padding-top: 0;
}
.steps li > span {
  font-size: 12px;
  color: var(--lime);
  padding-top: 7px;
}
.steps h3 {
  font-size: 25px;
  margin-bottom: 14px;
  line-height: 1.2;
}
.steps p {
  font-size: 14px;
  color: #c9d4ca;
  line-height: 1.85;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 70px;
}
.faq-section .eyebrow {
  margin-bottom: 28px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 25px 0;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 550;
  line-height: 1.6;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 25px;
  font-weight: 350;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  padding: 0 35px 25px 0;
}
.faq-list p a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-hero {
  padding-block: 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(45px, 7vw, 100px);
  align-items: start;
}
.contact-intro .eyebrow {
  margin-bottom: 38px;
}
.contact-intro h1 {
  font-size: clamp(3.2rem, 5.3vw, 6rem);
}
.contact-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  max-width: 360px;
  margin-top: 34px;
  line-height: 1.9;
}
.contact-location {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 60px;
  display: block;
  color: var(--muted);
  padding-top: 25px;
  border-top: 1px solid var(--line);
  max-width: 360px;
}
.contact-card {
  border: 1px solid var(--line);
  background: #fff;
}
.contact-person {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}
.contact-person img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
}
.contact-person .eyebrow {
  font-size: 9px;
}
.contact-person h2 {
  font-size: 24px;
  margin-top: 9px;
  letter-spacing: -0.04em;
}
.contact-person p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}
.booking-main {
  background: var(--green);
  color: var(--paper);
  padding: 35px 28px;
}
.booking-main .eyebrow {
  font-size: 10px;
  color: #bccbb7;
}
.booking-main h3 {
  font-size: 32px;
  margin-top: 17px;
}
.booking-main p {
  font-size: 14px;
  color: #ced8c9;
  line-height: 1.8;
  margin-top: 19px;
}
.booking-main .button {
  display: flex;
  width: 100%;
  font-size: 12px;
  gap: 15px;
  margin-top: 26px;
  padding: 17px 20px;
}
.booking-note {
  display: block;
  margin-top: 13px;
  font-size: 10px;
  color: #c9d4ca;
}
.direct-contact {
  padding: 0 26px;
}
.direct-contact > a {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 12px;
  border-bottom: 1px solid var(--line);
}
.direct-contact > a:last-child {
  border: 0;
}
.direct-contact > a > span:last-child {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 11px;
  overflow-wrap: anywhere;
}
.direct-contact .arrow {
  width: 15px;
  height: 15px;
}
.direct-contact > a > span:first-child {
  font-weight: 600;
}
.contact-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 90px;
}
.contact-bottom > p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 39px;
  letter-spacing: -0.04em;
}
.contact-bottom .eyebrow {
  font-size: 10px;
  margin-bottom: 20px;
}
.contact-bottom > div > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
}
.contact-bottom .text-link {
  font-size: 11px;
  margin-top: 20px;
  white-space: normal;
}
.legal-copy {
  max-width: 900px;
  margin-left: 0;
  padding-bottom: 110px;
}
.legal-copy > .eyebrow {
  color: var(--muted);
  margin-bottom: 45px;
}
.legal-copy h2 {
  font-size: 25px;
  margin-block: 30px 15px;
  letter-spacing: -0.035em;
}
.legal-copy p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
}
.legal-copy a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.not-found {
  padding-block: 100px 130px;
}
.not-found .eyebrow {
  margin-bottom: 30px;
}
.not-found p:not(.eyebrow) {
  margin-block: 30px;
  color: var(--muted);
}
@media (max-width: 1100px) {
  .value-item {
    padding-right: 24px;
  }
  .value-item + .value-item {
    padding-left: 24px;
  }
  .value-item h3 {
    font-size: 22px;
  }
  .spotlight {
    gap: 45px;
  }
  .spotlight-copy h2 {
    font-size: 4rem;
  }
  .portrait-caption {
    flex-direction: column;
    gap: 2px;
  }
  .section-heading {
    gap: 30px;
  }
  .book-visual,
  .podcast-visual {
    height: 320px;
  }
  .podcast-visual {
    padding: 28px;
  }
  .podcast-title {
    font-size: 4rem;
  }
  .podcast-caption {
    left: 28px;
    font-size: 9px;
  }
  .podcast-play {
    right: 25px;
    width: 45px;
    height: 45px;
  }
  .journal-link > span:nth-child(2) {
    display: none;
  }
  .brian-grid {
    gap: 40px;
    grid-template-columns: 1fr 1.3fr;
  }
  .founder-card {
    gap: 18px;
  }
  .founder-card > img {
    width: 90px;
    height: 90px;
  }
  .contact-hero {
    gap: 45px;
  }
  .contact-person {
    padding: 20px;
    gap: 13px;
  }
  .contact-person h2 {
    font-size: 21px;
  }
  .contact-person img {
    width: 62px;
    height: 62px;
  }
  .contact-person .eyebrow {
    font-size: 8px;
  }
  .direct-contact > a > span:last-child {
    font-size: 10px;
  }
  .contact-bottom {
    gap: 35px;
  }
}
@media (max-width: 900px) {
  .spotlight {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    padding-top: 60px;
  }
  .spotlight-copy h2 {
    font-size: 3.1rem;
  }
  .spotlight-copy .eyebrow {
    font-size: 10px;
  }
  .spotlight-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .portrait-panel {
    aspect-ratio: 0.7;
  }
  .spotlight-secondary {
    font-size: 10px;
  }
  .spotlight .button {
    font-size: 12px;
    padding: 17px;
  }
  .value-item p {
    font-size: 14px;
  }
  .value-item h3 {
    font-size: 20px;
  }
  .section-heading > p {
    max-width: 250px;
    font-size: 14px;
  }
  .section-heading h2 {
    font-size: 3rem;
  }
  .statement {
    padding-block: 75px;
  }
  .resource-grid {
    gap: 20px;
  }
  .podcast-title {
    font-size: 3.3rem;
  }
  .podcast-caption {
    max-width: 170px;
    bottom: 35px;
    line-height: 1.6;
  }
  .resource-info {
    padding: 25px;
  }
  .resource-info h3 {
    font-size: 24px;
  }
  .resource-info p {
    font-size: 13px;
  }
  .page-hero {
    padding-block: 65px;
  }
  .page-hero-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
  }
  .page-hero-description p {
    font-size: 15px;
  }
  .about-image > img {
    height: 380px;
  }
  .prose-columns {
    gap: 30px;
  }
  .person-feature {
    gap: 35px;
  }
  .person-image {
    aspect-ratio: 0.65;
  }
  .person-copy .eyebrow {
    font-size: 10px;
  }
  .person-copy h2 {
    font-size: 4rem;
  }
  .person-intro {
    font-size: 16px;
  }
  .person-copy > p:not(.eyebrow):not(.person-intro) {
    font-size: 14px;
  }
  .person-copy .button {
    font-size: 11px;
    padding: 16px;
    gap: 12px;
  }
  .profile-links {
    gap: 16px;
  }
  .profile-links a {
    font-size: 11px;
  }
  .brian-grid {
    grid-template-columns: 1fr;
  }
  .founder-card {
    max-width: 620px;
  }
  .founder-card > img {
    width: 130px;
    height: 130px;
  }
  .how-grid {
    gap: 45px;
  }
  .faq-section {
    gap: 35px;
    grid-template-columns: 1fr 1.5fr;
  }
  .faq-section h2 {
    font-size: 3rem;
  }
  .faq-list summary {
    font-size: 14px;
  }
  .contact-hero {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    padding-block: 65px;
  }
  .contact-intro h1 {
    font-size: 3.7rem;
  }
  .booking-main {
    padding: 27px 22px;
  }
  .booking-main h3 {
    font-size: 28px;
  }
  .booking-main .button {
    font-size: 11px;
    padding: 16px;
  }
  .contact-person {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-person .eyebrow {
    font-size: 9px;
  }
  .contact-bottom {
    grid-template-columns: 1fr 1fr;
  }
  .contact-bottom > p {
    grid-column: 1/-1;
  }
  .legal-copy {
    max-width: 800px;
  }
}
@media (max-width: 600px) {
  .values {
    padding-bottom: 0;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .value-item,
  .value-item + .value-item {
    padding: 26px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .value-number {
    margin-bottom: 20px;
    font-size: 10px;
  }
  .value-item h3 {
    font-size: 25px;
    margin-bottom: 13px;
  }
  .value-item p {
    font-size: 15px;
    max-width: none;
  }
  .spotlight {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 60px;
  }
  .portrait-panel {
    aspect-ratio: 1;
  }
  .portrait-caption {
    flex-direction: row;
    font-size: 10px;
    padding: 60px 20px 20px;
  }
  .spotlight-copy h2 {
    font-size: 3.4rem;
  }
  .spotlight-copy h2 br:nth-child(2) {
    display: none;
  }
  .spotlight-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .spotlight-copy .eyebrow {
    font-size: 11px;
  }
  .spotlight-secondary {
    font-size: 12px;
  }
  .spotlight-copy .button {
    font-size: 13px;
    padding: 18px 22px;
    gap: 30px;
  }
  .statement {
    padding-block: 65px;
  }
  .statement h2 {
    font-size: 2.9rem;
    line-height: 1.18;
  }
  .statement h2 br {
    display: none;
  }
  .statement-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    margin-top: 30px;
    padding-top: 25px;
  }
  .statement-bottom p {
    font-size: 13px;
  }
  .statement .text-link {
    font-size: 13px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading h2 {
    font-size: 2.8rem;
  }
  .section-heading > p {
    max-width: none;
    font-size: 15px;
    margin-top: 25px;
  }
  .resource-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .book-visual,
  .podcast-visual {
    height: 340px;
  }
  .podcast-title {
    font-size: 4.2rem;
    margin-top: 25px;
  }
  .podcast-visual {
    padding: 28px;
  }
  .resource-info {
    padding: 25px;
  }
  .resource-info h3 {
    font-size: 27px;
  }
  .resource-info p {
    font-size: 14px;
  }
  .podcast-caption {
    max-width: 220px;
    font-size: 10px;
    bottom: 37px;
  }
  .podcast-play {
    width: 48px;
    height: 48px;
    bottom: 28px;
  }
  .journal-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 25px;
    padding-top: 22px;
  }
  .journal-action {
    margin-left: 0;
    font-size: 12px;
  }
  .page-hero {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .page-hero > .eyebrow {
    margin-bottom: 25px;
  }
  .page-hero h1 {
    font-size: clamp(2.8rem, 11.7vw, 4rem);
    line-height: 1.14;
  }
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-hero-description {
    max-width: none;
    margin-left: 0;
  }
  .page-hero-description p {
    font-size: 16px;
    line-height: 1.8;
  }
  .chapter-number {
    display: none;
  }
  .page-lead {
    font-size: 16px;
    margin-top: 25px;
  }
  .about-image > img {
    height: 330px;
    object-position: 65% center;
  }
  .about-image > div {
    font-size: 10px;
    left: calc(var(--pad) + 14px);
    right: calc(var(--pad) + 14px);
    gap: 12px;
  }
  .prose-columns {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 25px;
  }
  .prose-columns p {
    font-size: 15px;
  }
  .principles .value-item {
    padding-bottom: 25px;
  }
  .principles .value-item:last-child {
    border: 0;
    padding-bottom: 0;
  }
  .founder-note {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .founder-note h2 {
    font-size: 2.7rem;
  }
  .founder-note p:not(.eyebrow) {
    font-size: 15px;
  }
  .founder-note .text-link {
    font-size: 12px;
    white-space: normal;
  }
  .person-feature {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 10px;
  }
  .person-image {
    aspect-ratio: 1;
  }
  .image-location {
    font-size: 10px;
    bottom: 15px;
    left: 15px;
    padding: 10px 13px;
  }
  .person-copy .eyebrow {
    font-size: 11px;
  }
  .person-copy h2 {
    font-size: 3.8rem;
  }
  .person-copy h2 br {
    display: none;
  }
  .person-intro {
    font-size: 18px;
    margin-top: 23px;
  }
  .person-copy > p:not(.eyebrow):not(.person-intro) {
    font-size: 15px;
  }
  .person-copy .button {
    padding: 18px 21px;
    font-size: 12px;
    gap: 25px;
  }
  .profile-links a {
    font-size: 12px;
  }
  .quote-section {
    padding-block: 65px;
  }
  .quote-section blockquote p {
    font-size: 2.25rem;
  }
  .quote-section blockquote p br {
    display: none;
  }
  .brian-grid {
    gap: 35px;
  }
  .brian-intro h2 {
    font-size: 2.7rem;
  }
  .founder-card {
    flex-direction: column;
    gap: 20px;
  }
  .founder-card > img {
    width: 110px;
    height: 110px;
  }
  .founder-card h3 {
    font-size: 28px;
    margin: 0;
  }
  .founder-card p:not(.founder-role) {
    font-size: 15px;
  }
  .membership-values {
    padding-bottom: 60px;
  }
  .how-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .how-grid h2 {
    font-size: 3.2rem;
  }
  .steps h3 {
    font-size: 24px;
  }
  .steps p {
    font-size: 15px;
  }
  .steps li {
    gap: 20px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .faq-section h2 {
    font-size: 3.1rem;
  }
  .faq-section h2 br {
    display: none;
  }
  .faq-list summary {
    font-size: 15px;
    padding: 23px 0;
  }
  .faq-list details > p {
    font-size: 15px;
    padding-right: 12px;
  }
  .contact-hero {
    grid-template-columns: 1fr;
    padding-block: 55px;
    gap: 35px;
  }
  .contact-intro h1 {
    font-size: clamp(2.8rem, 11.7vw, 4rem);
  }
  .contact-intro .eyebrow {
    margin-bottom: 25px;
  }
  .contact-intro > p:not(.eyebrow) {
    font-size: 16px;
    margin-top: 26px;
  }
  .contact-location {
    margin-top: 28px;
    padding-top: 20px;
  }
  .contact-person {
    flex-direction: row;
    align-items: center;
    padding: 22px 19px;
  }
  .contact-person h2 {
    font-size: 21px;
  }
  .contact-person .eyebrow {
    font-size: 8px;
  }
  .contact-person img {
    width: 60px;
    height: 60px;
  }
  .booking-main {
    padding: 30px 23px;
  }
  .booking-main h3 {
    font-size: 30px;
  }
  .booking-main p {
    font-size: 15px;
  }
  .booking-main .button {
    font-size: 12px;
  }
  .direct-contact {
    padding: 0 22px;
  }
  .direct-contact > a {
    font-size: 12px;
  }
  .direct-contact > a > span:last-child {
    font-size: 10px;
    gap: 8px;
  }
  .contact-bottom {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 65px;
  }
  .contact-bottom > p {
    font-size: 37px;
  }
  .contact-bottom .eyebrow {
    margin-bottom: 12px;
  }
  .contact-bottom > div > p {
    font-size: 15px;
  }
  .contact-bottom .text-link {
    font-size: 13px;
  }
  .legal-copy {
    padding-bottom: 65px;
  }
  .not-found {
    padding-block: 65px 85px;
  }
  .not-found h1 {
    font-size: 3.5rem;
  }
}
.membership-offer {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 90px;
  padding-bottom: 100px;
  align-items: start;
}
.membership-price {
  padding: 40px;
  background: #e9eee4;
}
.membership-price .price {
  font-size: 16px;
  color: var(--muted);
  margin-top: 20px;
}
.membership-price .price > span {
  font-size: 80px;
  letter-spacing: -0.07em;
  color: var(--green);
  line-height: 1.2;
}
.membership-price > p:not(.eyebrow):not(.price) {
  font-size: 16px;
  margin-top: 20px;
  color: var(--muted);
}
.membership-price .button {
  margin-top: 30px;
}
.price-note {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 18px;
  line-height: 1.8;
}
.membership-inclusions > .eyebrow {
  margin-bottom: 25px;
}
.membership-inclusions h2 {
  font-size: 48px;
}
.membership-inclusions ul {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
}
.membership-inclusions li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.membership-inclusions strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.membership-inclusions li span {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}
@media (max-width: 900px) {
  .membership-offer {
    gap: 35px;
  }
  .membership-price {
    padding: 27px;
  }
  .membership-price .button {
    font-size: 12px;
    padding: 16px;
    gap: 12px;
  }
  .membership-inclusions h2 {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .membership-offer {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 65px;
  }
  .membership-price {
    padding: 30px;
  }
  .membership-price .button {
    font-size: 13px;
    padding: 18px;
    gap: 24px;
  }
  .membership-inclusions li span {
    font-size: 16px;
  }
}
.desktop-nav a,
.header-cta,
.footer-links,
.text-link,
.button,
.profile-links a,
.spotlight-secondary,
.journal-action {
  font-size: 14px;
}
.intro-bottom p,
.value-item p,
.spotlight-copy > p:not(.eyebrow),
.section-heading > p,
.resource-info p,
.prose-columns p,
.founder-note p:not(.eyebrow),
.person-copy > p:not(.eyebrow):not(.person-intro),
.founder-card p:not(.founder-role),
.steps p,
.faq-list details > p,
.contact-bottom > div > p,
.booking-main p {
  font-size: 16px;
}
.page-hero-grid > *,
.spotlight > *,
.person-feature > *,
.brian-grid > *,
.how-grid > *,
.contact-hero > *,
.contact-bottom > *,
.resource-grid > * {
  min-width: 0;
}
.eyebrow,
.value-number,
.resource-info .eyebrow,
.podcast-visual > .eyebrow,
.podcast-caption,
.journal-link > .eyebrow,
.image-location,
.founder-role,
.contact-person .eyebrow,
.booking-main .eyebrow,
.booking-note,
.contact-location,
.contact-bottom .eyebrow {
  font-size: 12px;
}
.direct-contact > a,
.direct-contact > a > span:last-child {
  font-size: 14px;
}
.direct-contact > a > span:last-child {
  min-width: 0;
}
.direct-contact > a > span:last-child .arrow {
  flex-shrink: 0;
}
@media (max-width: 1100px) {
  .header-inner {
    gap: 18px;
  }
  .desktop-nav {
    gap: 20px;
  }
  .logo {
    width: 190px;
  }
  .header-cta {
    gap: 12px;
    padding: 10px 13px;
  }
  .podcast-visual > .eyebrow {
    max-width: 250px;
  }
  .podcast-caption {
    max-width: 220px;
    bottom: 30px;
    line-height: 1.5;
  }
  .person-copy .button {
    font-size: 13px;
  }
  .contact-person .eyebrow {
    font-size: 11px;
  }
  .contact-person {
    gap: 15px;
  }
  .contact-person img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 900px) {
  .spotlight {
    align-items: start;
  }
  .portrait-panel {
    aspect-ratio: 0.65;
  }
  .footer-links .eyebrow {
    font-size: 12px;
  }
  .footer-bottom {
    font-size: 12px;
  }
  .hero h1 {
    font-size: clamp(3.4rem, 8vw, 5.5rem);
  }
  .podcast-visual > .eyebrow {
    font-size: 10px;
  }
  .podcast-caption {
    max-width: 160px;
    font-size: 11px;
  }
  .contact-person {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .person-copy h2 br,
  .spotlight-copy h2 br:nth-child(2) {
    display: initial;
  }
  .portrait-panel {
    aspect-ratio: 1;
  }
  .hero-eyebrow {
    font-size: 11px;
  }
  .hero .button {
    font-size: 13px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-links {
    gap: 15px;
  }
  .footer-main > div:first-child {
    grid-column: auto;
  }
  .footer-bottom {
    font-size: 12px;
  }
  .hero-bottom {
    font-size: 11px;
  }
  .portrait-caption {
    font-size: 12px;
    flex-direction: column;
    gap: 3px;
  }
  .resource-info .text-link {
    font-size: 14px;
  }
  .contact-person {
    flex-direction: row;
  }
  .contact-person .eyebrow {
    font-size: 10px;
  }
  .booking-main .button {
    font-size: 13px;
  }
  .direct-contact > a {
    gap: 10px;
  }
  .direct-contact > a > span:last-child {
    font-size: 13px;
  }
  .profile-links {
    gap: 20px;
  }
  .podcast-caption {
    max-width: 205px;
    font-size: 12px;
  }
  .podcast-visual > .eyebrow {
    font-size: 11px;
  }
  .hero-description {
    font-size: 16px;
  }
  .image-location {
    font-size: 11px;
  }
  .invitation .button {
    font-size: 13px;
  }
  .spotlight-secondary {
    font-size: 13px;
  }
  .hero-content {
    padding-top: 185px;
  }
  .faq-list summary {
    font-size: 16px;
  }
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 2.95rem;
  }
  .hero .button {
    font-size: 12px;
    gap: 10px;
    padding: 16px;
  }
  .contact-person {
    flex-direction: column;
    align-items: flex-start;
  }
  .podcast-title {
    font-size: 3.6rem;
  }
  .hero-bottom > span:first-child {
    max-width: 135px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-content {
    animation: enter 0.8s both;
  }
  .hero-art {
    animation: art-enter 1.3s both;
  }
  .page-hero {
    animation: enter 0.6s both;
  }
  @keyframes enter {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  @keyframes art-enter {
    from {
      opacity: 0.65;
      transform: scale(1.025);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
