:root {
  --edl-ink: #363033;
  --edl-tan: #b9a591;
  --edl-green: #1d5e47;
  --edl-paper: #f6f3ec;
  --edl-paper-deep: #ece4da;
  --edl-white: #fffdf8;
  --edl-rule: rgba(54, 48, 51, 0.22);
  --edl-shell: 1440px;
  --edl-reading: 760px;
  --edl-gutter: clamp(1.25rem, 4vw, 4.5rem);
  --edl-section-space: clamp(5rem, 10vw, 10rem);
  --edl-serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --edl-sans:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --edl-header-height: 78px;
  --edl-admin-bar-offset: 0px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(
    var(--edl-header-height) + var(--edl-admin-bar-offset) + 1rem
  );
}

html.edl-admin-bar-visible {
  --edl-admin-bar-offset: 32px;
}

body {
  margin: 0;
  background: var(--edl-paper);
  color: var(--edl-ink);
  font-family: var(--edl-sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.edl-menu-open {
  overflow: hidden;
}

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

figure,
blockquote,
p,
h1,
h2,
h3 {
  margin-top: 0;
}

figure {
  margin: 0;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

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

:focus-visible {
  outline: 3px solid var(--edl-white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--edl-green);
}

/* Hash destinations retain programmatic focus without appearing as controls. */
#contact-form:focus,
#contact-form:focus-visible,
#purchase:focus,
#purchase:focus-visible {
  outline: none;
  box-shadow: none;
}

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

.edl-shell {
  width: min(100%, var(--edl-shell));
  margin-inline: auto;
  padding-inline: var(--edl-gutter);
}

.edl-reading-shell {
  width: min(100%, calc(var(--edl-reading) + (var(--edl-gutter) * 2)));
  margin-inline: auto;
  padding-inline: var(--edl-gutter);
}

.edl-section {
  position: relative;
  padding-block: var(--edl-section-space);
}

.edl-kicker {
  margin-bottom: 1.25rem;
  color: var(--edl-green);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.edl-kicker-light {
  color: var(--edl-paper-deep);
}

h1,
h2,
h3 {
  max-inline-size: 100%;
  font-family: var(--edl-serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1 {
  font-size: clamp(4.8rem, 12vw, 12rem);
}

h2 {
  font-size: clamp(3.2rem, 7.2vw, 7.4rem);
}

h3 {
  font-size: clamp(1.9rem, 3vw, 3.2rem);
}

.edl-work-title {
  font-style: italic;
}

.edl-copy {
  max-width: 62ch;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
}

.edl-copy p:last-child {
  margin-bottom: 0;
}

.edl-hero-intro,
.edl-featured-statement {
  max-width: 40ch;
  font-family: var(--edl-serif);
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  line-height: 1.35;
}

.edl-icon {
  flex: 0 0 auto;
  width: 1.15em;
  height: 1.15em;
}

.edl-skip-link {
  position: fixed;
  z-index: 10000;
  top: calc(var(--edl-admin-bar-offset) + 0.75rem);
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--edl-white);
  color: var(--edl-ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.edl-skip-link:focus {
  transform: translateY(0);
}

/* Header */
.edl-site-header {
  position: sticky;
  z-index: 1000;
  top: var(--edl-admin-bar-offset);
  height: var(--edl-header-height);
  border-bottom: 1px solid var(--edl-rule);
  background: rgba(246, 243, 236, 0.94);
  backdrop-filter: blur(18px);
}

.edl-header-inner {
  display: grid;
  grid-template-columns: minmax(130px, 200px) 1fr auto;
  align-items: center;
  width: min(100%, var(--edl-shell));
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--edl-gutter);
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

.edl-logo-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
}

.edl-logo-image {
  width: auto;
  height: clamp(34px, 3.2vw, 44px);
  object-fit: contain;
}

.edl-logo-text {
  font-family: var(--edl-serif);
  font-size: 1.5rem;
}

.edl-desktop-nav {
  justify-self: center;
}

.edl-menu,
.edl-mobile-menu-list,
.edl-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.edl-menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.1rem);
}

.edl-menu a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.edl-menu a::after {
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 2px;
  background: var(--edl-green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.edl-menu a:hover::after,
.edl-menu a:focus-visible::after,
.edl-menu .current-menu-item a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.edl-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1rem;
  gap: 0.65rem;
  background: var(--edl-green);
  color: var(--edl-white);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.edl-header-cta:hover,
.edl-header-cta:focus-visible {
  background: var(--edl-ink);
  transform: translateY(-2px);
}

.edl-menu-toggle,
.edl-menu-close {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.edl-menu-toggle span,
.edl-menu-close span {
  position: absolute;
  left: 10px;
  width: 28px;
  height: 2px;
  background: currentColor;
}

.edl-menu-toggle span:first-child {
  top: 18px;
}

.edl-menu-toggle span:last-child {
  top: 28px;
}

.edl-menu-close span:first-child {
  top: 23px;
  transform: rotate(45deg);
}

.edl-menu-close span:last-child {
  top: 23px;
  transform: rotate(-45deg);
}

.edl-mobile-overlay {
  position: fixed;
  z-index: 1100;
  top: calc(var(--edl-viewport-top, 0px) + var(--edl-admin-bar-offset, 0px));
  left: var(--edl-viewport-left, 0px);
  display: none;
  width: var(--edl-viewport-width, 100vw);
  height: calc(
    var(--edl-viewport-height, 100dvh) - var(--edl-admin-bar-offset, 0px)
  );
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--edl-ink);
  color: var(--edl-white);
  touch-action: pan-y pinch-zoom;
}

.edl-mobile-overlay.is-open {
  display: block;
}

.edl-mobile-overlay-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: max(1rem, env(safe-area-inset-top)) var(--edl-gutter)
    max(1.5rem, env(safe-area-inset-bottom));
}

.edl-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.edl-mobile-top .edl-menu-close {
  display: block;
  color: var(--edl-white);
}

.edl-mobile-nav {
  display: flex;
  flex: 1;
  align-items: center;
  padding-block: clamp(3rem, 8vh, 7rem);
}

.edl-mobile-menu-list {
  width: 100%;
}

.edl-mobile-menu-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.edl-mobile-menu-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.edl-mobile-menu-list a {
  display: block;
  padding-block: 0.55rem;
  font-family: var(--edl-serif);
  font-size: clamp(2.4rem, 11vw, 5rem);
  line-height: 1;
  text-decoration: none;
}

.edl-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  color: var(--edl-paper-deep);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

/* Actions */
.edl-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: clamp(1.75rem, 3vw, 3rem);
  gap: 1rem 1.4rem;
}

.edl-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.25rem;
  gap: 0.8rem;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

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

.edl-button-primary {
  border: 1px solid var(--edl-green);
  background: var(--edl-green);
  color: var(--edl-white);
}

.edl-button-primary:hover,
.edl-button-primary:focus-visible {
  border-color: var(--edl-ink);
  background: var(--edl-ink);
}

.edl-button-text {
  padding-inline: 0;
  border-bottom: 1px solid var(--edl-ink);
}

.edl-button-light {
  border: 1px solid var(--edl-white);
  background: var(--edl-white);
  color: var(--edl-ink);
}

.edl-button-light:hover,
.edl-button-light:focus-visible {
  border-color: var(--edl-tan);
  background: var(--edl-tan);
}

.edl-button-light-text {
  padding-inline: 0;
  border-bottom: 1px solid currentColor;
  color: var(--edl-white);
}

/* Homepage opening */
.edl-home-hero {
  display: flex;
  align-items: center;
  min-height: calc(100svh - var(--edl-header-height));
  overflow: hidden;
  border-bottom: 1px solid var(--edl-rule);
}

.edl-home-hero::before {
  position: absolute;
  top: 10%;
  right: -12vw;
  width: 34vw;
  height: 34vw;
  border: 1px solid rgba(29, 94, 71, 0.2);
  border-radius: 50%;
  content: "";
}

.edl-home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.edl-grid-single.edl-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.edl-grid-single > * {
  max-width: min(100%, 920px);
}

.edl-home-hero-copy {
  position: relative;
  z-index: 2;
}

.edl-home-hero h1 {
  max-width: 6ch;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
}

.edl-hero-statement {
  position: relative;
  display: grid;
  max-width: 34ch;
  margin-bottom: 1.6rem;
  font-family: var(--edl-serif);
  font-size: clamp(1.65rem, 2.6vw, 2.7rem);
  line-height: 1.12;
}

.edl-hero-statement em {
  color: var(--edl-green);
}

.edl-hero-statement::after {
  display: block;
  width: 7rem;
  height: 0.5rem;
  margin-top: 1.25rem;
  background: var(--edl-green);
  clip-path: polygon(0 35%, 100% 0, 98% 70%, 2% 100%);
  content: "";
}

.edl-hero-portrait {
  position: relative;
  isolation: isolate;
  width: min(calc(100% - 2rem), 620px);
  margin-left: auto;
  margin-right: 2rem;
}

.edl-hero-portrait::before {
  position: absolute;
  z-index: -1;
  inset: 1.5rem -1.5rem -1.5rem 1.5rem;
  background: var(--edl-tan);
  content: "";
}

.edl-hero-portrait figure {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--edl-tan);
  box-shadow: 0 18px 42px rgba(54, 48, 51, 0.1);
}

.edl-hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--edl-focal, center);
}

