/* ==========================================================================
   Elementor Widget Styles
   ========================================================================== */

/* Newsletter Widget
   ========================================================================== */

.kv-newsletter-widget {
	position: relative;
	padding: 60px 40px;
	border-radius: var(--kv-radius-lg);
	overflow: hidden;
}

.kv-newsletter-widget--primary {
	background: linear-gradient(135deg, var(--kv-primary) 0%, var(--kv-primary-light) 100%);
	color: var(--kv-text-inverse);
}

.kv-newsletter-widget--secondary {
	background: linear-gradient(135deg, var(--kv-secondary) 0%, var(--kv-secondary-dark) 100%);
	color: var(--kv-primary-dark);
}

.kv-newsletter-widget--accent {
	background: linear-gradient(135deg, var(--kv-accent) 0%, var(--kv-accent-dark) 100%);
	color: var(--kv-text-inverse);
}

.kv-newsletter-widget--light {
	background-color: var(--kv-bg);
	color: var(--kv-text);
}

.kv-newsletter-widget--light .kv-newsletter-widget__title {
	color: var(--kv-primary);
}

.kv-newsletter-widget--light .kv-newsletter-widget__btn {
	background-color: var(--kv-primary);
	color: var(--kv-text-inverse);
	border-color: var(--kv-primary);
}

.kv-newsletter-widget--has-bg {
	background-size: cover;
	background-position: center;
}

.kv-newsletter-widget__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(27, 54, 93, 0.75);
	z-index: 1;
}

.kv-newsletter-widget__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.kv-newsletter-widget--stacked .kv-newsletter-widget__inner {
	flex-direction: column;
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.kv-newsletter-widget__content {
	flex: 1;
}

.kv-newsletter-widget__title {
	font-family: var(--kv-font-heading);
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	color: inherit;
	margin-bottom: 8px;
}

.kv-newsletter-widget--primary .kv-newsletter-widget__title,
.kv-newsletter-widget--accent .kv-newsletter-widget__title,
.kv-newsletter-widget--has-bg .kv-newsletter-widget__title {
	color: var(--kv-text-inverse);
}

.kv-newsletter-widget__desc {
	opacity: 0.85;
	font-size: 1rem;
	margin-bottom: 0;
}

.kv-newsletter-widget__form {
	display: flex;
	gap: 12px;
	flex: 1;
	max-width: 480px;
}

.kv-newsletter-widget--stacked .kv-newsletter-widget__form {
	width: 100%;
	max-width: 500px;
}

.kv-newsletter-widget__input {
	flex: 1;
}

.kv-newsletter-widget--primary .kv-newsletter-widget__input,
.kv-newsletter-widget--accent .kv-newsletter-widget__input,
.kv-newsletter-widget--has-bg .kv-newsletter-widget__input {
	border-color: rgba(255, 255, 255, 0.3);
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--kv-text-inverse);
}

.kv-newsletter-widget--primary .kv-newsletter-widget__input::placeholder,
.kv-newsletter-widget--accent .kv-newsletter-widget__input::placeholder,
.kv-newsletter-widget--has-bg .kv-newsletter-widget__input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

/* Events Showcase Widget
   ========================================================================== */

.kv-events-showcase {
	padding: 60px 0;
}

.kv-events-showcase--white {
	background-color: var(--kv-surface);
}

.kv-events-showcase--primary {
	background-color: var(--kv-primary);
	color: var(--kv-text-inverse);
	padding: 60px 40px;
	border-radius: var(--kv-radius-lg);
}

.kv-events-showcase--primary .kv-events-showcase__title,
.kv-events-showcase--primary .kv-events-showcase__subheading {
	color: var(--kv-text-inverse);
}

.kv-events-showcase__header {
	text-align: center;
	margin-bottom: 40px;
}

.kv-events-showcase__subheading {
	display: block;
	font-family: var(--kv-font-nav);
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--kv-secondary);
	margin-bottom: 8px;
}

.kv-events-showcase__title {
	font-family: var(--kv-font-heading);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	color: var(--kv-primary);
	margin-bottom: 0;
}

/* Event Card */

.kv-events-showcase__grid {
	display: grid;
	gap: 24px;
}

.kv-events-showcase__grid--2 { grid-template-columns: repeat(2, 1fr); }
.kv-events-showcase__grid--3 { grid-template-columns: repeat(3, 1fr); }
.kv-events-showcase__grid--4 { grid-template-columns: repeat(4, 1fr); }

.kv-event-card {
	background-color: var(--kv-surface);
	border-radius: var(--kv-radius-lg);
	overflow: hidden;
	box-shadow: 0 2px 12px var(--kv-shadow);
	transition: transform var(--kv-transition), box-shadow var(--kv-transition);
}

.kv-event-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px var(--kv-shadow-md);
}

.kv-event-card__image {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
}

.kv-event-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.kv-event-card:hover .kv-event-card__image img {
	transform: scale(1.05);
}

.kv-event-card__date-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	background-color: var(--kv-primary);
	color: var(--kv-text-inverse);
	border-radius: var(--kv-radius);
	padding: 8px 14px;
	text-align: center;
	line-height: 1;
	min-width: 56px;
}

.kv-event-card__date-badge--lg {
	padding: 12px 18px;
	min-width: 70px;
}

.kv-event-card__month {
	display: block;
	font-family: var(--kv-font-nav);
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 2px;
}

.kv-event-card__day {
	display: block;
	font-family: var(--kv-font-heading);
	font-size: 1.5rem;
	font-weight: 700;
}

.kv-event-card__date-badge--lg .kv-event-card__day {
	font-size: 2rem;
}

.kv-event-card__content {
	padding: 20px;
}

.kv-event-card__title {
	font-family: var(--kv-font-heading);
	font-size: 1.125rem;
	margin-bottom: 8px;
}

.kv-event-card__title a {
	color: var(--kv-primary);
	text-decoration: none;
}

.kv-event-card__title a:hover {
	color: var(--kv-secondary-dark);
}

.kv-event-card__time,
.kv-event-card__location {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.875rem;
	color: var(--kv-text-light);
	margin-bottom: 4px;
}

.kv-event-card__location svg {
	flex-shrink: 0;
	color: var(--kv-accent);
}

/* Event List Item */

.kv-event-list-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid var(--kv-border);
}

.kv-event-list-item:last-child {
	border-bottom: none;
}

.kv-event-list-item__date {
	flex-shrink: 0;
	background-color: var(--kv-primary);
	color: var(--kv-text-inverse);
	border-radius: var(--kv-radius);
	padding: 8px 12px;
	text-align: center;
	min-width: 54px;
}

.kv-event-list-item__thumb {
	flex-shrink: 0;
	width: 80px;
	height: 60px;
	border-radius: var(--kv-radius-sm);
	overflow: hidden;
}

.kv-event-list-item__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kv-event-list-item__info {
	flex: 1;
}

.kv-event-list-item__title {
	font-family: var(--kv-font-heading);
	font-size: 1rem;
	margin-bottom: 4px;
}

.kv-event-list-item__title a {
	color: var(--kv-text);
	text-decoration: none;
}

.kv-event-list-item__title a:hover {
	color: var(--kv-secondary-dark);
}

.kv-event-list-item__meta,
.kv-event-list-item__location {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 0.8125rem;
	color: var(--kv-text-light);
	margin-bottom: 2px;
}

/* Featured Layout */

.kv-events-showcase__featured-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	align-items: start;
}

.kv-event-card--large .kv-event-card__image {
	aspect-ratio: 4 / 3;
}

.kv-event-card--large .kv-event-card__title {
	font-size: 1.375rem;
}

.kv-events-showcase__list-side {
	display: flex;
	flex-direction: column;
}

/* Footer */

.kv-events-showcase__footer {
	text-align: center;
	margin-top: 40px;
}

.kv-events-showcase__empty {
	text-align: center;
	color: var(--kv-text-light);
	padding: 40px;
	font-size: 1.0625rem;
}

/* Featured Cards Widget
   ========================================================================== */

.kv-featured-cards {
	display: grid;
	gap: 24px;
}

.kv-featured-cards--2col { grid-template-columns: repeat(2, 1fr); }
.kv-featured-cards--3col { grid-template-columns: repeat(3, 1fr); }
.kv-featured-cards--4col { grid-template-columns: repeat(4, 1fr); }

.kv-featured-cards__card--square { aspect-ratio: 1 / 1; }
.kv-featured-cards__card--landscape { aspect-ratio: 4 / 3; }
.kv-featured-cards__card--portrait { aspect-ratio: 3 / 4; }
.kv-featured-cards__card--wide { aspect-ratio: 16 / 9; }

.kv-overlay-card__desc {
	font-size: 0.875rem;
	opacity: 0.9;
	margin-top: 4px;
	margin-bottom: 0;
}

/* Google Places Directory Widget
   ========================================================================== */

.kv-places-directory__header {
	margin-bottom: 24px;
}

.kv-places-directory__title {
	font-family: var(--kv-font-heading);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	color: var(--kv-primary);
	margin-bottom: 0;
}

.kv-places-directory__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 30px;
	align-items: center;
}

.kv-places-directory__search {
	max-width: 320px;
}

.kv-places-directory__filter-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.kv-places-filter-tag {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-family: var(--kv-font-nav);
	font-size: 0.8125rem;
	font-weight: 500;
	padding: 8px 16px;
	border-radius: 100px;
	background-color: var(--kv-bg);
	color: var(--kv-text);
	border: 1px solid var(--kv-border);
	cursor: pointer;
	transition: all var(--kv-transition);
}

.kv-places-filter-tag:hover,
.kv-places-filter-tag.is-active {
	background-color: var(--kv-primary);
	color: var(--kv-text-inverse);
	border-color: var(--kv-primary);
}

/* Places Grid */

.kv-places-directory__grid {
	display: grid;
	gap: 24px;
}

.kv-places-directory__grid--2 { grid-template-columns: repeat(2, 1fr); }
.kv-places-directory__grid--3 { grid-template-columns: repeat(3, 1fr); }
.kv-places-directory__grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Tablet: cap at two columns. */
@media (min-width: 768px) and (max-width: 1024px) {
	.kv-places-directory__grid--3,
	.kv-places-directory__grid--4 { grid-template-columns: repeat(2, 1fr); }
}

/* Phones: a single column. */
@media (max-width: 767px) {
	.kv-places-directory__grid--2,
	.kv-places-directory__grid--3,
	.kv-places-directory__grid--4 { grid-template-columns: 1fr; }
}

.kv-places-directory__grid--list {
	grid-template-columns: 1fr !important;
}

/* Place Card */

.kv-place-card {
	position: relative;
	background-color: var(--kv-surface);
	border-radius: var(--kv-radius-lg);
	overflow: hidden;
	box-shadow: 0 2px 12px var(--kv-shadow);
	transition: transform var(--kv-transition), box-shadow var(--kv-transition);
}

.kv-place-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px var(--kv-shadow-md);
}

.kv-place-card__photo {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background-color: var(--kv-bg-alt);
}

.kv-place-card__photo--gallery {
	cursor: pointer;
}

.kv-place-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.kv-place-card:hover .kv-place-card__photo img {
	transform: scale(1.05);
}

/* Photo count badge */
.kv-place-card__photo-count {
	position: absolute;
	bottom: 8px;
	right: 8px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 8px;
	font-family: var(--kv-font-nav);
	font-size: 0.6875rem;
	font-weight: 600;
	color: #fff;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	border-radius: 4px;
	line-height: 1;
	pointer-events: none;
	z-index: 2;
}

.kv-place-card__photo-count svg {
	flex-shrink: 0;
}

.kv-place-card__content {
	padding: 20px;
}

.kv-place-card__name {
	font-family: var(--kv-font-heading);
	font-size: 1.125rem;
	color: var(--kv-primary);
	margin-bottom: 6px;
}

.kv-place-card__rating {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 8px;
}

.kv-place-card__stars {
	color: var(--kv-secondary);
	font-size: 0.875rem;
}

.kv-place-card__rating-text {
	font-size: 0.8125rem;
	color: var(--kv-text-light);
}

.kv-place-card__address {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	font-size: 0.875rem;
	color: var(--kv-text-light);
	margin-bottom: 8px;
}

.kv-place-card__address svg {
	flex-shrink: 0;
	margin-top: 2px;
}

.kv-place-card__desc-wrap {
	margin: 0 0 12px;
}

.kv-place-card__description {
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--kv-text-light);
	margin: 0;
	overflow: hidden;
	max-height: calc(1.5em * 3);
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.kv-place-card__description::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1.5em;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
	pointer-events: none;
	opacity: 0; /* only shown when JS marks the text as clamped */
	transition: opacity 0.2s ease;
}

/* Fade only when the description is actually truncated. */
.kv-place-card__description.is-clamped::after {
	opacity: 1;
}

.kv-place-card__description.is-expanded {
	/* JS sets max-height inline to scrollHeight; this is a fallback ceiling. */
	max-height: 60em;
}

.kv-place-card__description.is-expanded::after {
	opacity: 0;
}

