:root {
	--navy-950: #040b12;
	--navy-900: #07141f;
	--navy-800: #0b1e2e;
	--navy-700: #123049;
	--teal: #28cf9f;
	--teal-bright: #5ee4b8;
	--teal-dim: rgba(40, 207, 159, 0.14);
	--foam: #eef8f4;
	--foam-muted: #9ec4b8;
	--coral: #ff6b57;
	--coral-hover: #ff8574;
	--white: #ffffff;
	--line: rgba(238, 248, 244, 0.12);
	--header-h: 4.25rem;
	--radius: 1.25rem;
	--shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
	--font-display: "Syne", system-ui, sans-serif;
	--font-body: "Outfit", system-ui, sans-serif;
	--space: clamp(1.25rem, 4vw, 2.5rem);
	--max: 70rem;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-h);
	color-scheme: dark;
}

html:focus-within {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--foam);
	background: var(--navy-900);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--teal);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--teal-bright);
}

:focus-visible {
	outline: 2px solid var(--teal);
	outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-display);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.03em;
	margin: 0 0 0.6em;
	color: var(--white);
}

h2 {
	font-size: clamp(1.85rem, 4.5vw, 3.25rem);
	text-wrap: balance;
}

h3 {
	font-size: clamp(1.35rem, 2.4vw, 1.85rem);
	letter-spacing: -0.02em;
}

p {
	margin: 0 0 1em;
}

p:last-child {
	margin-bottom: 0;
}

.wrap {
	width: min(100% - 2rem, var(--max));
	margin-inline: auto;
}

.hidden {
	display: none !important;
}

img.is-broken {
	display: none;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	left: 1rem;
	top: -4rem;
	z-index: 200;
	background: var(--teal);
	color: var(--navy-950);
	padding: 0.6rem 1rem;
	font-weight: 600;
	border-radius: 0.4rem;
}

.skip-link:focus {
	top: 1rem;
	color: var(--navy-950);
}

.kicker {
	margin: 0 0 0.75rem;
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--teal);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 3rem;
	padding: 0.75rem 1.4rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
	transform: translateY(-1px);
	text-decoration: none;
}

.btn--coral {
	background: var(--coral);
	color: var(--white);
}

.btn--coral:hover {
	background: var(--coral-hover);
	color: var(--white);
}

.btn--ghost {
	background: transparent;
	color: var(--foam);
	border-color: var(--line);
}

.btn--ghost:hover {
	border-color: var(--teal);
	color: var(--teal-bright);
}

.btn__icon {
	display: block;
	flex-shrink: 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	width: 100%;
	height: var(--header-h);
	background: rgba(4, 11, 18, 0.94);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid transparent;
	transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
	background: rgba(4, 11, 18, 0.98);
	border-bottom-color: var(--line);
}

.site-header__inner {
	width: min(100% - 1.5rem, var(--max));
	margin-inline: auto;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.site-logo {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	flex-shrink: 0;
	text-decoration: none;
	color: var(--white);
}

.site-logo img {
	height: 2.15rem;
	width: auto;
	mix-blend-mode: lighten;
}

.site-logo img.is-broken {
	display: none;
}

.site-logo__text {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.03em;
	font-size: 1.15rem;
}

.nav-toggle {
	width: 2.75rem;
	height: 2.75rem;
	border: 1px solid var(--line);
	border-radius: 0.7rem;
	background: transparent;
	color: var(--foam);
	cursor: pointer;
	display: grid;
	place-items: center;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
	display: block;
	width: 1.15rem;
	height: 2px;
	background: currentColor;
	border-radius: 1px;
	position: relative;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
	content: "";
	position: absolute;
	left: 0;
}

.nav-toggle__bars::before {
	top: -6px;
}

.nav-toggle__bars::after {
	top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
	background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
	top: 0;
	transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
	top: 0;
	transform: rotate(-45deg);
}

.site-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 0.25rem;
}

.site-nav a {
	display: block;
	padding: 0.55rem 0.85rem;
	color: var(--foam);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	border-radius: 999px;
}

.site-nav a:hover,
.site-nav a[aria-current="true"] {
	color: var(--teal-bright);
	background: var(--teal-dim);
}

