.dlh-wrap {
	--dlh-ink: #071827;
	--dlh-muted: #536171;
	--dlh-line: #d7c99a;
	--dlh-paper: #fffdf7;
	--dlh-soft: #f6edd3;
	--dlh-navy: #061421;
	--dlh-green: #07542f;
	--dlh-red: #a83232;
	--dlh-gold: #d8a928;
	--dlh-gold-bright: #f3c94d;
	--dlh-charcoal: #061421;
	color: var(--dlh-ink);
	margin-inline: auto;
	max-width: 1120px;
}

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

.dlh-hero {
	align-items: stretch;
	background:
		radial-gradient(circle at 16% 20%, rgba(243, 201, 77, 0.2), transparent 30%),
		linear-gradient(135deg, var(--dlh-navy), #092a25 52%, var(--dlh-green));
	border: 1px solid rgba(216, 169, 40, 0.5);
	border-radius: 8px;
	color: #ffffff;
	display: grid;
	gap: clamp(1rem, 3vw, 2rem);
	grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
	margin-block: 1.5rem 2rem;
	min-height: 380px;
	overflow: hidden;
	position: relative;
}

.dlh-hero::after {
	animation: dlh-hero-sweep 12s linear infinite;
	background: linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.09) 48%, transparent 56% 100%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	transform: translateX(-65%);
}

.dlh-hero__content {
	align-content: center;
	display: grid;
	gap: 1rem;
	padding: clamp(1.5rem, 5vw, 4rem);
	position: relative;
	z-index: 1;
}

.dlh-hero h1 {
	color: inherit;
	font-size: clamp(2.25rem, 8vw, 4.75rem);
	letter-spacing: 0;
	line-height: 0.96;
	margin: 0;
	max-width: 780px;
}

.dlh-hero p {
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(1rem, 2vw, 1.2rem);
	margin: 0;
	max-width: 680px;
}

.dlh-hero__panel {
	align-content: end;
	background:
		linear-gradient(rgba(243, 201, 77, 0.09), rgba(255, 255, 255, 0.03)),
		repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 12px);
	border-left: 1px solid rgba(243, 201, 77, 0.28);
	display: grid;
	gap: 0.75rem;
	padding: clamp(1.25rem, 4vw, 2rem);
	position: relative;
	z-index: 1;
}

.dlh-hero__panel span,
.dlh-kicker {
	color: var(--dlh-gold-bright);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0;
	margin: 0;
	text-transform: uppercase;
}

.dlh-hero__panel strong {
	display: block;
	font-size: 1.55rem;
	line-height: 1.1;
}

.dlh-hero__panel small {
	color: rgba(255, 255, 255, 0.72);
	display: block;
	font-size: 0.95rem;
	line-height: 1.45;
}

.dlh-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 0.5rem;
}

.dlh-button,
.dlh-wrap button.dlh-button,
.dlh-wrap a.dlh-button {
	align-items: center;
	appearance: none;
	background: #fffdf7;
	border: 1px solid rgba(6, 20, 33, 0.78);
	border-radius: 6px;
	color: var(--dlh-ink);
	cursor: pointer;
	display: inline-flex;
	font-size: 0.95rem;
	font-weight: 800;
	justify-content: center;
	line-height: 1.1;
	min-height: 44px;
	padding: 0.75rem 1rem;
	text-decoration: none;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.dlh-button:hover,
.dlh-button:focus-visible {
	background: var(--dlh-gold-bright);
	color: var(--dlh-navy);
	transform: translateY(-1px);
}

.dlh-section {
	display: grid;
	gap: 1.25rem;
	margin-block: 2rem;
}

.dlh-section__head {
	align-items: start;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
}

.dlh-section__head h2,
.dlh-section__head h3,
.dlh-results h3,
.dlh-form h3 {
	letter-spacing: 0;
	line-height: 1.15;
	margin: 0;
}

.dlh-section__head p {
	color: var(--dlh-muted);
	margin: 0.25rem 0 0;
}

.dlh-section__head a {
	color: var(--dlh-green);
	font-weight: 800;
}

.dlh-card-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.dlh-card,
.dlh-panel,
.dlh-form,
.dlh-empty,
.dlh-notice,
.dlh-result-card {
	background: var(--dlh-paper);
	border: 1px solid var(--dlh-line);
	border-radius: 8px;
	box-shadow: 0 14px 30px rgba(6, 20, 33, 0.06);
}

.dlh-card {
	display: grid;
	min-width: 0;
	overflow: hidden;
}

.dlh-card__image {
	aspect-ratio: 16 / 9;
	background: var(--dlh-soft);
	display: block;
	overflow: hidden;
}

.dlh-card__image img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.dlh-card__body,
.dlh-panel,
.dlh-form,
.dlh-empty,
.dlh-notice,
.dlh-result-card {
	padding: 1rem;
}

.dlh-card__body {
	display: grid;
	gap: 0.65rem;
}

.dlh-card__body h3 {
	font-size: 1.2rem;
	line-height: 1.2;
	margin: 0;
}

.dlh-card__body p {
	color: var(--dlh-muted);
	margin: 0;
}

.dlh-card__meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: space-between;
}