html.edl-motion .edl-hero-portrait.is-visible figure {
  animation: edl-hero-image-in 650ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes edl-hero-image-in {
  from {
    opacity: 0.82;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Note */
.edl-note {
  background: var(--edl-paper-deep);
}

.edl-note-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}

.edl-note-copy h2 {
  max-width: 12ch;
}

.edl-note-body {
  margin-top: clamp(2rem, 4vw, 4rem);
  margin-left: min(10vw, 8rem);
}

.edl-note-portrait {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 50% 50% 8px 8px;
  transform: translateY(var(--edl-parallax, 0));
}

.edl-note-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--edl-focal, center);
}

.edl-signature {
  width: min(220px, 55%);
  margin-top: 2rem;
}

.edl-voice {
  max-width: 620px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--edl-rule);
}

.edl-voice audio {
  width: 100%;
}

.edl-voice details {
  margin-top: 1rem;
}

.edl-voice summary {
  width: fit-content;
  cursor: pointer;
  font-weight: 700;
}

/* Speaking feature */
.edl-speaking-feature {
  overflow: hidden;
  background: var(--edl-green);
  color: var(--edl-white);
}

.edl-speaking-feature::after {
  position: absolute;
  right: -6rem;
  bottom: -9rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.edl-speaking-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.edl-speaking-feature-copy {
  position: relative;
  z-index: 1;
}

.edl-speaking-feature-copy h2 {
  max-width: 11ch;
}

.edl-speaking-feature-copy .edl-copy {
  color: rgba(255, 255, 255, 0.88);
}

.edl-speaking-feature-image {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 50% 50% 8px 8px;
  transform: translateY(var(--edl-parallax, 0));
}

.edl-speaking-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--edl-focal, center);
}