.hero {
	position: relative;
	min-height: calc(100vh - var(--header-h));
	min-height: calc(100svh - var(--header-h));
	display: grid;
	place-items: end center;
	overflow: hidden;
	color: var(--white);
	text-align: center;
	padding: 5.5rem 1.25rem 3rem;
	background:
		radial-gradient(ellipse at 50% 20%, rgba(40, 207, 159, 0.18), transparent 46%),
		linear-gradient(180deg, var(--navy-800), var(--navy-950));
}

.hero__media,
.hero__caustic,
.hero__shade {
	position: absolute;
	inset: 0;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 40%;
	transform: scale(1.04);
}

.hero__caustic {
	background:
		radial-gradient(ellipse at 18% 20%, rgba(40, 207, 159, 0.22), transparent 42%),
		radial-gradient(ellipse at 82% 70%, rgba(46, 130, 210, 0.28), transparent 46%),
		radial-gradient(ellipse at 50% 100%, rgba(7, 20, 31, 0.2), transparent 40%);
	mix-blend-mode: screen;
	animation: caustic 14s ease-in-out infinite alternate;
	pointer-events: none;
}

.hero__shade {
	background:
		linear-gradient(180deg, rgba(4, 11, 18, 0.28) 0%, rgba(4, 11, 18, 0.5) 38%, rgba(4, 11, 18, 0.92) 100%);
}

.hero__media img.is-broken {
	display: none;
}

.hero__content {
	position: relative;
	z-index: 1;
	max-width: 44rem;
	animation: rise 0.9s ease both;
}

.hero__logo {
	width: min(15.5rem, 58vw);
	margin-inline: auto;
	mix-blend-mode: lighten;
	filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
}

.hero__logo.is-broken {
	display: none;
}

.hero h1 {
	margin: 0 0 1rem;
}

.hero__tagline {
	font-family: var(--font-body);
	font-size: clamp(1.05rem, 2.4vw, 1.35rem);
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.01em;
	margin: 0 auto 1.5rem;
	max-width: 22rem;
	text-wrap: balance;
	color: var(--foam);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.times {
	background: var(--navy-800);
	border-block: 1px solid var(--line);
	padding: 1.75rem 0 2.25rem;
}

.times__grid {
	display: grid;
	gap: 1rem;
}

.times__card {
	padding: 1.15rem 1.2rem;
	border: 1px solid var(--line);
	border-top: 3px solid var(--teal);
	border-radius: var(--radius);
	background: rgba(7, 20, 31, 0.45);
}

.times__card--accent {
	border-color: rgba(40, 207, 159, 0.35);
	border-top-color: var(--coral);
	background: var(--teal-dim);
}

.times__label {
	margin: 0 0 0.35rem;
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--white);
}

.times__when,
.times__game,
.times__note {
	margin: 0;
	color: var(--foam-muted);
	font-size: 0.95rem;
}

.times__game {
	color: var(--foam);
	font-weight: 600;
	margin-bottom: 0.35rem;
}

.intro,
.about__blocks,
.location,
.videos,
.contact {
	padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.intro {
	background:
		radial-gradient(ellipse at 0% 0%, rgba(40, 207, 159, 0.08), transparent 46%),
		var(--navy-900);
}

.intro__grid,
.location__grid,
.contact__grid {
	display: grid;
	gap: clamp(1.75rem, 4vw, 3.5rem);
	align-items: center;
}

.intro__copy h2,
.location__copy h2,
.contact__intro h2,
.videos__header h2 {
	margin-bottom: 0.45em;
}

.intro__copy p,
.location__copy p,
.about__block p,
.contact__intro p {
	color: var(--foam-muted);
	max-width: 62ch;
}

.intro__copy p:first-of-type,
.intro__copy h2 + p {
	color: var(--foam);
}

.intro__copy .btn {
	margin-top: 0.5rem;
}

.intro__photo {
	margin: 0;
	border-radius: calc(var(--radius) + 0.35rem);
	overflow: hidden;
	box-shadow: var(--shadow);
	border: 1px solid var(--line);
}

.intro__photo img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.about {
	background: var(--navy-950);
}

.about__banner {
	position: relative;
	min-height: clamp(16rem, 42vw, 28rem);
	display: grid;
	place-items: end start;
	overflow: hidden;
}

.about__banner img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 60%;
}

