:root {
	color-scheme: light;
	--hhl-page: #f2f4ef;
	--hhl-panel: #fdfefb;
	--hhl-surface: #edf1e9;
	--hhl-surface-strong: #e2e8df;
	--hhl-text: #172019;
	--hhl-muted: #5d695f;
	--hhl-subtle: #7a857c;
	--hhl-line: #d3dbd1;
	--hhl-accent: #2f6b4e;
	--hhl-accent-hover: #204d38;
	--hhl-accent-soft: #dce9df;
	--hhl-on-accent: #f4f7f4;
	--hhl-danger: #96392f;
	--hhl-danger-soft: #f5e4e0;
	--hhl-focus: #165f90;
	--hhl-radius: 14px;
	--hhl-font-body: "Mona Sans", ui-sans-serif, system-ui, sans-serif;
	--hhl-font-heading: "Space Grotesk", "Mona Sans", ui-sans-serif, system-ui, sans-serif;
}

body.hhl-blank-canvas {
	min-width: 320px;
	min-height: 100dvh;
	margin: 0;
	background: var(--hhl-page);
	color: var(--hhl-text);
	font-family: var(--hhl-font-body);
	font-size: 16px;
	font-stretch: 100%;
	line-height: 1.55;
	text-rendering: optimizeLegibility;
}

.hhl-page,
.hhl-page * {
	box-sizing: border-box;
}

.hhl-page {
	width: min(100% - 40px, 1280px);
	margin: 0 auto;
	padding: 48px 0 72px;
}

.hhl-page-tools {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 28px;
}

.hhl-page-tools--end {
	justify-content: flex-end;
	margin-bottom: 18px;
}

.hhl-theme-toggle {
	display: inline-flex;
	min-height: 38px;
	align-items: center;
	gap: 7px;
	padding: 7px 11px;
	border: 1px solid var(--hhl-line);
	border-radius: 999px;
	background: var(--hhl-panel);
	color: var(--hhl-muted);
	cursor: pointer;
}

.hhl-theme-toggle:hover {
	border-color: var(--hhl-accent);
	color: var(--hhl-accent-hover);
}

.hhl-theme-toggle__icon {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.hhl-theme-toggle__icon[hidden] {
	display: none;
}

.hhl-theme-toggle__label {
	font-size: 0.78rem;
	font-weight: 800;
}

.hhl-page :where(h1, h2, h3, strong) {
	font-family: var(--hhl-font-heading);
}

.hhl-page :where(button, input, select, textarea) {
	font: inherit;
}

.hhl-page :where(img) {
	display: block;
	max-width: 100%;
}

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

.hhl-page :where(a, button, input, select, textarea):focus-visible {
	outline: 3px solid var(--hhl-focus);
	outline-offset: 3px;
}

.hhl-page :where(button, .hhl-map-button):active {
	transform: translateY(1px);
}

.hhl-page a {
	color: inherit;
}

.hhl-eyebrow {
	margin: 0 0 8px;
	color: var(--hhl-accent-hover);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hhl-code {
	color: var(--hhl-accent-hover);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.hhl-status {
	display: inline-flex;
	min-height: 28px;
	align-items: center;
	padding: 4px 9px;
	border-radius: 999px;
	background: var(--hhl-accent-soft);
	color: var(--hhl-accent-hover);
	font-size: 0.74rem;
	font-weight: 750;
	line-height: 1.2;
}

.hhl-status--rejected {
	background: var(--hhl-danger-soft);
	color: var(--hhl-danger);
}

.hhl-status--purchased {
	background: var(--hhl-accent);
	color: var(--hhl-on-accent);
}

/* Archive */
.hhl-archive-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 30px;
}

.hhl-archive-header__copy {
	max-width: 760px;
}

.hhl-archive-header h1,
.hhl-detail-header h1 {
	margin: 0;
	font-family: var(--hhl-font-heading);
	font-size: clamp(2.25rem, 5vw, 4rem);
	font-weight: 650;
	line-height: 1.04;
	letter-spacing: -0.045em;
}

.hhl-archive-header__copy > p:last-child {
	max-width: 62ch;
	margin: 14px 0 0;
	color: var(--hhl-muted);
	font-size: 1.02rem;
}

.hhl-result-count {
	display: grid;
	min-width: 116px;
	margin: 0;
	padding: 14px 16px;
	border-left: 3px solid var(--hhl-accent);
	background: var(--hhl-panel);
}

.hhl-result-count strong {
	font-size: 1.45rem;
	line-height: 1;
}

.hhl-result-count span {
	margin-top: 5px;
	color: var(--hhl-muted);
	font-size: 0.78rem;
}

.hhl-filter-bar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(190px, 0.42fr) auto;
	gap: 12px;
	align-items: end;
	margin-bottom: 28px;
	padding: 14px;
	border: 1px solid var(--hhl-line);
	border-radius: var(--hhl-radius);
	background: var(--hhl-panel);
}

.hhl-filter-field {
	display: grid;
	gap: 6px;
}

.hhl-filter-field > span {
	color: var(--hhl-muted);
	font-size: 0.75rem;
	font-weight: 750;
}

.hhl-filter-bar input,
.hhl-filter-bar select,
.hhl-filter-bar button,
#hhl-note-content,
#hhl-note-submit {
	width: 100%;
	min-height: 46px;
	padding: 10px 13px;
	border: 1px solid var(--hhl-line);
	border-radius: 10px;
	background: var(--hhl-panel);
	color: var(--hhl-text);
}