/* Shared headings and audience rows */
.edl-section-heading {
  max-width: 1120px;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.edl-section-heading h2 {
  max-width: 13ch;
}

.edl-section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  align-items: end;
  max-width: none;
  gap: clamp(2rem, 6vw, 7rem);
}

.edl-audiences {
  background: var(--edl-white);
}

.edl-audience-list {
  border-bottom: 1px solid var(--edl-rule);
}

.edl-audience-group {
  border-top: 1px solid var(--edl-rule);
}

.edl-audience-group summary {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) 2.5rem;
  align-items: center;
  padding-block: 1.25rem;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--edl-serif);
  font-size: clamp(1.75rem, 4.2vw, 4.8rem);
  letter-spacing: -0.04em;
  line-height: 1;
  list-style: none;
  transition: color 200ms ease;
}

.edl-audience-group summary::-webkit-details-marker {
  display: none;
}

.edl-audience-group summary:hover,
.edl-audience-group summary:focus-visible {
  color: var(--edl-green);
}

.edl-row-number {
  color: var(--edl-green);
  font-family: var(--edl-sans);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.edl-summary-mark {
  position: relative;
  display: block;
  width: 2rem;
  height: 2rem;
}

.edl-summary-mark::before,
.edl-summary-mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.4rem;
  height: 2px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.edl-summary-mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.edl-audience-group[open] .edl-summary-mark::after {
  transform: translate(-50%, -50%) rotate(0);
}

.edl-audience-group ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 2rem 5rem;
  padding: 0;
  gap: 0.7rem 2rem;
  list-style: none;
}

.edl-audience-group li {
  position: relative;
  padding-left: 1rem;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.edl-audience-group li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--edl-green);
  content: "";
}

.edl-full-bleed-image {
  overflow: hidden;
  height: clamp(440px, 70vw, 920px);
  background: var(--edl-tan);
}

.edl-full-bleed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--edl-focal, center);
}

/* Beyond, book, reviews */
.edl-beyond {
  border-bottom: 1px solid var(--edl-rule);
}

.edl-beyond-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 9rem);
}

.edl-beyond-grid h2 {
  max-width: 13ch;
}

.edl-beyond-grid .edl-copy {
  margin-top: 2.5rem;
  margin-left: min(10vw, 8rem);
}

.edl-book-feature {
  overflow: hidden;
  background: var(--edl-tan);
}

.edl-book-feature .edl-kicker,
.edl-archive .edl-kicker {
  color: var(--edl-ink);
}

.edl-book-feature-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}

.edl-book-object {
  transform: translateY(var(--edl-parallax, 0)) rotate(-3deg);
}

.edl-book-object img {
  width: 100%;
  filter: drop-shadow(0 34px 30px rgba(54, 48, 51, 0.2));
}

.edl-book-feature-copy h2 {
  max-width: 10ch;
}

.edl-book-title {
  margin-block: 2rem 1rem;
  font-family: var(--edl-serif);
  font-size: clamp(1.6rem, 2.7vw, 2.8rem);
  font-style: italic;
}

.edl-reviews {
  background: var(--edl-white);
}

.edl-endorsement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 28rem), 1fr));
  border-top: 1px solid var(--edl-rule);
}

.edl-endorsement {
  position: relative;
  margin: 0;
  padding: clamp(2rem, 5vw, 5rem);
  border-bottom: 1px solid var(--edl-rule);
}

.edl-endorsement + .edl-endorsement {
  border-left: 1px solid var(--edl-rule);
}

.edl-quote-mark {
  display: block;
  height: 0.55em;
  color: var(--edl-green);
  font-family: var(--edl-serif);
  font-size: clamp(5rem, 9vw, 9rem);
  line-height: 0.8;
}

.edl-endorsement > p {
  font-family: var(--edl-serif);
  font-size: clamp(1.4rem, 2.2vw, 2.3rem);
  line-height: 1.3;
}

