/* hook-the-horizon-header-chrome */
/**
 * Hook the Horizon — hybrid header chrome
 * Search-first sticky header + pillar mega menus + breadcrumbs.
 */

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

/* Skip link — first focusable element in the document, before the header, so
 * a keyboard user reaches it without tabbing the whole navigation. The theme
 * previously had one skip control and it sat inside <main> on the front page
 * only, i.e. after everything it was supposed to let you skip. */
.hth-skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 1.1rem;
  background: #C7A257;
  color: #071827 !important;
  font-family: var(--wp--preset--font-family--ui, system-ui, sans-serif);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  transform: translateY(-120%);
  transition: transform var(--duration-fast, 130ms) var(--ease-enter, ease-out);
}
.hth-skip-link:focus {
  transform: translateY(0);
  outline: 3px solid #071827;
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .hth-skip-link { transition: none; }
}

.hth-chase-header {
  position: sticky;
  top: 0;
  z-index: 500;
  width: 100%;
  border-bottom: 1px solid rgba(227, 225, 217, 0.1);
  background: #071827 !important;
  color: #E3E1D9 !important;
  transition: box-shadow var(--duration-standard, 200ms) ease-out;
}

.hth-chase-header.is-compact {
  box-shadow: 0 10px 28px rgba(7,24,39, 0.28);
}

.hth-chase-shell {
  width: min(1440px, calc(100% - 2 * clamp(1rem, 4vw, 2.5rem)));
  margin-inline: auto;
}

/* Top row: logo | search | actions */
.hth-chase-header__top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  min-height: 84px;
  padding-block: 0.85rem;
  transition: min-height 0.2s ease, padding 0.2s ease;
}

.hth-chase-header.is-compact .hth-chase-header__top {
  min-height: 64px;
  padding-block: 0.45rem;
}

.hth-chase-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  flex-shrink: 0;
}

.hth-chase-brand img,
.hth-header-mark {
  width: auto;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  transition: height 0.2s ease;
}

.hth-chase-header.is-compact .hth-chase-brand img,
.hth-chase-header.is-compact .hth-header-mark {
  height: 34px;
}

/* Search */
.hth-header-search {
  position: relative;
  width: 100%;
  max-width: 46rem;
  justify-self: center;
}

.hth-header-search__field {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.2rem 0.3rem 0.2rem 0.75rem;
  border: 1px solid rgba(227, 225, 217, 0.22);
  background: rgba(227, 225, 217, 0.06);
  transition: border-color var(--duration-fast, 130ms) ease-out, background var(--duration-fast, 130ms) ease-out;
}

.hth-chase-header.is-compact .hth-header-search__field {
  min-height: 44px;
}

/* The input's own outline is suppressed, so the wrapper has to carry a focus
 * indicator that actually meets 3:1. The previous 16%-alpha gold glow measured
 * about 1.2:1 against the navy header and vanished entirely in forced-colors,
 * leaving the header's primary control with no visible focus state. */
.hth-header-search__field:has(.hth-header-search__input:focus-visible) {
  border-color: #C7A257;
  background: rgba(227, 225, 217, 0.14);
  outline: 3px solid #C7A257;
  outline-offset: 2px;
}
.hth-header-search__field:focus-within {
  border-color: rgba(199, 162, 87, 0.75);
  background: rgba(227, 225, 217, 0.1);
}
@media (forced-colors: active) {
  .hth-header-search__field:has(.hth-header-search__input:focus-visible) {
    outline: 3px solid Highlight;
  }
}

.hth-header-search__icon {
  color: rgba(227, 225, 217, 0.7);
  flex-shrink: 0;
}

.hth-header-search__input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #E3E1D9 !important;
  font: inherit;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  outline: none;
}

/* 0.48 alpha pearl composites to 4.0:1 against the navy header — under AA.
 * Placeholder text is real content for a user reading the field. */
.hth-header-search__input::placeholder {
  color: rgba(227, 225, 217, 0.66);
}

.hth-header-search__input::-webkit-search-decoration,
.hth-header-search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.hth-header-search__kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.35rem;
  border: 1px solid rgba(227, 225, 217, 0.22);
  border-radius: 0.2rem;
  color: rgba(227, 225, 217, 0.55);
  font-family: inherit;
  font-size: 0.72rem;
  line-height: 1;
}

.hth-header-search__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 0.85rem;
  border: 0;
  background: #C7A257;
  color: #071827 !important;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.hth-header-search__submit:hover,
.hth-header-search__submit:focus-visible {
  background: #E3E1D9;
}

/* Search suggestion panel */
.hth-search-panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  right: 0;
  z-index: 90;
  max-height: min(70vh, 28rem);
  overflow: auto;
  border: 1px solid rgba(199, 162, 87, 0.35);
  background: #071827;
  box-shadow: 0 18px 44px rgba(7,24,39, 0.45);
  color: #E3E1D9;
}

.hth-search-panel[hidden] {
  display: none !important;
}

.hth-search-panel__section {
  padding: 0.9rem 1rem 0.75rem;
  border-bottom: 1px solid rgba(227, 225, 217, 0.1);
}

.hth-search-panel__section:last-child {
  border-bottom: 0;
}

.hth-search-panel__heading {
  margin: 0 0 0.55rem;
  color: #C7A257 !important;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hth-search-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hth-search-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(227, 225, 217, 0.2);
  background: transparent;
  color: rgba(227, 225, 217, 0.9) !important;
  font: inherit;
  font-size: 0.78rem;
  cursor: pointer;
  text-decoration: none;
}

.hth-search-chip:hover,
.hth-search-chip:focus-visible {
  border-color: rgba(199, 162, 87, 0.55);
  color: #C7A257 !important;
  background: rgba(199, 162, 87, 0.1);
}

.hth-search-panel__cats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
}

.hth-search-panel__cats a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(227, 225, 217, 0.12);
  color: #E3E1D9 !important;
  font-size: 0.78rem;
  text-decoration: none !important;
}

.hth-search-panel__cats a:hover,
.hth-search-panel__cats a:focus-visible {
  border-color: rgba(199, 162, 87, 0.45);
  color: #C7A257 !important;
}

.hth-search-panel__list {
  display: grid;
}

.hth-search-suggest {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 44px;
  padding: 0.55rem 0.15rem;
  border-bottom: 1px solid rgba(227, 225, 217, 0.08);
  color: #E3E1D9 !important;
  text-decoration: none !important;
}

.hth-search-suggest:last-child {
  border-bottom: 0;
}

.hth-search-suggest:hover,
.hth-search-suggest:focus-visible {
  color: #C7A257 !important;
}

.hth-search-suggest em {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(227, 225, 217, 0.45);
}

/* Actions */
.hth-chase-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  justify-self: end;
}

.hth-chase-header__cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.6rem 0.95rem;
  border: 1px solid #C7A257;
  color: #C7A257 !important;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.hth-chase-header__cta:hover,
.hth-chase-header__cta:focus-visible {
  background: #C7A257;
  color: #071827 !important;
}

/* Pillar row */
.hth-chase-header__pillars-wrap {
  border-top: 1px solid rgba(227, 225, 217, 0.08);
  background: rgba(7,24,39, 0.18);
  transition: max-height 0.22s ease, opacity 0.18s ease, border-color 0.18s ease;
}

.hth-chase-header__pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 1.8vw, 1.75rem);
  min-height: 48px;
  padding-block: 0.15rem;
}

.hth-pillar-link,
.hth-nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  color: rgba(227, 225, 217, 0.88) !important;
  font: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.hth-pillar-link:hover,
.hth-pillar-link:focus-visible,
.hth-nav-trigger:hover,
.hth-nav-trigger[aria-expanded="true"] {
  color: #E3E1D9 !important;
}

.hth-pillar-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0.55rem;
  border-bottom: 1px solid #C7A257;
  transition: right 0.16s ease;
}

.hth-pillar-link:hover::after,
.hth-pillar-link:focus-visible::after {
  right: 0;
}

.hth-nav-item {
  position: relative;
}

.hth-nav-chevron {
  transition: transform 0.2s ease;
  opacity: 0.8;
}

.hth-nav-trigger[aria-expanded="true"] .hth-nav-chevron {
  transform: rotate(180deg);
}

/* Dropdown / mega panels */
.hth-dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: min(22rem, calc(100vw - 2rem));
  z-index: 80;
  background: #071827 !important;
  border: 1px solid rgba(199, 162, 87, 0.35);
  box-shadow: 0 16px 40px rgba(7,24,39, 0.45);
  color: #E3E1D9 !important;
}

.hth-nav-item--mega .hth-dropdown {
  left: 50%;
  min-width: min(36rem, calc(100vw - 2rem));
}

.hth-dropdown[hidden] {
  display: none !important;
}

.hth-dropdown:not([hidden]) {
  display: block !important;
}

.hth-dropdown__inner {
  display: grid;
  padding: 0.5rem 0;
}

.hth-mega__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.hth-mega__col {
  padding: 0.85rem 0.35rem 0.85rem;
}

.hth-mega__col + .hth-mega__col {
  border-left: 1px solid rgba(227, 225, 217, 0.1);
}

.hth-mega__title {
  margin: 0 0.8rem 0.35rem;
  color: #C7A257 !important;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hth-dropdown a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 1.15rem;
  color: rgba(227, 225, 217, 0.9) !important;
  text-decoration: none !important;
}

.hth-dropdown a:hover {
  background: rgba(199, 162, 87, 0.12);
  color: #C7A257 !important;
}

.hth-dropdown__label {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: inherit !important;
}

.hth-dropdown__desc {
  font-size: 0.82rem;
  line-height: 1.35;
  color: rgba(227, 225, 217, 0.55) !important;
  text-transform: none;
  letter-spacing: 0;
}

/* Breadcrumbs */
.hth-breadcrumbs {
  display: block;
  padding: 0.55rem 0 0.7rem;
  border-top: 1px solid rgba(227, 225, 217, 0.08);
  background: rgba(7,24,39, 0.12);
}

.hth-breadcrumbs[hidden] {
  display: none !important;
}

.hth-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(227, 225, 217, 0.7);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}

/* Breadcrumb links were bare inline text at 0.74rem — roughly a 17px tap
 * target with about 6px between neighbours, on every inner page. Vertical
 * padding brings the hit area up without changing the visual density. */
.hth-breadcrumbs a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding-block: 0.45rem;
  color: rgba(227, 225, 217, 0.78) !important;
  text-decoration: none;
}
@media (pointer: coarse) {
  .hth-breadcrumbs a { min-height: 44px; }
  .hth-breadcrumbs { gap: 0.15rem 0.6rem; }
}

.hth-breadcrumbs a:hover,
.hth-breadcrumbs a:focus-visible {
  color: #C7A257 !important;
}

.hth-breadcrumbs [aria-current="page"] {
  color: #E3E1D9 !important;
}

.hth-breadcrumbs__sep {
  color: rgba(227, 225, 217, 0.35);
}

/* The trail is written by header-nav.js after load. Leaving the bar at
 * display:none until then meant revealing it pushed every interior page down
 * by about sixty pixels, which measured as a 0.06 layout shift on a site that
 * had just been through a CLS repair. The bar now holds its final height from
 * first paint and stays invisible until it has something to say. The trail is
 * kept on one line so that height is the same on a phone as on a desktop. */
body:not(.home) .hth-breadcrumbs,
body:not(.home) .hth-breadcrumbs[hidden] {
  display: block !important;
  min-height: 55px;
}

body:not(.home) .hth-breadcrumbs[hidden] {
  visibility: hidden;
}

.hth-breadcrumbs__list {
  flex-wrap: nowrap;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.hth-breadcrumbs__list::-webkit-scrollbar {
  display: none;
}

.hth-breadcrumbs__list > li {
  flex: none;
  white-space: nowrap;
}

@media (pointer: coarse) {
  body:not(.home) .hth-breadcrumbs,
  body:not(.home) .hth-breadcrumbs[hidden] {
    min-height: 61px;
  }
}

/* Mobile defaults: hide hamburger until breakpoint */
.hth-chase-mobile {
  display: none;
}

/* Mobile: search stays visible; pillars move into menu */
@media (max-width: 980px) {
  .hth-chase-header__top {
    grid-template-columns: auto 1fr auto;
    min-height: 64px;
    padding-block: 0.55rem;
    gap: 0.55rem;
  }

  .hth-chase-header__pillars-wrap {
    display: none !important;
  }

  .hth-chase-header__cta {
    display: none !important;
  }

  .hth-chase-mobile {
    display: block !important;
  }

  .hth-chase-brand img,
  .hth-header-mark {
    height: 36px;
  }

  .hth-text-brand span {
    max-width: 7.5rem !important;
    font-size: 0.95rem !important;
  }

  .hth-header-search {
    max-width: none;
  }

  .hth-header-search__field {
    min-height: 44px;
    padding-left: 0.7rem;
    grid-template-columns: auto 1fr auto;
  }

  .hth-header-search__kbd {
    display: none;
  }

  .hth-header-search__submit span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  /* This is the touch breakpoint, so the submit control must not shrink here.
   * It previously dropped to 38x30px on exactly the viewports where a finger
   * is the only input. */
  .hth-header-search__submit {
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23071827' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='7' cy='7' r='5'/%3E%3Cpath d='M14 14l-2.5-2.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
  }

  .hth-search-panel__cats {
    grid-template-columns: 1fr 1fr;
  }

  .hth-chase-mobile summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(227, 225, 217, 0.35);
    color: #E3E1D9;
  }

  .hth-chase-mobile summary::-webkit-details-marker {
    display: none;
  }

  .hth-chase-mobile__icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 1.15rem;
  }

  .hth-chase-mobile__icon i {
    display: block;
    height: 1px;
    background: #E3E1D9;
  }

  .hth-chase-mobile__panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 60;
    max-height: calc(100vh - 64px);
    overflow: auto;
    background: #071827;
    border-bottom: 1px solid rgba(227, 225, 217, 0.12);
    color: #E3E1D9;
  }

  .hth-chase-mobile__panel nav {
    display: grid;
    gap: 0;
    padding: 0.5rem 0;
  }

  .hth-chase-mobile__panel nav a {
    display: grid;
    gap: 0.25rem;
    padding: 1rem clamp(1.25rem, 4vw, 2.5rem);
    border-bottom: 1px solid rgba(227, 225, 217, 0.1);
    color: #E3E1D9 !important;
    text-decoration: none;
  }

  .hth-chase-mobile__panel nav strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #E3E1D9 !important;
  }

  .hth-chase-mobile__panel nav span {
    color: rgba(227, 225, 217, 0.68) !important;
    font-size: 0.78rem;
  }

  .hth-chase-mobile__tools {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    padding: 1.4rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
  }

  .hth-chase-mobile__tools > span {
    grid-column: 1 / -1;
    color: #C7A257 !important;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
  }

  .hth-chase-mobile__tools a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 0.7rem 0.8rem;
    border: 1px solid rgba(227, 225, 217, 0.2);
    color: #E3E1D9 !important;
    font-size: 0.72rem;
    text-decoration: none;
  }

  .hth-breadcrumbs {
    padding-block: 0.45rem 0.55rem;
  }
}

@media (max-width: 560px) {
  .hth-chase-header__top {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand actions"
      "search search";
    gap: 0.55rem 0.65rem;
  }

  .hth-chase-brand {
    grid-area: brand;
  }

  .hth-chase-header__actions {
    grid-area: actions;
  }

  .hth-header-search {
    grid-area: search;
  }

  .hth-header-search__input {
    font-size: 0.86rem;
  }
}

@media (min-width: 981px) {
  .hth-chase-mobile {
    display: none !important;
  }

  /* Compact: collapse pillar density slightly but keep access */
  .hth-chase-header.is-compact .hth-chase-header__pillars {
    min-height: 40px;
  }

  /* Compact state keeps the 44px floor: the sticky header is where these
   * controls get used most, so shrinking them on scroll is backwards. */
  .hth-chase-header.is-compact .hth-pillar-link,
  .hth-chase-header.is-compact .hth-nav-trigger {
    min-height: 44px;
    font-size: 0.76rem;
  }
}

/* Light content surfaces only — never apply dark ink to navy chrome */
.hth-page-shell,
.hth-prose,
.entry-content,
.wp-block-post-content {
  color: #424546;
}

.hth-page-shell h1,
.hth-page-shell h2,
.hth-page-shell h3,
.hth-page-title,
.hth-prose h1,
.hth-prose h2,
.hth-prose h3,
.entry-content h1,
.entry-content h2,
.entry-content h3 {
  color: #071827;
}

/* Dark content surfaces — pearl type */
.hth-horizon-hero,
.hth-compatibility,
.hth-home-hero,
.hth-home-system,
.hth-route-hero {
  color: #E3E1D9 !important;
}

