/* ==========================================================================
   Hollow Road Journal
   --------------------------------------------------------------------------
   Every value below was measured from the pages already built for the new
   Hollow Road brand, so the Journal inherits the house style rather than
   inventing a second one.

   One deliberate change: article body text is set at a line-height of 1.72
   rather than the 1.4 used elsewhere on the site. 1.4 is right for a short
   block on a landing page and tiring over two thousand words.
   ========================================================================== */

.hrj {
	--linen:        #F6F0E4;  /* the page */
	--linen-warm:   #F4ECDB;  /* header */
	--linen-raised: #EFE5D0;  /* panels and cards */
	--linen-light:  #F1E9D8;  /* text on dark */

	--ink:          #332A1E;  /* headings, body */
	--ink-soft:     #5F5340;  /* standfirst, secondary */
	--ink-muted:    #877A63;  /* meta, captions */

	--olive:        #65704A;  /* the pill */
	--olive-deep:   #4C563A;  /* script accents */
	--bark:         #38301F;  /* dark sections */
	--tan:          #8A6A46;  /* small caps labels */
	--gold:         #C8992F;  /* active nav, links */

	--rule:         rgba(51, 42, 30, 0.14);
	--rule-soft:    rgba(51, 42, 30, 0.08);

	/*
	 * "Lora" first is deliberate and it is not a second heading font.
	 *
	 * The stylesheet loaded alongside this one asks Google for Lora subset to a
	 * single character: the capital J. Because that face covers nothing else,
	 * the browser uses Lora for J and falls straight through to Fraunces for
	 * every other letter.
	 *
	 * Why: Fraunces draws its capital J with a curved tail below the baseline,
	 * which hangs awkwardly under words like "Journal" at display sizes.
	 *
	 * To undo it, delete "Lora" from the line below. Nothing else changes, and
	 * if the subset ever fails to load the J simply reverts to Fraunces on its
	 * own.
	 */
	--display: "Lora", "Fraunces", Georgia, "Times New Roman", serif;
	--body:    "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--meta:    "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--script:  "Caveat", "Segoe Script", cursive;

	--measure: 42rem;   /* ~68 characters at 19px */
	--wrap:    72rem;

	--step:    clamp(2.5rem, 6vw, 5rem);

	background: var(--linen);
	color: var(--ink);
	font-family: var(--body);
	font-weight: 300;
	font-size: 19px;
	line-height: 1.72;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	margin: 0;
}

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

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

.hrj-page { overflow-x: hidden; }

.hrj-wrap {
	width: 100%;
	max-width: var(--wrap);
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.hrj-measure {
	width: 100%;
	max-width: var(--measure);
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 5vw, 2rem);
}

.hrj-visually-hidden {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0);
	white-space: nowrap; border: 0;
}

.hrj-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--bark);
	color: var(--linen-light);
	padding: 0.85rem 1.4rem;
	z-index: 999;
	font-family: var(--meta);
	text-decoration: none;
}
.hrj-skip:focus { left: 1rem; top: 1rem; }

.hrj :focus-visible {
	outline: 2px solid var(--olive);
	outline-offset: 3px;
	border-radius: 2px;
}

/* --------------------------------------------------------------------------
   Type
   -------------------------------------------------------------------------- */

.hrj h1, .hrj h2, .hrj h3, .hrj h4 {
	font-family: var(--display);
	font-weight: 500;
	color: var(--ink);
	line-height: 1.14;
	letter-spacing: -0.01em;
	margin: 0;
	text-wrap: balance;
}

.hrj a { color: inherit; }

.hrj-eyebrow {
	display: block;
	font-family: var(--display);
	font-weight: 500;
	font-size: 0.72rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--tan);
	margin: 0 0 0.9rem;
}

.hrj-eyebrow--link { text-decoration: none; }
.hrj-eyebrow--link:hover { color: var(--olive); }

.hrj-eyebrow--rule {
	display: flex;
	align-items: center;
	gap: 1rem;
	white-space: nowrap;
}
.hrj-eyebrow--rule::after {
	content: "";
	flex: 1 1 auto;
	height: 1px;
	background: var(--rule);
}

.hrj-crumb {
	font-family: var(--meta);
	font-size: 0.78rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink-muted);
	margin: 0 0 1.5rem;
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
}
.hrj-crumb a { color: var(--gold); text-decoration: none; }
.hrj-crumb a:hover { text-decoration: underline; text-underline-offset: 3px; }

.hrj-signature {
	font-family: var(--script);
	font-size: 1.35rem;
	line-height: 1.3;
	color: var(--olive-deep);
	text-align: center;
	margin: 2rem 0 2.5rem;
}
.hrj-signature span {
	display: block;
	font-size: 2.5rem;
	line-height: 1.1;
	margin-top: 0.15rem;
}

