:root {
  --ot-bg: #f7f5ef;
  --ot-surface: #fffdf9;
  --ot-surface-muted: #ece8dd;
  --ot-text: #1e2722;
  --ot-muted: #56615a;
  --ot-border: #d5d0c3;
  --ot-accent: #1f4938;
  --ot-accent-deep: #123527;
  --ot-accent-soft: #dce9df;
  --ot-highlight: #a34f2c;
  --ot-on-accent: #ffffff;
  --ot-radius-sm: 0.5rem;
  --ot-radius: 1rem;
  --ot-shadow: 0 1.1rem 3rem rgba(27, 36, 30, 0.08);
  --ot-container: 74rem;
  --ot-reading: 46rem;
  --ot-space-1: 0.5rem;
  --ot-space-2: 0.875rem;
  --ot-space-3: 1.25rem;
  --ot-space-4: 2rem;
  --ot-space-5: 3.5rem;
  --ot-space-6: 5.5rem;
  --ot-font-interface: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ot-font-reading: Georgia, Cambria, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ot-bg);
  color: var(--ot-text);
  font-family: var(--ot-font-interface);
  font-size: 1rem;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ot-accent);
}

button,
input,
select {
  font: inherit;
}

button,
select,
input[type="search"] {
  min-height: 2.75rem;
}

:focus-visible {
  outline: 0.2rem solid var(--ot-highlight);
  outline-offset: 0.2rem;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ot-container {
  width: min(calc(100% - 2rem), var(--ot-container));
  margin-inline: auto;
}

.ot-reading-width {
  max-width: var(--ot-reading);
}

.ot-skip-link {
  position: absolute;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--ot-accent-deep);
  color: var(--ot-on-accent);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-200%);
}

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

.ot-site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--ot-border);
  background: rgba(255, 253, 249, 0.97);
}

.ot-site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--ot-space-2) var(--ot-space-3);
  align-items: center;
  min-height: 5rem;
  padding-block: var(--ot-space-2);
}

.ot-brand {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  min-height: 2.75rem;
  color: var(--ot-text);
  font-weight: 800;
  letter-spacing: -0.035em;
  text-decoration: none;
  white-space: nowrap;
}

.ot-brand:hover {
  color: var(--ot-text);
}

.ot-brand__mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 50%;
  background: var(--ot-accent);
  color: var(--ot-on-accent);
  font-family: var(--ot-font-reading);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.ot-site-nav {
  order: 3;
  grid-column: 1 / -1;
  overflow-x: auto;
}

.ot-site-nav .menu {
  display: flex;
  gap: 0.15rem;
  min-width: max-content;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ot-site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding-inline: 0.7rem;
  color: var(--ot-muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.ot-site-nav .current-menu-item > a,
.ot-site-nav a:hover {
  color: var(--ot-accent);
}

.ot-site-search {
  display: flex;
  justify-self: end;
  min-width: 0;
}

.ot-site-search input {
  width: clamp(7.75rem, 25vw, 14rem);
  min-width: 0;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--ot-border);
  border-right: 0;
  border-radius: var(--ot-radius-sm) 0 0 var(--ot-radius-sm);
  background: var(--ot-surface);
  color: var(--ot-text);
}

.ot-site-search button {
  padding-inline: 0.75rem;
  border: 1px solid var(--ot-accent);
  border-radius: 0 var(--ot-radius-sm) var(--ot-radius-sm) 0;
  background: var(--ot-accent);
  color: var(--ot-on-accent);
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.ot-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--ot-border);
  background: linear-gradient(120deg, #e8efe7 0%, #f7f5ef 60%, #f3e7dc 100%);
}

.ot-hero__grid {
  display: grid;
  gap: var(--ot-space-5);
  align-items: end;
  min-height: min(41rem, 74vh);
  padding-block: clamp(4rem, 10vw, 8rem);
}

.ot-hero__content {
  max-width: 49rem;
}

.ot-eyebrow,
.ot-card-kicker {
  margin: 0 0 var(--ot-space-1);
  color: var(--ot-accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.ot-hero h1,
.ot-entry h1,
.ot-book h1,
.ot-archive-header h1 {
  margin: 0;
  font-family: var(--ot-font-reading);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.96;
  overflow-wrap: anywhere;
}

.ot-hero h1 {
  max-width: 10ch;
  font-size: clamp(3.25rem, 10vw, 7rem);
}

.ot-hero__lede {
  max-width: 42rem;
  margin: var(--ot-space-3) 0 0;
  color: var(--ot-muted);
  font-size: clamp(1.08rem, 2.4vw, 1.35rem);
}

.ot-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ot-space-2);
  margin-top: var(--ot-space-4);
}

.ot-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--ot-accent);
  border-radius: 999px;
  background: var(--ot-accent);
  color: var(--ot-on-accent);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.ot-button:hover {
  border-color: var(--ot-accent-deep);
  background: var(--ot-accent-deep);
  color: var(--ot-on-accent);
}