.edl-endorsement cite {
  display: grid;
  margin-top: 2rem;
  font-size: 0.82rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.edl-endorsement cite span {
  margin-top: 0.3rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

/* Journey */
.edl-journey-section {
  background: var(--edl-paper-deep);
}

.edl-journey {
  position: relative;
}

.edl-journey-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2.25rem;
  width: 1px;
  background: rgba(54, 48, 51, 0.2);
}

.edl-journey-line span {
  display: block;
  width: 3px;
  height: calc(var(--edl-journey-progress, 0) * 100%);
  margin-left: -1px;
  background: var(--edl-green);
}

.edl-journey-item {
  position: relative;
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  min-height: 13rem;
  padding-bottom: 3rem;
  gap: clamp(1.5rem, 5vw, 6rem);
}

.edl-journey-index {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border: 1px solid var(--edl-green);
  border-radius: 50%;
  background: var(--edl-paper-deep);
  color: var(--edl-green);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.edl-journey-content {
  display: grid;
  grid-template-columns: minmax(160px, 0.4fr) minmax(260px, 0.8fr);
  align-items: start;
  padding-top: 0.5rem;
  gap: clamp(1.5rem, 5vw, 5rem);
}

.edl-journey-heading {
  grid-column: 1;
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.edl-journey-heading .edl-kicker {
  margin-bottom: 0;
}

.edl-journey-heading h3 {
  max-width: 14ch;
  margin-bottom: 0;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.edl-journey-content > .edl-copy {
  grid-column: 2;
  grid-row: 1;
}

.edl-journey-with-images .edl-journey-item {
  grid-template-columns: 4.5rem minmax(0, 0.8fr) minmax(280px, 0.65fr);
  align-items: center;
  min-height: 30rem;
}

.edl-journey-with-images .edl-journey-item-no-image {
  grid-template-columns: 4.5rem minmax(0, 1fr);
  min-height: auto;
}

.edl-journey-with-images .edl-journey-content {
  display: block;
}

.edl-journey-with-images .edl-journey-content > .edl-copy {
  margin-top: 1.25rem;
}

.edl-journey-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 50% 50% 4px 4px;
}

.edl-journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--edl-focal, center);
}

/* Closing and footer */
.edl-closing-cta {
  overflow: hidden;
  background: var(--edl-ink);
  color: var(--edl-white);
}

.edl-closing-cta::before,
.edl-closing-cta::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.edl-closing-cta::before {
  top: -15rem;
  right: -10rem;
  width: 35rem;
  height: 35rem;
}

.edl-closing-cta::after {
  bottom: -12rem;
  left: 8%;
  width: 22rem;
  height: 22rem;
}

.edl-closing-inner {
  position: relative;
  z-index: 1;
}

.edl-closing-inner h2 {
  max-width: 12ch;
}

.edl-closing-inner .edl-copy {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.78);
}

.edl-site-footer {
  padding-block: clamp(4rem, 8vw, 7rem) 1.5rem;
  background: var(--edl-ink);
  color: var(--edl-white);
}

.edl-footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(160px, 0.45fr) minmax(
      180px,
      0.45fr
    );
  padding-bottom: clamp(3rem, 6vw, 6rem);
  gap: clamp(2rem, 6vw, 7rem);
}

.edl-footer-brand .edl-logo-image {
  height: clamp(54px, 5vw, 76px);
}

.edl-footer-statement {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.68);
}

.edl-footer-menu a,
.edl-footer-social a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.edl-footer-menu a:hover,
.edl-footer-social a:hover {
  color: var(--edl-tan);
}

.edl-footer-social {
  display: grid;
  align-content: start;
}

.edl-footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.edl-footer-bottom p {
  margin: 0;
}

/* Interior openings */
.edl-interior-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--edl-rule);
}

.edl-interior-hero h1 {
  font-style: italic;
}

.edl-book-hero {
  background: var(--edl-paper-deep);
}

.edl-book-hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  min-height: calc(100svh - var(--edl-header-height));
  gap: clamp(3rem, 8vw, 9rem);
}

.edl-book-hero-object {
  transform: translateY(var(--edl-parallax, 0)) rotate(-4deg);
}

.edl-book-hero-object img {
  width: 100%;
  filter: drop-shadow(0 36px 28px rgba(54, 48, 51, 0.22));
}

@media (min-width: 1101px) {
  .edl-book-hero-object {
    grid-column: 1;
    grid-row: 1;
  }

  .edl-book-hero-copy {
    grid-column: 2;
    grid-row: 1;
  }

  .edl-book-hero-grid.edl-grid-single .edl-book-hero-copy {
    grid-column: 1;
  }
}

.edl-book-hero h1 {
  max-width: 8ch;
  font-size: clamp(4.5rem, 9vw, 9.8rem);
}

.edl-book-subtitle {
  color: var(--edl-green);
}

.edl-book-overview {
  background: var(--edl-white);
}

.edl-book-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.6fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}

.edl-book-overview-copy h2 {
  max-width: 11ch;
}

.edl-book-overview-copy .edl-copy {
  margin-top: 3rem;
  margin-left: min(8vw, 7rem);
}

.edl-book-overview-image {
  transform: translateY(var(--edl-parallax, 0));
}

.edl-book-overview-image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 24px rgba(54, 48, 51, 0.16));
}

.edl-book-themes {
  background: var(--edl-paper);
}

.edl-theme-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
  gap: clamp(1rem, 2.4vw, 2.5rem);
}

.edl-theme-card {
  overflow: hidden;
  border: 1px solid var(--edl-rule);
  background: var(--edl-white);
}

.edl-theme-card figure {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.edl-theme-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--edl-focal, center);
  transition: transform 550ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.edl-theme-card:hover figure img {
  transform: scale(1.035);
}

.edl-theme-card > div {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.edl-theme-card-no-image > div {
  min-height: 100%;
  padding-block: clamp(2rem, 5vw, 4.5rem);
}

.edl-theme-card h3 {
  margin-top: 1rem;
}

.edl-theme-cards-text-only {
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--edl-rule);
}

.edl-theme-cards-text-only .edl-theme-card {
  border: 0;
  border-bottom: 1px solid var(--edl-rule);
  background: transparent;
}

