/*
 * Targeted presentation and interaction fixes.
 * Keep the original festival.css rules intact; these overrides address the
 * header, responsive navigation, hero controls, and lower-page hierarchy.
 */

body {
	overflow-x: hidden;
}

.festival-header__top {
	align-items: center;
	min-height: 76px;
	padding-block: 10px;
}

.festival-header__bottom {
	min-height: 52px;
	padding-block: 6px;
}

.festival-utility .menu,
.festival-primary .menu {
	align-items: center;
}

.festival-utility .menu {
	gap: clamp(14px, 2.4vw, 30px);
}

.festival-primary {
	margin-left: auto;
}

.festival-primary .menu {
	gap: clamp(20px, 3vw, 38px);
}

.festival-primary .menu > li > a,
.festival-utility .menu > li > a {
	display: block;
	white-space: nowrap;
}

@media (min-width: 721px) {
	.festival-header__top {
		position: relative;
		justify-content: space-between;
		min-height: 76px;
	}

	.festival-header__top .festival-mark {
		position: absolute;
		z-index: 2;
		top: 0;
		bottom: -52px;
		left: 0;
		display: flex;
		align-items: center;
	}

	.festival-mark__logo {
		width: clamp(250px, 28vw, 330px);
	}

	.festival-mark__logo img {
		max-height: 94px;
	}

	.festival-mark .custom-logo {
		display: block;
		width: clamp(250px, 28vw, 330px);
		max-width: 100%;
		max-height: 94px;
		height: auto;
		object-fit: contain;
	}

	.festival-header__top .festival-utility {
		position: relative;
		z-index: 3;
		display: block;
		margin-left: auto;
	}

	.festival-header__top .festival-utility .menu {
		gap: clamp(16px, 2.2vw, 30px);
		font-size: 10px;
	}

	.festival-header__bottom {
		justify-content: flex-end;
		gap: clamp(14px, 2vw, 28px);
		min-height: 52px;
		padding-left: clamp(250px, 28vw, 330px);
	}

	.festival-header__bottom .festival-utility {
		display: none;
	}

	.festival-header__bottom .festival-primary {
		margin-left: auto;
	}

	.festival-header__bottom .festival-primary .menu {
		gap: clamp(18px, 2.6vw, 34px);
	}
}

.festival-search-toggle,
.festival-menu-toggle {
	display: inline-grid;
	place-items: center;
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	padding: 0;
	border-radius: 3px;
}

.festival-search-toggle:focus-visible,
.festival-menu-toggle:focus-visible,
.hero-dots button:focus-visible,
.festival-primary a:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 3px;
}

.festival-menu-toggle > span[aria-hidden="true"] {
	display: grid;
	gap: 4px;
	width: 20px;
}

.festival-menu-toggle i {
	display: block;
	height: 2px;
	background: currentColor;
	transition: transform .2s ease, opacity .2s ease;
}

.festival-menu-toggle[aria-expanded="true"] i:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.festival-menu-toggle[aria-expanded="true"] i:nth-child(2) {
	opacity: 0;
}

.festival-menu-toggle[aria-expanded="true"] i:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.hero-dots {
	min-height: 48px;
}

.hero-dots button {
	border: 0;
}

.hero-dots button[data-hero-dot] {
	width: 11px;
	height: 11px;
	padding: 0;
	border: 2px solid #fff;
	background: transparent;
	border-radius: 50%;
}

.hero-dots button[data-hero-dot].active {
	background: #fff;
}

.hero-dots .hero-dots__arrow {
	display: inline-grid;
	place-items: center;
	width: 30px;
	height: 30px;
	background: #fff;
	color: #111;
	border-radius: 50%;
	font-size: 20px;
	line-height: 1;
}

.festival-hero__texture {
	transition: background .35s ease;
}

