:root {
  --ink: #17232d;
  --navy: #1e2631;
  --navy-soft: #273541;
  --green: #43dc68;
  --green-dark: #15933b;
  --sage: #dce8de;
  --mist: #edf2ee;
  --cream: #f2efe5;
  --white: #ffffff;
  --line: rgba(23, 35, 45, 0.17);
  --light-line: rgba(255, 255, 255, 0.18);
  --shell: min(1400px, calc(100vw - 96px));
}

* {
  box-sizing: border-box;
}

html {
  background: var(--white);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Helvetica Neue", "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

::selection {
  background: var(--green);
  color: var(--ink);
}

.site {
  min-height: 100vh;
  overflow: clip;
}

.section-shell {
  margin-inline: auto;
  width: var(--shell);
}

.eyebrow {
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.58);
}

.button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 700;
  gap: 24px;
  justify-content: space-between;
  min-height: 64px;
  padding: 15px 27px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.button:hover {
  box-shadow: 0 14px 30px rgba(23, 35, 45, 0.18);
  transform: translateY(-3px);
}

.button-green {
  background: var(--green);
  color: var(--ink);
}

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

/* Shared header and full-screen menu */

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 112px;
  padding: 22px 44px;
  position: relative;
  z-index: 100;
}

.brand {
  display: flex;
  flex-direction: column;
  font-size: 1.72rem;
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.92;
  width: max-content;
}

.page-indicator {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-self: center;
}