.hrj-ornament {
	color: var(--rule);
	margin: var(--step) auto;
	max-width: 12rem;
}
.hrj-ornament svg { width: 100%; height: auto; color: rgba(51, 42, 30, 0.3); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.hrj-header {
	background: var(--linen-warm);
	border-bottom: 1px solid var(--rule-soft);
	position: sticky;
	top: 0;
	z-index: 40;
}
.admin-bar .hrj-header { top: 32px; }

.hrj-header__inner {
	max-width: var(--wrap);
	margin-inline: auto;
	padding: 0.9rem clamp(1.25rem, 5vw, 2.5rem);
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.hrj-wordmark {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	text-decoration: none;
	margin-right: auto;
}
.hrj-logo-img { width: 42px; height: auto; border-radius: 50%; }
.hrj-wordmark__name {
	display: block;
	font-family: var(--display);
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--gold);
	line-height: 1.05;
}
.hrj-wordmark__sub {
	display: block;
	font-family: var(--meta);
	font-size: 0.62rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.hrj-nav__list {
	list-style: none;
	display: flex;
	gap: clamp(0.9rem, 2.5vw, 1.9rem);
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}
.hrj-nav__list a {
	font-family: var(--body);
	font-size: 0.98rem;
	font-weight: 400;
	color: var(--gold);
	text-decoration: none;
	padding-bottom: 2px;
	border-bottom: 1px solid transparent;
}
.hrj-nav__list a:hover { border-bottom-color: currentColor; }
.hrj-nav__list .is-current > a,
.hrj-nav__list .current-menu-item > a { color: var(--olive); border-bottom-color: currentColor; }

.hrj-pill {
	display: inline-block;
	font-family: var(--body);
	font-size: 0.92rem;
	line-height: 1.2;
	text-decoration: none;
	padding: 0.72rem 1.35rem;
	border-radius: 999px;
	border: 1px solid var(--olive);
	color: var(--olive);
	background: transparent;
	transition: background-color 0.2s ease, color 0.2s ease;
	text-align: center;
}
.hrj-pill:hover { background: var(--olive); color: var(--linen-light); }
.hrj-pill--solid { background: var(--olive); color: var(--linen-light); border-color: var(--olive); }
.hrj-pill--solid:hover { background: var(--olive-deep); border-color: var(--olive-deep); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hrj-hero {
	padding: clamp(3rem, 9vw, 6.5rem) 0 clamp(2rem, 5vw, 3.5rem);
	text-align: center;
}
.hrj-hero__inner {
	max-width: 46rem;
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}
.hrj-hero .hrj-eyebrow--rule,
.hrj-hero .hrj-crumb { justify-content: center; }
.hrj-hero .hrj-eyebrow--rule::after,
.hrj-hero .hrj-eyebrow--rule::before {
	content: "";
	flex: 0 0 3rem;
	height: 1px;
	background: var(--rule);
}

.hrj-hero__title {
	font-size: clamp(2.6rem, 7vw, 4rem);
	margin: 0.4rem 0 1.2rem;
}
.hrj-hero__title--archive { font-size: clamp(2.2rem, 5.5vw, 3.2rem); }

.hrj-hero__intro {
	font-size: 1.1rem;
	line-height: 1.68;
	color: var(--ink-soft);
	max-width: 34rem;
	margin-inline: auto;
}
.hrj-hero__intro p { margin: 0 0 0.9rem; }
.hrj-hero__intro p:last-child { margin-bottom: 0; }

.hrj-hero__icon { display: block; color: var(--tan); margin-bottom: 0.75rem; }
.hrj-hero__icon .hrj-icon { width: 34px; height: 34px; margin-inline: auto; }

.hrj-hero--archive, .hrj-hero--search { padding-top: clamp(2.5rem, 6vw, 4rem); }

.hrj-result-count {
	font-family: var(--meta);
	color: var(--ink-muted);
	font-size: 0.95rem;
	margin: 0 0 0.5rem;
}

/* --------------------------------------------------------------------------
   Search
   -------------------------------------------------------------------------- */

.hrj-search {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	background: #FFFDF8;
	border: 1px solid var(--rule);
	border-radius: 999px;
	padding: 0.45rem 0.5rem 0.45rem 1.35rem;
	max-width: 40rem;
	margin: 1.5rem auto 0;
	box-shadow: 0 1px 2px rgba(51, 42, 30, 0.04);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.hrj-search:focus-within {
	border-color: var(--olive);
	box-shadow: 0 2px 14px rgba(101, 112, 74, 0.13);
}
.hrj-search__icon { width: 20px; height: 20px; flex: none; color: var(--ink-muted); }
.hrj-search__field {
	flex: 1 1 auto;
	min-width: 0;
	border: 0;
	background: transparent;
	font-family: var(--body);
	font-size: 1rem;
	font-weight: 300;
	color: var(--ink);
	padding: 0.6rem 0;
}
.hrj-search__field::placeholder { color: var(--ink-muted); opacity: 1; }
.hrj-search__field:focus { outline: none; }
.hrj-search__field::-webkit-search-cancel-button { -webkit-appearance: none; }

.hrj-search__submit {
	flex: none;
	border: 0;
	cursor: pointer;
	background: var(--olive);
	color: var(--linen-light);
	font-family: var(--body);
	font-size: 0.92rem;
	padding: 0.72rem 1.5rem;
	border-radius: 999px;
	transition: background-color 0.2s ease;
}
.hrj-search__submit:hover { background: var(--olive-deep); }

.hrj-search--inline { margin-top: 1.75rem; }

.hrj-search__hint {
	font-family: var(--meta);
	font-size: 0.86rem;
	color: var(--ink-muted);
	text-align: center;
	margin: 0.85rem 0 0;
}
.hrj-search__hint a {
	font-family: var(--script);
	font-size: 1.15rem;
	color: var(--olive-deep);
	text-decoration: none;
}
.hrj-search__hint a:hover { text-decoration: underline; text-underline-offset: 3px; }

.hrj-mark {
	background: rgba(200, 153, 47, 0.22);
	color: inherit;
	padding: 0 0.12em;
	border-radius: 2px;
}

/* --------------------------------------------------------------------------
   Room chips
   -------------------------------------------------------------------------- */

.hrj-rooms-strip {
	padding: 0 clamp(1.25rem, 5vw, 2.5rem) clamp(2rem, 5vw, 3rem);
	max-width: var(--wrap);
	margin-inline: auto;
}
.hrj-rooms-strip--flush { padding-inline: 0; margin-top: var(--step); }

.hrj-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.6rem;
}

.hrj-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.6rem 1.15rem;
	border: 1px solid var(--rule);
	border-radius: 999px;
	background: rgba(255, 253, 248, 0.7);
	text-decoration: none;
	font-family: var(--body);
	font-size: 0.95rem;
	color: var(--ink-soft);
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.hrj-chip:hover { border-color: var(--olive); color: var(--ink); }
.hrj-chip.is-current {
	background: var(--olive);
	border-color: var(--olive);
	color: var(--linen-light);
}
.hrj-chip.is-empty { opacity: 0.62; }
.hrj-chip .hrj-icon { width: 17px; height: 17px; flex: none; }

.hrj-chip__count {
	font-family: var(--meta);
	font-style: normal;
	font-size: 0.72rem;
	color: var(--ink-muted);
}
.hrj-chip.is-current .hrj-chip__count { color: rgba(241, 233, 216, 0.75); }
.hrj-chip__state {
	font-family: var(--script);
	font-style: normal;
	font-size: 0.95rem;
	color: var(--ink-muted);
}

/* --------------------------------------------------------------------------
   Entries
   -------------------------------------------------------------------------- */

.hrj-lead { margin-bottom: var(--step); }
.hrj-list { display: block; }

.hrj-entry {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
	padding: clamp(1.75rem, 4vw, 2.75rem) 0;
	border-bottom: 1px solid var(--rule-soft);
}
.hrj-list .hrj-entry:last-child { border-bottom: 0; }

/* Alternate the image side so a long list never marches.
   The column widths are mirrored too, so the photograph keeps the same size
   whichever side it lands on. */
.hrj-list .hrj-entry:nth-child(even) {
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}
.hrj-list .hrj-entry:nth-child(even) .hrj-entry__media { order: 2; }

.hrj-entry--noimg { grid-template-columns: 1fr; }

.hrj-entry--lead {
	grid-template-columns: 1fr;
	gap: clamp(1.5rem, 3vw, 2.25rem);
	border-bottom: 0;
	padding-bottom: 0;
	text-align: center;
}
.hrj-entry--lead .hrj-entry__body { max-width: 40rem; margin-inline: auto; }
.hrj-entry--lead .hrj-entry__meta { justify-content: center; }
.hrj-entry--lead .hrj-entry__title { font-size: clamp(2rem, 4.5vw, 2.9rem); }
.hrj-entry--lead .hrj-entry__excerpt { font-size: 1.08rem; }

.hrj-entry__media {
	display: block;
	overflow: hidden;
	border-radius: 3px;
	background: var(--linen-raised);
}
.hrj-entry__img {
	width: 100%;
	transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hrj-entry:hover .hrj-entry__img { transform: scale(1.025); }

.hrj-entry__meta {
	display: flex;
	align-items: baseline;
	gap: 0.85rem;
	flex-wrap: wrap;
	margin: 0 0 0.7rem;
}
.hrj-entry__meta .hrj-eyebrow { margin: 0; }
.hrj-entry__meta time {
	font-family: var(--meta);
	font-size: 0.8rem;
	color: var(--ink-muted);
	letter-spacing: 0.03em;
}

.hrj-entry__title {
	font-size: clamp(1.5rem, 2.6vw, 1.95rem);
	margin: 0 0 0.65rem;
}
.hrj-entry__title a { text-decoration: none; }
.hrj-entry__title a:hover { color: var(--olive); }

.hrj-entry__excerpt {
	color: var(--ink-soft);
	font-size: 1rem;
	line-height: 1.68;
	margin: 0 0 1rem;
}

.hrj-readmore {
	font-family: var(--body);
	font-size: 0.9rem;
	color: var(--olive);
	text-decoration: none;
	border-bottom: 1px solid rgba(101, 112, 74, 0.4);
	padding-bottom: 2px;
}
.hrj-readmore:hover { border-bottom-color: var(--olive); }
.hrj-readmore__room { color: var(--ink-muted); }

/* --------------------------------------------------------------------------
   The article
   -------------------------------------------------------------------------- */

.hrj-post__header {
	padding: clamp(2.5rem, 7vw, 4.5rem) 0 clamp(1.75rem, 4vw, 2.75rem);
	text-align: center;
}
.hrj-post__header .hrj-crumb { justify-content: center; }

.hrj-post__title {
	font-size: clamp(2.3rem, 6vw, 3.75rem);
	margin: 0 0 1.1rem;
}

.hrj-post__standfirst {
	font-size: clamp(1.1rem, 2.2vw, 1.32rem);
	line-height: 1.6;
	color: var(--ink-soft);
	margin: 0 auto 1.6rem;
	max-width: 34rem;
	text-wrap: pretty;
}

.hrj-post__byline {
	font-family: var(--meta);
	font-size: 0.78rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--ink-muted);
	display: flex;
	justify-content: center;
	gap: 0.7rem;
	flex-wrap: wrap;
	margin: 0;
}
.hrj-post__author { color: var(--ink-soft); }
.hrj-post__updated { font-style: italic; text-transform: none; letter-spacing: 0.04em; }

.hrj-post__feature {
	margin: 0 0 clamp(2rem, 5vw, 3.25rem);
	max-width: 78rem;
	margin-inline: auto;
	padding-inline: clamp(0rem, 3vw, 2.5rem);
}
.hrj-post__feature img { width: 100%; border-radius: 3px; }
.hrj-post__feature figcaption {
	font-family: var(--meta);
	font-size: 0.83rem;
	color: var(--ink-muted);
	text-align: center;
	margin-top: 0.85rem;
	font-style: italic;
}

/* Prose ------------------------------------------------------------------ */

.hrj-prose { font-size: 19px; line-height: 1.72; color: var(--ink); }
.hrj-prose > * { margin-block: 0 1.5rem; }
.hrj-prose > *:last-child { margin-bottom: 0; }

.hrj-prose p { text-wrap: pretty; }

.hrj-prose h2 {
	font-size: clamp(1.7rem, 3.4vw, 2.15rem);
	margin-top: clamp(2.75rem, 6vw, 3.75rem);
	margin-bottom: 1rem;
}
.hrj-prose h3 {
	font-size: clamp(1.3rem, 2.6vw, 1.55rem);
	margin-top: clamp(2rem, 4vw, 2.75rem);
	margin-bottom: 0.75rem;
}
.hrj-prose h4 {
	font-family: var(--display);
	font-size: 1rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--tan);
	margin-top: 2.25rem;
	margin-bottom: 0.65rem;
}

.hrj-prose a {
	color: var(--olive);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	text-decoration-color: rgba(101, 112, 74, 0.4);
}
.hrj-prose a:hover { text-decoration-color: var(--olive); }

.hrj-prose strong { font-weight: 500; color: var(--ink); }

.hrj-prose ul, .hrj-prose ol { padding-left: 1.4rem; }
.hrj-prose li { margin-bottom: 0.6rem; }
.hrj-prose li::marker { color: var(--tan); }

.hrj-prose blockquote {
	margin: clamp(2rem, 5vw, 2.75rem) 0;
	padding: 0 0 0 1.75rem;
	border-left: 1px solid var(--tan);
	font-family: var(--display);
	font-style: italic;
	font-size: 1.28rem;
	line-height: 1.55;
	color: var(--ink-soft);
}
.hrj-prose blockquote p:last-child { margin-bottom: 0; }
.hrj-prose blockquote cite {
	display: block;
	font-family: var(--meta);
	font-style: normal;
	font-size: 0.8rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-muted);
	margin-top: 0.9rem;
}

.hrj-prose figure { margin-inline: 0; }
.hrj-prose figure img { border-radius: 3px; }
.hrj-prose figcaption {
	font-family: var(--meta);
	font-size: 0.83rem;
	font-style: italic;
	color: var(--ink-muted);
	margin-top: 0.7rem;
	text-align: center;
}

.hrj-prose hr {
	border: 0;
	height: 1px;
	background: var(--rule);
	margin-block: clamp(2.5rem, 6vw, 3.5rem);
}

.hrj-prose table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
}
.hrj-prose th, .hrj-prose td {
	text-align: left;
	padding: 0.7rem 0.6rem;
	border-bottom: 1px solid var(--rule-soft);
}
.hrj-prose th {
	font-family: var(--display);
	font-weight: 500;
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--tan);
}