.hhl-filter-bar input::placeholder,
#hhl-note-content::placeholder {
	color: var(--hhl-subtle);
	opacity: 1;
}

.hhl-filter-bar button,
#hhl-note-submit,
.hhl-map-button {
	border-color: var(--hhl-accent);
	background: var(--hhl-accent);
	color: var(--hhl-on-accent);
	font-weight: 800;
	cursor: pointer;
	transition: background-color 150ms ease, border-color 150ms ease, transform 120ms ease;
}

.hhl-filter-bar button:hover,
#hhl-note-submit:hover,
.hhl-map-button:hover {
	border-color: var(--hhl-accent-hover);
	background: var(--hhl-accent-hover);
}

.hhl-filter-bar button:disabled,
#hhl-note-submit:disabled {
	cursor: wait;
	opacity: 0.7;
}

.hhl-land-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.hhl-land-card {
	display: grid;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--hhl-line);
	border-radius: var(--hhl-radius);
	background: var(--hhl-panel);
	transition: border-color 150ms ease, transform 150ms ease;
}

.hhl-land-card:hover {
	border-color: color-mix(in srgb, var(--hhl-accent) 58%, var(--hhl-line));
	transform: translateY(-2px);
}

.hhl-land-card__media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--hhl-surface-strong);
}

.hhl-land-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 180ms ease;
}

.hhl-land-card__media .hhl-image-placeholder {
	width: 100%;
	height: 100%;
	min-height: 0;
	padding: 16px;
}

.hhl-land-card:hover .hhl-land-card__media img {
	transform: scale(1.02);
}

.hhl-image-placeholder,
.hhl-gallery-empty {
	display: grid;
	min-height: 220px;
	place-items: center;
	padding: 24px;
	background: var(--hhl-surface-strong);
	color: var(--hhl-muted);
	text-align: center;
}

.hhl-land-card__body {
	display: flex;
	min-width: 0;
	flex-direction: column;
	padding: 18px;
}