.kv-place-card__see-more {
	background: none;
	border: none;
	padding: 0;
	margin: 6px 0 0;
	color: var(--kv-primary, #1a3a5c);
	font-size: 0.8125rem;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	letter-spacing: 0.01em;
	transition: color 0.15s ease;
}

.kv-place-card__see-more:hover,
.kv-place-card__see-more:focus-visible {
	color: var(--kv-accent, #c9a961);
	text-decoration: underline;
}

.kv-place-card__see-more[hidden] {
	display: none;
}

.kv-place-card__status {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.kv-place-card__status--open {
	color: var(--kv-accent);
}

.kv-place-card__status--closed {
	color: #DC3545;
}

.kv-place-card__actions {
	display: flex;
	gap: 8px;
	margin-top: 12px;
}

/* Price Level Badge (lodging) */

.kv-place-card__price {
	display: inline-block;
	margin-left: 8px;
	padding: 2px 8px;
	font-family: var(--kv-font-nav);
	font-size: 0.6875rem;
	font-weight: 700;
	color: var(--kv-accent);
	background: rgba(107, 142, 107, 0.1);
	border-radius: 10px;
	letter-spacing: 0.02em;
	vertical-align: middle;
}

/* Lodging card accent */

.kv-place-card--lodging .kv-place-card__actions .kv-btn--primary {
	background: var(--kv-secondary);
	border-color: var(--kv-secondary);
	color: var(--kv-primary-dark);
	font-weight: 700;
}

.kv-place-card--lodging .kv-place-card__actions .kv-btn--primary:hover {
	background: var(--kv-secondary-dark, #b8942e);
	border-color: var(--kv-secondary-dark, #b8942e);
}

/* List layout for place cards */

.kv-places-directory__grid--list .kv-place-card {
	display: grid;
	grid-template-columns: 200px 1fr;
}

.kv-places-directory__grid--list .kv-place-card__photo {
	aspect-ratio: auto;
	height: 100%;
}

/* Loading Spinner */

.kv-places-directory__loading {
	grid-column: 1 / -1;
	text-align: center;
	padding: 60px 0;
	color: var(--kv-text-light);
}

.kv-spinner {
	display: inline-block;
	width: 36px;
	height: 36px;
	border: 3px solid var(--kv-border);
	border-top-color: var(--kv-primary);
	border-radius: 50%;
	animation: kv-spin 0.8s linear infinite;
	margin-bottom: 12px;
}

@keyframes kv-spin {
	to { transform: rotate(360deg); }
}

.kv-places-directory__load-more {
	text-align: center;
	margin-top: 30px;
}

.kv-places-directory__no-api {
	text-align: center;
	padding: 40px;
	background-color: var(--kv-bg);
	border-radius: var(--kv-radius-lg);
	color: var(--kv-text-light);
}

.kv-places-directory__google-notice {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 24px;
	padding: 14px 18px;
	background: var(--kv-bg-alt, #f8f7f4);
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: var(--kv-radius, 8px);
}

.kv-places-directory__google-notice svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--kv-text-light);
}

.kv-places-directory__google-notice p {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: var(--kv-text-light);
}

.kv-places-directory__google-notice a {
	color: var(--kv-primary);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.kv-places-directory__google-notice a:hover {
	color: var(--kv-accent);
}

.kv-places-directory__faves-notice {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 12px 0 20px;
	padding: 14px 18px;
	background: linear-gradient(135deg, rgba(107, 142, 107, 0.06), rgba(200, 162, 50, 0.06));
	border: 1px solid rgba(107, 142, 107, 0.15);
	border-radius: var(--kv-radius, 8px);
}

.kv-places-directory__faves-notice svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--kv-accent, #6b8e6b);
}

.kv-places-directory__faves-notice p {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: var(--kv-text);
}

.kv-places-directory__faves-notice a {
	color: var(--kv-primary);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.kv-places-directory__faves-notice a:hover {
	color: var(--kv-accent);
}

/* Pagination */

.kv-places-pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid var(--kv-border, rgba(0, 0, 0, 0.08));
}

.kv-places-pagination__info {
	font-size: 0.8125rem;
	color: var(--kv-text-light);
}

.kv-places-pagination__nav {
	display: flex;
	align-items: center;
	gap: 4px;
}

.kv-places-pagination__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 6px;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--kv-text);
	background: transparent;
	border: 1px solid var(--kv-border, rgba(0, 0, 0, 0.1));
	border-radius: var(--kv-radius, 8px);
	cursor: pointer;
	transition: all 0.2s ease;
}

.kv-places-pagination__btn:hover:not(.is-disabled):not(.is-active) {
	background-color: var(--kv-bg-alt, #f5f5f5);
	border-color: var(--kv-text-light);
}

.kv-places-pagination__btn.is-active {
	background-color: var(--kv-primary);
	border-color: var(--kv-primary);
	color: #fff;
	font-weight: 600;
}

.kv-places-pagination__btn.is-disabled {
	opacity: 0.35;
	cursor: default;
}

.kv-places-pagination__dots {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 36px;
	font-size: 0.875rem;
	color: var(--kv-text-light);
	letter-spacing: 2px;
}

@media (max-width: 600px) {
	.kv-places-pagination {
		justify-content: center;
	}

	.kv-places-pagination__info {
		width: 100%;
		text-align: center;
	}
}

/* Favorite (Heart) Button — used on place cards, event cards, etc. */

.kv-fave-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.9);
	color: var(--kv-text-light);
	cursor: pointer;
	transition: all 0.25s ease;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.kv-fave-btn:hover {
	color: #e74c6f;
	background-color: #fff;
	transform: scale(1.1);
}

.kv-fave-btn.is-faved {
	color: #e74c6f;
	background-color: #fff;
}

.kv-fave-btn.is-faved:hover {
	transform: scale(1.1);
}

/* Admin-only per-category hide controls */
.kv-places-directory__admin-bar {
	display: none;
	margin: 0 0 16px;
}

.kv-places-directory__show-hidden {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--kv-font-nav);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--kv-text-light);
	background: rgba(0, 0, 0, 0.04);
	border: 1px dashed rgba(0, 0, 0, 0.2);
	border-radius: 999px;
	padding: 6px 14px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.kv-places-directory__show-hidden:hover {
	color: var(--kv-primary);
	border-color: var(--kv-primary);
}

.kv-place-hide-btn {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 5;
	font-family: var(--kv-font-nav);
	font-size: 11px;
	font-weight: 600;
	color: var(--kv-text-light);
	background-color: rgba(255, 255, 255, 0.92);
	border: none;
	border-radius: 999px;
	padding: 5px 10px;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	transition: all 0.2s ease;
}

.kv-place-hide-btn:hover {
	color: #c0392b;
	background-color: #fff;
}

.kv-place-hide-btn:disabled {
	opacity: 0.5;
	cursor: default;
}

/* Admin cover-image picker — bottom-left of the photo. */
.kv-place-cover-btn {
	position: absolute;
	top: 48px;
	left: 10px;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-family: var(--kv-font-nav);
	font-size: 11px;
	font-weight: 600;
	color: var(--kv-primary);
	background-color: rgba(255, 255, 255, 0.92);
	border: none;
	border-radius: 999px;
	padding: 5px 10px;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	transition: all 0.2s ease;
}
.kv-place-cover-btn svg { display: block; }
.kv-place-cover-btn:hover { color: var(--kv-secondary-dark, #a8862f); background-color: #fff; }
.kv-place-cover-btn:disabled { opacity: 0.5; cursor: default; }

/* Admin "Generate description" button — shown inline where a missing
   description would go (Claude-generated, saved to the place override). */
.kv-place-desc-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 4px 0 2px;
	font-family: var(--kv-font-nav);
	font-size: 12px;
	font-weight: 600;
	color: var(--kv-primary);
	background-color: rgba(200, 169, 81, 0.12);
	border: 1px dashed rgba(200, 169, 81, 0.7);
	border-radius: 8px;
	padding: 6px 12px;
	cursor: pointer;
	transition: all 0.2s ease;
}
.kv-place-desc-btn svg { display: block; }
.kv-place-desc-btn:hover { background-color: rgba(200, 169, 81, 0.2); border-color: var(--kv-secondary, #c8a951); }
.kv-place-desc-btn:disabled,
.kv-place-desc-btn.is-loading { opacity: 0.6; cursor: default; }

.kv-place-card--hidden {
	opacity: 0.5;
	filter: grayscale(0.6);
}

.kv-place-card--hidden .kv-place-hide-btn {
	color: var(--kv-primary);
}

/* Hero Slider Widget
   ========================================================================== */

.kv-hero-slider {
	position: relative;
	overflow: hidden;
	background-color: var(--kv-primary-dark);
	width: 100%;
}

.kv-hero-slider:focus {
	outline: none;
}

.kv-hero-slider__track {
	position: relative;
	width: 100%;
	height: 100%;
}

/* Individual Slide */

.kv-hero-slider__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease, visibility 0.8s ease;
	z-index: 1;
}

.kv-hero-slider__slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

.kv-hero-slider__slide.is-leaving {
	opacity: 0;
	visibility: visible;
	z-index: 1;
}

/* Slide transition */

.kv-hero-slider--slide .kv-hero-slider__slide {
	transition: transform 0.8s ease, opacity 0.6s ease, visibility 0.8s ease;
	transform: translateX(0);
}

.kv-hero-slider--slide .kv-hero-slider__slide.slide-in-right {
	animation: kvSlideInRight 0.8s ease forwards;
}

.kv-hero-slider--slide .kv-hero-slider__slide.slide-in-left {
	animation: kvSlideInLeft 0.8s ease forwards;
}

.kv-hero-slider--slide .kv-hero-slider__slide.is-leaving {
	animation: kvSlideOut 0.8s ease forwards;
}

@keyframes kvSlideInRight {
	from { transform: translateX(100%); opacity: 0; }
	to   { transform: translateX(0); opacity: 1; }
}

@keyframes kvSlideInLeft {
	from { transform: translateX(-100%); opacity: 0; }
	to   { transform: translateX(0); opacity: 1; }
}

@keyframes kvSlideOut {
	from { opacity: 1; }
	to   { opacity: 0; }
}

/* Background Media — !important needed to override Elementor's
   `.elementor img { height: auto; max-width: 100%; }` global reset */

.kv-hero-slider__bg {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover !important;
}

.kv-hero-slider__slide.is-active .kv-hero-slider__bg {
	animation: kvKenBurns 14s ease-in-out alternate infinite;
}

@keyframes kvKenBurns {
	0%   { transform: scale(1); }
	100% { transform: scale(1.06); }
}

/* Event flyer slides — show the whole poster contained on the right,
   with a blurred zoom of the same flyer filling the background. */

.kv-hero-slider__bg--blur {
	object-fit: cover !important;
	transform: scale(1.15);
	filter: blur(28px) brightness(0.6) saturate(1.1);
}

/* No Ken Burns drift on the blurred fill — keep it calm */
.kv-hero-slider__slide.is-active .kv-hero-slider__bg--blur {
	animation: none;
}

.kv-hero-slider__flyer {
	position: absolute !important;
	top: 0;
	right: 0;
	bottom: 0;
	width: 50% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: contain !important;
	object-position: center center;
	z-index: 4; /* above overlay, below content */
	padding: 32px 32px 88px;
	filter: drop-shadow(0 12px 32px rgba(0,0,0,0.45));
}

/* Event slides: vertically center the text box so a tall stack
   (heading + description + button + date) can't overflow the top
   of the slider and slip behind the menu. */
.kv-hero-slider__slide--event .kv-hero-slider__content {
	align-items: center;
}

/* Keep event headings from growing tall enough to clip */
.kv-hero-slider__slide--event .kv-hero-slider__heading {
	font-size: clamp(2rem, 4vw, 3.25rem);
}

.kv-hero-slider__video {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover !important;
}

.kv-hero-slider__youtube {
	position: absolute;
	inset: -60px;
	width: calc(100% + 120px);
	height: calc(100% + 120px);
}

.kv-hero-slider__youtube iframe {
	width: 100%;
	height: 100%;
	border: 0;
	pointer-events: none;
}

/* Overlay */

.kv-hero-slider__overlay {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(15,35,64,0.3)  0%, transparent 40%),
		linear-gradient(0deg,   rgba(15,35,64,0.7)  0%, transparent 60%),
		linear-gradient(90deg,  rgba(15,35,64,0.55) 0%, transparent 65%);
}

/* Content */

.kv-hero-slider__content {
	position: relative;
	z-index: 5;
	display: flex;
	align-items: flex-end;
	height: 100%;
	padding: 80px 0;
	color: #fff;
}

.kv-hero-slider__content--center {
	align-items: center;
	text-align: center;
}

.kv-hero-slider__content--center .kv-hero-slider__text-wrap {
	margin: 0 auto;
}

.kv-hero-slider__content--right {
	justify-content: flex-end;
}

.kv-hero-slider__content--right .kv-hero-slider__text-wrap {
	text-align: right;
}

.kv-hero-slider__text-wrap {
	max-width: 620px;
	position: relative;
	background: linear-gradient(135deg, rgba(15,35,64,0.45) 0%, rgba(15,35,64,0.15) 100%);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border-radius: var(--kv-radius-lg);
	padding: 36px 40px;
	border: 1px solid rgba(255,255,255,0.08);
}

.kv-hero-slider__accent {
	width: 48px;
	height: 3px;
	background: var(--kv-secondary);
	border-radius: 2px;
	margin-bottom: 20px;
}

.kv-hero-slider__content--center .kv-hero-slider__accent {
	margin-left: auto;
	margin-right: auto;
}

.kv-hero-slider__content--right .kv-hero-slider__accent {
	margin-left: auto;
}

.kv-hero-slider__slide.is-active .kv-hero-slider__accent {
	animation: kvFadeUp 0.6s ease 0.15s both;
}

.kv-hero-slider__slide.is-active .kv-hero-slider__subheading {
	animation: kvFadeUp 0.6s ease 0.25s both;
}

.kv-hero-slider__slide.is-active .kv-hero-slider__heading {
	animation: kvFadeUp 0.65s ease 0.35s both;
}

.kv-hero-slider__slide.is-active .kv-hero-slider__desc {
	animation: kvFadeUp 0.6s ease 0.5s both;
}

.kv-hero-slider__slide.is-active .kv-hero-slider__cta {
	animation: kvFadeUp 0.6s ease 0.6s both;
}

.kv-hero-slider__slide.is-active .kv-hero-slider__event-meta {
	animation: kvFadeUp 0.6s ease 0.6s both;
}

@keyframes kvFadeUp {
	from { opacity: 0; transform: translateY(20px); }
	to   { opacity: 1; transform: translateY(0); }
}

.kv-hero-slider__subheading {
	display: inline-block;
	font-family: var(--kv-font-nav);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--kv-secondary);
	margin-bottom: 14px;
	text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.kv-hero-slider__heading {
	font-family: var(--kv-font-heading);
	font-weight: 700;
	color: #fff;
	line-height: 1.05;
	margin-bottom: 18px;
	text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.kv-hero-slider__heading--medium {
	font-size: clamp(2rem, 4vw, 3rem);
}

.kv-hero-slider__heading--large {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.kv-hero-slider__heading--xlarge {
	font-size: clamp(3rem, 8vw, 6rem);
}

.kv-hero-slider__desc {
	font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 28px;
	max-width: 480px;
	text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.kv-hero-slider__content--center .kv-hero-slider__desc {
	margin-left: auto;
	margin-right: auto;
}

/* CTA wrapper */

.kv-hero-slider__cta {
	display: flex;
	align-items: center;
	gap: 16px;
}

.kv-hero-slider__content--center .kv-hero-slider__cta {
	justify-content: center;
}

.kv-hero-slider__cta .kv-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-shadow: none;
}

.kv-hero-slider__btn-arrow {
	transition: transform 0.3s ease;
}

.kv-hero-slider__cta .kv-btn:hover .kv-hero-slider__btn-arrow {
	transform: translateX(4px);
}

/* Button outline variant */

.kv-hero-slider__btn--outline-white {
	border-color: rgba(255, 255, 255, 0.6);
	color: #fff;
	backdrop-filter: blur(4px);
	background: rgba(255,255,255,0.06);
}

.kv-hero-slider__btn--outline-white:hover {
	background-color: #fff;
	border-color: #fff;
	color: var(--kv-primary-dark);
}

/* Event Meta Badge */

.kv-hero-slider__event-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 24px;
	padding: 16px 20px;
	background: rgba(255,255,255,0.08);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: var(--kv-radius);
}

.kv-hero-slider__event-badge {
	flex-shrink: 0;
	background-color: var(--kv-secondary);
	color: var(--kv-primary-dark);
	border-radius: var(--kv-radius);
	padding: 10px 16px;
	text-align: center;
	line-height: 1;
	min-width: 60px;
}

.kv-hero-slider__event-month {
	display: block;
	font-family: var(--kv-font-nav);
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 2px;
}

.kv-hero-slider__event-day {
	display: block;
	font-family: var(--kv-font-heading);
	font-size: 1.75rem;
	font-weight: 700;
}

.kv-hero-slider__event-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.kv-hero-slider__event-date-text {
	font-family: var(--kv-font-nav);
	font-size: 0.9375rem;
	font-weight: 600;
	color: #fff;
}

.kv-hero-slider__event-location {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.75);
}

.kv-hero-slider__event-location svg {
	color: var(--kv-secondary);
}

/* Arrows */

.kv-hero-slider__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1.5px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	cursor: pointer;
	transition: opacity 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
	backdrop-filter: blur(6px);
	opacity: 0;
	pointer-events: none;
}

.kv-hero-slider:hover .kv-hero-slider__arrow {
	opacity: 1;
	pointer-events: auto;
}

.kv-hero-slider__arrow:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-50%) scale(1.06);
}

.kv-hero-slider__arrow--prev {
	left: 24px;
}

.kv-hero-slider__arrow--next {
	right: 24px;
}

/* Bottom Nav Bar */

.kv-hero-slider__nav-bar {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 10px 20px;
	background: rgba(15,35,64,0.35);
	backdrop-filter: blur(10px);
	border-radius: 40px;
	border: 1px solid rgba(255,255,255,0.1);
}

.kv-hero-slider__dots {
	display: flex;
	gap: 8px;
	align-items: center;
}

.kv-hero-slider__dot {
	width: 28px;
	height: 3px;
	border-radius: 2px;
	border: none;
	background-color: rgba(255, 255, 255, 0.25);
	cursor: pointer;
	transition: all 0.4s ease;
	padding: 0;
	position: relative;
	overflow: hidden;
}

.kv-hero-slider__dot-fill {
	position: absolute;
	inset: 0;
	background-color: var(--kv-secondary);
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.kv-hero-slider__dot.is-active {
	width: 40px;
	background-color: rgba(255,255,255,0.15);
}

.kv-hero-slider__dot.is-active .kv-hero-slider__dot-fill {
	transform: scaleX(1);
}

.kv-hero-slider__dot:hover {
	background-color: rgba(255, 255, 255, 0.35);
}

.kv-hero-slider__counter {
	font-family: var(--kv-font-nav);
	font-size: 0.75rem;
	font-weight: 600;
	color: rgba(255,255,255,0.5);
	letter-spacing: 0.06em;
	white-space: nowrap;
}

.kv-hero-slider__counter-current {
	color: #fff;
}

.kv-hero-slider__counter-sep {
	margin: 0 3px;
	opacity: 0.4;
}

/* Progress bar */

.kv-hero-slider__progress {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 3px;
	background-color: var(--kv-secondary);
	z-index: 10;
	transition: width 0.1s linear;
}

/* Responsive */

@media (max-width: 1199px) {
	.kv-hero-slider__arrow {
		width: 44px;
		height: 44px;
	}

	.kv-hero-slider__arrow--prev { left: 16px; }
	.kv-hero-slider__arrow--next { right: 16px; }

	.kv-hero-slider__content {
		padding: 60px 0;
	}
}

@media (max-width: 767px) {
	.kv-hero-slider__arrow {
		display: none;
	}

	.kv-hero-slider__content {
		padding: 48px 0 80px;
		align-items: flex-end;
	}

	.kv-hero-slider__text-wrap {
		max-width: 100%;
	}

	.kv-hero-slider__heading--xlarge {
		font-size: clamp(2rem, 8vw, 3rem);
	}

	.kv-hero-slider__heading--large {
		font-size: clamp(1.75rem, 6vw, 2.5rem);
	}

	.kv-hero-slider__desc {
		font-size: 0.9375rem;
	}

	.kv-hero-slider__nav-bar {
		bottom: 18px;
		padding: 8px 14px;
		gap: 14px;
	}

	.kv-hero-slider__dot {
		width: 22px;
		height: 3px;
	}

	.kv-hero-slider__dot.is-active {
		width: 32px;
	}

	.kv-hero-slider__event-meta {
		flex-wrap: wrap;
		padding: 12px 16px;
	}

	.kv-hero-slider__text-wrap {
		padding: 28px 24px;
	}

	.kv-hero-slider__content--right .kv-hero-slider__text-wrap,
	.kv-hero-slider__content--center .kv-hero-slider__text-wrap {
		text-align: left;
	}

	.kv-hero-slider__cta {
		flex-direction: column;
	}

	.kv-hero-slider__cta .kv-btn {
		width: 100%;
		justify-content: center;
	}

	/* Event flyer: full width across the top, text box drops to the bottom */
	.kv-hero-slider__flyer {
		width: 100% !important;
		padding: 16px 16px 200px;
	}

	.kv-hero-slider__slide--event .kv-hero-slider__content {
		align-items: flex-end;
	}
}

/* Welcome Section Widget
   ========================================================================== */

.kv-welcome {
	background-color: var(--kv-bg);
}

.kv-welcome--spacing-compact { padding: 48px 0; }
.kv-welcome--spacing-medium  { padding: 72px 0; }
.kv-welcome--spacing-large   { padding: 100px 0; }

.kv-welcome--center { text-align: center; }
.kv-welcome--left   { text-align: left; }

/* Accent / Decorative Element */

.kv-welcome__accent {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.kv-welcome--left .kv-welcome__accent {
	margin-left: 0;
}

.kv-welcome__accent-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.kv-welcome__sunburst-rays {
	transform-origin: 60px 60px;
	animation: kvSunSpin 60s linear infinite;
}

@keyframes kvSunSpin {
	to { transform: rotate(360deg); }
}

/* Subtitle */

.kv-welcome__subtitle {
	display: block;
	font-family: var(--kv-font-heading);
	font-size: clamp(1rem, 2vw, 1.375rem);
	font-weight: 400;
	font-style: italic;
	color: var(--kv-secondary-dark);
	margin-bottom: 8px;
	letter-spacing: 0.02em;
}

/* Title */

.kv-welcome__title {
	font-family: var(--kv-font-heading);
	color: var(--kv-primary);
	margin-bottom: 24px;
	line-height: 1.05;
	letter-spacing: -0.01em;
}

.kv-welcome__title--medium {
	font-size: clamp(2rem, 4vw, 3rem);
}

.kv-welcome__title--large {
	font-size: clamp(2.5rem, 5.5vw, 4rem);
}

.kv-welcome__title--xlarge {
	font-size: clamp(3rem, 7vw, 5.5rem);
}

/* Description */

.kv-welcome__desc {
	font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
	line-height: 1.8;
	color: var(--kv-text);
	margin-bottom: 8px;
}

.kv-welcome--center .kv-welcome__desc {
	margin-left: auto;
	margin-right: auto;
}

.kv-welcome__desc p:last-child {
	margin-bottom: 0;
}

/* CTA */

.kv-welcome__cta {
	margin-top: 28px;
}

/* Explore Cards */

.kv-welcome__cards {
	display: grid;
	gap: 20px;
	margin-top: 50px;
}

.kv-welcome__cards--2col { grid-template-columns: repeat(2, 1fr); }
.kv-welcome__cards--3col { grid-template-columns: repeat(3, 1fr); }
.kv-welcome__cards--4col { grid-template-columns: repeat(4, 1fr); }
.kv-welcome__cards--5col { grid-template-columns: repeat(5, 1fr); }

.kv-welcome__card {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	text-decoration: none;
	cursor: pointer;
}

.kv-welcome__cards--4col .kv-welcome__card,
.kv-welcome__cards--5col .kv-welcome__card {
	aspect-ratio: 3 / 4;
}

.kv-welcome__cards--2col .kv-welcome__card {
	aspect-ratio: 4 / 3;
}

.kv-welcome__cards--3col .kv-welcome__card {
	aspect-ratio: 1 / 1;
}

.kv-welcome__cards--rounded .kv-welcome__card {
	border-radius: var(--kv-radius-lg);
}

.kv-welcome__cards--circle .kv-welcome__card {
	border-radius: 50%;
}

.kv-welcome__card img.kv-welcome__card-img,
.elementor-widget .kv-welcome__card img {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	transition: transform 0.5s ease;
}

.kv-welcome__card:hover .kv-welcome__card-img {
	transform: scale(1.08);
}

.kv-welcome__card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(15, 35, 64, 0.65) 0%, rgba(15, 35, 64, 0.15) 60%, transparent 100%);
	transition: background 0.3s ease;
	z-index: 2;
}

.kv-welcome__card:hover .kv-welcome__card-overlay {
	background: linear-gradient(to top, rgba(15, 35, 64, 0.75) 0%, rgba(15, 35, 64, 0.25) 60%, transparent 100%);
}

.kv-welcome__card-label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 20px 16px;
	font-family: var(--kv-font-nav);
	font-size: clamp(0.6875rem, 1.2vw, 0.875rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #fff;
	text-align: center;
	transition: transform 0.3s ease;
}

.kv-welcome__card:hover .kv-welcome__card-label {
	transform: translateY(-4px);
}

.kv-welcome__card-icon {
	display: inline-flex;
	align-items: center;
}

.kv-welcome__card-icon i,
.kv-welcome__card-icon svg {
	font-size: 1em;
	width: 1em;
	height: 1em;
}

/* Responsive */

@media (max-width: 1199px) {
	.kv-welcome__cards--5col {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 767px) {
	.kv-welcome--spacing-large { padding: 56px 0; }
	.kv-welcome--spacing-medium { padding: 44px 0; }

	.kv-welcome__cards {
		margin-top: 36px;
	}

	.kv-welcome__cards--4col,
	.kv-welcome__cards--5col {
		grid-template-columns: repeat(2, 1fr);
	}

	.kv-welcome__cards--3col {
		grid-template-columns: repeat(2, 1fr);
	}

	.kv-welcome__card {
		aspect-ratio: 4 / 3;
	}

	.kv-welcome__cards--circle .kv-welcome__card {
		aspect-ratio: 1 / 1;
	}

	.kv-welcome__title--xlarge {
		font-size: clamp(2rem, 8vw, 3rem);
	}
}

@media (max-width: 479px) {
	.kv-welcome__cards--2col,
	.kv-welcome__cards--3col,
	.kv-welcome__cards--4col,
	.kv-welcome__cards--5col {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}
}

/* Walking Tour Promo Widget
   ========================================================================== */

/* --- Color Scheme Variables --- */

.kv-wt-promo--heritage {
	--wt-bg: #5C3D2E;
	--wt-bg-light: #F8F3ED;
	--wt-accent: #C47C3D;
	--wt-accent-light: #E6A756;
	--wt-text: #fff;
	--wt-text-muted: rgba(255,255,255,0.75);
	--wt-badge-bg: rgba(196,124,61,0.2);
	--wt-badge-text: #E6A756;
	--wt-feat-bg: rgba(255,255,255,0.1);
	--wt-btn-primary-bg: #C47C3D;
	--wt-btn-primary-text: #fff;
	--wt-btn-secondary-bg: transparent;
	--wt-btn-secondary-border: rgba(255,255,255,0.5);
	--wt-btn-secondary-text: #fff;
}

.kv-wt-promo--brand {
	--wt-bg: var(--kv-primary-dark);
	--wt-bg-light: var(--kv-bg);
	--wt-accent: var(--kv-secondary);
	--wt-accent-light: var(--kv-secondary-light);
	--wt-text: #fff;
	--wt-text-muted: rgba(255,255,255,0.75);
	--wt-badge-bg: rgba(200,169,81,0.2);
	--wt-badge-text: var(--kv-secondary);
	--wt-feat-bg: rgba(255,255,255,0.08);
	--wt-btn-primary-bg: var(--kv-secondary);
	--wt-btn-primary-text: var(--kv-primary-dark);
	--wt-btn-secondary-bg: transparent;
	--wt-btn-secondary-border: rgba(255,255,255,0.5);
	--wt-btn-secondary-text: #fff;
}

.kv-wt-promo--light {
	--wt-bg: var(--kv-surface);
	--wt-bg-light: var(--kv-bg);
	--wt-accent: #C47C3D;
	--wt-accent-light: #E6A756;
	--wt-text: var(--kv-text);
	--wt-text-muted: var(--kv-text-light);
	--wt-badge-bg: rgba(196,124,61,0.1);
	--wt-badge-text: #C47C3D;
	--wt-feat-bg: var(--kv-bg);
	--wt-btn-primary-bg: #C47C3D;
	--wt-btn-primary-text: #fff;
	--wt-btn-secondary-bg: transparent;
	--wt-btn-secondary-border: var(--kv-border);
	--wt-btn-secondary-text: var(--kv-text);
}

/* --- Base --- */

.kv-wt-promo {
	position: relative;
	overflow: hidden;
}

/* Optional full-width section background behind the promo card. */
.kv-wt-promo-wrap {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 64px 24px;
}

.kv-wt-promo-wrap__overlay {
	position: absolute;
	inset: 0;
	background: var(--kv-primary, #0f2340);
	z-index: 0;
}

.kv-wt-promo-wrap > .kv-wt-promo {
	position: relative;
	z-index: 1;
}

@media (max-width: 600px) {
	.kv-wt-promo-wrap { padding: 40px 16px; }
}

/* --- Banner Layout --- */

.kv-wt-promo--banner {
	position: relative;
	min-height: 420px;
	display: flex;
	align-items: center;
	background-color: var(--wt-bg);
}

.kv-wt-promo__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
}

.kv-wt-promo__overlay {
	position: absolute;
	inset: 0;
	background-color: #2A1A0E;
	z-index: 1;
}

.kv-wt-promo--banner .kv-wt-promo__body {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 60px 0;
}

.kv-wt-promo--banner .kv-wt-promo__content {
	max-width: 680px;
}

/* --- Split Layout --- */

.kv-wt-promo--split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background-color: var(--wt-bg);
	border-radius: var(--kv-radius-lg);
	overflow: hidden;
}