/* Let full-width and wide blocks breathe out of the measure. */
.hrj-prose .alignwide { width: min(56rem, 92vw); margin-inline: calc(50% - min(28rem, 46vw)); }
.hrj-prose .alignfull { width: 100vw; margin-inline: calc(50% - 50vw); max-width: 100vw; }

/* Article footer ---------------------------------------------------------- */

.hrj-post__footer { padding-bottom: clamp(1.5rem, 4vw, 2.5rem); }

.hrj-tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.75rem;
}
.hrj-tags .hrj-eyebrow { margin: 0 0.5rem 0 0; }
.hrj-tag {
	font-family: var(--meta);
	font-size: 0.82rem;
	padding: 0.35rem 0.85rem;
	border: 1px solid var(--rule);
	border-radius: 999px;
	color: var(--ink-soft);
	text-decoration: none;
}
.hrj-tag:hover { border-color: var(--olive); color: var(--olive); }

.hrj-backlink {
	display: flex;
	justify-content: space-between;
	gap: 1.25rem;
	flex-wrap: wrap;
	font-family: var(--body);
	font-size: 0.95rem;
	margin: 0;
}
.hrj-backlink a { color: var(--olive); text-decoration: none; }
.hrj-backlink a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Previous / next --------------------------------------------------------- */