.page-indicator span {
  color: rgba(23, 35, 45, 0.5);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-indicator strong {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-self: end;
}

.header-contact,
.menu-pill {
  align-items: center;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 800;
  height: 58px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-contact {
  background: var(--ink);
  color: var(--white);
  gap: 24px;
  padding: 0 25px;
}

.menu-pill {
  background: var(--green);
  cursor: pointer;
  gap: 17px;
  justify-content: center;
  min-width: 145px;
  padding: 0 22px;
  position: relative;
  transition: background 180ms ease, color 180ms ease;
  z-index: 103;
}

.menu-pill.is-open {
  background: var(--white);
}

.menu-glyph {
  display: grid;
  gap: 5px;
  width: 22px;
}

.menu-glyph i {
  background: currentColor;
  display: block;
  height: 2px;
  transition: transform 180ms ease;
  width: 100%;
}

.menu-pill.is-open .menu-glyph i:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-pill.is-open .menu-glyph i:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.menu-overlay {
  background: var(--green);
  display: flex;
  flex-direction: column;
  inset: 0;
  opacity: 0;
  padding: 40px 7vw 36px;
  pointer-events: none;
  position: fixed;
  transform: translateY(-22px);
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
  visibility: hidden;
  z-index: 90;
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.menu-overlay-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 104px;
}

.menu-overlay-top > p:last-child {
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0;
}

.menu-overlay nav {
  border-top: 1px solid rgba(23, 35, 45, 0.3);
  margin-top: 28px;
}

.menu-overlay nav a {
  align-items: center;
  border-bottom: 1px solid rgba(23, 35, 45, 0.3);
  display: grid;
  grid-template-columns: 48px 1fr auto;
  min-height: clamp(65px, 10vh, 98px);
  transition: transform 180ms ease;
}

.menu-overlay nav a:hover,
.menu-overlay nav a.active {
  transform: translateX(20px);
}

.menu-overlay nav a.active strong::after {
  content: " ·";
}

.menu-overlay nav span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.menu-overlay nav strong {
  font-size: clamp(2.2rem, 4.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.menu-overlay nav i {
  font-size: 1.4rem;
  font-style: normal;
}

.menu-overlay-footer {
  align-items: center;
  display: flex;
  font-size: 0.74rem;
  font-weight: 700;
  gap: 30px;
  justify-content: flex-end;
  margin-top: auto;
}

.menu-overlay-footer span {
  color: rgba(23, 35, 45, 0.62);
  margin-left: auto;
}

/* About */

.about-hero {
  background: var(--mist);
  display: grid;
  grid-template-columns: minmax(390px, 0.82fr) minmax(560px, 1.18fr);
  min-height: calc(100vh - 112px);
}

.portrait-stage {
  align-self: stretch;
  background: var(--sage);
  min-height: 760px;
  overflow: hidden;
  position: relative;
}

.portrait-stage::before {
  background: linear-gradient(90deg, rgba(23, 35, 45, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(23, 35, 45, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, transparent, black 32%, black 70%, transparent);
  position: absolute;
}

.portrait-ring {
  border: 1px solid rgba(23, 35, 45, 0.25);
  border-radius: 50%;
  height: min(32vw, 470px);
  left: 50%;
  position: absolute;
  top: 15%;
  transform: translateX(-50%);
  width: min(32vw, 470px);
}

.portrait-ring::after {
  border: 1px solid rgba(23, 35, 45, 0.14);
  border-radius: 50%;
  content: "";
  inset: 36px;
  position: absolute;
}

.portrait-dot {
  background: var(--green);
  border-radius: 50%;
  height: 24px;
  left: 19%;
  position: absolute;
  top: 17%;
  width: 24px;
}

.portrait-stage > img {
  bottom: 0;
  height: min(79vh, 760px);
  left: 50%;
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
  position: absolute;
  transform: translateX(-50%);
  width: auto;
  z-index: 2;
}

.portrait-caption {
  bottom: 28px;
  display: flex;
  flex-direction: column;
  font-size: 0.65rem;
  font-weight: 800;
  left: 30px;
  letter-spacing: 0.12em;
  position: absolute;
  text-transform: uppercase;
  z-index: 3;
}

.portrait-caption span + span {
  color: rgba(23, 35, 45, 0.55);
  margin-top: 5px;
}

.about-hero-copy {
  align-self: center;
  padding: clamp(50px, 7vw, 110px) clamp(48px, 8vw, 130px);
}

.about-hero-copy h1 {
  font-size: clamp(4rem, 7.3vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.81;
  margin: 35px 0 43px;
  max-width: 930px;
}

.hero-lead {
  font-size: clamp(1.2rem, 1.7vw, 1.68rem);
  font-weight: 600;
  line-height: 1.28;
  margin: 0;
  max-width: 800px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 38px;
}

.stat-strip {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 62px;
  padding-top: 20px;
}

.stat-strip div {
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding-left: 16px;
}

.stat-strip div:first-child {
  border-left: 0;
  padding-left: 0;
}

.stat-strip strong {
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.stat-strip span {
  color: rgba(23, 35, 45, 0.56);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 5px;
  text-transform: uppercase;
}

.about-story {
  background: var(--white);
  padding: 120px 0 130px;
}

.story-grid {
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.7fr 1.3fr;
}

.story-aside {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.big-fifteen {
  align-items: flex-end;
  display: flex;
  font-size: clamp(8rem, 15vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.11em;
  line-height: 0.78;
  margin: 58px 0 40px -12px;
}

.big-fifteen span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  margin: 0 0 11px 18px;
  text-transform: uppercase;
}

.story-aside > p:last-child {
  color: rgba(23, 35, 45, 0.58);
  font-size: 0.94rem;
  line-height: 1.55;
  max-width: 300px;
}

.story-aside > p.story-statement {
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin: 46px 0 0;
  max-width: 340px;
}

.story-copy {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.story-opening {
  font-size: clamp(2rem, 3.2vw, 3.7rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.03;
  margin: 0 0 70px;
}

.story-columns {
  column-count: 2;
  column-gap: 64px;
}

.story-columns p {
  break-inside: avoid;
  color: #33414b;
  font-size: 1.02rem;
  line-height: 1.68;
  margin: 0 0 28px;
}

.credentials-section {
  background: var(--green);
  padding: 105px 0;
}

.credentials-grid {
  display: grid;
  gap: 9vw;
  grid-template-columns: 0.75fr 1.25fr;
}

.credentials-grid h2 {
  font-size: clamp(4rem, 7vw, 7rem);
  letter-spacing: -0.075em;
  line-height: 0.86;
  margin: 38px 0 0;
}

.credential-list {
  border-top: 1px solid rgba(23, 35, 45, 0.33);
}

.credential-list article {
  align-items: start;
  border-bottom: 1px solid rgba(23, 35, 45, 0.33);
  display: grid;
  gap: 30px;
  grid-template-columns: 38px 1fr;
  padding: 27px 0 30px;
}

.credential-list article > span {
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.credential-list strong {
  display: block;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.credential-list p {
  color: rgba(23, 35, 45, 0.82);
  font-weight: 700;
  line-height: 1.5;
  margin: 8px 0 0;
}

.credentials-grid > div > .eyebrow {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.2em;
}

/* Testimonials */

.quote-section {
  background: var(--navy);
  color: var(--white);
  padding: 105px 0 115px;
}

.section-index-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.section-index-row > span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
}

.quote-section h2 {
  font-size: clamp(3.2rem, 6vw, 6.8rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
  margin: 30px auto 75px;
  max-width: 900px;
  text-align: center;
}

.quote-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(3, 1fr);
}

.quote-grid article {
  border-top: 1px solid var(--light-line);
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding-top: 19px;
  position: relative;
}

.quote-mark {
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 4.2rem;
  line-height: 0.8;
}

.quote-grid blockquote {
  font-size: 1.06rem;
  line-height: 1.58;
  margin: 26px 0 40px;
}

.quote-grid footer {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding-right: 42px;
}

.quote-grid footer strong {
  font-size: 0.9rem;
}

.quote-grid footer span {
  color: var(--green);
  font-size: 0.75rem;
  line-height: 1.4;
  margin-top: 6px;
}

.quote-count {
  bottom: 2px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.65rem;
  position: absolute;
  right: 0;
}

/* Books */

.books-hero {
  background: var(--cream);
  min-height: calc(100vh - 112px);
  padding: 74px 5vw 48px;
  position: relative;
}

.books-heading {
  max-width: 620px;
  position: relative;
  z-index: 3;
}

.books-heading h1 {
  font-size: clamp(3.6rem, 6vw, 7.4rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.86;
  margin: 25px 0 30px;
  overflow-wrap: break-word;
}

.books-heading > p:last-child {
  color: rgba(23, 35, 45, 0.63);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 490px;
}

.featured-book {
  align-items: center;
  display: grid;
  gap: clamp(35px, 5vw, 80px);
  grid-template-columns: minmax(240px, 0.75fr) minmax(430px, 1.25fr);
  margin-left: auto;
  margin-top: max(-430px, calc(-124px - 15.5vw));
  max-width: 840px;
  position: relative;
  z-index: 4;
}

.featured-cover-wrap {
  min-height: 600px;
  perspective: 1200px;
  position: relative;
}

.featured-cover-wrap img {
  box-shadow: 32px 35px 58px rgba(23, 35, 45, 0.28);
  height: 570px;
  left: 50%;
  object-fit: contain;
  position: absolute;
  top: 0;
  transform: translateX(-50%) rotateY(-8deg) rotateZ(-1deg);
  width: auto;
}

.cover-shadow {
  background: var(--green);
  height: 75%;
  left: 17%;
  position: absolute;
  top: 11%;
  transform: rotate(-6deg);
  width: 72%;
}

.featured-book-copy {
  animation: copy-rise 440ms ease both;
  padding-top: 55px;
}

@keyframes copy-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.book-meta {
  border-bottom: 1px solid var(--line);
  display: flex;
  font-size: 0.67rem;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: 0.12em;
  padding-bottom: 14px;
  text-transform: uppercase;
}

.featured-book-copy h2 {
  font-size: clamp(2.5rem, 4.2vw, 5.2rem);
  letter-spacing: -0.065em;
  line-height: 0.9;
  margin: 29px 0 15px;
}

.featured-book-copy h3 {
  color: var(--green-dark);
  font-size: 1rem;
  line-height: 1.45;
  margin: 0 0 27px;
}

.featured-book-copy > p {
  color: #3e4a53;
  font-size: 0.94rem;
  line-height: 1.65;
  margin: 0;
}

.book-progress {
  background: rgba(23, 35, 45, 0.14);
  height: 2px;
  margin-top: 32px;
}

.book-progress i {
  background: var(--green-dark);
  display: block;
  height: 100%;
  transform: scaleX(0.125);
  transform-origin: left center;
  transition: transform 300ms ease;
  width: 100%;
}

.book-switcher {
  display: flex;
  gap: 8px;
  margin-top: 33px;
  position: relative;
  width: max-content;
  z-index: 6;
}

.book-switcher button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  display: flex;
  height: 76px;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: background-color 180ms ease, transform 180ms ease;
  width: 52px;
}

.book-switcher button.active {
  background: var(--green);
  transform: scale(1.14);
  z-index: 1;
}

.book-switcher img {
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  width: 100%;
}

.book-switcher button.active img {
  opacity: 0.28;
}

.book-switcher span {
  font-size: 0.62rem;
  font-weight: 800;
  position: absolute;
  z-index: 2;
}

.trilogy-section {
  background: var(--navy);
  color: var(--white);
  padding: 115px 0;
}

.trilogy-grid {
  align-items: center;
  display: grid;
  gap: 5vw;
  grid-template-columns: 0.95fr 1.05fr;
}

.trilogy-heading h2 {
  font-size: clamp(3.2rem, 5.2vw, 6.4rem);
  letter-spacing: -0.068em;
  line-height: 0.88;
  margin: 40px 0 35px;
  overflow-wrap: break-word;
}

.trilogy-heading > p:last-child {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
  max-width: 430px;
}

.trilogy-books {
  align-items: end;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.trilogy-books button {
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.trilogy-books button:nth-child(2) {
  transform: translateY(-55px);
}

.trilogy-books img {
  box-shadow: 14px 20px 36px rgba(0, 0, 0, 0.27);
  height: 390px;
  object-fit: cover;
  transition: transform 180ms ease;
  width: 100%;
}

.trilogy-books button:hover img {
  transform: translateY(-8px) rotate(-1deg);
}

.trilogy-books span {
  color: var(--green);
  display: block;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  margin: 17px 0 7px;
}

.trilogy-books strong {
  font-size: 0.86rem;
  line-height: 1.3;
}

.collection-section {
  padding: 110px 0 130px;
}

.collection-heading {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 26px;
}

.collection-heading h2 {
  font-size: clamp(3rem, 5vw, 5.5rem);
  letter-spacing: -0.065em;
  line-height: 0.9;
  margin: 0;
}

.collection-grid {
  display: grid;
  gap: 55px 24px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
}

.collection-grid article:last-child {
  grid-column: 2;
}

.collection-grid button {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  text-align: left;
  width: 100%;
}

.collection-cover {
  align-items: center;
  background: var(--mist);
  display: flex;
  height: 430px;
  justify-content: center;
  overflow: hidden;
  padding: 36px;
}

.collection-cover img {
  box-shadow: 12px 17px 27px rgba(23, 35, 45, 0.21);
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.collection-grid button:hover img {
  transform: scale(1.035) rotate(-1deg);
}

.collection-grid button > span {
  color: var(--green-dark);
  display: block;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-top: 18px;
  text-transform: uppercase;
}

.collection-grid button > strong {
  display: block;
  font-size: 1.13rem;
  line-height: 1.25;
  margin-top: 8px;
}

.collection-grid button > p {
  color: rgba(23, 35, 45, 0.58);
  font-size: 0.82rem;
  line-height: 1.4;
  margin: 6px 0 0;
}

/* Services */

.services-hero {
  background: var(--green);
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  min-height: calc(100vh - 112px);
  overflow: hidden;
}

.services-portrait {
  min-height: 750px;
  overflow: hidden;
  position: relative;
}

.service-arc {
  border: 1px solid rgba(23, 35, 45, 0.3);
  border-radius: 50%;
  height: 47vw;
  left: -19vw;
  position: absolute;
  top: 8%;
  width: 47vw;
}

.service-arc::after {
  border: 1px solid rgba(23, 35, 45, 0.15);
  border-radius: 50%;
  content: "";
  inset: 52px;
  position: absolute;
}

.services-portrait img {
  bottom: -13%;
  height: 112%;
  left: 52%;
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
  position: absolute;
  transform: translateX(-50%);
  width: auto;
  z-index: 2;
}

.services-intro {
  align-self: center;
  padding: 80px 9vw 80px 4vw;
}

.services-intro h1 {
  font-size: clamp(4rem, 7.8vw, 9rem);
  letter-spacing: -0.085em;
  line-height: 0.8;
  margin: 35px 0 42px;
  max-width: 980px;
}

.services-intro > p:not(.eyebrow) {
  font-size: clamp(1.18rem, 1.8vw, 1.65rem);
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  max-width: 770px;
}

.services-intro .button {
  margin-top: 38px;
}

.keynotes-section {
  background: var(--navy);
  color: var(--white);
  padding: 120px 0 130px;
}

.service-layout {
  align-items: start;
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.78fr 1.22fr;
}

.service-sticky-title {
  position: sticky;
  top: 35px;
}

.service-sticky-title h2 {
  font-size: clamp(4rem, 7vw, 7.3rem);
  letter-spacing: -0.075em;
  line-height: 0.83;
  margin: 37px 0 35px;
}

.service-sticky-title > p:last-child {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
  max-width: 410px;
}

.keynote-accordion {
  border-top: 1px solid var(--light-line);
}

.keynote-accordion article {
  border-bottom: 1px solid var(--light-line);
}

.keynote-accordion article > button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: grid;
  gap: 22px;
  grid-template-columns: 35px 1fr auto;
  min-height: 150px;
  padding: 24px 0;
  text-align: left;
  width: 100%;
}

.keynote-accordion button > span {
  color: var(--green);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.keynote-accordion button small {
  color: rgba(255, 255, 255, 0.45);
  display: block;
  font-size: 0.67rem;
  letter-spacing: 0.11em;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.keynote-accordion button strong {
  font-size: clamp(1.8rem, 3vw, 3.7rem);
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.keynote-accordion button i {
  color: var(--green);
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 300;
}

.keynote-copy {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 320ms ease, opacity 320ms ease;
}

.keynote-copy p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin: 0 38px 0 57px;
  overflow: hidden;
}

.keynote-accordion article.open .keynote-copy {
  grid-template-rows: 1fr;
  opacity: 1;
}

.keynote-accordion article.open .keynote-copy p {
  margin-bottom: 38px;
}

.workshops-section {
  background: var(--mist);
  padding: 120px 0 130px;
}

.workshops-heading {
  align-items: end;
  display: flex;
  gap: 8vw;
  justify-content: space-between;
  margin-bottom: 65px;
}

.workshops-heading h2 {
  font-size: clamp(3.3rem, 6vw, 7rem);
  letter-spacing: -0.075em;
  line-height: 0.87;
  margin: 35px 0 0;
  max-width: 830px;
}

.workshops-heading > p {
  color: rgba(23, 35, 45, 0.58);
  line-height: 1.6;
  margin: 0;
  max-width: 370px;
}

.workshop-list {
  border-top: 1px solid var(--line);
}

.workshop-list article {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 50px 1fr auto;
  min-height: 98px;
  transition: background-color 180ms ease;
}

.workshop-list article:hover {
  background: var(--green);
}

.workshop-list span {
  color: var(--green-dark);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.workshop-list article:hover span {
  color: var(--ink);
}

.workshop-list h3 {
  font-size: clamp(1.15rem, 2vw, 2rem);
  letter-spacing: -0.035em;
  margin: 0;
}

.workshop-list i {
  font-size: 1.2rem;
  font-style: normal;
}

.coaching-section {
  background: var(--white);
  padding: 120px 0 135px;
}

.coaching-grid {
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.58fr 1.42fr;
}

.coaching-number {
  color: var(--sage);
  font-size: clamp(12rem, 25vw, 28rem);
  font-weight: 800;
  letter-spacing: -0.13em;
  line-height: 0.72;
}

.coaching-copy {
  max-width: 830px;
}

.coaching-copy h2 {
  font-size: clamp(4rem, 7vw, 7.8rem);
  letter-spacing: -0.08em;
  line-height: 0.82;
  margin: 35px 0 35px;
}

.coaching-lead {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
}

.coaching-points {
  border-top: 1px solid var(--line);
  margin: 45px 0;
}

.coaching-points p {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 25px;
  grid-template-columns: 36px 1fr;
  line-height: 1.55;
  margin: 0;
  padding: 22px 0;
}

.coaching-points span {
  color: var(--green-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.coaching-copy > p:not(.eyebrow):not(.coaching-lead) {
  color: rgba(23, 35, 45, 0.65);
  line-height: 1.7;
}

.coaching-copy .button {
  margin-top: 25px;
}

/* On stage */

.stage-hero {
  background: var(--sage);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: calc(100vh - 112px);
}

.stage-hero-copy {
  align-self: center;
  padding: 80px 6vw;
}

.stage-hero-copy h1 {
  font-size: clamp(4rem, 7.6vw, 9rem);
  letter-spacing: -0.085em;
  line-height: 0.8;
  margin: 38px 0 42px;
}

.stage-hero-copy > p:last-child {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 570px;
}

.stage-hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  grid-template-rows: 1fr 1fr;
  min-height: 760px;
}

.stage-hero-mosaic button {
  background: transparent;
  border: 0;
  cursor: zoom-in;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.stage-hero-mosaic button:nth-child(1) {
  grid-row: 1 / 3;
}

.stage-hero-mosaic img {
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
  width: 100%;
}

.stage-hero-mosaic button:hover img {
  transform: scale(1.035);
}

.stage-hero-mosaic span {
  background: var(--green);
  border-radius: 999px;
  bottom: 22px;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 16px 20px;
  position: absolute;
  right: 22px;
}

.stage-gallery-section {
  padding: 115px 0 30px;
}

.gallery-heading {
  align-items: end;
  display: flex;
  gap: 8vw;
  justify-content: space-between;
  margin-bottom: 65px;
}

.gallery-heading h2 {
  font-size: clamp(3.5rem, 6vw, 7rem);
  letter-spacing: -0.075em;
  line-height: 0.86;
  margin: 35px 0 0;
}

.gallery-heading > p {
  color: rgba(23, 35, 45, 0.58);
  line-height: 1.6;
  max-width: 390px;
}

.stage-gallery {
  display: grid;
  gap: 10px;
  grid-auto-flow: dense;
  grid-auto-rows: 145px;
  grid-template-columns: repeat(12, 1fr);
  margin: 0 10px 110px;
}

.gallery-item {
  background: var(--sage);
  border: 0;
  cursor: zoom-in;
  grid-column: span 3;
  grid-row: span 2;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.gallery-item.item-1,
.gallery-item.item-6 {
  grid-column: span 5;
  grid-row: span 3;
}

.gallery-item.item-2,
.gallery-item.item-5 {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-item.item-3 {
  grid-column: span 3;
  grid-row: span 3;
}

.gallery-item.item-4,
.gallery-item.item-7 {
  grid-column: span 4;
  grid-row: span 3;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: filter 240ms ease, transform 420ms ease;
  width: 100%;
}

.gallery-item:hover img {
  filter: saturate(1.08);
  transform: scale(1.04);
}

.gallery-item span {
  background: var(--white);
  bottom: 11px;
  font-size: 0.6rem;
  font-weight: 800;
  left: 11px;
  letter-spacing: 0.1em;
  padding: 8px 9px;
  position: absolute;
}

/* In action */

.action-page {
  background: var(--navy);
  color: var(--white);
  padding: 105px 0 130px;
}

.action-heading {
  display: grid;
  gap: 2vw 7vw;
  grid-template-columns: 1fr 1fr;
}

.action-heading .eyebrow {
  grid-column: 1 / 3;
}

.action-heading h1 {
  grid-column: 1 / 3;
  font-size: clamp(5rem, 10vw, 11rem);
  letter-spacing: -0.09em;
  line-height: 0.72;
  margin: 45px 0 95px;
}

.action-heading > p:last-child {
  align-self: end;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 0 0 105px;
  max-width: 510px;
}

.featured-video {
  border-top: 1px solid var(--light-line);
  display: grid;
  gap: 55px;
  grid-template-columns: 1.45fr 0.55fr;
  padding-top: 30px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #0b1116;
  overflow: hidden;
}

.video-frame iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.featured-video-meta {
  display: flex;
  flex-direction: column;
}

.featured-video-meta > span,
.video-grid article > span {
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-video-meta h2 {
  font-size: clamp(2.2rem, 3.5vw, 4.5rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
  margin: 28px 0;
}

.featured-video-meta p {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
  margin: auto 0 0;
}

.video-grid {
  display: grid;
  gap: 72px 26px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 115px;
}

.video-grid article:nth-child(3n + 2) {
  transform: translateY(70px);
}

.video-grid article > span {
  display: block;
  margin-top: 19px;
}

.video-grid h2 {
  font-size: 1.55rem;
  letter-spacing: -0.035em;
  line-height: 1.16;
  margin: 12px 0 0;
}

.action-cta {
  align-items: center;
  background: var(--green);
  display: flex;
  flex-direction: column;
  padding: 105px 5vw 115px;
  text-align: center;
}

.action-cta h2 {
  font-size: clamp(3.8rem, 7vw, 8rem);
  letter-spacing: -0.08em;
  line-height: 0.84;
  margin: 38px auto 50px;
  max-width: 1000px;
}

/* Media */

.media-hero {
  align-items: end;
  background: var(--cream);
  display: grid;
  gap: 8vw;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 590px;
  padding: 85px 7vw 88px;
}

.media-hero h1 {
  font-size: clamp(5rem, 10vw, 11rem);
  letter-spacing: -0.09em;
  line-height: 0.72;
  margin: 40px 0 0;
}

.media-intro {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.media-intro strong {
  color: var(--green-dark);
  display: block;
  font-size: 2.2rem;
  letter-spacing: -0.04em;
}

.media-intro p {
  color: rgba(23, 35, 45, 0.65);
  line-height: 1.65;
  margin: 25px 0 0;
}

.media-wall-section {
  background: var(--mist);
  padding: 20px;
}

.media-wall {
  column-count: 3;
  column-gap: 20px;
}

.media-wall button {
  background: var(--white);
  border: 0;
  break-inside: avoid;
  cursor: zoom-in;
  display: block;
  margin: 0 0 20px;
  padding: 0;
  position: relative;
  width: 100%;
}

.media-wall img {
  height: auto;
  transition: filter 220ms ease;
  width: 100%;
}

.media-wall button:hover img {
  filter: brightness(0.88);
}

.media-wall button > span {
  align-items: center;
  background: var(--green);
  bottom: 0;
  display: flex;
  font-size: 0.67rem;
  font-style: normal;
  font-weight: 800;
  justify-content: space-between;
  left: 0;
  opacity: 0;
  padding: 15px;
  position: absolute;
  right: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.media-wall button:hover > span {
  opacity: 1;
  transform: translateY(0);
}

.media-wall i {
  font-style: normal;
}

.media-note {
  align-items: start;
  display: grid;
  gap: 40px;
  grid-template-columns: 0.55fr 1fr auto;
  padding-block: 115px;
}

.media-note h2 {
  font-size: clamp(2.5rem, 4vw, 4.7rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
  margin: 0;
}

/* Lightbox */

.lightbox {
  align-items: center;
  background: rgba(9, 14, 18, 0.96);
  color: var(--white);
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  inset: 0;
  padding: 70px 30px 30px;
  position: fixed;
  z-index: 200;
}

.lightbox-close {
  background: var(--green);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 14px 18px;
  position: absolute;
  right: 26px;
  text-transform: uppercase;
  top: 22px;
}

.lightbox-prev,
.lightbox-next {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  height: 55px;
  justify-self: center;
  width: 55px;
}

.lightbox figure {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  margin: 0;
  min-height: 0;
}

.lightbox figure img {
  height: calc(100vh - 150px);
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.lightbox figcaption {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  margin-top: 15px;
}

/* Footer */

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 110px 5vw 42px;
}

.footer-lead {
  align-items: center;
  border-bottom: 1px solid var(--light-line);
  display: flex;
  flex-direction: column;
  padding-bottom: 105px;
  text-align: center;
}

.footer-lead h2 {
  font-size: clamp(4rem, 8vw, 9.3rem);
  letter-spacing: -0.085em;
  line-height: 0.8;
  margin: 40px auto 50px;
  max-width: 1100px;
}

.footer-lead > a {
  align-items: center;
  background: var(--green);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 800;
  gap: 35px;
  padding: 21px 26px;
}

.footer-grid {
  display: grid;
  gap: 35px;
  grid-template-columns: 2fr repeat(3, 1fr);
  padding-top: 48px;
}

body.page-books .footer-lead {
  display: none;
}

.books-cta-section {
  background: var(--navy);
  color: var(--white);
  padding: 110px 0 120px;
}

.books-cta {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.books-cta h2 {
  font-size: clamp(2.4rem, 4.6vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 0 0 42px;
  max-width: 18ch;
}

.footer-wordmark {
  display: flex;
  flex-direction: column;
}

.footer-wordmark strong {
  font-size: 2.2rem;
  letter-spacing: -0.07em;
  line-height: 1.12;
}

.footer-wordmark span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.76rem;
  margin-top: 7px;
}

.footer-grid h3 {
  color: var(--green);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  margin: 0 0 21px;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-wordmark) {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-grid a,
.footer-grid span {
  font-size: 0.82rem;
}

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

.footer-meta small {
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.68rem;
  margin-top: auto;
  padding-top: 35px;
}

/* Tablet */

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 56px, 1160px);
  }

  .about-hero {
    grid-template-columns: minmax(340px, 0.8fr) minmax(500px, 1.2fr);
  }

  .about-hero-copy {
    padding-inline: 55px;
  }

  .featured-book {
    margin-top: 10px;
    max-width: 820px;
  }

  .featured-cover-wrap,
  .featured-cover-wrap img {
    min-height: 0;
    height: 480px;
  }

  .collection-cover {
    height: 360px;
  }

  .trilogy-books img {
    height: 315px;
  }

  .stage-gallery {
    grid-auto-rows: 115px;
  }
}

/* Mobile */

@media (max-width: 820px) {
  :root {
    --shell: calc(100vw - 36px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 86px;
    padding: 15px 17px;
  }

  .brand {
    font-size: 1.35rem;
  }

  .page-indicator,
  .header-contact {
    display: none;
  }

  .menu-pill {
    height: 54px;
    min-width: 126px;
  }

  .menu-overlay {
    padding: 28px 18px 24px;
  }

  .menu-overlay-top {
    align-items: start;
    flex-direction: column;
    gap: 10px;
    margin-top: 78px;
  }

  .menu-overlay nav {
    margin-top: 20px;
  }

  .menu-overlay nav a {
    grid-template-columns: 35px 1fr auto;
    min-height: 70px;
  }

  .menu-overlay nav strong {
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

  .menu-overlay-footer {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: start;
  }

  .menu-overlay-footer span {
    flex-basis: 100%;
    margin-left: 0;
  }

  .button {
    min-height: 57px;
  }

  .about-hero,
  .services-hero,
  .stage-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .portrait-stage {
    min-height: 560px;
    order: 2;
  }

  .portrait-ring {
    height: 390px;
    top: 12%;
    width: 390px;
  }

  .portrait-stage > img {
    height: 545px;
  }

  .about-hero-copy {
    order: 1;
    padding: 55px 18px 48px;
  }

  .about-hero-copy h1 {
    font-size: clamp(4rem, 19vw, 6rem);
    margin: 29px 0 32px;
  }

  .hero-lead {
    font-size: 1.1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .stat-strip {
    gap: 20px 0;
    grid-template-columns: 1fr 1fr;
    margin-top: 45px;
  }

  .stat-strip div:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .about-story,
  .credentials-section,
  .quote-section,
  .trilogy-section,
  .collection-section,
  .keynotes-section,
  .workshops-section,
  .coaching-section,
  .stage-gallery-section,
  .action-page {
    padding-block: 80px;
  }

  .story-grid,
  .credentials-grid,
  .trilogy-grid,
  .service-layout,
  .coaching-grid {
    grid-template-columns: 1fr;
  }

  .big-fifteen {
    font-size: 10rem;
  }

  .story-opening {
    font-size: 2rem;
    margin: 0 0 45px;
  }

  .story-columns {
    column-count: 1;
  }

  .credentials-grid h2,
  .service-sticky-title h2,
  .coaching-copy h2 {
    font-size: 3.8rem;
  }

  .quote-section h2 {
    font-size: 3.4rem;
    margin-bottom: 55px;
  }

  .quote-grid {
    gap: 50px;
    grid-template-columns: 1fr;
  }

  .quote-grid article {
    min-height: 320px;
  }

  .books-hero {
    min-height: 0;
    padding: 58px 18px 45px;
  }

  .books-heading h1 {
    font-size: 3.4rem;
  }

  .featured-book {
    align-items: start;
    gap: 20px;
    grid-template-columns: 0.78fr 1.22fr;
    margin-top: 55px;
    max-width: none;
  }

  .featured-cover-wrap,
  .featured-cover-wrap img {
    height: 320px;
  }

  .featured-book-copy {
    padding-top: 0;
  }

  .featured-book-copy h2 {
    font-size: 2rem;
    margin-top: 18px;
  }

  .featured-book-copy h3 {
    font-size: 0.78rem;
  }

  .featured-book-copy > p {
    display: -webkit-box;
    font-size: 0.8rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
  }

  .book-switcher {
    margin-top: 40px;
  }

  .book-switcher button {
    height: 57px;
    width: 39px;
  }

  .book-switcher button.active {
    width: 50px;
  }

  .trilogy-heading h2 {
    font-size: 3.2rem;
  }

  .trilogy-books {
    gap: 11px;
  }

  .trilogy-books button:nth-child(2) {
    transform: translateY(-25px);
  }

  .trilogy-books img {
    height: 230px;
  }

  .trilogy-books strong {
    font-size: 0.7rem;
  }

  .collection-heading {
    align-items: start;
    flex-direction: column;
    gap: 25px;
  }

  .collection-grid {
    gap: 38px 12px;
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-grid article:last-child {
    grid-column: auto;
  }

  .collection-cover {
    height: 250px;
    padding: 22px;
  }

  .services-intro {
    order: 1;
    padding: 58px 18px;
  }

  .services-intro h1 {
    font-size: 4.6rem;
  }

  .services-portrait {
    min-height: 600px;
    order: 2;
  }

  .service-arc {
    height: 620px;
    left: -310px;
    width: 620px;
  }

  .services-portrait img {
    bottom: -10%;
    height: 112%;
  }

  .service-sticky-title {
    position: static;
  }

  .keynote-accordion article > button {
    grid-template-columns: 25px 1fr auto;
    min-height: 125px;
  }

  .keynote-accordion button strong {
    font-size: 1.7rem;
  }

  .keynote-copy p {
    margin-left: 47px;
    margin-right: 0;
  }

  .workshops-heading,
  .gallery-heading {
    align-items: start;
    flex-direction: column;
  }

  .workshops-heading h2,
  .gallery-heading h2 {
    font-size: 3.8rem;
  }

  .workshop-list article {
    grid-template-columns: 35px 1fr auto;
    min-height: 90px;
  }

  .workshop-list h3 {
    font-size: 1rem;
  }

  .coaching-number {
    display: none;
  }

  .stage-hero-copy {
    padding: 58px 18px;
  }

  .stage-hero-copy h1 {
    font-size: 4.7rem;
  }

  .stage-hero-mosaic {
    min-height: 540px;
  }

  .stage-gallery {
    gap: 6px;
    grid-auto-rows: 115px;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 6px;
  }

  .gallery-item,
  .gallery-item.item-1,
  .gallery-item.item-2,
  .gallery-item.item-3,
  .gallery-item.item-4,
  .gallery-item.item-5,
  .gallery-item.item-6,
  .gallery-item.item-7 {
    grid-column: span 1;
    grid-row: span 2;
  }

  .gallery-item:nth-child(5n + 1) {
    grid-column: 1 / 3;
    grid-row: span 3;
  }

  .action-heading {
    grid-template-columns: 1fr;
  }

  .action-heading .eyebrow {
    grid-column: auto;
  }

  .action-heading h1 {
    font-size: 5rem;
    margin: 45px 0 28px;
  }

  .action-heading > p:last-child {
    margin: 0 0 70px;
  }

  .featured-video {
    grid-template-columns: 1fr;
  }

  .featured-video-meta h2 {
    font-size: 2.4rem;
  }

  .video-grid {
    gap: 55px;
    grid-template-columns: 1fr;
    margin-top: 80px;
  }

  .video-grid article:nth-child(3n + 2) {
    transform: none;
  }

  .action-cta {
    padding: 80px 18px;
  }

  .action-cta h2 {
    font-size: 4rem;
  }

  .media-hero {
    align-items: start;
    gap: 55px;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 65px 18px;
  }

  .media-hero h1 {
    font-size: 5.5rem;
  }

  .media-wall-section {
    padding: 8px;
  }

  .media-wall {
    column-count: 2;
    column-gap: 8px;
  }

  .media-wall button {
    margin-bottom: 8px;
  }

  .media-wall button > span {
    display: none;
  }

  .media-note {
    grid-template-columns: 1fr;
    padding-block: 80px;
  }

  .lightbox {
    grid-template-columns: 48px 1fr 48px;
    padding-inline: 8px;
  }

  .lightbox-prev,
  .lightbox-next {
    height: 42px;
    width: 42px;
  }

  .site-footer {
    padding: 80px 18px 35px;
  }

  .footer-lead {
    padding-bottom: 75px;
  }

  .footer-lead h2 {
    font-size: 4.2rem;
  }

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

  .footer-wordmark {
    grid-column: 1 / 3;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .featured-book {
    grid-template-columns: 1fr;
  }

  .featured-cover-wrap,
  .featured-cover-wrap img {
    height: 370px;
  }

  .featured-book-copy > p {
    -webkit-line-clamp: unset;
  }

  .book-switcher {
    width: 100%;
  }

  .book-switcher button,
  .book-switcher button.active {
    flex: 1;
    width: auto;
  }

  .trilogy-books img {
    height: 180px;
  }

  .collection-cover {
    height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

[hidden]{display:none!important}.spa-page{display:none}.spa-page.active{display:block}.standalone-note{bottom:12px;color:rgba(23,35,45,.45);font-size:10px;left:16px;position:fixed;z-index:20}.lightbox[hidden]{display:none}.lightbox{display:grid}


/* Editorial rebuild: portrait-first About experience */
:root {
  --ease-out-strong: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-strong: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

:focus-visible {
  outline: 3px solid var(--green-dark);
  outline-offset: 4px;
}

.site-header {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  height: 96px;
  padding: 18px 36px;
  position: sticky;
  top: 0;
}

.brand {
  font-size: 1.86rem;
}

.header-contact,
.menu-pill {
  height: 60px;
}

.button {
  min-height: 62px;
  transition: box-shadow 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.button span {
  transition: transform 180ms ease;
}

.about-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  min-height: calc(100svh - 96px);
}

.portrait-stage {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.35), transparent 36%),
    var(--sage);
  min-height: calc(100svh - 96px);
}

.portrait-stage::before {
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, black 72%, transparent 96%);
}

.portrait-stage::after {
  background: linear-gradient(to top, rgba(23, 35, 45, 0.16), transparent 22%);
  bottom: 0;
  content: "";
  height: 38%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 2;
}

.portrait-ring {
  aspect-ratio: 1;
  height: auto;
  left: 48%;
  top: 10%;
  width: min(68%, 620px);
}

.portrait-ring::after {
  inset: 9%;
}

.portrait-dot {
  height: 22px;
  left: 17%;
  top: 14%;
  width: 22px;
}

.portrait-stage > img {
  bottom: auto;
  height: min(112svh, 1040px);
  left: 50%;
  object-position: top center;
  top: 2%;
  transform: translateX(-50%) scale(1.06);
  transform-origin: top center;
}

.portrait-coordinate {
  color: rgba(23, 35, 45, 0.5);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  position: absolute;
  right: 28px;
  text-transform: uppercase;
  top: 28px;
  writing-mode: vertical-rl;
}

.portrait-caption {
  bottom: 30px;
  font-size: 0.72rem;
  left: 30px;
}

.portrait-signal {
  align-items: center;
  background: var(--white);
  bottom: 24px;
  display: grid;
  gap: 2px 10px;
  grid-template-columns: auto 1fr;
  padding: 15px 18px;
  position: absolute;
  right: 24px;
  z-index: 4;
}

.portrait-signal i {
  background: var(--green);
  border-radius: 50%;
  grid-row: 1 / 3;
  height: 12px;
  width: 12px;
}

.portrait-signal span {
  color: rgba(23, 35, 45, 0.56);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.portrait-signal strong {
  font-size: 0.84rem;
}

.about-hero-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 4.5vw, 66px) clamp(42px, 4vw, 58px);
}

.about-hero-copy h1 {
  font-size: clamp(4.65rem, 6.4vw, 8rem);
  line-height: 0.82;
  margin: 30px 0 38px;
  max-width: 760px;
}

.about-hero-copy h1 span {
  display: block;
}

.about-hero-copy .headline-accent {
  color: var(--green-dark);
}

.hero-lead {
  font-size: clamp(1.28rem, 1.55vw, 1.72rem);
  line-height: 1.34;
  max-width: 690px;
}

.hero-actions {
  margin-top: 34px;
}

.stat-strip {
  gap: 22px 0;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 36px;
  padding-top: 24px;
}

.stat-strip div:nth-child(3) {
  border-left: 1px solid var(--line);
  padding-left: 16px;
}

.stat-strip strong {
  font-size: clamp(2rem, 2.2vw, 2.65rem);
}

.stat-strip span {
  font-size: 0.74rem;
  letter-spacing: 0.05em;
}

.about-story {
  padding: 90px 0 100px;
}

.story-grid {
  gap: clamp(54px, 6vw, 100px);
  grid-template-columns: minmax(230px, 0.48fr) minmax(0, 1.52fr);
}

.story-aside {
  align-self: start;
  position: sticky;
  top: 132px;
}

.big-fifteen {
  font-size: clamp(8rem, 13vw, 12rem);
  margin-bottom: 34px;
}

.story-aside > p:last-child {
  font-size: 1.05rem;
  max-width: 340px;
}

.story-aside > p.story-statement {
  font-size: clamp(2.1rem, 2.9vw, 3.2rem);
  max-width: 360px;
}

.story-opening {
  font-size: clamp(2.7rem, 4vw, 4.55rem);
  margin-bottom: 58px;
  max-width: 1050px;
}

.practice-path {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 58px;
}

.practice-path article {
  min-height: 154px;
  padding: 24px 20px 20px 0;
  position: relative;
}

.practice-path article::before {
  background: var(--green);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(23, 35, 45, 0.18);
  content: "";
  height: 15px;
  left: 0;
  position: absolute;
  top: -8px;
  width: 15px;
}

.practice-path span {
  color: rgba(23, 35, 45, 0.5);
  display: block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 28px;
}

.practice-path strong {
  display: block;
  font-size: 1.16rem;
  letter-spacing: -0.02em;
}

.practice-path small {
  color: rgba(23, 35, 45, 0.62);
  display: block;
  font-size: 0.88rem;
  line-height: 1.45;
  margin-top: 8px;
  max-width: 180px;
}

.story-columns {
  column-gap: 74px;
}

.story-columns p {
  font-size: 1.14rem;
  line-height: 1.74;
}

.quote-cta {
  align-items: center;
  border-top: 1px solid var(--light-line);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-top: 68px;
  padding-top: 30px;
}

.quote-cta p {
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin: 0;
  max-width: 560px;
}

.spa-page.active {
  animation: page-enter 480ms var(--ease-out-strong) both;
}

.about-hero-copy > .eyebrow,
.about-hero-copy h1 span,
.about-hero-copy .hero-lead,
.about-hero-copy .hero-actions,
.about-hero-copy .stat-strip {
  animation: hero-rise 720ms var(--ease-out-strong) both;
}

.about-hero-copy h1 span:nth-child(1) { animation-delay: 70ms; }
.about-hero-copy h1 span:nth-child(2) { animation-delay: 120ms; }
.about-hero-copy h1 span:nth-child(3) { animation-delay: 170ms; }
.about-hero-copy .hero-lead { animation-delay: 230ms; }
.about-hero-copy .hero-actions { animation-delay: 290ms; }
.about-hero-copy .stat-strip { animation-delay: 350ms; }

.portrait-stage > img {
  animation: portrait-enter 900ms var(--ease-out-strong) both;
}

.portrait-ring,
.portrait-dot {
  animation: orbit-enter 850ms 180ms var(--ease-out-strong) both;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 640ms var(--ease-out-strong), transform 640ms var(--ease-out-strong);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .reveal-delay-1 { transition-delay: 55ms; }
.motion-ready .reveal-delay-2 { transition-delay: 110ms; }
.motion-ready .reveal-delay-3 { transition-delay: 165ms; }

body.overlay-open {
  overflow: hidden;
}

.js-book-progress[data-step="1"] { transform: scaleX(0.125); }
.js-book-progress[data-step="2"] { transform: scaleX(0.25); }
.js-book-progress[data-step="3"] { transform: scaleX(0.375); }
.js-book-progress[data-step="4"] { transform: scaleX(0.5); }
.js-book-progress[data-step="5"] { transform: scaleX(0.625); }
.js-book-progress[data-step="6"] { transform: scaleX(0.75); }
.js-book-progress[data-step="7"] { transform: scaleX(0.875); }
.js-book-progress[data-step="8"] { transform: scaleX(1); }

.book-newest {
  align-items: center;
  background: var(--green);
  color: var(--ink);
  display: inline-flex;
  font-size: 0.65rem;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.13em;
  margin-bottom: 18px;
  padding: 8px 11px;
  text-transform: uppercase;
}

.book-newest::before {
  background: currentColor;
  border-radius: 50%;
  content: "";
  height: 6px;
  width: 6px;
}

.collection-grid article:last-child {
  grid-column: auto;
}

.menu-overlay nav a {
  opacity: 0;
  transform: translateY(18px);
  transition: border-color 180ms ease, opacity 380ms var(--ease-out-strong), transform 380ms var(--ease-out-strong);
}

.menu-overlay.is-open nav a {
  opacity: 1;
  transform: translateY(0);
}

.menu-overlay.is-open nav a:nth-child(1) { transition-delay: 30ms; }
.menu-overlay.is-open nav a:nth-child(2) { transition-delay: 70ms; }
.menu-overlay.is-open nav a:nth-child(3) { transition-delay: 110ms; }
.menu-overlay.is-open nav a:nth-child(4) { transition-delay: 150ms; }
.menu-overlay.is-open nav a:nth-child(5) { transition-delay: 190ms; }
.menu-overlay.is-open nav a:nth-child(6) { transition-delay: 230ms; }

@keyframes page-enter {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes portrait-enter {
  from { opacity: 0; transform: translateX(-50%) scale(0.99); }
  to { opacity: 1; transform: translateX(-50%) scale(1.06); }
}

@keyframes orbit-enter {
  from { opacity: 0; transform: translateX(-50%) scale(0.94) rotate(-8deg); }
  to { opacity: 1; transform: translateX(-50%) scale(1) rotate(0); }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover span {
    transform: translate(3px, -3px);
  }

  .practice-path article:hover::before {
    transform: scale(1.22);
  }
}

@media (max-width: 1280px) {
  .about-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .about-hero-copy {
    padding-inline: clamp(36px, 4.4vw, 62px);
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }

  .stat-strip div:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .about-hero-copy h1 {
    font-size: clamp(4.2rem, 6.5vw, 6.3rem);
  }

  .portrait-stage > img {
    height: min(105svh, 940px);
  }
}

@media (max-width: 980px) and (min-width: 821px) {
  .about-hero-copy h1 {
    font-size: clamp(3.75rem, 6.8vw, 4.8rem);
  }

  .hero-lead {
    font-size: 1.18rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .portrait-signal {
    display: none;
  }

  .practice-path {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 22px;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 82px;
    padding: 14px 16px;
  }

  .brand {
    font-size: 1.42rem;
  }

  .menu-pill {
    height: 52px;
    min-width: 122px;
  }

  .about-hero {
    min-height: 0;
  }

  .portrait-stage {
    min-height: clamp(560px, 76svh, 700px);
    order: 1;
  }

  .portrait-stage > img {
    height: clamp(720px, 98svh, 820px);
    top: 1%;
    transform: translateX(-50%) scale(1.02);
  }

  .portrait-ring {
    top: 9%;
    width: min(88%, 480px);
  }

  .portrait-coordinate {
    right: 18px;
    top: 20px;
  }

  .portrait-signal {
    bottom: 18px;
    padding: 12px 14px;
    right: 16px;
  }

  .portrait-caption {
    background: rgba(255, 255, 255, 0.86);
    bottom: 20px;
    left: 18px;
    padding: 10px 12px;
  }

  .about-hero-copy {
    order: 2;
    padding: 48px 18px 58px;
  }

  .about-hero-copy h1 {
    font-size: clamp(3.85rem, 17.2vw, 5.6rem);
    margin: 27px 0 30px;
  }

  .hero-lead {
    font-size: 1.2rem;
    line-height: 1.43;
  }

  .hero-actions {
    margin-top: 30px;
  }

  .stat-strip {
    margin-top: 42px;
  }

  .stat-strip strong {
    font-size: 2.15rem;
  }

  .about-story {
    padding-block: 72px 82px;
  }

  .story-grid {
    gap: 54px;
    grid-template-columns: 1fr;
  }

  .story-aside {
    position: static;
  }

  .story-aside > p.story-statement {
    margin-top: 36px;
  }

  .story-opening {
    font-size: clamp(2.25rem, 10.2vw, 3.4rem);
    margin-bottom: 48px;
  }

  .practice-path {
    border-left: 1px solid var(--line);
    border-top: 0;
    display: block;
    margin-left: 7px;
    padding-left: 28px;
  }

  .practice-path article {
    min-height: 0;
    padding: 0 0 34px;
  }

  .practice-path article::before {
    left: -36px;
    top: 2px;
  }

  .practice-path span {
    margin-bottom: 12px;
  }

  .practice-path small {
    max-width: 280px;
  }

  .story-columns {
    column-count: 1;
  }

  .story-columns p {
    font-size: 1.1rem;
  }

  .quote-cta {
    align-items: stretch;
    flex-direction: column;
    margin-top: 54px;
  }
}

@media (max-width: 430px) {
  .portrait-signal {
    display: none;
  }

  .portrait-stage > img {
    left: 47%;
  }
}

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

  .spa-page.active,
  .about-hero-copy > .eyebrow,
  .about-hero-copy h1 span,
  .about-hero-copy .hero-lead,
  .about-hero-copy .hero-actions,
  .about-hero-copy .stat-strip,
  .portrait-stage > img,
  .portrait-ring,
  .portrait-dot {
    animation: none;
  }

  .motion-ready .reveal,
  .menu-overlay nav a {
    opacity: 1;
    transform: none;
    transition-duration: 80ms;
  }
}

/* Footer CTA — Services page uses its own copy */
.footer-lead > h2.footer-cta-services,
.footer-lead > a.footer-cta-services {
  display: none;
}

body.page-services .footer-lead > h2.footer-cta-default,
body.page-services .footer-lead > a.footer-cta-default {
  display: none;
}

body.page-services .footer-lead > h2.footer-cta-services {
  display: block;
}

body.page-services .footer-lead > a.footer-cta-services {
  display: inline-flex;
}