.about__banner::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(4, 11, 18, 0.15), rgba(4, 11, 18, 0.82));
}

.about__banner-copy {
	position: relative;
	z-index: 1;
	padding: clamp(1.5rem, 5vw, 3.5rem) clamp(1.25rem, 5vw, 4rem);
}

.about__banner-copy h2 {
	margin: 0;
	font-size: clamp(2.4rem, 8vw, 5.25rem);
}

.about__blocks {
	display: grid;
	gap: clamp(1.5rem, 4vw, 2.75rem);
}

.about__block {
	display: grid;
	padding: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: calc(var(--radius) + 0.15rem);
	background: var(--navy-800);
	width: 100%;
	box-shadow: var(--shadow);
}

.about__media,
.about__gallery {
	margin: 0;
	min-width: 0;
	background: var(--navy-950);
}

.about__media {
	overflow: hidden;
}

.about__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.about__block:hover .about__media img {
	transform: scale(1.045);
}

.about__block--feature .about__media img {
	aspect-ratio: 4 / 5;
	object-position: center 35%;
}

.about__media--gear {
	display: flex;
	align-items: center;
	justify-content: center;
}

.about__media--gear img {
	aspect-ratio: 4 / 3;
	object-fit: contain;
	height: auto;
}

.about__block:hover .about__media--gear img {
	transform: none;
}

.about__gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.2rem;
}

.about__gallery .about__media img {
	aspect-ratio: 4 / 3;
}

.about__copy {
	padding: clamp(1.4rem, 3.5vw, 2.4rem);
}

.about__block--feature .about__copy {
	background:
		linear-gradient(135deg, rgba(40, 207, 159, 0.12), transparent 48%),
		var(--navy-800);
}

.about__index {
	margin: 0 0 0.4rem;
	font-family: var(--font-display);
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	color: var(--coral);
}

.about__block h3 {
	font-size: clamp(1.55rem, 3.2vw, 2.35rem);
	margin-bottom: 0.45em;
}

.location {
	background:
		radial-gradient(ellipse at 100% 0%, rgba(46, 130, 210, 0.12), transparent 40%),
		var(--navy-900);
}

.location__copy h3 {
	color: var(--teal);
	margin-top: 0.2rem;
}

.location__address {
	font-size: 1.05rem;
	color: var(--foam) !important;
}

.location__map {
	border-radius: calc(var(--radius) + 0.15rem);
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	min-height: 18rem;
	background: var(--navy-800);
}

.location__map iframe {
	width: 100%;
	height: 100%;
	min-height: 22rem;
	border: 0;
}

.videos {
	background: var(--navy-950);
}

.videos__header {
	margin-bottom: 2rem;
}

.videos__grid {
	display: grid;
	gap: 1.25rem;
}