.hrj-adjacent {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
	gap: 1px;
	background: var(--rule-soft);
	border-block: 1px solid var(--rule-soft);
	margin-top: var(--step);
}
.hrj-adjacent__link {
	background: var(--linen);
	padding: 1.75rem clamp(1.25rem, 3vw, 2rem);
	text-decoration: none;
	display: block;
	transition: background-color 0.2s ease;
}
.hrj-adjacent__link:hover { background: var(--linen-raised); }
.hrj-adjacent__link--next { text-align: right; }
.hrj-adjacent__title {
	font-family: var(--display);
	font-size: 1.15rem;
	line-height: 1.3;
	color: var(--ink);
	display: block;
}

/* Related ----------------------------------------------------------------- */

.hrj-related { margin-top: var(--step); }
.hrj-related__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
	gap: clamp(1.25rem, 3vw, 2.25rem);
}
.hrj-related__item { text-decoration: none; display: block; }
.hrj-related__media {
	display: block;
	overflow: hidden;
	border-radius: 3px;
	margin-bottom: 0.9rem;
	background: var(--linen-raised);
}
.hrj-related__media img { width: 100%; transition: transform 0.7s cubic-bezier(0.2,0.8,0.2,1); }
.hrj-related__item:hover img { transform: scale(1.03); }
.hrj-related__item .hrj-eyebrow { margin-bottom: 0.4rem; }
.hrj-related__title {
	font-family: var(--display);
	font-size: 1.18rem;
	line-height: 1.3;
	color: var(--ink);
	display: block;
}
.hrj-related__item:hover .hrj-related__title { color: var(--olive); }