.kv-wt-promo--split.kv-wt-promo--light {
	border: 1px solid var(--kv-border);
	box-shadow: 0 4px 20px var(--kv-shadow);
}

.kv-wt-promo--split.kv-wt-promo--img-right {
	direction: rtl;
}

.kv-wt-promo--split.kv-wt-promo--img-right > * {
	direction: ltr;
}

.kv-wt-promo__image-col {
	position: relative;
	overflow: hidden;
	min-height: 360px;
}

.kv-wt-promo__image-col img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.kv-wt-promo--split:hover .kv-wt-promo__image-col img {
	transform: scale(1.04);
}

.kv-wt-promo--split .kv-wt-promo__body {
	display: flex;
	align-items: center;
	padding: 48px 44px;
}

/* --- Card Layout --- */

.kv-wt-promo--card {
	background-color: var(--wt-bg);
	border-radius: var(--kv-radius-lg);
	overflow: hidden;
}

.kv-wt-promo--card.kv-wt-promo--light {
	border: 1px solid var(--kv-border);
	box-shadow: 0 4px 20px var(--kv-shadow);
}

.kv-wt-promo--card .kv-wt-promo__body {
	padding: 36px 32px;
}

.kv-wt-promo--card .kv-wt-promo__desc {
	font-size: 0.875rem;
}

.kv-wt-promo--card .kv-wt-promo__features {
	flex-direction: column;
	gap: 6px;
}

.kv-wt-promo--card .kv-wt-promo__feat {
	padding: 8px 12px;
}

/* --- Shared Content Styles --- */

.kv-wt-promo__logo {
	color: var(--wt-accent);
	margin-bottom: 16px;
}

.kv-wt-promo__badge {
	display: inline-block;
	font-family: var(--kv-font-nav);
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--wt-badge-text);
	background-color: var(--wt-badge-bg);
	padding: 5px 14px;
	border-radius: 20px;
	margin-bottom: 16px;
}

.kv-wt-promo__title {
	font-family: var(--kv-font-heading);
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 700;
	color: var(--wt-text);
	margin-bottom: 4px;
	line-height: 1.1;
}

.kv-wt-promo__subtitle {
	display: block;
	font-family: var(--kv-font-heading);
	font-size: clamp(1rem, 2vw, 1.25rem);
	font-style: italic;
	font-weight: 400;
	color: var(--wt-accent-light);
	margin-bottom: 16px;
}

.kv-wt-promo__desc {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--wt-text-muted);
	margin-bottom: 24px;
	max-width: 560px;
}

/* Features */

.kv-wt-promo__features {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
}

.kv-wt-promo__feat {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: var(--wt-feat-bg);
	padding: 10px 16px;
	border-radius: var(--kv-radius);
	transition: background-color var(--kv-transition);
}

.kv-wt-promo__feat:hover {
	background-color: rgba(255,255,255,0.15);
}

.kv-wt-promo--light .kv-wt-promo__feat:hover {
	background-color: var(--kv-bg-alt);
}

.kv-wt-promo__feat-icon {
	display: inline-flex;
	color: var(--wt-accent);
	flex-shrink: 0;
}

.kv-wt-promo__feat-text {
	font-family: var(--kv-font-nav);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--wt-text);
	white-space: nowrap;
}

/* Buttons */

.kv-wt-promo__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.kv-wt-promo__btn {
	font-size: 0.875rem;
	padding: 14px 28px;
}

.kv-wt-promo__btn--primary {
	background-color: var(--wt-btn-primary-bg);
	color: var(--wt-btn-primary-text);
	border-color: var(--wt-btn-primary-bg);
}

.kv-wt-promo__btn--primary:hover {
	filter: brightness(1.1);
	color: var(--wt-btn-primary-text);
}

.kv-wt-promo__btn--secondary {
	background-color: var(--wt-btn-secondary-bg);
	color: var(--wt-btn-secondary-text);
	border-color: var(--wt-btn-secondary-border);
}

.kv-wt-promo__btn--secondary:hover {
	background-color: rgba(255,255,255,0.1);
	color: var(--wt-btn-secondary-text);
}

.kv-wt-promo--light .kv-wt-promo__btn--secondary:hover {
	background-color: var(--kv-bg);
}

/* Responsive */

@media (max-width: 991px) {
	.kv-wt-promo--split {
		grid-template-columns: 1fr;
	}

	.kv-wt-promo__image-col {
		min-height: 240px;
	}

	.kv-wt-promo--split .kv-wt-promo__body {
		padding: 36px 28px;
	}

	.kv-wt-promo--split.kv-wt-promo--img-right {
		direction: ltr;
	}
}

@media (max-width: 767px) {
	.kv-wt-promo--banner {
		min-height: 0;
	}

	.kv-wt-promo--banner .kv-wt-promo__body {
		padding: 40px 0;
	}

	.kv-wt-promo__features {
		flex-direction: column;
		gap: 6px;
	}

	.kv-wt-promo__feat {
		width: 100%;
	}

	.kv-wt-promo__buttons {
		flex-direction: column;
	}

	.kv-wt-promo__btn {
		width: 100%;
		justify-content: center;
	}

	.kv-wt-promo--card .kv-wt-promo__body {
		padding: 28px 24px;
	}
}

@media (max-width: 479px) {
	.kv-wt-promo__title {
		font-size: 1.5rem;
	}
}

/* ==========================================================================
   Photo Lightbox
   ========================================================================== */

.kv-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.kv-lightbox.is-open {
	opacity: 1;
	visibility: visible;
}

.kv-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.88);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.kv-lightbox__close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	cursor: pointer;
	transition: background 0.2s ease;
}

.kv-lightbox__close:hover {
	background: rgba(255, 255, 255, 0.25);
}

.kv-lightbox__stage {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 1000px;
	padding: 0 60px;
	flex: 1;
	min-height: 0;
}

.kv-lightbox__img-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	max-height: calc(100vh - 120px);
}

.kv-lightbox__img {
	max-width: 100%;
	max-height: calc(100vh - 120px);
	object-fit: contain;
	border-radius: 6px;
	transition: opacity 0.25s ease;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.kv-lightbox__spinner {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.kv-lightbox__spinner .kv-spinner {
	border-color: rgba(255, 255, 255, 0.2);
	border-top-color: #fff;
}

.kv-lightbox__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	cursor: pointer;
	transition: background 0.2s ease;
}

.kv-lightbox__nav:hover {
	background: rgba(255, 255, 255, 0.25);
}

.kv-lightbox__nav--prev {
	left: 12px;
}

.kv-lightbox__nav--next {
	right: 12px;
}

.kv-lightbox__footer {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 12px 20px;
	width: 100%;
	max-width: 1000px;
}

.kv-lightbox__name {
	font-family: var(--kv-font-heading, Georgia, serif);
	font-size: 0.9375rem;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.kv-lightbox__counter {
	font-family: var(--kv-font-nav, sans-serif);
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.65);
	white-space: nowrap;
}

/* Admin "Hide this photo" control in the lightbox footer */
.kv-lightbox__hide {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--kv-font-nav, sans-serif);
	font-size: 0.8125rem;
	font-weight: 600;
	color: #fff;
	background: rgba(201, 107, 107, 0.85);
	border: none;
	border-radius: 999px;
	padding: 6px 14px;
	cursor: pointer;
	transition: background 0.2s ease;
}
.kv-lightbox__hide svg { display: block; }
.kv-lightbox__hide:hover { background: #b65151; }
.kv-lightbox__hide:disabled { opacity: 0.5; cursor: default; }
.kv-lightbox__hide[hidden] { display: none; }

@media (max-width: 600px) {
	.kv-lightbox__stage {
		padding: 0 12px;
	}

	.kv-lightbox__nav {
		width: 36px;
		height: 36px;
	}

	.kv-lightbox__nav--prev {
		left: 4px;
	}

	.kv-lightbox__nav--next {
		right: 4px;
	}

	.kv-lightbox__nav svg {
		width: 20px;
		height: 20px;
	}

	.kv-lightbox__footer {
		flex-direction: column;
		gap: 4px;
	}
}

/* ==================================================================
   History & Heritage Widget
   ================================================================== */

.kv-hh {
	background: var(--kv-bg);
	color: var(--kv-text);
	font-family: var(--kv-font-body);
}

.kv-hh__section {
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
}

.kv-hh--spacing-compact .kv-hh__section { padding-top: 48px; padding-bottom: 48px; }
.kv-hh--spacing-medium  .kv-hh__section { padding-top: 72px; padding-bottom: 72px; }
.kv-hh--spacing-large   .kv-hh__section { padding-top: 100px; padding-bottom: 100px; }

.kv-hh__section--cream    { background: var(--kv-bg); }
.kv-hh__section--bg-alt   { background: var(--kv-bg-alt); }
.kv-hh__section--white    { background: var(--kv-surface); }
.kv-hh__section--navy {
	background: var(--kv-hh-band, var(--kv-primary));
	color: var(--kv-text-inverse);
}

.kv-hh__eyebrow {
	font-family: var(--kv-font-nav);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--kv-secondary);
	display: inline-block;
	margin-bottom: 12px;
}

/* Hero eyebrow: a regal pill so it reads cleanly over the photo */
.kv-hh-hero__eyebrow,
.kv-hd-hero__eyebrow {
	padding: 8px 22px;
	margin-bottom: 18px;
	border-radius: 999px;
	background: rgba(15, 35, 64, 0.55);
	border: 1px solid rgba(200, 169, 81, 0.55);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(200, 169, 81, 0.15);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.kv-hh__heading {
	font-family: var(--kv-font-heading);
	color: var(--kv-primary);
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 18px;
	letter-spacing: -0.5px;
}

.kv-hh__section--navy .kv-hh__heading { color: var(--kv-text-inverse); }

.kv-hh--heading-medium  .kv-hh__heading { font-size: clamp(28px, 3vw, 36px); }
.kv-hh--heading-large   .kv-hh__heading { font-size: clamp(34px, 4vw, 48px); }
.kv-hh--heading-xlarge  .kv-hh__heading { font-size: clamp(40px, 5vw, 64px); }

.kv-hh__lede {
	font-size: 18px;
	line-height: 1.55;
	color: var(--kv-text);
	max-width: 720px;
	margin: 0 0 16px;
}

.kv-hh__section--navy .kv-hh__lede { color: var(--kv-text-inverse); opacity: 0.92; }

.kv-hh__body p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--kv-text);
	margin: 0 0 1em;
}

.kv-hh__section--navy .kv-hh__body p { color: var(--kv-text-inverse); opacity: 0.88; }

.kv-hh__rule {
	width: 60px; height: 2px;
	background: var(--kv-secondary);
	border: 0;
	margin: 0 0 20px;
}

.kv-hh-hero {
	position: relative;
	background-size: cover;
	background-position: center;
	background-color: var(--kv-primary-dark);
	color: var(--kv-text-inverse);
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	/* !important needed: .kv-hh--spacing-* .kv-hh__section is two-class specificity, equal to .kv-hh-hero alone */
	padding-top: 100px !important;
	padding-bottom: 60px !important;
}

.kv-hh-hero--compact { min-height: 50vh; }
.kv-hh-hero--medium  { min-height: 60vh; }
.kv-hh-hero--tall    { min-height: 70vh; }

.kv-hh-hero__overlay {
	position: absolute; inset: 0;
	/* background-color is set inline by render_hero() based on the overlay opacity control */
}

.kv-hh-hero__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 820px;
	margin: 0 auto;
}

.kv-hh-hero__title {
	color: var(--kv-text-inverse);
	font-size: clamp(40px, 6vw, 72px);
	margin-bottom: 18px;
}

.kv-hh-hero__lede {
	color: var(--kv-text-inverse);
	opacity: 0.92;
	font-size: clamp(16px, 1.6vw, 20px);
	margin: 0 auto;
	max-width: 640px;
}

@media (max-width: 768px) {
	.kv-hh-hero { padding-top: 60px !important; padding-bottom: 40px !important; }
	.kv-hh-hero--tall { min-height: 50vh; }
}

/* History & Heritage — Founding (1904) section
   ================================================================== */

.kv-hh-founding__grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 64px;
	align-items: center;
}

.kv-hh-founding__media img {
	width: 100%;
	height: auto;
	border-radius: var(--kv-radius);
	box-shadow: 0 12px 32px var(--kv-shadow);
	display: block;
}

.kv-hh-founding__media figcaption {
	font-family: var(--kv-font-nav);
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--kv-text-light);
	margin-top: 12px;
	text-align: center;
}

@media (max-width: 768px) {
	.kv-hh-founding__grid { grid-template-columns: 1fr; gap: 32px; }
	.kv-hh-founding__media { order: -1; }
}

/* ------------------------------------------------------------------
   History & Heritage — The King Ranch (Task 7)
   ------------------------------------------------------------------ */

.kv-hh-kingranch {
	/* !important: override .kv-hh--spacing-* .kv-hh__section padding-top so the wide photo can sit flush */
	padding-top: 0 !important;
}

.kv-hh-kingranch__photo {
	width: 100%;
	max-height: 460px;
	overflow: hidden;
}

.kv-hh-kingranch__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.kv-hh-kingranch__inner {
	padding-top: 80px;
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 64px;
	align-items: start;
}

/* Color overrides for navy section come from base .kv-hh__section--navy rules. */

.kv-hh-kingranch__text .kv-hh__lede {
	font-style: italic;
	border-left: 3px solid var(--kv-secondary);
	padding-left: 20px;
}

.kv-hh-kingranch__stat {
	border: 1px solid rgba(200,169,81,0.4);
	background: rgba(200,169,81,0.06);
	padding: 32px 28px;
	text-align: center;
	align-self: center; /* center the stat box against the taller text column */
}

.kv-hh-kingranch__stat-value {
	font-family: var(--kv-font-heading);
	font-size: clamp(48px, 6vw, 72px);
	color: var(--kv-secondary);
	font-weight: 700;
	line-height: 1;
	margin-bottom: 8px;
}

.kv-hh-kingranch__stat-label {
	font-family: var(--kv-font-nav);
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--kv-secondary-light);
}

@media (max-width: 768px) {
	.kv-hh-kingranch__inner { grid-template-columns: 1fr; padding-top: 48px; gap: 32px; }
	.kv-hh-kingranch__stat { order: -1; }
}

/* ==================================================================
   History & Heritage — Ranching Innovations
   ================================================================== */
.kv-hh-innovations__header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 56px;
}

.kv-hh-innovations__header .kv-hh__lede { margin-left: auto; margin-right: auto; }

.kv-hh-innovations__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 36px;
}

.kv-hh-innovations__card {
	background: var(--kv-surface);
	border-radius: var(--kv-radius);
	overflow: hidden;
	box-shadow: 0 8px 22px var(--kv-shadow);
	display: flex;
	flex-direction: column;
}

.kv-hh-innovations__media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.kv-hh-innovations__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.kv-hh-innovations__body { padding: 28px; }

.kv-hh-innovations__year {
	display: inline-block;
	font-family: var(--kv-font-nav);
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--kv-secondary-dark);
	background: rgba(200,169,81,0.12);
	padding: 4px 10px;
	border-radius: 100px;
	margin-bottom: 12px;
}

.kv-hh-innovations__name {
	font-family: var(--kv-font-heading);
	font-size: 26px;
	color: var(--kv-primary);
	margin: 0 0 12px;
}

.kv-hh-innovations__body p {
	font-size: 15px;
	line-height: 1.65;
	color: var(--kv-text);
	margin: 0;
}

@media (max-width: 768px) {
	.kv-hh-innovations__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* History & Heritage — Kineños & Vaquero Heritage
   ========================================================================== */

.kv-hh-kinenos__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 56px;
	align-items: center;
}

.kv-hh-kinenos__media img {
	width: 100%;
	height: auto;
	border-radius: var(--kv-radius);
	box-shadow: 0 12px 32px var(--kv-shadow);
	display: block;
}

.kv-hh-kinenos__media figcaption {
	font-family: var(--kv-font-nav);
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--kv-text-light);
	margin-top: 12px;
}

@media (max-width: 768px) {
	.kv-hh-kinenos__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* History & Heritage — Henrietta's Civic Legacy
   ========================================================================== */

.kv-hh-legacy__header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 56px;
}

.kv-hh-legacy__header .kv-hh__body p { font-size: 18px; line-height: 1.65; }

.kv-hh-legacy__gifts {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.kv-hh-legacy__gift {
	text-align: center;
	padding: 28px 18px;
	background: var(--kv-surface);
	border-radius: var(--kv-radius);
	box-shadow: 0 4px 14px var(--kv-shadow);
}

.kv-hh-legacy__gift-icon {
	width: 160px; height: 160px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: rgba(200,169,81,0.12);
	overflow: hidden;
	display: flex; align-items: center; justify-content: center;
}

.kv-hh-legacy__gift-icon img { width: 132px; height: 132px; object-fit: cover; }

.kv-hh-legacy__gift-label {
	font-family: var(--kv-font-heading);
	font-size: 20px;
	color: var(--kv-primary);
	margin-bottom: 8px;
}

.kv-hh-legacy__gift p {
	font-size: 14px;
	line-height: 1.55;
	color: var(--kv-text);
	margin: 0;
}

@media (max-width: 768px) {
	.kv-hh-legacy__gifts { grid-template-columns: 1fr; gap: 18px; }
}

/* History & Heritage — NAS Kingsville
   ========================================================================== */

.kv-hh-nas__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 56px;
	align-items: center;
	margin-bottom: 56px;
}

.kv-hh-nas__media img {
	width: 100%;
	height: auto;
	border-radius: var(--kv-radius);
	box-shadow: 0 12px 32px var(--kv-shadow);
	display: block;
}

.kv-hh-nas__stats {
	list-style: none;
	margin: 0;
	padding: 28px 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	border-top: 1px solid var(--kv-border);
	border-bottom: 1px solid var(--kv-border);
}

.kv-hh-nas__stat { text-align: center; }

.kv-hh-nas__stat-value {
	font-family: var(--kv-font-heading);
	font-size: clamp(28px, 3vw, 40px);
	color: var(--kv-secondary-dark);
	font-weight: 700;
	line-height: 1;
	margin-bottom: 6px;
}

.kv-hh-nas__stat-label {
	font-family: var(--kv-font-nav);
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--kv-text-light);
}

@media (max-width: 768px) {
	.kv-hh-nas__grid { grid-template-columns: 1fr; gap: 32px; }
	.kv-hh-nas__stats { grid-template-columns: 1fr; gap: 16px; }
}

/* ==========================================================================
   History & Heritage — Timeline
   ========================================================================== */

.kv-hh-timeline__header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 64px;
}

.kv-hh-timeline__list {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	position: relative;
	max-width: 1000px;
}

.kv-hh-timeline__list::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0; bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, var(--kv-secondary), rgba(200,169,81,0.2));
	transform: translateX(-50%);
}

.kv-hh-timeline__item {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 24px 1fr;
	align-items: center;
	margin-bottom: 36px;
	min-height: 60px;
}

.kv-hh-timeline__item:last-child { margin-bottom: 0; }

.kv-hh-timeline__dot {
	width: 16px; height: 16px;
	border-radius: 50%;
	background: var(--kv-secondary);
	border: 3px solid var(--kv-bg-alt);
	box-shadow: 0 0 0 2px var(--kv-secondary);
	grid-column: 2;
	margin: 0 auto;
}

.kv-hh-timeline__card {
	background: var(--kv-surface);
	padding: 22px 24px;
	border-radius: var(--kv-radius);
	box-shadow: 0 6px 18px var(--kv-shadow);
}

.kv-hh-timeline__item--left .kv-hh-timeline__card {
	grid-column: 1;
	text-align: right;
	margin-right: 24px;
}

.kv-hh-timeline__item--right .kv-hh-timeline__card {
	grid-column: 3;
	margin-left: 24px;
}

.kv-hh-timeline__year {
	font-family: var(--kv-font-heading);
	font-size: 28px;
	font-weight: 700;
	color: var(--kv-secondary-dark);
	display: block;
	margin-bottom: 6px;
}

.kv-hh-timeline__title {
	font-family: var(--kv-font-heading);
	font-size: 18px;
	color: var(--kv-primary);
	margin: 0 0 8px;
}

.kv-hh-timeline__card p {
	font-size: 14px;
	line-height: 1.55;
	color: var(--kv-text);
	margin: 0;
}

@media (max-width: 768px) {
	.kv-hh-timeline__list::before { left: 16px; }
	.kv-hh-timeline__item {
		grid-template-columns: 32px 1fr;
		margin-bottom: 24px;
	}
	.kv-hh-timeline__dot { grid-column: 1; margin: 0; }
	.kv-hh-timeline__item--left .kv-hh-timeline__card,
	.kv-hh-timeline__item--right .kv-hh-timeline__card {
		grid-column: 2;
		text-align: left;
		margin: 0;
	}
}

/* History & Heritage — Notable Figures
   ========================================================================== */

.kv-hh-figures__header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 56px;
}

