/* TNT lab — Tattoo Parlour clone */

:root {
	--tnt-gold: #e6b75d;
	--tnt-stout: #1b1b1b;
	--tnt-foreground: #f4f4f4;
	--tnt-pink: #e02392;
	--tnt-neon: #00e5ff;
}

/* Anchor fallback when Lenis is off (CDN fail, reduced motion) — native smooth scroll */
html {
	scroll-behavior: smooth;
}

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

/* Lenis drives wheel + hash clicks; avoid fighting native smooth scroll */
html.tnt-has-lenis {
	scroll-behavior: auto;
}

body,
p,
.wp-block-paragraph {
	font-family: 'Montserrat', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.wp-block-heading,
.wp-block-navigation,
.wp-block-navigation-item__content {
	font-family: soleil, 'Soleil', sans-serif !important;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.wp-block-navigation-item__content {
	text-transform: uppercase;
}

.tnt-scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 4px;
	width: 0;
	z-index: 99999;
	overflow: hidden;
	background-color: rgba(27, 27, 27, 0.35);
	pointer-events: none;
	background-image: linear-gradient(90deg, var(--tnt-pink), var(--tnt-gold), var(--tnt-neon));
	background-size: 100vw 100%;
	background-repeat: no-repeat;
	background-position: left center;
	transition: width 0.12s linear;
}

/* Transparent fixed header (front page) — xfer / Toby pattern */
body.tnt-is-front-page {
	scroll-padding-top: calc(var(--wp-admin--admin-bar--height, 0px) + 5rem);
}

body.tnt-is-front-page header.wp-block-template-part.tnt-header-float {
	position: fixed;
	top: var(--wp-admin--admin-bar--height, 0);
	left: 0;
	right: 0;
	width: 100%;
	max-width: 100vw;
	box-sizing: border-box;
	z-index: 200;
	background: transparent;
	border-bottom: 1px solid transparent;
	/* Vertical only — horizontal inset lives on .tnt-header-inner so the grid centers on the viewport */
	padding: 1rem 0;
	transition:
		transform 0.35s ease,
		background-color 0.35s ease,
		border-color 0.35s ease,
		backdrop-filter 0.35s ease,
		box-shadow 0.35s ease;
}

body.tnt-is-front-page header.tnt-header-float.tnt-header-hidden {
	transform: translateY(-100%);
}

body.tnt-is-front-page header.tnt-header-float.is-scrolled {
	background: rgba(27, 27, 27, 0.94);
	backdrop-filter: blur(10px);
	border-bottom-color: rgba(230, 183, 93, 0.25);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

body.tnt-is-front-page header.tnt-header-float:not(.is-scrolled) .tnt-header-menu a,
body.tnt-is-front-page header.tnt-header-float:not(.is-scrolled) .wp-block-navigation-item__content,
body.tnt-is-front-page header.tnt-header-float:not(.is-scrolled) .wp-block-social-link-anchor {
	color: var(--tnt-foreground) !important;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Header: side panel | centered-logo band (nav | logo | nav) | social */
header.wp-block-template-part .tnt-header-inner {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	margin-inline: 0;
	padding-inline: clamp(1rem, 3vw, 2.5rem);
}

/*
 * Header row — 5 tracks (no absolute logo):
 * 10% min 100px | 30% nav L | 1fr logo (centered) | 30% nav R | 10% min 100px social
 */
.tnt-header-row {
	display: grid;
	grid-template-columns:
		minmax(100px, 10%)
		minmax(0, 30%)
		minmax(0, 1fr)
		minmax(0, 30%)
		minmax(100px, 10%);
	align-items: center;
	column-gap: clamp(0.5rem, 1.25vw, 1.25rem);
	width: 100%;
	min-height: 64px;
}

.tnt-side-panel-toggle {
	grid-column: 1;
	grid-row: 1;
	justify-self: start;
	align-self: center;
	display: flex;
	align-items: center;
	appearance: none;
	border: 0;
	background: transparent;
	padding: 0.35rem;
	cursor: pointer;
	line-height: 0;
	height: 100%;
	min-height: 44px;
}

/* Side-panel toggle — 3×3 cube grid: assemble, then bob + wind (CSS only, no timers) */
.tnt-side-panel-icon {
	display: block;
	width: 24px;
	height: 24px;
	line-height: 0;
	animation: tnt-cube-wind 13s ease-in-out 1.05s infinite;
	will-change: transform;
}

.tnt-cube-grid {
	display: grid;
	grid-template-columns: repeat(3, 6px);
	gap: 3px;
	width: 24px;
	will-change: transform;
	animation: tnt-cube-bob 3.6s ease-in-out 1.05s infinite;
}

.tnt-cube-grid span {
	display: block;
	width: 6px;
	height: 6px;
	background: var(--tnt-pink, #e02392);
	opacity: 0.9;
	animation:
		tnt-cube-assemble 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards,
		tnt-cube-color-cycle 24s ease-in-out 1.05s infinite;
}

.tnt-cube-grid span:nth-child(1) {
	animation-delay: 0.02s, 1.05s;
	--tnt-cube-ox: -7px;
	--tnt-cube-oy: -5px;
}
.tnt-cube-grid span:nth-child(2) {
	animation-delay: 0.07s, 3.72s;
	--tnt-cube-ox: 0;
	--tnt-cube-oy: -8px;
}
.tnt-cube-grid span:nth-child(3) {
	animation-delay: 0.12s, 6.39s;
	--tnt-cube-ox: 7px;
	--tnt-cube-oy: -4px;
}
.tnt-cube-grid span:nth-child(4) {
	animation-delay: 0.17s, 9.06s;
	--tnt-cube-ox: -8px;
	--tnt-cube-oy: 0;
}
.tnt-cube-grid span:nth-child(5) {
	animation-delay: 0.22s, 11.73s;
	--tnt-cube-ox: 0;
	--tnt-cube-oy: 0;
}
.tnt-cube-grid span:nth-child(6) {
	animation-delay: 0.27s, 14.4s;
	--tnt-cube-ox: 8px;
	--tnt-cube-oy: 1px;
}
.tnt-cube-grid span:nth-child(7) {
	animation-delay: 0.32s, 17.07s;
	--tnt-cube-ox: -6px;
	--tnt-cube-oy: 6px;
}
.tnt-cube-grid span:nth-child(8) {
	animation-delay: 0.37s, 19.74s;
	--tnt-cube-ox: 1px;
	--tnt-cube-oy: 7px;
}
.tnt-cube-grid span:nth-child(9) {
	animation-delay: 0.42s, 22.41s;
	--tnt-cube-ox: 7px;
	--tnt-cube-oy: 5px;
}

/* Same hues as .tnt-scroll-progress: pink → gold → neon */
@keyframes tnt-cube-color-cycle {
	0%, 100% {
		background-color: var(--tnt-pink, #e02392);
	}
	33% {
		background-color: var(--tnt-gold, #e6b75d);
	}
	66% {
		background-color: var(--tnt-neon, #00e5ff);
	}
}

@keyframes tnt-cube-assemble {
	from {
		opacity: 0;
		transform: scale(0.15) translate(var(--tnt-cube-ox, 0), var(--tnt-cube-oy, 0));
	}
	to {
		opacity: 0.85;
		transform: scale(1) translate(0, 0);
	}
}

@keyframes tnt-cube-bob {
	0%, 100% { transform: translateY(0); }
	35% { transform: translateY(-2px); }
	55% { transform: translateY(1px); }
	72% { transform: translateY(-3px); }
}

@keyframes tnt-cube-wind {
	0%, 100% { transform: translateX(0); }
	18% { transform: translateX(2px); }
	34% { transform: translateX(-1px); }
	52% { transform: translateX(3px); }
	68% { transform: translateX(0); }
	84% { transform: translateX(-2px); }
}

.tnt-ig-thumb--placeholder {
	display: block;
	aspect-ratio: 1;
	background: linear-gradient(135deg, var(--tnt-pink, #e02392), var(--tnt-gold, #e6b75d), var(--tnt-neon, #00e5ff));
	text-decoration: none;
}

.tnt-ig-thumb-ph {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 72px;
	padding: 0.35rem;
	font-family: soleil, 'Soleil', sans-serif;
	font-size: 9px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--tnt-stout, #1b1b1b);
}

@media (prefers-reduced-motion: reduce) {
	.tnt-cube-grid,
	.tnt-side-panel-icon {
		animation: none;
	}
	.tnt-cube-grid span {
		animation: none;
		opacity: 0.9;
		background: var(--tnt-gold, #e6b75d);
	}
	body.tnt-side-panel-open .tnt-side-panel-quirk {
		animation: none;
		opacity: 1;
		transform: none;
	}
}

body.tnt-side-panel-open,
html.tnt-side-panel-open {
	overflow: hidden;
}

.tnt-side-panel-backdrop {
	position: fixed;
	inset: 0;
	z-index: 99980;
	background: rgba(12, 12, 12, 0.62);
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}

body.tnt-side-panel-open .tnt-side-panel-backdrop {
	opacity: 1;
	pointer-events: auto;
}

.tnt-side-panel {
	position: fixed;
	top: 0;
	left: 0;
	right: auto;
	bottom: 0;
	z-index: 99990;
	width: min(360px, 92vw);
	height: 100vh;
	height: 100dvh;
	max-height: 100dvh;
	padding: 4.5rem 1.5rem 2rem;
	background: var(--tnt-stout, #1b1b1b);
	color: var(--tnt-foreground, #f4f4f4);
	box-shadow: 12px 0 40px rgba(0, 0, 0, 0.4);
	transform: translateX(-100%);
	opacity: 0.96;
	transition:
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.35s ease;
	overflow-y: auto;
	visibility: hidden;
}

body.tnt-side-panel-open .tnt-side-panel {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}

/* Motion.dev drives open/close when JS module loads (see side-panel.js) */
html.tnt-has-motion-panel .tnt-side-panel,
html.tnt-has-motion-panel .tnt-side-panel-backdrop {
	transition: none;
}

html.tnt-has-motion-panel body.tnt-side-panel-open .tnt-side-panel {
	transform: none;
}

@keyframes tnt-side-panel-quirk-in {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.tnt-side-panel-quirk {
	opacity: 0;
	transform: translateY(14px);
}

body.tnt-side-panel-open .tnt-side-panel-quirk {
	animation: tnt-side-panel-quirk-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.tnt-side-panel-inner {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.tnt-side-panel-kicker {
	margin: 0;
	font-family: soleil, 'Soleil', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--tnt-gold, #e6b75d);
}

.tnt-side-panel-ig-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
}

.tnt-side-panel-ig-grid a {
	display: block;
	overflow: hidden;
	border-radius: 2px;
	line-height: 0;
}

.tnt-side-panel-ig-grid img {
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
	display: block;
	transition: transform 0.25s ease;
}

.tnt-side-panel-ig-grid a:hover img,
.tnt-side-panel-ig-grid a:focus-visible img {
	transform: scale(1.04);
}

.tnt-side-panel-contact {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
}

.tnt-side-panel-contact a {
	color: var(--tnt-cream, #cec2ab);
	text-decoration: none;
}

.tnt-side-panel-contact a:hover,
.tnt-side-panel-contact a:focus-visible {
	color: var(--tnt-gold, #e6b75d);
}

.tnt-side-panel-cta {
	margin: 0;
}

.tnt-side-panel-cta-btn {
	display: inline-block;
	padding: 0.65rem 1.35rem;
	font-family: soleil, 'Soleil', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--tnt-stout, #1b1b1b);
	background: var(--tnt-gold, #e6b75d);
	border-radius: 2px;
}

.tnt-side-panel-quirk {
	margin: 0.5rem 0 0;
	text-align: center;
}

.tnt-side-panel-quirk img {
	max-width: 140px;
	height: auto;
	margin: 0 auto;
	opacity: 0.9;
}

.tnt-side-panel-quirk-cap {
	margin-top: 0.35rem;
	font-size: 11px;
	font-style: italic;
	letter-spacing: 0.04em;
	color: var(--tnt-taupe, #665c51);
}

/* Mobile-only panel blocks (full nav + social); desktop uses header bar */
.tnt-side-panel-nav,
.tnt-side-panel-social {
	display: none;
}

.tnt-side-panel-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.tnt-side-panel-menu a {
	font-family: soleil, 'Soleil', sans-serif;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--tnt-foreground, #f4f4f4);
}

.tnt-side-panel-menu a:hover,
.tnt-side-panel-menu a:focus-visible {
	color: var(--tnt-gold, #e6b75d);
}

.tnt-side-panel-social {
	flex-wrap: wrap;
	gap: 0.75rem !important;
	margin: 0 !important;
	padding: 0;
}

.tnt-side-panel-social .wp-block-social-link {
	background: transparent !important;
}

.tnt-header-nav {
	display: flex;
	align-items: center;
	align-self: center;
	min-width: 0;
	min-height: 44px;
}

.tnt-header-nav-left {
	grid-column: 2;
	grid-row: 1;
	justify-content: flex-end;
	justify-self: stretch;
	padding-right: clamp(0.5rem, 2vw, 2rem);
}

.tnt-header-nav-right {
	grid-column: 4;
	grid-row: 1;
	justify-content: flex-start;
	justify-self: stretch;
	padding-left: clamp(0.5rem, 2vw, 2rem);
}

.tnt-header-logo-wrap {
	grid-column: 3;
	grid-row: 1;
	justify-self: center;
	align-self: center;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
}

.tnt-header-row > .wp-block-social-links.tnt-header-social,
.tnt-header-row > .tnt-header-social {
	grid-column: 5;
	grid-row: 1;
	justify-self: end;
	align-self: center;
	display: flex;
	align-items: center;
	min-height: 44px;
}

.tnt-header-logo-link {
	pointer-events: auto;
}

.tnt-header-logo-link {
	display: block;
	line-height: 0;
}

.tnt-header-logo-img {
	max-height: 52px;
	width: auto;
	height: auto;
	display: block;
}

/* Generic mountain logo (black on white PNG) — one file; invert on dark bands only */
.tnt-brand-logo--on-dark img,
.tnt-brand-logo--on-dark.tnt-brand-logo,
body.tnt-is-front-page header.tnt-header-float:not(.is-scrolled) .tnt-header-logo-img.tnt-brand-logo {
	filter: invert(1);
}

.tnt-site-footer .tnt-brand-logo--on-dark img {
	filter: invert(1);
}

/* #45 — logo inversion spotlight (toggle: filter tnt_enable_logo_cursor_spotlight) */
.tnt-logo-cursor-spotlight {
	position: fixed;
	top: 0;
	left: 0;
	width: 49px;
	height: 49px;
	border-radius: 50%;
	pointer-events: none;
	z-index: 99999;
	mix-blend-mode: difference;
	background: #fff;
	opacity: 0;
	transition: opacity 0.32s ease-out;
	box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0.25);
	will-change: transform, opacity;
}
.tnt-logo-cursor-spotlight.is-visible {
	opacity: 1;
}
.tnt-logo-cursor-spotlight.is-fading {
	opacity: 0;
}
.tnt-logo-cursor-active {
	cursor: none;
}

.tnt-header-menu {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 1.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tnt-header-menu a {
	font-family: soleil, 'Soleil', sans-serif !important;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	color: inherit;
}

.tnt-header-menu a:hover,
.tnt-header-menu a:focus-visible {
	color: var(--tnt-gold);
}

.tnt-header-social {
	flex: 0 0 auto;
	margin: 0 !important;
	gap: 0.75rem !important;
}

.tnt-header-social .wp-block-social-link {
	background: transparent !important;
}

.tnt-header-social .wp-social-link a,
.tnt-header-social .wp-block-social-link-anchor {
	color: var(--tnt-foreground) !important;
	background: transparent !important;
	padding: 0.25rem;
}

.tnt-header-social .wp-social-link a:hover,
.tnt-header-social .wp-block-social-link-anchor:hover {
	color: var(--tnt-gold) !important;
}

/* Hero */
.tnt-hero-stage {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	margin-block-start: 0 !important;
	margin-top: 0 !important;
}

.tnt-hero-stage > * {
	margin-block-start: 0 !important;
}

body.tnt-is-front-page .tnt-hero-stage .wp-block-cover.tnt-hero-cover.alignfull,
.tnt-hero-stage .wp-block-cover.tnt-hero-cover.alignfull {
	margin-block-start: 0 !important;
	margin-top: 0 !important;
}

.tnt-hero-video-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.tnt-hero-video-bg .tnt-hero-yt-frame {
	opacity: 0;
	transition: opacity 0.45s ease;
}

.tnt-hero-stage.is-yt-ready .tnt-hero-video-bg {
	background-image: none !important;
}

.tnt-hero-stage.is-yt-ready .tnt-hero-yt-frame {
	opacity: 1;
}

.tnt-hero-video-bg iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw;
	min-height: 100vh;
	min-width: 177.78vh;
	transform: translate(-50%, -50%);
	border: 0;
}

.tnt-hero-cover {
	position: relative;
	z-index: 1;
	background: transparent !important;
}

.tnt-hero-cover .wp-block-cover__image-background {
	display: none;
}

.tnt-hero-emblem img {
	max-width: min(400px, 72vw);
	height: auto;
	margin: 0 auto;
	display: block;
}

.tnt-hero-inner {
	min-height: 72vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

/* DISCOVER cue — The Icon Block (wordpress-arrowDown) + label */
.tnt-hero-stage > .tnt-discover-cue {
	position: absolute;
	left: 50%;
	bottom: 2.5rem;
	z-index: 5;
	transform: translateX(-50%);
	margin: 0 !important;
	transition: transform 0.45s ease;
}

.tnt-discover-cue {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
	text-align: center;
}

.tnt-discover-label {
	margin: 0;
	font-family: soleil, 'Soleil', sans-serif !important;
	font-size: 11px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	line-height: 1.2;
}

.tnt-discover-label a {
	color: transparent;
	-webkit-text-fill-color: transparent;
	text-decoration: none;
	text-shadow:
		0 0 10px rgba(255, 255, 255, 0.55),
		0 0 22px rgba(230, 183, 93, 0.4);
	transition: color 0.35s ease, -webkit-text-fill-color 0.35s ease;
}

.tnt-discover-cue .wp-block-outermost-icon-block {
	line-height: 0;
	width: 28px;
	margin-inline: auto;
}

.tnt-discover-cue .wp-block-outermost-icon-block a,
.tnt-discover-cue .wp-block-outermost-icon-block .icon-container {
	display: block;
	filter: drop-shadow(0 0 8px rgba(230, 183, 93, 0.55));
	transition: filter 0.35s ease, transform 0.35s ease;
}

.tnt-hero-stage .tnt-discover-cue:hover .wp-block-outermost-icon-block a,
.tnt-hero-stage .tnt-discover-cue:focus-within .wp-block-outermost-icon-block a {
	filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.75));
}

.tnt-hero-stage .tnt-discover-cue:hover,
.tnt-hero-stage .tnt-discover-cue:focus-within {
	transform: translateX(-50%) translateY(-8px);
}

.tnt-hero-stage .tnt-discover-cue:hover .tnt-discover-label a,
.tnt-hero-stage .tnt-discover-cue:focus-within .tnt-discover-label a {
	color: #fff;
	-webkit-text-fill-color: #fff;
}

@keyframes tnt-discover-bounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(8px);
	}
}

.tnt-hero-stage .tnt-discover-cue .wp-block-outermost-icon-block {
	animation: tnt-discover-bounce 2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
	.tnt-hero-stage .tnt-discover-cue .wp-block-outermost-icon-block {
		animation: none;
	}
}

/* Intro (dark) */
.tnt-intro .wp-block-cover__image-background {
	object-fit: cover;
}

.tnt-gold-rule {
	width: 50px !important;
	margin: 1.5rem auto !important;
	border-width: 3px;
}

.tnt-intro-lead {
	line-height: 1.65;
}

/* Steps */
.tnt-step-icon img {
	width: 140px;
	height: auto;
}

/* Steps — Soleil titles (pattern sets vars; enforce for TT5 overrides) */
.tnt-step-title,
.tnt-step-title.has-tnt-stout-color {
	font-family: soleil, 'Soleil', sans-serif !important;
	font-size: 24px !important;
	font-weight: 600 !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
	line-height: 1.25 !important;
}

.tnt-step-card {
	text-align: center;
}

.tnt-steps-columns {
	gap: 2rem !important;
}

/* Services — 3×2 grid, 1:1 panels (Hares: three wvc-col-4 per row) */
.tnt-services-stage {
	min-height: 0;
}

.tnt-services-stage > .wp-block-cover__image-background {
	object-fit: cover;
}

.tnt-services-stage > .wp-block-cover__background {
	/* Near-black stout wash over inking row (demo parity) */
	background-color: var(--tnt-stout, #1b1b1b) !important;
	opacity: 0.88 !important;
	backdrop-filter: none;
}

.tnt-services-stage > .wp-block-cover__inner-container {
	width: 100%;
	max-width: none;
	padding: 0;
	margin: 0;
}

.tnt-service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 0;
	row-gap: 0;
	column-gap: 0;
	width: 100%;
	max-width: 100vw;
	margin: 0;
	align-items: stretch;
}

/* Photo panels stay in wp:html; display:contents promotes inner .tnt-svc-photo to grid cells */
.tnt-service-grid > .wp-block-html {
	display: contents;
	margin: 0 !important;
}

/* TT5 is-layout-flow adds margin-block-start to 2nd+ children (photos are grid items, not groups) */
.tnt-service-grid.is-layout-flow > :where(:not(.alignleft):not(.alignright):not(.aligncenter)),
.tnt-service-grid > .wp-block-group,
.tnt-service-grid .tnt-svc-photo {
	margin-block: 0 !important;
}

.tnt-svc-panel {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	aspect-ratio: 1 / 1;
	min-height: 0;
	overflow: hidden;
}

.tnt-svc-photo {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.tnt-svc-copy {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2.5rem 1.75rem;
	color: var(--tnt-foreground);
}

.tnt-svc-linea-icon,
.tnt-svc-linea-icon img {
	width: 80px;
	height: auto;
	margin: 0 0 1.25rem;
	filter: brightness(0) saturate(100%) invert(77%) sepia(34%) saturate(638%) hue-rotate(358deg) brightness(95%) contrast(89%);
}

.tnt-svc-linea-icon {
	margin-left: auto;
	margin-right: auto;
}

.tnt-svc-title {
	font-family: soleil, 'Soleil', sans-serif !important;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--tnt-gold);
	margin: 0 0 1rem;
	line-height: 1.25;
}

.tnt-svc-desc {
	font-family: 'Montserrat', sans-serif !important;
	font-size: 15px;
	line-height: 1.6;
	margin: 0 0 1.5rem;
	max-width: 280px;
}

.tnt-svc-copy .wp-block-buttons {
	width: 100%;
}

.tnt-svc-copy .wp-block-button {
	margin: 0;
}

/* Hares buttons — EBI (match xfer books: flex link + inline-flex icon span + sized svg) */
.wp-block-button[class*='has-icon__'] .wp-block-button__link,
.tnt-btn-hares-alt2 .wp-block-button__link,
.tnt-btn-hares-alt .wp-block-button__link {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 0.45em;
	box-sizing: border-box;
	font-family: soleil, 'Soleil', sans-serif !important;
	font-weight: 700 !important;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 0;
	transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.wp-block-button[class*='has-icon__'] .wp-block-button__link .wp-block-button__link-icon,
.tnt-btn-hares-alt2 .wp-block-button__link-icon {
	display: inline-flex !important;
	align-items: center;
	flex-shrink: 0;
	line-height: 0;
}

.wp-block-button.has-icon__arrow-right .wp-block-button__link-icon svg,
.tnt-btn-hares-alt2 .wp-block-button__link-icon svg {
	display: block;
	width: 1em;
	height: 0.7em;
	fill: currentColor;
	color: currentColor;
}

.wp-block-button.has-icon__arrow-right .wp-block-button__link-icon svg polygon {
	fill: currentColor;
}

/* alt2 — services READ MORE: outline + arrow (hares_button_alt2) */
.tnt-btn-hares-alt2 .wp-block-button__link {
	font-size: 11px !important;
	padding: 0.65rem 1.25rem !important;
	color: var(--tnt-gold, #e6b75d) !important;
	background: transparent !important;
	border: 1px solid var(--tnt-gold, #e6b75d) !important;
}

.tnt-btn-hares-alt2 .wp-block-button__link:hover .wp-block-button__link-icon,
.tnt-btn-hares-alt2 .wp-block-button__link:focus-visible .wp-block-button__link-icon {
	transform: translateX(0.15em);
}

.tnt-btn-hares-alt2 .wp-block-button__link-icon {
	transition: transform 0.3s ease;
}

.tnt-btn-hares-alt2 .wp-block-button__link:hover,
.tnt-btn-hares-alt2 .wp-block-button__link:focus-visible {
	color: var(--tnt-stout, #1b1b1b) !important;
	background: var(--tnt-gold, #e6b75d) !important;
	border-color: var(--tnt-gold, #e6b75d) !important;
}

/* alt — filled gold (hares_button_alt) */
.tnt-btn-hares-alt .wp-block-button__link {
	font-size: 12px !important;
	padding: 0.65rem 1.75rem !important;
	color: var(--tnt-stout, #1b1b1b) !important;
	background: var(--tnt-gold, #e6b75d) !important;
	border: 2px solid var(--tnt-gold, #e6b75d) !important;
}

.tnt-btn-hares-alt .wp-block-button__link:hover,
.tnt-btn-hares-alt .wp-block-button__link:focus-visible {
	filter: brightness(0.95);
}

.tnt-news-events-cta,
.tnt-our-work-cta {
	margin-top: var(--wp--preset--spacing--60, 3rem);
}

@media (max-width: 781px) {
	.tnt-header-row {
		grid-template-columns: minmax(100px, 10%) minmax(0, 1fr) minmax(100px, 10%);
	}

	.tnt-header-nav-left,
	.tnt-header-nav-right,
	.tnt-header-row > .wp-block-social-links.tnt-header-social,
	.tnt-header-row > .tnt-header-social {
		display: none !important;
	}

	.tnt-side-panel-toggle {
		grid-column: 1;
	}

	.tnt-header-logo-wrap {
		grid-column: 2;
	}

	.tnt-side-panel-nav,
	.tnt-side-panel-social {
		display: flex;
	}

	.tnt-service-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}
}

/* Hot cover zoom (also in Code Snippets; kept in theme so hover works if snippets inactive) */
.tnt-hot-cover {
	overflow: hidden;
}

.tnt-hot-cover .wp-block-cover__image-background,
.tnt-hot-cover .wp-block-post-featured-image img,
.tnt-hot-cover img {
	transition: transform 0.65s ease;
	will-change: transform;
}

.tnt-hot-cover:hover .wp-block-cover__image-background,
.tnt-hot-cover:hover .wp-block-post-featured-image img,
.tnt-hot-cover:hover img {
	transform: scale(1.08);
}

.tnt-intro-logo img {
	width: auto !important;
	max-width: min(520px, 92vw);
	height: auto;
}

/* Artists section — textured cover, intro band, wide grid */
.tnt-artists-section .wp-block-cover__image-background {
	object-fit: cover;
}

.tnt-artists-intro {
	text-align: center;
	margin-bottom: var(--wp--preset--spacing--60, 3rem);
}

.tnt-artists-heading {
	margin: 0 auto 1.25rem;
}

.tnt-artists-heading img {
	width: 250px !important;
	max-width: 100%;
	height: auto;
}

.tnt-artists-intro-lead {
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
}

.tnt-artists-intro-rule {
	margin: 1.5rem auto 0 !important;
	width: 50px !important;
	border-bottom-width: 3px !important;
}

.tnt-artists-section > .wp-block-cover__inner-container,
.tnt-our-work-section > .wp-block-cover__inner-container {
	width: 100%;
	max-width: min(var(--wp--style--global--wide-size, 1920px), 100%);
	margin-inline: auto;
	padding-inline: clamp(1rem, 3vw, 2.5rem);
	box-sizing: border-box;
}

.tnt-artists-inner {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.tnt-our-work-inner {
	width: 100%;
	max-width: 100%;
	margin-inline: auto;
}

.tnt-artists-grid.wp-block-post-template-is-layout-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: var(--tnt-artists-grid-gap, 1.25rem) !important;
}

.tnt-artists-grid {
	gap: var(--tnt-artists-grid-gap, 1.25rem) !important;
}

.tnt-artists-grid > li {
	list-style: none;
	margin: 0;
}

.tnt-artist-tile {
	position: relative;
	min-height: unset !important;
}

.tnt-artist-tile .wp-block-cover__image-background {
	object-fit: cover;
}

.tnt-artist-tile .wp-block-cover__link {
	position: absolute;
	inset: 0;
	z-index: 2;
}

.tnt-artist-tile .wp-block-cover__inner-container {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100%;
	padding: 1.25rem;
	text-align: center;
	pointer-events: none;
}

.tnt-artist-tile .tnt-artist-name,
.tnt-artist-tile .tnt-artist-name a {
	margin: 0;
	color: #fff !important;
	font-family: soleil, 'Soleil', sans-serif !important;
	font-size: 24px !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.06em !important;
	font-style: normal !important;
}

.tnt-artist-tile .tnt-artist-tagline {
	margin: 0.5rem 0 0;
	color: #fff !important;
	opacity: 0.95;
	font-family: soleil, 'Soleil', sans-serif !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	font-style: normal !important;
	text-transform: uppercase !important;
	letter-spacing: 0.14em !important;
	line-height: 1.4 !important;
	transition: letter-spacing 0.25s ease, opacity 0.25s ease;
}

.tnt-artist-tile .tnt-artist-tagline p {
	margin: 0;
}

.tnt-artist-tile .tnt-artist-tagline::after {
	content: '→';
	display: inline-block;
	margin-left: 0.35em;
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.tnt-artist-tile:hover .tnt-artist-tagline::after,
.tnt-artist-tile:focus-within .tnt-artist-tagline::after {
	opacity: 1;
	transform: translateX(0);
}

@media (max-width: 1200px) {
	.tnt-artists-grid.wp-block-post-template-is-layout-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 781px) {
	.tnt-artists-grid.wp-block-post-template-is-layout-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

/* Texture section bands — tile at native size (Hares pattern_paint / lightpaper / zwartevilt) */
.tnt-section-texture,
.tnt-intro.tnt-section-texture,
.tnt-artists-section.tnt-section-texture {
	background-repeat: repeat !important;
	background-size: auto !important;
	background-position: top left !important;
}

/* Section texture only — do not hide nested card cover images inside query loops */
.wp-block-cover.tnt-section-texture > .wp-block-cover__image-background,
.tnt-intro.tnt-section-texture > .wp-block-cover__image-background,
.tnt-artists-section.tnt-section-texture > .wp-block-cover__image-background {
	display: none !important;
}

/* Our Work — light paper band + Hares-style masonry cards */
.tnt-our-work-section.tnt-section-light {
	color: var(--tnt-stout, #1b1b1b);
}

.tnt-our-work-intro {
	text-align: center;
}

.tnt-our-work-heading {
	margin: 0 auto 1.25rem;
}

.tnt-our-work-heading img {
	width: 412px !important;
	max-width: 100%;
	height: auto;
}

.tnt-our-work-intro-rule {
	margin: 0 auto !important;
}

/* Our Work masonry — cap at 960px (block contentSize + CSS; alignwide parent was letting grid read as wide) */
.tnt-our-work-grid-wrap {
	width: 100%;
	max-width: min(var(--wp--custom--layout--960, 960px), 100%);
	margin-inline: auto;
	box-sizing: border-box;
}

.tnt-our-work-grid-wrap .tnt-our-work-query,
.tnt-our-work-grid-wrap .tnt-our-work-cta {
	width: 100%;
	max-width: 100%;
	margin-inline: auto;
}

.tnt-our-work-grid-wrap .tnt-masonry-grid {
	width: 100%;
	max-width: min(var(--wp--custom--layout--960, 960px), 100%);
	margin-inline: auto;
	padding: 0;
}

.tnt-masonry-grid {
	column-count: 3;
	column-gap: 1.25rem;
	width: 100%;
	max-width: var(--wp--style--global--wide-size, 1920px);
	margin: 0 auto;
	padding: 0;
}

.tnt-masonry-grid > li {
	break-inside: avoid;
	margin: 0 0 1.25rem;
	list-style: none;
}

/* Card stack: image → title → meta */
.tnt-gallery-card {
	display: block;
	margin: 0;
	padding: 0;
	background: transparent;
}

.tnt-gallery-card__media {
	margin: 0;
	overflow: hidden;
	line-height: 0;
}

.tnt-gallery-card__media a {
	display: block;
	line-height: 0;
}

.tnt-gallery-card__img img,
.tnt-gallery-card__media .wp-block-post-featured-image img {
	display: block;
	width: 100% !important;
	height: auto !important;
	max-width: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.tnt-gallery-card:hover .tnt-gallery-card__img img,
.tnt-gallery-card:hover .tnt-gallery-card__media .wp-block-post-featured-image img {
	transform: scale(1.06);
}

.tnt-gallery-card__body {
	padding: 1rem 0 0;
	text-align: center;
}

.tnt-gallery-card__title,
.tnt-gallery-card__title a {
	font-family: soleil, 'Soleil', sans-serif !important;
	font-size: 24px !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	letter-spacing: 0.02em;
	text-transform: none !important;
	color: var(--tnt-stout, #1b1b1b) !important;
	text-decoration: none;
}

.tnt-gallery-card__title {
	margin: 0 0 0.35rem;
}

.tnt-gallery-card__title a:hover,
.tnt-gallery-card__title a:focus-visible {
	color: var(--tnt-gold, #e6b75d) !important;
}

.tnt-gallery-card__meta,
.tnt-gallery-card__meta.entry-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem 0.5rem;
	margin: 0;
	font-family: 'Montserrat', sans-serif !important;
	font-size: 13px !important;
	font-weight: 400;
	line-height: 1.4;
	color: var(--tnt-stout, #1b1b1b) !important;
}

.tnt-gallery-card__meta a {
	color: inherit !important;
	text-decoration: none;
}

.tnt-gallery-card__meta a:hover,
.tnt-gallery-card__meta a:focus-visible {
	color: var(--tnt-gold, #e6b75d) !important;
}

.tnt-gallery-card__meta .gallery-quickview {
	display: inline-block;
	font-weight: 500;
	padding-bottom: 0.2em;
	border-bottom: 2px solid var(--wp--preset--color--tnt-gold, #e6b75d);
}

.tnt-gallery-card__meta .gallery-meta-separator {
	opacity: 0.85;
	user-select: none;
}

/* VIEW ALL GALLERIES — uses .tnt-btn-hares-alt (see Hares button block above) */

@media (max-width: 781px) {
	.tnt-masonry-grid {
		column-count: 2;
		column-gap: 0.75rem;
	}

	.tnt-gallery-card__title,
	.tnt-gallery-card__title a {
		font-size: 20px !important;
	}
}

/* Mosaic gallery — Hares #wvc-col-661 (.wvc-gallery-mosaic, WVC float + padding-bottom cycle) */
.tnt-mosaic-gallery-section {
	margin: 0;
	padding: 0 !important;
	background: var(--tnt-stout, #1b1b1b);
}

.tnt-mosaic-gallery-host {
	width: 100%;
	max-width: none !important;
	margin: 0;
}

/* WP layout flow otherwise centers children at content-width and breaks floats. */
.wvc-gallery-mosaic.tnt-mosaic-gallery-host,
.wvc-gallery-mosaic .wvc-mosaic-block.tnt-mosaic-column {
	display: block !important;
	max-width: none !important;
	margin-inline: 0 !important;
}

.wvc-gallery-mosaic.tnt-mosaic-gallery-host.is-layout-flow > *,
.wvc-gallery-mosaic .wvc-mosaic-block.is-layout-flow > * {
	max-width: none !important;
	margin-inline: 0 !important;
}

/* Default tile top margin — do not use margin shorthand (it blocked WVC tuck overlap). */
.wvc-gallery-mosaic .wvc-mosaic-block.tnt-mosaic-column > .wvc-img-mosaic {
	margin-block-start: 0 !important;
	margin-top: 0;
}

/* Demo: two half-width mosaic blocks side by side (.wvc-mosaic-block { width: 49.999% }). */
.wvc-gallery-mosaic .wvc-mosaic-block.tnt-mosaic-column {
	width: 49.999%;
	float: left;
	margin: 0;
	padding: 0;
	overflow: hidden;
	box-sizing: border-box;
}

.wvc-gallery-mosaic.tnt-mosaic-gallery-host::after {
	content: "";
	display: table;
	clear: both;
}

.wvc-gallery-mosaic .wvc-mosaic-block.tnt-mosaic-column::after {
	content: "";
	display: table;
	clear: both;
}

.wvc-gallery-mosaic .wvc-img-mosaic,
.wvc-gallery-mosaic .wp-block-image.wvc-img-mosaic {
	position: relative;
	float: left;
	overflow: hidden;
	display: block;
	margin-right: 0 !important;
	margin-bottom: 0 !important;
	margin-left: 0;
	padding: 0;
	box-sizing: border-box;
	max-width: none !important;
	/* Padding-bottom aspect boxes: no intrinsic img height in flow. */
	height: 0;
	min-height: 0;
	line-height: 0;
}

.wvc-gallery-mosaic .wvc-img-mosaic::before,
.wvc-gallery-mosaic .wp-block-image.wvc-img-mosaic::before {
	content: " ";
	position: absolute;
	height: 100%;
	width: 100%;
	pointer-events: none;
	z-index: 1;
}

/* WVC 6-tile cycle — keep padding-bottom + overlap margins matched (do not scale independently). */
.wvc-gallery-mosaic .wvc-img-mosaic:nth-child(6n + 1) {
	width: 50%;
	padding-bottom: 50%;
}

.wvc-gallery-mosaic .wvc-img-mosaic:nth-child(6n + 2) {
	width: 50%;
	padding-bottom: 25%;
}

.wvc-gallery-mosaic .wvc-img-mosaic:nth-child(6n + 3) {
	width: 25%;
	padding-bottom: 25%;
}

.wvc-gallery-mosaic .wvc-img-mosaic:nth-child(6n + 4) {
	width: 25%;
	padding-bottom: 50%;
}

.wvc-gallery-mosaic .wvc-img-mosaic:nth-child(6n + 5) {
	width: 25%;
	padding-bottom: 25%;
}

.wvc-gallery-mosaic .wvc-img-mosaic:nth-child(6n + 6) {
	width: 50%;
	padding-bottom: 25%;
}

/* Tuck tiles 5–6 under tall tile 4 (WVC overlap; must beat layout-flow + margin resets). */
.wvc-gallery-mosaic .wvc-mosaic-block.tnt-mosaic-column > .wvc-img-mosaic:nth-child(6n + 5),
.wvc-gallery-mosaic .wvc-mosaic-block.tnt-mosaic-column > .wvc-img-mosaic:nth-child(6n + 6) {
	margin-top: -25% !important;
	margin-block-start: -25% !important;
	clear: none !important;
}

.wvc-gallery-mosaic .wvc-mosaic-block.tnt-mosaic-column > .wvc-img-mosaic:nth-child(6n + 6) {
	margin-left: 25% !important;
}

/* Core lightbox uses flex column on figures — breaks WVC float mosaic overlap. */
.wvc-gallery-mosaic .wp-block-image.wvc-img-mosaic.wp-lightbox-container {
	display: block !important;
	flex-direction: unset;
	position: relative;
}

.wvc-gallery-mosaic .wvc-img-mosaic img,
.wvc-gallery-mosaic .wp-block-image.wvc-img-mosaic img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover;
	display: block;
	backface-visibility: hidden;
	transition: opacity 0.35s ease;
}

.wvc-gallery-mosaic .wp-block-image.wvc-img-mosaic .lightbox-trigger {
	z-index: 2;
}

.wvc-gallery-mosaic .wvc-img-mosaic:hover img,
.wvc-gallery-mosaic .wvc-img-mosaic:focus-within img {
	opacity: 0.72;
}

@media (max-width: 781px) {
	.wvc-gallery-mosaic .wvc-mosaic-block.tnt-mosaic-column {
		width: 100% !important;
		float: none;
	}

	.wvc-gallery-mosaic .wvc-img-mosaic:nth-child(6n + 5),
	.wvc-gallery-mosaic .wvc-img-mosaic:nth-child(6n + 6) {
		margin-top: 0;
	}

	.wvc-gallery-mosaic .wvc-img-mosaic:nth-child(6n + 6) {
		margin-left: 0;
	}

	.wvc-gallery-mosaic .wvc-img-mosaic {
		width: 50% !important;
		padding-bottom: 50% !important;
	}
}

/* Testimonials — Hares parallax photo band + gSlider host */
.tnt-testimonials-section.tnt-section-parallax-photo {
	min-height: 420px;
	overflow: hidden;
}

.tnt-testimonials-section .wp-block-cover__image-background {
	object-position: center center;
	transform: translate3d(0, 0, 0) scale(1.12);
	transform-origin: center center;
}

.tnt-testimonials-inner {
	text-align: center;
}

.tnt-testimonials-section .tnt-testimonials-inner,
.tnt-testimonials-section .wvc-testimonials-container {
	color: var(--tnt-foreground, #f4f4f4);
}

.tnt-testimonials-slider-host .gslider-testimonial-wrapper {
	margin: 0 auto;
	max-width: 720px;
}

.tnt-testimonials-slider-host .gslider-content-inner-wrapper {
	align-items: center;
	text-align: center;
}

.tnt-testimonials-slider-host .gslider-testimonial-quote-icon-wrapper {
	display: block;
	margin: 0 auto 1.25rem;
}

.tnt-testimonials-slider-host .gslider-testimonial-quote-icon-wrapper img {
	display: block;
	width: 150px;
	height: 150px;
	margin: 0 auto;
	object-fit: contain;
}

.tnt-testimonials-slider-host .gslider-testimonial-text,
.tnt-testimonials-slider-host .wvc-testimonial-content {
	margin: 0;
	padding: 0;
	border: 0;
	font-family: 'Montserrat', sans-serif !important;
	font-size: 15px !important;
	font-weight: 400;
	font-style: italic;
	line-height: 1.65 !important;
	color: var(--tnt-foreground, #f4f4f4) !important;
}

.tnt-testimonials-slider-host .gslider-testimonial-text p {
	margin: 0;
}

.tnt-testimonials-slider-host .gslider-testimonial-author-name,
.tnt-testimonials-slider-host .wvc-testimonial-cite {
	display: block;
	margin-top: 1.25rem;
	font-family: soleil, 'Soleil', sans-serif !important;
	font-size: 13px !important;
	font-weight: 600;
	font-style: normal;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--tnt-gold, #e6b75d) !important;
}

.tnt-testimonials-slider-host.has-pagination,
.tnt-testimonials-slider-host .gslider-testimonial-wrapper.has-pagination {
	margin-bottom: 2.5rem;
}

.tnt-testimonials-slider-host .swiper-pagination {
	position: relative;
	margin-top: 1.75rem;
}

.tnt-testimonials-slider-host .swiper-pagination-bullet {
	background-color: var(--tnt-foreground, #f4f4f4);
	opacity: 0.4;
}

.tnt-testimonials-slider-host .swiper-pagination-bullet-active {
	opacity: 1;
	background-color: var(--tnt-gold, #e6b75d);
}

.tnt-testimonials-slider-host .swiper-slide {
	height: auto;
}

/* News & Events — Hares #wvc-col-2033 (light texture, grid_padding, cover cards) */
.tnt-news-events-section.tnt-section-light {
	color: var(--tnt-stout, #1b1b1b);
}


.tnt-news-events-intro {
	text-align: center;
}

.tnt-news-events-heading {
	margin: 0;
	font-family: soleil, 'Soleil', sans-serif !important;
}

/* Hares .grid.grid-padding-yes — 14px gutters */
.tnt-news-events-query .tnt-news-grid.grid-padding-yes,
.tnt-news-events-query ul.tnt-news-grid.grid-padding-yes {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: -14px;
	margin-left: -14px;
	width: calc(100% + 28px);
	max-width: none;
	list-style: none;
	padding: 0;
}

.tnt-news-events-query .tnt-news-grid.grid-padding-yes > li,
.tnt-news-events-query ul.tnt-news-grid.grid-padding-yes > li {
	padding: 14px;
	margin: 0;
	list-style: none;
}

/* Card = cover + entry-container (flex column, image fill) */
.tnt-news-card.wp-block-cover {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
	margin: 0;
	isolation: isolate;
}

.tnt-news-card .wp-block-cover__image-background {
	transition: transform 0.4s cubic-bezier(0.694, 0.0482, 0.335, 1);
	transform: scale(1);
}

.tnt-news-card:hover .wp-block-cover__image-background {
	transform: scale(1.1);
}

.tnt-news-card .wp-block-cover__background {
	background-color: #000 !important;
}

.tnt-news-card__container.entry-container {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	min-height: 520px;
	height: 100%;
	width: 100%;
	padding: 0;
	z-index: 2;
}

/* Hares .category-label — frosted pill, not solid gold */
.tnt-news-card .category-label,
.tnt-news-card .tnt-news-card__category {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 12;
	margin: 0 !important;
	padding: 0;
	border: none;
}

.tnt-news-card .category-label a,
.tnt-news-card .tnt-news-card__category a {
	display: inline-block;
	padding: 4px 14px;
	font-family: soleil, 'Soleil', sans-serif !important;
	font-size: 13px !important;
	font-weight: 400;
	line-height: 1.3;
	text-decoration: none;
	text-transform: none;
	color: #fff !important;
	background: rgba(255, 255, 255, 0.22);
	transition: background 0.4s ease, color 0.4s ease;
}

.tnt-news-card .category-label a:hover,
.tnt-news-card .category-label a:focus-visible,
.tnt-news-card .tnt-news-card__category a:hover,
.tnt-news-card .tnt-news-card__category a:focus-visible {
	background: var(--tnt-gold, #e6b75d);
	color: var(--tnt-stout, #1b1b1b) !important;
}

.tnt-news-card .wp-block-post-terms__separator {
	display: none;
}

.tnt-news-card .sticky-post {
	display: none;
	position: absolute;
	top: 4px;
	right: 6px;
	left: auto;
	z-index: 12;
	width: 50px;
	height: 50px;
	pointer-events: none;
}

.tnt-news-card .sticky-post::before {
	content: "★";
	display: block;
	font-size: 14px;
	line-height: 50px;
	text-align: center;
	color: #fff;
}

.tnt-news-events-query li.sticky .tnt-news-card .sticky-post,
.tnt-news-events-query li.sticky .sticky-post {
	display: inline-block;
}

/* Overlay summary centered on image (entry-grid_modern) */
.tnt-news-card .entry-summary {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 0;
	z-index: 5;
	text-align: center !important;
	pointer-events: none;
}

.tnt-news-card .entry-summary-inner {
	width: 100%;
	margin-top: 30px;
	padding: 100px 50px;
	color: #fff;
	pointer-events: none;
}

.tnt-news-card .entry-date,
.tnt-news-card .entry-date time {
	display: block;
	margin: 0 0 0.5rem;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	opacity: 0.77;
	color: #fff !important;
}

.tnt-news-card .entry-title,
.tnt-news-card .entry-title a {
	margin: 0 0 0.65rem;
	color: #fff !important;
	text-decoration: none;
	pointer-events: auto;
}

.tnt-news-card .entry-title a:hover,
.tnt-news-card .entry-title a:focus-visible {
	color: var(--tnt-gold, #e6b75d) !important;
}

.tnt-news-card .entry-excerpt,
.tnt-news-card .entry-excerpt p {
	margin: 0;
	color: #fff;
	opacity: 0.92;
}

.tnt-news-card .entry-meta {
	position: relative;
	align-self: flex-end;
	width: 100%;
	margin: 0;
	padding: 0 50px 15px;
	font-size: 13px;
	text-align: center !important;
	color: #fff !important;
	z-index: 15;
	pointer-events: auto;
}

.tnt-news-card .entry-tags-list {
	margin-top: 14px;
}

.tnt-news-card .entry-tags-list::before {
	content: "#";
	display: inline;
	margin-right: 0.35em;
	font-weight: 700;
	opacity: 0.85;
}

.tnt-news-card .entry-tags-list a {
	color: #fff !important;
	text-decoration: none;
}

.tnt-news-card .entry-tags-list a:hover,
.tnt-news-card .entry-tags-list a:focus-visible {
	color: var(--tnt-gold, #e6b75d) !important;
}

.tnt-news-card .entry-summary-inner {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (max-width: 1024px) {
	.tnt-news-events-query .tnt-news-grid.grid-padding-yes,
	.tnt-news-events-query ul.tnt-news-grid.grid-padding-yes {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 781px) {
	.tnt-news-events-query .tnt-news-grid.grid-padding-yes,
	.tnt-news-events-query ul.tnt-news-grid.grid-padding-yes {
		grid-template-columns: 1fr;
		width: 100%;
		margin-left: 0;
		margin-top: 0;
	}

	.tnt-news-events-heading {
		font-size: 28px !important;
	}

	.tnt-news-card__container.entry-container {
		min-height: 420px;
	}

	.tnt-news-card .entry-summary-inner {
		padding: 60px 24px;
	}
}

/* Site footer — 3 bands: contact+form, map, hours/IG/newsletter */
.tnt-site-footer {
	font-family: 'Montserrat', sans-serif !important;
}

.tnt-footer-band {
	margin-bottom: var(--wp--preset--spacing--60, 3rem);
}

.tnt-footer-band--primary {
	gap: 2.5rem;
}

.tnt-footer-band--map {
	width: 100%;
}

.tnt-footer-map-wrap {
	overflow: hidden;
	border-radius: 4px;
	line-height: 0;
}

.tnt-footer-map-stage {
	position: relative;
	isolation: isolate;
}

.tnt-footer-map {
	display: block;
	width: 100%;
	min-height: 280px;
	height: 320px;
	border: 0;
	pointer-events: none;
	user-select: none;
	filter: var(--tnt-footer-map-filter, grayscale(55%) brightness(0.42) contrast(1.12) sepia(0.15));
	opacity: var(--tnt-footer-map-opacity, 0.92);
	transition: filter 0.5s ease, opacity 0.5s ease;
}

.tnt-footer-map-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
}

.tnt-footer-map-overlay::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(12, 12, 12, 0);
	transition: background 0.45s ease;
}

.tnt-footer-map-stage:hover .tnt-footer-map,
.tnt-footer-map-stage:focus-within .tnt-footer-map {
	filter: grayscale(65%) brightness(0.18) contrast(1.15) sepia(0.08);
	opacity: 0.75;
}

.tnt-footer-map-stage:hover .tnt-footer-map-overlay::before,
.tnt-footer-map-stage:focus-within .tnt-footer-map-overlay::before {
	background: rgba(12, 12, 12, 0.78);
}

.tnt-footer-map-corner {
	position: absolute;
	width: 2.25rem;
	height: 2.25rem;
	opacity: 0;
	transition:
		opacity 0.35s ease,
		width 0.55s cubic-bezier(0.22, 1, 0.36, 1),
		height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.tnt-footer-map-corner--tl {
	top: 1rem;
	left: 1rem;
	border-top: 2px solid var(--tnt-gold, #e6b75d);
	border-left: 2px solid var(--tnt-gold, #e6b75d);
	transform-origin: top left;
	transform: scale(0.2);
}

.tnt-footer-map-corner--br {
	right: 1rem;
	bottom: 1rem;
	border-right: 2px solid var(--tnt-gold, #e6b75d);
	border-bottom: 2px solid var(--tnt-gold, #e6b75d);
	transform-origin: bottom right;
	transform: scale(0.2);
}

.tnt-footer-map-launch {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 3;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 0.45em;
	box-sizing: border-box;
	padding: 0.65rem 1.25rem;
	font-family: soleil, 'Soleil', sans-serif !important;
	font-size: 11px !important;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--tnt-gold, #e6b75d) !important;
	background: transparent !important;
	border: 1px solid var(--tnt-gold, #e6b75d) !important;
	border-radius: 0;
	box-shadow: none;
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -50%) scale(0.72);
	transition:
		color 0.3s ease,
		border-color 0.3s ease,
		background-color 0.3s ease,
		opacity 0.35s ease,
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.tnt-footer-map-launch-text {
	line-height: 1.2;
}

/* EBI external-arrow — hidden until link hover */
.tnt-footer-map-launch-icon {
	display: inline-flex !important;
	align-items: center;
	flex-shrink: 0;
	line-height: 0;
	width: 0;
	max-width: 0;
	opacity: 0;
	overflow: hidden;
	transform: translate(-0.4em, 0.4em);
	transition:
		width 0.35s ease,
		max-width 0.35s ease,
		opacity 0.3s ease,
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.tnt-footer-map-launch-icon svg {
	display: block;
	width: 0.6em;
	height: 0.6em;
	fill: currentColor;
	color: currentColor;
}

.tnt-footer-map-launch-icon svg polygon {
	fill: currentColor;
}

.tnt-footer-map-stage:hover .tnt-footer-map-corner,
.tnt-footer-map-stage:focus-within .tnt-footer-map-corner {
	opacity: 1;
	width: calc(100% - 2rem);
	height: calc(100% - 2rem);
	transform: scale(1);
}

.tnt-footer-map-stage:hover .tnt-footer-map-launch,
.tnt-footer-map-stage:focus-within .tnt-footer-map-launch,
.tnt-footer-map-launch:focus-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, -50%) scale(1);
}

.tnt-footer-map-launch:hover,
.tnt-footer-map-launch:focus-visible {
	color: var(--tnt-gold, #e6b75d) !important;
	background: transparent !important;
	border-color: var(--tnt-gold, #e6b75d) !important;
}

.tnt-footer-map-launch:hover .tnt-footer-map-launch-icon,
.tnt-footer-map-launch:focus-visible .tnt-footer-map-launch-icon {
	width: 0.85em;
	max-width: 0.85em;
	opacity: 1;
	transform: translate(0.14em, -0.1em);
}

@media (prefers-reduced-motion: reduce) {
	.tnt-footer-map-corner,
	.tnt-footer-map-launch {
		transition: none;
	}

	.tnt-footer-map-stage:hover .tnt-footer-map-corner,
	.tnt-footer-map-stage:focus-within .tnt-footer-map-corner {
		width: calc(100% - 2rem);
		height: calc(100% - 2rem);
		transform: none;
	}

	.tnt-footer-map-stage:hover .tnt-footer-map-launch,
	.tnt-footer-map-stage:focus-within .tnt-footer-map-launch,
	.tnt-footer-map-launch:focus-visible {
		transform: translate(-50%, -50%);
	}

	.tnt-footer-map-launch:hover .tnt-footer-map-launch-icon,
	.tnt-footer-map-launch:focus-visible .tnt-footer-map-launch-icon {
		width: 0.85em;
		max-width: 0.85em;
		opacity: 1;
		transform: translate(0.14em, -0.1em);
	}
}

/* Map filter presets — set on .tnt-footer-map-wrap: --filter-dodge | --filter-burn | --filter-muted */
.tnt-footer-map-wrap--filter-dodge {
	--tnt-footer-map-filter: grayscale(40%) brightness(0.5) contrast(1.2);
	--tnt-footer-map-opacity: 0.88;
}

.tnt-footer-map-wrap--filter-burn {
	--tnt-footer-map-filter: grayscale(70%) brightness(0.35) contrast(1.25);
	--tnt-footer-map-opacity: 0.95;
}

.tnt-footer-map-wrap--filter-muted {
	--tnt-footer-map-filter: grayscale(25%) brightness(0.65) contrast(1.05);
	--tnt-footer-map-opacity: 0.8;
}

.tnt-footer-contact-stack {
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--40, 1.5rem);
}

.tnt-footer-contact-stack .tnt-footer-logo {
	margin-bottom: 0;
}

.tnt-footer-block {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.tnt-footer-block .tnt-footer-heading--paper {
	margin: 0;
}

.tnt-footer-block .tnt-footer-social {
	margin: 0;
}

.tnt-footer-heading--paper,
.tnt-footer-band--primary .tnt-footer-heading--paper {
	color: var(--tnt-off-white, #f7f7f7) !important;
}

.tnt-footer-social {
	margin-top: 0;
	gap: 0.75rem;
}

.tnt-footer-columns,
.tnt-footer-band--lower {
	gap: 2rem;
}

.tnt-footer-heading {
	margin: 0 0 1rem;
	font-family: soleil, 'Soleil', sans-serif !important;
}

.tnt-footer-col p,
.tnt-footer-col a {
	color: var(--tnt-foreground, #f4f4f4) !important;
}

.tnt-footer-col a:hover,
.tnt-footer-col a:focus-visible {
	color: var(--tnt-gold, #e6b75d) !important;
}

.tnt-footer-logo img {
	display: block;
	height: auto;
	margin-bottom: 1.25rem;
}

.tnt-footer-hours-row {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin: 0 0 0.35rem;
	max-width: 220px;
}

.tnt-footer-hours-day {
	font-weight: 500;
}

.tnt-footer-hours-time {
	opacity: 0.9;
}

.tnt-footer-ig-follow {
	margin: 0.65rem 0 0;
}

.tnt-footer-ig-follow a {
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 12px !important;
}

.tnt-footer-ig-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
	max-width: 280px;
	margin: 0;
}

.tnt-footer-ig-grid a {
	display: block;
	overflow: hidden;
	line-height: 0;
}

.tnt-footer-ig-grid img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
	transition: opacity 0.25s ease;
}

.tnt-footer-ig-grid a:hover img,
.tnt-footer-ig-grid a:focus-visible img {
	opacity: 0.85;
}

.tnt-footer-rule {
	margin: var(--wp--preset--spacing--60, 3rem) auto var(--wp--preset--spacing--40, 2rem);
	max-width: 120px;
	opacity: 0.85;
}

.tnt-footer-copyright {
	margin: 0;
	opacity: 0.75;
	font-size: 12px !important;
}

/* Fluent Forms — footer (lab: id 1 contact, id 2 newsletter) + contact page */
.tnt-fluent-footer .fluentform_wrapper,
.tnt-fluent-footer .frm-fluent-form,
.tnt-has-fluent-form .fluentform_wrapper {
	margin: 0;
}

.tnt-fluent-footer .ff-el-group,
.tnt-has-fluent-form .ff-el-group {
	margin-bottom: 0.65rem;
}

.tnt-fluent-footer .ff-el-input--label label,
.tnt-has-fluent-form .ff-el-input--label label {
	font-size: 11px !important;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--tnt-foreground, #f4f4f4) !important;
	transition:
		opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.tnt-fluent-footer .ff-el-form-control,
.tnt-has-fluent-form .ff-el-form-control {
	width: 100%;
	box-sizing: border-box;
	border: none;
	border-bottom: 1px solid color-mix(in srgb, var(--tnt-foreground, #f4f4f4) 35%, transparent);
	background: transparent !important;
	padding: 0.4rem 0;
	font-family: 'Montserrat', sans-serif !important;
	font-size: 14px !important;
	color: var(--tnt-foreground, #f4f4f4) !important;
	border-radius: 3px;
	caret-color: var(--tnt-foreground, #f4f4f4);
	transition:
		color 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		font-family 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		font-size 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		letter-spacing 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		padding 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.tnt-fluent-footer .ff-btn-submit,
.tnt-fluent-footer button[type="submit"],
.tnt-has-fluent-form .ff-btn-submit,
.tnt-has-fluent-form button[type="submit"] {
	display: inline-block;
	cursor: pointer;
	border: 2px solid var(--tnt-off-white, #f7f7f7) !important;
	border-radius: 0;
	padding: 0.55rem 1.25rem !important;
	font-family: soleil, 'Soleil', sans-serif !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--tnt-stout, #1b1b1b) !important;
	background: var(--tnt-off-white, #f7f7f7) !important;
	transition:
		background-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.35s ease;
}

.tnt-fluent-footer .ff-btn-submit:hover,
.tnt-fluent-footer button[type="submit"]:hover,
.tnt-has-fluent-form .ff-btn-submit:hover,
.tnt-has-fluent-form button[type="submit"]:hover {
	opacity: 0.9;
}

/* Contact form — typewriter focus, neon filled state, rainbow submit */
.tnt-fluent-footer--contact .ff-el-form-control::placeholder,
.tnt-has-fluent-form .ff-el-form-control::placeholder {
	font-family: 'Montserrat', sans-serif !important;
	font-size: 10px !important;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: rgba(244, 244, 244, 0.1);
	opacity: 1;
	transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.tnt-fluent-footer--contact .ff-el-group:focus-within .ff-el-input--label label,
.tnt-has-fluent-form .ff-el-group:focus-within .ff-el-input--label label {
	opacity: 0.42;
	color: color-mix(in srgb, var(--tnt-foreground, #f4f4f4) 55%, transparent) !important;
}

.tnt-fluent-footer--contact .ff-el-form-control:focus,
.tnt-has-fluent-form .ff-el-form-control:focus,
.tnt-fluent-footer--contact .ff-el-form-control.tnt-fluent-valued,
.tnt-has-fluent-form .ff-el-form-control.tnt-fluent-valued {
	font-family: 'Special Elite', 'Courier New', Courier, monospace !important;
	font-size: 15px !important;
	letter-spacing: 0.04em;
}

.tnt-fluent-footer--contact .ff-el-form-control:focus,
.tnt-has-fluent-form .ff-el-form-control:focus {
	outline: none;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	color: var(--tnt-foreground, #f4f4f4) !important;
	border-bottom-color: transparent;
	box-shadow:
		0 1px 0 0 rgba(230, 183, 93, 0.65),
		0 0 10px 1px rgba(230, 183, 93, 0.28),
		0 0 18px 2px rgba(230, 183, 93, 0.1);
}

.tnt-fluent-footer--contact textarea.ff-el-form-control:focus,
.tnt-has-fluent-form textarea.ff-el-form-control:focus {
	border: none;
	border-bottom: 1px solid transparent;
	box-shadow:
		0 1px 0 0 rgba(230, 183, 93, 0.65),
		0 0 10px 1px rgba(230, 183, 93, 0.28),
		0 0 18px 2px rgba(230, 183, 93, 0.1);
}

.tnt-fluent-footer--contact .ff-el-form-control.tnt-fluent-valued:not(:focus),
.tnt-has-fluent-form .ff-el-form-control.tnt-fluent-valued:not(:focus) {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	color: var(--tnt-neon, #00e5ff) !important;
	border-bottom-color: color-mix(in srgb, var(--tnt-neon, #00e5ff) 45%, transparent);
	box-shadow: none;
}

.tnt-fluent-footer--contact textarea.ff-el-form-control,
.tnt-has-fluent-form textarea.ff-el-form-control {
	min-height: 4.5rem;
	border: none;
	border-bottom: 1px solid color-mix(in srgb, var(--tnt-foreground, #f4f4f4) 35%, transparent);
	padding: 0.5rem 0;
}

.tnt-fluent-footer--contact textarea.ff-el-form-control.tnt-fluent-valued:not(:focus),
.tnt-has-fluent-form textarea.ff-el-form-control.tnt-fluent-valued:not(:focus) {
	border-bottom-color: color-mix(in srgb, var(--tnt-neon, #00e5ff) 45%, transparent);
}

.tnt-fluent-footer--contact .ff_submit_btn_wrapper,
.tnt-fluent-footer--contact .ff-el-group--submit,
.tnt-fluent-footer--contact .ff-btn-container,
.tnt-has-fluent-form .ff_submit_btn_wrapper,
.tnt-has-fluent-form .ff-el-group--submit,
.tnt-has-fluent-form .ff-btn-container {
	margin-top: 1rem;
}

/* Submit fill cycle: solid colors via @property + WAAPI/rAF (see fluent-form-contact.js) */
@property --tnt-submit-bg {
	syntax: '<color>';
	inherits: false;
	initial-value: #e02392;
}

@property --tnt-submit-fg {
	syntax: '<color>';
	inherits: false;
	initial-value: #f4f4f4;
}

.tnt-fluent-footer--contact .ff-btn-submit.tnt-submit-animating,
.tnt-fluent-footer--contact button[type='submit'].tnt-submit-animating,
.tnt-has-fluent-form .ff-btn-submit.tnt-submit-animating,
.tnt-has-fluent-form button[type='submit'].tnt-submit-animating {
	transition: none !important;
	background-image: none !important;
	background-color: var(--tnt-submit-bg) !important;
	border-color: var(--tnt-submit-bg) !important;
	color: var(--tnt-submit-fg) !important;
}

.tnt-fluent-footer--contact.is-all-filled-done .ff-btn-submit,
.tnt-fluent-footer--contact.is-all-filled-done button[type='submit'],
.tnt-has-fluent-form .fluentform_wrapper.is-all-filled-done .ff-btn-submit,
.tnt-has-fluent-form .fluentform_wrapper.is-all-filled-done button[type='submit'] {
	transition: none !important;
	background-image: none !important;
	--tnt-submit-bg: var(--tnt-neon, #00e5ff);
	--tnt-submit-fg: var(--tnt-stout, #1b1b1b);
	background-color: var(--tnt-neon, #00e5ff) !important;
	border-color: var(--tnt-neon, #00e5ff) !important;
	color: var(--tnt-stout, #1b1b1b) !important;
}

@media (prefers-reduced-motion: reduce) {
	.tnt-fluent-footer--contact.is-all-filled-done .ff-btn-submit,
	.tnt-fluent-footer--contact.is-all-filled-done button[type="submit"],
	.tnt-has-fluent-form .fluentform_wrapper.is-all-filled-done .ff-btn-submit,
	.tnt-has-fluent-form .fluentform_wrapper.is-all-filled-done button[type="submit"],
	.tnt-fluent-footer--contact.is-all-filled .ff-btn-submit,
	.tnt-fluent-footer--contact.is-all-filled button[type="submit"],
	.tnt-has-fluent-form .fluentform_wrapper.is-all-filled .ff-btn-submit,
	.tnt-has-fluent-form .fluentform_wrapper.is-all-filled button[type="submit"] {
		background-color: var(--tnt-neon, #00e5ff) !important;
		border-color: var(--tnt-neon, #00e5ff) !important;
		color: var(--tnt-stout, #1b1b1b) !important;
	}
}

/* Newsletter — email full width, subscribe on its own row */
.tnt-fluent-footer--newsletter .ff-t-row,
.tnt-fluent-footer--newsletter .ff-t-container {
	display: flex !important;
	flex-direction: column !important;
	align-items: stretch !important;
	width: 100%;
	gap: 0.65rem;
}

.tnt-fluent-footer--newsletter .ff-t-cell,
.tnt-fluent-footer--newsletter .ff-el-group {
	width: 100% !important;
	max-width: 100% !important;
	flex: 1 1 100% !important;
	margin-bottom: 0;
}

.tnt-fluent-footer--newsletter .ff-el-form-control {
	width: 100%;
}

.tnt-fluent-footer--newsletter .ff_submit_btn_wrapper,
.tnt-fluent-footer--newsletter .ff-el-group--submit,
.tnt-fluent-footer--newsletter .ff-btn-container {
	width: 100%;
	margin-top: 0.15rem;
}

.tnt-fluent-footer--newsletter .ff-btn-submit,
.tnt-fluent-footer--newsletter button[type="submit"] {
	display: block;
	width: 100%;
	max-width: 100%;
	text-align: center;
	box-sizing: border-box;
}

@media (max-width: 1024px) {
	.tnt-footer-columns {
		flex-wrap: wrap !important;
	}

	.tnt-footer-columns > .wp-block-column {
		flex-basis: 45% !important;
	}
}

@media (max-width: 781px) {
	.tnt-footer-columns > .wp-block-column {
		flex-basis: 100% !important;
	}

	.tnt-footer-hours-row {
		max-width: none;
	}
}

/* Homepage: remove TT5 default block gap between stacked full-width sections */
body.tnt-is-front-page .wp-block-post-content.is-layout-flow,
body.tnt-is-front-page .wp-block-post-content.is-layout-constrained,
body.tnt-is-front-page .entry-content.is-layout-flow,
body.tnt-is-front-page .entry-content.is-layout-constrained {
	gap: 0 !important;
}

body.tnt-is-front-page .wp-block-post-content.is-layout-flow > *,
body.tnt-is-front-page .wp-block-post-content.is-layout-flow > * + *,
body.tnt-is-front-page .wp-block-post-content.is-layout-constrained > *,
body.tnt-is-front-page .wp-block-post-content.is-layout-constrained > * + *,
body.tnt-is-front-page .entry-content.is-layout-flow > *,
body.tnt-is-front-page .entry-content.is-layout-flow > * + *,
body.tnt-is-front-page .entry-content.is-layout-constrained > *,
body.tnt-is-front-page .entry-content.is-layout-constrained > * + *,
body.tnt-is-front-page .entry-content.is-layout-constrained > .alignfull,
body.tnt-is-front-page .wp-block-post-content.is-layout-constrained > .alignfull {
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
}

/* Inner pages: same flush full-width stack as homepage */
body.page-template-page-no-title-transparent-header .wp-block-post-content.is-layout-flow,
body.page-template-page-no-title-transparent-header .wp-block-post-content.is-layout-constrained,
body.page-template-page-no-title-transparent-header .entry-content.is-layout-flow,
body.page-template-page-no-title-transparent-header .entry-content.is-layout-constrained {
	gap: 0 !important;
}

body.page-template-page-no-title-transparent-header .wp-block-post-content > .alignfull,
body.page-template-page-no-title-transparent-header .entry-content > .alignfull {
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
}

.tnt-inner-hero__title {
	margin-bottom: 0.5rem !important;
}

.tnt-inner-split__photo img {
	border-radius: 4px;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.tnt-inner-band__heading {
	margin-bottom: 0.25rem !important;
}

.tnt-trivia-schedule-list {
	font-size: 1.125rem;
	line-height: 1.65;
}

.tnt-trivia-schedule-list li {
	margin-bottom: 0.65rem;
}