/* --------------------------------------------------------------------------
   The Tuesday Letter card
   -------------------------------------------------------------------------- */

.hrj-letter {
	background: var(--bark);
	color: var(--linen-light);
	border-radius: 4px;
	padding: clamp(2.25rem, 5vw, 3.25rem);
	text-align: center;
	margin-block: var(--step);
}
.hrj-letter .hrj-eyebrow { color: rgba(241, 233, 216, 0.6); }
.hrj-letter__text {
	font-family: var(--display);
	font-size: clamp(1.15rem, 2.6vw, 1.5rem);
	line-height: 1.5;
	max-width: 32rem;
	margin: 0 auto 1.6rem;
	color: var(--linen-light);
}
.hrj-letter .hrj-pill--solid {
	background: var(--linen-light);
	color: var(--bark);
	border-color: var(--linen-light);
}
.hrj-letter .hrj-pill--solid:hover { background: #fff; border-color: #fff; }

/* --------------------------------------------------------------------------
   Empty states & pagination
   -------------------------------------------------------------------------- */

.hrj-empty {
	text-align: center;
	padding-block: clamp(2rem, 6vw, 4rem);
	max-width: 34rem;
	margin-inline: auto;
}
.hrj-empty h2 { font-size: clamp(1.6rem, 3.5vw, 2.1rem); margin-bottom: 0.9rem; }
.hrj-empty p { color: var(--ink-soft); }

.hrj .pagination,
.hrj .navigation.pagination {
	margin-block: var(--step);
	display: flex;
	justify-content: center;
}
.hrj .nav-links {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	flex-wrap: wrap;
	font-family: var(--meta);
	font-size: 0.92rem;
}
.hrj .nav-links .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.4rem;
	height: 2.4rem;
	padding-inline: 0.75rem;
	border-radius: 999px;
	text-decoration: none;
	color: var(--ink-soft);
	border: 1px solid transparent;
}
.hrj .nav-links .page-numbers:hover { border-color: var(--rule); }
.hrj .nav-links .page-numbers.current {
	background: var(--olive);
	color: var(--linen-light);
}
.hrj .nav-links .prev,
.hrj .nav-links .next { color: var(--olive); }