.kv-hh-figures__header .kv-hh__lede { margin-left: auto; margin-right: auto; }

.kv-hh-figures__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px;
}

.kv-hh-figures__card {
	background: var(--kv-surface);
	padding: 24px;
	border-radius: var(--kv-radius);
	box-shadow: 0 6px 18px var(--kv-shadow);
	text-align: left;
}

.kv-hh-figures__frame {
	position: relative;
	aspect-ratio: 4 / 5;
	margin-bottom: 18px;
	overflow: hidden;
	padding: 6px;
	border: 4px double var(--kv-secondary);
	background: var(--kv-bg-alt);
	box-shadow: inset 0 0 0 2px var(--kv-surface);
}

.kv-hh-figures__frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.kv-hh-figures__role {
	font-family: var(--kv-font-nav);
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--kv-secondary-dark);
	font-weight: 600;
	margin-bottom: 6px;
}

.kv-hh-figures__name {
	font-family: var(--kv-font-heading);
	font-size: 22px;
	color: var(--kv-primary);
	margin: 0 0 10px;
	line-height: 1.15;
}

.kv-hh-figures__bio {
	font-size: 14px;
	line-height: 1.6;
	color: var(--kv-text);
	margin: 0;
}

@media (max-width: 1024px) {
	.kv-hh-figures__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.kv-hh-figures__grid { grid-template-columns: 1fr; }
}

/* ==================================================================
   History & Heritage — Archive Gallery
   ================================================================== */

.kv-hh-gallery__header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 48px;
}

/* Reusable page photo gallery (reg_gallery / render_gallery on the page base) */
.kv-page-gallery__header { text-align: center; max-width: 720px; margin: 0 auto 32px; }
.kv-page-gallery__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 16px;
}
.kv-page-gallery__item { margin: 0; }
.kv-page-gallery__thumb {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	padding: 0;
	border: 0;
	margin: 0;
	background: var(--kv-bg-alt, #eee);
	border-radius: var(--kv-radius-sm, 8px);
	overflow: hidden;
	cursor: pointer;
	transition: transform var(--kv-transition, 0.25s ease), box-shadow var(--kv-transition, 0.25s ease);
}
.kv-page-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.kv-page-gallery__thumb:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18); }
.kv-page-gallery__thumb:hover img { transform: scale(1.05); }
.kv-page-gallery__thumb:focus-visible { outline: 3px solid var(--kv-secondary, #c8a951); outline-offset: 2px; }
.kv-page-gallery__caption {
	display: block;
	margin-top: 8px;
	font-size: 0.875rem;
	color: var(--kv-text-light, #777);
	line-height: 1.4;
}
@media (prefers-reduced-motion: reduce) {
	.kv-page-gallery__thumb img { transition: none; }
	.kv-page-gallery__thumb:hover img { transform: none; }
}

.kv-hh-gallery__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.kv-hh-gallery__thumb {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	padding: 0;
	border: 0;
	background: var(--kv-bg-alt);
	cursor: pointer;
	overflow: hidden;
	border-radius: var(--kv-radius-sm);
	display: block;
	transition: transform var(--kv-transition), box-shadow var(--kv-transition);
}

/* Grayscale header-logo placeholder shown until the photo fades in over it */
.kv-hh-gallery__thumb::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--kv-gallery-logo, none);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 46%;
	filter: grayscale(1);
	opacity: 0.14;
	pointer-events: none;
	animation: kvGalleryPlaceholderPulse 2.4s ease-in-out infinite;
}

@keyframes kvGalleryPlaceholderPulse {
	0%, 100% { opacity: 0.10; }
	50%      { opacity: 0.18; }
}

.kv-hh-gallery__thumb img {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--kv-transition);
}

.kv-hh-gallery__thumb:hover img,
.kv-hh-gallery__thumb:focus-visible img {
	transform: scale(1.04);
}

.kv-hh-gallery__thumb:focus-visible {
	outline: 3px solid var(--kv-secondary);
	outline-offset: 2px;
}

@media (max-width: 1024px) {
	.kv-hh-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
	.kv-hh-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==================================================================
   Shared — Lightbox (driven by .kv-lightbox-thumb + dialog injected by JS)
   ================================================================== */

.kv-lb {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
}

.kv-lb.is-open { display: flex; }

.kv-lb__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15,35,64,0.92);
	cursor: pointer;
}

.kv-lb__figure {
	position: relative;
	z-index: 1;
	max-width: min(90vw, 1200px);
	max-height: 90vh;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.kv-lb__img {
	max-width: 100%;
	max-height: 80vh;
	height: auto;
	display: block;
	border-radius: var(--kv-radius-sm);
	box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.kv-lb__caption {
	color: var(--kv-text-inverse);
	font-family: var(--kv-font-body);
	font-size: 15px;
	line-height: 1.5;
	margin-top: 16px;
	max-width: 720px;
	text-align: center;
}

.kv-lb__counter {
	color: rgba(255,255,255,0.6);
	font-family: var(--kv-font-nav);
	font-size: 12px;
	letter-spacing: 2px;
	margin-top: 6px;
}

.kv-lb__close,
.kv-lb__nav {
	position: absolute;
	z-index: 2;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.25);
	color: var(--kv-text-inverse);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 24px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--kv-transition);
}

.kv-lb__close:hover,
.kv-lb__nav:hover,
.kv-lb__close:focus-visible,
.kv-lb__nav:focus-visible {
	background: rgba(255,255,255,0.2);
	outline: 2px solid var(--kv-secondary);
	outline-offset: 2px;
}

.kv-lb__close { top: 24px; right: 24px; }
.kv-lb__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.kv-lb__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }

@media (max-width: 600px) {
	.kv-lb__nav--prev { left: 8px; }
	.kv-lb__nav--next { right: 8px; }
	.kv-lb__close     { top: 8px; right: 8px; }
}

/* History & Heritage — Visit Today
   ========================================================================== */

.kv-hh-visit__header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 56px;
}

.kv-hh-visit__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}

.kv-hh-visit__card {
	display: flex;
	flex-direction: column;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(200,169,81,0.25);
	border-radius: var(--kv-radius);
	overflow: hidden;
	color: var(--kv-text-inverse);
	text-decoration: none;
	height: 100%;
	transition: transform var(--kv-transition), border-color var(--kv-transition);
}

.kv-hh-visit__card:hover,
.kv-hh-visit__card:focus-visible {
	transform: translateY(-3px);
	border-color: var(--kv-secondary);
}

.kv-hh-visit__card:focus-visible {
	outline: 2px solid var(--kv-secondary);
	outline-offset: 2px;
}

.kv-hh-visit__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.kv-hh-visit__media img {
	width: 100%; height: 100%; object-fit: cover; display: block;
}

.kv-hh-visit__body {
	padding: 18px 18px 22px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.kv-hh-visit__name {
	font-family: var(--kv-font-heading);
	font-size: 18px;
	line-height: 1.2;
	margin-bottom: 8px;
}

.kv-hh-visit__blurb {
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255,255,255,0.78);
	margin: 0 0 14px;
	flex: 1;
}

.kv-hh-visit__arrow {
	color: var(--kv-secondary);
	font-size: 22px;
	line-height: 1;
}

@media (max-width: 1024px) {
	.kv-hh-visit__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 600px) {
	.kv-hh-visit__grid { grid-template-columns: 1fr; }
}

/* ==================================================================
   Shared — Motion (progressive enhancement)
   Activates when JS adds .is-motion-ready to <body>.
   Without JS, all content renders normally with no animation.
   ================================================================== */

/* Soft warm placeholder behind images while they load */
.kv-hh-founding__media,
.kv-hh-kinenos__media,
.kv-hh-kingranch__photo,
.kv-hh-nas__media,
.kv-hh-innovations__media,
.kv-hh-visit__media,
.kv-hh-figures__frame,
.kv-hh-gallery__thumb,
.kv-hd-storefront__media,
.kv-hd-categories__icon,
.kv-hd-shops__photo,
.kv-hd-gallery__thumb,
.kv-hd-walking-tour__media,
.kv-hd-visit__icon,
.kv-ac-tejano__media,
.kv-ac-livemusic__media,
.kv-ac-tamuk__photo,
.kv-ac-festivals__photo,
.kv-ac-gallery__thumb,
.kv-ac-events__photo,
.kv-ac-visit__icon {
	background-color: rgba(200, 169, 81, 0.08);
}

/* Image graceful loading — fade in once <img> fires `load` */
body.is-motion-ready .kv-motion-target img,
body.is-motion-ready .kv-motion-img {
	opacity: 0;
	transition: opacity 450ms ease;
}

body.is-motion-ready .kv-motion-target img.is-loaded,
body.is-motion-ready .kv-motion-img.is-loaded {
	opacity: 1;
}

/* Viewport reveal — fade + slide up as elements enter the viewport */
body.is-motion-ready .kv-motion-target {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 500ms ease, transform 500ms ease;
	transition-delay: calc(var(--kv-motion-stagger, 0) * 80ms);
	will-change: opacity, transform;
}

body.is-motion-ready .kv-motion-target.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Honor reduced-motion preference: instant display, no transition */
@media (prefers-reduced-motion: reduce) {
	body.is-motion-ready .kv-motion-target,
	body.is-motion-ready .kv-motion-target img,
	body.is-motion-ready .kv-motion-img {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
		transition-delay: 0ms !important;
	}

	.kv-hh-gallery__thumb::before {
		animation: none;
	}
}

/* ==================================================================
   Historic Downtown Widget
   ================================================================== */

.kv-hd {
	background: var(--kv-bg);
	color: var(--kv-text);
	font-family: var(--kv-font-body);
}

.kv-hd__section {
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
}

.kv-hd--spacing-compact .kv-hd__section { padding-top: 48px; padding-bottom: 48px; }
.kv-hd--spacing-medium  .kv-hd__section { padding-top: 72px; padding-bottom: 72px; }
.kv-hd--spacing-large   .kv-hd__section { padding-top: 100px; padding-bottom: 100px; }

.kv-hd__section--cream  { background: var(--kv-bg); }
.kv-hd__section--bg-alt { background: var(--kv-bg-alt); }
.kv-hd__section--white  { background: var(--kv-surface); }
.kv-hd__section--navy   {
	background: var(--kv-hd-band, var(--kv-primary));
	color: var(--kv-text-inverse);
}

.kv-hd__eyebrow {
	font-family: var(--kv-font-nav);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--kv-secondary);
	display: inline-block;
	margin-bottom: 12px;
}

.kv-hd__heading {
	font-family: var(--kv-font-heading);
	color: var(--kv-primary);
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 18px;
	letter-spacing: -0.5px;
}

.kv-hd__section--navy .kv-hd__heading { color: var(--kv-text-inverse); }

.kv-hd--heading-medium  .kv-hd__heading { font-size: clamp(28px, 3vw, 36px); }
.kv-hd--heading-large   .kv-hd__heading { font-size: clamp(34px, 4vw, 48px); }
.kv-hd--heading-xlarge  .kv-hd__heading { font-size: clamp(40px, 5vw, 64px); }

.kv-hd__lede {
	font-size: 18px;
	line-height: 1.55;
	color: var(--kv-text);
	max-width: 720px;
	margin: 0 0 16px;
}

.kv-hd__section--navy .kv-hd__lede { color: var(--kv-text-inverse); opacity: 0.92; }

.kv-hd__body p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--kv-text);
	margin: 0 0 1em;
}

/* Historic Downtown: Hero
   ========================================================================== */

.kv-hd-hero {
	position: relative;
	background-size: cover;
	background-position: center;
	background-color: var(--kv-primary-dark);
	color: var(--kv-text-inverse);
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	/* !important needed: .kv-hd--spacing-* .kv-hd__section is two-class specificity, equal to .kv-hd-hero alone */
	padding-top: 100px !important;
	padding-bottom: 60px !important;
}

.kv-hd-hero--compact { min-height: 50vh; }
.kv-hd-hero--medium  { min-height: 60vh; }
.kv-hd-hero--tall    { min-height: 70vh; }

.kv-hd-hero__overlay {
	position: absolute; inset: 0;
}

.kv-hd-hero__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 820px;
	margin: 0 auto;
}

.kv-hd-hero__title {
	color: var(--kv-text-inverse);
	font-size: clamp(40px, 6vw, 72px);
	margin-bottom: 18px;
}

.kv-hd-hero__lede {
	color: var(--kv-text-inverse);
	opacity: 0.92;
	font-size: clamp(16px, 1.6vw, 20px);
	margin: 0 auto;
	max-width: 640px;
}

@media (max-width: 768px) {
	.kv-hd-hero { padding-top: 60px !important; padding-bottom: 40px !important; }
	.kv-hd-hero--tall { min-height: 50vh; }
}

/* Historic Downtown: Main Street Program
   ========================================================================== */

.kv-hd-ms__inner {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.kv-hd-ms__body {
	text-align: left;
	margin-top: 12px;
}

.kv-hd-ms__credit {
	font-family: var(--kv-font-nav);
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--kv-secondary-dark);
	margin-top: 32px;
	margin-bottom: 0;
}

/* Historic Downtown: A Living Storefront
   ========================================================================== */

.kv-hd-storefront__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 56px;
	align-items: center;
}

.kv-hd-storefront--photo-right .kv-hd-storefront__grid {
	grid-template-columns: 1.1fr 1fr;
}

.kv-hd-storefront--photo-right .kv-hd-storefront__media {
	order: 2;
}

.kv-hd-storefront__media img {
	width: 100%;
	height: auto;
	border-radius: var(--kv-radius);
	box-shadow: 0 12px 32px var(--kv-shadow);
	display: block;
}

.kv-hd-storefront__media figcaption {
	font-family: var(--kv-font-nav);
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--kv-text-light);
	margin-top: 12px;
}

.kv-hd-storefront__meta {
	margin: 24px 0 0;
	padding-top: 18px;
	border-top: 1px solid var(--kv-border);
	display: flex;
	gap: 32px;
}

.kv-hd-storefront__meta-item dt {
	font-family: var(--kv-font-nav);
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--kv-secondary-dark);
	font-weight: 600;
	margin-bottom: 4px;
}

.kv-hd-storefront__meta-item dd {
	font-family: var(--kv-font-heading);
	font-size: 16px;
	color: var(--kv-primary);
	margin: 0;
}

@media (max-width: 768px) {
	.kv-hd-storefront__grid,
	.kv-hd-storefront--photo-right .kv-hd-storefront__grid { grid-template-columns: 1fr; gap: 32px; }
	.kv-hd-storefront--photo-right .kv-hd-storefront__media { order: -1; }
	.kv-hd-storefront__meta { flex-direction: column; gap: 14px; }
}

/* Historic Downtown — Shopping Categories
   ========================================================================== */

.kv-hd-categories__header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 56px;
}

.kv-hd-categories__header .kv-hd__lede { margin-left: auto; margin-right: auto; }

.kv-hd-categories__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.kv-hd-categories__card {
	text-align: center;
	padding: 28px 18px;
	background: var(--kv-surface);
	border-radius: var(--kv-radius);
	box-shadow: 0 4px 14px var(--kv-shadow);
}

.kv-hd-categories__icon {
	width: 72px; height: 72px;
	margin: 0 auto 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--kv-secondary);
}

.kv-hd-categories__icon svg {
	width: 34px;
	height: 34px;
	display: block;
}

.kv-hd-categories__label {
	font-family: var(--kv-font-heading);
	font-size: 18px;
	color: var(--kv-primary);
	margin: 0 0 8px;
}

.kv-hd-categories__blurb {
	font-size: 14px;
	line-height: 1.55;
	color: var(--kv-text);
	margin: 0;
}

@media (max-width: 1024px) {
	.kv-hd-categories__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.kv-hd-categories__grid { grid-template-columns: 1fr; }
}

/* ==================================================================
   Historic Downtown — Featured Shops (live)
   ================================================================== */

.kv-hd-shops__header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 48px;
}

.kv-hd-shops__container { position: relative; }

.kv-hd-shops__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

/* Skeleton cards */
.kv-hd-shops__skeleton {
	background: var(--kv-surface);
	border-radius: var(--kv-radius);
	padding: 14px;
	box-shadow: 0 2px 8px var(--kv-shadow);
}
.kv-hd-shops__skeleton-photo {
	aspect-ratio: 4 / 3;
	background: linear-gradient(90deg, rgba(200,169,81,0.08) 0%, rgba(200,169,81,0.16) 50%, rgba(200,169,81,0.08) 100%);
	background-size: 200% 100%;
	border-radius: var(--kv-radius-sm);
	animation: kv-hd-shimmer 1.4s ease-in-out infinite;
	margin-bottom: 12px;
}
.kv-hd-shops__skeleton-line {
	height: 12px;
	background: rgba(200,169,81,0.12);
	border-radius: 4px;
	margin-top: 8px;
	animation: kv-hd-shimmer 1.4s ease-in-out infinite;
	background-size: 200% 100%;
	background-image: linear-gradient(90deg, rgba(200,169,81,0.08) 0%, rgba(200,169,81,0.16) 50%, rgba(200,169,81,0.08) 100%);
}
.kv-hd-shops__skeleton-line--lg { height: 16px; }

@keyframes kv-hd-shimmer {
	0%   { background-position: 100% 0; }
	100% { background-position: -100% 0; }
}

@media (prefers-reduced-motion: reduce) {
	.kv-hd-shops__skeleton-photo,
	.kv-hd-shops__skeleton-line {
		animation: none;
	}
}

/* Live cards */
.kv-hd-shops__card {
	background: var(--kv-surface);
	border-radius: var(--kv-radius);
	overflow: hidden;
	box-shadow: 0 4px 14px var(--kv-shadow);
	transition: transform var(--kv-transition), box-shadow var(--kv-transition);
}

.kv-hd-shops__card:hover,
.kv-hd-shops__card:focus-within {
	transform: translateY(-3px);
	box-shadow: 0 8px 22px var(--kv-shadow-md);
}

.kv-hd-shops__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.kv-hd-shops__link:focus-visible {
	outline: 2px solid var(--kv-secondary);
	outline-offset: 2px;
}

.kv-hd-shops__photo {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.kv-hd-shops__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.kv-hd-shops__body { padding: 14px; }

.kv-hd-shops__name {
	font-family: var(--kv-font-heading);
	font-size: 16px;
	color: var(--kv-primary);
	margin: 0 0 8px;
	line-height: 1.2;
}

.kv-hd-shops__meta-row {
	display: flex;
	gap: 8px;
	font-size: 12px;
	color: var(--kv-text-light);
	align-items: center;
}

.kv-hd-shops__rating {
	color: var(--kv-secondary-dark);
	font-weight: 700;
	font-size: 13px;
}

.kv-hd-shops__pill {
	display: inline-block;
	margin-top: 8px;
	font-size: 10px;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 100px;
}

.kv-hd-shops__pill--open   { background: rgba(107,142,107,0.16); color: var(--kv-accent-dark); }
.kv-hd-shops__pill--closed { background: rgba(120,120,120,0.16); color: var(--kv-text-light); }

/* Fallback */
.kv-hd-shops__fallback {
	text-align: center;
	padding: 24px 0;
}
.kv-hd-shops__fallback-link {
	display: inline-block;
	font-family: var(--kv-font-heading);
	font-size: 18px;
	color: var(--kv-primary);
	text-decoration: none;
	border-bottom: 2px solid var(--kv-secondary);
	padding-bottom: 4px;
}
.kv-hd-shops__fallback-link:hover { color: var(--kv-secondary-dark); }

@media (max-width: 1024px) {
	.kv-hd-shops__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.kv-hd-shops__grid { grid-template-columns: 1fr; }
}

.kv-hd__section--navy .kv-hd__body p { color: var(--kv-text-inverse); opacity: 0.88; }

/* ==================================================================
   Historic Downtown — Historic Block Gallery
   ================================================================== */

.kv-hd-gallery__header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 48px;
}

.kv-hd-gallery__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.kv-hd-gallery__thumb {
	width: 100%;
	aspect-ratio: 1 / 1;
	padding: 0;
	border: 0;
	background: var(--kv-bg-alt);
	cursor: pointer;
	overflow: hidden;
	border-radius: var(--kv-radius-sm);
	display: block;
	transition: transform var(--kv-transition);
}

.kv-hd-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--kv-transition);
}

.kv-hd-gallery__thumb:hover img,
.kv-hd-gallery__thumb:focus-visible img {
	transform: scale(1.04);
}

.kv-hd-gallery__thumb:focus-visible {
	outline: 3px solid var(--kv-secondary);
	outline-offset: 2px;
}

