:root {
	--eq-red: #c8102e;
	--eq-red-dark: #a00d25;
	--eq-navy: #1e2a38;
	--eq-navy-light: #2f4054;
	--eq-text: #333;
	--eq-muted: #666;
	--eq-border: #d9dde2;
	--eq-bg: #f5f6f8;
	--eq-white: #fff;
	--eq-font: "Roboto", system-ui, sans-serif;
	--eq-font-slab: "Roboto Slab", Georgia, serif;
	--eq-container: 1180px;
	--eq-radius: 4px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 16px;
	line-height: 1.55;
	color: var(--eq-text);
	background: var(--eq-white);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: #0d5cab;
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: underline;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.eq-container {
	width: min(100% - 1.25rem, var(--eq-container));
	margin-inline: auto;
}

.eq-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 9999;
	background: var(--eq-navy);
	color: var(--eq-white);
	padding: 0.75rem 1rem;
}

.eq-skip-link:focus {
	left: 0;
}

/* Notice bar */
.eq-notice-bar {
	background: #eef1f4;
	border-bottom: 1px solid var(--eq-border);
	font-size: 0.8125rem;
	padding: 0.5rem 2.5rem 0.5rem 0.75rem;
	position: relative;
}

.eq-notice-bar p {
	margin: 0;
}

.eq-notice-bar__close {
	position: absolute;
	right: 0.5rem;
	top: 0.35rem;
	border: 0;
	background: transparent;
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
}

/* Header */
.eq-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--eq-white);
	box-shadow: 0 1px 0 var(--eq-border);
}

.eq-header-top {
	display: none;
	background: var(--eq-navy);
	color: var(--eq-white);
	font-size: 0.75rem;
}

.eq-header-top a {
	color: var(--eq-white);
}

.eq-header-top__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 2rem;
}

.eq-utility-nav__list,
.eq-header-top__social {
	display: flex;
	gap: 0.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.eq-header-main__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-areas:
		"brand toggle"
		"actions actions";
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 0;
}

.eq-brand {
	grid-area: brand;
}

.eq-brand__text {
	display: flex;
	flex-direction: column;
	color: var(--eq-navy);
	text-decoration: none;
}

.eq-brand__name {
	font-family: var(--eq-font-slab);
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.2;
}

.eq-brand__tag {
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--eq-muted);
}

.custom-logo-link img {
	max-height: 52px;
	width: auto;
}

.eq-nav-toggle {
	grid-area: toggle;
	border: 1px solid var(--eq-border);
	background: var(--eq-white);
	border-radius: var(--eq-radius);
	padding: 0.45rem 0.75rem;
	font-weight: 600;
	cursor: pointer;
}

.eq-header-actions {
	grid-area: actions;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.eq-search {
	display: flex;
	gap: 0.35rem;
}

.eq-search input[type="search"] {
	flex: 1;
	min-width: 0;
	border: 1px solid var(--eq-border);
	border-radius: var(--eq-radius);
	padding: 0.45rem 0.6rem;
	font: inherit;
}

.eq-search button {
	border: 1px solid var(--eq-navy);
	background: var(--eq-navy);
	color: var(--eq-white);
	border-radius: var(--eq-radius);
	padding: 0.45rem 0.75rem;
	font-size: 0.8125rem;
	cursor: pointer;
}

.eq-btn {
	display: inline-block;
	border-radius: var(--eq-radius);
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	border: 0;
	cursor: pointer;
	padding: 0.65rem 1rem;
	font-size: 0.875rem;
}

.eq-btn--ticket {
	background: var(--eq-red);
	color: var(--eq-white);
	width: 100%;
}

.eq-btn--ticket:hover,
.eq-btn--ticket:focus {
	background: var(--eq-red-dark);
	color: var(--eq-white);
	text-decoration: none;
}

.eq-btn--primary {
	background: var(--eq-red);
	color: var(--eq-white);
}

.eq-btn--secondary {
	background: var(--eq-navy);
	color: var(--eq-white);
}

.eq-primary-nav {
	background: var(--eq-navy-light);
	display: none;
}

.eq-primary-nav.is-open {
	display: block;
}

.eq-primary-nav__list {
	list-style: none;
	margin: 0;
	padding: 0.35rem 0;
}

.eq-primary-nav__list a {
	display: block;
	padding: 0.65rem 0.25rem;
	color: var(--eq-white);
	font-weight: 500;
	font-size: 0.9375rem;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.eq-primary-nav__list a:hover,
.eq-primary-nav__list a:focus {
	background: rgba(0, 0, 0, 0.15);
	text-decoration: none;
}

/* Hero */
.eq-hero__viewport {
	position: relative;
	overflow: hidden;
	background: #000;
}

.eq-hero__track {
	position: relative;
	min-height: 420px;
}

.eq-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.45s ease;
}

.eq-hero__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	position: relative;
}