.ot-button--quiet {
  background: transparent;
  color: var(--ot-accent);
}

.ot-button--quiet:hover {
  background: var(--ot-accent);
  color: var(--ot-on-accent);
}

.ot-button--small {
  min-height: 2.75rem;
  padding: 0.55rem 0.9rem;
}

.ot-hero__note {
  max-width: 20rem;
  padding: var(--ot-space-3);
  border-top: 0.35rem solid var(--ot-highlight);
  background: rgba(255, 253, 249, 0.88);
  box-shadow: var(--ot-shadow);
}

.ot-hero__note p:last-child {
  margin: 0;
}

.ot-hero__note-label {
  margin: 0 0 0.45rem;
  color: var(--ot-muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ot-section {
  padding-block: var(--ot-space-6);
}

.ot-section--intent,
.ot-section--editorial,
.ot-section--related {
  border-top: 1px solid var(--ot-border);
}

.ot-section--guide {
  padding-top: 0;
}

.ot-section-heading {
  display: flex;
  gap: var(--ot-space-3);
  align-items: end;
  justify-content: space-between;
  margin-bottom: var(--ot-space-4);
}

.ot-section-heading--stacked {
  display: block;
}

.ot-section-heading h2,
.ot-featured-guide h2,
.ot-book__decision h2 {
  max-width: 18ch;
  margin: 0;
  font-family: var(--ot-font-reading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.ot-text-link {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  min-height: 2.75rem;
  color: var(--ot-accent);
  font-weight: 800;
}

.ot-intent-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--ot-border);
  background: var(--ot-border);
}

.ot-intent-card {
  display: flex;
  min-height: 14rem;
  flex-direction: column;
  padding: var(--ot-space-3);
  background: var(--ot-surface);
  color: var(--ot-text);
  text-decoration: none;
}

a.ot-intent-card:hover {
  background: var(--ot-accent-soft);
  color: var(--ot-text);
}

.ot-intent-card--featured {
  background: var(--ot-accent);
  color: var(--ot-on-accent);
}

a.ot-intent-card--featured:hover {
  background: var(--ot-accent-deep);
  color: var(--ot-on-accent);
}

.ot-intent-card--pending {
  color: var(--ot-muted);
}

.ot-intent-card__number {
  color: var(--ot-highlight);
  font-family: var(--ot-font-reading);
  font-size: 1.15rem;
}

.ot-intent-card--featured .ot-intent-card__number {
  color: #f8c3a4;
}

.ot-intent-card__title {
  margin-top: auto;
  font-family: var(--ot-font-reading);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.ot-intent-card__description {
  margin-top: 0.55rem;
  font-size: 0.96rem;
  line-height: 1.5;
}

.ot-intent-card__link,
.ot-intent-card__status {
  display: block;
  margin-top: var(--ot-space-2);
  font-size: 0.88rem;
  font-weight: 800;
}

.ot-intent-card__status {
  color: var(--ot-muted);
}

.ot-featured-guide {
  display: grid;
  gap: var(--ot-space-4);
  padding: var(--ot-space-4);
  border: 1px solid var(--ot-border);
  border-radius: var(--ot-radius);
  background: #e8efe7;
}

.ot-featured-guide__index {
  color: var(--ot-highlight);
  font-family: var(--ot-font-reading);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 0.8;
}

.ot-featured-guide h2 a {
  text-decoration: none;
}

.ot-featured-guide__content > p:not(.ot-eyebrow) {
  max-width: 43rem;
  color: var(--ot-muted);
  font-size: 1.05rem;
}

.ot-book-grid,
.ot-editorial-grid {
  display: grid;
  gap: var(--ot-space-3);
}

.ot-book-grid {
  align-items: start;
}

.ot-book-card,
.ot-editorial-card,
.ot-search-result {
  min-width: 0;
  border: 1px solid var(--ot-border);
  background: var(--ot-surface);
}

.ot-book-card {
  display: flex;
  flex-direction: column;
}

.ot-book-card__cover {
  display: block;
  overflow: hidden;
  background: var(--ot-surface-muted);
}

.ot-book-card__cover img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
}

.ot-book-card__body,
.ot-editorial-card,
.ot-search-result {
  padding: var(--ot-space-3);
}

.ot-book-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.ot-book-card h3,
.ot-editorial-card h3,
.ot-search-result h2 {
  margin: 0;
  font-family: var(--ot-font-reading);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.ot-book-card h3 a,
.ot-editorial-card h3 a,
.ot-search-result h2 a {
  text-decoration: none;
}

.ot-book-card__authors {
  margin: var(--ot-space-1) 0 0;
  color: var(--ot-muted);
  font-weight: 600;
}

.ot-book-card__excerpt,
.ot-editorial-card > p:not(.ot-card-kicker),
.ot-search-result > p:not(.ot-card-kicker) {
  color: var(--ot-muted);
}

.ot-book-card__body > .ot-text-link {
  margin-top: auto;
}

.ot-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0;
  margin: var(--ot-space-2) 0;
  list-style: none;
}

.ot-tag-list li {
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--ot-border);
  border-radius: 999px;
  color: var(--ot-muted);
  font-size: 0.77rem;
  font-weight: 700;
  line-height: 1.3;
}

.ot-editorial-card {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  align-items: flex-start;
}

.ot-editorial-card .ot-text-link {
  margin-top: auto;
}

.ot-empty-panel {
  max-width: 46rem;
  padding: var(--ot-space-3);
  border-left: 0.3rem solid var(--ot-highlight);
  background: var(--ot-surface-muted);
}

.ot-empty-panel p:last-child {
  margin-bottom: 0;
}

.ot-archive-header {
  max-width: 47rem;
  margin-bottom: var(--ot-space-4);
}

.ot-archive-header h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
}