.hrj-linkpages {
	margin-top: 2.5rem;
	font-family: var(--meta);
	font-size: 0.9rem;
	display: flex;
	gap: 0.6rem;
	align-items: center;
	flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.hrj-footer {
	background: var(--linen-warm);
	border-top: 1px solid var(--rule-soft);
	margin-top: var(--step);
	padding: clamp(2.75rem, 6vw, 4.5rem) 0 2rem;
}
.hrj-footer__inner {
	max-width: var(--wrap);
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 5vw, 2.5rem);
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) repeat(auto-fit, minmax(9rem, 1fr));
	gap: clamp(2rem, 5vw, 3.5rem);
}
.hrj-footer__brand p {
	color: var(--ink-soft);
	font-size: 0.98rem;
	max-width: 24rem;
	margin: 1rem 0 1.5rem;
}
.hrj-footer__col ul { list-style: none; margin: 0; padding: 0; }
.hrj-footer__col li { margin-bottom: 0.55rem; }
.hrj-footer__col a {
	text-decoration: none;
	color: var(--ink-soft);
	font-size: 0.96rem;
}
.hrj-footer__col a:hover { color: var(--olive); }

.hrj-footer__foot {
	max-width: var(--wrap);
	margin-inline: auto;
	padding: 2.5rem clamp(1.25rem, 5vw, 2.5rem) 0;
	margin-top: 2.5rem;
	border-top: 1px solid var(--rule-soft);
	text-align: center;
	font-family: var(--meta);
	font-size: 0.85rem;
	color: var(--ink-muted);
}
.hrj-footer__foot p { margin: 0 0 0.5rem; }
.hrj-verse { font-family: var(--display); font-style: italic; font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Comments (kept quiet)
   -------------------------------------------------------------------------- */

.hrj-comments { max-width: var(--measure); margin-inline: auto; }
.hrj-comments h2, .hrj-comments h3 { font-size: 1.3rem; }
.hrj-comments input[type="text"],
.hrj-comments input[type="email"],
.hrj-comments input[type="url"],
.hrj-comments textarea {
	width: 100%;
	font-family: var(--body);
	font-size: 1rem;
	padding: 0.7rem 0.9rem;
	border: 1px solid var(--rule);
	border-radius: 3px;
	background: #FFFDF8;
	color: var(--ink);
}
.hrj-comments .submit {
	background: var(--olive);
	color: var(--linen-light);
	border: 0;
	border-radius: 999px;
	padding: 0.75rem 1.6rem;
	font-family: var(--body);
	cursor: pointer;
}

/* --------------------------------------------------------------------------
   Smaller screens
   -------------------------------------------------------------------------- */

@media (max-width: 900px) {
	.hrj-header__inner { gap: 0.85rem; }
	.hrj-nav { order: 3; width: 100%; }
	.hrj-nav__list { justify-content: center; gap: 1.1rem; }
	.hrj-pill { padding: 0.6rem 1.1rem; font-size: 0.86rem; }
}

@media (max-width: 720px) {
	.hrj { font-size: 18px; }
	.hrj-prose { font-size: 18px; line-height: 1.75; }

	.hrj-entry {
		grid-template-columns: 1fr;
		gap: 1.15rem;
	}
	.hrj-list .hrj-entry:nth-child(even) .hrj-entry__media { order: 0; }

	.hrj-header { position: static; }
	.hrj-backlink { flex-direction: column; gap: 0.6rem; }
	.hrj-adjacent__link--next { text-align: left; }
	.hrj-footer__inner { grid-template-columns: 1fr; }
	.hrj-post__feature { padding-inline: 0; }
	.hrj-search { padding-left: 1rem; flex-wrap: wrap; }
	.hrj-search__submit { width: 100%; }
	.hrj-signature span { font-size: 2.1rem; }
}

@media (prefers-reduced-motion: reduce) {
	.hrj *, .hrj *::before, .hrj *::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
}

/* Print: the article, and nothing else. */
@media print {
	.hrj-header, .hrj-footer, .hrj-letter, .hrj-related,
	.hrj-adjacent, .hrj-search, .hrj-chips, .hrj-rooms-strip { display: none !important; }
	.hrj { background: #fff; font-size: 11pt; }
	.hrj-measure { max-width: none; padding: 0; }
}

/* ==========================================================================
   The content engine
   Everything below serves discovery: badges, films, recipes, related work.
   Same palette, same type, no new decisions.
   ========================================================================== */

/* Badges — what a thing is, at a glance ---------------------------------- */

.hrj-badges { display: inline-flex; gap: .4rem; flex-wrap: wrap; vertical-align: middle; }

.hrj-badge {
	display: inline-flex;
	align-items: center;
	gap: .3rem;
	font-family: var(--meta);
	font-size: .68rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: .22rem .6rem;
	border-radius: 999px;
	border: 1px solid var(--rule);
	color: var(--ink-soft);
	background: rgba(255, 253, 248, .6);
	white-space: nowrap;
}
.hrj-badge .hrj-icon { width: 13px; height: 13px; }
.hrj-badge--recipes     { border-color: rgba(138,106,70,.45); color: var(--tan); }
.hrj-badge--guides      { border-color: rgba(101,112,74,.45); color: var(--olive-deep); }
.hrj-badge--reflections { border-color: rgba(51,42,30,.28); }
.hrj-badge--video       { background: var(--olive); border-color: var(--olive); color: var(--linen-light); }

/* Discovery rows --------------------------------------------------------- */

.hrj-discover { margin-block: var(--step); display: grid; gap: clamp(1.75rem, 4vw, 2.75rem); }
.hrj-discover__block .hrj-chips { justify-content: flex-start; margin-top: 1rem; }
.hrj-chip--sm { font-size: .86rem; padding: .42rem .85rem; }

/* Facets on the search results page -------------------------------------- */

.hrj-facets { margin-block: 1.5rem var(--step); }
.hrj-facets__row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem; }

/* Seasonal + small cards ------------------------------------------------- */

.hrj-seasonal { margin-block: var(--step); }
.hrj-seasonal__grid,
.hrj-wander__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
	gap: clamp(1.25rem, 3vw, 2.25rem);
	margin-top: 1.5rem;
}