.hhl-land-card__topline,
.hhl-land-card__footer,
.hhl-detail-header__meta,
.hhl-gallery__footer,
.hhl-notebook__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.hhl-land-card h2 {
	display: -webkit-box;
	margin: 12px 0 0;
	overflow: hidden;
	font-size: clamp(1.12rem, 2vw, 1.4rem);
	font-weight: 650;
	line-height: 1.28;
	letter-spacing: -0.025em;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.hhl-land-card h2 a {
	text-decoration: none;
}

.hhl-land-card h2 a:hover {
	color: var(--hhl-accent-hover);
}

.hhl-card-location {
	display: -webkit-box;
	margin: 8px 0 0;
	overflow: hidden;
	color: var(--hhl-muted);
	font-size: 0.9rem;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.hhl-card-viewed-date {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin: 8px 0 0;
	color: var(--hhl-muted);
	font-size: 0.78rem;
}

.hhl-card-viewed-date span {
	font-weight: 750;
}

.hhl-card-viewed-date time {
	color: var(--hhl-text);
	font-weight: 650;
}

.hhl-card-facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	margin-top: 16px;
	overflow: hidden;
	border: 1px solid var(--hhl-line);
	border-radius: 11px;
	background: var(--hhl-line);
}

.hhl-card-facts div {
	min-width: 0;
	padding: 10px 11px;
	background: var(--hhl-surface);
}

.hhl-card-facts div:first-child:last-child,
.hhl-card-facts div:last-child:nth-child(odd) {
	grid-column: 1 / -1;
}

.hhl-card-facts span,
.hhl-contact-panel p > span {
	display: block;
	color: var(--hhl-muted);
	font-size: 0.72rem;
	font-weight: 750;
}

.hhl-card-facts strong {
	display: block;
	margin-top: 3px;
	overflow: hidden;
	font-size: 0.88rem;
	font-weight: 650;
	line-height: 1.3;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hhl-card-checklist {
	display: grid;
	gap: 7px;
	margin: 15px 0 0;
	padding: 0;
	list-style: none;
}

.hhl-card-checklist li,
.hhl-entry-checklist > ul > li {
	position: relative;
	margin: 0;
	padding-left: 26px;
}

.hhl-card-checklist li::before,
.hhl-entry-checklist > ul > li::before {
	position: absolute;
	top: 0.08em;
	left: 0;
	display: grid;
	width: 18px;
	height: 18px;
	place-items: center;
	border-radius: 50%;
	background: var(--hhl-accent-soft);
	color: var(--hhl-accent-hover);
	content: "✓";
	font-size: 0.7rem;
	font-weight: 900;
}

.hhl-card-checklist li {
	display: -webkit-box;
	overflow: hidden;
	color: var(--hhl-muted);
	font-size: 0.84rem;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.hhl-land-card__footer {
	margin-top: auto;
	padding-top: 18px;
}

.hhl-land-card__footer a {
	color: var(--hhl-accent-hover);
	font-size: 0.84rem;
	font-weight: 800;
	text-underline-offset: 4px;
}

.hhl-empty-state {
	padding: 54px 24px;
	border: 1px dashed var(--hhl-line);
	border-radius: var(--hhl-radius);
	background: var(--hhl-panel);
	text-align: center;
}

.hhl-empty-state h2,
.hhl-empty-state p {
	margin: 0;
}

.hhl-empty-state p {
	margin-top: 8px;
	color: var(--hhl-muted);
}

.hhl-page .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-top: 30px;
}

.hhl-page .nav-links .page-numbers {
	display: grid;
	min-width: 40px;
	min-height: 40px;
	place-items: center;
	padding: 6px 10px;
	border: 1px solid var(--hhl-line);
	border-radius: 9px;
	background: var(--hhl-panel);
	text-decoration: none;
}

.hhl-page .nav-links .current {
	border-color: var(--hhl-accent);
	background: var(--hhl-accent);
	color: var(--hhl-on-accent);
}

/* Single */
.hhl-single {
	width: min(100% - 40px, 1220px);
}

.hhl-back-link {
	display: inline-flex;
	margin: 0;
	color: var(--hhl-accent-hover);
	font-weight: 800;
	text-decoration-thickness: 1px;
	text-underline-offset: 5px;
}

.hhl-detail-header {
	max-width: 880px;
	margin-bottom: 30px;
}

.hhl-detail-header__meta {
	justify-content: flex-start;
	margin-bottom: 12px;
}

.hhl-detail-header h1 {
	font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.hhl-detail-date {
	margin: 13px 0 0;
	color: var(--hhl-muted);
	font-size: 0.86rem;
}

.hhl-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
	gap: 24px;
	align-items: start;
}

.hhl-single-main {
	display: grid;
	gap: 22px;
	min-width: 0;
}

.hhl-gallery {
	overflow: hidden;
	border: 1px solid var(--hhl-line);
	border-radius: var(--hhl-radius);
	background: var(--hhl-panel);
}

.hhl-gallery__stage {
	display: grid;
	min-height: 460px;
	margin: 0;
	place-items: center;
	background: var(--hhl-surface-strong);
}

.hhl-gallery__stage a {
	display: grid;
	width: 100%;
	height: 100%;
	min-height: inherit;
	place-items: center;
	cursor: zoom-in;
}

.hhl-gallery__stage img {
	width: 100%;
	height: min(56vw, 560px);
	object-fit: contain;
}

.hhl-gallery__footer {
	padding: 12px 16px;
	border-top: 1px solid var(--hhl-line);
}

.hhl-gallery__footer p {
	margin: 0;
	color: var(--hhl-muted);
	font-size: 0.84rem;
}

.hhl-gallery__footer span {
	color: var(--hhl-accent-hover);
	font-size: 0.82rem;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}

.hhl-gallery__thumbnails {
	display: flex;
	gap: 9px;
	overflow-x: auto;
	padding: 0 16px 16px;
	scrollbar-width: thin;
}

.hhl-gallery-thumb {
	width: 98px;
	height: 72px;
	flex: 0 0 98px;
	overflow: hidden;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 11px;
	background: var(--hhl-surface);
	cursor: pointer;
}

.hhl-gallery-thumb:hover,
.hhl-gallery-thumb.is-active {
	border-color: var(--hhl-accent);
}

.hhl-gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hhl-gallery-empty {
	min-height: 360px;
	border-radius: var(--hhl-radius);
}

.hhl-detail-section,
.hhl-contact-panel,
.hhl-notebook {
	border: 1px solid var(--hhl-line);
	border-radius: var(--hhl-radius);
	background: var(--hhl-panel);
}

.hhl-detail-section {
	padding: clamp(20px, 3.5vw, 30px);
}

.hhl-detail-section h2,
.hhl-contact-panel h2,
.hhl-notebook h2 {
	margin: 0 0 18px;
	font-size: 1.24rem;
	font-weight: 650;
	letter-spacing: -0.02em;
}

.hhl-fact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 0;
}

.hhl-fact-grid > div {
	position: relative;
	min-width: 0;
	padding: 13px 13px 13px 42px;
	border-radius: 11px;
	background: var(--hhl-surface);
}

.hhl-fact-grid > div::before {
	position: absolute;
	top: 14px;
	left: 13px;
	display: grid;
	width: 19px;
	height: 19px;
	place-items: center;
	border-radius: 50%;
	background: var(--hhl-accent-soft);
	color: var(--hhl-accent-hover);
	content: "✓";
	font-size: 0.7rem;
	font-weight: 900;
}

.hhl-fact-grid dt {
	color: var(--hhl-muted);
	font-size: 0.74rem;
	font-weight: 750;
}

.hhl-fact-grid dd {
	margin: 4px 0 0;
	overflow-wrap: anywhere;
	font-weight: 650;
}

.hhl-entry-checklist {
	color: var(--hhl-text);
	line-height: 1.72;
	overflow-wrap: anywhere;
}

.hhl-entry-checklist > :first-child {
	margin-top: 0;
}

.hhl-entry-checklist > :last-child {
	margin-bottom: 0;
}

.hhl-entry-checklist > p {
	margin: 0 0 1em;
}

.hhl-entry-checklist > h2,
.hhl-entry-checklist > h3,
.hhl-entry-checklist > h4 {
	margin: 1.45em 0 0.55em;
	line-height: 1.25;
}

.hhl-entry-checklist > h2 {
	font-size: 1.35rem;
}

.hhl-entry-checklist > h3 {
	font-size: 1.15rem;
}

.hhl-entry-checklist > h4 {
	font-size: 1rem;
}

.hhl-entry-checklist > ul > li {
	min-height: 24px;
	padding-left: 32px;
}

.hhl-entry-checklist > ul {
	display: grid;
	gap: 10px;
	margin: 0 0 1.15em;
	padding: 0;
	list-style: none;
}

.hhl-entry-checklist > h2 + ul,
.hhl-entry-checklist > h3 + ul,
.hhl-entry-checklist > h4 + ul {
	margin-top: 0.75em;
}

.hhl-entry-checklist > ol {
	margin: 0 0 1.15em;
	padding-left: 1.5em;
}

.hhl-entry-checklist > ol > li + li {
	margin-top: 0.55em;
}

.hhl-entry-checklist > blockquote {
	margin: 1.15em 0;
	padding-left: 16px;
	border-left: 3px solid var(--hhl-accent);
	color: var(--hhl-muted);
}

.hhl-entry-checklist a {
	color: var(--hhl-accent-hover);
	font-weight: 700;
	text-underline-offset: 4px;
}

.hhl-single-sidebar {
	position: sticky;
	top: 20px;
	display: grid;
	gap: 18px;
}

.hhl-contact-panel {
	padding: 22px;
}

.hhl-contact-panel__name {
	margin: 0;
	font-family: var(--hhl-font-heading);
	font-size: 1.05rem;
	font-weight: 650;
}

.hhl-contact-phone {
	display: inline-block;
	margin-top: 7px;
	color: var(--hhl-accent-hover);
	font-family: var(--hhl-font-heading);
	font-size: 1.18rem;
	font-weight: 700;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.hhl-contact-panel p:not(.hhl-contact-panel__name) {
	margin: 16px 0 0;
	color: var(--hhl-muted);
}

.hhl-contact-panel p > span {
	margin-bottom: 3px;
}

.hhl-map-button {
	display: inline-flex;
	width: auto;
	min-height: 36px;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	padding: 5px 0;
	border: 0;
	background: transparent;
	color: var(--hhl-accent-hover);
	font-weight: 750;
	text-decoration: none;
}

.hhl-map-button:hover {
	border-color: transparent;
	background: transparent;
	color: var(--hhl-accent);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.hhl-map-icon {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
}

.hhl-notebook {
	padding: 16px 14px 18px 30px;
	background:
		linear-gradient(90deg, transparent 0 20px, color-mix(in srgb, var(--hhl-danger) 34%, transparent) 20px 21px, transparent 21px),
		repeating-linear-gradient(180deg, var(--hhl-panel) 0 31px, var(--hhl-line) 31px 32px);
}

.hhl-notebook__header {
	align-items: baseline;
}

.hhl-notebook h2 {
	margin-bottom: 0;
}

#hhl-note-status {
	color: var(--hhl-accent-hover);
	font-size: 0.76rem;
	font-weight: 750;
}

#hhl-note-status.is-error {
	color: var(--hhl-danger);
}

#hhl-note-form {
	display: grid;
	gap: 9px;
	margin-top: 18px;
}