.video-card {
	display: grid;
	color: inherit;
	text-decoration: none;
	background: var(--navy-800);
	border: 1px solid var(--line);
	border-radius: calc(var(--radius) + 0.15rem);
	overflow: hidden;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.video-card:hover {
	transform: translateY(-4px);
	border-color: rgba(40, 207, 159, 0.45);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
	color: inherit;
}

.video-card__media {
	position: relative;
	display: block;
}

.video-card__media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.video-card__play {
	position: absolute;
	inset: auto 1rem 1rem auto;
	width: 3.1rem;
	height: 3.1rem;
	border-radius: 50%;
	background: var(--coral);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.video-card__play::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 54%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 0 7px 12px;
	border-color: transparent transparent transparent var(--white);
	transform: translate(-50%, -50%);
}

.video-card__body {
	display: grid;
	gap: 0.25rem;
	padding: 1.1rem 1.15rem 1.25rem;
}

.video-card__body strong {
	font-family: var(--font-display);
	font-size: 1.15rem;
	letter-spacing: -0.02em;
	color: var(--white);
}

.video-card__body em {
	font-style: normal;
	color: var(--foam-muted);
	font-size: 0.95rem;
}

.community {
	padding: clamp(3.5rem, 8vw, 6.5rem) 0;
	background:
		radial-gradient(ellipse at 0% 40%, rgba(24, 119, 242, 0.14), transparent 46%),
		var(--navy-950);
}

.community__grid {
	display: grid;
	gap: clamp(1.75rem, 4vw, 3.5rem);
	align-items: center;
}

.community__copy h2 {
	margin-bottom: 0.45em;
}

.community__copy p {
	color: var(--foam-muted);
	max-width: 62ch;
}

.community__copy h2 + p {
	color: var(--foam);
}

.community__copy .btn {
	margin-top: 0.35rem;
}

.community__widget {
	display: grid;
	align-content: start;
	gap: 0.35rem;
	padding: clamp(1.3rem, 3vw, 2rem);
	color: inherit;
	text-decoration: none;
	background: var(--navy-800);
	border: 1px solid var(--line);
	border-top: 3px solid #1877f2;
	border-radius: calc(var(--radius) + 0.15rem);
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.community__widget:hover {
	transform: translateY(-4px);
	border-color: rgba(75, 155, 255, 0.55);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
	color: inherit;
	text-decoration: none;
}

.community__network {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0 0 0.7rem;
	color: #4b9bff;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.community__network svg {
	display: block;
}

.community__widget h3 {
	margin-bottom: 0.35em;
}

.community__widget > p {
	color: var(--foam-muted);
	margin-bottom: 1.15rem;
}

.community__widget ul {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}

.community__widget li {
	position: relative;
	padding-left: 1.15rem;
	color: var(--foam-muted);
	font-size: 0.98rem;
}

.community__widget li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: var(--teal);
}

.community__widget:hover .btn--ghost {
	border-color: var(--teal);
	color: var(--teal-bright);
}

.contact {
	background:
		radial-gradient(ellipse at 0% 100%, rgba(255, 107, 87, 0.08), transparent 42%),
		var(--navy-900);
}

.contact__intro h3 {
	font-family: var(--font-body);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.35;
	color: var(--foam);
	font-size: clamp(1.15rem, 2vw, 1.45rem);
	max-width: 28ch;
}

.contact__address {
	color: var(--foam) !important;
}

.contact__shark {
	width: 7.5rem;
	margin-top: 1.5rem;
	mix-blend-mode: lighten;
	opacity: 0.9;
}

.contact-form {
	display: grid;
	gap: 1rem;
	padding: clamp(1.3rem, 3vw, 2rem);
	background: var(--navy-800);
	border: 1px solid var(--line);
	border-radius: calc(var(--radius) + 0.25rem);
	box-shadow: var(--shadow);
}

.contact-form__row {
	display: grid;
	gap: 0.4rem;
}

.contact-form label {
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--foam-muted);
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 0.85rem;
	background: rgba(4, 11, 18, 0.55);
	color: var(--foam);
	font: inherit;
	padding: 0.85rem 0.95rem;
}

.contact-form textarea {
	min-height: 9rem;
	resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: rgba(158, 196, 184, 0.7);
}

.contact-form input:-webkit-autofill,
.contact-form textarea:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px #0b1e2e inset;
	-webkit-text-fill-color: var(--foam);
	caret-color: var(--foam);
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--teal);
	box-shadow: 0 0 0 4px rgba(40, 207, 159, 0.18);
}

.contact-form .btn {
	width: 100%;
}

.contact-form .btn.is-sending .btn__label {
	opacity: 0.7;
}

.btn__spinner {
	display: none;
	width: 1rem;
	height: 1rem;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: var(--white);
	border-radius: 50%;
	animation: spin 0.7s linear infinite;
}

.contact-form .btn.is-sending .btn__spinner {
	display: inline-block;
}

.contact__msg {
	display: none;
	margin: 0;
	padding: 0.85rem 1rem;
	border-radius: 0.85rem;
	background: var(--teal-dim);
	color: var(--teal-bright);
	font-weight: 600;
}

.contact__msg.is-visible {
	display: block;
}

.contact__msg.is-error {
	background: rgba(255, 107, 87, 0.14);
	color: #ffb4aa;
}

.site-footer {
	border-top: 1px solid var(--line);
	padding: 1.75rem 0 2.25rem;
	background: var(--navy-950);
	color: var(--foam-muted);
	font-size: 0.95rem;
}

.site-footer__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	align-items: end;
}

.site-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	align-items: center;
}