@media (max-width: 1024px) {
	.kv-hd-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
	.kv-hd-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==================================================================
   Historic Downtown — Walking Tour Callout
   ================================================================== */

/* Optional full-width background image behind the walking-tour card. */
.kv-hd-walking-tour--has-bg {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.kv-hd-walking-tour__bg-overlay {
	position: absolute;
	inset: 0;
	background: var(--kv-primary, #0f2340);
	z-index: 0;
}

.kv-hd-walking-tour--has-bg .kv-container {
	position: relative;
	z-index: 1;
}

.kv-hd-walking-tour__card {
	max-width: 720px;
	margin: 0 auto;
	background: var(--kv-surface);
	border-radius: var(--kv-radius-lg);
	box-shadow: 0 12px 32px var(--kv-shadow);
	display: grid;
	grid-template-columns: 240px 1fr;
	overflow: hidden;
}

.kv-hd-walking-tour__media {
	background: var(--kv-bg-alt);
}

.kv-hd-walking-tour__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.kv-hd-walking-tour__body {
	padding: 28px 32px;
}

.kv-hd-walking-tour__heading {
	font-family: var(--kv-font-heading);
	font-size: 24px;
	color: var(--kv-primary);
	margin: 0 0 10px;
	line-height: 1.2;
}

.kv-hd-walking-tour__blurb {
	font-size: 14px;
	line-height: 1.55;
	color: var(--kv-text);
	margin: 0 0 18px;
}

.kv-hd-walking-tour__cta {
	display: inline-block;
	background: var(--kv-primary);
	color: var(--kv-text-inverse);
	text-decoration: none;
	font-family: var(--kv-font-nav);
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 22px;
	border-radius: var(--kv-radius);
	transition: background var(--kv-transition);
}

.kv-hd-walking-tour__cta:hover,
.kv-hd-walking-tour__cta:focus-visible {
	background: var(--kv-secondary-dark);
	outline: none;
}

.kv-hd-walking-tour__cta:focus-visible {
	outline: 2px solid var(--kv-secondary);
	outline-offset: 2px;
}

@media (max-width: 600px) {
	.kv-hd-walking-tour__card { grid-template-columns: 1fr; }
	.kv-hd-walking-tour__media { aspect-ratio: 16 / 9; }
}

/* ==========================================================================
   Historic Downtown — Plan Your Visit
   ========================================================================== */

.kv-hd-visit__header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 48px;
}

.kv-hd-visit__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.kv-hd-visit__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(200,169,81,0.25);
	border-radius: var(--kv-radius);
	padding: 28px 22px;
	color: var(--kv-text-inverse);
	text-decoration: none;
	height: 100%;
	transition: transform var(--kv-transition), border-color var(--kv-transition);
}

a.kv-hd-visit__card:hover,
a.kv-hd-visit__card:focus-visible {
	transform: translateY(-3px);
	border-color: var(--kv-secondary);
}

a.kv-hd-visit__card:focus-visible {
	outline: 2px solid var(--kv-secondary);
	outline-offset: 2px;
}

.kv-hd-visit__icon {
	width: 56px; height: 56px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 16px;
}

.kv-hd-visit__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.kv-hd-visit__icon--svg {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(201, 168, 76, 0.16);
	color: var(--kv-secondary);
}

.kv-hd-visit__icon--svg svg { width: 28px; height: 28px; }

.kv-hd-visit__label {
	font-family: var(--kv-font-heading);
	font-size: 18px;
	margin: 0 0 6px;
	line-height: 1.2;
	color: inherit;
}

.kv-hd-visit__blurb {
	font-size: 13px;
	line-height: 1.55;
	color: rgba(255,255,255,0.78);
	margin: 0;
}

@media (max-width: 768px) {
	.kv-hd-visit__grid { grid-template-columns: 1fr; }
}

/* ==================================================================
   Arts & Culture Widget
   ================================================================== */

.kv-ac {
	background: var(--kv-bg);
	color: var(--kv-text);
	font-family: var(--kv-font-body);
}

.kv-ac__section {
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
}

.kv-ac--spacing-compact .kv-ac__section { padding-top: 48px; padding-bottom: 48px; }
.kv-ac--spacing-medium  .kv-ac__section { padding-top: 72px; padding-bottom: 72px; }
.kv-ac--spacing-large   .kv-ac__section { padding-top: 100px; padding-bottom: 100px; }

.kv-ac__section--cream  { background: var(--kv-bg); }
.kv-ac__section--bg-alt { background: var(--kv-bg-alt); }
.kv-ac__section--white  { background: var(--kv-surface); }
.kv-ac__section--navy   {
	background: var(--kv-ac-band, var(--kv-primary));
	color: var(--kv-text-inverse);
}

.kv-ac__eyebrow {
	font-family: var(--kv-font-nav);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--kv-secondary);
	display: inline-block;
	margin-bottom: 12px;
}

.kv-ac__heading {
	font-family: var(--kv-font-heading);
	color: var(--kv-primary);
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 18px;
	letter-spacing: -0.5px;
}

.kv-ac__section--navy .kv-ac__heading { color: var(--kv-text-inverse); }

.kv-ac--heading-medium  .kv-ac__heading { font-size: clamp(28px, 3vw, 36px); }
.kv-ac--heading-large   .kv-ac__heading { font-size: clamp(34px, 4vw, 48px); }
.kv-ac--heading-xlarge  .kv-ac__heading { font-size: clamp(40px, 5vw, 64px); }

.kv-ac__lede {
	font-size: 18px;
	line-height: 1.55;
	color: var(--kv-text);
	max-width: 720px;
	margin: 0 0 16px;
}

.kv-ac__section--navy .kv-ac__lede { color: var(--kv-text-inverse); opacity: 0.92; }

.kv-ac__body p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--kv-text);
	margin: 0 0 1em;
}

/* Arts & Culture: Hero
   ========================================================================== */

.kv-ac-hero {
	position: relative;
	background-size: cover;
	background-position: center;
	background-color: var(--kv-primary-dark);
	color: var(--kv-text-inverse);
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	/* !important needed: .kv-ac--spacing-* .kv-ac__section is two-class specificity, equal to .kv-ac-hero alone */
	padding-top: 100px !important;
	padding-bottom: 60px !important;
}

.kv-ac-hero--compact { min-height: 50vh; }
.kv-ac-hero--medium  { min-height: 60vh; }
.kv-ac-hero--tall    { min-height: 70vh; }

.kv-ac-hero__overlay {
	position: absolute; inset: 0;
}

.kv-ac-hero__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 820px;
	margin: 0 auto;
}

.kv-ac-hero__title {
	color: var(--kv-text-inverse);
	font-size: clamp(40px, 6vw, 72px);
	margin-bottom: 18px;
}

.kv-ac-hero__lede {
	color: var(--kv-text-inverse);
	opacity: 0.92;
	font-size: clamp(16px, 1.6vw, 20px);
	margin: 0 auto;
	max-width: 640px;
}

@media (max-width: 768px) {
	.kv-ac-hero { padding-top: 60px !important; padding-bottom: 40px !important; }
	.kv-ac-hero--tall { min-height: 50vh; }
}

.kv-ac-fabric__inner {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.kv-ac-fabric__body {
	text-align: left;
	margin-top: 12px;
}

.kv-ac-tejano__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 56px;
	align-items: center;
}

.kv-ac-tejano--photo-right .kv-ac-tejano__grid {
	grid-template-columns: 1.1fr 1fr;
}

.kv-ac-tejano--photo-right .kv-ac-tejano__media {
	order: 2;
}

.kv-ac-tejano__media img {
	width: 100%;
	height: auto;
	border-radius: var(--kv-radius);
	box-shadow: 0 12px 32px var(--kv-shadow);
	display: block;
}

.kv-ac-tejano__media figcaption {
	font-family: var(--kv-font-nav);
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--kv-text-light);
	margin-top: 12px;
}

@media (max-width: 768px) {
	.kv-ac-tejano__grid,
	.kv-ac-tejano--photo-right .kv-ac-tejano__grid { grid-template-columns: 1fr; gap: 32px; }
	.kv-ac-tejano--photo-right .kv-ac-tejano__media { order: -1; }
}

/* Live Music — two-column text + photo (mirrors the Tejano layout) */
.kv-ac-livemusic__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 56px;
	align-items: center;
}

.kv-ac-livemusic--photo-right .kv-ac-livemusic__grid {
	grid-template-columns: 1.1fr 1fr;
}

.kv-ac-livemusic--photo-right .kv-ac-livemusic__media {
	order: 2;
}

.kv-ac-livemusic__media img {
	width: 100%;
	height: auto;
	border-radius: var(--kv-radius);
	box-shadow: 0 12px 32px var(--kv-shadow);
	display: block;
}

.kv-ac-livemusic__media figcaption {
	font-family: var(--kv-font-nav);
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--kv-text-light);
	margin-top: 12px;
}

@media (max-width: 768px) {
	.kv-ac-livemusic__grid,
	.kv-ac-livemusic--photo-right .kv-ac-livemusic__grid { grid-template-columns: 1fr; gap: 32px; }
	.kv-ac-livemusic--photo-right .kv-ac-livemusic__media { order: -1; }
}

/* Arts at TAMUK — 4-up card grid
   ========================================================================== */

.kv-ac-tamuk__header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 56px;
}

.kv-ac-tamuk__header .kv-ac__lede { margin-left: auto; margin-right: auto; }

.kv-ac-tamuk__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.kv-ac-tamuk__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--kv-surface);
	border-radius: var(--kv-radius);
	overflow: hidden;
	box-shadow: 0 4px 14px var(--kv-shadow);
	color: inherit;
	text-decoration: none;
	transition: transform var(--kv-transition), box-shadow var(--kv-transition);
}

a.kv-ac-tamuk__card:hover,
a.kv-ac-tamuk__card:focus-visible {
	transform: translateY(-3px);
	box-shadow: 0 8px 22px var(--kv-shadow-md);
}

a.kv-ac-tamuk__card:focus-visible {
	outline: 2px solid var(--kv-secondary);
	outline-offset: 2px;
}

.kv-ac-tamuk__photo {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.kv-ac-tamuk__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.kv-ac-tamuk__body { padding: 18px; }

.kv-ac-tamuk__name {
	font-family: var(--kv-font-heading);
	font-size: 17px;
	color: var(--kv-primary);
	margin: 0 0 8px;
	line-height: 1.25;
}

.kv-ac-tamuk__blurb {
	font-size: 13px;
	line-height: 1.55;
	color: var(--kv-text);
	margin: 0;
}

@media (max-width: 1024px) {
	.kv-ac-tamuk__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.kv-ac-tamuk__grid { grid-template-columns: 1fr; }
}

.kv-ac__section--navy .kv-ac__body p { color: var(--kv-text-inverse); opacity: 0.88; }

/* Arts & Culture – Annual Festivals & Events
   ========================================================================== */

.kv-ac-festivals__header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 56px;
}

.kv-ac-festivals__header .kv-ac__lede { margin-left: auto; margin-right: auto; }

.kv-ac-festivals__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.kv-ac-festivals__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--kv-surface);
	border-radius: var(--kv-radius);
	overflow: hidden;
	box-shadow: 0 4px 14px var(--kv-shadow);
	color: inherit;
	text-decoration: none;
	transition: transform var(--kv-transition), box-shadow var(--kv-transition);
}

a.kv-ac-festivals__card:hover,
a.kv-ac-festivals__card:focus-visible {
	transform: translateY(-3px);
	box-shadow: 0 8px 22px var(--kv-shadow-md);
}

a.kv-ac-festivals__card:focus-visible {
	outline: 2px solid var(--kv-secondary);
	outline-offset: 2px;
}

.kv-ac-festivals__photo {
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.kv-ac-festivals__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.kv-ac-festivals__body { padding: 22px; }

.kv-ac-festivals__when {
	display: inline-block;
	font-family: var(--kv-font-nav);
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--kv-secondary-dark);
	background: rgba(200,169,81,0.12);
	padding: 4px 10px;
	border-radius: 100px;
	margin-bottom: 10px;
}

.kv-ac-festivals__name {
	font-family: var(--kv-font-heading);
	font-size: 22px;
	color: var(--kv-primary);
	margin: 0 0 10px;
	line-height: 1.2;
}

.kv-ac-festivals__blurb {
	font-size: 14px;
	line-height: 1.6;
	color: var(--kv-text);
	margin: 0;
}

@media (max-width: 1024px) {
	.kv-ac-festivals__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.kv-ac-festivals__grid { grid-template-columns: 1fr; }
}

.kv-ac-gallery__header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 48px;
}

.kv-ac-gallery__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.kv-ac-gallery__thumb {
	width: 100%;
	aspect-ratio: 1 / 1;
	padding: 0;
	border: 0;
	background: var(--kv-bg-alt);
	cursor: pointer;
	overflow: hidden;
	border-radius: var(--kv-radius-sm);
	display: block;
	transition: transform var(--kv-transition);
}

.kv-ac-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--kv-transition);
}

.kv-ac-gallery__thumb:hover img,
.kv-ac-gallery__thumb:focus-visible img {
	transform: scale(1.04);
}

.kv-ac-gallery__thumb:focus-visible {
	outline: 3px solid var(--kv-secondary);
	outline-offset: 2px;
}

@media (max-width: 1024px) {
	.kv-ac-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
	.kv-ac-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Arts & Culture — Upcoming Events (live)
   ========================================================================== */

.kv-ac-events__header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 48px;
}

.kv-ac-events__container { position: relative; }

.kv-ac-events__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

/* Skeleton cards */
.kv-ac-events__skeleton {
	background: var(--kv-surface);
	border-radius: var(--kv-radius);
	padding: 14px;
	box-shadow: 0 2px 8px var(--kv-shadow);
}
.kv-ac-events__skeleton-photo {
	aspect-ratio: 4 / 3;
	background: linear-gradient(90deg, rgba(200,169,81,0.08) 0%, rgba(200,169,81,0.16) 50%, rgba(200,169,81,0.08) 100%);
	background-size: 200% 100%;
	border-radius: var(--kv-radius-sm);
	animation: kv-ac-shimmer 1.4s ease-in-out infinite;
	margin-bottom: 12px;
}
.kv-ac-events__skeleton-line {
	height: 12px;
	background: rgba(200,169,81,0.12);
	border-radius: 4px;
	margin-top: 8px;
	animation: kv-ac-shimmer 1.4s ease-in-out infinite;
	background-size: 200% 100%;
	background-image: linear-gradient(90deg, rgba(200,169,81,0.08) 0%, rgba(200,169,81,0.16) 50%, rgba(200,169,81,0.08) 100%);
}
.kv-ac-events__skeleton-line--lg { height: 16px; }

@keyframes kv-ac-shimmer {
	0%   { background-position: 100% 0; }
	100% { background-position: -100% 0; }
}

@media (prefers-reduced-motion: reduce) {
	.kv-ac-events__skeleton-photo,
	.kv-ac-events__skeleton-line {
		animation: none;
	}
}

/* Live cards */
.kv-ac-events__card {
	background: var(--kv-surface);
	border-radius: var(--kv-radius);
	overflow: hidden;
	box-shadow: 0 4px 14px var(--kv-shadow);
	transition: transform var(--kv-transition), box-shadow var(--kv-transition);
}

.kv-ac-events__card:hover,
.kv-ac-events__card:focus-within {
	transform: translateY(-3px);
	box-shadow: 0 8px 22px var(--kv-shadow-md);
}

.kv-ac-events__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.kv-ac-events__link:focus-visible {
	outline: 2px solid var(--kv-secondary);
	outline-offset: 2px;
}

.kv-ac-events__photo {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.kv-ac-events__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.kv-ac-events__date-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--kv-primary);
	color: var(--kv-text-inverse);
	border-radius: var(--kv-radius);
	padding: 6px 10px;
	text-align: center;
	line-height: 1.05;
	min-width: 48px;
}

.kv-ac-events__month {
	display: block;
	font-family: var(--kv-font-nav);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.kv-ac-events__day {
	display: block;
	font-family: var(--kv-font-heading);
	font-size: 18px;
	font-weight: 700;
}

.kv-ac-events__body { padding: 16px; }

.kv-ac-events__title {
	font-family: var(--kv-font-heading);
	font-size: 16px;
	color: var(--kv-primary);
	margin: 0 0 6px;
	line-height: 1.25;
}

.kv-ac-events__time,
.kv-ac-events__location {
	font-size: 12px;
	color: var(--kv-text-light);
	margin: 0 0 4px;
}

/* Fallback */
.kv-ac-events__fallback {
	text-align: center;
	padding: 24px 0;
}
.kv-ac-events__fallback-link {
	display: inline-block;
	font-family: var(--kv-font-heading);
	font-size: 18px;
	color: var(--kv-primary);
	text-decoration: none;
	border-bottom: 2px solid var(--kv-secondary);
	padding-bottom: 4px;
}
.kv-ac-events__fallback-link:hover { color: var(--kv-secondary-dark); }

@media (max-width: 1024px) {
	.kv-ac-events__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.kv-ac-events__grid { grid-template-columns: 1fr; }
}

/* Plan Your Visit
   ========================================================================== */

.kv-ac-visit__header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 48px;
}

.kv-ac-visit__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.kv-ac-visit__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(200,169,81,0.25);
	border-radius: var(--kv-radius);
	padding: 28px 22px;
	color: var(--kv-text-inverse);
	text-decoration: none;
	height: 100%;
	transition: transform var(--kv-transition), border-color var(--kv-transition);
}

a.kv-ac-visit__card:hover,
a.kv-ac-visit__card:focus-visible {
	transform: translateY(-3px);
	border-color: var(--kv-secondary);
}

a.kv-ac-visit__card:focus-visible {
	outline: 2px solid var(--kv-secondary);
	outline-offset: 2px;
}

.kv-ac-visit__icon {
	width: 64px; height: 64px;
	border-radius: 50%;
	margin: 0 auto 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--kv-secondary);
}

.kv-ac-visit__icon svg {
	width: 30px;
	height: 30px;
	display: block;
}

.kv-ac-visit__label {
	font-family: var(--kv-font-heading);
	font-size: 18px;
	margin: 0 0 6px;
	line-height: 1.2;
	color: inherit;
}

.kv-ac-visit__blurb {
	font-size: 13px;
	line-height: 1.55;
	color: rgba(255,255,255,0.78);
	margin: 0;
}

@media (max-width: 768px) {
	.kv-ac-visit__grid { grid-template-columns: 1fr; }
}

/* ==================================================================
   Events Listing Widget
   ================================================================== */