.eq-hero__media {
	width: 100%;
	height: 420px;
	object-fit: cover;
}

.eq-hero__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1rem 0.75rem 1.25rem;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
	color: var(--eq-white);
}

.eq-hero__meta {
	margin: 0 0 0.5rem;
	font-size: 0.8125rem;
	line-height: 1.45;
}

.eq-hero__meta strong {
	display: block;
	font-size: 0.9375rem;
	margin-bottom: 0.25rem;
}

.eq-hero__title {
	font-family: var(--eq-font-slab);
	font-size: 1.35rem;
	line-height: 1.25;
	margin: 0 0 0.75rem;
}

.eq-hero__controls {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	padding: 0 0.25rem;
}

.eq-hero__arrow {
	pointer-events: auto;
	border: 0;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.85);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
}

/* Quick actions */
.eq-quick-actions {
	background: var(--eq-bg);
	border-bottom: 1px solid var(--eq-border);
}

.eq-quick-actions__list {
	list-style: none;
	margin: 0;
	padding: 0.75rem 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5rem;
}

.eq-quick-actions__list a {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.35rem;
	padding: 0.65rem 0.35rem;
	background: var(--eq-white);
	border: 1px solid var(--eq-border);
	border-radius: var(--eq-radius);
	color: var(--eq-navy);
	font-size: 0.75rem;
	font-weight: 600;
	text-decoration: none;
	min-height: 100%;
}

.eq-quick-actions__icon svg {
	width: 1.75rem;
	height: 1.75rem;
	fill: var(--eq-red);
}

/* Promos */
.eq-promo--split {
	display: grid;
	grid-template-columns: 1fr;
}

.eq-promo__media img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.eq-promo__body {
	padding: 1.25rem 0.75rem;
}

.eq-promo__body h2 {
	font-family: var(--eq-font-slab);
	font-size: 1.35rem;
	margin: 0 0 0.75rem;
	color: var(--eq-navy);
}

.eq-promo__body p {
	margin: 0 0 1rem;
	color: var(--eq-muted);
}

/* Feature grid */
.eq-feature-grid {
	padding: 1.5rem 0;
	background: var(--eq-white);
}

.eq-feature-grid__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

.eq-feature-card {
	position: relative;
	border-radius: var(--eq-radius);
	overflow: hidden;
	min-height: 220px;
}

.eq-feature-card__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.eq-feature-card__content {
	position: relative;
	z-index: 1;
	padding: 1rem;
	color: var(--eq-white);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.75));
	min-height: 220px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.eq-feature-card__content h2 {
	font-family: var(--eq-font-slab);
	font-size: 1.125rem;
	margin: 0 0 0.35rem;
}

.eq-feature-card__content p {
	margin: 0 0 0.5rem;
	font-size: 0.875rem;
}

.eq-feature-card__link {
	color: #ffd966;
	font-weight: 700;
	font-size: 0.875rem;
	text-decoration: underline;
}

/* Lodging */
.eq-lodging {
	background: var(--eq-bg);
	padding: 1.5rem 0;
}