.ot-archive-header__lede {
  margin: var(--ot-space-2) 0 0;
  color: var(--ot-muted);
  font-size: 1.15rem;
}

.ot-catalogue-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ot-space-2);
  align-items: end;
  padding: var(--ot-space-2);
  margin-bottom: var(--ot-space-4);
  border: 1px solid var(--ot-border);
  background: var(--ot-surface-muted);
}

.ot-catalogue-filter label,
.ot-catalogue-filter select {
  display: block;
}

.ot-catalogue-filter label {
  margin-bottom: 0.3rem;
  font-size: 0.84rem;
  font-weight: 800;
}

.ot-catalogue-filter select {
  width: min(100%, 18rem);
  padding-inline: 0.65rem;
  border: 1px solid var(--ot-border);
  border-radius: var(--ot-radius-sm);
  background: var(--ot-surface);
  color: var(--ot-text);
}

.ot-book__header,
.ot-guide-header {
  border-bottom: 1px solid var(--ot-border);
  background: #e8efe7;
}

.ot-book__identity {
  display: grid;
  gap: var(--ot-space-4);
  align-items: center;
  padding-block: var(--ot-space-5);
}

.ot-book h1 {
  max-width: 14ch;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
}

.ot-book__subtitle,
.ot-book__authors {
  max-width: 38rem;
  margin: var(--ot-space-2) 0 0;
  font-family: var(--ot-font-reading);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  line-height: 1.3;
}

.ot-book__authors,
.ot-book__publication,
.ot-entry__meta {
  color: var(--ot-muted);
}

.ot-book__publication {
  margin: var(--ot-space-2) 0 0;
}

.ot-book__cover {
  justify-self: center;
  max-width: 20rem;
  background: var(--ot-surface-muted);
  box-shadow: var(--ot-shadow);
}

.ot-book__cover img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
}

.ot-book__decision {
  display: grid;
  gap: var(--ot-space-3);
  padding-block: var(--ot-space-4);
}

.ot-book__decision-heading h2 {
  font-size: 2rem;
}

.ot-book-facts {
  display: grid;
  gap: 1px;
  padding: 1px;
  margin: 0;
  background: var(--ot-border);
}

.ot-book-facts > div {
  padding: var(--ot-space-2);
  background: var(--ot-surface);
}