.kv-events-listing {
	background: var(--kv-cream, #f7f5ef);
	padding: clamp(48px, 6vw, 96px) clamp(20px, 4vw, 48px);
}
.kv-events-listing--white  { background: #fff; }
.kv-events-listing--primary {
	background: var(--kv-navy, #1e3a5f);
	color: #fff;
}
.kv-events-listing--primary .kv-events-listing__title,
.kv-events-listing--primary .kv-events-listing__subheading,
.kv-events-listing--primary .kv-event-card__title a {
	color: #fff;
}

.kv-events-listing__notice {
	padding: 16px;
	border: 1px dashed var(--kv-border, #d4d0c5);
	color: var(--kv-text-muted, #666);
	text-align: center;
	font-style: italic;
}

.kv-events-listing__header {
	max-width: 720px;
	margin: 0 auto 32px;
	text-align: center;
}

.kv-events-listing__subheading {
	display: block;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--kv-accent, #c0392b);
	margin-bottom: 8px;
}

.kv-events-listing__title {
	font-size: clamp(28px, 3.5vw, 40px);
	font-weight: 700;
	margin: 0;
	color: var(--kv-navy, #1e3a5f);
}

/* Tab bar (underlined) */
.kv-events-listing__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(16px, 3vw, 32px);
	border-bottom: 1px solid var(--kv-border, #d4d0c5);
	margin: 0 auto 32px;
	max-width: 1200px;
	/* visible (not overflow-x: auto) so the absolutely-positioned "More"
	   panel is not clipped; flex-wrap still handles the no-JS fallback. */
	overflow: visible;
}
.kv-events-listing__tab {
	background: none;
	border: 0;
	border-bottom: 2px solid transparent;
	padding: 12px 0;
	margin-bottom: -1px; /* overlap container border */
	font: inherit;
	font-size: 15px;
	color: var(--kv-text-muted, #666);
	cursor: pointer;
	white-space: nowrap;
	transition: color 200ms ease, border-color 200ms ease;
}
.kv-events-listing__tab:hover {
	color: var(--kv-navy, #1e3a5f);
}
.kv-events-listing__tab.is-active {
	color: var(--kv-navy, #1e3a5f);
	border-bottom-color: var(--kv-navy, #1e3a5f);
	font-weight: 600;
}
.kv-events-listing__tab:focus-visible {
	outline: 2px solid var(--kv-accent, #c0392b);
	outline-offset: 4px;
	border-radius: 2px;
}
.kv-events-listing--primary .kv-events-listing__tab            { color: rgba(255,255,255,0.7); }
.kv-events-listing--primary .kv-events-listing__tab:hover,
.kv-events-listing--primary .kv-events-listing__tab.is-active { color: #fff; border-bottom-color: #fff; }
.kv-events-listing--primary .kv-events-listing__tabs           { border-bottom-color: rgba(255,255,255,0.2); }

/* "More" dropdown — collapses overflow tabs into a single-line bar (JS-driven) */
.kv-events-listing__more-wrap {
	position: relative;
	display: inline-flex;
}
.kv-events-listing__more[hidden],
.kv-events-listing__more-wrap[hidden] {
	display: none;
}
.kv-events-listing__more-caret {
	margin-left: 6px;
	font-size: 0.8em;
}
.kv-events-listing__more.is-active {
	color: var(--kv-navy, #1e3a5f);
	border-bottom-color: var(--kv-navy, #1e3a5f);
	font-weight: 600;
}
.kv-events-listing--primary .kv-events-listing__more.is-active {
	color: #fff;
	border-bottom-color: #fff;
}

.kv-events-listing__more-panel {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 6px;
	min-width: 220px;
	display: flex;
	flex-direction: column;
	padding: 6px;
	background: #fff;
	border: 1px solid var(--kv-border, #d4d0c5);
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	z-index: 20;
}
.kv-events-listing__more-panel[hidden] {
	display: none;
}

/* Panel items override the underlined-tab look — full-width menu rows. */
.kv-events-listing__more-panel .kv-events-listing__tab {
	border-bottom: 0;
	margin-bottom: 0;
	display: block;
	width: 100%;
	text-align: left;
	white-space: normal;
	padding: 9px 12px;
	border-radius: 6px;
	color: var(--kv-text-muted, #666);
}
.kv-events-listing__more-panel .kv-events-listing__tab:hover {
	background: var(--kv-cream, #f7f5ef);
	color: var(--kv-navy, #1e3a5f);
}
.kv-events-listing__more-panel .kv-events-listing__tab.is-active {
	background: var(--kv-navy, #1e3a5f);
	color: #fff;
	border-bottom-color: transparent;
}

/* Navy variant: the panel is white, so force dark text on its items
   (otherwise the white --primary tab text would be invisible). The
   white-on-navy .is-active rule must still win. */
.kv-events-listing--primary .kv-events-listing__more-panel .kv-events-listing__tab {
	color: var(--kv-navy, #1e3a5f);
}
.kv-events-listing--primary .kv-events-listing__more-panel .kv-events-listing__tab:hover {
	color: var(--kv-navy, #1e3a5f);
}
.kv-events-listing--primary .kv-events-listing__more-panel .kv-events-listing__tab.is-active {
	color: #fff;
}

/* Grid */
.kv-events-listing__grid {
	display: grid;
	gap: clamp(20px, 2.5vw, 32px);
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	min-height: 100px;
	transition: opacity 200ms ease;
}
.kv-events-listing__grid--2 { grid-template-columns: repeat(2, 1fr); }
.kv-events-listing__grid--3 { grid-template-columns: repeat(3, 1fr); }
.kv-events-listing__grid--4 { grid-template-columns: repeat(4, 1fr); }

.kv-events-listing__grid.is-loading {
	opacity: 0.5;
	pointer-events: none;
}

@media (max-width: 900px) {
	.kv-events-listing__grid--3,
	.kv-events-listing__grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.kv-events-listing__grid--2,
	.kv-events-listing__grid--3,
	.kv-events-listing__grid--4 { grid-template-columns: 1fr; }
}

/* Card additions — base styles for .kv-event-card already exist in the
   showcase block above; we only add what's new (category accent + no-image variant). */
.kv-events-listing__card .kv-event-card__category {
	display: inline-block;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--kv-accent, #c0392b);
	font-weight: 700;
	margin-bottom: 6px;
}

.kv-event-card--no-image .kv-event-card__date-block {
	background: var(--kv-navy, #1e3a5f);
	color: #fff;
	padding: 24px;
	display: flex;
	justify-content: center;
}
.kv-event-card__date-badge--inline {
	position: static;
	box-shadow: none;
}

/* Empty state */
.kv-events-listing__empty {
	max-width: 1200px;
	margin: 32px auto 0;
	text-align: center;
	font-style: italic;
	color: var(--kv-text-muted, #666);
}
.kv-events-listing__empty[hidden] { display: none; }

/* Load More */
.kv-events-listing__footer {
	display: flex;
	justify-content: center;
	margin-top: 48px;
}
.kv-events-listing__footer[hidden] { display: none; }

.kv-events-listing__load-more {
	min-width: 200px;
}
.kv-events-listing__load-more[aria-busy="true"],
.kv-events-listing__load-more:disabled {
	opacity: 0.6;
	cursor: progress;
}

/* Visually-hidden live region — announces filter/load-more results to AT
   without dumping every card title into the screen reader on each update. */
.kv-events-listing__status {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ==========================================================================
   Train Depot Museum Widget
   ========================================================================== */

.kv-depot__section {
	padding: 88px 0;
	position: relative;
}

.kv-depot__section--cream  { background-color: var(--kv-bg); }
.kv-depot__section--bg-alt { background-color: var(--kv-bg-alt); }
.kv-depot__section--navy   { background-color: var(--kv-primary-dark); }

.kv-depot__eyebrow {
	display: inline-block;
	font-family: var(--kv-font-nav);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--kv-secondary);
	margin-bottom: 16px;
}

.kv-depot__heading {
	font-family: var(--kv-font-heading);
	color: var(--kv-primary);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.5px;
	font-size: clamp(28px, 4vw, 44px);
	margin: 0 0 18px;
}

.kv-depot__heading--light { color: var(--kv-text-inverse); }

.kv-depot__body p,
.kv-depot__body-text {
	font-size: 17px;
	line-height: 1.75;
	color: var(--kv-text);
	margin: 0 0 18px;
}

.kv-depot__body p:last-child { margin-bottom: 0; }

.kv-depot__lede {
	font-size: 18px;
	line-height: 1.7;
	color: var(--kv-text);
	margin: 0 0 8px;
}

/* ----- Hero ----- */
.kv-depot-hero {
	background-size: cover;
	background-position: center;
	min-height: 60vh;
	display: flex;
	align-items: center;
	text-align: center;
	overflow: hidden;
}

/* Background photo on its own layer so it can animate (Ken Burns) without
   moving the overlay or text. The layer is taller than the hero (and offset
   up) so it can pan vertically without ever exposing an edge. At rest it shows
   the vertical center of the photo. */
.kv-depot-hero__bg {
	position: absolute;
	left: 0;
	right: 0;
	top: -15%;
	height: 130%;
	z-index: 0;
	background-size: cover;
	background-position: center;
}

/* Desktop only, and only when motion is welcome. Starts on the centered frame,
   then pans the photo DOWN — i.e. the camera drifts UP — to reveal the dancers'
   faces near the top of the image, with a light zoom-in. */
@media (min-width: 1025px) and (prefers-reduced-motion: no-preference) {
	.kv-depot-hero__bg {
		will-change: transform;
		animation: kvHeroKenBurns 22s ease-in-out infinite alternate;
	}
}

@keyframes kvHeroKenBurns {
	from { transform: translate3d(0, 0, 0) scale(1); }
	to   { transform: translate3d(0, 10%, 0) scale(1.05); }
}

.kv-depot-hero__overlay { position: absolute; inset: 0; z-index: 0; }

.kv-depot-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 860px;
	margin: 0 auto;
}

/* Regal pill eyebrow over the photo */
.kv-depot-hero .kv-depot__eyebrow {
	padding: 8px 22px;
	border-radius: 999px;
	background: rgba(15, 35, 64, 0.55);
	border: 1px solid rgba(200, 169, 81, 0.55);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(200, 169, 81, 0.15);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.kv-depot-hero__title {
	font-family: var(--kv-font-heading);
	color: var(--kv-text-inverse);
	font-weight: 700;
	line-height: 1.08;
	font-size: clamp(34px, 6vw, 64px);
	margin: 0 0 24px;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.kv-depot-hero__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 28px;
	color: rgba(255, 255, 255, 0.92);
}

.kv-depot-hero__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--kv-font-nav);
	font-size: 15px;
	font-weight: 500;
}

.kv-depot-hero__meta-item svg { width: 16px; height: 16px; color: var(--kv-secondary); flex-shrink: 0; }

/* ----- Two-column split (Overview) ----- */
.kv-depot-split__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 56px;
	align-items: center;
}

.kv-depot--photo-right .kv-depot-split__grid { grid-template-columns: 1.1fr 1fr; }
.kv-depot--photo-right .kv-depot__media { order: 2; }

.kv-depot__media img {
	width: 100%;
	height: auto;
	border-radius: var(--kv-radius);
	box-shadow: 0 12px 32px var(--kv-shadow);
	display: block;
}

/* ----- The Museum ----- */
.kv-depot-museum__intro { max-width: 760px; margin-bottom: 36px; }

.kv-depot-highlights {
	list-style: none;
	margin: 0 0 48px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px 40px;
}

.kv-depot-highlights__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 16px;
	line-height: 1.5;
	color: var(--kv-text);
}

.kv-depot-highlights__icon {
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(200, 169, 81, 0.16);
	color: var(--kv-secondary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 1px;
}

.kv-depot-highlights__icon svg { width: 15px; height: 15px; }

.kv-depot-gallery__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.kv-depot-gallery__fig { margin: 0; }

.kv-depot-gallery__fig img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--kv-radius);
	box-shadow: 0 6px 18px var(--kv-shadow);
	display: block;
	background-color: rgba(200, 169, 81, 0.08);
}

.kv-depot-gallery__fig figcaption {
	font-family: var(--kv-font-nav);
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--kv-text-light);
	margin-top: 10px;
}

/* ----- Walking Tour CTA ----- */
.kv-depot-wt { text-align: center; }

.kv-depot-wt__inner { max-width: 720px; margin: 0 auto; }

.kv-depot-wt__body {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
	margin: 0 0 28px;
}

/* ----- Plan Your Visit ----- */
.kv-depot-visit__heading { text-align: center; margin-bottom: 40px; }

/* Event Details with a location-map backdrop.
   The card holds the detail list; the map sits full-bleed behind it. */
.kv-depot-visit--map {
	position: relative;
	overflow: hidden;
	padding-top: 72px;
	padding-bottom: 72px;
}

.kv-depot-visit--map .kv-edmap {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

/* Soft wash so the floating card reads clearly over the map. */
.kv-depot-visit--map::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: radial-gradient(ellipse at center, rgba(247, 244, 236, 0.38) 0%, rgba(247, 244, 236, 0.6) 65%, rgba(247, 244, 236, 0.74) 100%);
	pointer-events: none;
}

.kv-depot-visit--map .kv-container {
	position: relative;
	z-index: 2;
}

.kv-depot-visit--map .kv-depot-visit__card {
	max-width: 720px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid rgba(15, 35, 64, 0.08);
	border-radius: 18px;
	box-shadow: 0 24px 60px rgba(15, 35, 64, 0.18);
	padding: 44px 48px;
}

/* Decorative backdrop: no pointer interaction, muted, edges feathered. */
.kv-edmap {
	pointer-events: none;
	filter: saturate(0.82);
}

.kv-edmap .leaflet-control-attribution {
	background: rgba(255, 255, 255, 0.7);
	font-size: 10px;
}

.kv-edmap-pin { filter: drop-shadow(0 3px 5px rgba(15, 35, 64, 0.35)); }

/* Below desktop, the map can't read behind the centered card — stack it as a
   distinct block ABOVE the card so the marker/area is clearly visible. */
@media (max-width: 1024px) {
	.kv-depot-visit--map .kv-edmap {
		position: relative;
		width: auto;
		height: auto;
		aspect-ratio: 16 / 11;
		margin: 0 20px 0;
		border-radius: var(--kv-radius);
		overflow: hidden;
		box-shadow: 0 10px 28px var(--kv-shadow);
	}
	.kv-depot-visit--map::after { display: none; }
	/* Pull the card up so it overlaps the lower ~third of the map. The percentage
	   is relative to width, which tracks the map's height (fixed aspect ratio). */
	.kv-depot-visit--map .kv-container {
		position: relative;
		z-index: 2;
		margin-top: -22%;
	}
	/* The card now covers the map's bottom-right, so move attribution to the top. */
	.kv-depot-visit--map .leaflet-bottom { top: 4px; bottom: auto; }
}

@media (max-width: 600px) {
	.kv-depot-visit--map { padding-top: 48px; padding-bottom: 48px; }
	.kv-depot-visit--map .kv-depot-visit__card { padding: 30px 22px; }
	.kv-depot-visit--map .kv-edmap { margin: 0; aspect-ratio: 4 / 3; }
	.kv-depot-visit--map .kv-container { margin-top: -24%; }
}

/* ----- July 4th calendar events ----- */
.kv-july4__empty {
	text-align: center;
	color: var(--kv-text-light);
	font-size: 16px;
	margin: 0;
}

.kv-july4__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
	gap: 20px;
}

.kv-july4__card {
	display: flex;
	align-items: stretch;
	gap: 0;
	background: #fff;
	border: 1px solid rgba(15, 35, 64, 0.1);
	border-radius: 14px;
	overflow: hidden;
	text-decoration: none;
	box-shadow: 0 1px 3px rgba(15, 35, 64, 0.05);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.kv-july4__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 32px rgba(15, 35, 64, 0.12);
	border-color: var(--kv-secondary);
}

.kv-july4__photo {
	flex: 0 0 96px;
	background-size: cover;
	background-position: center;
	background-color: var(--kv-primary);
}

.kv-july4__date {
	flex: 0 0 84px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: var(--kv-primary);
	color: #fff;
	line-height: 1;
}

.kv-july4__date-month {
	font-family: var(--kv-font-nav);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--kv-secondary);
	margin-bottom: 4px;
}

.kv-july4__date-day {
	font-family: var(--kv-font-heading);
	font-size: 30px;
	font-weight: 700;
}

.kv-july4__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	padding: 16px 20px;
	min-width: 0;
}

.kv-july4__type {
	font-family: var(--kv-font-nav);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--kv-secondary-dark, #a8862f);
}

.kv-july4__title {
	font-family: var(--kv-font-heading);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--kv-primary);
}

.kv-july4__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 12px;
	font-size: 13px;
	color: var(--kv-text-light);
	margin-top: 2px;
}

.kv-july4__time { font-weight: 600; color: var(--kv-text); }

.kv-july4__cta {
	text-align: center;
	margin-top: 36px;
}

@media (max-width: 560px) {
	.kv-july4__grid { grid-template-columns: 1fr; }
}

.kv-depot-visit__grid {
	max-width: 760px;
	margin: 0 auto;
	display: grid;
	gap: 0;
}

.kv-depot-visit__row {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 24px;
	padding: 18px 0;
	border-bottom: 1px solid rgba(15, 35, 64, 0.1);
}

.kv-depot-visit__row:last-child { border-bottom: 0; }

.kv-depot-visit__term {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--kv-font-nav);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--kv-primary);
	margin: 0;
}

.kv-depot-visit__icon { color: var(--kv-secondary); display: inline-flex; }
.kv-depot-visit__icon svg { width: 18px; height: 18px; }

.kv-depot-visit__desc {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: var(--kv-text);
}

.kv-depot-visit__desc a:not(.kv-btn) {
	color: var(--kv-primary);
	text-decoration: underline;
	text-decoration-color: rgba(200, 169, 81, 0.6);
	text-underline-offset: 3px;
	transition: color 0.2s ease;
}

.kv-depot-visit__desc a:not(.kv-btn):hover {
	color: var(--kv-secondary);
}

.kv-depot-visit__btn { margin-top: 12px; }

/* Live "Open now / Closed" badge (kingsville_hours_badge) */
.kv-hours--inline {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 6px;
	padding: 3px 10px 3px 9px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.01em;
	vertical-align: middle;
}
.kv-depot-visit__desc .kv-hours--inline { display: flex; width: -moz-fit-content; width: fit-content; }
.kv-hours--inline .kv-hours__dot { width: 8px; height: 8px; }
.kv-hours--inline.kv-hours--open {
	background: rgba(70, 196, 106, 0.12);
	color: #1f7a3d;
}
.kv-hours--inline.kv-hours--soon {
	background: rgba(230, 169, 46, 0.14);
	color: #9a6b12;
}
.kv-hours--inline.kv-hours--closed {
	background: rgba(201, 107, 107, 0.12);
	color: #9c3b3b;
}

/* ----- While You're Here ----- */
.kv-depot-nearby__inner { max-width: 760px; margin: 0 auto; text-align: center; }

/* ----- Closing note ----- */
.kv-depot-note {
	padding: 32px 0;
	background-color: var(--kv-primary-dark);
}

.kv-depot-note p {
	margin: 0;
	text-align: center;
	font-size: 13px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.65);
	font-style: italic;
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
	.kv-depot__section { padding: 56px 0; }
	.kv-depot-split__grid,
	.kv-depot--photo-right .kv-depot-split__grid { grid-template-columns: 1fr; gap: 32px; }
	.kv-depot--photo-right .kv-depot__media { order: -1; }
	.kv-depot-highlights { grid-template-columns: 1fr; }
	.kv-depot-gallery__grid { grid-template-columns: repeat(2, 1fr); }
	.kv-depot-visit__row { grid-template-columns: 1fr; gap: 6px; }
	.kv-depot-venue__split { grid-template-columns: 1fr; gap: 32px; }
	.kv-depot-venue__split .kv-depot__media { order: -1; height: auto; }
	.kv-depot-venue__split .kv-depot__media img { height: auto; }
	.kv-depot-eventlist__grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 520px) {
	.kv-depot-gallery__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   J.K. Northway Center Widget (extends the shared kv-depot styles)
   ========================================================================== */

/* Capacity / Amenities labeled lists, side by side */
.kv-depot-venue__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px 56px;
}

.kv-depot-sublist__label {
	font-family: var(--kv-font-nav);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--kv-secondary);
	margin: 0 0 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(15, 35, 64, 0.1);
}

/* Single-column variant of the highlights list */
.kv-depot-highlights--single {
	grid-template-columns: 1fr;
	margin-bottom: 0;
}

/* Events list (icon + title — description) */
.kv-depot-events {
	list-style: none;
	margin: 36px 0 0;
	padding: 0;
	max-width: 820px;
}

.kv-depot-events__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 18px 0;
	border-bottom: 1px solid rgba(15, 35, 64, 0.08);
}

.kv-depot-events__item:last-child { border-bottom: 0; }

.kv-depot-events__icon {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(200, 169, 81, 0.16);
	color: var(--kv-secondary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

.kv-depot-events__icon svg { width: 16px; height: 16px; }

.kv-depot-events__title {
	display: block;
	font-family: var(--kv-font-heading);
	font-size: 19px;
	color: var(--kv-primary);
	margin-bottom: 4px;
}

.kv-depot-events__desc {
	display: block;
	font-size: 16px;
	line-height: 1.6;
	color: var(--kv-text);
}

/* The Venue — optional full-height photo beside the text + lists column */
.kv-depot-venue__split {
	align-items: stretch;
}
.kv-depot-venue__split .kv-depot-museum__intro { max-width: none; }
.kv-depot-venue__split .kv-depot__media { height: 100%; }
.kv-depot-venue__split .kv-depot__media img { height: 100%; object-fit: cover; }
.kv-depot-venue__main { display: flex; flex-direction: column; justify-content: center; }

/* Events — two-column grid: curated types (left) + live upcoming (right) */
.kv-depot-eventlist__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 56px;
	align-items: start;
}
/* When only one column is present, let it span the full width. */
.kv-depot-eventlist__grid > .kv-depot-events:only-child,
.kv-depot-eventlist__grid > .kv-depot-upcoming:only-child { grid-column: 1 / -1; }
.kv-depot-eventlist__grid .kv-depot-events { margin-top: 0; max-width: none; }

/* Upcoming events panel */
.kv-depot-upcoming {
	background: var(--kv-surface, #fff);
	border: 1px solid rgba(15, 35, 64, 0.08);
	border-radius: var(--kv-radius);
	padding: 28px;
	box-shadow: 0 8px 24px var(--kv-shadow);
}

.kv-depot-upcoming__heading {
	font-family: var(--kv-font-heading);
	font-size: 22px;
	color: var(--kv-primary);
	margin: 0 0 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(15, 35, 64, 0.1);
}

.kv-depot-upcoming__list { list-style: none; margin: 0; padding: 0; }

.kv-depot-upcoming__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(15, 35, 64, 0.08);
}
.kv-depot-upcoming__item:last-child { border-bottom: 0; }

.kv-depot-upcoming__date {
	flex-shrink: 0;
	width: 52px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 6px 0;
	border-radius: 10px;
	background: rgba(200, 169, 81, 0.16);
	color: var(--kv-secondary);
	line-height: 1.1;
}
.kv-depot-upcoming__month {
	font-family: var(--kv-font-nav);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.kv-depot-upcoming__day {
	font-family: var(--kv-font-heading);
	font-size: 22px;
	color: var(--kv-primary);
}

.kv-depot-upcoming__body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }

.kv-depot-upcoming__title {
	font-family: var(--kv-font-heading);
	font-size: 18px;
	color: var(--kv-primary);
	text-decoration: none;
}
a.kv-depot-upcoming__title:hover { color: var(--kv-secondary); }

.kv-depot-upcoming__when {
	font-size: 14px;
	color: var(--kv-text-muted, #5a6677);
}

.kv-depot-upcoming__empty {
	font-size: 16px;
	line-height: 1.6;
	color: var(--kv-text);
	margin: 0;
}

.kv-depot-upcoming__more {
	display: inline-block;
	margin-top: 16px;
	font-family: var(--kv-font-nav);
	font-weight: 600;
	font-size: 15px;
	color: var(--kv-secondary);
	text-decoration: none;
}
.kv-depot-upcoming__more:hover { text-decoration: underline; }

/* Booking contact callout (inside the navy band) */
.kv-depot-contact {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	margin-top: 8px;
}

.kv-depot-contact__label {
	font-family: var(--kv-font-nav);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}

.kv-depot-contact__phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--kv-font-heading);
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 700;
	color: var(--kv-secondary);
	text-decoration: none;
	transition: color 0.2s ease;
}

.kv-depot-contact__phone:hover { color: #fff; }
.kv-depot-contact__phone svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
	.kv-depot-venue__cols { grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================================================
   Event Pages — schedule / lineup (extends shared kv-depot styles)
   ========================================================================== */

.kv-esched__list {
	list-style: none;
	margin: 36px 0 0;
	padding: 0;
	display: grid;
	gap: 20px;
	max-width: 880px;
}

.kv-esched__item {
	background: #fff;
	border: 1px solid rgba(15, 35, 64, 0.08);
	border-left: 4px solid var(--kv-secondary);
	border-radius: var(--kv-radius);
	padding: 24px 28px;
	box-shadow: 0 4px 14px var(--kv-shadow);
}

.kv-esched__title {
	font-family: var(--kv-font-heading);
	font-size: 21px;
	color: var(--kv-primary);
	margin: 0 0 6px;
	line-height: 1.25;
}

.kv-esched__meta {
	font-family: var(--kv-font-nav);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--kv-secondary);
	margin: 0 0 12px;
}

.kv-esched__desc {
	font-size: 16px;
	line-height: 1.7;
	color: var(--kv-text);
	margin: 0;
}

.kv-esched__bullets {
	margin: 14px 0 0;
	padding-left: 20px;
}

.kv-esched__bullets li {
	font-size: 15px;
	line-height: 1.6;
	color: var(--kv-text);
	margin-bottom: 4px;
}

.kv-esched__item .kv-btn { margin-top: 18px; }

/* Schedule item with an associated photo — image beside the content. */
.kv-esched__item--media {
	display: flex;
	gap: 26px;
	align-items: stretch;
	padding: 0;
	overflow: hidden;
}

.kv-esched__item--media .kv-esched__photo {
	flex: 0 0 38%;
	max-width: 320px;
	margin: 0;
	align-self: stretch;
	min-height: 100%;
}

.kv-esched__item--media .kv-esched__photo img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 220px;
	object-fit: cover;
}

.kv-esched__item--media .kv-esched__content {
	flex: 1;
	min-width: 0;
	padding: 24px 28px 24px 0;
}

/* Photo schedules span the full content width (no narrow column with empty
   space beside it) and use a larger image so the card stays balanced. */
.kv-esched__list--media { max-width: none; }
.kv-esched__list--media .kv-esched__item--media .kv-esched__photo {
	flex-basis: 44%;
	max-width: 560px;
}

@media (max-width: 680px) {
	.kv-esched__item--media { flex-direction: column; }
	.kv-esched__item--media .kv-esched__photo { flex-basis: auto; max-width: none; }
	.kv-esched__item--media .kv-esched__photo img { min-height: 200px; }
	.kv-esched__item--media .kv-esched__content { padding: 22px 24px; }
}

/* ----- Schedule: seasonal background (auto-selected bird photo) ----- */
.kv-esched--seasonal {
	position: relative;
	overflow: hidden;
}

.kv-esched-season__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center;
}

/* Cream wash, heaviest on the left (behind the cards/heading) and clearing to
   the right so the bird shows through there. */
.kv-esched-season__wash {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(90deg, var(--kv-bg) 0%, rgba(247, 244, 236, 0.92) 34%, rgba(247, 244, 236, 0.55) 62%, rgba(247, 244, 236, 0.18) 100%);
}

.kv-esched--seasonal .kv-container { position: relative; z-index: 2; }

.kv-esched-season__caption {
	position: absolute;
	right: 22px;
	bottom: 18px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
	padding: 8px 14px;
	background: rgba(15, 35, 64, 0.62);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	border-radius: 8px;
	text-align: right;
}

.kv-esched-season__bird {
	font-family: var(--kv-font-heading);
	font-size: 15px;
	color: #fff;
	line-height: 1.2;
}

.kv-esched-season__tag {
	font-family: var(--kv-font-nav);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--kv-secondary);
}

/* Subtle Ken Burns — desktop only, motion-safe. */
@media (min-width: 1025px) and (prefers-reduced-motion: no-preference) {
	.kv-esched-season__bg {
		transform: scale(1.04);
		will-change: transform;
		animation: kvSeasonKenBurns 26s ease-in-out infinite alternate;
	}
}

@keyframes kvSeasonKenBurns {
	from { transform: scale(1.04) translate3d(0, 0, 0); }
	to   { transform: scale(1.1) translate3d(0, -2%, 0); }
}

/* Caption is a desktop touch. */
@media (max-width: 900px) {
	.kv-esched-season__caption { display: none; }
	.kv-esched-season__wash {
		background: linear-gradient(180deg, var(--kv-bg) 0%, rgba(247, 244, 236, 0.9) 45%, rgba(247, 244, 236, 0.7) 100%);
	}
}

/* ----- Schedule: full-width image stage (crossfading background + cards) ----- */
.kv-esched--stage {
	position: relative;
	overflow: hidden;
	min-height: 560px;
}

.kv-esched-stage__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.kv-esched-stage__layer {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 0.9s ease;
}
.kv-esched-stage__layer.is-active { opacity: 1; }

/* Left-weighted scrim so the cards/heading read clearly over the photo. */
.kv-esched-stage__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(15, 35, 64, 0.84) 0%, rgba(15, 35, 64, 0.64) 36%, rgba(15, 35, 64, 0.22) 66%, rgba(15, 35, 64, 0.05) 100%);
	pointer-events: none;
}

.kv-esched-stage__inner { position: relative; z-index: 2; }
.kv-esched--stage .kv-depot__heading { color: #fff; }
.kv-esched--stage .kv-depot__lede { color: rgba(255, 255, 255, 0.9); }

.kv-esched-stage__list {
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
	display: grid;
	gap: 14px;
	max-width: 480px;
}

.kv-esched-stage__card {
	position: relative;
	overflow: hidden;
	display: block;
	width: 100%;
	text-align: left;
	font: inherit;
	color: inherit;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-left: 4px solid transparent;
	border-radius: var(--kv-radius);
	padding: 16px 22px;
	box-shadow: 0 6px 18px rgba(15, 35, 64, 0.22);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

/* Auto-rotate progress bar — fills along the bottom of the active card. */
.kv-esched-stage__progress {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: rgba(15, 35, 64, 0.1);
	opacity: 0;
	transition: opacity 0.2s ease;
}
.kv-esched-stage__card.is-active .kv-esched-stage__progress { opacity: 1; }
.kv-esched-stage__progress-fill {
	display: block;
	height: 100%;
	width: 100%;
	background: var(--kv-secondary);
	transform: scaleX(0);
	transform-origin: left center;
}
@media (prefers-reduced-motion: reduce) {
	.kv-esched-stage__progress { display: none; }
}
button.kv-esched-stage__card { cursor: pointer; }
button.kv-esched-stage__card:hover { transform: translateX(4px); }

.kv-esched-stage__card.is-active {
	background: #fff;
	border-left-color: var(--kv-secondary);
	box-shadow: 0 14px 32px rgba(15, 35, 64, 0.34);
}

.kv-esched-stage__card:focus-visible {
	outline: 3px solid var(--kv-secondary);
	outline-offset: 3px;
}

.kv-esched-stage__card .kv-esched__title { margin-bottom: 4px; }
.kv-esched-stage__card .kv-esched__desc { font-size: 15px; line-height: 1.55; }

@media (max-width: 900px) {
	.kv-esched--stage { min-height: 0; }
	/* Image drops into normal flow above the cards. */
	.kv-esched-stage__bg {
		position: relative;
		width: 100%;
		aspect-ratio: 16 / 10;
		margin-bottom: 28px;
	}
	.kv-esched-stage__scrim { display: none; }
	.kv-esched--stage .kv-depot__heading { color: var(--kv-primary); }
	.kv-esched--stage .kv-depot__lede { color: var(--kv-text); }
	.kv-esched-stage__list { max-width: none; }
}

/* Event details grid: terms are plain text (no icon) here */
.kv-esched-details .kv-depot-visit__term { letter-spacing: 1.5px; }

/* Centered text block. The compound selector out-specifies
   `.elementor-widget .kv-container` so the readable column isn't overridden to
   full width inside Elementor. */
.kv-depot__section.kv-esched-text .kv-esched-text__inner { max-width: 760px; margin: 0 auto; }

/* Tidy rhythm for the body copy + labelled lead-ins. */
.kv-esched-text .kv-depot__body > p { margin: 0 0 18px; line-height: 1.75; }
.kv-esched-text .kv-depot__body > p:last-child { margin-bottom: 0; }
.kv-esched-text .kv-depot__body > p > strong:first-child { color: var(--kv-primary); }
/* Symmetric rhythm: small gap from a lead-in heading to its list, and a normal
   gap below the list before the next block (previously 0, so the following
   paragraph hugged the last bullet). */
.kv-esched-text .kv-depot__body ul {
	margin: 6px 0 18px;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
}
.kv-esched-text .kv-depot__body > p:has(+ ul) { margin-bottom: 4px; }
.kv-esched-text .kv-depot__body ul li {
	position: relative;
	padding-left: 18px;
	line-height: 1.6;
}
.kv-esched-text .kv-depot__body ul li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 9px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--kv-secondary);
}

/* Text block with a small photo — image left, text right. */
.kv-depot__section.kv-esched-text--media .kv-esched-text__inner {
	max-width: 1040px;
	display: flex;
	gap: 48px;
	align-items: flex-start;
}
.kv-esched-text__media {
	flex: 0 0 380px;
	margin: 0;
	position: sticky;
	top: 100px;
}
.kv-esched-text__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--kv-radius);
	box-shadow: 0 10px 28px var(--kv-shadow);
}
.kv-esched-text__content { flex: 1; min-width: 0; }

@media (max-width: 820px) {
	.kv-depot__section.kv-esched-text--media .kv-esched-text__inner {
		display: block;
	}
	.kv-esched-text__media {
		flex: none;
		position: static;
		margin: 0 0 28px;
	}
	.kv-esched-text__media img { aspect-ratio: 16 / 9; }
}

/* Website link */
.kv-esched-text__link {
	display: inline-block;
	margin-top: 18px;
	font-family: var(--kv-font-nav);
	font-weight: 600;
	font-size: 15px;
	color: var(--kv-secondary);
	text-decoration: none;
}
.kv-esched-text__link:hover { text-decoration: underline; }

@media (max-width: 760px) {
	.kv-esched-text--media .kv-esched-text__inner { flex-direction: column; gap: 24px; text-align: center; }
	.kv-esched-text__media { flex-basis: auto; max-width: 220px; }
}

/* CTA secondary line (email etc.) */
.kv-esched-cta__secondary {
	margin: 18px 0 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.72);
}