.dlh-pill,
.dlh-availability-pill {
	background: var(--dlh-soft);
	border: 1px solid var(--dlh-line);
	border-radius: 999px;
	color: var(--dlh-ink);
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1;
	padding: 0.45rem 0.65rem;
	white-space: nowrap;
}

.dlh-empty {
	color: var(--dlh-muted);
}

.dlh-notice {
	background: #edf7ef;
	border-color: #a9d6b1;
	color: #07542f;
	font-weight: 700;
}

.dlh-form {
	display: grid;
	gap: 1rem;
}

.dlh-form--compact {
	background: var(--dlh-soft);
}

.dlh-grid {
	display: grid;
	gap: 1rem;
}

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

.dlh-fieldset {
	display: grid;
	gap: 0.45rem;
	min-width: 0;
}

.dlh-fieldset label {
	font-weight: 800;
}

.dlh-wrap input[type="text"],
.dlh-wrap input[type="date"],
.dlh-wrap select,
.dlh-wrap textarea {
	background: #ffffff;
	border: 1px solid #b8c0cc;
	border-radius: 6px;
	color: var(--dlh-ink);
	font: inherit;
	min-height: 44px;
	padding: 0.7rem 0.8rem;
	width: 100%;
}

.dlh-wrap textarea {
	line-height: 1.35;
	resize: vertical;
}

.dlh-fieldset + .dlh-fieldset {
	border-top: 1px solid var(--dlh-line);
	padding-top: 1rem;
}

.dlh-results {
	display: grid;
	gap: 1rem;
}

.dlh-result-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.dlh-result-card h4 {
	font-size: 1rem;
	line-height: 1.2;
	margin: 0 0 0.75rem;
}