.edl-theme-cards-text-only .edl-theme-card > div {
  display: grid;
  grid-template-columns: 3rem minmax(190px, 0.42fr) minmax(0, 0.58fr);
  align-items: start;
  min-height: 0;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  gap: clamp(1rem, 3vw, 3rem);
}

.edl-theme-cards-text-only .edl-theme-card h3,
.edl-theme-cards-text-only .edl-theme-card .edl-copy {
  margin: 0;
}

.edl-purchase {
  background: var(--edl-green);
  color: var(--edl-white);
}

.edl-purchase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.edl-purchase-grid h2 {
  max-width: 10ch;
}

.edl-purchase-grid .edl-copy {
  color: rgba(255, 255, 255, 0.86);
}

.edl-retailer-links {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.edl-retailer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  font-family: var(--edl-serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  text-decoration: none;
  transition:
    padding 200ms ease,
    color 200ms ease;
}

.edl-retailer-links a:hover,
.edl-retailer-links a:focus-visible {
  padding-left: 0.6rem;
  color: var(--edl-paper-deep);
}

/* Speaking Page */
.edl-speaking-hero h1 {
  display: grid;
  margin-bottom: clamp(2rem, 5vw, 5rem);
  font-size: clamp(4.8rem, 11vw, 11.5rem);
}

.edl-speaking-hero h1 em {
  color: var(--edl-green);
}

.edl-speaking-hero-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.edl-speaking-collage {
  position: relative;
  min-height: clamp(460px, 57vw, 820px);
  margin-top: clamp(3rem, 6vw, 6rem);
}

.edl-speaking-collage figure {
  position: absolute;
  overflow: hidden;
}

.edl-speaking-collage figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--edl-focal, center);
}

.edl-speaking-collage-main {
  inset: 0 18% 0 0;
  border-radius: 4px 48% 4px 4px;
  transform: translateY(var(--edl-parallax, 0));
}

.edl-speaking-collage-secondary {
  z-index: 2;
  right: 0;
  bottom: -8%;
  width: 32%;
  height: 70%;
  border: 10px solid var(--edl-paper);
  border-radius: 50% 50% 4px 4px;
  transform: translateY(var(--edl-parallax, 0)) rotate(3deg);
}

.edl-speaking-message {
  background: var(--edl-paper-deep);
}

.edl-speaking-topics {
  background: var(--edl-ink);
  color: var(--edl-white);
}

.edl-topic-list {
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.edl-topic-row {
  display: grid;
  grid-template-columns: 4rem minmax(220px, 0.8fr) minmax(260px, 0.65fr);
  align-items: center;
  padding-block: clamp(1.5rem, 3vw, 2.75rem);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  gap: 2rem;
  transition:
    color 220ms ease,
    padding 220ms ease;
}

.edl-topic-row:hover {
  padding-left: 0.7rem;
  color: var(--edl-tan);
}

.edl-topic-row h3 {
  margin: 0;
}

.edl-topic-row .edl-copy {
  color: rgba(255, 255, 255, 0.75);
}

.edl-topic-row .edl-row-number {
  color: var(--edl-tan);
}

.edl-engagement {
  background: var(--edl-white);
}

.edl-engagement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.edl-engagement-grid h2 {
  max-width: 12ch;
}

/* About Page */
.edl-about-hero h1 {
  max-width: 9ch;
  font-size: clamp(5.2rem, 12vw, 12.5rem);
}

.edl-about-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
  align-items: end;
  margin-top: clamp(2rem, 5vw, 5rem);
  gap: clamp(3rem, 8vw, 9rem);
}

.edl-about-portraits {
  position: relative;
  min-height: clamp(470px, 58vw, 780px);
}

.edl-about-portraits figure {
  position: absolute;
  overflow: hidden;
}

.edl-about-portraits img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--edl-focal, center);
}

.edl-about-portrait-main {
  inset: 0 24% 0 0;
  border-radius: 50% 50% 4px 4px;
  transform: translateY(var(--edl-parallax, 0));
}

.edl-about-portrait-secondary {
  z-index: 2;
  right: 0;
  bottom: -6%;
  width: 38%;
  height: 66%;
  border: 8px solid var(--edl-paper);
  border-radius: 4px 50% 4px 4px;
  transform: translateY(var(--edl-parallax, 0)) rotate(4deg);
}

.edl-about-bio {
  background: var(--edl-white);
}

.edl-about-bio-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 0.8fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.edl-about-bio-grid h2 {
  max-width: 8ch;
}

.edl-personal-statement {
  margin-top: 4rem;
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--edl-paper-deep);
}

.edl-personal-statement h3 {
  color: var(--edl-green);
}

.edl-archive {
  overflow: hidden;
  background: var(--edl-tan);
}

.edl-archive-collage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  min-height: 0;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}

.edl-archive-image {
  position: relative;
  padding: clamp(0.55rem, 0.8vw, 0.8rem);
  background: var(--edl-paper);
  box-shadow: 0 16px 38px rgba(54, 48, 51, 0.14);
  transform: translateY(var(--edl-parallax, 0));
}

.edl-archive-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: var(--edl-focal, center);
}