.kv-esched-cta__secondary a {
	color: var(--kv-secondary);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.kv-esched-cta__secondary a:hover { color: #fff; }

/* ==========================================================================
   Family Activities — rich-text list + contact styling (kv-depot__body)
   ========================================================================== */

.kv-depot__body ul {
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
}

.kv-depot__body ul li {
	position: relative;
	padding-left: 24px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--kv-text);
}

.kv-depot__body ul li::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 9px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--kv-secondary);
}

.kv-depot__body h3 {
	font-family: var(--kv-font-heading);
	color: var(--kv-primary);
	font-weight: 700;
	font-size: 20px;
	line-height: 1.2;
	margin: 26px 0 12px;
}

.kv-depot__body h3:first-child { margin-top: 0; }

.kv-depot__body h3 + ul { margin-top: 0; }

.kv-depot__body .kv-fa-contact {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid rgba(15, 35, 64, 0.1);
	font-size: 15px;
	color: var(--kv-text-light);
}

.kv-depot__body .kv-fa-contact::before { content: none; }

/* Enhanced contact meta row (kv-contact-line.js swaps emoji → SVG icons) */
.kv-depot__body .kv-fa-contact.kv-contact--enhanced {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 22px;
	line-height: 1.5;
}
.kv-fa-contact__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.kv-fa-contact__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(200, 169, 81, 0.16);
	color: var(--kv-secondary, #c8a951);
}
.kv-fa-contact__icon svg { width: 16px; height: 16px; display: block; }
.kv-fa-contact__text { min-width: 0; }
.kv-fa-contact.kv-contact--enhanced a {
	color: var(--kv-primary);
	font-weight: 600;
	text-decoration: none;
}
.kv-fa-contact.kv-contact--enhanced a:hover {
	color: var(--kv-secondary-dark, #a8862f);
	text-decoration: underline;
}

/* ==========================================================================
   Birding — hotspot cards (extends kv-esched)
   ========================================================================== */

.kv-bird__ctc {
	display: inline-block;
	margin-left: 8px;
	font-family: var(--kv-font-nav);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--kv-secondary);
	background: rgba(200, 169, 81, 0.14);
	border-radius: 999px;
	padding: 3px 10px;
	vertical-align: middle;
}

.kv-bird__tagline {
	font-style: italic;
	font-size: 17px;
	color: var(--kv-primary);
	margin: 0 0 12px;
}

.kv-bird__species { margin-top: 14px; }

.kv-bird__species p { font-size: 15px; line-height: 1.7; margin: 0 0 10px; }

.kv-bird__species p strong { color: var(--kv-primary); }

.kv-bird__species .kv-bird__contact {
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid rgba(15, 35, 64, 0.1);
	font-size: 15px;
}

.kv-bird__species a {
	color: var(--kv-primary);
	text-decoration: underline;
	text-decoration-color: rgba(200, 169, 81, 0.6);
	text-underline-offset: 3px;
}

.kv-bird__species a:hover { color: var(--kv-secondary); }

.kv-bird__btns {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

/* ----- Plan Your Birding Trip ----- */
.kv-plan__head { max-width: 760px; margin: 0 auto 40px; text-align: center; }

.kv-plan__intro { font-size: 17px; line-height: 1.75; color: var(--kv-text); margin-top: 16px; }
.kv-plan__intro p { margin: 0 0 14px; }
.kv-plan__intro p:last-child { margin-bottom: 0; }

.kv-plan__lead {
	font-size: 17px;
	line-height: 1.7;
	color: var(--kv-text);
	margin: 16px 0 0;
}
.kv-plan__lead-label {
	display: inline-block;
	margin-right: 8px;
	font-family: var(--kv-font-nav);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--kv-secondary-dark, #a8862f);
}

.kv-plan__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 980px;
	margin: 0 auto;
}

/* A lone contact card sits centered at a comfortable width. */
.kv-plan__grid--single {
	grid-template-columns: minmax(0, 520px);
	justify-content: center;
}

.kv-plan__card {
	background: #fff;
	border: 1px solid rgba(15, 35, 64, 0.08);
	border-radius: var(--kv-radius-lg, 16px);
	padding: 28px 30px;
	box-shadow: 0 10px 30px rgba(15, 35, 64, 0.07);
}

.kv-plan__card-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}

.kv-plan__icon {
	flex-shrink: 0;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(200, 169, 81, 0.16);
	color: var(--kv-secondary-dark, #a8862f);
}
.kv-plan__icon svg { width: 24px; height: 24px; }

.kv-plan__card-title {
	font-family: var(--kv-font-heading);
	font-size: 21px;
	color: var(--kv-primary);
	margin: 0;
	line-height: 1.2;
}

.kv-plan__card-meta {
	display: block;
	margin-top: 3px;
	font-family: var(--kv-font-nav);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: var(--kv-text-light);
}

.kv-plan__card-body {
	font-size: 15px;
	line-height: 1.65;
	color: var(--kv-text);
	margin: 0 0 18px;
}

.kv-plan__contacts {
	display: grid;
	gap: 10px;
	padding-top: 16px;
	border-top: 1px solid rgba(15, 35, 64, 0.08);
}

.kv-plan__contact {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	color: var(--kv-primary);
	text-decoration: none;
	transition: color 0.15s ease;
}
.kv-plan__contact svg {
	flex-shrink: 0;
	width: 17px;
	height: 17px;
	color: var(--kv-secondary);
}
.kv-plan__contact span {
	border-bottom: 1px solid rgba(15, 35, 64, 0.15);
	transition: border-color 0.15s ease;
}
.kv-plan__contact:hover { color: var(--kv-secondary-dark, #a8862f); }
.kv-plan__contact:hover span { border-bottom-color: var(--kv-secondary); }

.kv-plan__resources {
	max-width: 980px;
	margin: 36px auto 0;
	text-align: center;
}
.kv-plan__resources-label {
	display: block;
	margin-bottom: 14px;
	font-family: var(--kv-font-nav);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--kv-text-light);
}
.kv-plan__chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}
.kv-plan__chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	background: #fff;
	border: 1px solid rgba(15, 35, 64, 0.12);
	border-radius: 30px;
	color: var(--kv-primary);
	font-family: var(--kv-font-nav);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.kv-plan__chip span { color: var(--kv-secondary); transition: transform 0.15s ease; }
.kv-plan__chip:hover {
	border-color: var(--kv-secondary);
	box-shadow: 0 6px 16px rgba(15, 35, 64, 0.08);
	transform: translateY(-2px);
}
.kv-plan__chip:hover span { transform: translateX(3px); }

@media (max-width: 760px) {
	.kv-plan__grid { grid-template-columns: 1fr; }
}

/* Intro link (e.g. TPWD Kingsville Loop) */
.kv-bird__intro-link {
	display: inline-block;
	margin-top: 6px;
	font-family: var(--kv-font-nav);
	font-weight: 600;
	font-size: 15px;
	color: var(--kv-secondary);
	text-decoration: none;
}
.kv-bird__intro-link:hover { text-decoration: underline; }

/* Map (access) layout: a wider panel so the rich hotspot cards breathe. */
.kv-access--wide .kv-access__panel { max-width: 600px; }
.kv-bird-access__cards { gap: 14px; }
.kv-bird-access__card .kv-bird__species { margin-top: 12px; }
.kv-bird-access__card .kv-bird__species p { font-size: 14px; }

/* Links inside rich-text page blocks (overview, text blocks) */
.kv-depot__body a {
	color: var(--kv-primary);
	text-decoration: underline;
	text-decoration-color: rgba(200, 169, 81, 0.6);
	text-underline-offset: 3px;
	transition: color 0.2s ease;
}

.kv-depot__body a:hover { color: var(--kv-secondary); }

/* ==========================================================================
   Access Points map (Leaflet) with overlaid cards
   ========================================================================== */

.kv-access {
	position: relative;
	padding: 0;
	min-height: 640px;
	overflow: hidden;
}

.kv-access__map {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--kv-bg-alt);
}

/* Soft wash on the left so the panel reads cleanly over the map */
.kv-access__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(90deg, rgba(245, 242, 234, 0.94) 0%, rgba(245, 242, 234, 0.6) 26%, rgba(245, 242, 234, 0) 50%);
}

.kv-access__overlay {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	min-height: 640px;
	padding-top: 56px;
	padding-bottom: 56px;
	pointer-events: none; /* let the map receive drag everywhere except the panel */
}

.kv-access__panel {
	pointer-events: auto;
	width: 100%;
	max-width: 460px;
	background: rgba(255, 255, 255, 0.97);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border-top: 4px solid var(--kv-secondary);
	border-radius: 4px 4px var(--kv-radius-lg) var(--kv-radius-lg);
	box-shadow: 0 24px 60px rgba(15, 35, 64, 0.28);
	padding: 30px 34px 30px;
}

.kv-access__title { margin-top: 4px; }

.kv-access__intro {
	font-size: 15px;
	line-height: 1.6;
	color: var(--kv-text-light);
	margin: 0 0 22px;
}

.kv-access__cards {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 16px;
}

.kv-access__card {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	border: 1px solid rgba(15, 35, 64, 0.08);
	border-radius: var(--kv-radius);
	padding: 18px 20px;
	background: #fff;
	transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.kv-access__card-num {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--kv-primary);
	color: #fff;
	font-family: var(--kv-font-nav);
	font-weight: 700;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

.kv-access__card-body { flex: 1; min-width: 0; }

.kv-access__card.is-locatable {
	cursor: pointer;
}

.kv-access__card.is-locatable:hover,
.kv-access__card.is-locatable:focus-visible {
	box-shadow: 0 10px 26px rgba(15, 35, 64, 0.18);
	transform: translateY(-2px);
	border-color: rgba(200, 169, 81, 0.5);
	outline: none;
}

.kv-access__card.is-locatable:hover .kv-access__card-num,
.kv-access__card.is-locatable:focus-visible .kv-access__card-num {
	background: var(--kv-secondary);
}

.kv-access__card-title {
	font-family: var(--kv-font-heading);
	font-size: 19px;
	color: var(--kv-primary);
	margin: 0 0 6px;
}

.kv-access__card-desc {
	font-size: 15px;
	line-height: 1.6;
	color: var(--kv-text);
	margin: 0;
}

.kv-access__card-bullets {
	list-style: none;
	margin: 10px 0 0;
	padding: 0;
	display: grid;
	gap: 6px;
}

.kv-access__card-bullets li {
	position: relative;
	padding-left: 18px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--kv-text);
}

.kv-access__card-bullets li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 8px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--kv-secondary);
}

.kv-access__directions {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 14px;
	font-family: var(--kv-font-nav);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--kv-primary);
	text-decoration: none;
}

.kv-access__directions svg { transition: transform 0.2s ease; }
.kv-access__directions:hover { color: var(--kv-secondary); }
.kv-access__directions:hover svg { transform: translateX(3px); }

/* Marker container: strip Leaflet's default white box / border so only the pin shows */
.kv-access .leaflet-marker-icon,
.kv-access .leaflet-div-icon,
.kv-access-pin {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}
.kv-access-pin svg { display: block; filter: drop-shadow(0 3px 5px rgba(15, 35, 64, 0.4)); }

/* Leaflet controls/attribution above the scrim & overlay */
.kv-access .leaflet-top,
.kv-access .leaflet-bottom { z-index: 3; }

.kv-access .leaflet-control-zoom a {
	color: var(--kv-primary);
	border-radius: 6px !important;
}

.kv-access .leaflet-popup-content {
	font-family: var(--kv-font-body);
	font-size: 14px;
	color: var(--kv-primary);
}

@media (max-width: 767px) {
	.kv-access, .kv-access__overlay { min-height: 560px; }
	.kv-access__panel { max-width: 100%; }
	.kv-access__scrim { background: linear-gradient(180deg, rgba(245, 242, 234, 0.5) 0%, rgba(245, 242, 234, 0.92) 40%); }
}