.dlh-result-card ol {
	display: grid;
	gap: 0.45rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.dlh-result-card li {
	align-items: center;
	display: flex;
	gap: 0.75rem;
	justify-content: space-between;
}

.dlh-result-card strong {
	background: var(--dlh-navy);
	border-radius: 999px;
	color: #ffffff;
	min-width: 2rem;
	padding: 0.25rem 0.45rem;
	text-align: center;
}

.dlh-stats-grid {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	margin: 1rem 0 1.25rem;
}

.dlh-stat-card {
	background:
		linear-gradient(160deg, rgba(7, 84, 47, 0.08), rgba(216, 169, 40, 0.12)),
		var(--dlh-paper);
	border: 1px solid var(--dlh-line);
	border-radius: 8px;
	display: grid;
	gap: 0.45rem;
	min-height: 136px;
	padding: 1rem;
}

.dlh-stat-card strong {
	color: var(--dlh-navy);
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	line-height: 1;
}

.dlh-stat-card span {
	color: var(--dlh-muted);
	font-weight: 800;
	line-height: 1.25;
}

.dlh-mini-list {
	display: grid;
	gap: 0.5rem;
	margin: 0;
}

.dlh-mini-list div {
	display: grid;
	gap: 0.15rem;
}

.dlh-mini-list dt {
	color: var(--dlh-muted);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.dlh-mini-list dd {
	margin: 0;
}

.dlh-card-actions {
	border-top: 1px solid var(--dlh-line);
	display: grid;
	gap: 0.75rem;
	margin-top: 0.5rem;
	padding-top: 0.85rem;
}

.dlh-card-actions label {
	display: grid;
	gap: 0.35rem;
}

.dlh-card-actions span {
	color: var(--dlh-muted);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.dlh-hof-grid {
	columns: 3 260px;
	column-gap: 1rem;
}

.dlh-hof-card {
	break-inside: avoid;
	margin: 0 0 1rem;
}

.dlh-hof-card__media {
	background: var(--dlh-soft);
	overflow: hidden;
}

.dlh-hof-card__media img,
.dlh-hof-card__media video,
.dlh-hof-card__media iframe {
	aspect-ratio: 4 / 3;
	display: block;
	height: auto;
	max-width: 100%;
	object-fit: cover;
	width: 100%;
}

.dlh-hof-card__media iframe {
	height: auto;
	min-height: 220px;
}

.dlh-hof-card__placeholder {
	align-items: center;
	aspect-ratio: 4 / 3;
	color: var(--dlh-muted);
	display: flex;
	font-weight: 800;
	justify-content: center;
	padding: 1rem;
}

.dlh-stack {
	display: grid;
	gap: 1rem;
}

.dlh-calendar-list {
	display: grid;
	gap: 0.85rem;
}

.dlh-calendar-event {
	align-items: stretch;
	display: grid;
	gap: 0;
	grid-template-columns: 92px minmax(0, 1fr);
	overflow: hidden;
	padding: 0;
}

.dlh-calendar-event__date {
	align-items: center;
	background: linear-gradient(160deg, var(--dlh-text), var(--dlh-green));
	color: #ffffff;
	display: grid;
	justify-items: center;
	padding: 1rem 0.75rem;
	text-transform: uppercase;
}

.dlh-calendar-event__date span {
	color: var(--dlh-gold);
	font-size: 0.82rem;
	font-weight: 900;
}

.dlh-calendar-event__date strong {
	font-size: 2.25rem;
	line-height: 1;
}

.dlh-calendar-event__body {
	display: grid;
	gap: 0.65rem;
	padding: 1.1rem;
}

.dlh-calendar-event__body h3 {
	margin: 0;
}

.dlh-calendar-event__body p {
	margin: 0;
}

.dlh-calendar-event__meta {
	color: var(--dlh-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.92rem;
	font-weight: 700;
	gap: 0.45rem 0.85rem;
}

.dlh-calendar-event__meta span {
	align-items: center;
	display: inline-flex;
	gap: 0.45rem;
}

.dlh-calendar-event__meta span + span::before {
	background: var(--dlh-gold);
	border-radius: 999px;
	content: "";
	display: inline-block;
	height: 0.35rem;
	width: 0.35rem;
}

.dlh-availability {
	display: grid;
	gap: 0.85rem;
	margin-top: 1rem;
}

.dlh-availability__row {
	align-items: center;
	border-top: 1px solid var(--dlh-line);
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(0, 1fr) auto;
	padding-top: 0.85rem;
}

.dlh-segmented {
	background: var(--dlh-soft);
	border: 1px solid var(--dlh-line);
	border-radius: 6px;
	display: inline-grid;
	grid-template-columns: repeat(3, minmax(64px, 1fr));
	overflow: hidden;
}

.dlh-segmented label {
	cursor: pointer;
	display: grid;
	font-size: 0.9rem;
	font-weight: 800;
	min-height: 40px;
	place-items: center;
}

.dlh-segmented input {
	clip: rect(0 0 0 0);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.dlh-segmented span {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	padding: 0.55rem 0.7rem;
	width: 100%;
}

.dlh-segmented input:checked + span {
	background: var(--dlh-navy);
	color: #ffffff;
}

.dlh-table-wrap {
	margin-top: 1rem;
	overflow-x: auto;
}

.dlh-table {
	border-collapse: collapse;
	min-width: 680px;
	width: 100%;
}

.dlh-table th,
.dlh-table td {
	border-bottom: 1px solid var(--dlh-line);
	padding: 0.75rem;
	text-align: left;
	vertical-align: top;
}

.dlh-table th {
	background: var(--dlh-soft);
	font-size: 0.78rem;
	text-transform: uppercase;
}

.dlh-availability-pill--yes {
	background: #e7f5ee;
	border-color: #b4dec9;
	color: var(--dlh-green);
}

.dlh-availability-pill--maybe {
	background: #fff6df;
	border-color: #f0d28e;
	color: var(--dlh-gold);
}

.dlh-availability-pill--no {
	background: #fbeaea;
	border-color: #e2b4b4;
	color: var(--dlh-red);
}

.dlh-footnote {
	color: var(--dlh-muted);
	font-size: 0.9rem;
}

@keyframes dlh-hero-sweep {
	0% {
		transform: translateX(-70%);
	}

	45%,
	100% {
		transform: translateX(70%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.dlh-hero::after {
		animation: none;
	}
}

@media (max-width: 760px) {
	.dlh-hero,
	.dlh-grid--two,
	.dlh-calendar-event,
	.dlh-availability__row {
		grid-template-columns: 1fr;
	}

	.dlh-hero {
		min-height: 0;
	}

	.dlh-hero__panel {
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.16);
	}

	.dlh-section__head {
		display: grid;
	}

	.dlh-calendar-event__date {
		align-items: center;
		grid-template-columns: auto auto;
		justify-content: start;
		padding: 0.8rem 1rem;
	}

	.dlh-calendar-event__date strong {
		font-size: 1.9rem;
	}

	.dlh-segmented {
		width: 100%;
	}
}