.edl-archive-image figcaption {
  margin-top: clamp(0.55rem, 0.8vw, 0.8rem);
  padding: 0.8rem 1rem;
  background: var(--edl-green);
  color: var(--edl-white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.edl-archive-position-1 {
  margin-top: 2.5rem;
  transform: translateY(var(--edl-parallax, 0)) rotate(-2deg);
}

.edl-archive-position-2 {
  transform: translateY(var(--edl-parallax, 0)) rotate(1.5deg);
}

.edl-archive-position-3 {
  margin-top: 4.5rem;
  transform: translateY(var(--edl-parallax, 0)) rotate(-1deg);
}

.edl-archive-count-1 {
  grid-template-columns: 1fr;
}

.edl-archive-count-1 .edl-archive-image {
  width: min(100%, 52rem);
  margin-top: 0;
  justify-self: center;
}

.edl-archive-count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 64rem);
  margin-inline: auto;
}

/* Contact Page */
.edl-contact-page {
  padding-top: clamp(3rem, 6vw, 6rem);
}

.edl-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.edl-contact-main {
  width: min(100%, 68rem);
  margin-inline: auto;
}

.edl-contact-main h1 {
  display: grid;
  margin-bottom: 2rem;
  font-size: clamp(4.5rem, 9.5vw, 10rem);
}

.edl-contact-main h1 em {
  color: var(--edl-green);
}

.edl-contact-form-wrap {
  margin-top: clamp(4rem, 8vw, 8rem);
  padding-top: clamp(2rem, 4vw, 4rem);
  border-top: 1px solid var(--edl-rule);
}

.edl-contact-form-wrap h2 {
  max-width: 10ch;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.edl-form-note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--edl-rule);
  font-size: 0.9rem;
}

.edl-form-unavailable {
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--edl-green);
  background: var(--edl-paper-deep);
  font-weight: 650;
}

/* WPForms */
.edl-wpforms {
  margin-top: 2.5rem;
}

.edl-wpforms .wpforms-container {
  width: 100%;
  margin: 0;
}

.edl-wpforms .wpforms-form,
.edl-wpforms .wpforms-field-container,
.edl-wpforms .wpforms-field-row {
  width: 100%;
  max-width: none !important;
}

.edl-wpforms .wpforms-field-row {
  display: flex;
  align-items: flex-start;
  margin: 0 !important;
  gap: 1rem 1.25rem;
}

.edl-wpforms .wpforms-field-row-block {
  flex: 0 1 auto;
  float: none !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
}

.edl-wpforms .wpforms-field {
  max-width: 100%;
  padding: 0 0 1.5rem;
}