.hth-horizon-hero h1,
.hth-horizon-hero h2,
.hth-horizon-hero h3,
.hth-compatibility h1,
.hth-compatibility h2,
.hth-compatibility h3,
.hth-home-hero h1,
.hth-home-hero h2,
.hth-home-system h2,
.hth-route-hero h1 {
  color: #E3E1D9 !important;
}
/* hook-the-horizon-global-brand */
/* Hook the Horizon — global brand shell for all non-home templates. */
:root {
  --hth-navy: #071827;
  --hth-pearl: #E3E1D9;
  --hth-paper: #E3E1D9;
  --hth-gold: #C7A257;
  --hth-lake: #2E6F95;
  --hth-coral: #D55C3E;
  --hth-charcoal: #424546;
  --hth-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --hth-sans: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hth-text-brand {
  display: inline-flex !important;
  align-items: center;
  gap: 0.55rem;
  color: var(--hth-pearl) !important;
  text-decoration: none !important;
}

.hth-text-brand span {
  max-width: 13rem;
  color: inherit !important;
  font-family: var(--hth-serif) !important;
  font-size: clamp(1.1rem, 1.5vw, 1.45rem) !important;
  font-weight: 700 !important;
  line-height: .95 !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
  white-space: normal;
}

.hth-text-brand--footer {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0.2rem !important;
}

.hth-text-brand--footer span:not(.hth-chase-sr-only) {
  max-width: 15rem;
  font-size: clamp(1.55rem, 2.6vw, 2.5rem) !important;
}

.hth-footer-logo {
  display: block !important;
  width: min(140px, 50vw) !important;
  height: auto !important;
  max-height: 40px !important;
  object-fit: contain;
  object-position: left center;
}

/* About / landing brand lockup */
.hth-brand-lockup {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  text-align: center;
  margin: 0 auto 1.5rem;
  max-width: 28rem;
}
.hth-brand-lockup img {
  width: min(320px, 86vw);
  height: auto;
  max-height: 220px;
  object-fit: contain;
}
.hth-brand-lockup__tag {
  margin: 0;
  color: var(--hth-navy, #071827);
  text-decoration: underline;
  text-decoration-color: var(--hth-coral, #D55C3E);
  text-decoration-thickness: .16em;
  text-underline-offset: .22em;
  font-family: var(--hth-sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hth-landing-band .hth-brand-lockup {
  margin-block: 0 1.25rem;
}
.hth-landing-band.is-dark .hth-brand-lockup__tag {
  color: #D55C3E;
}

body:not(.home) {
  background: var(--hth-navy);
  color: var(--hth-pearl);
  font-family: var(--hth-sans);
}

body:not(.home) .wp-site-blocks {
  min-height: 100vh;
  padding: 0;
  background: var(--hth-navy);
}

body:not(.home) .wp-site-blocks > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

body:not(.home) main.hth-shell {
  width: 90%;
  max-width: none;
  margin-inline: auto;
}
@media (max-width: 1024px) {
  body:not(.home) main.hth-shell {
    width: 94%;
  }
}
@media (max-width: 768px) {
  body:not(.home) main.hth-shell {
    width: calc(100% - 1.5rem);
  }
}

/* These headings sit on the navy page ground set at :86 and :94, so painting
 * them navy rendered them invisible on index, archive, 404, search,
 * commercially-caught and the conservation policy page. */
body:not(.home) main.hth-shell > h1,
body:not(.home) main.hth-shell .wp-block-post-title,
body:not(.home) main.hth-shell .wp-block-query-title {
  color: var(--hth-pearl);
  font-family: var(--hth-serif);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

body:not(.home) main.hth-shell a {
  text-underline-offset: .2em;
  text-decoration-thickness: .08em;
}

body:not(.home) main.hth-shell .wp-block-button__link {
  min-height: 44px;
  border-radius: 0;
  background: var(--hth-coral);
  color: #071827;
  font-family: var(--hth-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* The footer owns its Navy surface; it must never borrow the page canvas. */
.hth-chase-footer,
.hth-site-footer {
  background: var(--hth-navy) !important;
  color: var(--hth-pearl);
}

@media (max-width: 780px) {
  .hth-text-brand span {
    font-size: 1.02rem !important;
  }
}

/* --------------------------------------------------------------------------
   SLIM NETWORK FOOTER (August 2026)
   One row of Northern Lantern House publications, one legal line. Replaces
   the three-column footer that was duplicated across parts/footer.html,
   parts/footer-home.html and templates/front-page.html. As of 2026-09-03
   parts/footer.html is the only copy: footer-home.html was deleted and
   front-page.html calls the template part instead of inlining it.
   -------------------------------------------------------------------------- */
.hth-chase-footer--slim {
  display: block;
  padding: 1.6rem clamp(1rem, 3vw, 2.5rem);
}
.hth-chase-footer--slim .hth-chase-footer__row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}
.hth-chase-footer--slim .hth-chase-footer__row a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--hth-pearl, #F4F1EA);
}
.hth-chase-footer--slim .hth-chase-footer__row a:hover,
.hth-chase-footer--slim .hth-chase-footer__row a:focus-visible {
  color: var(--hth-champagne-gold, #C7A257);
}
.hth-chase-footer--slim .hth-chase-footer__legal {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 0.3rem 1.1rem;
  max-width: 80rem;
  margin: 0.85rem auto 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(244, 241, 234, 0.18);
  font-size: 0.7rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: rgba(244, 241, 234, 0.78);
  text-align: center;
}
/* Legal row links were ~18px tall (0.7rem x 1.6 line-height) and sat 1.1rem
   apart, which is under the 24px target-size floor on a 375px screen. */
.hth-chase-footer--slim .hth-chase-footer__legal a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: inherit;
  text-decoration: none;
}
.hth-chase-footer--slim .hth-chase-footer__legal a:hover,
.hth-chase-footer--slim .hth-chase-footer__legal a:focus-visible {
  color: var(--hth-champagne-gold, #C7A257);
}
/* hook-the-horizon-route-system */
/* Hook the Horizon — approved inner-route system.
 * WordPress port companion to Lovable commit d36930b03741d7837cae8df225ce3be6827466ad.
 * Exact ten-color authority only. Loads after home-approved.css.
 */

body:not(.home){margin:0;overflow-x:hidden;background:#071827;color:#E3E1D9;font-family:Montserrat,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif}
body:not(.home) .wp-site-blocks{min-height:100vh;padding:0}
body:not(.home) .wp-site-blocks>*{margin-block-start:0;margin-block-end:0}

.hth-route-main{
  --hth-navy:#071827;--hth-pearl:#E3E1D9;--hth-lake:#2E6F95;--hth-teal:#176F78;
  --hth-coral:#D55C3E;--hth-charcoal:#424546;--hth-forest:#355133;--hth-gold:#C7A257;
  --hth-mist:color-mix(in srgb,#2E6F95 14%,#E3E1D9);--hth-canvas:color-mix(in srgb,#C7A257 18%,#E3E1D9);--hth-display:"Playfair Display",Georgia,serif;
  --hth-body:Montserrat,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  width:100%;max-width:none;margin:0;background:var(--hth-navy);color:var(--hth-pearl);font-family:var(--hth-body);line-height:1.65
}
.hth-route-main *,.hth-route-main *::before,.hth-route-main *::after{box-sizing:border-box}
.hth-route-main img{display:block;max-width:100%;height:auto}
/* Body links sit on the pearl reading surface, where the bright lake blue
 * measures 4.19:1 and fails AA. The -ink variants are the same hues darkened
 * to clear 4.5:1. Links inside the navy hero keep the bright colour. */
.hth-route-main a{color:var(--re-lake-ink,#071827);text-decoration-thickness:.08em;text-underline-offset:.25em}
.hth-route-main a:hover{color:var(--re-teal-ink,#071827)}
.hth-route-hero a,.hth-route-hero a:hover{color:var(--hth-gold)}
.hth-route-main :focus-visible{outline:3px solid var(--hth-gold);outline-offset:4px}
/* Editorial bleed: regular pages run at 88% of the viewport (>=85% brief floor),
 * capped so ultrawide displays do not turn the page into a billboard.
 * Reading measure is enforced on text separately, not by starving the shell. */
.hth-route-shell{width:min(2400px,88%);margin-inline:auto}
/* Gold reads at 7.5:1 on the navy hero and 1.8:1 on the pearl one, so the
 * eyebrow takes its ink from the surface it is actually sitting on. */
.hth-route-eyebrow{margin:0;color:var(--hth-eyebrow-ink,var(--hth-gold));font-size:.68rem;font-weight:800;letter-spacing:.18em;text-transform:uppercase}

/* Cinematic route opening
 * Image layer (::before) is separate from navy wash (::after) so cinema grades
 * can filter the stock frame without tinting title type.
 */
.hth-route-hero{
  --hth-hero-filter:none;
  position:relative;isolation:isolate;display:grid;align-items:end;
  min-height:clamp(30rem,62vh,48rem);overflow:hidden;
  background:var(--hth-navy);color:var(--hth-pearl)
}
/* Gradeable image plate — no negative inset (filters expand paint cost) */
.hth-route-hero::before{
  content:"";position:absolute;inset:0;z-index:0;
  background-image:var(--hth-route-image,linear-gradient(135deg,#2E6F95,#071827));
  background-position:center;background-size:cover;background-repeat:no-repeat;
  filter:var(--hth-hero-filter,none);
  transform:translateZ(0);
  backface-visibility:hidden;
  contain:paint;
  pointer-events:none
}
/* Unfiltered navy wash + gold ornament (type stays pearl) */
.hth-route-hero::after{
  content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background-image:
    /* Vertical ramp: light through the picture, dense only where type sits. */
    linear-gradient(180deg,rgba(7,24,39,.10) 0%,rgba(7,24,39,.18) 36%,rgba(7,24,39,.66) 70%,rgba(7,24,39,.93) 100%),
    /* Reading wedge: holds headline contrast on the type side without
     * flattening the whole frame to a slab. */
    linear-gradient(100deg,rgba(7,24,39,.62) 0%,rgba(7,24,39,.28) 42%,rgba(7,24,39,0) 72%),
    repeating-radial-gradient(ellipse at 88% 92%,transparent 0 2.8rem,#C7A257 2.85rem 2.9rem,transparent 2.95rem 5.8rem);
  background-size:auto,auto,min(62%,42rem) min(58%,28rem);
  background-position:center,center,100% 100%;
  background-repeat:no-repeat;
  opacity:1
}
/* Featured image as the hero's own media plate.
 * A real <img> (srcset + alt) rather than a CSS background: it carries the
 * alternative text, serves a size-appropriate file, and is a valid LCP element.
 * This replaces the second full-width featured-image band that used to sit
 * directly beneath the hero and repeat the same picture. */
.hth-route-hero__media{
  position:absolute;inset:0;z-index:0;margin:0;
  pointer-events:none
}
/* Photographs render at full strength with a restrained vibrancy lift.
 * The old "cinema grade" chain pointed at --hth-css-A..G, which live in
 * assets/cinema-grades.css — a file nothing enqueues — and the two grades that
 * were reachable applied saturate(0.92) and saturate(0.95), i.e. the theme was
 * actively draining colour out of the imagery. */
.hth-route-hero__media img{
  width:100%;height:100%;
  object-fit:cover;object-position:var(--hth-hero-focus,center);
  filter:saturate(1.08) contrast(1.04)
}
/* When a real photograph is present the synthetic gradient plate stands down. */
.hth-route-hero:has(.hth-route-hero__media)::before{background-image:none}
.hth-route-hero__inner{
  position:relative;z-index:2;
  width:min(2400px,88%);
  margin-inline:auto;padding-block:clamp(7rem,13vw,12rem) clamp(3rem,7vw,5.5rem)
}
/* Photo credit rides inside the hero now that the image lives there. */
.hth-route-hero .hth-featured-credit{
  position:absolute;right:clamp(1rem,3vw,2rem);bottom:.7rem;z-index:3;
  margin:0;color:rgba(227,225,217,.6);
  font-size:.62rem;letter-spacing:.09em;text-transform:uppercase
}
.hth-route-hero h1{max-width:15ch;margin:.25rem 0 0;color:var(--hth-pearl);font-family:var(--hth-display);font-size:clamp(3.7rem,8.7vw,8.8rem);font-weight:400;letter-spacing:.005em;line-height:.84;text-transform:uppercase;text-wrap:balance}
.hth-route-hero .wp-block-post-excerpt{max-width:48rem;margin-top:1.5rem;color:rgba(227,225,217,.95);font-size:clamp(1rem,1.7vw,1.25rem)}
.hth-route-hero .wp-block-post-excerpt__excerpt{margin:0;color:inherit}
.hth-route-hero__signal{display:flex;flex-wrap:wrap;gap:1.25rem 2.5rem;margin-top:2.25rem;padding-top:1.25rem;border-top:1px solid rgba(227,225,217,.22);font-size:.66rem;letter-spacing:.14em;text-transform:uppercase}
.hth-route-hero__signal span{color:rgba(227,225,217,.92)}
.hth-route-hero__signal b{color:var(--hth-gold);font-weight:800}

/* Unillustrated hero — a deliberate state, not a gap.
 * Stock photography was removed from the article layer, so most posts now have
 * no featured image. Left alone, the hero would keep photo-frame proportions
 * and sit under a wash built to hold type over a picture: 48rem of empty navy
 * that reads as an image that failed to load. Without a media plate it becomes
 * a title block instead — shorter, with the teal/navy plate and gold ornament
 * still visible through a lighter wash.
 * Route landing pages paint a licensed photograph through ::before even with no
 * featured image, so they are exempted below and keep the full photo hero. */
.hth-route-hero:not(:has(.hth-route-hero__media)){
  min-height:clamp(19rem,36vh,27rem)
}
.hth-route-hero:not(:has(.hth-route-hero__media))::after{opacity:.7}
.hth-route-hero:not(:has(.hth-route-hero__media)) .hth-route-hero__inner{
  padding-block:clamp(3.5rem,8vw,6rem) clamp(2rem,4vw,3rem)
}
body.page-id-117 .hth-route-hero,body.page-id-544 .hth-route-hero,
body.page-id-545 .hth-route-hero,body.page-id-546 .hth-route-hero,
body.page-id-547 .hth-route-hero,body.page-id-206 .hth-route-hero,
body.page-id-81 .hth-route-hero,body.page-id-88 .hth-route-hero,
body.page-id-207 .hth-route-hero,body.page-id-93 .hth-route-hero,
body.page-id-838 .hth-route-hero,body.page-id-1254 .hth-route-hero{
  min-height:clamp(30rem,62vh,48rem)
}
body.page-id-117 .hth-route-hero::after,body.page-id-544 .hth-route-hero::after,
body.page-id-545 .hth-route-hero::after,body.page-id-546 .hth-route-hero::after,
body.page-id-547 .hth-route-hero::after,body.page-id-206 .hth-route-hero::after,
body.page-id-81 .hth-route-hero::after,body.page-id-88 .hth-route-hero::after,
body.page-id-207 .hth-route-hero::after,body.page-id-93 .hth-route-hero::after,
body.page-id-838 .hth-route-hero::after,body.page-id-1254 .hth-route-hero::after{
  opacity:1
}
/* Articles run their own hero system in assets/article-template.css, which is
 * enqueued after this file and selects at a higher specificity
 * (body.hth-article-template .hth-route-hero--article). The three rules above
 * therefore never reached a single post: the height stayed at 48rem, the inner
 * padding stayed at 11rem, and only the wash changed — a lighter wash over the
 * same empty slab, which is worse than leaving it alone. The same is true at
 * phone widths, where assets/css/mobile-responsive.css holds the hero at 58vh.
 * These rules restate the title-block treatment where it can actually win.
 * Route landing pages never carry --article, so their exemption is untouched. */
@media screen and (min-width:768px){
  body.hth-article-template .hth-route-hero--article:not(:has(.hth-route-hero__media)){
    min-height:clamp(19rem,36vh,27rem)!important
  }
  body.hth-article-template .hth-route-hero--article:not(:has(.hth-route-hero__media)) .hth-route-hero__inner{
    padding-block:clamp(3.5rem,8vw,6rem) clamp(2rem,4vw,3rem)!important
  }
}
@media screen and (max-width:767px){
  body.hth-article-template .hth-route-hero--article:not(:has(.hth-route-hero__media)),
  body:not(.home):not(.front-page) .hth-route-hero--article:not(:has(.hth-route-hero__media)){
    min-height:clamp(14rem,34vh,20rem)!important
  }
  body.hth-article-template .hth-route-hero--article:not(:has(.hth-route-hero__media)) .hth-route-hero__inner,
  body:not(.home):not(.front-page) .hth-route-hero--article:not(:has(.hth-route-hero__media)) .hth-route-hero__inner{
    padding-block:clamp(4.75rem,15vw,6rem) clamp(1.5rem,5vw,2rem)!important
  }
}

/* Route media + recipe (perf: CSS filter tokens; SVG fine grade via --hth-hero-filter-fine)
 * A Golden Chase · B Blue Hour · C Open Water · D Species · E Bench · F Signal · G Shore Gold
 */
body.page-id-117{
  --hth-route-image:url("https://hookthehorizon.blog/wp-content/uploads/2026/07/AdobeStock_2050999544-1920x1200.jpeg?crop=1");
  --hth-hero-recipe:A;
  --hth-hero-filter:var(--hth-css-A);
  --hth-hero-filter-fine:var(--hth-svg-A)
}
body.page-id-544{
  --hth-route-image:url("https://hookthehorizon.blog/wp-content/uploads/2026/07/AdobeStock_252706690-960x640.jpeg?crop=1");
  --hth-hero-recipe:B;
  --hth-hero-filter:var(--hth-css-B);
  --hth-hero-filter-fine:var(--hth-svg-B)
}
body.page-id-545{
  --hth-route-image:url("https://hookthehorizon.blog/wp-content/uploads/2026/07/AdobeStock_2100401486-960x640.jpeg?crop=1");
  --hth-hero-recipe:D;
  --hth-hero-filter:var(--hth-css-D);
  --hth-hero-filter-fine:var(--hth-svg-D)
}
body.page-id-546{
  --hth-route-image:url("https://hookthehorizon.blog/wp-content/uploads/2026/07/AdobeStock_2104003758-1920x1200.jpeg?crop=1");
  --hth-hero-recipe:C;
  --hth-hero-filter:var(--hth-css-C);
  --hth-hero-filter-fine:var(--hth-svg-C)
}
body.page-id-547{
  --hth-route-image:url("https://hookthehorizon.blog/wp-content/uploads/2026/07/AdobeStock_133970534-960x640.jpeg?crop=1");
  --hth-hero-recipe:E;
  --hth-hero-filter:var(--hth-css-E);
  --hth-hero-filter-fine:var(--hth-svg-E)
}
body.page-id-206,body.page-id-81,body.page-id-88{
  --hth-route-image:url("https://hookthehorizon.blog/wp-content/uploads/2026/07/AdobeStock_380997587-960x640.jpeg?crop=1");
  --hth-hero-recipe:G;
  --hth-hero-filter:var(--hth-css-G);
  --hth-hero-filter-fine:var(--hth-svg-G)
}
body.page-id-207{
  --hth-route-image:url("https://hookthehorizon.blog/wp-content/uploads/2026/07/AdobeStock_2094468945-1920x1200.jpeg?crop=1");
  --hth-hero-recipe:F;
  --hth-hero-filter:var(--hth-css-F);
  --hth-hero-filter-fine:var(--hth-svg-F)
}
body.page-id-93{
  --hth-route-image:url("https://hookthehorizon.blog/wp-content/uploads/2026/07/AdobeStock_2012768141-1920x1200.jpeg?crop=1");
  --hth-hero-recipe:B;
  --hth-hero-filter:var(--hth-css-B);
  --hth-hero-filter-fine:var(--hth-svg-B)
}
body.page-id-838,body.page-id-1254{
  --hth-route-image:url("https://hookthehorizon.blog/wp-content/uploads/2026/07/AdobeStock_2104003758-1920x1200.jpeg?crop=1");
  --hth-hero-recipe:C;
  --hth-hero-filter:var(--hth-css-C);
  --hth-hero-filter-fine:var(--hth-svg-C)
}
body.post-type-archive-species_profile,body.tax-species{
  --hth-hero-recipe:D;
  --hth-hero-filter:var(--hth-css-D);
  --hth-hero-filter-fine:var(--hth-svg-D);
  --hth-route-image:url("https://hookthehorizon.blog/wp-content/uploads/2026/07/AdobeStock_2100401486-960x640.jpeg?crop=1")
}
body.post-type-archive-water_profile,body.tax-water{
  --hth-hero-recipe:C;
  --hth-hero-filter:var(--hth-css-C);
  --hth-hero-filter-fine:var(--hth-svg-C);
  --hth-route-image:url("https://hookthehorizon.blog/wp-content/uploads/2026/07/AdobeStock_2104003758-1920x1200.jpeg?crop=1")
}
body.post-type-archive-gear_review,body.post-type-archive-hth_gear_verdict{
  --hth-hero-recipe:E;
  --hth-hero-filter:var(--hth-css-E);
  --hth-hero-filter-fine:var(--hth-svg-E);
  --hth-route-image:url("https://hookthehorizon.blog/wp-content/uploads/2026/07/AdobeStock_133970534-960x640.jpeg?crop=1")
}
body.post-type-archive-technique{
  --hth-hero-recipe:G;
  --hth-hero-filter:var(--hth-css-G);
  --hth-hero-filter-fine:var(--hth-svg-G);
  --hth-route-image:url("https://hookthehorizon.blog/wp-content/uploads/2026/07/AdobeStock_380997587-960x640.jpeg?crop=1")
}
body.post-type-archive-hth_field_report,body.post-type-archive-field_report{
  --hth-hero-recipe:B;
  --hth-hero-filter:var(--hth-css-B);
  --hth-hero-filter-fine:var(--hth-svg-B);
  --hth-route-image:url("https://hookthehorizon.blog/wp-content/uploads/2026/07/AdobeStock_252706690-960x640.jpeg?crop=1")
}
body.single:not(.home){
  --hth-hero-recipe:A;
  --hth-hero-filter:var(--hth-css-A);
  --hth-hero-filter-fine:var(--hth-svg-A)
}
body.single-species_profile{--hth-hero-recipe:D;--hth-hero-filter:var(--hth-css-D);--hth-hero-filter-fine:var(--hth-svg-D)}
body.single-water_profile{--hth-hero-recipe:C;--hth-hero-filter:var(--hth-css-C);--hth-hero-filter-fine:var(--hth-svg-C)}
body.single-gear_review,body.single-hth_gear_verdict,body.single-product{--hth-hero-recipe:E;--hth-hero-filter:var(--hth-css-E);--hth-hero-filter-fine:var(--hth-svg-E)}
body.single-technique{--hth-hero-recipe:G;--hth-hero-filter:var(--hth-css-G);--hth-hero-filter-fine:var(--hth-svg-G)}
body.single-hth_field_report,body.single-field_report{--hth-hero-recipe:B;--hth-hero-filter:var(--hth-css-B);--hth-hero-filter-fine:var(--hth-svg-B)}

/* Policy and trust pages use luminous editorial openings rather than stock
 * imagery — a legal page does not need a photograph of a lake.
 * Terms (1234), the editorial/safety disclaimer (1240) and the cookie policy
 * (8027) were omitted from this list, so they fell through to the blue-to-navy
 * gradient plate instead and looked unlike the pages they belong with. */
body.page-id-1 .hth-route-hero,body.page-id-92 .hth-route-hero,body.page-id-100 .hth-route-hero,
body.page-id-101 .hth-route-hero,body.page-id-102 .hth-route-hero,body.page-id-103 .hth-route-hero,
body.page-id-104 .hth-route-hero,body.page-id-105 .hth-route-hero,body.page-id-551 .hth-route-hero,
body.page-id-548 .hth-route-hero,body.page-id-549 .hth-route-hero,
body.page-id-1234 .hth-route-hero,body.page-id-1240 .hth-route-hero,body.page-id-8027 .hth-route-hero{min-height:clamp(24rem,48vh,38rem);background:var(--hth-pearl);color:var(--hth-navy);--hth-eyebrow-ink:var(--re-gold-ink,#071827)}
body.page-id-1 .hth-route-hero::before,body.page-id-92 .hth-route-hero::before,body.page-id-100 .hth-route-hero::before,
body.page-id-101 .hth-route-hero::before,body.page-id-102 .hth-route-hero::before,body.page-id-103 .hth-route-hero::before,
body.page-id-104 .hth-route-hero::before,body.page-id-105 .hth-route-hero::before,body.page-id-551 .hth-route-hero::before,
body.page-id-548 .hth-route-hero::before,body.page-id-549 .hth-route-hero::before,
body.page-id-1234 .hth-route-hero::before,body.page-id-1240 .hth-route-hero::before,body.page-id-8027 .hth-route-hero::before{
  inset:0;filter:none;transform:none;
  background-image:radial-gradient(circle at 82% 20%,rgba(199,162,87,.28),transparent 30%),linear-gradient(135deg,#E3E1D9 0 70%,color-mix(in srgb,#2E6F95 14%,#E3E1D9) 100%)
}
body.page-id-1 .hth-route-hero::after,body.page-id-92 .hth-route-hero::after,body.page-id-100 .hth-route-hero::after,
body.page-id-101 .hth-route-hero::after,body.page-id-102 .hth-route-hero::after,body.page-id-103 .hth-route-hero::after,
body.page-id-104 .hth-route-hero::after,body.page-id-105 .hth-route-hero::after,body.page-id-551 .hth-route-hero::after,
body.page-id-548 .hth-route-hero::after,body.page-id-549 .hth-route-hero::after,
body.page-id-1234 .hth-route-hero::after,body.page-id-1240 .hth-route-hero::after,body.page-id-8027 .hth-route-hero::after{background:none;opacity:0}
body.page-id-1 .hth-route-hero h1,body.page-id-92 .hth-route-hero h1,body.page-id-100 .hth-route-hero h1,
body.page-id-101 .hth-route-hero h1,body.page-id-102 .hth-route-hero h1,body.page-id-103 .hth-route-hero h1,
body.page-id-104 .hth-route-hero h1,body.page-id-105 .hth-route-hero h1,body.page-id-551 .hth-route-hero h1,
body.page-id-548 .hth-route-hero h1,body.page-id-549 .hth-route-hero h1{color:var(--hth-navy)}
body.page-id-1 .hth-route-hero .wp-block-post-excerpt,body.page-id-92 .hth-route-hero .wp-block-post-excerpt,
body.page-id-100 .hth-route-hero .wp-block-post-excerpt,body.page-id-101 .hth-route-hero .wp-block-post-excerpt,
body.page-id-102 .hth-route-hero .wp-block-post-excerpt,body.page-id-103 .hth-route-hero .wp-block-post-excerpt,
body.page-id-104 .hth-route-hero .wp-block-post-excerpt,body.page-id-105 .hth-route-hero .wp-block-post-excerpt,
body.page-id-551 .hth-route-hero .wp-block-post-excerpt,body.page-id-548 .hth-route-hero .wp-block-post-excerpt,
body.page-id-549 .hth-route-hero .wp-block-post-excerpt{color:var(--hth-charcoal)}

/* Orientation / evidence rail */
.hth-route-rail{border-block:1px solid rgba(7,24,39,.18);background:var(--hth-mist);color:var(--hth-navy)}
.hth-route-rail__inner{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1px;background:rgba(7,24,39,.18)}
.hth-route-rail__inner>div{min-height:7rem;padding:1.15rem;background:var(--hth-mist)}
.hth-route-rail span{display:block;font-size:.62rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase}
.hth-route-rail strong{display:block;margin-top:.45rem;color:var(--hth-navy);font-size:.82rem;line-height:1.45}

/* Canonical WordPress content */
/* Content ground carries a shallow tonal shift and a seam under the hero so the
 * page reads as layered surfaces rather than one flat field of pearl. */
.hth-route-content{
  position:relative;
  padding:clamp(4rem,8vw,8rem) 0;
  background:
    linear-gradient(180deg,color-mix(in srgb,var(--hth-mist) 34%,var(--hth-pearl)) 0,var(--hth-pearl) 22rem),
    var(--hth-pearl)
}
.hth-route-content::before{
  content:"";position:absolute;inset-inline:0;top:0;height:1px;
  background:linear-gradient(90deg,transparent,rgba(7,24,39,.22) 18%,rgba(7,24,39,.22) 82%,transparent);
  pointer-events:none
}
/* Default to one clean content rail. Two columns exist only when a real aside is present. */
.hth-route-content__inner{display:block;align-items:start}
.hth-route-content__inner:has(> .hth-route-aside){display:grid;grid-template-columns:minmax(12rem,16rem) minmax(0,1fr);gap:clamp(2rem,4vw,5rem)}
.hth-route-aside{position:sticky;top:2rem;padding:1.25rem;border-top:4px solid var(--hth-lake);background:var(--hth-mist);color:var(--hth-navy)}
.hth-route-aside p{margin:0;font-size:.78rem;line-height:1.55}
.hth-route-aside strong{display:block;margin-bottom:.5rem;font-size:.65rem;letter-spacing:.15em;text-transform:uppercase}
.hth-route-reading{min-width:0;width:100%;max-width:100%;margin:0}
.hth-route-reading>.wp-block-post-content{width:100%;max-width:none;margin:0}
/* Text gets a readable measure; visual/editorial modules keep the full content rail. */
.hth-route-reading .wp-block-post-content>:where(p,ul,ol,blockquote){width:100%;max-width:72ch!important;margin-inline:auto}
.hth-route-reading .wp-block-post-content>:where(h2,h3,h4,h5,h6){width:100%;max-width:72ch!important;margin-inline:auto}
/* Visual and editorial modules use the full widened rail, so the page reads as
 * layered bands rather than one flat ribbon of text. Prose keeps its measure. */
.hth-route-reading .wp-block-post-content>:where(figure,.wp-block-table,.wp-block-columns,.wp-block-group,section,.alignwide){width:100%;max-width:100%!important;margin-inline:auto}
.hth-route-reading .wp-block-post-content>.alignfull{width:100%;max-width:none!important;margin-inline:0}
.hth-route-reading p,.hth-route-reading li{font-size:clamp(1rem,1.25vw,1.12rem);line-height:1.78}
.hth-route-reading h2{max-width:18ch;margin-top:clamp(3rem,7vw,5.5rem);color:var(--hth-navy);font-family:var(--hth-display);font-size:clamp(2.7rem,5.4vw,5.8rem);font-weight:400;line-height:.9;text-transform:uppercase}
.hth-route-reading h3{margin-top:2.5rem;color:var(--hth-navy);font-size:clamp(1.25rem,2vw,1.75rem);line-height:1.15}
.hth-route-reading blockquote{padding:1.5rem 0 1.5rem 1.5rem;border-left:4px solid var(--hth-gold);color:var(--hth-navy);font-size:1.2rem}
.hth-route-reading figure{margin-block:2.5rem}
.hth-route-reading img{width:100%;height:auto}
.hth-route-reading table{width:100%;border-collapse:collapse;background:var(--hth-pearl)}
.hth-route-reading th,.hth-route-reading td{padding:.8rem;border:1px solid rgba(7,24,39,.28);text-align:left;vertical-align:top}
.hth-route-reading th{background:var(--hth-navy);color:var(--hth-pearl);font-size:.7rem;letter-spacing:.1em;text-transform:uppercase}

/* Existing application shells are visually integrated rather than replaced. */
.hth-route-reading .hth-application-embed,.hth-route-reading .hth-hatch-shell,.hth-route-reading .hth-rig-signal{max-width:78rem;padding:0;background:transparent}
.hth-route-reading iframe{display:block;width:100%;max-width:none;border:1px solid rgba(7,24,39,.24);background:var(--hth-pearl)}
.hth-route-reading .hth-application-embed__header,.hth-route-reading .hth-hatch-shell__header,.hth-route-reading .hth-rig-signal__header{padding:2rem;background:var(--hth-canvas);color:var(--hth-navy)}
.hth-route-reading .hth-application-embed__header h2,.hth-route-reading .hth-hatch-shell__header h2,.hth-route-reading .hth-rig-signal__header h2{margin-top:.4rem;font-family:var(--hth-display);font-size:clamp(2.4rem,5vw,5rem);font-weight:400;line-height:.9;text-transform:uppercase}

/* Compatibility Builder direct template */
.hth-route-tool{padding:clamp(3rem,6vw,6rem) 0;background:var(--hth-pearl)}
.hth-route-tool>.hth-route-shell{max-width:1440px}
.hth-route-tool .hth-compatibility-frame,.hth-route-tool iframe{max-width:none}
.hth-route-tool__method{display:grid;grid-template-columns:1.15fr .85fr;gap:1px;margin-top:2rem;background:var(--hth-navy)}
.hth-route-tool__method>div{padding:clamp(1.5rem,4vw,3rem);background:var(--hth-canvas);color:var(--hth-navy)}
.hth-route-tool__method h2{font-family:var(--hth-display);font-size:clamp(2rem,4vw,4rem);font-weight:400;line-height:.9;text-transform:uppercase}

/* Honey Hole keeps its tested contract but receives the approved shell. */
body.page-id-93 .honey-hole-intelligence{width:min(1440px,calc(100% - 2*clamp(1.25rem,4vw,2.5rem)));margin:0 auto;padding:clamp(3rem,7vw,7rem) 0;background:var(--hth-pearl);color:var(--hth-navy);font-family:var(--hth-body)}
body.page-id-93 .honey-hole-intelligence__header{padding:clamp(2rem,5vw,4rem);border:0;background:var(--hth-navy);color:var(--hth-pearl)}
body.page-id-93 .honey-hole-intelligence__header h1{margin:.35rem 0 1rem;color:var(--hth-pearl);font-family:var(--hth-display);font-size:clamp(3rem,7vw,7rem);font-weight:400;line-height:.86;text-transform:uppercase}
body.page-id-93 .hhi-boundary,body.page-id-93 .hhi-runtime,body.page-id-93 #hhi-form,body.page-id-93 #hhi-status,body.page-id-93 #hhi-result{margin-inline:clamp(1rem,5vw,4rem)}

/* Compatibility Builder application frame */
.hth-route-tool .hth-application-embed{max-width:none;margin:0;background:transparent}
.hth-route-tool .hth-application-embed__header{padding:clamp(1.5rem,4vw,3rem);background:var(--hth-canvas);color:var(--hth-navy)}
.hth-route-tool .hth-application-embed__header h2{margin:.4rem 0 1rem;font-family:var(--hth-display);font-size:clamp(2.6rem,5vw,5.4rem);font-weight:400;line-height:.88;text-transform:uppercase}
.hth-route-tool .hth-application-embed__frame-wrap{background:var(--hth-navy);padding:1px}
.hth-route-tool .hth-application-embed__frame{display:block;width:100%;max-width:none;border:0;background:var(--hth-pearl)}

/* Honey Hole Intelligence is supplied by the content plugin and receives a
 * full visual port here without changing its verified data contract. */
body.page-id-93 main.hth-shell{width:100%!important;max-width:none!important;margin:0!important;padding:0!important;background:linear-gradient(180deg,rgba(7,24,39,.38),rgba(7,24,39,.92) 30rem,#E3E1D9 30rem),url("https://hookthehorizon.blog/wp-content/uploads/2026/07/AdobeStock_2104003758-1920x1200.jpeg?crop=1") center top/100% 30rem no-repeat;color:var(--hth-charcoal)}
body.page-id-93 main.hth-shell>.hth-kicker,body.page-id-93 main.hth-shell>h1,body.page-id-93 main.hth-shell>h1+p{position:relative;z-index:1;width:min(1440px,calc(100% - 2*clamp(1.25rem,4vw,2.5rem)));margin-inline:auto;color:var(--hth-pearl)}
body.page-id-93 main.hth-shell>.hth-kicker{padding-top:clamp(7rem,12vw,10rem);color:var(--hth-gold)}
body.page-id-93 main.hth-shell>h1{max-width:12ch;margin-top:.35rem;font-family:var(--hth-display);font-size:clamp(3.8rem,8vw,8rem);font-weight:400;line-height:.84;text-transform:uppercase}
body.page-id-93 main.hth-shell>h1+p{max-width:48rem;margin-top:1.25rem;font-size:clamp(1rem,1.7vw,1.25rem);line-height:1.6}
body.page-id-93 main.hth-shell>br{display:block;height:clamp(4rem,8vw,7rem);content:""}
body.page-id-93 .hth-hhi{width:min(1440px,calc(100% - 2*clamp(1.25rem,4vw,2.5rem)))!important;max-width:none!important;margin:0 auto!important;padding-bottom:clamp(4rem,8vw,8rem);color:var(--hth-navy);font-family:var(--hth-body)}
body.page-id-93 .hth-hhi>h2{margin:0;font-family:var(--hth-display);font-size:clamp(3rem,6vw,6rem);font-weight:400;line-height:.9;text-transform:uppercase}
/* HHI tool shell mirrors Restaurant/Venue Intelligence: equal cards, airy filters, site palette. */
body.page-id-93 .hth-hhi-live{margin:2rem 0!important;padding:1.35rem 1.45rem!important;border:1px solid rgba(7,24,39,.2)!important;border-radius:0!important;background:linear-gradient(180deg,color-mix(in srgb,var(--hth-mist) 70%,#E3E1D9),var(--hth-pearl));color:var(--hth-navy);box-shadow:0 20px 55px -48px rgba(7,24,39,.45)}
body.page-id-93 .hth-hhi-live h2{margin:0 0 .65rem;font-family:var(--hth-display);font-size:clamp(1.9rem,3.2vw,2.8rem);font-weight:400;line-height:.96;letter-spacing:-.02em;text-transform:uppercase}
body.page-id-93 .hth-hhi-live form{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem;align-items:end}
body.page-id-93 .hth-hhi label{display:block;min-width:0;font-size:.62rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--hth-navy)}
body.page-id-93 .hth-hhi input,body.page-id-93 .hth-hhi select,body.page-id-93 .hth-hhi button{width:100%;min-height:44px;margin-top:.45rem;padding:.7rem .8rem;border-radius:0!important;border:1px solid rgba(7,24,39,.28)!important;background:var(--hth-pearl)!important;color:var(--hth-navy)!important;font:inherit}
body.page-id-93 .hth-hhi button{background:var(--hth-navy)!important;color:var(--hth-pearl)!important;border-color:var(--hth-navy)!important;font-size:.66rem;font-weight:800;letter-spacing:.09em;text-transform:uppercase;cursor:pointer}
body.page-id-93 .hth-hhi__filters{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem;align-items:end;margin:1.5rem 0 1rem;padding:1.25rem 1.35rem;border:1px solid rgba(7,24,39,.18);background:var(--hth-pearl);box-shadow:0 20px 55px -48px rgba(7,24,39,.4)}
body.page-id-93 .hth-hhi__grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:1.25rem!important;align-items:stretch;margin-top:1.35rem!important}
body.page-id-93 .hth-hhi__card{position:relative;display:flex;flex-direction:column;grid-column:auto!important;min-width:0;min-height:22rem;margin-top:0!important;padding:1.45rem!important;border:1px solid rgba(7,24,39,.18)!important;border-top:5px solid var(--hth-lake)!important;border-radius:0!important;background:var(--hth-pearl)!important;color:var(--hth-navy)!important;box-shadow:0 24px 70px -58px rgba(7,24,39,.55);overflow:hidden}
body.page-id-93 .hth-hhi__card:nth-child(3n+2){border-top-color:var(--hth-teal)!important}
body.page-id-93 .hth-hhi__card:nth-child(3n+3){border-top-color:var(--hth-gold)!important}
body.page-id-93 .hth-hhi__card:nth-child(3n+1){border-top-color:var(--hth-forest)!important}
body.page-id-93 .hth-hhi__card h3{margin:0 0 .55rem;max-width:none;font-family:var(--hth-display);font-size:clamp(1.65rem,2.4vw,2.35rem);font-weight:400;line-height:.98;letter-spacing:-.03em;text-transform:none}
body.page-id-93 .hth-hhi__card>p{margin:0 0 .7rem;font-size:.94rem;line-height:1.5}
body.page-id-93 .hth-hhi__status{display:inline-flex;align-self:flex-start;margin:0 0 .85rem;padding:.45rem .58rem;background:color-mix(in srgb,var(--hth-mist) 55%,#E3E1D9);font-size:.56rem;font-weight:800;letter-spacing:.06em;line-height:1.25;text-transform:uppercase}
body.page-id-93 .hth-hhi__card h4{margin:1rem 0 .4rem;font-size:.62rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:color-mix(in srgb,var(--hth-navy) 72%,var(--hth-lake))}
body.page-id-93 .hth-hhi__card ul{margin:.15rem 0 .55rem;padding-left:1.1rem;font-size:.9rem;line-height:1.45}
body.page-id-93 .hth-hhi__card li+li{margin-top:.28rem}
body.page-id-93 .hth-hhi__card a,body.page-id-93 .hth-hhi__card .hth-hhi__planner-handoff{margin-top:auto;font-size:.62rem;font-weight:800;letter-spacing:.07em;text-transform:uppercase}
body.page-id-93 .hth-hhi__card a{color:var(--hth-lake);font-weight:800}
body.page-id-93 .hth-hhi__planner-handoff{display:inline-flex;align-items:center;justify-content:center;min-height:2.75rem;margin-top:.85rem;padding:.7rem .95rem;border:1px solid var(--hth-navy);background:var(--hth-navy);color:var(--hth-pearl);cursor:pointer}
body.page-id-93 .hhi-enhanced__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.25rem}
body.page-id-93 .hhi-enhanced__card{min-height:20rem;padding:1.45rem 1.35rem;border:1px solid rgba(7,24,39,.18);border-radius:0;border-top:5px solid var(--hth-lake);background:var(--hth-pearl);box-shadow:0 24px 70px -58px rgba(7,24,39,.55)}
body.page-id-93 .hhi-enhanced__card.is-stop{border-top-color:#D55C3E}
body.page-id-93 .hhi-enhanced__card.is-verify{border-top-color:var(--hth-gold)}
body.page-id-93 .hhi-enhanced__card.is-prepare{border-top-color:var(--hth-teal)}
body.page-id-93 .hhi-enhanced__filters{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem;align-items:end;padding:1.25rem 1.35rem;border:1px solid rgba(7,24,39,.18);background:var(--hth-pearl);box-shadow:0 20px 55px -48px rgba(7,24,39,.4)}

.hth-search-results .wp-block-post-template{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:1rem;padding:0;list-style:none}
.hth-search-results .wp-block-post{grid-column:span 4;padding:1.25rem;border-top:4px solid var(--hth-lake);background:color-mix(in srgb,var(--hth-mist) 28%,var(--hth-pearl))}
.hth-search-results .wp-block-post:nth-child(1){grid-column:span 8}
.hth-search-results .wp-block-post:nth-child(2){grid-column:span 4;margin-top:3rem;border-color:var(--hth-gold)}
.hth-search-results .wp-block-post-title{font-family:var(--hth-display);font-size:clamp(1.8rem,3vw,3rem);font-weight:400;line-height:.92;text-transform:uppercase}

/* Canonical single, archive, taxonomy, attachment, and fallback families. */
.hth-route-main--single .hth-route-hero{min-height:clamp(28rem,58vh,44rem)}
.hth-route-meta{gap:.75rem 1.5rem;margin-top:1.5rem;color:rgba(227,225,217,.92);font-size:.7rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase}
.hth-route-featured{margin:0;background:var(--hth-navy)}
.hth-route-featured img{width:100%;max-height:72vh;object-fit:cover}
.hth-route-main--single .hth-route-content__inner{display:block}
.hth-route-main--single .hth-route-reading{margin-inline:auto}
.hth-route-main--archive .hth-route-hero{min-height:clamp(24rem,48vh,38rem)}
.hth-route-content--archive{padding-top:clamp(3rem,6vw,6rem)}
.hth-route-query .wp-block-post-template,.hth-route-grid{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:1.25rem;padding:0;list-style:none}
.hth-route-query .wp-block-post{grid-column:span 4;margin:0}
.hth-route-card{height:100%;padding:1.25rem;border-top:5px solid var(--hth-lake);background:color-mix(in srgb,var(--hth-mist) 28%,var(--hth-pearl))}
.hth-route-query .wp-block-post:nth-child(3n+2) .hth-route-card{border-color:var(--hth-gold)}
.hth-route-query .wp-block-post:nth-child(3n+3) .hth-route-card{border-color:var(--hth-teal)}
.hth-route-card .wp-block-post-title{margin:.75rem 0 .5rem;font-family:var(--hth-display);font-size:clamp(2rem,3.4vw,3.5rem);font-weight:400;line-height:.9;text-transform:uppercase}
.hth-route-card .wp-block-post-date,.hth-route-card__terms{font-size:.68rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase}
.hth-route-query .wp-block-query-pagination{margin-top:3rem;padding-top:1.25rem;border-top:1px solid rgba(7,24,39,.25)}

/* Normalized family aliases and commerce/result surfaces. */
.hth-route-single .hth-route-hero{min-height:clamp(28rem,58vh,44rem)}
.hth-route-single .hth-route-content__inner{grid-template-columns:minmax(0,1fr) minmax(0,3fr)}
.hth-route-archive .hth-route-hero{min-height:clamp(24rem,48vh,38rem)}
.hth-route-archive-grid .wp-block-post-template{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:1.25rem;padding:0;list-style:none}
.hth-route-archive-grid .wp-block-post{grid-column:span 4;margin:0}
.hth-route-archive-grid .wp-block-post:nth-child(3n+2) .hth-route-card{border-color:var(--hth-gold)}
.hth-route-archive-grid .wp-block-post:nth-child(3n+3) .hth-route-card{border-color:var(--hth-teal)}
.hth-route-archive-grid .wp-block-query-pagination{margin-top:3rem;padding-top:1.25rem;border-top:1px solid rgba(7,24,39,.25)}
.hth-commerce-route .hth-route-hero{min-height:clamp(22rem,42vh,34rem)}
.hth-commerce{padding:clamp(3rem,7vw,7rem) 0;background:var(--hth-pearl);color:var(--hth-navy)}
.hth-commerce .woocommerce,.hth-commerce .wc-block-cart,.hth-commerce .wc-block-checkout,.hth-commerce .wp-block-woocommerce-product-collection{width:100%;max-width:none}
.hth-commerce input,.hth-commerce select,.hth-commerce textarea{border-radius:0;border:1px solid rgba(7,24,39,.45);background:#E3E1D9;color:var(--hth-navy)}
.hth-commerce button,.hth-commerce .button,.hth-commerce .wp-element-button{border-radius:0;background:var(--hth-navy);color:var(--hth-pearl);font-weight:800;letter-spacing:.08em;text-transform:uppercase}
.hth-route-result .hth-route-reading{max-width:78rem}

@media(max-width:1120px){
  body.page-id-93 .hth-hhi__grid,body.page-id-93 .hhi-enhanced__grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
  body.page-id-93 .hth-hhi__filters,body.page-id-93 .hth-hhi-live form,body.page-id-93 .hhi-enhanced__filters{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:900px){
  .hth-route-rail__inner{grid-template-columns:1fr 1fr}
  .hth-route-content__inner,
  .hth-route-content__inner:has(> .hth-route-aside),
  .hth-route-single .hth-route-content__inner{
    display:block!important;
    grid-template-columns:1fr!important;
  }
  .hth-route-aside{position:static!important;width:100%!important;max-width:none!important}
  .hth-route-tool__method{grid-template-columns:1fr}
  .hth-search-results .wp-block-post-template{grid-template-columns:1fr 1fr!important}
  .hth-search-results .wp-block-post,.hth-search-results .wp-block-post:nth-child(1),.hth-search-results .wp-block-post:nth-child(2){grid-column:auto;margin-top:0}
}
@media(max-width:767px){
  .hth-route-hero{min-height:clamp(18rem,52vh,28rem)!important}
  .hth-route-hero h1{font-size:clamp(2.35rem,11.5vw,3.6rem)!important;max-width:12ch}
  .hth-route-hero__signal{display:grid;grid-template-columns:1fr;gap:.85rem 1rem}
  .hth-route-rail__inner{grid-template-columns:1fr}
  .hth-route-content{padding:2.25rem 0 3rem}
  .hth-route-reading h2{font-size:clamp(1.85rem,9.5vw,2.75rem)!important;max-width:14ch}
  .hth-route-shell{width:calc(100% - 1.5rem)!important;max-width:none!important}
  .hth-route-hero__inner{width:calc(100% - 1.5rem)!important;padding-block:clamp(5rem,16vw,7rem) clamp(1.5rem,5vw,2.5rem)!important}
  .hth-route-query .wp-block-post-template,
  .hth-route-grid,
  .hth-route-archive-grid .wp-block-post-template,
  .hth-search-results .wp-block-post-template{grid-template-columns:1fr!important}
  .hth-route-query .wp-block-post,
  .hth-search-results .wp-block-post,
  .hth-route-archive-grid .wp-block-post{grid-column:auto!important;margin-top:0!important}
  body.page-id-93 main.hth-shell{background-size:auto 28rem}
  body.page-id-93 main.hth-shell>.hth-kicker{padding-top:5rem}
  body.page-id-93 .hth-hhi__grid,body.page-id-93 .hhi-enhanced__grid,.hth-search-results .wp-block-post-template{grid-template-columns:1fr!important}
  body.page-id-93 .hth-hhi__filters,body.page-id-93 .hth-hhi-live form,body.page-id-93 .hhi-enhanced__filters{grid-template-columns:1fr}
  body.page-id-93 .hth-hhi__card,body.page-id-93 .hhi-enhanced__card{min-height:0}
}
/* Publication body parity with homepage tokens */
.hth-pub-body{
  color:#355133;
  font-size:1.05rem;
  line-height:1.7
}
.hth-pub-body h2,
.hth-pub-body h3{
  font-family:"Playfair Display",Georgia,serif;
  color:#071827;
  text-transform:none;
  letter-spacing:-.02em;
  line-height:1.15
}
.hth-pub-body .hth-warning,
.hth-route-main .hth-warning{
  margin:2rem 0;
  padding:1.1rem 1.25rem;
  border-left:3px solid #C7A257;
  background:rgba(7,24,39,.06)
}
.hth-tool-shell .hth-route-hero h1{
  max-width:18ch;
  text-transform:none
}
body:not(.home) .hth-chase-header{
  position:relative;
  z-index:40;
  background:#071827;
  color:#E3E1D9
}

/* Contrast contract: route, application, archive, and commerce surfaces. */
.hth-route-hero,
.hth-route-hero *{color:var(--hth-pearl)}
.hth-route-hero .hth-route-eyebrow,
.hth-route-hero__signal b{color:var(--hth-gold)}
.hth-route-hero .wp-block-post-excerpt,
.hth-route-hero .wp-block-post-excerpt *{color:rgba(227,225,217,.90)}

body.page-id-1 .hth-route-hero *,body.page-id-92 .hth-route-hero *,body.page-id-100 .hth-route-hero *,
body.page-id-101 .hth-route-hero *,body.page-id-102 .hth-route-hero *,body.page-id-103 .hth-route-hero *,
body.page-id-104 .hth-route-hero *,body.page-id-105 .hth-route-hero *,body.page-id-551 .hth-route-hero *,
body.page-id-548 .hth-route-hero *,body.page-id-549 .hth-route-hero *{color:var(--hth-navy)}
body.page-id-1 .hth-route-hero .wp-block-post-excerpt,body.page-id-92 .hth-route-hero .wp-block-post-excerpt,
body.page-id-100 .hth-route-hero .wp-block-post-excerpt,body.page-id-101 .hth-route-hero .wp-block-post-excerpt,
body.page-id-102 .hth-route-hero .wp-block-post-excerpt,body.page-id-103 .hth-route-hero .wp-block-post-excerpt,
body.page-id-104 .hth-route-hero .wp-block-post-excerpt,body.page-id-105 .hth-route-hero .wp-block-post-excerpt,
body.page-id-551 .hth-route-hero .wp-block-post-excerpt,body.page-id-548 .hth-route-hero .wp-block-post-excerpt,
body.page-id-549 .hth-route-hero .wp-block-post-excerpt{color:var(--hth-charcoal)}
body.page-id-1 .hth-route-hero .hth-route-eyebrow,body.page-id-92 .hth-route-hero .hth-route-eyebrow,
body.page-id-100 .hth-route-hero .hth-route-eyebrow,body.page-id-101 .hth-route-hero .hth-route-eyebrow,
body.page-id-102 .hth-route-hero .hth-route-eyebrow,body.page-id-103 .hth-route-hero .hth-route-eyebrow,
body.page-id-104 .hth-route-hero .hth-route-eyebrow,body.page-id-105 .hth-route-hero .hth-route-eyebrow,
body.page-id-551 .hth-route-hero .hth-route-eyebrow,body.page-id-548 .hth-route-hero .hth-route-eyebrow,
body.page-id-549 .hth-route-hero .hth-route-eyebrow{color:var(--hth-navy)}

.hth-route-rail,
.hth-route-rail *{color:var(--hth-navy)}
.hth-route-aside,
.hth-route-aside *{color:var(--hth-navy)}
.hth-route-tool__method>div,
.hth-route-tool__method>div *,
.hth-route-tool .hth-application-embed__header,
.hth-route-tool .hth-application-embed__header *{color:var(--hth-navy)}

.hth-route-card,
.hth-route-card *,
.hth-search-results .wp-block-post,
.hth-search-results .wp-block-post *{color:var(--hth-navy)}
.hth-route-card a,
.hth-search-results .wp-block-post a{color:var(--hth-lake)}

body.page-id-93 .honey-hole-intelligence__header,
body.page-id-93 .honey-hole-intelligence__header *{color:var(--hth-pearl)}
body.page-id-93 .honey-hole-intelligence__header .hth-route-eyebrow{color:var(--hth-gold)}
body.page-id-93 .hth-hhi__card,
body.page-id-93 .hth-hhi__card *,
body.page-id-93 .hhi-enhanced__card,
body.page-id-93 .hhi-enhanced__card *{color:var(--hth-navy)}
body.page-id-93 .hth-hhi__card a{color:var(--hth-lake)}
body.page-id-93 .hth-hhi__planner-handoff,
body.page-id-93 .hth-hhi__planner-handoff *{color:var(--hth-pearl)}

.hth-commerce,
.hth-commerce *{color:var(--hth-navy)}
.hth-commerce button,.hth-commerce .button,.hth-commerce .wp-element-button,
.hth-commerce button *,.hth-commerce .button *,.hth-commerce .wp-element-button *{color:var(--hth-pearl)}
.hth-commerce input,.hth-commerce select,.hth-commerce textarea{color:var(--hth-navy)}

@media(prefers-reduced-motion:reduce){.hth-route-main *,.hth-route-main *::before,.hth-route-main *::after{animation:none!important;transition:none!important;scroll-behavior:auto!important}}
@media(forced-colors:active){.hth-route-hero::before,.hth-route-hero::after{display:none}.hth-route-hero,.hth-route-rail,.hth-route-aside{border:2px solid CanvasText;background:Canvas!important;color:CanvasText!important}}
@media print{
  .hth-route-hero{min-height:auto;background:#E3E1D9!important;color:#071827!important}
  .hth-route-hero::before,.hth-route-hero::after,.hth-route-rail,.hth-route-aside{display:none!important}
  .hth-route-hero__inner,.hth-route-content{padding:1rem 0}
  .hth-route-hero h1{color:#071827!important;font-size:3rem}
  .hth-route-content__inner{display:block}
  .hth-route-reading .wp-block-post-content>*{max-width:none}
}
/* hook-text-display-standard */
/* Text Display Standard v1.0 — Hook the Horizon
   Base type floors: root scale, body size, article measure, wrapping safety.

   2026-09-03: everything scoped to `.hth-home-*` / `.hth-homepage` was removed.
   Those classes belong to the retired home.css / home-v2.css front page; the
   live front page is `.hth-rs-*` and no published post, page, template or part
   contains a single `.hth-home-*` node. The `.hook-nav` rules went with the
   deleted nav fallback. File went 3.0 KB -> 0.9 KB; nothing it still sets was
   being applied to a rendered element by the removed blocks. */

:root {
  --tds-ui: 1rem;
  --tds-meta: 0.875rem;
  --tds-body: 1.125rem;
  --hth-navy: #071827;
  --hth-pearl: #E3E1D9;
  --hth-gold: #C7A257;
  --hth-gold-on-light: #071827;
  --hth-coral: #D55C3E;
  --hth-paper: #E3E1D9;
}

html { font-size: 100%; }
body {
  font-size: var(--tds-body);
  line-height: 1.65;
}

/* Core navigation block, wherever it is used, keeps a 16px floor. */
.wp-block-navigation-item__content {
  font-size: var(--tds-ui) !important;
  line-height: 1.3 !important;
  opacity: 1 !important;
}

/* Body copy */
.entry-content p,
.article-content p {
  font-size: clamp(1.0625rem, 1rem + 0.2vw, 1.2rem);
  line-height: 1.7;
  max-width: 68ch;
}

body :where(h1, h2, h3, h4, p, a, button, li) {
  overflow-wrap: break-word;
}
img, video, svg { max-width: 100%; height: auto; }
/* hook-the-horizon-article-template */
/* Hook the Horizon article-template system.
 * Loads after typography-normalization.css and owns the shared article
 * hierarchy, hero, navigation, trust notes, application handoff, and related reading.
 */

body.hth-article-template .hth-route-main--single{
  background:var(--hth-navy);
}

body.hth-article-template .hth-route-hero--article{
  position:relative;
  isolation:isolate;
  display:grid;
  align-items:end;
  min-height:clamp(30rem,68vh,48rem);
  overflow:hidden;
  background:var(--hth-navy);
  color:var(--hth-pearl);
}

body.hth-article-template .hth-route-hero--article>.hth-route-hero__media{
  position:absolute;
  inset:0;
  z-index:0;
  width:100%;
  height:100%;
  margin:0;
}

body.hth-article-template .hth-route-hero--article>.hth-route-hero__media img{
  width:100%;
  height:100%;
  max-height:none;
  object-fit:cover;
  object-position:center;
}

body.hth-article-template .hth-route-hero--article::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(180deg,rgba(7,24,39,.16) 0%,rgba(7,24,39,.44) 42%,rgba(7,24,39,.94) 100%),
    linear-gradient(90deg,rgba(7,24,39,.74) 0%,rgba(7,24,39,.18) 58%,rgba(7,24,39,.08) 100%);
}

/* Species Intelligence hero: crop for the fish/body plane, then use a neutral
   navy/teal wash so labels remain readable without recoloring identification cues. */
body.single-species_profile.hth-article-template .hth-route-hero--article>.hth-route-hero__media img,
body.hth-species-intelligence-single.hth-article-template .hth-route-hero--article>.hth-route-hero__media img{
  object-position:center 44%;
  transform:scale(1.012) translateZ(0);
  transform-origin:center;
}

body.single-species_profile.hth-article-template .hth-route-hero--article::before,
body.hth-species-intelligence-single.hth-article-template .hth-route-hero--article::before{
  background:
    linear-gradient(180deg,rgba(7,24,39,.10) 0%,rgba(7,24,39,.34) 42%,rgba(7,24,39,.93) 100%),
    linear-gradient(90deg,rgba(7,24,39,.80) 0%,rgba(7,24,39,.28) 52%,rgba(23,111,120,.08) 100%),
    radial-gradient(circle at 76% 32%,rgba(199,162,87,.07),transparent 30%);
}

/* Legacy Species Intelligence posts keep the standard single template. Layer its
   existing featured-image block into the hero instead of duplicating media markup. */
body.hth-species-intelligence-single.hth-article-template .hth-route-main--single{
  display:grid;
  grid-template-columns:minmax(0,1fr);
}
body.hth-species-intelligence-single.hth-article-template .hth-route-hero--article,
body.hth-species-intelligence-single.hth-article-template .hth-route-main--single>.hth-route-featured{
  grid-column:1;
  grid-row:1;
}
body.hth-species-intelligence-single.hth-article-template .hth-route-hero--article{
  z-index:1;
  background:transparent;
}
body.hth-species-intelligence-single.hth-article-template .hth-route-main--single>.hth-route-featured{
  position:relative;
  z-index:0;
  width:100%;
  height:clamp(30rem,68vh,48rem);
  margin:0;
  aspect-ratio:auto!important;
  overflow:hidden;
  background:var(--hth-navy);
}
body.hth-species-intelligence-single.hth-article-template .hth-route-main--single>.hth-route-featured img{
  width:100%!important;
  height:100%!important;
  max-height:none!important;
  object-fit:cover!important;
  object-position:center 44%!important;
  filter:var(--hth-hero-filter, var(--hth-css-D));
  transform:scale(1.012) translateZ(0);
  transform-origin:center;
}
body.hth-species-intelligence-single.hth-article-template .hth-route-main--single>.hth-route-featured:has(img[src*="species-illustration"]),
body.hth-species-intelligence-single.hth-article-template .hth-route-main--single>.hth-route-featured:has(img[src*="species-reference"]){
  background:#E3E1D9;
}
body.hth-species-intelligence-single.hth-article-template .hth-route-main--single>.hth-route-featured img[src*="species-illustration"],
body.hth-species-intelligence-single.hth-article-template .hth-route-main--single>.hth-route-featured img[src*="species-reference"]{
  object-fit:contain!important;
  object-position:center!important;
  padding:1rem;
  filter:none;
  transform:none;
}

body.hth-article-template .hth-route-hero--article::after{
  z-index:1;
  opacity:.16;
}

body.hth-article-template .hth-route-hero--article .hth-route-hero__inner{
  position:relative;
  z-index:2;
  padding-block:clamp(7rem,13vw,11rem) clamp(2.5rem,6vw,4.75rem);
}

body.hth-article-template .hth-route-hero--article h1.wp-block-post-title{
  max-width:14ch;
  margin:.25rem 0 0;
  color:var(--hth-pearl);
  font-family:var(--hth-display);
  font-size:clamp(3.2rem,6.8vw,6.8rem)!important;
  font-weight:400;
  letter-spacing:-.012em!important;
  line-height:.92!important;
  text-transform:none;
  text-wrap:balance;
}

body.hth-article-template .hth-route-hero--article .wp-block-post-excerpt{
  max-width:46rem;
  margin-top:1.25rem;
  color:rgba(227,225,217,.92);
  font-size:clamp(1.05rem,1.45vw,1.28rem)!important;
  line-height:1.6!important;
}

body.hth-article-template .hth-route-hero--article .wp-block-post-excerpt p{
  max-width:none;
  margin:0;
  color:inherit;
  font-size:inherit!important;
  line-height:inherit!important;
}

.hth-article-meta{
  display:flex;
  flex-wrap:wrap;
  gap:.65rem 1.4rem;
  margin-top:1.4rem;
  padding-top:1rem;
  border-top:1px solid rgba(227,225,217,.28);
  color:rgba(227,225,217,.86);
  font-size:.76rem;
  font-weight:600;
  letter-spacing:.08em;
  line-height:1.45;
  text-transform:uppercase;
}

.hth-article-meta__item{
  display:inline-flex;
  gap:.35rem;
  align-items:baseline;
}

.hth-article-meta__item b{
  color:var(--hth-gold);
  font-weight:800;
}

.hth-featured-credit{
  width:fit-content;
  max-width:min(42rem,100%);
  margin:1.15rem 0 0;
  padding:.48rem .68rem;
  background:rgba(7,24,39,.72);
  color:rgba(227,225,217,.9);
  font-size:.72rem!important;
  letter-spacing:.035em!important;
  line-height:1.45!important;
}

body.hth-article-template .hth-route-content{
  padding:clamp(3.25rem,7vw,7rem) 0;
}

body.hth-article-template .hth-route-reading{
  /* Full shell width — no thin Gutenberg column */
  width:100%;
  max-width:none;
  margin-inline:auto;
}

/* Desktop: article left, sticky TOC right */
@media (min-width: 1100px){
  body.hth-article-template .hth-route-reading:has(.hth-article-toc){
    display:grid!important;
    grid-template-columns:minmax(0,1fr) minmax(15rem,18rem)!important;
    gap:clamp(1.75rem,3vw,2.75rem)!important;
    align-items:start!important;
    width:100%!important;
    max-width:100%!important;
  }
  body.hth-article-template .hth-route-reading:has(.hth-article-toc) > .hth-article-toc{
    grid-column:2!important;
    grid-row:1!important;
    position:sticky!important;
    top:5.5rem!important;
    width:100%!important;
    max-width:none!important;
    margin:0!important;
    max-height:calc(100vh - 6.5rem);
    overflow:auto;
    scrollbar-width:thin;
    align-self:start!important;
    z-index:2;
  }
  body.hth-article-template .hth-route-reading:has(.hth-article-toc) > .wp-block-post-content,
  body.hth-article-template .hth-route-reading:has(.hth-article-toc) > .entry-content{
    grid-column:1!important;
    grid-row:1!important;
    min-width:0;
  }
  body.hth-article-template .hth-route-reading:has(.hth-article-toc) .hth-article-toc ol{
    columns:1!important;
    column-gap:0!important;
  }
  body.hth-article-template .hth-route-reading:has(.hth-article-toc) .hth-article-toc__toggle{
    display:none!important;
  }
  /* Allow sticky: avoid clipping ancestors on article templates */
  body.hth-article-template .hth-route-main,
  body.hth-article-template .hth-route-content{
    overflow:visible;
  }
}

body.hth-article-template .hth-route-reading>.wp-block-post-content{
  width:100%;
  max-width:none;
  margin:0;
}

/* Children fill the 80vw reading column set by style.css. */
body.hth-article-template .hth-route-reading .wp-block-post-content>*{
  width:100%;
  max-width:100%!important;
  margin-inline:0;
}

body.hth-article-template .hth-route-reading .wp-block-post-content>.alignfull,
body.hth-article-template .hth-route-reading .wp-block-post-content>.alignwide{
  width:100%;
  max-width:100%!important;
}

body.hth-article-template .hth-route-reading .wp-block-post-content>h2{
  scroll-margin-top:2rem;
}

body.hth-article-template .hth-route-reading h2,
body.hth-article-template .hth-article-handoff h2,
body.hth-article-template .hth-article-notes h2,
body.hth-article-template .hth-related-reading h2{
  color:var(--hth-pearl);
  font-family:var(--hth-display);
  font-size:clamp(2.15rem,3.75vw,3.9rem)!important;
  font-weight:400;
  letter-spacing:-.012em!important;
  line-height:1!important;
  text-transform:none;
  text-wrap:balance;
}

body.hth-article-template .hth-route-reading .wp-block-post-content>h2{
  max-width:22ch;
  margin-top:clamp(3rem,6vw,5rem);
}

body.hth-article-template .hth-route-reading h3{
  font-size:clamp(1.35rem,1.9vw,1.8rem)!important;
  line-height:1.2!important;
}

body.hth-article-template .hth-route-reading p,
body.hth-article-template .hth-route-reading li{
  font-size:clamp(1.04rem,1rem + .16vw,1.15rem)!important;
  line-height:1.78!important;
}

.hth-article-toc{
  width:min(100%,80vw);
  max-width:min(100%,80vw);
  margin:0 auto clamp(3rem,6vw,5rem);
  padding:1.35rem 1.5rem 1.45rem;
  border-top:5px solid var(--hth-lake);
  background:color-mix(in srgb,var(--hth-mist) 32%,var(--hth-pearl));
  color:var(--hth-navy);
  box-sizing:border-box;
}

.hth-article-toc__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}

.hth-article-toc__label,
.hth-article-handoff__eyebrow,
.hth-article-notes__eyebrow,
.hth-related-reading__eyebrow,
.hth-related-card__eyebrow{
  margin:0;
  /* These eyebrows sit on the light card grounds (#E3E1D9 / #E3E1D9 /
   * #D8D3C8 / #E3E1D9), where the bright teal measures 3.93-4.48:1 and fails
   * AA at 11px/800. The ink variant clears 4.65:1 on all of them. */
  color:var(--re-teal-ink,#071827);
  font-size:.72rem!important;
  font-weight:800;
  letter-spacing:.14em!important;
  line-height:1.45!important;
  text-transform:uppercase;
}

/* Present only so wpautop sees a block tag around the button. It must not
 * become a layout box of its own. */
.hth-article-toc__actions{display:contents}
.hth-article-toc__toggle{
  display:none;
  align-items:center;
  gap:.55rem;
  min-height:44px;
  padding:.4rem 0 .4rem .75rem;
  border:0;
  background:transparent;
  color:var(--hth-navy);
  font:700 .72rem/1.3 var(--hth-ui);
  letter-spacing:.06em;
  text-transform:uppercase;
  cursor:pointer;
}

.hth-article-toc__toggle svg{
  width:.8rem;
  transition:transform .2s ease;
}

.hth-article-toc ol{
  columns:2;
  column-gap:2.5rem;
  margin:1rem 0 0;
  padding-left:1.2rem;
}

.hth-article-toc li{
  break-inside:avoid;
  margin:.35rem 0;
  padding-right:.8rem;
  font-size:.94rem!important;
  line-height:1.45!important;
}

/* TOC entries are the primary in-article navigation and become a single
 * column on mobile. As bare inline links they computed to roughly 22px tall
 * with ~6px between them; padding gives them a real hit area. */
.hth-article-toc a{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding-block:.3rem;
  color:var(--hth-navy);
}
@media (pointer: coarse){
  .hth-article-toc a{min-height:44px}
  .hth-article-toc li{margin:.1rem 0}
}

.hth-article-handoff,
.hth-article-notes,
.hth-related-reading{
  width:min(100%,80vw);
  max-width:min(100%,80vw);
  margin:clamp(4rem,8vw,7rem) auto 0;
}

.hth-article-handoff{
  position:relative;
  overflow:hidden;
  padding:clamp(1.75rem,4vw,3.25rem);
  background:linear-gradient(135deg,var(--hth-navy),color-mix(in srgb,var(--hth-teal) 42%,var(--hth-navy)));
  color:var(--hth-pearl);
}

.hth-article-handoff::after{
  content:"";
  position:absolute;
  right:-5rem;
  bottom:-8rem;
  width:18rem;
  height:18rem;
  border:1px solid rgba(199,162,87,.5);
  border-radius:50%;
  box-shadow:0 0 0 3rem rgba(199,162,87,.08),0 0 0 6rem rgba(199,162,87,.05);
}

.hth-article-handoff>*{
  position:relative;
  z-index:1;
}

body.hth-article-template .hth-article-handoff h2{
  max-width:13ch;
  margin:.45rem 0 1.4rem;
  color:var(--hth-pearl);
}

.hth-article-handoff__eyebrow{
  color:var(--hth-gold);
}

.hth-article-handoff__link{
  display:inline-flex;
  align-items:center;
  min-height:44px;
  padding:.78rem 1rem;
  border:1px solid var(--hth-gold);
  background:var(--hth-gold);
  color:var(--hth-navy)!important;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.08em;
  text-decoration:none;
  text-transform:uppercase;
}

.hth-article-notes{
  padding:clamp(1.5rem,4vw,2.75rem);
  border:1px solid rgba(7,24,39,.22);
  background:color-mix(in srgb,var(--hth-canvas) 18%,var(--hth-pearl));
}

body.hth-article-template .hth-article-notes h2,
body.hth-article-template .hth-related-reading h2{
  max-width:16ch;
  margin:.35rem 0 1.6rem;
}

.hth-article-notes dl{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1px;
  margin:0;
  background:rgba(7,24,39,.16);
}

.hth-article-notes dl>div{
  min-width:0;
  padding:1rem 1.1rem;
  background:var(--hth-pearl);
}

.hth-article-notes dt{
  margin-bottom:.45rem;
  color:var(--re-teal-ink,#071827);
  font-size:.68rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.hth-article-notes dd{
  margin:0;
  color:var(--hth-charcoal);
  font-size:.92rem;
  line-height:1.6;
}

.hth-related-reading{
  padding-top:clamp(2rem,5vw,4rem);
  border-top:1px solid rgba(7,24,39,.24);
}

.hth-related-reading__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
}

.hth-related-card{
  min-width:0;
  padding:1.25rem;
  border-top:5px solid var(--hth-lake);
  background:color-mix(in srgb,var(--hth-mist) 28%,var(--hth-pearl));
}

.hth-related-card:nth-child(2){border-color:var(--hth-gold)}
.hth-related-card:nth-child(3){border-color:var(--hth-teal)}

.hth-related-card h3{
  margin:.55rem 0 .75rem;
  color:var(--hth-navy);
  font-family:var(--hth-display);
  font-size:clamp(1.75rem,2.7vw,2.65rem)!important;
  font-weight:400;
  letter-spacing:-.01em!important;
  line-height:1!important;
  text-transform:none;
}

.hth-related-card h3 a{
  color:inherit;
  text-decoration:none;
}

.hth-related-card>p:last-child{
  margin:0;
  color:var(--hth-charcoal);
  font-size:.94rem!important;
  line-height:1.58!important;
}

body.hth-article-template .sharedaddy,
body.hth-article-template .sd-sharing-enabled{
  display:none!important;
}

@media(max-width:900px){
  .hth-related-reading__grid{
    grid-template-columns:1fr;
  }
  .hth-article-notes dl{
    grid-template-columns:1fr;
  }
}

@media(max-width:767px){
  body.hth-article-template .hth-route-hero--article{
    min-height:auto;
  }
  body.hth-article-template .hth-route-hero--article .hth-route-hero__inner{
    padding-block:7rem 2.25rem;
  }
  body.hth-article-template .hth-route-hero--article h1.wp-block-post-title{
    max-width:15ch;
    font-size:clamp(2.65rem,12vw,4.35rem)!important;
    line-height:.96!important;
  }
  body.hth-article-template .hth-route-hero--article .wp-block-post-excerpt{
    font-size:1rem!important;
  }
  .hth-article-meta{
    display:grid;
    grid-template-columns:1fr;
    gap:.42rem;
  }
  .hth-featured-credit{
    font-size:.68rem!important;
  }
  body.hth-article-template .hth-route-content{
    padding:2.75rem 0;
  }
  .hth-article-toc{
    margin-bottom:3rem;
    padding:1.05rem 1.15rem 1.15rem;
  }
  html.hth-article-js .hth-article-toc__toggle{
    display:inline-flex;
  }
  .hth-article-toc__toggle[aria-expanded="true"] svg{
    transform:rotate(180deg);
  }
  .hth-article-toc__panel[hidden]{
    display:none;
  }
  .hth-article-toc ol{
    columns:1;
    margin-top:.8rem;
  }
  body.hth-article-template .hth-route-reading h2,
  body.hth-article-template .hth-article-handoff h2,
  body.hth-article-template .hth-article-notes h2,
  body.hth-article-template .hth-related-reading h2{
    font-size:clamp(2rem,10.5vw,3.1rem)!important;
    line-height:1.02!important;
  }
  .hth-article-handoff,
  .hth-article-notes,
  .hth-related-reading{
    margin-top:3.5rem;
  }
}

/* Canonical editorial measure: readable prose inside a wide component rail. */
body.hth-article-template{
  --wp--style--global--content-size:min(72ch,100%);
  --wp--style--global--wide-size:min(72rem,100%);
}
body.hth-article-template .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){
  max-width:min(72ch,100%)!important;
}
body.hth-article-template .hth-route-shell.hth-route-content__inner{
  width:min(var(--hth-shell-max,1440px),calc(100% - (2 * var(--hth-shell-gutter,clamp(1rem,4vw,3rem)))));
  max-width:var(--hth-shell-max,1440px);
}
body.hth-article-template .hth-route-reading .hth-field-modules,
body.hth-article-template .hth-route-reading .hth-editorial-prose,
body.hth-article-template .hth-route-reading .hth-species-profile{
  width:100%;
  max-width:72rem;
  margin-inline:auto;
}

.hth-knot-reference-depth{
  margin:2rem 0 0;
  border:1px solid rgba(7,24,39,.16);
  background:#F4F2EC;
}
.hth-knot-reference-depth>summary{
  display:grid;
  gap:.35rem;
  min-height:58px;
  padding:1rem 1.15rem;
  cursor:pointer;
  background:#071827;
  color:#fff;
}
.hth-knot-reference-depth>summary span{font-weight:800;letter-spacing:.04em}
.hth-knot-reference-depth>summary small{max-width:760px;color:#E3E1D9;line-height:1.45}
.hth-knot-reference-depth>summary:focus-visible{outline:3px solid #C7A257;outline-offset:3px}
.hth-knot-reference-depth__body{padding:clamp(1.1rem,3vw,2rem)}

@media print{
  /* Anyone printing an article is taking it somewhere the site cannot follow —
   * usually a boat or a bank with no signal. The one thing a paper copy cannot
   * do is stay current, so the printed version says so. Screen readers and
   * on-screen readers never see this; it exists only on paper. */
  body.hth-article-template .hth-route-reading .wp-block-post-content::after{
    content:"Printed from Hook the Horizon. Paper does not update — check the current rules, access and conditions before you go.";
    display:block;
    margin-top:2rem;
    padding-top:.75rem;
    border-top:1px solid #071827;
    font-size:9.5pt;
    font-style:italic;
  }
  body.hth-article-template .hth-route-hero--article{
    min-height:auto;
    background:#E3E1D9!important;
    color:#071827!important;
  }
  body.hth-article-template .hth-route-hero--article>.hth-route-hero__media,
  body.hth-article-template .hth-route-hero--article::before,
  body.hth-article-template .hth-route-hero--article::after,
  .hth-article-toc,
  .hth-related-reading{
    display:none!important;
  }
  body.hth-article-template .hth-route-hero--article h1.wp-block-post-title,
  body.hth-article-template .hth-route-hero--article .wp-block-post-excerpt,
  .hth-article-meta{
    color:#071827!important;
  }
  .hth-article-handoff{
    background:#E3E1D9!important;
    color:#071827!important;
    border:1px solid #071827;
  }
}
/* hook-the-horizon-field-handoff */
/* Hook the Horizon — the editorial → instrument handoff.
 *
 * Deliberately quieter than the old gold-button band. This is a marginal note
 * that happens to contain a link, not a call to action: the reader should be
 * able to read it and decline. Colours are drawn from the route-system tokens
 * with literal fallbacks so the block also renders correctly if it is used
 * outside the article template.
 */

.hth-field-handoff{
  --hthh-ink:var(--hth-navy,#071827);
  --hthh-paper:var(--hth-pearl,#E3E1D9);
  --hthh-rule:var(--hth-teal,#176F78);
  --hthh-accent:var(--hth-gold,#C7A257);
  --hthh-quiet:var(--hth-charcoal,#424546);

  box-sizing:border-box;
  margin:clamp(3rem,6vw,5rem) auto 0;
  padding:clamp(1.4rem,3vw,2.1rem) clamp(1.4rem,3vw,2.4rem);
  border:1px solid color-mix(in srgb,var(--hthh-ink) 16%,transparent);
  border-left:4px solid var(--hthh-rule);
  background:color-mix(in srgb,var(--hth-canvas,#dcd6c4) 34%,var(--hthh-paper));
  color:var(--hthh-ink);
  font-family:var(--hth-body,Montserrat,system-ui,sans-serif);
}

.hth-field-handoff > *{
  margin:0;
}

.hth-field-handoff__eyebrow{
  color:var(--hthh-rule);
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.16em;
  line-height:1.2;
  text-transform:uppercase;
}

.hth-field-handoff__tool{
  margin-top:.35rem!important;
  font-size:clamp(1.15rem,2.2vw,1.4rem);
  font-weight:700;
  letter-spacing:.01em;
  line-height:1.2;
}

/* The question the instrument answers, straight from the manifest. */
.hth-field-handoff__answers{
  margin-top:.3rem!important;
  max-width:60ch;
  color:var(--hthh-quiet);
  font-size:.9rem;
  font-style:italic;
  line-height:1.5;
}

/* The condition under which opening it is worth it. This is the sentence that
 * carries the placement; everything else is chrome. */
.hth-field-handoff__when{
  margin-top:.95rem!important;
  max-width:66ch;
  font-size:clamp(.98rem,1.5vw,1.06rem);
  line-height:1.62;
}

.hth-field-handoff__act{
  margin-top:1.05rem!important;
}

.hth-field-handoff__link{
  display:inline-block;
  padding-bottom:.16rem;
  border-bottom:2px solid var(--hthh-accent);
  color:var(--hthh-ink)!important;
  font-size:.95rem;
  font-weight:600;
  line-height:1.45;
  text-decoration:none;
}

.hth-field-handoff__link::after{
  content:" \2192";
  white-space:nowrap;
}

.hth-field-handoff__link:hover,
.hth-field-handoff__link:focus-visible{
  border-bottom-color:var(--hthh-rule);
  color:var(--hthh-ink)!important;
}

.hth-field-handoff__link:focus-visible{
  outline:3px solid var(--re-focus-core,#071827);
  outline-offset:3px;
}

.hth-field-handoff__fine{
  margin-top:.95rem!important;
  max-width:62ch;
  color:var(--hthh-quiet);
  font-size:.76rem;
  line-height:1.5;
}

/* Touch target floor. */
@media (max-width:781px){
  .hth-field-handoff__link{
    min-height:44px;
    padding-top:.55rem;
    padding-bottom:.5rem;
  }
}

/* Dark article surfaces (fleet-bleed interiors and the dark palettes) invert
 * the card rather than punching a light rectangle into a dark page. */
[data-theme="dark"] .hth-field-handoff,
body.fleet-bleed-interior:not(.hth-pearl-canvas) .hth-field-handoff{
  border-color:color-mix(in srgb,var(--hth-pearl,#E3E1D9) 22%,transparent);
  border-left-color:var(--hthh-accent);
  background:color-mix(in srgb,var(--hth-pearl,#E3E1D9) 7%,var(--hth-navy,#071827));
  color:var(--hth-pearl,#E3E1D9);
}

[data-theme="dark"] .hth-field-handoff__eyebrow,
body.fleet-bleed-interior:not(.hth-pearl-canvas) .hth-field-handoff__eyebrow{
  color:var(--hthh-accent);
}

[data-theme="dark"] .hth-field-handoff__answers,
[data-theme="dark"] .hth-field-handoff__fine,
body.fleet-bleed-interior:not(.hth-pearl-canvas) .hth-field-handoff__answers,
body.fleet-bleed-interior:not(.hth-pearl-canvas) .hth-field-handoff__fine{
  color:color-mix(in srgb,var(--hth-pearl,#E3E1D9) 78%,transparent);
}

[data-theme="dark"] .hth-field-handoff__link,
body.fleet-bleed-interior:not(.hth-pearl-canvas) .hth-field-handoff__link{
  color:var(--hth-pearl,#E3E1D9)!important;
}

[data-theme="dark"] .hth-field-handoff__link:focus-visible,
body.fleet-bleed-interior:not(.hth-pearl-canvas) .hth-field-handoff__link:focus-visible{
  outline-color:var(--hthh-accent);
}

/* Cold-water immersion note. Sober, high contrast, prints. It is the one block
 * on the page that should still be readable on paper. */
.hth-cold-water-note{
  box-sizing:border-box;
  margin:clamp(2.4rem,5vw,3.6rem) auto;
  padding:clamp(1.3rem,3vw,1.9rem) clamp(1.3rem,3vw,2.1rem);
  border:1px solid color-mix(in srgb,var(--hth-navy,#071827) 24%,transparent);
  border-left:5px solid var(--hth-navy,#071827);
  background:color-mix(in srgb,var(--hth-pearl,#E3E1D9) 55%,#fff);
  color:var(--hth-navy,#071827);
  font-family:var(--hth-body,Montserrat,system-ui,sans-serif);
}
.hth-cold-water-note h2{
  margin:0 0 .7rem;
  font-size:clamp(1.1rem,2.1vw,1.35rem);
  line-height:1.25;
}
.hth-cold-water-note p{
  max-width:66ch;
  margin:0 0 .85rem;
  font-size:clamp(.97rem,1.5vw,1.05rem);
  line-height:1.62;
}
.hth-cold-water-note p:last-child{margin-bottom:0}
.hth-cold-water-note__source{
  font-size:.82rem!important;
  line-height:1.5;
}
.hth-cold-water-note a{
  color:inherit;
  text-decoration:underline;
  text-underline-offset:.18em;
}
.hth-cold-water-note a:focus-visible{
  outline:3px solid var(--re-focus-core,#071827);
  outline-offset:3px;
}
@media (max-width:781px){
  .hth-cold-water-note a{
    display:inline-block;
    min-height:44px;
    padding-top:.5rem;
    padding-bottom:.5rem;
  }
}
[data-theme="dark"] .hth-cold-water-note,
body.fleet-bleed-interior:not(.hth-pearl-canvas) .hth-cold-water-note{
  border-color:color-mix(in srgb,var(--hth-pearl,#E3E1D9) 30%,transparent);
  border-left-color:var(--hth-pearl,#E3E1D9);
  background:color-mix(in srgb,var(--hth-pearl,#E3E1D9) 9%,var(--hth-navy,#071827));
  color:var(--hth-pearl,#E3E1D9);
}
@media print{
  .hth-cold-water-note{
    border-left-width:3px;
    background:none;
  }
}

/* The "opens in a new tab" cue. Announced, never drawn. */
.hth-field-handoff .screen-reader-text{
  position:absolute!important;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  clip-path:inset(50%);
  white-space:nowrap;
  border:0;
}

/* A link block is dead weight on paper. */
@media print{
  .hth-field-handoff{
    display:none!important;
  }
}
/* hook-the-horizon-field-modules */
/**
 * Hook the Horizon — Shared Field Modules
 * Version: 1.0.0
 *
 * PURPOSE
 *   Reusable visual modules that carry the same craft level as the species-profile
 *   gold standard into knots, field notes, long-form intelligence articles, and
 *   other non-homepage content.
 *
 *   These modules deliberately share the same visual grammar (surface hierarchy,
 *   accent borders, tracked labels, elevated cards, numbered memory blocks,
 *   boundary boxes) without forcing every content type into a species dossier layout.
 *
 * USAGE
 *   Wrap a module group in .hth-field-modules (or use individual classes directly).
 *   Enqueue this file on singular posts/pages that need the modules, or load it
 *   globally for article templates once the system is stable.
 *
 * GOVERNANCE
 *   Same ten-color Hook palette. Deep Navy + Pearl dominant. Accents never carry
 *   meaning alone.
 */

.hth-field-modules {
  --fm-navy: #071827;
  --fm-pearl: #E3E1D9;
  --fm-blue: #2E6F95;
  --fm-teal: #176F78;
  --fm-charcoal: #424546;
  --fm-green: #355133;
  --fm-coral: #D55C3E;
  --fm-gold: #C7A257;
  --fm-mist: color-mix(in srgb,#2E6F95 14%,#E3E1D9);
  --fm-canvas: color-mix(in srgb,#C7A257 18%,#E3E1D9);
}

/* ------------------------------------------------------------------
   SIGNAL GRID
   Compact 2–4 column quick facts. Use after a lede or inside a dark opener.
   ------------------------------------------------------------------ */
.hth-fm-signal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 0.55rem;
  margin: 1.25rem 0;
}

.hth-fm-signal > div {
  min-height: 5.5rem;
  padding: 0.8rem;
  border-top: 2px solid var(--fm-gold);
  background: rgba(7, 24, 39, 0.04);
}

.hth-fm-signal b {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--fm-gold);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hth-fm-signal span {
  color: var(--fm-charcoal);
  font-size: 0.88rem;
  line-height: 1.4;
}

/* Dark-surface variant (inside a navy section) */
[data-surface="dark"] .hth-fm-signal > div,
.hth-fm-signal--dark > div {
  background: rgba(227,225,217, 0.06);
}

[data-surface="dark"] .hth-fm-signal span,
.hth-fm-signal--dark span {
  color: #E3E1D9;
}

/* ------------------------------------------------------------------
   ELEVATED CARDS
   ------------------------------------------------------------------ */
.hth-fm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 0.7rem;
  margin: 1rem 0;
}

.hth-fm-card {
  position: relative;
  overflow: visible;
  min-height: 0;
  height: auto;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(7, 24, 39, 0.13);
  background: linear-gradient(145deg, #E3E1D9, #E3E1D9);
  box-shadow: 0 8px 22px rgba(7, 24, 39, 0.055);
}

.hth-fm-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border-top: 3px solid var(--fm-blue);
}

.hth-fm-card:nth-child(2):before { border-color: var(--fm-teal); }
.hth-fm-card:nth-child(3):before { border-color: var(--fm-gold); }
.hth-fm-card:nth-child(4):before { border-color: var(--fm-coral); }
.hth-fm-card:nth-child(5):before { border-color: var(--fm-green); }

.hth-fm-card h3 {
  margin: 0.15rem 0 0.4rem;
  color: var(--fm-navy);
  font-size: 1rem;
  line-height: 1.2;
}

.hth-fm-card p {
  margin: 0;
  color: var(--fm-charcoal);
  font-size: 0.88rem;
  line-height: 1.55;
}

@media (prefers-reduced-motion: no-preference) {
  .hth-fm-card {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }
  .hth-fm-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(7, 24, 39, 0.1);
  }
}

/* ------------------------------------------------------------------
   LEFT-BORDER BAND (2-column comparison / tactics / steps)
   ------------------------------------------------------------------ */
.hth-fm-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 0.8rem;
  margin: 1rem 0;
}

.hth-fm-band > * {
  padding: 1rem 1.05rem;
  border-left: 3px solid var(--fm-blue);
  background: rgba(46, 111, 149, 0.06);
}

.hth-fm-band > *:nth-child(2) {
  border-left-color: var(--fm-gold);
  background: rgba(199, 162, 87, 0.075);
}

.hth-fm-band > *:nth-child(3) {
  border-left-color: var(--fm-teal);
  background: rgba(23, 111, 120, 0.07);
}

.hth-fm-band h3 {
  margin: 0.1rem 0 0.4rem;
  color: var(--fm-navy);
}

.hth-fm-band p {
  margin: 0.3rem 0;
  color: var(--fm-charcoal);
  line-height: 1.58;
}

/* ------------------------------------------------------------------
   CALLOUT / SCIENCE / NOTE
   ------------------------------------------------------------------ */
.hth-fm-callout {
  margin: 1.25rem 0;
  padding: 1.15rem 1.25rem 1.15rem 1.5rem;
  border-left: 4px solid var(--fm-coral);
  background: linear-gradient(100deg, rgba(213, 92, 62, 0.08), rgba(227, 225, 217, 0.3));
}

.hth-fm-callout--teal {
  border-left-color: var(--fm-teal);
  background: linear-gradient(100deg, rgba(23, 111, 120, 0.08), rgba(227, 225, 217, 0.3));
}

.hth-fm-callout--gold {
  border-left-color: var(--fm-gold);
  background: linear-gradient(100deg, rgba(199, 162, 87, 0.1), rgba(227, 225, 217, 0.3));
}

.hth-fm-callout__label {
  margin: 0 0 0.35rem;
  color: var(--fm-coral);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hth-fm-callout--teal .hth-fm-callout__label { color: var(--fm-teal); }
.hth-fm-callout--gold .hth-fm-callout__label { color: var(--fm-gold); }

.hth-fm-callout p {
  margin: 0.35rem 0;
  color: var(--fm-charcoal);
  line-height: 1.62;
}

/* ------------------------------------------------------------------
   NUMBERED MEMORY BLOCKS
   ------------------------------------------------------------------ */
.hth-fm-remember {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 0.6rem;
  margin: 1.25rem 0;
  counter-reset: remember;
}

.hth-fm-remember > div {
  counter-increment: remember;
  position: relative;
  padding: 1rem 1rem 1rem 3.2rem;
  background: var(--fm-navy);
  color: var(--fm-pearl);
}

.hth-fm-remember > div:before {
  content: counter(remember);
  position: absolute;
  left: 1rem;
  top: 0.9rem;
  color: var(--fm-gold);
  font-family: var(--wp--preset--font-family--display, "Bebas Neue", sans-serif);
  font-size: 1.7rem;
  line-height: 1;
}

.hth-fm-remember p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ------------------------------------------------------------------
   BOUNDARY / STOP / REGULATION
   ------------------------------------------------------------------ */
.hth-fm-boundary {
  margin: 1.25rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(213, 92, 62, 0.24);
  background: rgba(213, 92, 62, 0.06);
}

.hth-fm-boundary strong {
  color: var(--fm-coral);
}

.hth-fm-boundary p {
  margin: 0.35rem 0;
  color: var(--fm-charcoal);
  line-height: 1.6;
}

/* ------------------------------------------------------------------
   RELATED / DEEPER GUIDE
   ------------------------------------------------------------------ */
.hth-fm-related {
  margin: 1.25rem 0;
  padding: 1.05rem;
  border: 1px solid rgba(23, 111, 120, 0.2);
  background: rgba(23, 111, 120, 0.06);
}

.hth-fm-related a {
  font-weight: 800;
  color: var(--fm-teal);
}

/* ------------------------------------------------------------------
   KICKER / EYEBROW
   ------------------------------------------------------------------ */
.hth-fm-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fm-gold);
}

.hth-fm-kicker span {
  padding: 0.25rem 0.4rem;
  border: 1px solid rgba(199, 162, 87, 0.45);
  background: rgba(199, 162, 87, 0.08);
}

/* ------------------------------------------------------------------
   UTILITY LABEL
   ------------------------------------------------------------------ */
.hth-fm-label {
  margin: 0 0 0.35rem;
  color: var(--fm-teal);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
/* hook-the-horizon-editorial-layouts */
/* Hook the Horizon field canvas. The homepage is intentionally excluded. */
body:not(.home):not(.front-page) {
  --hth-reading: 46rem;
  --hth-intelligence: min(78rem, calc(100vw - 3rem));
  --hth-structural: min(96rem, calc(100vw - 2rem));
  --hth-gutter: clamp(1rem, 3vw, 2.5rem);
  --hth-section: clamp(3.5rem, 8vw, 8rem);
  --hth-navy: #071827;
  --hth-pearl: #e3e1d9;
  --hth-blue: #2e6f95;
  --hth-teal: #176f78;
  --hth-coral: #d55c3e;
  --hth-gold: #c7a257;
  --hth-mist: color-mix(in srgb,#2E6F95 14%,#E3E1D9);
  --hth-canvas: color-mix(in srgb,#C7A257 18%,#E3E1D9);
}

body:not(.home):not(.front-page) .entry-content,
body:not(.home):not(.front-page) .wp-block-post-content,
body:not(.home):not(.front-page) .hth-field-canvas {
  overflow: clip;
}

body:not(.home):not(.front-page) .entry-content > :where(:not(.alignwide):not(.alignfull):not(.hth-breakout)),
body:not(.home):not(.front-page) .wp-block-post-content > :where(:not(.alignwide):not(.alignfull):not(.hth-breakout)) {
  width: min(var(--hth-reading), calc(100% - 2rem));
  margin-inline: auto;
}

body:not(.home):not(.front-page) .entry-content > .alignwide,
body:not(.home):not(.front-page) .wp-block-post-content > .alignwide,
body:not(.home):not(.front-page) .hth-field-canvas > .alignwide {
  width: var(--hth-intelligence);
  max-width: none;
  margin-inline: auto;
}

body:not(.home):not(.front-page) .entry-content > .alignfull,
body:not(.home):not(.front-page) .wp-block-post-content > .alignfull,
body:not(.home):not(.front-page) .hth-field-canvas > .alignfull {
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
}

body:not(.home):not(.front-page) .hth-breakout {
  width: min(58rem, calc(100% - 2rem));
  margin-inline: auto;
  transform: translateX(clamp(0rem, 4vw, 5rem));
}

body:not(.home):not(.front-page) .hth-field-canvas,
body:not(.home):not(.front-page) .hth-archetype-canvas {
  background: var(--hth-navy);
  color: var(--hth-pearl);
}

body:not(.home):not(.front-page) .hth-field-label {
  margin: 0 0 .8rem;
  color: var(--hth-teal);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

body:not(.home):not(.front-page) .hth-density-open-water {
  padding-block: clamp(5rem, 12vw, 10rem);
}

body:not(.home):not(.front-page) .hth-density-field-active {
  padding-block: clamp(3rem, 7vw, 6rem);
}

body:not(.home):not(.front-page) .hth-density-intelligence-dense {
  padding: clamp(2rem, 5vw, 4rem);
}

body:not(.home):not(.front-page) .hth-horizon-hero {
  position: relative;
  isolation: isolate;
  color: var(--hth-pearl);
}

body:not(.home):not(.front-page) .hth-horizon-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-radial-gradient(ellipse at 50% 120%, transparent 0 20px, rgba(46,111,149,.18) 21px 22px, transparent 23px 38px),
    linear-gradient(to top, rgba(7,24,39,.78), transparent);
}

body:not(.home):not(.front-page) .hth-horizon-hero .wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
  width: min(var(--hth-structural), calc(100% - 2rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--hth-gutter);
  align-items: end;
}

body:not(.home):not(.front-page) .hth-horizon-hero .hth-field-label,
body:not(.home):not(.front-page) .hth-horizon-hero h1,
body:not(.home):not(.front-page) .hth-horizon-hero .hth-hero-premise {
  grid-column: 2 / span 8;
}

body:not(.home):not(.front-page) .hth-horizon-hero h1 {
  margin: 0;
  color: var(--hth-pearl);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  text-wrap: balance;
}

body:not(.home):not(.front-page) .hth-hero-premise {
  max-width: 44rem;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.45;
}

body:not(.home):not(.front-page) .hth-field-brief,
body:not(.home):not(.front-page) .hth-species-intelligence,
body:not(.home):not(.front-page) .hth-structure-reading,
body:not(.home):not(.front-page) .hth-gear-system,
body:not(.home):not(.front-page) .hth-decision-point,
body:not(.home):not(.front-page) .hth-source-trust-block {
  border-top: 1px solid rgba(7,24,39,.16);
}

body:not(.home):not(.front-page) .hth-field-brief > h2,
body:not(.home):not(.front-page) .hth-structure-reading > h2,
body:not(.home):not(.front-page) .hth-gear-system > h2 {
  max-width: 16ch;
  font-size: clamp(1.9rem, 3.3vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -.016em;
}

body:not(.home):not(.front-page) .hth-field-rule,
body:not(.home):not(.front-page) .hth-privacy-note {
  padding: 1rem 1.25rem;
  border-left: .25rem solid var(--hth-coral);
  background: rgba(213,92,62,.08);
}

body:not(.home):not(.front-page) :where(.hth-data-grid,.hth-condition-grid,.hth-pattern-grid,.hth-readiness-grid,.hth-ledger-row) {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1px;
  background: rgba(227,225,217,.22);
  border: 1px solid rgba(227,225,217,.22);
}

body:not(.home):not(.front-page) :where(.hth-data-grid,.hth-condition-grid,.hth-pattern-grid,.hth-readiness-grid,.hth-ledger-row) > * {
  grid-column: span 4;
  margin: 0;
  padding: 1.2rem;
  background: rgba(7,24,39,.96);
  color: var(--hth-pearl);
}

body:not(.home):not(.front-page) .hth-waterbody-profile,
body:not(.home):not(.front-page) .hth-pattern-breakdown,
body:not(.home):not(.front-page) .hth-trip-readiness,
body:not(.home):not(.front-page) .hth-catch-ledger {
  background: var(--hth-navy);
  color: var(--hth-pearl);
}

body:not(.home):not(.front-page) :where(.hth-waterbody-profile,.hth-pattern-breakdown,.hth-trip-readiness,.hth-catch-ledger) h2 {
  color: var(--hth-pearl);
}

body:not(.home):not(.front-page) .hth-conditions-board {
  background:
    linear-gradient(115deg, rgba(7,24,39,.98), rgba(46,111,149,.92)),
    repeating-linear-gradient(0deg, transparent 0 25px, rgba(46,111,149,.1) 26px 27px);
  color: var(--hth-pearl);
  padding-inline: max(var(--hth-gutter), calc((100vw - 78rem) / 2));
}

body:not(.home):not(.front-page) .hth-conditions-board h2 {
  color: var(--hth-pearl);
  max-width: 12ch;
}

body:not(.home):not(.front-page) .hth-source-line,
body:not(.home):not(.front-page) .hth-readiness-status {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(227,225,217,.35);
  font-size: .9rem;
}

body:not(.home):not(.front-page) .hth-map-access {
  background: #071827;
  color: var(--hth-pearl);
  padding-inline: max(var(--hth-gutter), calc((100vw - 96rem) / 2));
}

body:not(.home):not(.front-page) .hth-map-stage {
  min-height: clamp(24rem, 55vw, 42rem);
  display: grid;
  place-items: center;
  border: 1px solid rgba(46,111,149,.4);
  background:
    radial-gradient(circle at 30% 30%, rgba(46,111,149,.35), transparent 34%),
    repeating-radial-gradient(ellipse at 50% 50%, transparent 0 30px, rgba(46,111,149,.22) 31px 32px, transparent 33px 48px),
    linear-gradient(135deg, #071827, #071827);
}

body:not(.home):not(.front-page) .hth-map-stage p {
  max-width: 28rem;
  padding: 1.25rem;
  background: rgba(7,24,39,.82);
}

body:not(.home):not(.front-page) .hth-technique-sequence {
  background: #071827;
  color: var(--hth-pearl);
  padding-inline: max(var(--hth-gutter), calc((100vw - 78rem) / 2));
}

body:not(.home):not(.front-page) .hth-technique-sequence h2 {
  color: var(--hth-pearl);
}

body:not(.home):not(.front-page) .hth-sequence-rail,
body:not(.home):not(.front-page) .hth-gear-chain {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(15rem, 1fr);
  gap: 1px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: .5rem;
}

body:not(.home):not(.front-page) :where(.hth-sequence-rail,.hth-gear-chain) > * {
  scroll-snap-align: start;
  margin: 0;
  min-height: 10rem;
  padding: 1.25rem;
  background: rgba(227,225,217,.08);
  border-top: .2rem solid var(--hth-gold);
}

body:not(.home):not(.front-page) .hth-field-adjustment,
body:not(.home):not(.front-page) .hth-field-note {
  margin-block: clamp(2.5rem, 6vw, 5rem);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  background: #E3E1D9;
  border-left: .35rem solid var(--hth-coral);
  box-shadow: 0 1.5rem 4rem rgba(7,24,39,.08);
}

body:not(.home):not(.front-page) .hth-decision-point {
  background: linear-gradient(135deg, rgba(46,111,149,.2), transparent);
}

body:not(.home):not(.front-page) .hth-source-trust,
body:not(.home):not(.front-page) .hth-source-trust-block {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(7,24,39,.15);
  border: 1px solid rgba(7,24,39,.15);
}

body:not(.home):not(.front-page) .hth-source-trust > *,
body:not(.home):not(.front-page) .hth-source-trust-block > * {
  min-width: 0;
  padding: 1rem;
  background: var(--hth-pearl);
}

body:not(.home):not(.front-page) .hth-source-trust span,
body:not(.home):not(.front-page) .hth-page-intelligence__grid span,
body:not(.home):not(.front-page) .hth-final-field-read > span {
  display: block;
  margin-bottom: .3rem;
  color: var(--hth-teal);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

body:not(.home):not(.front-page) .hth-page-intelligence {
  width: var(--hth-intelligence);
  margin: 0 auto clamp(2.5rem, 6vw, 5rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: color-mix(in srgb,#2E6F95 14%,#E3E1D9);
  border-top: .35rem solid var(--hth-teal);
}

body:not(.home):not(.front-page) .hth-page-intelligence__label {
  margin: 0 0 .8rem;
  color: var(--hth-teal);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

body:not(.home):not(.front-page) .hth-page-intelligence__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

body:not(.home):not(.front-page) .hth-page-intelligence__context {
  max-width: var(--hth-reading);
  margin: 1.5rem 0;
  font-size: 1.05rem;
}

body:not(.home):not(.front-page) .hth-final-field-read {
  background: var(--hth-navy);
  color: var(--hth-pearl);
  padding-inline: max(var(--hth-gutter), calc((100vw - 78rem) / 2));
}

body:not(.home):not(.front-page) .hth-final-field-read h2,
body:not(.home):not(.front-page) .hth-final-field-read p {
  max-width: 58rem;
  color: var(--hth-pearl);
}

body:not(.home):not(.front-page) .hth-final-field-read h2 {
  font-size: clamp(1.9rem, 3.3vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -.016em;
}

body:not(.home):not(.front-page) .wp-block-columns.alignwide {
  gap: clamp(1.5rem, 4vw, 4rem);
}

body:not(.home):not(.front-page) .archive-grid,
body:not(.home):not(.front-page) .wp-block-query .wp-block-post-template {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

body:not(.home):not(.front-page) .archive-grid > *,
body:not(.home):not(.front-page) .wp-block-query .wp-block-post-template > * {
  grid-column: span 6;
}

body:not(.home):not(.front-page) .archive-grid > :nth-child(5n + 1),
body:not(.home):not(.front-page) .wp-block-query .wp-block-post-template > :nth-child(5n + 1) {
  grid-column: span 8;
}

body:not(.home):not(.front-page) .archive-grid > :nth-child(5n + 2),
body:not(.home):not(.front-page) .wp-block-query .wp-block-post-template > :nth-child(5n + 2) {
  grid-column: span 4;
}

@media (prefers-reduced-motion: no-preference) {
  body:not(.home):not(.front-page) .hth-horizon-hero .wp-block-cover__image-background {
    transform: scale(1.03);
    animation: hth-water-breathe 18s ease-in-out infinite alternate;
  }
  body:not(.home):not(.front-page) .hth-horizon-hero::after {
    animation: hth-horizon-shift 14s linear infinite;
  }
}

@keyframes hth-water-breathe {
  from { transform: scale(1.03) translate3d(0,0,0); }
  to { transform: scale(1.07) translate3d(0,-1%,0); }
}

@keyframes hth-horizon-shift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 40px 0, 0 0; }
}

@media (max-width: 782px) {
  body:not(.home):not(.front-page) {
    --hth-intelligence: calc(100vw - 1.25rem);
    --hth-structural: calc(100vw - 1rem);
  }

  body:not(.home):not(.front-page) .hth-breakout {
    width: calc(100% - 1.25rem);
    transform: none;
  }

  body:not(.home):not(.front-page) .hth-horizon-hero {
    min-height: 68vh !important;
  }

  body:not(.home):not(.front-page) .hth-horizon-hero .wp-block-cover__inner-container {
    display: block;
  }

  body:not(.home):not(.front-page) .hth-horizon-hero h1 {
    font-size: clamp(2.25rem, 9vw, 3.35rem);
  line-height: 1.08;
  }

  body:not(.home):not(.front-page) .hth-page-intelligence {
    position: relative;
    margin-bottom: 1rem;
  }

  body:not(.home):not(.front-page) .hth-page-intelligence__grid,
  body:not(.home):not(.front-page) .hth-source-trust,
  body:not(.home):not(.front-page) .hth-source-trust-block {
    grid-template-columns: 1fr 1fr;
  }

  body:not(.home):not(.front-page) :where(.hth-data-grid,.hth-condition-grid,.hth-pattern-grid,.hth-readiness-grid,.hth-ledger-row) > * {
    grid-column: 1 / -1;
  }

  body:not(.home):not(.front-page) .hth-map-access .wp-block-columns,
  body:not(.home):not(.front-page) .hth-field-brief .wp-block-columns,
  body:not(.home):not(.front-page) .hth-species-intelligence .wp-block-columns,
  body:not(.home):not(.front-page) .hth-structure-reading .wp-block-columns,
  body:not(.home):not(.front-page) .hth-decision-point .wp-block-columns {
    display: flex;
    flex-direction: column;
  }

  body:not(.home):not(.front-page) .hth-map-access .wp-block-column:nth-child(2),
  body:not(.home):not(.front-page) .hth-field-brief .wp-block-column:nth-child(2) {
    order: -1;
  }

  body:not(.home):not(.front-page) .archive-grid > *,
  body:not(.home):not(.front-page) .wp-block-query .wp-block-post-template > *,
  body:not(.home):not(.front-page) .archive-grid > :nth-child(5n + 1),
  body:not(.home):not(.front-page) .archive-grid > :nth-child(5n + 2),
  body:not(.home):not(.front-page) .wp-block-query .wp-block-post-template > :nth-child(5n + 1),
  body:not(.home):not(.front-page) .wp-block-query .wp-block-post-template > :nth-child(5n + 2) {
    grid-column: 1 / -1;
  }
}

@media print {
  body:not(.home):not(.front-page) .hth-horizon-hero,
  body:not(.home):not(.front-page) .hth-conditions-board,
  body:not(.home):not(.front-page) .hth-map-access,
  body:not(.home):not(.front-page) .hth-technique-sequence,
  body:not(.home):not(.front-page) .hth-final-field-read {
    background: #E3E1D9 !important;
    color: #071827 !important;
  }

  body:not(.home):not(.front-page) .hth-horizon-hero h1,
  body:not(.home):not(.front-page) .hth-conditions-board h2,
  body:not(.home):not(.front-page) .hth-technique-sequence h2,
  body:not(.home):not(.front-page) .hth-final-field-read h2,
  body:not(.home):not(.front-page) .hth-final-field-read p {
    color: #071827 !important;
  }

  body:not(.home):not(.front-page) .hth-source-trust,
  body:not(.home):not(.front-page) .hth-page-intelligence {
    break-inside: avoid;
  }
}
/* hook-the-horizon-editorial-prose */
/**
 * Hook the Horizon — Editorial Prose System v1
 * Gold-standard visual grammar for plain posts/pages.
 * Homepage excluded via body class gates.
 */

body.hth-editorial-system,
body.hth-article-template:not(.home):not(.front-page) {
  --ev-navy: #071827;
  --ev-pearl: #E3E1D9;
  --ev-blue: #2E6F95;
  --ev-teal: #176F78;
  --ev-charcoal: #424546;
  --ev-green: #355133;
  --ev-coral: #D55C3E;
  --ev-gold: #C7A257;
  --ev-mist: color-mix(in srgb,#2E6F95 14%,#E3E1D9);
  --ev-canvas: color-mix(in srgb,#C7A257 18%,#E3E1D9);
  --ev-display: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --ev-body: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  /* Parent column is 80vw via style.css; children fill it. */
  --ev-measure: 100%;
  --ev-elev-low: 0 8px 22px rgba(7, 24, 39, 0.055);
}

body.hth-editorial-page .hth-route-main,
body.hth-editorial-page .hth-shell {
  background: var(--ev-navy);
  color: var(--ev-pearl);
}

.hth-editorial-prose {
  font-family: var(--ev-body);
  color: var(--ev-pearl);
}

.hth-editorial-prose > * {
  width: var(--ev-measure);
  max-width: var(--ev-measure) !important;
  margin-inline: auto;
}

.hth-editorial-prose > .hth-editorial-tactics,
.hth-editorial-prose > .hth-editorial-table,
.hth-editorial-prose > .wp-block-columns,
.hth-editorial-prose > .alignwide,
.hth-editorial-prose > .alignfull {
  width: min(100%, 80vw);
  max-width: min(100%, 80vw) !important;
}

/* Lede */
.hth-editorial-prose > p.hth-editorial-lede:nth-of-type(1) {
  max-width: var(--ev-measure) !important;
  margin: 0 auto 1.1rem;
  color: var(--ev-pearl);
  font-size: clamp(1.08rem, 1.35vw, 1.22rem);
  font-weight: 500;
  line-height: 1.68;
}

.hth-editorial-prose > p.hth-editorial-lede:nth-of-type(2) {
  max-width: var(--ev-measure) !important;
  margin: 0 auto clamp(1.75rem, 4vw, 2.75rem);
  color: var(--ev-pearl);
  font-size: clamp(1.02rem, 1.15vw, 1.12rem);
  line-height: 1.72;
}

/* Section display headers */
body.hth-editorial-system .hth-editorial-prose > h2.hth-editorial-section,
body.hth-article-template .hth-route-reading .wp-block-post-content > h2 {
  max-width: 18ch;
  margin: clamp(2.75rem, 5.5vw, 4.5rem) auto 1rem;
  color: var(--ev-pearl);
  font-family: var(--ev-display);
  font-size: clamp(2.1rem, 4.2vw, 3.4rem) !important;
  font-weight: 400;
  letter-spacing: 0.02em !important;
  line-height: 0.95 !important;
  text-transform: uppercase;
  text-wrap: balance;
}

body.hth-editorial-system .hth-editorial-prose > h2.hth-editorial-sources-head {
  max-width: 22ch;
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  color: var(--ev-charcoal);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem) !important;
  letter-spacing: 0.08em !important;
  opacity: 0.88;
}

.hth-editorial-prose > h3.hth-editorial-subhead {
  max-width: var(--ev-measure) !important;
  margin: 1.75rem auto 0.55rem;
  color: var(--ev-navy);
  font-size: clamp(1.15rem, 1.5vw, 1.35rem) !important;
  font-weight: 700;
  line-height: 1.25 !important;
}

.hth-editorial-prose > p:not(.hth-editorial-lede):not(.hth-editorial-callout) {
  max-width: var(--ev-measure) !important;
  margin: 0 auto 1.05rem;
  color: var(--ev-charcoal);
  font-size: clamp(1.02rem, 0.98rem + 0.14vw, 1.12rem);
  line-height: 1.78;
}

.hth-editorial-prose a {
  color: var(--ev-navy);
  text-decoration-color: color-mix(in srgb, var(--ev-teal) 55%, transparent);
  text-underline-offset: 0.18em;
}

.hth-editorial-prose a:hover {
  color: var(--ev-teal);
}

.hth-editorial-prose a:focus-visible {
  outline: 3px solid var(--ev-gold);
  outline-offset: 3px;
}

/* Tactics lists */
.hth-editorial-prose > ul.hth-editorial-tactics,
.hth-editorial-prose > ol.hth-editorial-tactics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
  gap: 0.7rem;
  margin: 1.25rem auto 1.6rem;
  padding: 0;
  list-style: none;
  counter-reset: tactics;
}

.hth-editorial-prose > ul.hth-editorial-tactics > li,
.hth-editorial-prose > ol.hth-editorial-tactics > li {
  position: relative;
  margin: 0;
  padding: 1rem 1.05rem 1rem 1.15rem;
  border-left: 3px solid var(--ev-blue);
  background: rgba(46, 111, 149, 0.06);
  color: var(--ev-charcoal);
  font-size: 0.94rem !important;
  line-height: 1.55 !important;
  list-style: none;
}

.hth-editorial-prose > ul.hth-editorial-tactics > li:nth-child(2),
.hth-editorial-prose > ol.hth-editorial-tactics > li:nth-child(2) {
  border-left-color: var(--ev-gold);
  background: rgba(199, 162, 87, 0.075);
}

.hth-editorial-prose > ul.hth-editorial-tactics > li:nth-child(3),
.hth-editorial-prose > ol.hth-editorial-tactics > li:nth-child(3) {
  border-left-color: var(--ev-teal);
  background: rgba(23, 111, 120, 0.07);
}

.hth-editorial-prose > ul.hth-editorial-tactics > li:nth-child(4),
.hth-editorial-prose > ol.hth-editorial-tactics > li:nth-child(4) {
  border-left-color: var(--ev-coral);
  background: rgba(213, 92, 62, 0.06);
}

.hth-editorial-prose > ul.hth-editorial-tactics > li:nth-child(5),
.hth-editorial-prose > ol.hth-editorial-tactics > li:nth-child(5) {
  border-left-color: var(--ev-green);
  background: rgba(53, 81, 51, 0.07);
}

.hth-editorial-prose > ol.hth-editorial-tactics > li {
  counter-increment: tactics;
  padding-left: 3rem;
}

.hth-editorial-prose > ol.hth-editorial-tactics > li::before {
  content: counter(tactics);
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  color: var(--ev-gold);
  font-family: var(--ev-display);
  font-size: 1.55rem;
  line-height: 1;
}

/* Pull quotes */
.hth-editorial-prose blockquote.hth-editorial-pullquote {
  position: relative;
  max-width: min(100%, 80vw) !important;
  margin: 1.75rem auto;
  padding: 1.35rem 1.35rem 1.35rem 1.6rem;
  border: 0;
  border-left: 4px solid var(--ev-gold);
  background: linear-gradient(125deg, rgba(7, 24, 39, 0.94), rgba(23, 111, 120, 0.88));
  color: var(--ev-pearl);
  box-shadow: var(--ev-elev-low);
}

.hth-editorial-prose blockquote.hth-editorial-pullquote::before {
  content: "\201C";
  position: absolute;
  top: 0.15rem;
  left: 0.55rem;
  color: var(--ev-gold);
  font-family: var(--ev-display);
  font-size: 3.2rem;
  line-height: 1;
  opacity: 0.85;
}

.hth-editorial-prose blockquote.hth-editorial-pullquote p {
  margin: 0;
  color: rgba(227, 225, 217, 0.94);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem) !important;
  font-style: italic;
  line-height: 1.55 !important;
}

/* Callouts */
.hth-editorial-prose > p.hth-editorial-callout {
  max-width: min(100%, 80vw) !important;
  margin: 1.35rem auto;
  padding: 1.1rem 1.2rem 1.1rem 1.4rem;
  border-left: 4px solid var(--ev-teal);
  background: linear-gradient(100deg, rgba(23, 111, 120, 0.09), rgba(227, 225, 217, 0.35));
  color: var(--ev-charcoal);
  font-size: 0.98rem !important;
  line-height: 1.62 !important;
}

.hth-editorial-prose > p.hth-editorial-callout--science {
  border-left-color: var(--ev-coral);
  background: linear-gradient(100deg, rgba(213, 92, 62, 0.08), rgba(227, 225, 217, 0.3));
}

.hth-editorial-prose > p.hth-editorial-callout--boundary {
  border: 1px solid rgba(213, 92, 62, 0.24);
  border-left: 4px solid var(--ev-coral);
  background: rgba(213, 92, 62, 0.06);
}

/* Tables */
.hth-editorial-prose table.hth-editorial-table,
.hth-editorial-prose .wp-block-table table {
  width: 100%;
  margin: 1.35rem 0;
  border-collapse: collapse;
  background: linear-gradient(145deg, #E3E1D9, #E3E1D9);
  box-shadow: var(--ev-elev-low);
}

.hth-editorial-prose table.hth-editorial-table th,
.hth-editorial-prose .wp-block-table th {
  padding: 0.75rem 0.9rem;
  border-bottom: 2px solid var(--ev-gold);
  color: var(--ev-navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
}

.hth-editorial-prose table.hth-editorial-table td,
.hth-editorial-prose .wp-block-table td {
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(7, 24, 39, 0.1);
  color: var(--ev-charcoal);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* Sources quiet close */
.hth-editorial-prose .hth-editorial-sources {
  max-width: var(--ev-measure) !important;
  margin-inline: auto;
  color: color-mix(in srgb, var(--ev-charcoal) 82%, var(--ev-pearl));
  font-size: 0.88rem !important;
  line-height: 1.55 !important;
}

.hth-editorial-prose > ul.hth-editorial-sources,
.hth-editorial-prose > ol.hth-editorial-sources {
  display: block;
  padding-left: 1.15rem;
  border: 0;
  background: transparent;
  list-style: disc;
}

.hth-editorial-prose > ul.hth-editorial-sources > li,
.hth-editorial-prose > ol.hth-editorial-sources > li {
  margin: 0.35rem 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0.88rem !important;
}

.hth-editorial-prose figcaption,
.hth-editorial-prose .wp-element-caption {
  margin-top: 0.55rem;
  color: color-mix(in srgb, var(--ev-charcoal) 78%, var(--ev-pearl));
  font-size: 0.78rem !important;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.45 !important;
}

.hth-editorial-prose hr,
.hth-editorial-prose .wp-block-separator {
  width: min(12rem, 40%);
  max-width: none;
  margin: 2.25rem auto;
  border: 0;
  border-top: 1px solid color-mix(in srgb, var(--ev-gold) 55%, transparent);
  background: none;
}

/* Page hero parity */
body.hth-editorial-page .hth-route-hero--article {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: clamp(28rem, 62vh, 44rem);
  overflow: hidden;
  background: var(--ev-navy);
  color: var(--ev-pearl);
}

body.hth-editorial-page .hth-route-hero--article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.32;
  background:
    radial-gradient(ellipse at 105% 2%, transparent 0 18%, rgba(46,111,149, 0.28) 18.5% 19%, transparent 19.5% 28%, rgba(199, 162, 87, 0.16) 28.5% 29%, transparent 29.5% 39%),
    repeating-linear-gradient(170deg, transparent 0 27px, rgba(227,225,217, 0.025) 28px, transparent 30px);
}

body.hth-editorial-page .hth-route-hero--article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 24, 39, 0.18), rgba(7, 24, 39, 0.78) 70%, rgba(7, 24, 39, 0.98)),
    linear-gradient(90deg, rgba(7, 24, 39, 0.72) 0%, rgba(7, 24, 39, 0.16) 60%, transparent 100%);
}

body.hth-editorial-page .hth-route-hero__inner {
  position: relative;
  z-index: 2;
}

body.hth-editorial-page .hth-route-hero--article h1.wp-block-post-title {
  max-width: 14ch;
  margin: 0.2rem 0 0;
  color: var(--ev-pearl);
  font-family: var(--ev-display);
  font-size: clamp(3rem, 6.5vw, 6.2rem) !important;
  font-weight: 400;
  letter-spacing: 0.015em !important;
  line-height: 0.9 !important;
  text-transform: uppercase;
  text-wrap: balance;
}

body.hth-editorial-page .hth-route-eyebrow {
  margin: 0;
  color: var(--ev-gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.hth-editorial-system .hth-warning,
body.hth-article-template .hth-warning {
  width: min(100%, 80vw);
  max-width: min(100%, 80vw) !important;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(213, 92, 62, 0.24);
  background: rgba(213, 92, 62, 0.06);
  color: var(--ev-charcoal);
}

body.hth-editorial-system .hth-warning p {
  margin: 0;
  font-size: 0.92rem !important;
  line-height: 1.55 !important;
}

@media (prefers-reduced-motion: no-preference) {
  .hth-editorial-prose > ul.hth-editorial-tactics > li,
  .hth-editorial-prose > ol.hth-editorial-tactics > li {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }
  .hth-editorial-prose > ul.hth-editorial-tactics > li:hover,
  .hth-editorial-prose > ol.hth-editorial-tactics > li:hover {
    transform: translateY(-2px);
    box-shadow: var(--ev-elev-low);
  }
}

@media (max-width: 720px) {
  .hth-editorial-prose > ul.hth-editorial-tactics,
  .hth-editorial-prose > ol.hth-editorial-tactics {
    grid-template-columns: 1fr;
  }

  body.hth-editorial-page .hth-route-hero--article {
    min-height: clamp(22rem, 70vh, 34rem);
  }

  body.hth-editorial-page .hth-route-hero--article h1.wp-block-post-title {
    max-width: 11ch;
    font-size: clamp(2.6rem, 12vw, 3.6rem) !important;
  }
}

/* Canonical editorial measure — SINGLE SOURCE OF TRUTH for reading width.
 * hook-route-system.css owns the shell (88% bleed); this file owns the measure
 * inside it. Prose is held at 76ch so it stays readable without looking like a
 * thin ribbon in the widened rail; components fill the rail. Do not reintroduce
 * a competing measure in style.css, article-template.css or mobile-responsive.css. */
body.hth-editorial-system,
body.hth-article-template:not(.home):not(.front-page) {
  --wp--style--global--content-size: min(76ch, 100%);
  --wp--style--global--wide-size: 100%;
}

body.hth-editorial-system .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
body.hth-article-template:not(.home):not(.front-page) .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: min(76ch, 100%) !important;
}

body.hth-editorial-system .hth-route-reading .wp-block-post-content > :where(p,ul,ol,blockquote,h2,h3,h4,h5,h6),
body.hth-editorial-system .hth-editorial-prose > :where(p,ul,ol,blockquote,h2,h3,h4,h5,h6) {
  width:100%;
  max-width: min(76ch, 100%) !important;
  margin-inline:auto;
}

/* Visual and editorial modules take the full widened rail. Cards, tables,
 * grids and figures reading edge-to-edge against a held prose measure is what
 * stops the page from presenting as one flat column. */
body.hth-editorial-system .hth-route-reading .wp-block-post-content > :where(section,figure,.wp-block-table,.wp-block-columns,.wp-block-group,.alignwide),
body.hth-editorial-system .hth-editorial-prose > :where(section,figure,.wp-block-table,.wp-block-columns,.wp-block-group,.alignwide) {
  width:100%;
  max-width:100% !important;
  margin-inline:auto;
}

/* Button rows inside prose. Some stored content carries .wp-block-buttons
   without the is-layout-flex classes the block editor normally adds, so the
   container gets no flex/gap and adjacent buttons can crowd or collide
   (seen on /research-and-standards/). Give every prose button row the same
   layout the editor would have generated. Wrapping keeps pairs usable on
   narrow phones instead of forcing a side-by-side squeeze. */
.hth-editorial-prose .wp-block-buttons,
.hth-route-reading .wp-block-post-content .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  max-width: min(72ch, 100%);
  margin-inline: auto;
}

.hth-editorial-prose .wp-block-buttons .wp-block-button,
.hth-route-reading .wp-block-post-content .wp-block-buttons .wp-block-button {
  margin: 0;
  position: static;
  float: none;
}
/* hook-the-horizon-editorial-visual-program */
/* Hook the Horizon — Editorial Visual Program */
.hth-editorial-plate,
.hth-read-next,
.hth-five-routes {
  --hth-plate-navy:#071827;
  --hth-plate-ink:#071827;
  --hth-plate-paper:#E3E1D9;
  --hth-plate-gold:#c7a257;
  --hth-plate-teal:#176f78;
  --hth-plate-blue:#2e6f95;
  --hth-plate-coral:#d55c3e;
  width:min(72rem,100%);
  max-width:min(72rem,100%)!important;
  margin:clamp(2rem,5vw,3.5rem) auto;
}

.hth-editorial-plate {
  overflow:hidden;
  border:1px solid color-mix(in srgb,var(--hth-plate-gold) 28%,transparent);
  border-radius:16px;
  background:var(--hth-plate-navy);
  box-shadow:0 18px 42px rgba(7,24,39,.12);
}

.hth-editorial-plate__head {
  display:grid;
  grid-template-columns:minmax(8rem,.28fr) minmax(0,1fr);
  gap:1.25rem;
  align-items:end;
  padding:1.35rem clamp(1.1rem,3vw,2rem) 1.2rem;
  border-bottom:1px solid rgba(199,162,87,.24);
}

.hth-editorial-plate__head p {
  margin:0!important;
  color:var(--hth-plate-gold)!important;
  font-size:.68rem!important;
  font-weight:800;
  letter-spacing:.14em;
  line-height:1.35!important;
}

.hth-editorial-plate__head h2 {
  max-width:none!important;
  margin:0!important;
  color:#E3E1D9!important;
  font-family:"Bebas Neue",Impact,"Arial Narrow",sans-serif!important;
  font-size:clamp(1.75rem,3.6vw,2.8rem)!important;
  font-weight:400!important;
  letter-spacing:.02em!important;
  line-height:.98!important;
  text-transform:uppercase;
}

.hth-editorial-plate__visual { padding:clamp(.75rem,2vw,1.25rem); }
.hth-editorial-plate__visual svg { display:block;width:100%;height:auto; }
.hth-editorial-plate figcaption {
  margin:0!important;
  padding:1rem clamp(1.1rem,3vw,2rem) 1.25rem;
  border-top:1px solid rgba(227,225,217,.12);
  color:rgba(227,225,217,.82)!important;
  font-size:.88rem!important;
  font-weight:500!important;
  letter-spacing:0!important;
  line-height:1.55!important;
}

.hth-editorial-plate svg text {
  fill:#e3e1d9;
  font-family:Montserrat,system-ui,sans-serif;
  font-size:18px;
  font-weight:700;
  letter-spacing:1px;
}
.hth-editorial-plate .plate-bg { fill:#071827; }
.hth-editorial-plate .water-fast { fill:#2e6f95;opacity:.78; }
.hth-editorial-plate .water-soft,.hth-editorial-plate .water-mid { fill:#176f78;opacity:.5; }
.hth-editorial-plate .seam-line,.hth-editorial-plate .surface-line,.hth-editorial-plate .food-lane,.hth-editorial-plate .current-break,.hth-editorial-plate .structure-line { fill:none;stroke:#c7a257;stroke-width:6;stroke-linecap:round; }
.hth-editorial-plate .flow-arrows path { fill:none;stroke:#e3e1d9;stroke-width:5;stroke-linecap:round;marker-end:url(#hth-arrow-current);opacity:.85; }
.hth-editorial-plate .fish-marks path,.hth-editorial-plate .fish-mark-large { fill:#c7a257;stroke:#E3E1D9;stroke-width:2; }
.hth-editorial-plate .bottom-fill { fill:#424546;opacity:.9; }
.hth-editorial-plate .presentation-path { fill:none;stroke:#d55c3e;stroke-width:7;stroke-dasharray:16 12;stroke-linecap:round; }
.hth-editorial-plate .lure-dot { fill:#c7a257;stroke:#E3E1D9;stroke-width:3; }
.hth-editorial-plate .depth-rule { stroke:#e3e1d9;stroke-width:3;stroke-dasharray:7 8;opacity:.65; }
.hth-editorial-plate .cover-shape { fill:#355133;stroke:#c7a257;stroke-width:4;opacity:.9; }
.hth-editorial-plate .food-lane { stroke:#e3e1d9;stroke-width:4;stroke-dasharray:14 10; }
.hth-editorial-plate .food-lane.muted { opacity:.45; }
.hth-editorial-plate .current-break { stroke:#d55c3e;stroke-width:5;stroke-dasharray:10 9; }
.hth-editorial-plate .chain-line { fill:none;stroke:#c7a257;stroke-width:5;stroke-linecap:round; }
.hth-editorial-plate .chain-box { fill:#071827;stroke:#2e6f95;stroke-width:3; }
.hth-editorial-plate .step-circle { fill:#071827;stroke:#c7a257;stroke-width:4; }
.hth-editorial-plate .silhouette { fill:#e3e1d9;stroke:#c7a257;stroke-width:3;stroke-linecap:round; }
.hth-editorial-plate .lake-shape { fill:#176f78;stroke:#2e6f95;stroke-width:5; }
.hth-editorial-plate .wind-arrow { fill:none;stroke:#e3e1d9;stroke-width:8;stroke-linecap:round;marker-end:url(#hth-arrow-wind); }
.hth-editorial-plate .windward-mark { fill:none;stroke:#d55c3e;stroke-width:10;stroke-linecap:round; }
.hth-editorial-plate .protected-mark { fill:none;stroke:#c7a257;stroke-width:10;stroke-linecap:round; }
.hth-editorial-plate .weed-mark { stroke:#355133;stroke-width:8;stroke-linecap:round; }

/* Safety and stewardship plates. Every fill below is dark enough to carry the
   #e3e1d9 plate text at 4.5:1 or better, or carries no text at all. */
.hth-editorial-plate .land-fill { fill:#355133;opacity:.94; }
.hth-editorial-plate .channel-bar { fill:#2e6f95;opacity:.8; }
.hth-editorial-plate .flow-down,
.hth-editorial-plate .flow-across { fill:none;stroke:#e3e1d9;stroke-width:5;stroke-linecap:butt;marker-end:url(#hth-arrow);opacity:.85; }
.hth-editorial-plate .ground-flow { fill:none;stroke:#c7a257;stroke-width:5;stroke-dasharray:12 10;stroke-linecap:round;opacity:.85; }
.hth-editorial-plate .warm-band { fill:none;stroke:#d55c3e;stroke-width:6;stroke-dasharray:18 12;stroke-linecap:round; }
.hth-editorial-plate .cold-flow { fill:none;stroke:#2E6F95;stroke-width:7;stroke-linecap:round; }
.hth-editorial-plate .barrier-mark { fill:#424546;stroke:#d55c3e;stroke-width:4; }
.hth-editorial-plate .passage-mark { fill:none;stroke:#c7a257;stroke-width:7;stroke-linejoin:round;stroke-linecap:round; }
.hth-editorial-plate .seawall-mark { fill:none;stroke:#d55c3e;stroke-width:10;stroke-linecap:square; }
.hth-editorial-plate .net-mark { fill:none;stroke:#e3e1d9;stroke-width:3;opacity:.72; }
.hth-editorial-plate .ghost-line { fill:none;stroke:#e3e1d9;stroke-width:4;stroke-linecap:round;opacity:.8; }
.hth-editorial-plate .lead-mark { fill:#424546;stroke:#071827;stroke-width:3; }
.hth-editorial-plate .load-bar { fill:#d55c3e;opacity:.88; }
.hth-editorial-plate .time-wedge { fill:#c7a257;opacity:.5; }
.hth-editorial-plate .rung-go { fill:#355133;stroke:#176F78;stroke-width:4; }
.hth-editorial-plate .rung-watch { fill:#C7A257;stroke:#c7a257;stroke-width:4; }
.hth-editorial-plate .rung-stop { fill:#D55C3E;stroke:#d55c3e;stroke-width:4; }

.hth-editorial-plate__photo-wrap { position:relative;overflow:hidden;border-radius:10px;aspect-ratio:16/9;background:#071827; }
.hth-editorial-plate__photo { display:block;width:100%;height:100%!important;object-fit:cover;filter:saturate(.86) contrast(1.04); }
.hth-editorial-plate__photo-grid {
  position:absolute;inset:0;
  background:
    linear-gradient(90deg,transparent 49.7%,rgba(199,162,87,.8) 50%,transparent 50.3%),
    linear-gradient(transparent 49.7%,rgba(199,162,87,.8) 50%,transparent 50.3%);
  opacity:.55;
}
.hth-editorial-plate__photo-grid::before,.hth-editorial-plate__photo-grid::after {
  content:"";position:absolute;width:34px;height:34px;border:2px solid #E3E1D9;border-radius:50%;box-shadow:0 0 0 5px rgba(7,24,39,.35);
}
.hth-editorial-plate__photo-grid::before { left:24%;top:27%; }
.hth-editorial-plate__photo-grid::after { right:23%;bottom:24%; }
.hth-editorial-plate__legend { display:flex;flex-wrap:wrap;gap:.55rem;padding:.85rem 0 .1rem; }
.hth-editorial-plate__legend span { display:inline-flex;align-items:center;gap:.45rem;padding:.45rem .65rem;border:1px solid rgba(199,162,87,.35);border-radius:999px;color:#e3e1d9;font-size:.7rem;font-weight:700;letter-spacing:.08em; }
.hth-editorial-plate__legend b { display:grid;place-items:center;width:1.25rem;height:1.25rem;border-radius:50%;background:#c7a257;color:#071827;font-size:.65rem; }

.hth-read-next {
  padding:clamp(1.3rem,3vw,2rem);
  border-top:2px solid var(--hth-plate-gold);
  border-bottom:1px solid rgba(7,24,39,.14);
  background:linear-gradient(105deg,rgba(199,162,87,.09),rgba(46,111,149,.055));
}
.hth-read-next__label { margin:0 0 .35rem!important;color:#071827!important;font-size:.68rem!important;font-weight:800;letter-spacing:.14em; }
.hth-read-next h2 { max-width:none!important;margin:0 0 1rem!important;color:#071827!important;font-family:"Bebas Neue",Impact,"Arial Narrow",sans-serif!important;font-size:clamp(1.8rem,3vw,2.5rem)!important;font-weight:400!important;letter-spacing:.02em!important;line-height:1!important;text-transform:uppercase; }
.hth-read-next ul { display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:.7rem!important;max-width:none!important;margin:0!important;padding:0!important;list-style:none!important; }
.hth-read-next li { margin:0!important;padding:0!important;border:0!important;background:transparent!important; }
.hth-read-next a { display:flex;min-height:100%;align-items:center;padding:.9rem 1rem;border:1px solid rgba(7,24,39,.12);border-radius:10px;background:#E3E1D9;color:#071827!important;font-size:.9rem;font-weight:700;line-height:1.4;text-decoration:none; }
.hth-read-next a:hover { border-color:#176F78;color:#071827!important;text-decoration-color:#176F78!important; }

.hth-five-routes { padding:clamp(1.25rem,3vw,2rem) 0; }
.hth-five-routes > header { max-width:72ch;margin:0 auto 1.5rem; }
.hth-five-routes > header > p { margin:0 0 .35rem!important;color:#071827!important;font-size:.68rem!important;font-weight:800;letter-spacing:.14em; }
.hth-five-routes > header h2 { max-width:none!important;margin:0 0 .65rem!important;color:#071827!important;font-family:"Bebas Neue",Impact,"Arial Narrow",sans-serif!important;font-size:clamp(2rem,4vw,3.2rem)!important;font-weight:400!important;letter-spacing:.02em!important;line-height:.98!important;text-transform:uppercase; }
.hth-five-routes > header span { color:#424546;font-size:1rem;line-height:1.6; }
.hth-five-routes__grid { display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:.75rem; }
.hth-five-routes article { padding:1rem;border-top:3px solid #c7a257;background:#E3E1D9; }
.hth-five-routes article:nth-child(2) { border-top-color:#2e6f95; }
.hth-five-routes article:nth-child(3) { border-top-color:#176f78; }
.hth-five-routes article:nth-child(4) { border-top-color:#d55c3e; }
.hth-five-routes article:nth-child(5) { border-top-color:#355133; }
.hth-five-routes h3 { margin:0 0 .75rem!important;color:#071827!important;font-size:1rem!important;line-height:1.3!important; }
.hth-five-routes ol { margin:0!important;padding-left:1.2rem!important; }
.hth-five-routes li { margin:.5rem 0!important;color:#424546;font-size:.84rem;line-height:1.4; }
.hth-five-routes a { color:#071827!important;font-weight:650;text-underline-offset:.16em; }

@media (max-width:960px) {
  .hth-five-routes__grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:720px) {
  .hth-editorial-plate__head { grid-template-columns:1fr;gap:.45rem; }
  .hth-editorial-plate__visual { padding:.55rem; }
  .hth-editorial-plate svg text { font-size:23px; }
  .hth-read-next ul { grid-template-columns:1fr!important; }
  .hth-five-routes__grid { grid-template-columns:1fr; }
}
@media (prefers-reduced-motion:reduce) {
  .hth-read-next a { transition:none; }
}

.hth-tool-identity {
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  gap:.45rem 1rem;
  align-items:center;
  width:min(72rem,calc(100% - 2rem));
  margin:1rem auto 1.25rem;
  padding:.8rem 1rem;
  border:1px solid rgba(199,162,87,.3);
  border-radius:12px;
  background:#071827;
  color:#e3e1d9;
  font-size:.78rem;
  line-height:1.35;
}
.hth-tool-identity__brand,.hth-tool-identity__first { color:#c7a257!important;font-weight:800;text-decoration:none; }
.hth-tool-identity__descriptor { font-weight:700;color:#E3E1D9; }
.hth-tool-identity__privacy { grid-column:2;color:rgba(227,225,217,.78); }
.hth-tool-identity__first { grid-column:3;grid-row:1 / span 2;white-space:nowrap; }
.hth-tool-identity__review { grid-column:1;color:rgba(227,225,217,.58);font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:.68rem; }
@media (max-width:760px) {
  .hth-tool-identity { grid-template-columns:1fr;gap:.5rem; }
  .hth-tool-identity__privacy,.hth-tool-identity__first,.hth-tool-identity__review { grid-column:1;grid-row:auto;white-space:normal; }
}
/* hook-the-horizon-species-field-profile */
/**
 * Hook the Horizon — Species Field Profile (sp-* content vocabulary)
 * Version: 1.0.0
 *
 * WHY THIS FILE EXISTS
 *   assets/species-profile.css styles a `.hth-species-profile` / `.hth-sp-*`
 *   component set. No published post uses those class names. Every species
 *   profile in the library is authored against a different, simpler vocabulary
 *   — a `.hth-sp` wrapper containing `.sp-eyebrow`, `.sp-note`, `.sp-grid`,
 *   `.sp-card`, `.sp-row`, `.sp-src`, `.sp-foot` and friends — and none of
 *   those selectors appeared anywhere in the theme. The result was that the
 *   entire species library rendered as undecorated prose: cards stacked as
 *   plain text, grids collapsed to blocks, voice notes indistinguishable from
 *   body copy.
 *
 *   This stylesheet is that missing half. It changes no content.
 *
 * RENDERING CONTEXT
 *   Single posts render Pearl (#E3E1D9) on the dark Navy editorial ground,
 *   inside .hth-field-modules.hth-editorial-prose. The older species-profile.css
 *   assumes the inverse (dark dossier header over a light body), which is why
 *   its rules are not reused here. Panels below are built from translucent
 *   Pearl mixes so they sit on the dark field without fighting it.
 *
 * GOVERNANCE
 *   Colours stay inside the Hook ten-colour authority. Deep Navy and Pearl
 *   remain the structural field. Accent hues carry role, never meaning on
 *   their own — every accent is paired with a label, a rule or a position.
 *   Teal marks the author's voice. Gold marks structure and labels. Coral
 *   marks caution and exception. Blue and Green mark reference material.
 */

.hth-sp {
  --sp-navy: #071827;
  --sp-pearl: #E3E1D9;
  --sp-blue: #2E6F95;
  --sp-teal: #176F78;
  --sp-charcoal: #424546;
  --sp-green: #355133;
  --sp-coral: #D55C3E;
  --sp-gold: #C7A257;

  /* Surfaces derived for the dark ground */
  --sp-panel: color-mix(in srgb, var(--sp-pearl) 5%, transparent);
  --sp-panel-raised: color-mix(in srgb, var(--sp-pearl) 9%, transparent);
  --sp-rule: color-mix(in srgb, var(--sp-pearl) 18%, transparent);
  --sp-rule-soft: color-mix(in srgb, var(--sp-pearl) 10%, transparent);
  --sp-quiet: color-mix(in srgb, var(--sp-pearl) 74%, transparent);

  display: block;
  margin: 2.25rem 0 3rem;
}

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

.hth-sp p {
  margin: 0 0 1rem;
  line-height: 1.7;
}

.hth-sp p:last-child {
  margin-bottom: 0;
}

.hth-sp a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: color-mix(in srgb, var(--sp-gold) 65%, transparent);
  text-underline-offset: 0.18em;
  transition: color 0.16s ease, text-decoration-color 0.16s ease;
}

.hth-sp a:hover,
.hth-sp a:focus-visible {
  color: var(--sp-gold);
  text-decoration-color: var(--sp-gold);
}

/* ------------------------------------------------------------------
   SECTION RHYTHM
   Each section is a beat. A hairline separates beats so the page reads
   as a sequence of arguments rather than one undifferentiated column.
   ------------------------------------------------------------------ */
.hth-sp > section {
  margin: 0 0 2.5rem;
}

.hth-sp > section + section {
  padding-top: 2.25rem;
  border-top: 1px solid var(--sp-rule-soft);
}

.hth-sp > section:last-child {
  margin-bottom: 0;
}

.hth-sp .sp-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--sp-gold);
}

/* Rule trailing off the eyebrow — sets the dossier register without a box. */
.hth-sp .sp-eyebrow:after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  min-width: 1.5rem;
  background: linear-gradient(90deg, color-mix(in srgb, var(--sp-gold) 55%, transparent), transparent);
}

.hth-sp h2 {
  margin: 0 0 1.1rem;
  text-wrap: balance;
}

.hth-sp h3 {
  margin: 1.9rem 0 0.85rem;
  text-wrap: balance;
}

/* ------------------------------------------------------------------
   THE VOICE NOTE
   The single most important element on these pages. Set in the display
   serif against a teal rule so the author's judgment is visibly not the
   same kind of text as the reference material around it.
   ------------------------------------------------------------------ */
.hth-sp .sp-note {
  margin: 1.35rem 0;
  padding: 1.05rem 1.3rem 1.05rem 1.4rem;
  border-left: 3px solid var(--sp-teal);
  background: color-mix(in srgb, var(--sp-teal) 13%, transparent);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.62;
  color: var(--sp-pearl);
}

.hth-sp .sp-note p {
  line-height: inherit;
}

/* The opening note carries the thesis — give it lede weight. */
.hth-sp > section:first-child .sp-note {
  font-size: 1.2rem;
  padding: 1.25rem 1.5rem 1.25rem 1.6rem;
}

/* ------------------------------------------------------------------
   CARD GRIDS
   At-a-glance summaries and "where the sources disagree" panels.
   Cycling top accents give the grid rhythm without colour-coding meaning.
   ------------------------------------------------------------------ */
.hth-sp .sp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 0.85rem;
  margin: 1.4rem 0;
}

.hth-sp .sp-grid--wide {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.hth-sp .sp-card,
.hth-sp .sp-card--pale {
  position: relative;
  padding: 1.05rem 1.1rem 1.1rem;
  border: 1px solid var(--sp-rule);
  background: var(--sp-panel);
}

.hth-sp .sp-card:before,
.hth-sp .sp-card--pale:before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--sp-blue);
}

.hth-sp .sp-grid .sp-card:nth-child(2):before { background: var(--sp-teal); }
.hth-sp .sp-grid .sp-card:nth-child(3):before { background: var(--sp-gold); }
.hth-sp .sp-grid .sp-card:nth-child(4):before { background: var(--sp-coral); }
.hth-sp .sp-grid .sp-card:nth-child(5):before { background: var(--sp-green); }
.hth-sp .sp-grid .sp-card:nth-child(6):before { background: var(--sp-charcoal); }

/* Pale cards carry exceptions, caveats and unresolved conflicts. */
.hth-sp .sp-card--pale {
  background: var(--sp-panel-raised);
  border-color: color-mix(in srgb, var(--sp-gold) 28%, var(--sp-rule));
}

.hth-sp .sp-card--pale:before {
  background: var(--sp-gold);
}

/* A pale card used as a standalone methodology note, not a key/value pair. */
.hth-sp .sp-card--pale:not(:has(.sp-k)) {
  margin: 1.3rem 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--sp-quiet);
}

.hth-sp .sp-card--pale strong {
  color: var(--sp-pearl);
}

.hth-sp .sp-k {
  margin: 0 0 0.42rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
  color: var(--sp-gold);
}

.hth-sp .sp-v {
  font-size: 0.94rem;
  line-height: 1.58;
}

@media (hover: hover) {
  .hth-sp .sp-card,
  .hth-sp .sp-card--pale {
    transition: background-color 0.18s ease, border-color 0.18s ease;
  }

  .hth-sp .sp-card:hover,
  .hth-sp .sp-card--pale:hover {
    background: var(--sp-panel-raised);
    border-color: color-mix(in srgb, var(--sp-pearl) 28%, transparent);
  }
}

/* ------------------------------------------------------------------
   FIELD ROWS
   Label / value pairs. Two columns where there is room, stacked where
   there is not, with the source line tucked under the value.
   ------------------------------------------------------------------ */
.hth-sp .sp-row {
  display: grid;
  grid-template-columns: minmax(8.5rem, 12.5rem) 1fr;
  gap: 0.3rem 1.6rem;
  padding: 1rem 0;
  border-top: 1px solid var(--sp-rule-soft);
}

.hth-sp .sp-label {
  padding-top: 0.15rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--sp-gold);
}

.hth-sp .sp-val {
  font-size: 0.95rem;
  line-height: 1.65;
}

.hth-sp .sp-val > :last-child {
  margin-bottom: 0;
}

/* sp-src appears both as a <p> child of the row and as a <span> in a
   following <p>. Style the token itself so both forms land. */
.hth-sp .sp-src {
  display: block;
  margin: 0.5rem 0 0;
  font-size: 0.73rem;
  line-height: 1.55;
  color: var(--sp-quiet);
}

.hth-sp .sp-row > p,
.hth-sp .sp-row > .sp-src {
  grid-column: 2;
  margin: 0.5rem 0 0;
  font-size: 0.73rem;
  line-height: 1.55;
  color: var(--sp-quiet);
}

.hth-sp .sp-row > p .sp-src {
  margin: 0;
  font-size: inherit;
}

/* Section-level attribution sitting outside any row. */
.hth-sp > section > .sp-src,
.hth-sp > section > p > .sp-src {
  margin-top: 1rem;
}

.hth-sp .sp-tag {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.14rem 0.42rem;
  border: 1px solid color-mix(in srgb, var(--sp-coral) 55%, transparent);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sp-coral);
  vertical-align: 0.1em;
}

/* ------------------------------------------------------------------
   TABLES — identification comparisons and seasonal calendars
   ------------------------------------------------------------------ */
.hth-sp .sp-scroll {
  overflow-x: auto;
  margin: 1.35rem 0;
  -webkit-overflow-scrolling: touch;
}

.hth-sp table {
  width: 100%;
  min-width: 460px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.hth-sp th {
  padding: 0.6rem 0.8rem;
  border-bottom: 2px solid color-mix(in srgb, var(--sp-gold) 45%, transparent);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-align: left;
  color: var(--sp-gold);
}

.hth-sp td {
  padding: 0.75rem 0.8rem;
  border-bottom: 1px solid var(--sp-rule-soft);
  line-height: 1.6;
  vertical-align: top;
}

.hth-sp .sp-trait {
  margin: 0 0 0.6rem;
}

.hth-sp .sp-trait:last-child {
  margin-bottom: 0;
}

.hth-sp .sp-trait strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sp-gold);
}

/* ------------------------------------------------------------------
   LISTS — "not established" gaps and the source shelf
   ------------------------------------------------------------------ */
.hth-sp .sp-list {
  margin: 1.1rem 0;
  padding: 0;
  list-style: none;
  columns: 2;
  column-gap: 2rem;
}

.hth-sp .sp-list li {
  position: relative;
  margin: 0 0 0.45rem;
  padding-left: 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--sp-quiet);
  break-inside: avoid;
}

.hth-sp .sp-list li:before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--sp-coral);
}

.hth-sp .sp-sources {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.hth-sp .sp-sources li {
  padding: 0.55rem 0;
  border-top: 1px solid var(--sp-rule-soft);
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--sp-quiet);
}

.hth-sp .sp-sources li a {
  color: var(--sp-pearl);
}

.hth-sp .sp-foot {
  margin: 1.6rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--sp-rule);
  font-size: 0.74rem;
  line-height: 1.6;
  color: var(--sp-quiet);
}

/* ------------------------------------------------------------------
   STANDARDIZED FEEDING MODULE
   Syndicated boilerplate shared across profiles. Deliberately quieter
   than hand-written sections so it reads as an appendix.
   ------------------------------------------------------------------ */
.hth-sp .hth-feeding-standard {
  margin: 2.25rem 0;
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--sp-rule-soft);
  border-left: 3px solid var(--sp-blue);
  background: color-mix(in srgb, var(--sp-pearl) 4%, transparent);
}

.hth-sp .hth-feeding-standard .sp-eyebrow {
  color: color-mix(in srgb, var(--sp-blue) 45%, var(--sp-pearl));
}

.hth-sp .hth-feeding-standard .sp-eyebrow:after {
  background: linear-gradient(90deg, color-mix(in srgb, var(--sp-blue) 60%, transparent), transparent);
}

.hth-sp .hth-feeding-standard h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
}

.hth-sp .hth-feeding-standard .sp-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.hth-sp .hth-feeding-standard .sp-note {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ------------------------------------------------------------------
   PLATES AND FIGURES
   Species illustrations and photographs. Framed lightly so a drawing
   on a transparent or white ground still sits correctly on the navy.
   ------------------------------------------------------------------ */
.hth-sp figure,
.hth-sp .sp-figure {
  margin: 1.75rem 0;
}

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

.hth-sp .hth-sp-photo img,
.hth-sp .sp-figure img,
.hth-sp .sp-plate img {
  width: 100%;
  border: 1px solid var(--sp-rule-soft);
}

/* A plate is a scientific illustration rather than a photograph: give it
   a light mat so a line drawing keeps its contrast against the dark field. */
.hth-sp .sp-plate {
  padding: 1rem;
  border: 1px solid var(--sp-rule);
  background: color-mix(in srgb, var(--sp-pearl) 92%, var(--sp-blue));
}

.hth-sp .sp-plate img {
  border: 0;
}

.hth-sp figcaption {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--sp-quiet);
}

.hth-sp .sp-plate figcaption {
  color: color-mix(in srgb, var(--sp-navy) 78%, transparent);
}

/* ------------------------------------------------------------------
   NARROW VIEWPORTS
   ------------------------------------------------------------------ */
@media (max-width: 720px) {
  .hth-sp .sp-list {
    columns: 1;
  }
}

@media (max-width: 640px) {
  .hth-sp .sp-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .hth-sp .sp-row > p,
  .hth-sp .sp-row > .sp-src {
    grid-column: 1;
  }

  .hth-sp .sp-label {
    padding-top: 0;
  }

  .hth-sp .sp-note {
    padding: 0.95rem 1rem 0.95rem 1.1rem;
    font-size: 1.02rem;
  }

  .hth-sp > section:first-child .sp-note {
    font-size: 1.08rem;
    padding: 1rem 1.1rem 1rem 1.2rem;
  }

  .hth-sp .sp-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hth-sp a,
  .hth-sp .sp-card,
  .hth-sp .sp-card--pale {
    transition: none;
  }
}

/* ------------------------------------------------------------------
   SPECIFICITY RECONCILIATION
   frame-lock.css paints every <p> and <li> inside .hth-editorial-prose
   pearl at (0,3,2), and mobile-responsive.css re-sets their font-size and
   line-height with !important at narrow widths. Both outrank a plain
   `.hth-sp .sp-*` selector, so the components that happen to be paragraphs
   or list items — the eyebrow, the voice note, the source line, the gap
   list, the source shelf and the footer — are restated here at matching
   weight. Components built from <div> (cards, rows, labels, values) are
   unaffected and are not repeated.

   This is the same escalation a11y-contrast-remediation.css documents at
   its line 181. Keep it narrow: only the properties that actually lose.
   ------------------------------------------------------------------ */
body:not(.home):not(.front-page) .hth-sp p.sp-eyebrow {
  font-size: 0.7rem !important;
  line-height: 1.4 !important;
  color: var(--sp-gold) !important;
}

body:not(.home):not(.front-page) .hth-sp .hth-feeding-standard p.sp-eyebrow {
  color: color-mix(in srgb, var(--sp-blue) 45%, var(--sp-pearl)) !important;
}

body:not(.home):not(.front-page) .hth-sp p.sp-note {
  font-size: 1.08rem !important;
  line-height: 1.62 !important;
}

body:not(.home):not(.front-page) .hth-sp > section:first-child p.sp-note {
  font-size: 1.2rem !important;
}

body:not(.home):not(.front-page) .hth-sp .hth-feeding-standard p.sp-note {
  font-size: 0.95rem !important;
}

body:not(.home):not(.front-page) .hth-sp p.sp-src,
body:not(.home):not(.front-page) .hth-sp .sp-row > p {
  font-size: 0.73rem !important;
  line-height: 1.55 !important;
  color: var(--sp-quiet) !important;
}

body:not(.home):not(.front-page) .hth-sp p.sp-foot {
  font-size: 0.74rem !important;
  line-height: 1.6 !important;
  color: var(--sp-quiet) !important;
}

body:not(.home):not(.front-page) .hth-sp .sp-list li {
  font-size: 0.85rem !important;
  line-height: 1.5 !important;
  color: var(--sp-quiet) !important;
}

body:not(.home):not(.front-page) .hth-sp .sp-sources li {
  font-size: 0.82rem !important;
  line-height: 1.55 !important;
  color: var(--sp-quiet) !important;
}

body:not(.home):not(.front-page) .hth-sp figcaption {
  font-size: 0.75rem !important;
  line-height: 1.55 !important;
}

@media (max-width: 640px) {
  body:not(.home):not(.front-page) .hth-sp p.sp-note {
    font-size: 1.02rem !important;
  }

  body:not(.home):not(.front-page) .hth-sp > section:first-child p.sp-note {
    font-size: 1.08rem !important;
  }
}