.site-footer__links a,
.back-to-top {
	color: var(--foam);
	text-decoration: none;
	font-weight: 600;
}

.site-footer__links a:hover,
.back-to-top:hover {
	color: var(--teal-bright);
}

.video-dialog {
	position: relative;
	width: min(96vw, 64rem);
	max-width: 64rem;
	margin: auto;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 1rem;
	background: var(--navy-950);
	color: var(--foam);
}

.video-dialog form {
	margin: 0;
}

.video-dialog::backdrop {
	background: rgba(4, 11, 18, 0.82);
}

.video-dialog__close {
	position: absolute;
	top: 0.65rem;
	right: 0.65rem;
	z-index: 2;
	width: 2.5rem;
	height: 2.5rem;
	border: 0;
	border-radius: 999px;
	background: rgba(4, 11, 18, 0.75);
	color: var(--white);
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
}

.video-dialog__frame {
	aspect-ratio: 16 / 9;
	background: #000;
}

.video-dialog__frame iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.js .reveal {
	opacity: 0;
	transform: translateY(18px);
}

.js .reveal.is-in {
	opacity: 1;
	transform: none;
	transition: opacity 0.7s ease, transform 0.7s ease;
}

body.nav-open {
	overflow: hidden;
}

@keyframes rise {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes caustic {
	from {
		transform: translate3d(-2%, -1%, 0) scale(1.05);
		opacity: 0.85;
	}
	to {
		transform: translate3d(3%, 2%, 0) scale(1.12);
		opacity: 1;
	}
}

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

@media (max-width: 799px) {
	.nav-toggle {
		display: none;
	}

	.js .nav-toggle {
		display: grid;
	}

	.js .site-nav {
		position: absolute;
		top: var(--header-h);
		left: 0;
		right: 0;
		z-index: 60;
		background: rgba(4, 11, 18, 0.97);
		border-bottom: 1px solid var(--line);
		padding: 0.75rem 1rem 1.25rem;
		transform: translateY(-0.5rem);
		opacity: 0;
		pointer-events: none;
		visibility: hidden;
		transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	}

	.js .site-nav.is-open {
		opacity: 1;
		transform: none;
		pointer-events: auto;
		visibility: visible;
	}

	.site-nav ul {
		flex-direction: column;
	}

	.site-nav a {
		padding: 0.85rem 1rem;
		font-size: 1.05rem;
	}
}

@media (min-width: 600px) {
	.times__grid {
		grid-template-columns: 1fr 1fr;
	}

	.videos__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 800px) {
	.nav-toggle {
		display: none;
	}

	.intro__grid,
	.location__grid,
	.community__grid,
	.contact__grid {
		grid-template-columns: 1.05fr 0.95fr;
	}

	.contact__grid {
		align-items: start;
	}

	.about__block--split,
	.about__block--play {
		align-items: stretch;
	}

	.about__block--split .about__copy {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.about__block--feature {
		grid-template-columns: 0.9fr 1.1fr;
	}

	.about__block--feature .about__media {
		min-height: 26rem;
	}

	.about__block--feature .about__media img,
	.about__block--split .about__media:not(.about__media--gear) img {
		aspect-ratio: auto;
		height: 100%;
		min-height: 100%;
	}

	.about__block--flip {
		grid-template-columns: 1.05fr 0.95fr;
	}

	.about__block--flip .about__copy {
		order: -1;
	}

	.about__block--play {
		grid-template-columns: 1.15fr 0.85fr;
	}

	.about__gallery {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 1fr;
		min-height: 100%;
	}

	.about__gallery .about__media,
	.about__gallery .about__media img {
		height: 100%;
		min-height: 12rem;
	}

	.about__gallery .about__media img {
		aspect-ratio: auto;
	}
}

@media (min-width: 960px) {
	.videos__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.times__grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.1rem;
	}

	.about__block--feature {
		grid-template-columns: 1fr 1fr;
	}

	.about__copy {
		padding: 2.4rem 2.6rem;
	}
}


@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.hero__caustic,
	.hero__content,
	.btn__spinner {
		animation: none;
	}

	.js .reveal,
	.js .reveal.is-in,
	.video-card,
	.community__widget,
	.btn,
	.about__media img {
		transition: none;
		transform: none;
		opacity: 1;
	}
}
