/* 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; }