.edl-wpforms .wpforms-field-label,
.edl-wpforms .wpforms-field-sublabel {
  margin-bottom: 0.45rem;
  color: var(--edl-ink);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.edl-wpforms .wpforms-required-label {
  color: var(--edl-green);
}

.edl-wpforms input[type="text"],
.edl-wpforms input[type="email"],
.edl-wpforms input[type="tel"],
.edl-wpforms input[type="url"],
.edl-wpforms input[type="number"],
.edl-wpforms input[type="date"],
.edl-wpforms select,
.edl-wpforms textarea {
  width: 100% !important;
  max-width: none !important;
  min-height: 52px;
  padding: 0.65rem 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(54, 48, 51, 0.48) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--edl-ink) !important;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.edl-wpforms textarea {
  min-height: 150px;
  resize: vertical;
}

.edl-wpforms input[type="text"]:focus,
.edl-wpforms input[type="email"]:focus,
.edl-wpforms input[type="tel"]:focus,
.edl-wpforms input[type="url"]:focus,
.edl-wpforms input[type="number"]:focus,
.edl-wpforms input[type="date"]:focus,
.edl-wpforms select:focus,
.edl-wpforms textarea:focus {
  border-bottom-color: var(--edl-green) !important;
  box-shadow: 0 2px 0 var(--edl-green) !important;
  outline: 0 !important;
}

.edl-wpforms input[type="text"]:focus-visible,
.edl-wpforms input[type="email"]:focus-visible,
.edl-wpforms input[type="tel"]:focus-visible,
.edl-wpforms input[type="url"]:focus-visible,
.edl-wpforms input[type="number"]:focus-visible,
.edl-wpforms input[type="date"]:focus-visible,
.edl-wpforms select:focus-visible,
.edl-wpforms textarea:focus-visible {
  border-bottom-color: var(--edl-green) !important;
  outline: 3px solid var(--edl-green) !important;
  outline-offset: 3px !important;
  box-shadow: 0 2px 0 var(--edl-green) !important;
}

.edl-wpforms input[type="checkbox"],
.edl-wpforms input[type="radio"] {
  accent-color: var(--edl-green);
}

.edl-wpforms input[type="checkbox"]:focus-visible,
.edl-wpforms input[type="radio"]:focus-visible,
.edl-wpforms button[type="submit"]:focus-visible {
  outline: 3px solid var(--edl-green) !important;
  outline-offset: 3px !important;
}

.edl-wpforms .wpforms-field-description,
.edl-wpforms .wpforms-error {
  max-width: 100%;
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.edl-wpforms label.wpforms-error {
  color: #842b2b;
}

.edl-wpforms input[type="text"].wpforms-error,
.edl-wpforms input[type="email"].wpforms-error,
.edl-wpforms input[type="tel"].wpforms-error,
.edl-wpforms input[type="url"].wpforms-error,
.edl-wpforms input[type="number"].wpforms-error,
.edl-wpforms input[type="date"].wpforms-error,
.edl-wpforms select.wpforms-error,
.edl-wpforms textarea.wpforms-error {
  border-bottom-color: #842b2b !important;
  box-shadow: 0 2px 0 #842b2b !important;
}

.edl-wpforms .wpforms-submit-container {
  padding-top: 1rem;
}

.edl-wpforms button[type="submit"] {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 1rem 1.4rem !important;
  border: 1px solid var(--edl-green) !important;
  border-radius: 0 !important;
  background: var(--edl-green) !important;
  color: var(--edl-white) !important;
  font-size: 0.8rem !important;
  font-weight: 750 !important;
  letter-spacing: 0.09em;
  overflow-wrap: anywhere;
  white-space: normal;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.edl-wpforms button[type="submit"]:hover,
.edl-wpforms button[type="submit"]:focus-visible {
  border-color: var(--edl-ink) !important;
  background: var(--edl-ink) !important;
  transform: translateY(-2px);
}

.edl-wpforms .wpforms-confirmation-container-full {
  margin: 0;
  padding: 1.25rem;
  border: 1px solid var(--edl-green);
  background: rgba(29, 94, 71, 0.08);
  color: var(--edl-ink);
}

/* Generic */
.edl-generic-page {
  min-height: 65vh;
}

.edl-generic-page h1 {
  font-size: clamp(4rem, 9vw, 8rem);
}

.edl-generic-content {
  font-size: 1.08rem;
}

/* Progressive motion */
[data-reveal] {
  opacity: 1;
  translate: none;
}

html.edl-motion [data-reveal] {
  opacity: 0;
  translate: 0 24px;
  transition:
    opacity 600ms cubic-bezier(0.2, 0.7, 0.2, 1),
    translate 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

html.edl-motion [data-reveal].is-visible {
  opacity: 1;
  translate: 0 0;
}

[data-parallax] {
  --edl-parallax: 0px;
  will-change: transform;
}

/* Tablet and navigation crowding */
@media (max-width: 1100px) {
  :root {
    --edl-header-height: 70px;
  }

  .edl-header-inner {
    grid-template-columns: 1fr auto;
  }

  html.edl-menu-ready .edl-desktop-nav,
  html.edl-menu-ready .edl-header-cta {
    display: none;
  }

  html.edl-menu-ready .edl-menu-toggle {
    display: block;
  }

  html:not(.edl-menu-ready) .edl-site-header {
    position: relative;
    top: 0;
    height: auto;
  }

  html:not(.edl-menu-ready) .edl-header-inner {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    padding-block: 1rem;
  }

  html:not(.edl-menu-ready) .edl-desktop-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
  }

  html:not(.edl-menu-ready) .edl-menu {
    flex-wrap: wrap;
  }

  html:not(.edl-menu-ready) .edl-header-cta {
    margin-left: auto;
  }

  .edl-home-hero-grid,
  .edl-speaking-feature-grid,
  .edl-book-feature-grid,
  .edl-book-hero-grid,
  .edl-book-overview-grid {
    grid-template-columns: 1fr;
  }

  .edl-home-hero {
    min-height: auto;
  }

  .edl-home-hero-grid {
    gap: 4rem;
  }

  .edl-home-hero h1 {
    max-width: none;
  }

  .edl-hero-portrait {
    width: min(calc(100% - 2rem), 620px);
    margin-inline: auto;
  }

  .edl-speaking-feature-image {
    width: min(70%, 620px);
    margin-inline: auto;
    aspect-ratio: 4 / 3;
    border-radius: 50% 50% 8px 8px;
  }

  .edl-book-object,
  .edl-book-hero-object {
    width: min(78%, 720px);
    margin-inline: auto;
  }

  .edl-book-hero-grid {
    min-height: auto;
  }

  .edl-book-hero-object {
    order: 2;
  }

  .edl-book-hero-copy {
    order: 1;
  }

  .edl-book-overview-image {
    width: min(70%, 600px);
    margin-inline: auto;
  }
}

@media (max-width: 980px) {
  .edl-endorsement-grid {
    grid-template-columns: 1fr;
  }

  .edl-endorsement + .edl-endorsement {
    border-left: 0;
  }

  .edl-archive-collage,
  .edl-archive-count-2 {
    grid-template-columns: 1fr;
    width: min(100%, 42rem);
    margin-inline: auto;
    gap: 2rem;
  }

  .edl-archive-position-1,
  .edl-archive-position-2,
  .edl-archive-position-3 {
    width: 100%;
    margin-top: 0;
  }

  .edl-archive-position-1 {
    transform: rotate(-2deg);
  }

  .edl-archive-position-2 {
    transform: rotate(1.5deg);
  }

  .edl-archive-position-3 {
    transform: rotate(-1deg);
  }
}

@media (max-width: 820px) {
  :root {
    --edl-section-space: clamp(4rem, 14vw, 7rem);
  }

  h1 {
    font-size: clamp(3.25rem, 13vw, 6.5rem);
  }

  h2 {
    font-size: clamp(2.75rem, 10.5vw, 5.25rem);
  }

  .edl-note-grid,
  .edl-section-heading-split,
  .edl-beyond-grid,
  .edl-journey-content,
  .edl-journey-with-images .edl-journey-item,
  .edl-purchase-grid,
  .edl-topic-row,
  .edl-engagement-grid,
  .edl-about-hero-grid,
  .edl-about-bio-grid,
  .edl-footer-main {
    grid-template-columns: 1fr;
  }

  .edl-note-copy {
    order: 2;
  }

  .edl-note-portrait {
    order: 1;
    width: min(74%, 520px);
    margin-inline: auto;
    aspect-ratio: 4 / 5;
  }

  .edl-note-body,
  .edl-beyond-grid .edl-copy,
  .edl-book-overview-copy .edl-copy {
    margin-left: 0;
  }

  .edl-audience-group summary {
    grid-template-columns: 2.8rem minmax(0, 1fr) 2rem;
  }

  .edl-audience-group ul {
    grid-template-columns: 1fr;
    margin-left: 3.8rem;
  }

  .edl-theme-cards,
  .edl-endorsement-grid {
    grid-template-columns: 1fr;
  }

  .edl-theme-cards-text-only .edl-theme-card > div {
    grid-template-columns: 2.5rem minmax(0, 1fr);
  }

  .edl-theme-cards-text-only .edl-theme-card .edl-copy {
    grid-column: 2;
  }

  .edl-endorsement + .edl-endorsement {
    border-left: 0;
  }

  .edl-journey-item {
    grid-template-columns: 4.5rem minmax(0, 1fr);
  }

  .edl-journey-with-images .edl-journey-item {
    grid-template-columns: 4.5rem minmax(0, 1fr);
    min-height: auto;
  }

  .edl-journey-with-images .edl-journey-image {
    grid-column: 2;
  }

  .edl-journey-heading,
  .edl-journey-content > .edl-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .edl-journey-content > .edl-copy {
    margin-top: 1.25rem;
  }

  .edl-speaking-hero h1,
  .edl-contact-main h1,
  .edl-about-hero h1,
  .edl-book-hero h1 {
    font-size: clamp(3.1rem, 12.5vw, 6.5rem);
  }

  .edl-speaking-hero-bottom {
    display: block;
  }

  .edl-topic-row {
    gap: 1rem;
  }

  .edl-topic-row h3 {
    margin-top: 0.5rem;
  }

  .edl-full-bleed-image {
    height: auto;
    aspect-ratio: 4 / 3;
  }

}

@media (max-width: 782px) {
  html.edl-admin-bar-visible {
    --edl-admin-bar-offset: 46px;
  }
}

@media (max-width: 560px) {
  :root {
    --edl-gutter: 1.2rem;
  }

  .edl-logo-image {
    height: 34px;
  }

  .edl-home-hero {
    padding-top: 4rem;
  }

  .edl-home-hero h1 {
    font-size: clamp(3.4rem, 18vw, 5.6rem);
  }

  .edl-speaking-hero h1,
  .edl-contact-main h1,
  .edl-about-hero h1,
  .edl-book-hero h1 {
    font-size: clamp(2.75rem, 12vw, 5rem);
  }

  .edl-hero-statement {
    font-size: 1.55rem;
  }

  .edl-action-row,
  .edl-button {
    width: 100%;
  }

  .edl-button-text,
  .edl-button-light-text {
    justify-content: space-between;
  }

  .edl-hero-portrait {
    width: calc(100% - 1rem);
  }

  .edl-hero-portrait::before {
    inset: 0.8rem -0.8rem -0.8rem 0.8rem;
  }

  .edl-speaking-feature-image {
    width: 100%;
  }

  .edl-audience-group summary {
    grid-template-columns: 2rem minmax(0, 1fr) 1.5rem;
    font-size: 1.7rem;
  }

  .edl-audience-group ul {
    margin-left: 3rem;
  }

  .edl-full-bleed-image {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .edl-page-home .edl-full-bleed-image img,
  .edl-page-speaking .edl-full-bleed-image img {
    object-position: right center;
  }

  .edl-journey-line {
    left: 1.75rem;
  }

  .edl-journey-item,
  .edl-journey-with-images .edl-journey-item {
    grid-template-columns: 3.5rem minmax(0, 1fr);
    gap: 1rem;
  }

  .edl-journey-index {
    width: 3.5rem;
    height: 3.5rem;
  }

  .edl-speaking-collage {
    min-height: 118vw;
  }

  .edl-speaking-collage-main {
    inset: 0 8% 12% 0;
  }

  .edl-speaking-collage-secondary {
    right: 0;
    bottom: 0;
    width: 44%;
    height: 52%;
    border-width: 6px;
  }

  .edl-about-portraits {
    min-height: 128vw;
  }

  .edl-about-portrait-main {
    inset: 0 12% 8% 0;
  }

  .edl-about-portrait-secondary {
    width: 44%;
    height: 48%;
    border-width: 6px;
  }

  .edl-wpforms .wpforms-field-row {
    display: block !important;
  }

  .edl-wpforms .wpforms-field-row-block,
  .edl-wpforms .wpforms-one-half,
  .edl-wpforms .wpforms-one-third,
  .edl-wpforms .wpforms-two-thirds,
  .edl-wpforms .wpforms-one-fourth,
  .edl-wpforms .wpforms-three-fourths {
    float: none !important;
    width: 100% !important;
    margin: 0 0 1rem !important;
  }

  .edl-footer-main {
    gap: 3rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  html.edl-motion [data-reveal] {
    opacity: 1;
    translate: none;
  }

  [data-parallax] {
    --edl-parallax: 0px !important;
  }
}

@media print {
  .edl-site-header,
  .edl-site-footer,
  .edl-action-row {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .edl-section {
    padding-block: 2rem;
  }
}