.hrj-mini { display: block; text-decoration: none; }
.hrj-mini__media {
	display: block; overflow: hidden; border-radius: 3px;
	margin-bottom: .85rem; background: var(--linen-raised);
}
.hrj-mini__media img { width: 100%; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.hrj-mini:hover img { transform: scale(1.03); }
.hrj-mini__title {
	display: block; margin-top: .5rem;
	font-family: var(--display); font-size: 1.15rem; line-height: 1.3; color: var(--ink);
}
.hrj-mini:hover .hrj-mini__title { color: var(--olive); }

/* The film --------------------------------------------------------------- */

.hrj-video { margin: 0 0 clamp(2rem, 5vw, 3rem); }
.hrj-video__frame {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 3px;
	background: var(--bark);
	cursor: pointer;
}
.hrj-video__poster { width: 100%; height: 100%; object-fit: cover; }
.hrj-video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.hrj-video__play {
	position: absolute; inset: 0;
	display: grid; place-items: center;
	background: rgba(51, 42, 30, .18);
	border: 0; cursor: pointer;
	transition: background-color .25s ease;
}
.hrj-video__frame:hover .hrj-video__play { background: rgba(51, 42, 30, .3); }
.hrj-video__play svg { width: 74px; height: auto; }
.hrj-video__play-bg { fill: rgba(56, 48, 31, .82); transition: fill .25s ease; }
.hrj-video__frame:hover .hrj-video__play-bg { fill: var(--olive); }

.hrj-video figcaption {
	font-family: var(--meta); font-size: .85rem; color: var(--ink-muted);
	margin-top: .8rem; text-align: center;
}
.hrj-video figcaption a { color: var(--olive); }

/* Watch-this-next card --------------------------------------------------- */

.hrj-watch { display: block; text-decoration: none; }
.hrj-watch__media {
	position: relative; display: block; overflow: hidden;
	border-radius: 3px; margin-bottom: .9rem; background: var(--bark);
}
.hrj-watch__media img { width: 100%; }
.hrj-watch__badge {
	position: absolute; inset: 0; display: grid; place-items: center;
	background: rgba(51, 42, 30, .2); color: var(--linen-light);
}
.hrj-watch__badge svg { width: 44px; height: 44px; }
.hrj-watch__title {
	display: block; margin-top: .35rem;
	font-family: var(--display); font-size: 1.18rem; line-height: 1.3; color: var(--ink);
}
.hrj-watch:hover .hrj-watch__title { color: var(--olive); }

/* Keep wandering --------------------------------------------------------- */

.hrj-wander { margin-top: var(--step); }
.hrj-wander__title {
	font-size: clamp(1.6rem, 3.4vw, 2.1rem);
	text-align: center;
	margin-bottom: .5rem;
}
.hrj-wander__list { list-style: none; margin: 0; padding: 0; }
.hrj-wander__list li { border-bottom: 1px solid var(--rule-soft); }
.hrj-wander__list li:last-child { border-bottom: 0; }
.hrj-wander__list a {
	display: flex; flex-direction: column; gap: .4rem;
	padding: .85rem 0; text-decoration: none;
}
.hrj-wander__name {
	font-family: var(--display); font-size: 1.08rem; line-height: 1.35; color: var(--ink);
}
.hrj-wander__list a:hover .hrj-wander__name { color: var(--olive); }
.hrj-wander__feature { display: block; text-decoration: none; }
.hrj-wander__media {
	display: block; overflow: hidden; border-radius: 3px;
	margin-bottom: .75rem; background: var(--linen-raised);
}
.hrj-wander__media img { width: 100%; }

/* Topics ----------------------------------------------------------------- */

.hrj-topics { margin-block: var(--step); }
.hrj-topics ul {
	list-style: none; margin: 1.25rem 0 0; padding: 0;
	display: flex; flex-wrap: wrap; gap: .5rem .75rem;
}
.hrj-topics a {
	display: inline-flex; align-items: baseline; gap: .4rem;
	font-family: var(--meta); font-size: .92rem;
	color: var(--ink-soft); text-decoration: none;
	border-bottom: 1px solid var(--rule);
	padding-bottom: 2px;
}
.hrj-topics a:hover { color: var(--olive); border-bottom-color: var(--olive); }
.hrj-topics a em { font-style: normal; font-size: .72rem; color: var(--ink-muted); }

.hrj-inline-topics {
	display: flex; align-items: center; flex-wrap: wrap; gap: .55rem;
	margin: 0 0 1.25rem; font-family: var(--meta); font-size: .9rem;
}
.hrj-inline-topics .hrj-eyebrow { margin: 0 .3rem 0 0; }
.hrj-inline-topics a { color: var(--olive); text-decoration: underline; text-underline-offset: 3px; }

/* Jump links, share, notes ----------------------------------------------- */

.hrj-jump {
	margin: 1.5rem 0 0;
	font-family: var(--meta); font-size: .88rem;
	display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap;
}
.hrj-jump a {
	color: var(--olive); text-decoration: none;
	border: 1px solid rgba(101,112,74,.4);
	border-radius: 999px; padding: .35rem .95rem;
}
.hrj-jump a:hover { background: var(--olive); color: var(--linen-light); border-color: var(--olive); }

.hrj-share {
	display: flex; align-items: center; flex-wrap: wrap; gap: .75rem;
	margin: 0 0 1.75rem;
	font-family: var(--meta); font-size: .88rem;
}
.hrj-share .hrj-eyebrow { margin: 0 .25rem 0 0; }
.hrj-share a, .hrj-share button {
	color: var(--ink-soft); text-decoration: none; background: none;
	border: 0; border-bottom: 1px solid var(--rule);
	padding: 0 0 2px; cursor: pointer; font: inherit;
}
.hrj-share a:hover, .hrj-share button:hover { color: var(--olive); border-bottom-color: var(--olive); }

.hrj-note {
	font-family: var(--meta); font-size: .9rem;
	color: var(--ink-muted); font-style: italic;
}

/* The pinnable image is for Pinterest, never for the reader. */
.hrj-pin-hidden { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* WP Recipe Maker, dressed as Hollow Road -------------------------------- */

.hrj-recipe-anchor { scroll-margin-top: 6rem; }

.hrj .wprm-recipe-container {
	background: var(--linen-raised);
	border: 1px solid var(--rule);
	border-radius: 4px;
	padding: clamp(1.5rem, 4vw, 2.5rem);
	margin-block: clamp(2.5rem, 6vw, 3.5rem);
	font-family: var(--body);
	color: var(--ink);
}
.hrj .wprm-recipe-name,
.hrj .wprm-recipe-header {
	font-family: var(--display) !important;
	font-weight: 500 !important;
	color: var(--ink) !important;
	letter-spacing: -.005em;
}
.hrj .wprm-recipe-name { font-size: clamp(1.6rem, 3.2vw, 2rem) !important; }
.hrj .wprm-recipe-header {
	font-size: .8rem !important;
	letter-spacing: .2em !important;
	text-transform: uppercase !important;
	color: var(--tan) !important;
	margin-top: 1.75rem !important;
}
.hrj .wprm-recipe-meta-container,
.hrj .wprm-recipe-details-container { font-family: var(--meta); font-size: .9rem; color: var(--ink-soft); }
.hrj .wprm-recipe-ingredient,
.hrj .wprm-recipe-instruction { margin-bottom: .55rem; line-height: 1.65; }
.hrj .wprm-recipe-ingredient-name { font-weight: 500; }
.hrj .wprm-recipe-print,
.hrj .wprm-recipe-jump,
.hrj .wprm-recipe-pin,
.hrj .wprm-jump-to-recipe-shortcode {
	background: transparent !important;
	border: 1px solid var(--olive) !important;
	color: var(--olive) !important;
	border-radius: 999px !important;
	padding: .5rem 1.1rem !important;
	font-family: var(--body) !important;
	font-size: .88rem !important;
	text-decoration: none !important;
}
.hrj .wprm-recipe-print:hover,
.hrj .wprm-recipe-jump:hover { background: var(--olive) !important; color: var(--linen-light) !important; }
.hrj .wprm-recipe-rating { color: var(--tan) !important; }

/* Nutrition is never estimated here, so it is never shown. */
.hrj .wprm-nutrition-label-container,
.hrj .wprm-recipe-nutrition-container { display: none !important; }

@media (max-width: 720px) {
	.hrj-video__play svg { width: 56px; }
	.hrj-share { gap: .9rem; }
	.hrj-wander__title { text-align: left; }
}

@media print {
	.hrj-video, .hrj-watch, .hrj-wander, .hrj-share, .hrj-jump,
	.hrj-discover, .hrj-seasonal, .hrj-topics { display: none !important; }
}