.festival-hero__texture.hero-card--two {
	background: radial-gradient(ellipse at 65% 45%, #be2dec, #541087 42%, #11031e 100%);
}

.festival-hero__texture.hero-card--three {
	background: radial-gradient(ellipse at 35% 50%, #f2bd42, #bd4418 42%, #27070c 100%);
}

.festival-signup__form > h2 {
	max-width: 18ch;
}

.festival-footer {
	margin-top: 0;
}

.festival-footer__links {
	gap: clamp(24px, 4vw, 58px);
	padding-block: 52px 46px;
}

.festival-footer__group {
	min-width: 0;
}

.festival-footer__links h2 {
	margin-bottom: 16px;
	color: #fff;
	font-size: 11px;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.festival-footer__links a {
	color: #d7d7d7;
	line-height: 1.35;
	transition: color .2s ease, transform .2s ease;
}

.festival-footer__links a:hover,
.festival-footer__links a:focus-visible {
	color: #fff;
	transform: translateX(3px);
}

.festival-footer__brand {
	padding-block: 22px;
}

@media (max-width: 720px) {
	.festival-header__top {
		min-height: 64px;
		padding-block: 8px;
	}

	.festival-utility {
		max-width: 56%;
	}

	.festival-utility .menu {
		justify-content: flex-end;
		gap: 8px 12px;
		flex-wrap: wrap;
	}

	.festival-utility .menu a {
		font-size: 8px;
		letter-spacing: .04em;
	}

	.festival-header__bottom {
		position: relative;
		justify-content: flex-end;
		min-height: 56px;
	}

	.festival-primary {
		position: absolute;
		z-index: 20;
		top: 100%;
		right: 52px;
		left: 0;
		display: none;
		margin: 0;
		max-width: none;
		overflow: visible;
		background: #fff;
		border: 1px solid #111;
		box-shadow: 0 12px 24px #0002;
	}

	.festival-menu-open .festival-primary {
		display: block;
	}

	.festival-primary .menu {
		display: flex;
		align-items: stretch;
		flex-direction: column;
		gap: 0;
		width: 100%;
		min-width: 0;
	}

	.festival-primary .menu > li {
		border-bottom: 1px solid #1112;
	}

	.festival-primary .menu > li:last-child {
		border-bottom: 0;
	}

	.festival-primary .menu > li > a {
		padding: 15px 18px;
		font-size: 13px;
	}

	.festival-primary .menu > li > a:hover,
	.festival-primary .menu > li > a:focus-visible {
		background: #f2f2f2;
		text-decoration: none;
	}

	.festival-menu-open .festival-primary .sub-menu {
		display: block;
		position: static;
		padding: 0 0 6px 18px;
	}

	.festival-menu-open .festival-primary .sub-menu a {
		display: block;
		padding: 5px 18px;
		font-size: 12px;
		font-weight: 400;
	}

	.festival-menu-toggle {
		display: inline-grid;
		position: relative;
		z-index: 21;
	}

	.festival-search-toggle {
		position: relative;
		z-index: 21;
	}

	.festival-hero__grid {
		gap: 16px;
		padding-block: 12px 2px;
	}

	.festival-hero__copy {
		padding-right: 0;
	}

	.festival-footer__links {
		padding-block: 38px;
	}
}

@media (max-width: 560px) {
	.container {
		width: calc(100% - 28px);
	}

	.festival-header__top {
		align-items: center;
	}

	.festival-mark__logo {
		width: min(42vw, 170px);
	}

	.festival-utility {
		max-width: 58%;
	}

	.festival-utility .menu {
		gap: 5px 9px;
	}

	.festival-utility .menu li:nth-child(n + 4) {
		display: none;
	}

	.festival-header__bottom {
		min-height: 52px;
	}

	.festival-primary {
		right: 48px;
	}

	.festival-hero__grid {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.hero-dots {
		gap: 8px;
	}

	.hero-dots .hero-dots__arrow {
		width: 27px;
		height: 27px;
	}

	.festival-signup {
		grid-template-columns: 1fr;
	}

	.festival-signup__date,
	.festival-signup__form {
		min-height: 255px;
	}

	.festival-signup__form > h2 {
		max-width: none;
	}

	.festival-footer__links {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 30px 18px;
	}
}

@media (max-width: 720px) {
	/*
	 * Keep the mobile header compact. The controls live in the existing
	 * bottom row markup, but are visually anchored to the logo row so an
	 * empty white strip cannot appear above the hero.
	 */
	.festival-header__bottom {
		height: 0;
		min-height: 0;
		border-top: 0;
	}

	.festival-header__top {
		padding-right: 76px;
	}

	.festival-header__bottom .festival-utility {
		position: absolute;
		top: -46px;
		right: 76px;
		left: 0;
		display: block;
		max-width: none;
		margin: 0;
	}

	.festival-search-toggle,
	.festival-menu-toggle {
		position: absolute;
		top: -46px;
		z-index: 21;
		width: 32px;
		height: 32px;
	}

	.festival-search-toggle {
		right: 40px;
	}

	.festival-menu-toggle {
		right: 0;
	}

	.festival-primary {
		top: 0;
	}
}

@media (max-width: 560px) {
	.festival-header__top {
		padding-right: 76px;
	}

	.festival-mark__logo {
		width: min(38vw, 150px);
	}

	.festival-utility {
		max-width: 205px;
	}

	.festival-utility .menu {
		gap: 4px 8px;
	}

	.festival-utility .menu a {
		font-size: 7px;
	}

	.festival-search {
		overflow-y: auto;
		padding: 12px;
	}

	.festival-search__panel {
		width: min(100%, 650px);
		margin: 12vh auto 0;
		padding: 28px 24px 32px;
	}

	.festival-search__panel h2 {
		font-size: clamp(34px, 9vw, 48px);
	}

	.festival-search__row {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 8px;
		width: 100%;
	}

	.festival-search__row input {
		width: 100%;
		min-width: 0;
	}

	.festival-search__row button {
		white-space: nowrap;
	}

	.festival-signup__date,
	.festival-signup__form {
		text-align: center;
	}

	.festival-signup__date strong,
	.festival-signup__form > h2 {
		font-size: 22px;
	}

	.northstar-signup-form {
		width: min(100%, 360px);
		margin-inline: auto;
	}

	.festival-footer__links {
		text-align: center;
	}

	.festival-footer__group h2,
	.festival-footer__group a {
		text-align: center;
	}

	.festival-footer__links .festival-footer__group:last-child {
		grid-column: 1 / -1;
	}

	.festival-footer__brand {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.festival-footer__brand > div {
		margin-inline: 0;
		max-width: none;
	}

	.festival-footer__brand strong,
	.festival-footer__brand a {
		font-size: 12px;
	}

	.festival-footer__bottom {
		text-align: center;
		font-size: 12px;
	}
}

/* Highlights archive and single-article presentation. */
.festival-highlights-index {
	padding-top: 30px;
}

.festival-highlight-feature-grid {
	display: grid;
	grid-auto-rows: minmax(130px, 1fr);
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
	margin-bottom: 34px;
}

.festival-highlight-feature-card {
	position: relative;
	min-width: 0;
	min-height: 130px;
	overflow: hidden;
	background: #111;
}

.festival-highlight-feature-card:nth-child(1) {
	grid-column: span 2;
	grid-row: span 2;
}

.festival-highlight-feature-card:nth-child(2),
.festival-highlight-feature-card:nth-child(3) {
	grid-row: span 2;
}

.festival-highlight-feature-card a,
.festival-highlight-feature-card img,
.festival-highlight-feature-card .festival-placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.festival-highlight-feature-card img,
.festival-highlight-feature-card .festival-placeholder {
	object-fit: cover;
	border-radius: 0;
	background: linear-gradient(135deg, #172d53, #d34842 55%, #efc15d);
}

.festival-highlight-feature-card__overlay {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 42px 14px 14px;
	background: linear-gradient(transparent, #000d);
	color: #fff;
}

.highlight-label {
	margin: 0 0 7px;
	color: currentColor;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1.2;
	text-transform: uppercase;
}

.festival-highlight-feature-card h2 {
	margin: 0;
	font-size: clamp(16px, 1.8vw, 25px);
	line-height: 1.02;
}

.festival-highlight-filters {
	display: flex;
	gap: 8px;
	margin: 0 0 34px;
	overflow-x: auto;
}

.festival-highlight-filters a {
	flex: 1 0 120px;
	padding: 14px 12px;
	background: #ed362f;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-align: center;
	text-transform: uppercase;
}

.festival-highlight-filters a:nth-child(2) { background: #9820c8; }
.festival-highlight-filters a:nth-child(3) { background: #099cdf; }
.festival-highlight-filters a:nth-child(4) { background: #0d8b5d; }
.festival-highlight-filters a:nth-child(5) { background: #132b9e; }
.festival-highlight-filters a:nth-child(6) { background: #111; }

.festival-highlight-article-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 38px 18px;
}

.festival-highlight-article-card {
	min-width: 0;
}

.festival-highlight-article-card__image,
.festival-highlight-article-card__image img,
.festival-highlight-article-card__image .festival-placeholder {
	display: block;
	width: 100%;
}

.festival-highlight-article-card__image img,
.festival-highlight-article-card__image .festival-placeholder {
	aspect-ratio: 1.48 / 1;
	border-radius: 7px;
	object-fit: cover;
	background: linear-gradient(135deg, #5b8ec2, #f1b349);
}

.festival-highlight-article-card__copy {
	padding-top: 10px;
}

.festival-highlight-article-card__copy h2 {
	margin: 0 0 7px;
	font-size: 19px;
	line-height: 1.08;
}

.festival-highlight-article-card__copy h2 a:hover {
	text-decoration: none;
}

.festival-highlight-article-card__copy > p:not(.highlight-label) {
	margin: 0 0 10px;
	font-size: 12px;
	line-height: 1.4;
}

.highlight-read-more {
	display: inline-block;
	color: #111;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.festival-highlight-pagination {
	display: flex;
	justify-content: center;
	margin: 38px 0 8px;
}

.festival-highlight-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 32px;
	margin: 0 3px;
	border: 1px solid #111;
	font-size: 12px;
}

.festival-highlight-pagination .current {
	background: #f0bd31;
}

.festival-highlight-single {
	padding: 42px 24px 70px;
}

.festival-highlight-single__article {
	width: min(100%, 760px);
	margin: 0 auto;
}

.festival-highlight-single__header {
	margin-bottom: 24px;
	text-align: left;
}

.festival-highlight-single__header h2 {
	max-width: 720px;
	margin: 0;
	font-size: clamp(32px, 5vw, 62px);
	line-height: .98;
}

.festival-highlight-single__image {
	margin: 0 0 28px;
}

.festival-highlight-single__image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.festival-highlight-single__content {
	max-width: 720px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.7;
}

.festival-highlight-single__content p {
	margin: 0 0 1.2em;
}

.festival-highlight-single__content h2,
.festival-highlight-single__content h3 {
	margin: 1.5em 0 .5em;
	line-height: 1.1;
}

.festival-highlight-single__content img {
	width: 100%;
	height: auto;
	margin: 28px auto;
}

@media (max-width: 720px) {
	.festival-highlight-feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.festival-highlight-feature-card:nth-child(1) {
		grid-column: span 2;
	}

	.festival-highlight-feature-card:nth-child(2),
	.festival-highlight-feature-card:nth-child(3) {
		grid-row: span 1;
	}

	.festival-highlight-article-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 12px;
	}

	.festival-highlight-article-card__copy h2 {
		font-size: 16px;
	}

	.festival-highlight-single {
		padding-inline: 16px;
	}
}

@media (max-width: 560px) {
	.festival-highlight-feature-grid {
		grid-template-columns: 1fr;
	}

	.festival-highlight-feature-card:nth-child(1) {
		grid-column: auto;
	}

	.festival-highlight-feature-card:nth-child(2),
	.festival-highlight-feature-card:nth-child(3) {
		grid-row: auto;
	}

	.festival-highlight-article-grid {
		grid-template-columns: 1fr;
	}

	.festival-highlight-filters a {
		flex-basis: 104px;
	}

	.festival-highlight-single__header h2 {
		font-size: 36px;
	}
}

/* How to Fest guide. */
.how-to-hero {
	padding: 24px 0 28px;
	background:
		linear-gradient(90deg, #006044e8, #007d5bd9),
		repeating-linear-gradient(135deg, #ffffff0a 0 3px, transparent 3px 9px);
	color: #fff;
}

.how-to-hero h1 {
	margin: 0;
	font-size: clamp(42px, 6vw, 72px);
	line-height: .95;
}

.how-to-tabs {
	overflow-x: auto;
	background: #050505;
	color: #fff;
}

.how-to-tabs .container {
	display: flex;
	width: max-content;
	min-width: min(100%, var(--max));
	margin-inline: auto;
}

.how-to-tabs a {
	display: block;
	padding: 12px 14px;
	border-right: 1px solid #fff;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.how-to-tabs a:hover,
.how-to-tabs a:focus-visible,
.how-to-tabs a.is-active {
	background: #fff;
	color: #111;
	text-decoration: none;
}

.how-to-section {
	padding: 22px 0 72px;
}

.how-to-layout {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: clamp(24px, 5vw, 76px);
	align-items: start;
}

.how-to-sidebar {
	display: grid;
	gap: 14px;
	padding-top: 2px;
}

.how-to-sidebar a {
	font-size: 11px;
	font-weight: 700;
	line-height: 1.25;
}

.how-to-sidebar a:first-child {
	text-decoration: underline;
}

.how-to-content {
	max-width: 790px;
	min-width: 0;
	font-size: 13px;
	line-height: 1.5;
}

.how-to-content h2 {
	margin: 0 0 12px;
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1;
}

.how-to-content h3 {
	margin: 28px 0 8px;
	font-size: 19px;
	line-height: 1.1;
}

.how-to-content p {
	margin: 0 0 14px;
}

.how-to-content ul,
.how-to-content ol {
	margin: 10px 0 18px;
	padding-left: 22px;
}

.how-to-content li {
	margin: 4px 0;
}

.how-to-custom-content {
	margin-bottom: 26px;
	padding-bottom: 20px;
	border-bottom: 1px solid #1113;
}

.how-to-map-placeholder {
	display: grid;
	place-items: center;
	min-height: 320px;
	margin-top: 24px;
	background:
		linear-gradient(135deg, #0c57d9bb, #21a5d488),
		repeating-linear-gradient(45deg, #ffffff18 0 2px, transparent 2px 10px);
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
}

.how-to-venue-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 26px 20px;
	margin-top: 22px;
}

.how-to-venue-card h3 {
	margin-top: 10px;
}

.how-to-venue-card p {
	font-size: 12px;
}

.how-to-venue-image {
	aspect-ratio: 1.55 / 1;
	border-radius: 4px;
	background: linear-gradient(135deg, #8bb0d7, #d7a748);
}

.how-to-venue-image--campus {
	background: linear-gradient(135deg, #9bbbcf, #315d4b 60%, #b88948);
}

.how-to-venue-image--dairy {
	background: linear-gradient(135deg, #d5a85c, #724f38 55%, #85a9be);
}

.how-to-venue-image--theater {
	background: linear-gradient(135deg, #151515, #a5b2c2 50%, #2a1c3d);
}

.how-to-venue-image--mountain {
	background: linear-gradient(160deg, #80a8c5, #35597c 48%, #e4c677 49%, #4c6c55);
}

@media (max-width: 720px) {
	.how-to-hero {
		padding: 20px 0 22px;
	}

	.how-to-tabs .container {
		width: max-content;
		min-width: 100%;
	}

	.how-to-tabs a {
		padding: 11px 13px;
		font-size: 12px;
	}

	.how-to-section {
		padding-top: 18px;
	}

	.how-to-layout {
		grid-template-columns: 112px minmax(0, 1fr);
		gap: 18px;
	}

	.how-to-content {
		font-size: 11px;
		line-height: 1.45;
	}

	.how-to-content h2 {
		font-size: 26px;
	}

	.how-to-content h3 {
		font-size: 16px;
	}

	.how-to-sidebar {
		gap: 12px;
	}

	.how-to-sidebar a {
		font-size: 9px;
	}
}

@media (max-width: 560px) {
	.how-to-venue-grid {
		grid-template-columns: 1fr;
	}

	.how-to-map-placeholder {
		min-height: 240px;
	}
}