.eq-lodging__inner {
	display: grid;
	gap: 1rem;
}

.eq-lodging__media img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: var(--eq-radius);
}

.eq-lodging__form-wrap h2 {
	font-family: var(--eq-font-slab);
	margin: 0 0 0.35rem;
}

.eq-lodging__phone {
	margin: 0 0 1rem;
	font-size: 0.875rem;
}

.eq-lodging__form {
	display: grid;
	gap: 0.75rem;
}

.eq-lodging__field label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.eq-lodging__field input {
	width: 100%;
	border: 1px solid var(--eq-border);
	border-radius: var(--eq-radius);
	padding: 0.5rem;
	font: inherit;
}

/* App section */
.eq-app {
	padding: 1.5rem 0;
}

.eq-app__inner {
	display: grid;
	gap: 1rem;
}

.eq-app__device img {
	width: min(100%, 320px);
	margin-inline: auto;
	border-radius: 1rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.eq-app__content h2 {
	font-family: var(--eq-font-slab);
	margin-top: 0;
}

.eq-app__features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

.eq-app__features h3 {
	margin: 0 0 0.25rem;
	font-size: 1rem;
	color: var(--eq-red);
}

.eq-app__features p {
	margin: 0;
	font-size: 0.875rem;
	color: var(--eq-muted);
}

/* Sponsors */
.eq-sponsors {
	background: var(--eq-bg);
	padding: 1rem 0;
}

.eq-sponsors__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 0.75rem;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.eq-sponsors__list img {
	height: 72px;
	width: auto;
	border-radius: var(--eq-radius);
}

/* News band */
.eq-news-band {
	padding: 1.5rem 0 2rem;
}

.eq-news-band h2 {
	font-family: var(--eq-font-slab);
}

.eq-news-band__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}

.eq-news-card a {
	color: inherit;
	text-decoration: none;
	display: block;
	border: 1px solid var(--eq-border);
	border-radius: var(--eq-radius);
	overflow: hidden;
	background: var(--eq-white);
}

.eq-news-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.eq-news-card h3 {
	margin: 0.75rem 0.75rem 0.25rem;
	font-size: 1rem;
}

.eq-news-card time {
	display: block;
	margin: 0 0.75rem 0.75rem;
	font-size: 0.8125rem;
	color: var(--eq-muted);
}

.eq-news-band__more {
	text-align: center;
	margin-top: 1rem;
}

/* Inner pages */
.eq-main--inner {
	padding: 1.25rem 0 2rem;
}

.eq-layout {
	display: grid;
	gap: 1.5rem;
}

.eq-page-header h1 {
	font-family: var(--eq-font-slab);
	margin-top: 0;
}

.eq-entry__title a {
	color: var(--eq-navy);
}

.eq-entry--card {
	border: 1px solid var(--eq-border);
	border-radius: var(--eq-radius);
	padding: 1rem;
	margin-bottom: 1rem;
}

.eq-entry__content > *:first-child {
	margin-top: 0;
}

.eq-sidebar {
	border-top: 3px solid var(--eq-red);
	padding-top: 1rem;
}

.eq-widget__title {
	font-size: 1rem;
	margin-top: 0;
}

/* Footer */
.eq-newsletter {
	background: var(--eq-navy);
	color: var(--eq-white);
	padding: 1.25rem 0;
}

.eq-newsletter a {
	color: #9fd4ff;
}

.eq-newsletter__inner {
	display: grid;
	gap: 1rem;
}

.eq-newsletter__form {
	display: grid;
	gap: 0.5rem;
}

.eq-newsletter__form input[type="email"] {
	border: 0;
	border-radius: var(--eq-radius);
	padding: 0.6rem 0.75rem;
	font: inherit;
}

.eq-newsletter__thanks {
	margin: 0;
	font-weight: 600;
}