.ot-book-facts dt {
  color: var(--ot-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ot-book-facts dd {
  margin: 0.2rem 0 0;
  font-weight: 700;
}

.ot-book__content,
.ot-entry__content {
  padding-block: var(--ot-space-5);
  font-family: var(--ot-font-reading);
  font-size: clamp(1.1rem, 2vw, 1.22rem);
  line-height: 1.72;
}

.ot-book__content > :first-child,
.ot-entry__content > :first-child {
  margin-top: 0;
}

.ot-book__content h2,
.ot-book__content h3,
.ot-entry__content h2,
.ot-entry__content h3,
.ot-entry__content h4 {
  margin-top: 2em;
  font-family: var(--ot-font-reading);
  line-height: 1.1;
}

.ot-book__content h2,
.ot-entry__content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.ot-book__content a,
.ot-entry__content a {
  color: var(--ot-accent);
  overflow-wrap: anywhere;
}

.ot-guide-header,
.ot-entry__header {
  padding-block: var(--ot-space-5);
}

.ot-entry__header h1 {
  max-width: 16ch;
  font-size: clamp(3rem, 7vw, 5rem);
}

.ot-entry__lede {
  max-width: 42rem;
  margin: var(--ot-space-3) 0 0;
  color: var(--ot-muted);
  font-family: var(--ot-font-reading);
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  line-height: 1.35;
}

.ot-entry__meta {
  margin: var(--ot-space-2) 0 0;
  font-family: var(--ot-font-interface);
  font-size: 0.93rem;
}

.ot-entry__featured-image {
  margin-top: var(--ot-space-4);
}

.ot-entry__featured-image img {
  width: 100%;
}

.ot-amazon-cta {
  display: grid;
  gap: var(--ot-space-2);
  margin-bottom: var(--ot-space-5);
  padding: var(--ot-space-3);
  border: 1px solid var(--ot-border);
  border-left: 0.35rem solid var(--ot-accent);
  background: var(--ot-surface);
}

.ot-amazon-cta p {
  margin: 0;
}

.ot-amazon-cta .ot-button {
  justify-self: start;
}

.ot-search-results {
  display: grid;
  gap: var(--ot-space-2);
}

.navigation.pagination,
.posts-navigation {
  margin-top: var(--ot-space-4);
}

.navigation.pagination .nav-links,
.posts-navigation .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ot-space-1);
}

.navigation.pagination a,
.navigation.pagination span,
.posts-navigation a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding-inline: 0.75rem;
  border: 1px solid var(--ot-border);
}

.ot-site-footer {
  margin-top: var(--ot-space-6);
  padding-block: var(--ot-space-4);
  border-top: 1px solid var(--ot-border);
  color: var(--ot-muted);
  font-size: 0.9rem;
}

.ot-site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ot-space-1) var(--ot-space-4);
  justify-content: space-between;
}

.ot-site-footer p {
  margin: 0;
}

@media (min-width: 40rem) {
  .ot-intent-grid,
  .ot-book-grid,
  .ot-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ot-book-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 30rem) {
  .ot-site-header__inner {
    grid-template-columns: 1fr;
  }

  .ot-site-nav {
    overflow-x: visible;
  }

  .ot-site-nav .menu {
    min-width: 0;
    justify-content: space-between;
  }

  .ot-site-nav a {
    min-height: 2.5rem;
    padding-inline: 0.25rem;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .ot-entry__header h1 {
    font-size: clamp(2.25rem, 12vw, 3rem);
    overflow-wrap: normal;
  }

  .ot-site-search {
    width: 100%;
    justify-self: stretch;
  }

  .ot-site-search input {
    flex: 1;
  }
}

@media (min-width: 56rem) {
  .ot-site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .ot-site-nav {
    order: initial;
    grid-column: auto;
    overflow: visible;
  }

  .ot-hero__grid {
    grid-template-columns: minmax(0, 1fr) 20rem;
  }

  .ot-intent-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .ot-featured-guide {
    grid-template-columns: minmax(10rem, 0.35fr) minmax(0, 1fr);
    align-items: end;
    padding: var(--ot-space-5);
  }

  .ot-book-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ot-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ot-book__identity {
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 20rem);
    min-height: 32rem;
  }

  .ot-book__decision {
    grid-template-columns: minmax(12rem, 0.35fr) minmax(0, 1fr);
  }
}

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

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