#hhl-note-content {
	min-height: 126px;
	background: color-mix(in srgb, var(--hhl-panel) 94%, var(--hhl-surface));
	line-height: 1.55;
	resize: vertical;
}

#hhl-note-submit {
	min-height: 43px;
}

.hhl-note-list {
	display: grid;
	margin-top: 18px;
}

.hhl-note-card {
	padding: 13px 0;
	border-bottom: 1px solid color-mix(in srgb, var(--hhl-line) 72%, transparent);
}

.hhl-note-card:last-child {
	border-bottom: 0;
}

.hhl-note-card__content,
.hhl-note-empty {
	margin: 0;
	white-space: pre-wrap;
}

.hhl-note-card__time {
	display: block;
	margin-top: 7px;
	color: var(--hhl-subtle);
	font-size: 0.72rem;
}

.hhl-note-empty {
	padding: 10px 0;
	color: var(--hhl-muted);
	font-size: 0.86rem;
}

@media (max-width: 1080px) {
	.hhl-land-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hhl-single-layout {
		grid-template-columns: minmax(0, 1fr) minmax(280px, 310px);
	}
}

@media (max-width: 900px) {
	.hhl-single-layout {
		grid-template-columns: 1fr;
	}

	.hhl-single-sidebar {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.hhl-page,
	.hhl-single {
		width: min(100% - 24px, 1280px);
		padding: 28px 0 48px;
	}

	.hhl-archive-header {
		display: grid;
		gap: 18px;
		margin-bottom: 22px;
	}

	.hhl-archive-header h1,
	.hhl-detail-header h1 {
		font-size: clamp(2rem, 10vw, 2.7rem);
	}

	.hhl-result-count {
		grid-template-columns: auto 1fr;
		gap: 8px;
		align-items: baseline;
		width: fit-content;
		min-width: 0;
	}

	.hhl-filter-bar {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		padding: 12px;
	}

	.hhl-filter-field--search,
	.hhl-filter-bar button {
		grid-column: 1 / -1;
	}

	.hhl-land-list {
		grid-template-columns: 1fr;
		gap: 0;
		border-top: 1px solid var(--hhl-line);
	}

	.hhl-land-card {
		grid-template-columns: 118px minmax(0, 1fr);
		gap: 0;
		padding: 16px 0;
		overflow: visible;
		border: 0;
		border-bottom: 1px solid var(--hhl-line);
		border-radius: 0;
		background: transparent;
	}

	.hhl-land-card:hover {
		transform: none;
	}

	.hhl-land-card__media {
		width: 118px;
		align-self: start;
		aspect-ratio: 1;
		border-radius: 11px;
	}

	.hhl-land-card__media img,
	.hhl-land-card__media .hhl-image-placeholder {
		width: 100%;
		height: 100%;
		min-height: 0;
	}

	.hhl-land-card__body {
		padding: 0 0 0 14px;
	}

	.hhl-land-card h2 {
		margin-top: 8px;
		font-size: 1.05rem;
	}

	.hhl-card-location {
		margin-top: 5px;
		font-size: 0.82rem;
		-webkit-line-clamp: 1;
	}

	.hhl-card-viewed-date {
		gap: 5px;
		margin-top: 5px;
		font-size: 0.75rem;
	}

	.hhl-card-facts {
		display: flex;
		gap: 12px;
		margin-top: 9px;
		overflow: visible;
		border: 0;
		background: transparent;
	}

	.hhl-card-facts div,
	.hhl-card-facts div:first-child:last-child,
	.hhl-card-facts div:last-child:nth-child(odd) {
		min-width: 0;
		padding: 0;
		background: transparent;
	}

	.hhl-card-facts div:nth-child(n + 3) {
		display: none;
	}

	.hhl-card-facts span {
		display: none;
	}

	.hhl-card-facts strong {
		margin: 0;
		font-family: var(--hhl-font-body);
		font-size: 0.8rem;
	}

	.hhl-card-facts div + div::before {
		margin-right: 12px;
		color: var(--hhl-line);
		content: "/";
	}

	.hhl-card-facts div + div {
		display: flex;
	}

	.hhl-card-checklist {
		margin-top: 9px;
	}

	.hhl-card-checklist li {
		font-size: 0.8rem;
		-webkit-line-clamp: 1;
	}

	.hhl-card-checklist li:nth-child(n + 2) {
		display: none;
	}

	.hhl-land-card__footer {
		display: none;
	}

	.hhl-page-tools {
		margin-bottom: 22px;
	}

	.hhl-page-tools--end {
		margin-bottom: 16px;
	}

	.hhl-detail-header {
		margin-bottom: 22px;
	}

	.hhl-gallery__stage {
		min-height: 300px;
	}

	.hhl-gallery__stage a {
		min-height: 300px;
	}

	.hhl-gallery__stage img {
		height: min(78vw, 420px);
	}

	.hhl-gallery__thumbnails {
		padding-right: 12px;
		padding-left: 12px;
	}

	.hhl-gallery-thumb {
		width: 86px;
		height: 64px;
		flex-basis: 86px;
	}

	.hhl-fact-grid,
	.hhl-single-sidebar {
		grid-template-columns: 1fr;
	}

	.hhl-notebook {
		padding: 15px 12px 17px 28px;
	}
}

@media (max-width: 430px) {
	.hhl-filter-bar {
		grid-template-columns: 1fr;
	}

	.hhl-filter-field,
	.hhl-filter-field--search,
	.hhl-filter-bar button {
		grid-column: auto;
	}

	.hhl-land-card {
		grid-template-columns: 104px minmax(0, 1fr);
	}

	.hhl-land-card__media {
		width: 104px;
	}

	.hhl-status {
		max-width: 108px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.hhl-gallery__footer {
		align-items: flex-start;
	}
}

:root[data-theme="dark"] {
	color-scheme: dark;
	--hhl-page: #161616;
	--hhl-panel: #1f1f1f;
	--hhl-surface: #282828;
	--hhl-surface-strong: #333333;
	--hhl-text: #ededea;
	--hhl-muted: #b5b5b0;
	--hhl-subtle: #92928d;
	--hhl-line: #3d3d3a;
	--hhl-accent: #4c6356;
	--hhl-accent-hover: #b4c3ba;
	--hhl-accent-soft: #2d322f;
	--hhl-on-accent: #f4f4f2;
	--hhl-danger: #f0a19a;
	--hhl-danger-soft: #402927;
	--hhl-focus: #8fc7eb;
}

@media (prefers-color-scheme: dark) {
	:root:not([data-theme]) {
		color-scheme: dark;
		--hhl-page: #161616;
		--hhl-panel: #1f1f1f;
		--hhl-surface: #282828;
		--hhl-surface-strong: #333333;
		--hhl-text: #ededea;
		--hhl-muted: #b5b5b0;
		--hhl-subtle: #92928d;
		--hhl-line: #3d3d3a;
		--hhl-accent: #4c6356;
		--hhl-accent-hover: #b4c3ba;
		--hhl-accent-soft: #2d322f;
		--hhl-on-accent: #f4f4f2;
		--hhl-danger: #f0a19a;
		--hhl-danger-soft: #402927;
		--hhl-focus: #8fc7eb;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hhl-page *,
	.hhl-page *::before,
	.hhl-page *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