.eq-footer-main {
	background: #2b2b2b;
	color: #ddd;
	padding: 1.5rem 0;
	font-size: 0.875rem;
}

.eq-footer-main a {
	color: #fff;
}

.eq-footer-main__grid {
	display: grid;
	gap: 1.25rem;
}

.eq-footer-brand__name {
	font-family: var(--eq-font-slab);
	font-weight: 700;
	font-size: 1.125rem;
	margin: 0 0 0.5rem;
}

.eq-footer-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.35rem;
}

.eq-footer-bottom {
	background: #1f1f1f;
	color: #aaa;
	padding: 0.75rem 0 1.25rem;
	font-size: 0.75rem;
}

.eq-partner-row {
	margin-bottom: 0.75rem;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.eq-partner-row__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: nowrap;
	gap: 0.35rem 1rem;
	align-items: center;
	min-width: min-content;
}

.eq-partner-row__list a {
	color: #ccc;
	white-space: nowrap;
	text-decoration: none;
	font-size: 0.75rem;
}

.eq-partner-row__list a:hover,
.eq-partner-row__list a:focus {
	color: #fff;
	text-decoration: underline;
}

.eq-footer-copy {
	margin: 0;
	text-align: center;
}

/* Pagination */
.navigation.pagination {
	margin-top: 1.5rem;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
}

/* Tablet+ */
@media (min-width: 640px) {
	.eq-quick-actions__list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.eq-hero__media,
	.eq-hero__track {
		min-height: 480px;
		height: 480px;
	}

	.eq-hero__title {
		font-size: 1.75rem;
	}

	.eq-feature-grid__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.eq-news-band__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Desktop */
@media (min-width: 960px) {
	.eq-header-top {
		display: block;
	}

	.eq-header-main__inner {
		grid-template-columns: auto 1fr auto;
		grid-template-areas: "brand actions actions";
		align-items: center;
	}

	.eq-nav-toggle {
		display: none;
	}

	.eq-header-actions {
		flex-direction: row;
		align-items: center;
		justify-content: flex-end;
	}

	.eq-btn--ticket {
		width: auto;
		white-space: nowrap;
	}

	.eq-primary-nav {
		display: block !important;
	}

	.eq-primary-nav .eq-container {
		width: min(100% - 2rem, var(--eq-container));
	}

	.eq-primary-nav__list {
		display: flex;
		flex-wrap: wrap;
		gap: 0.15rem 1rem;
	}

	.eq-primary-nav__list a {
		border-bottom: 0;
		padding: 0.75rem 0;
	}

	.eq-hero__media,
	.eq-hero__track {
		min-height: 520px;
		height: 520px;
	}

	.eq-hero__overlay {
		padding: 2rem;
		max-width: 640px;
	}

	.eq-quick-actions__list {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.eq-promo--split {
		grid-template-columns: 1fr 1fr;
		align-items: stretch;
	}

	.eq-promo--reverse .eq-promo__media {
		order: 2;
	}

	.eq-promo__media img {
		height: 100%;
		min-height: 280px;
	}

	.eq-feature-grid__list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.eq-lodging__inner {
		grid-template-columns: 1.1fr 1fr;
		align-items: center;
	}

	.eq-lodging__form {
		grid-template-columns: 1fr 1fr;
	}

	.eq-lodging__form button {
		grid-column: 1 / -1;
	}

	.eq-app__inner {
		grid-template-columns: 320px 1fr;
		align-items: center;
	}

	.eq-app__features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.eq-news-band__list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.eq-layout {
		grid-template-columns: minmax(0, 1fr) 280px;
	}

	.eq-footer-main__grid {
		grid-template-columns: 1.2fr 1fr 1fr;
	}

	.eq-partner-row__list {
		flex-wrap: wrap;
		justify-content: center;
	}

	.eq-footer-copy {
		text-align: left;
	}
}

@media (min-width: 1200px) {
	.eq-hero__media,
	.eq-hero__track {
		min-height: 560px;
		height: 560px;
	}
}