/* ==========================================================================
   Wildlife — King Ranch Nature Tours feature (text + detail card)
   ========================================================================== */

.kv-wl-tours__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 56px;
	align-items: start;
}

.kv-wl-tours__lede {
	font-family: var(--kv-font-heading);
	font-style: italic;
	font-size: clamp(18px, 2vw, 22px);
	line-height: 1.45;
	color: var(--kv-primary);
	margin: 0 0 20px;
	padding-left: 18px;
	border-left: 3px solid var(--kv-secondary);
}

.kv-wl-tours__card {
	background: #fff;
	border-radius: var(--kv-radius-lg);
	box-shadow: 0 16px 44px rgba(15, 35, 64, 0.14);
	overflow: hidden;
	position: sticky;
	top: 110px;
}

.kv-wl-tours__card-photo {
	aspect-ratio: 4 / 3;
	background: rgba(200, 169, 81, 0.1);
}

.kv-wl-tours__card-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.kv-wl-tours__card-body { padding: 26px 28px 28px; }

.kv-wl-tours__card-title {
	font-family: var(--kv-font-heading);
	font-size: 22px;
	color: var(--kv-primary);
	margin: 0 0 18px;
}

.kv-wl-tours__facts {
	margin: 0 0 20px;
	display: grid;
	gap: 14px;
}

.kv-wl-tours__facts > div {
	display: grid;
	gap: 2px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(15, 35, 64, 0.08);
}

.kv-wl-tours__facts > div:last-child { border-bottom: 0; padding-bottom: 0; }

.kv-wl-tours__facts dt {
	font-family: var(--kv-font-nav);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--kv-secondary);
}

.kv-wl-tours__facts dd {
	margin: 0;
	font-size: 16px;
	color: var(--kv-text);
}

.kv-wl-tours__contact {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 22px;
	font-size: 15px;
}

.kv-wl-tours__contact a {
	color: var(--kv-primary);
	text-decoration: underline;
	text-decoration-color: rgba(200, 169, 81, 0.6);
	text-underline-offset: 3px;
}

.kv-wl-tours__contact a:hover { color: var(--kv-secondary); }

.kv-wl-tours__btn { width: 100%; justify-content: center; }

@media (max-width: 900px) {
	.kv-wl-tours__grid { grid-template-columns: 1fr; gap: 32px; }
	.kv-wl-tours__card { position: static; max-width: 460px; }
}

/* ==========================================================================
   Places Directory — graceful filter/page transitions
   ========================================================================== */

.kv-places-directory__grid {
	transition: opacity 0.18s ease;
}

.kv-places-directory__grid.is-swapping {
	opacity: 0;
}

/* New cards fade + rise in, lightly staggered */
.kv-places-directory__grid .kv-place-card {
	animation: kvCardIn 0.42s ease both;
}

@keyframes kvCardIn {
	from { opacity: 0; transform: translateY(12px); }
	to   { opacity: 1; transform: none; }
}

.kv-places-directory__grid .kv-place-card:nth-child(2) { animation-delay: 0.04s; }
.kv-places-directory__grid .kv-place-card:nth-child(3) { animation-delay: 0.08s; }
.kv-places-directory__grid .kv-place-card:nth-child(4) { animation-delay: 0.12s; }
.kv-places-directory__grid .kv-place-card:nth-child(5) { animation-delay: 0.16s; }
.kv-places-directory__grid .kv-place-card:nth-child(6) { animation-delay: 0.20s; }
.kv-places-directory__grid .kv-place-card:nth-child(7) { animation-delay: 0.22s; }
.kv-places-directory__grid .kv-place-card:nth-child(8) { animation-delay: 0.24s; }
.kv-places-directory__grid .kv-place-card:nth-child(9) { animation-delay: 0.26s; }
.kv-places-directory__grid .kv-place-card:nth-child(n+10) { animation-delay: 0.28s; }

@media (prefers-reduced-motion: reduce) {
	.kv-places-directory__grid,
	.kv-places-directory__grid .kv-place-card {
		transition: none;
		animation: none;
	}
}

/* ==========================================================================
   Getting Here — travel / directions page
   ========================================================================== */

.kv-gh__head {
	max-width: 760px;
	margin: 0 auto 36px;
	text-align: center;
}

.kv-gh__head .kv-depot__lede { margin-top: 4px; }

.kv-gh__sub {
	font-family: var(--kv-font-heading);
	color: var(--kv-primary);
	font-weight: 700;
	font-size: clamp(20px, 2.4vw, 26px);
	line-height: 1.15;
	margin: 40px 0 16px;
}

.kv-gh__sub:first-child { margin-top: 0; }

/* Tables */
.kv-gh__table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin: 0;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(15, 35, 64, 0.06);
}

.kv-gh__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 16px;
	min-width: 480px;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
}

.kv-gh__table thead th {
	background: var(--kv-primary);
	color: #fff;
	text-align: left;
	font-family: var(--kv-font-nav);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 14px 20px;
	white-space: nowrap;
}

.kv-gh__table tbody td {
	padding: 14px 20px;
	border-bottom: 1px solid rgba(15, 35, 64, 0.08);
	color: var(--kv-text);
	line-height: 1.5;
}

.kv-gh__table tbody tr:last-child td { border-bottom: 0; }
.kv-gh__table tbody tr:nth-child(even) td { background: rgba(15, 35, 64, 0.025); }
.kv-gh__table tbody td:first-child { font-weight: 600; color: var(--kv-primary); }

/* Written directions */
.kv-gh__dirs {
	display: grid;
	gap: 16px;
	margin: 0;
}

.kv-gh__dir {
	padding: 4px 0 4px 18px;
	border-left: 3px solid var(--kv-secondary);
}

.kv-gh__dir dt {
	font-weight: 700;
	color: var(--kv-primary);
	font-size: 16px;
	margin-bottom: 4px;
}

.kv-gh__dir dd {
	margin: 0;
	font-size: 16px;
	line-height: 1.65;
	color: var(--kv-text);
}

/* Airport cards */
.kv-gh__air-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin: 0;
}

.kv-gh__air-card {
	background: #fff;
	border: 1px solid rgba(15, 35, 64, 0.1);
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 1px 3px rgba(15, 35, 64, 0.05);
}

.kv-gh__air-card--rec {
	border-color: var(--kv-secondary);
	box-shadow: 0 10px 30px rgba(15, 35, 64, 0.08);
}

.kv-gh__air-badge {
	display: inline-block;
	background: var(--kv-secondary);
	color: var(--kv-primary);
	font-family: var(--kv-font-nav);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 4px 11px;
	border-radius: 20px;
	margin-bottom: 12px;
}

.kv-gh__air-name {
	font-family: var(--kv-font-heading);
	color: var(--kv-primary);
	font-size: 21px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 6px;
}

.kv-gh__air-meta {
	font-size: 14px;
	color: var(--kv-text-light);
	font-weight: 600;
	margin: 0 0 14px;
}

.kv-gh__air-body {
	font-size: 15px;
	line-height: 1.7;
	color: var(--kv-text);
	margin: 0 0 18px;
}

.kv-gh__air-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--kv-font-nav);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--kv-primary);
	text-decoration: none;
	border-bottom: 2px solid var(--kv-secondary);
	padding-bottom: 2px;
	transition: opacity 0.15s;
}

.kv-gh__air-link:hover { opacity: 0.7; }

.kv-gh__rental { margin-top: 48px; }

/* Rental agency chips */
.kv-gh__chips-label {
	margin: 20px 0 14px;
	font-size: 15px;
	font-weight: 600;
	color: var(--kv-text);
}

.kv-gh__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.kv-gh__chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 18px;
	background: #fff;
	border: 1px solid rgba(15, 35, 64, 0.15);
	border-radius: 30px;
	color: var(--kv-primary);
	font-family: var(--kv-font-nav);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.3px;
	text-decoration: none;
	transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.kv-gh__chip span { color: var(--kv-secondary); transition: transform 0.15s; }

.kv-gh__chip:hover {
	border-color: var(--kv-secondary);
	box-shadow: 0 6px 16px rgba(15, 35, 64, 0.08);
	transform: translateY(-2px);
}

.kv-gh__chip:hover span { transform: translateX(3px); }

/* Once You're Here — Visitors Center card */
.kv-gh-here__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 48px;
	align-items: start;
}

.kv-gh-here__text .kv-depot__body p:last-child { margin-bottom: 0; }

.kv-vc-card {
	background: #fff;
	border: 1px solid rgba(15, 35, 64, 0.1);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(15, 35, 64, 0.08);
}

.kv-vc-card__head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 26px;
	background: var(--kv-primary);
}

.kv-vc-card__head svg { color: var(--kv-secondary); }

.kv-vc-card__title {
	font-family: var(--kv-font-heading);
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin: 0;
	line-height: 1.2;
}

.kv-vc-card__rows { margin: 0; }

.kv-vc-card__row {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 26px;
	margin: 0;
	border-top: 1px solid rgba(15, 35, 64, 0.07);
}

.kv-vc-card__row:first-child { border-top: 0; }

.kv-vc-card__icon {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(201, 168, 76, 0.14);
	border-radius: 10px;
	color: var(--kv-secondary-dark, #a8862f);
}

.kv-vc-card__detail { display: flex; flex-direction: column; gap: 2px; min-width: 0; }

.kv-vc-card__label {
	font-family: var(--kv-font-nav);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--kv-text-light);
}

.kv-vc-card__value {
	font-size: 16px;
	line-height: 1.45;
	color: var(--kv-text);
}

.kv-vc-card__value a {
	color: var(--kv-primary);
	text-decoration: none;
	border-bottom: 1px solid rgba(15, 35, 64, 0.2);
	transition: color 0.15s, border-color 0.15s;
}

.kv-vc-card__value a:hover {
	color: var(--kv-secondary-dark, #a8862f);
	border-bottom-color: var(--kv-secondary);
}

.kv-vc-card__foot {
	margin: 0;
	padding: 16px 26px;
	background: var(--kv-surface, #faf7f0);
	border-top: 1px solid rgba(15, 35, 64, 0.07);
	font-size: 14px;
	line-height: 1.55;
	color: var(--kv-text-light);
}

@media (max-width: 860px) {
	.kv-gh-here__inner { grid-template-columns: 1fr; gap: 28px; }
}

/* "How far are you?" locator */
.kv-gh__locate {
	margin: 0 0 28px;
	background: linear-gradient(135deg, var(--kv-primary) 0%, var(--kv-primary-dark, #0f2340) 100%);
	border-radius: 16px;
	padding: 24px 28px;
	box-shadow: 0 10px 30px rgba(15, 35, 64, 0.15);
}

.kv-gh__locate-main {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

.kv-gh__locate-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	color: var(--kv-secondary);
}

.kv-gh__locate-copy { flex: 1; min-width: 220px; }

.kv-gh__locate-title {
	font-family: var(--kv-font-heading);
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 4px;
	line-height: 1.2;
}

.kv-gh__locate-sub {
	font-size: 15px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.kv-gh__locate-btn { white-space: nowrap; flex-shrink: 0; }
.kv-gh__locate-btn.is-loading { opacity: 0.7; cursor: progress; }

.kv-gh__locate-result {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.kv-gh__locate-distance,
.kv-gh__locate-msg {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

.kv-gh__locate-distance strong { color: var(--kv-secondary); font-size: 18px; }
.kv-gh__locate-msg { color: #ffd9d0; }

.kv-gh__locate-dir { align-self: flex-start; }

@media (max-width: 720px) {
	.kv-gh__air-grid { grid-template-columns: 1fr; }
	.kv-gh__air-card { padding: 22px; }
	.kv-gh__locate { padding: 20px; }
	.kv-gh__locate-btn { width: 100%; }
}

/* ==========================================================================
   Visitor Information — Visitors Center landing page
   ========================================================================== */

/* Visitors Center — text + contact card */
.kv-vi-center__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 48px;
	align-items: start;
}

.kv-vi-center__note {
	margin: 18px 0 0;
	font-size: 16px;
	line-height: 1.7;
	color: var(--kv-text-light);
}

.kv-vi-card {
	background: #fff;
	border: 1px solid rgba(15, 35, 64, 0.1);
	border-radius: 16px;
	padding: 28px 30px;
	box-shadow: 0 8px 28px rgba(15, 35, 64, 0.07);
	position: sticky;
	top: 100px;
}

.kv-vi-card__title {
	font-family: var(--kv-font-heading);
	color: var(--kv-primary);
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 18px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--kv-secondary);
}

.kv-vi-card__list { margin: 0; display: grid; gap: 16px; }

.kv-vi-card__row { margin: 0; }

.kv-vi-card__row dt {
	font-family: var(--kv-font-nav);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--kv-text-light);
	margin-bottom: 3px;
}

.kv-vi-card__row dd {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	color: var(--kv-text);
}

.kv-vi-card__row dd a {
	color: var(--kv-primary);
	text-decoration: none;
	border-bottom: 1px solid rgba(15, 35, 64, 0.2);
	transition: border-color 0.15s, color 0.15s;
}

.kv-vi-card__row dd a:hover {
	color: var(--kv-secondary-dark, #a8862f);
	border-bottom-color: var(--kv-secondary);
}

/* Plan Before You Arrive — link cards */
.kv-vi-plan__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.kv-vi-plan__card {
	display: block;
	background: #fff;
	border: 1px solid rgba(15, 35, 64, 0.1);
	border-radius: 14px;
	padding: 24px 26px;
	text-decoration: none;
	box-shadow: 0 1px 3px rgba(15, 35, 64, 0.05);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.kv-vi-plan__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(15, 35, 64, 0.1);
	border-color: var(--kv-secondary);
}

.kv-vi-plan__card-title {
	display: block;
	font-family: var(--kv-font-heading);
	color: var(--kv-primary);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 6px;
}

.kv-vi-plan__arrow {
	color: var(--kv-secondary);
	transition: transform 0.18s ease;
	display: inline-block;
}

.kv-vi-plan__card:hover .kv-vi-plan__arrow { transform: translateX(4px); }

.kv-vi-plan__card-desc {
	display: block;
	font-size: 15px;
	line-height: 1.6;
	color: var(--kv-text-light);
}

/* Stay Connected — navy band */
.kv-vi-connect__inner { text-align: center; max-width: 720px; }

.kv-vi-connect__intro {
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 24px;
}

.kv-vi-connect__social {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin: 0 0 32px;
}

.kv-vi-connect__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 22px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 30px;
	color: #fff;
	font-family: var(--kv-font-nav);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s, border-color 0.15s;
}

.kv-vi-connect__link:hover {
	background: rgba(255, 255, 255, 0.16);
	border-color: var(--kv-secondary);
}

.kv-vi-connect__link svg { color: var(--kv-secondary); }

.kv-vi-connect__news {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: 28px;
}

.kv-vi-connect__news p {
	font-size: 16px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 20px;
}

@media (max-width: 860px) {
	.kv-vi-center__grid { grid-template-columns: 1fr; gap: 32px; }
	.kv-vi-card { position: static; top: auto; }
}

@media (max-width: 640px) {
	.kv-vi-plan__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Suggested Itineraries — season-by-season guide
   ========================================================================== */

.kv-itin-intro__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.kv-itin-intro .kv-depot__lede { font-size: 19px; }

.kv-itin-season__head {
	max-width: 820px;
	margin: 0 auto 36px;
	text-align: center;
}

.kv-itin-season__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	font-size: 32px;
	line-height: 1;
	background: #fff;
	border: 1px solid rgba(15, 35, 64, 0.1);
	border-radius: 50%;
	box-shadow: 0 6px 18px rgba(15, 35, 64, 0.08);
	margin-bottom: 18px;
	color: var(--kv-primary);
}

.kv-itin-season__icon svg { width: 32px; height: 32px; }
.kv-itin-season__emoji { font-size: 32px; line-height: 1; }

.kv-itin-season__title { margin-bottom: 12px; }

/* "You're here now" badge on the current season. */
.kv-itin-season__now {
	display: flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	margin: 0 auto 16px;
	padding: 5px 15px;
	font-family: var(--kv-font-nav);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #2e7d5a;
	background: rgba(70, 196, 106, 0.13);
	border: 1px solid rgba(70, 196, 106, 0.28);
	border-radius: 30px;
}
.kv-itin-season__now-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #46c46a;
	box-shadow: 0 0 0 3px rgba(70, 196, 106, 0.22);
	animation: kvSeasonNowPulse 1.8s ease-in-out infinite;
}
@keyframes kvSeasonNowPulse {
	0%, 100% { opacity: 1; }
	50%      { opacity: 0.35; }
}
@media (prefers-reduced-motion: reduce) {
	.kv-itin-season__now-dot { animation: none; }
}

.kv-itin-season__tagline {
	font-family: var(--kv-font-heading);
	font-size: clamp(18px, 2vw, 21px);
	font-weight: 600;
	line-height: 1.4;
	color: var(--kv-secondary-dark, #a8862f);
	margin: 0;
}

.kv-itin-season__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 44px;
	align-items: start;
}

.kv-itin-season__body p:last-child { margin-bottom: 0; }

.kv-itin-season__card {
	background: #fff;
	border: 1px solid rgba(15, 35, 64, 0.1);
	border-radius: 16px;
	padding: 28px 30px;
	box-shadow: 0 8px 28px rgba(15, 35, 64, 0.07);
	position: sticky;
	top: 100px;
}

.kv-itin-season__card-title {
	font-family: var(--kv-font-nav);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--kv-primary);
	margin: 0 0 16px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--kv-secondary);
}

.kv-itin-season__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}

.kv-itin-season__list li {
	position: relative;
	padding-left: 26px;
	font-size: 15px;
	line-height: 1.5;
	color: var(--kv-text);
}

.kv-itin-season__list li::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 7px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--kv-secondary);
}

.kv-itin-season__links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 36px;
	padding-top: 28px;
	border-top: 1px solid rgba(15, 35, 64, 0.1);
}

.kv-itin-season__chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 18px;
	background: var(--kv-primary);
	color: #fff;
	border-radius: 30px;
	font-family: var(--kv-font-nav);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.4px;
	text-decoration: none;
	transition: background 0.15s, transform 0.15s;
}

.kv-itin-season__chip span { color: var(--kv-secondary); transition: transform 0.15s; }
.kv-itin-season__chip:hover { background: var(--kv-primary-dark, #0f2340); transform: translateY(-2px); }
.kv-itin-season__chip:hover span { transform: translateX(3px); }

@media (max-width: 860px) {
	.kv-itin-season__grid { grid-template-columns: 1fr; gap: 28px; }
	.kv-itin-season__card { position: static; top: auto; }
}

/* Parade Registration (4th of July): constrain the plugin-rendered form within
   the cream section. The form supplies its own field styles inline. */
.kv-parade-reg__form { max-width: 720px; margin: 32px auto 0; }
.kv-parade-reg__form .kvltx-parade-signup-form input[type="text"],
.kv-parade-reg__form .kvltx-parade-signup-form input[type="tel"],
.kv-parade-reg__form .kvltx-parade-signup-form input[type="email"],
.kv-parade-reg__form .kvltx-parade-signup-form input[type="number"],
.kv-parade-reg__form .kvltx-parade-signup-form textarea,
.kv-parade-reg__form .kvltx-parade-signup-form select { max-width: 100%; }
.kv-parade-reg__form .kvltx-parade-signup-closed,
.kv-parade-reg__form .kvltx-parade-signup-success { text-align: center; }


/* ==========================================================================
   Plan a Weekend — seasonal event itinerary handoff to the Trip Planner
   ========================================================================== */
.kv-weekend__inner { max-width: 1000px; margin: 0 auto; }

.kv-weekend__head { max-width: 720px; margin: 0 auto 32px; text-align: center; }
.kv-weekend__title { margin: 4px 0 0; }
.kv-weekend__dates {
	margin: 10px 0 0;
	font-family: var(--kv-font-nav);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--kv-secondary-dark, #a8862f);
}
.kv-weekend__blurb {
	margin: 16px 0 0;
	font-size: 17px;
	line-height: 1.65;
	color: var(--kv-text);
}

.kv-weekend__days {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 32px;
}

.kv-weekend__day {
	background: #fff;
	border: 1px solid rgba(15, 35, 64, 0.08);
	border-radius: var(--kv-radius-lg, 16px);
	box-shadow: 0 8px 24px rgba(15, 35, 64, 0.06);
	padding: 22px 24px;
}

.kv-weekend__day-head {
	display: flex;
	align-items: baseline;
	gap: 10px;
	padding-bottom: 12px;
	margin-bottom: 14px;
	border-bottom: 2px solid var(--kv-secondary);
}
.kv-weekend__dow {
	font-family: var(--kv-font-heading);
	font-size: 19px;
	color: var(--kv-primary);
}
.kv-weekend__date {
	font-family: var(--kv-font-nav);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--kv-text-light);
}

.kv-weekend__stops { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.kv-weekend__stop { display: flex; flex-direction: column; gap: 2px; }
.kv-weekend__slot {
	font-family: var(--kv-font-nav);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--kv-secondary-dark, #a8862f);
}
.kv-weekend__stop-name { font-size: 15px; line-height: 1.4; color: var(--kv-text); }

.kv-weekend__cta { text-align: center; }
.kv-weekend__cta .kv-btn { display: inline-flex; align-items: center; gap: 8px; }
.kv-weekend__cta-note {
	display: block;
	margin-top: 12px;
	font-size: 13px;
	color: var(--kv-text-light);
}

@media (max-width: 768px) {
	.kv-weekend__days { grid-template-columns: 1fr; gap: 14px; }
}
