/*
Theme Name: M Club Classic
Theme URI: https://mclubspaandfitness.co.uk
Author: Qastco Ltd
Author URI: https://qastco.com
Description: Classic WordPress theme for M Club Spa & Fitness — Staffordshire's award-winning spa and fitness clubs.
Version: 1.7.2
Requires at least: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mclub-classic
Tags: fitness, spa, wellness, custom-menu, custom-logo
*/

/* ==========================================================================
   Design Tokens
   ========================================================================== */

:root {
	/* Colors */
	--mc-primary: #004B47;
	--mc-secondary: #C9B383;
	--mc-accent: #076461;
	--mc-warm: #DACDAF;
	--mc-foreground: #000000;
	--mc-background: #FFFFFF;
	--mc-surface: #EFEFEF;
	--mc-muted: #686868;
	--mc-dark-surface: #0B5C53;

	/* Typography */
	--mc-font-heading: 'Unbounded', sans-serif;
	--mc-font-body: 'DM Sans', sans-serif;
	--mc-font-ui: 'Raleway', sans-serif;
	--mc-font-display: 'Red Hat Display', sans-serif;

	/* Font Sizes (fluid) */
	--mc-fs-small: clamp(0.8rem, 0.5vw + 0.7rem, 0.875rem);
	--mc-fs-medium: clamp(0.9rem, 0.5vw + 0.8rem, 1rem);
	--mc-fs-large: clamp(1.1rem, 0.5vw + 0.95rem, 1.25rem);
	--mc-fs-xlarge: clamp(1.4rem, 1vw + 1.1rem, 1.75rem);
	--mc-fs-xxlarge: clamp(1.8rem, 2vw + 1.2rem, 2.5rem);
	--mc-fs-huge: clamp(2.2rem, 3vw + 1.4rem, 3.5rem);
	--mc-fs-display: clamp(2.5rem, 4.4vw + 1rem, 5rem);

	/* Spacing */
	--mc-sp-2xs: 0.25rem;
	--mc-sp-xs: 0.5rem;
	--mc-sp-s: 1rem;
	--mc-sp-m: 1.5rem;
	--mc-sp-l: 2.5rem;
	--mc-sp-xl: 4rem;
	--mc-sp-2xl: 6rem;
	--mc-sp-3xl: 8rem;

	/* Layout */
	--mc-content-width: 720px;
	--mc-wide-width: 1440px;
	--mc-container-width: 1200px;

	/* Shadows */
	--mc-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
	--mc-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
	--mc-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
	--mc-shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   Font Faces
   ========================================================================== */

@font-face {
	font-family: 'Unbounded';
	src: url('assets/fonts/unbounded-bold.woff2') format('woff2');
	font-weight: 400 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'DM Sans';
	src: url('assets/fonts/dm-sans-regular.woff2') format('woff2');
	font-weight: 400 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Raleway';
	src: url('assets/fonts/raleway-semibold.woff2') format('woff2');
	font-weight: 600 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Red Hat Display';
	src: url('assets/fonts/red-hat-display-regular.woff2') format('woff2');
	font-weight: 200 700;
	font-style: normal;
	font-display: swap;
}

/* ==========================================================================
   Base Reset & Typography
   ========================================================================== */

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--mc-font-body);
	font-size: var(--mc-fs-medium);
	line-height: 1.6;
	color: var(--mc-foreground);
	background: var(--mc-foreground);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
	font-family: var(--mc-font-heading);
	font-weight: 700;
	line-height: 1.2;
}

h1 { font-size: var(--mc-fs-huge); color: var(--mc-secondary); }
h2 { font-size: var(--mc-fs-xxlarge); color: var(--mc-secondary); }
h3 { font-size: var(--mc-fs-xlarge); }
h4 { font-size: var(--mc-fs-large); }

a {
	color: var(--mc-primary);
	transition: color 0.2s ease;
}

a:hover {
	color: var(--mc-accent);
}

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

address {
	font-style: normal;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.mc-container {
	width: 100%;
	max-width: var(--mc-container-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--mc-sp-s);
	padding-right: var(--mc-sp-s);
}

.mc-container--wide {
	max-width: var(--mc-wide-width);
}

.mc-container--narrow {
	max-width: var(--mc-content-width);
}

.mc-section {
	padding-top: var(--mc-sp-l);
	padding-bottom: var(--mc-sp-l);
}

.mc-section--dark {
	background-color: var(--mc-foreground);
	color: var(--mc-background);
}

.mc-section--surface {
	background-color: var(--mc-surface);
}

.mc-section--warm {
	background-color: var(--mc-warm);
}

.mc-section--primary {
	background-color: var(--mc-primary);
	color: var(--mc-background);
}

.mc-section__heading {
	text-align: center;
	margin-bottom: var(--mc-sp-l);
}

.mc-section__subheading {
	text-align: center;
	color: var(--mc-muted);
	font-size: var(--mc-fs-medium);
	margin-bottom: var(--mc-sp-xl);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.mc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.65rem 1.5rem;
	border-radius: 100px;
	font-family: var(--mc-font-ui);
	font-weight: 600;
	font-size: clamp(0.85rem, 0.3vw + 0.8rem, 1rem);
	letter-spacing: 0.5px;
	text-decoration: none;
	cursor: pointer;
	border: 2px solid transparent;
	transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.mc-btn:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.mc-btn:active {
	transform: translateY(0);
}

.mc-btn--primary {
	background-color: var(--mc-primary);
	color: #fff;
}

.mc-btn--primary:hover {
	background-color: var(--mc-accent);
	color: #fff;
}

.mc-btn--secondary {
	background-color: var(--mc-secondary);
	color: var(--mc-foreground);
}

.mc-btn--outline {
	background: transparent;
	border-color: #fff;
	color: #fff;
}

.mc-btn--outline:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.mc-btn--outline-dark {
	background: transparent;
	border-color: var(--mc-primary);
	color: var(--mc-primary);
}

.mc-btn--full {
	width: 100%;
}

.mc-btn--whatsapp {
	background-color: #25D366;
	color: #fff;
}

.mc-btn--whatsapp:hover {
	background-color: #1da851;
	color: #fff;
}

.mc-btn--whatsapp::before {
	content: "";
	display: inline-block;
	width: 1.1em;
	height: 1.1em;
	margin-right: 0.25em;
	vertical-align: -0.15em;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.mc-btn-group {
	display: flex;
	gap: var(--mc-sp-s);
	flex-wrap: wrap;
}

.mc-btn-group--center {
	justify-content: center;
}

/* ==========================================================================
   Skip Link (a11y)
   ========================================================================== */

.mc-skip-link {
	position: absolute;
	top: -100%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
	padding: 0.75rem 1.5rem;
	background: var(--mc-primary);
	color: var(--mc-background);
	text-decoration: none;
	border-radius: 0 0 8px 8px;
	font-weight: 600;
	transition: top 0.2s ease;
}

.mc-skip-link:focus {
	top: 0;
}

/* ==========================================================================
   Top Bar
   ========================================================================== */

.mc-top-bar {
	background: rgba(0, 0, 0, 0.95);
	color: #fff;
	font-size: 0.85rem;
	letter-spacing: 0.3px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	z-index: 1001;
	padding: 0.5rem 0;
}

.mc-top-bar__inner {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.mc-top-bar__phones {
	margin: 0;
	color: #fff;
}

.mc-top-bar__separator {
	margin: 0 0.75rem;
	opacity: 0.4;
}

.mc-top-bar a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
}

.mc-top-bar a:hover {
	text-decoration: underline;
	color: var(--mc-secondary);
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.mc-header {
	background-color: rgba(0, 0, 0, 0.6);
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
	padding: 0.75rem 0;
}

.mc-header.is-scrolled {
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.mc-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--mc-sp-s);
}

.mc-header__logo img {
	filter: brightness(0) invert(1);
}

.mc-header__toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	z-index: 1002;
}

.mc-header__toggle-bar {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.mc-header__toggle[aria-expanded="true"] .mc-header__toggle-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.mc-header__toggle[aria-expanded="true"] .mc-header__toggle-bar:nth-child(2) {
	opacity: 0;
}

.mc-header__toggle[aria-expanded="true"] .mc-header__toggle-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.mc-header__nav {
	flex: 1;
}

.mc-nav-list {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	gap: 0;
	margin: 0;
	padding: 0;
}

.mc-nav-list li {
	position: relative;
}

.mc-nav-list a {
	display: block;
	padding: 0.75rem 1.25rem;
	color: #fff;
	text-decoration: none;
	font-family: var(--mc-font-ui);
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.3px;
	transition: color 0.2s ease;
}

.mc-nav-list a:hover,
.mc-nav-list .current-menu-item > a {
	color: var(--mc-secondary);
}

.mc-header__cta {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	flex-shrink: 0;
}

.mc-header__cta .mc-btn {
	padding: 0.7rem 1.75rem;
	font-size: clamp(0.9rem, 0.3vw + 0.85rem, 1.05rem);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
	.mc-header__toggle {
		display: flex;
		order: -1;
	}

	.mc-header__logo {
		order: 0;
		flex: 1;
		text-align: center;
	}

	.mc-header__logo img {
		width: 120px;
		height: auto;
	}

	.mc-header__cta {
		order: 1;
	}

	.mc-header__cta .mc-btn--secondary {
		display: none;
	}

	.mc-header__cta .mc-btn--outline {
		padding: 0.5rem 1rem;
		font-size: 0.85rem;
	}

	.mc-header__nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 380px;
		height: 100vh;
		background: rgba(0, 0, 0, 0.98);
		padding: 5rem var(--mc-sp-l) var(--mc-sp-l);
		transition: right 0.3s ease;
		z-index: 1001;
		overflow-y: auto;
	}

	.mc-header__nav.is-open {
		right: 0;
	}

	.mc-nav-list {
		flex-direction: column;
		align-items: stretch;
	}

	.mc-nav-list a {
		padding: 1rem 0;
		font-size: 1.2rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.mc-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	margin-top: -4rem;
	padding-top: 4rem;
	background: #000;
}

.mc-hero__poster {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.mc-hero__poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mc-hero__video {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.mc-hero__video--mobile {
	display: none;
}

@media (max-width: 768px) {
	.mc-hero__video--desktop {
		display: none;
	}
	.mc-hero__video--mobile {
		display: block;
	}
}

.mc-hero__video video,
.mc-hero__video img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mc-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.50);
	z-index: 1;
}

.mc-hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--mc-container-width);
	margin: 0 auto;
	padding: var(--mc-sp-2xl) var(--mc-sp-s) var(--mc-sp-xl);
	text-align: center;
}

.mc-hero__title {
	font-family: var(--mc-font-heading);
	font-size: clamp(1.8rem, 3.5vw + 0.5rem, 3.5rem);
	font-weight: 400;
	color: #fff;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	line-height: 1.4;
	margin-bottom: var(--mc-sp-s);
}

.mc-hero__subtitle {
	font-size: var(--mc-fs-large);
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: var(--mc-sp-l);
}

.mc-hero__cta {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: var(--mc-sp-m);
}

.mc-hero__cta .mc-btn {
	padding: 0.85rem 2.5rem;
	font-size: clamp(1rem, 0.3vw + 0.9rem, 1.15rem);
}

@media (max-width: 768px) {
	.mc-hero__cta {
		flex-direction: column;
		padding: 0 var(--mc-sp-s);
	}
	.mc-hero__cta .mc-btn {
		width: 100%;
		text-align: center;
		padding: 1rem 2rem;
	}
	.mc-hero__cta .mc-btn--secondary {
		background: transparent;
		border-color: #fff;
		color: #fff;
	}
	.mc-hero__cta .mc-btn--secondary:hover {
		background: rgba(255, 255, 255, 0.1);
	}
}

/* ==========================================================================
   Facilities Grid
   ========================================================================== */

.mc-facilities-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1rem;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.mc-facility-card {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	aspect-ratio: 3/4;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mc-facility-card--offset-0 { margin-top: 0; }
.mc-facility-card--offset-1 { margin-top: 2rem; }
.mc-facility-card--offset-2 { margin-top: 0; }
.mc-facility-card--offset-3 { margin-top: 2rem; }
.mc-facility-card--offset-4 { margin-top: 0; }

.mc-facility-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--mc-shadow-lg);
}

.mc-facility-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.mc-facility-card:hover img {
	transform: scale(1.05);
}

.mc-facility-card__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem 1rem 1rem;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
	color: #fff;
	text-align: center;
}

.mc-facility-card__title {
	font-family: var(--mc-font-heading);
	font-size: clamp(0.9rem, 1.2vw, 1.15rem);
	font-weight: 700;
	margin: 0 0 0.25rem;
	line-height: 1.2;
}

.mc-facility-card__sub {
	font-size: 0.75rem;
	margin: 0;
	opacity: 0.85;
}

@media (max-width: 1024px) {
	.mc-facilities-grid {
		grid-template-columns: repeat(2, 1fr);
		max-width: 600px;
	}
	.mc-facility-card--offset-0,
	.mc-facility-card--offset-1,
	.mc-facility-card--offset-2,
	.mc-facility-card--offset-3,
	.mc-facility-card--offset-4 {
		margin-top: 0;
	}
}

@media (max-width: 768px) {
	.mc-facilities-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
		max-width: 400px;
	}
	.mc-facility-card {
		aspect-ratio: 3/4;
	}
}

/* ==========================================================================
   Why M Club
   ========================================================================== */

.mc-why {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--mc-sp-l);
	align-items: center;
}

.mc-why__content {
	max-width: 800px;
}

.mc-why__image img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

@media (max-width: 768px) {
	.mc-why {
		grid-template-columns: 1fr;
	}
	.mc-why__image {
		order: -1;
	}
}

.mc-inline-logo {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0.25rem;
}

.mc-icon-list {
	list-style: none;
	padding: 0;
	margin: var(--mc-sp-m) 0;
}

.mc-icon-list li {
	padding: 0.5rem 0;
	font-size: var(--mc-fs-small);
	line-height: 1.5;
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.mc-icon-list__icon {
	flex-shrink: 0;
	font-size: 1.25rem;
}

/* ==========================================================================
   Spa Platinum
   ========================================================================== */

.mc-spa-platinum {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.mc-spa-platinum__video {
	position: absolute;
	inset: 0;
}

.mc-spa-platinum__video video,
.mc-spa-platinum__video img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mc-spa-platinum__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 75, 71, 0.6) 100%);
	z-index: 1;
}

.mc-spa-platinum__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--mc-container-width);
	margin: 0 auto;
	padding: var(--mc-sp-2xl) var(--mc-sp-s);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--mc-sp-xl);
	align-items: center;
}

.mc-spa-platinum__logo {
	max-width: 350px;
	margin-bottom: var(--mc-sp-m);
}

.mc-spa-platinum__logo img {
	width: 100%;
}

.mc-spa-platinum__text h2 {
	color: var(--mc-secondary);
}

.mc-spa-platinum__text p {
	color: rgba(255, 255, 255, 0.9);
	margin: var(--mc-sp-s) 0 var(--mc-sp-l);
}

.mc-spa-platinum__image img {
	border-radius: 8px;
	width: 100%;
}

@media (max-width: 768px) {
	.mc-spa-platinum__content {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Membership Section
   ========================================================================== */

.mc-membership {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	max-width: var(--mc-container-width);
	margin: 0 auto;
	overflow: hidden;
}

.mc-membership__image {
	overflow: hidden;
	height: 100%;
}

.mc-membership__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mc-membership__content {
	padding: var(--mc-sp-xl) var(--mc-sp-l);
	text-align: center;
}

@media (max-width: 768px) {
	.mc-membership {
		grid-template-columns: 1fr;
	}
}

.mc-membership__content h2 {
	margin-bottom: var(--mc-sp-s);
	color: var(--mc-background);
}

.mc-membership__content p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: var(--mc-sp-l);
}

.mc-membership__content .mc-btn-group {
	justify-content: center;
}

/* ==========================================================================
   Enquiry Form
   ========================================================================== */

.mc-enquiry-form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.mc-enquiry-form__success {
	background: var(--mc-primary);
	color: #fff;
	padding: var(--mc-sp-m) var(--mc-sp-l);
	border-radius: 8px;
	text-align: center;
	margin-bottom: var(--mc-sp-l);
	font-size: var(--mc-fs-large);
}

.mc-enquiry-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.mc-enquiry-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
}

.mc-enquiry-form__field label {
	font-weight: 600;
	font-size: var(--mc-fs-small);
	color: rgba(255, 255, 255, 0.9);
}

.mc-enquiry-form__field input,
.mc-enquiry-form__field select,
.mc-enquiry-form__field textarea {
	padding: 0.75rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	font-family: inherit;
	font-size: 1rem;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mc-enquiry-form__field input::placeholder,
.mc-enquiry-form__field textarea::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.mc-enquiry-form__field select {
	color: rgba(255, 255, 255, 0.5);
}

.mc-enquiry-form__field select option {
	background: #1a1a1a;
	color: #fff;
}

.mc-enquiry-form__field input:focus,
.mc-enquiry-form__field select:focus,
.mc-enquiry-form__field textarea:focus {
	outline: none;
	border-color: var(--mc-secondary);
	box-shadow: 0 0 0 2px rgba(201, 179, 131, 0.2);
	color: #fff;
}

#mc-enquiry .mc-btn--primary {
	background: var(--mc-secondary);
	color: var(--mc-foreground);
	font-weight: 700;
}

#mc-enquiry .mc-btn--primary:hover {
	background: #b8a274;
}

@media (max-width: 600px) {
	.mc-enquiry-form__row {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Timetable
   ========================================================================== */

.mc-timetable__tabs {
	display: flex;
	justify-content: center;
	gap: 0;
	margin-bottom: 2rem;
}

.mc-timetable__tab {
	padding: 0.75rem 3rem;
	border: 2px solid rgba(255, 255, 255, 0.3);
	background: transparent;
	color: #fff;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.mc-timetable__tab:first-child {
	border-radius: 100px 0 0 100px;
}

.mc-timetable__tab:last-child {
	border-radius: 0 100px 100px 0;
}

.mc-timetable__tab--active {
	background: var(--mc-primary);
	border-color: var(--mc-primary);
	color: #fff;
}

.mc-timetable__panel {
	display: none;
}

.mc-timetable__panel--active {
	display: block;
}

.mc-timetable__grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 0.75rem;
}

.mc-timetable__day-header {
	background: var(--mc-primary);
	color: #fff;
	text-align: center;
	padding: 0.75rem 0.5rem;
	font-weight: 700;
	font-size: 0.9rem;
	border-radius: 6px;
	text-transform: capitalize;
	letter-spacing: 0.3px;
}

.mc-timetable__class {
	background: #fff;
	border-radius: 8px;
	padding: 0.9rem 0.6rem;
	margin-top: 0.5rem;
	text-align: center;
	font-size: 0.8rem;
	line-height: 1.4;
	color: #333;
	border: 1px solid #e8e8e8;
}

.mc-timetable__class strong {
	display: block;
	font-size: 0.85rem;
	color: #000;
	margin-bottom: 0.25rem;
	font-weight: 700;
}

.mc-timetable__class span {
	display: block;
	color: var(--mc-muted);
	font-size: 0.75rem;
	line-height: 1.4;
}

@media (max-width: 1024px) {
	.mc-timetable__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 768px) {
	.mc-timetable__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.mc-timetable__notice {
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	padding: 3rem 1rem;
	font-size: 0.95rem;
}

.mc-timetable__tab {
	cursor: pointer;
}

#class-schedule .class-schedule {
	--mct-teal: var(--mc-primary);
	--mct-card-bg: #e6e6e6;
	--mct-card-text: #111;
	--mct-meta-text: #4a4a4a;
	color: #fff;
}

#class-schedule .service-filter {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	display: block;
	font-family: var(--mc-font-body);
	font-size: 1.1rem;
	font-weight: 600;
	padding: 14px 20px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 100px;
	background: transparent;
	color: #fff;
	text-align: center;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23fff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 20px center;
}

#class-schedule .service-filter option {
	color: #111;
	background: #fff;
}

#class-schedule .schedule-header {
	margin-bottom: 2rem;
}

#class-schedule .day-title {
	font-family: var(--mc-font-body);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.3px;
}

#class-schedule .class-card {
	background: rgba(255, 255, 255, 0.06);
	border-radius: 8px;
	border-left: 4px solid transparent;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

#class-schedule .class-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	background: rgba(255, 255, 255, 0.09);
}

#class-schedule .class-card[data-service="strength"] { border-left-color: #5C4B6B; }
#class-schedule .class-card[data-service="cycling"]  { border-left-color: #8B4A4A; }
#class-schedule .class-card[data-service="intense"]  { border-left-color: #A06B3A; }
#class-schedule .class-card[data-service="lmod"]     { border-left-color: #4A5D5E; }
#class-schedule .class-card[data-service="lmv"]      { border-left-color: #3A5068; }
#class-schedule .class-card[data-service="mind"]     { border-left-color: #2E7D5E; }
#class-schedule .class-card[data-service="pool"]     { border-left-color: #2A6B7C; }
#class-schedule .class-card[data-service="hyrox"]    { border-left-color: #3D3D3D; }
#class-schedule .class-card[data-service="private"]  { border-left-color: #5A6868; }

#class-schedule .class-name {
	font-family: var(--mc-font-body);
	font-weight: 700;
	font-size: 0.85rem;
	color: #fff;
}

#class-schedule .class-meta {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.7);
}

#class-schedule .class-time {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.55);
}

#class-schedule .mclub-filter,
#class-schedule select {
	display: none !important;
}
.mc-timetable__legend {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	align-items: center;
	margin-bottom: var(--mc-sp-m);
	padding-bottom: var(--mc-sp-m);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.mc-timetable__legend-item {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-family: var(--mc-font-body);
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.7);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 0.3rem 0.75rem;
	cursor: pointer;
	transition: all 0.2s;
}
.mc-timetable__legend-item:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}
.mc-timetable__legend-item--active {
	background: rgba(201, 179, 131, 0.15);
	border-color: var(--mc-secondary);
	color: #fff;
}
.mc-timetable__legend-swatch {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex-shrink: 0;
}
.mc-timetable__legend-clear {
	display: none;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.1rem;
	cursor: pointer;
	transition: all 0.2s;
	margin-left: 0.25rem;
}
.mc-timetable__legend-clear:hover {
	background: rgba(255, 70, 70, 0.2);
	border-color: rgba(255, 70, 70, 0.4);
	color: #ff6b6b;
}
.mc-timetable__legend-clear.is-visible {
	display: inline-flex;
}

/* ==========================================================================
   Single Class Page
   ========================================================================== */

.mc-class-hero {
	padding: var(--mc-sp-xl) 0;
	min-height: 60vh;
	display: flex;
	align-items: center;
}

.mc-class-hero__back {
	display: inline-block;
	color: var(--mc-secondary);
	font-family: var(--mc-font-body);
	font-size: 0.9rem;
	text-decoration: none;
	margin-bottom: var(--mc-sp-l);
}

.mc-class-hero__back:hover {
	text-decoration: underline;
}

.mc-class-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--mc-sp-xl);
	align-items: center;
}

.mc-class-hero__badge {
	display: inline-block;
	padding: 0.3rem 1rem;
	border-radius: 100px;
	font-family: var(--mc-font-body);
	font-size: 0.8rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: var(--mc-sp-s);
	background: var(--mc-primary);
}

.mc-class-hero__badge[data-service="strength-and-tone"] { background: #5C4B6B; }
.mc-class-hero__badge[data-service="cycling"] { background: #8B4A4A; }
.mc-class-hero__badge[data-service="intense-conditioning"] { background: #A06B3A; }
.mc-class-hero__badge[data-service="les-mills-on-demand"] { background: #4A5D5E; }
.mc-class-hero__badge[data-service="les-mills-virtual"] { background: #3A5068; }
.mc-class-hero__badge[data-service="mind-and-body"] { background: #2E7D5E; }
.mc-class-hero__badge[data-service="pool"] { background: #2A6B7C; }

.mc-class-hero__title {
	font-family: var(--mc-font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: #fff;
	margin-bottom: var(--mc-sp-m);
}

.mc-class-hero__meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.8);
	font-family: var(--mc-font-body);
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.mc-class-hero__meta svg {
	color: var(--mc-secondary);
	flex-shrink: 0;
}

.mc-class-hero__desc {
	color: rgba(255, 255, 255, 0.7);
	font-family: var(--mc-font-body);
	line-height: 1.7;
	margin: var(--mc-sp-m) 0;
}

.mc-class-hero__image {
	border-radius: 12px;
	overflow: hidden;
}

.mc-class-hero__image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
}

@media (max-width: 768px) {
	.mc-class-hero__grid {
		grid-template-columns: 1fr;
		gap: var(--mc-sp-l);
	}

	.mc-class-hero__image {
		order: -1;
	}
}

/* ==========================================================================
   Photo Gallery Carousel
   ========================================================================== */

.mc-carousel {
	position: relative;
	overflow: hidden;
	margin-top: var(--mc-sp-xl);
}

.mc-carousel__track {
	display: flex;
	gap: 0.5rem;
	transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
	will-change: transform;
}

.mc-carousel__slide {
	flex: 0 0 calc((100% - 2.5rem) / 6);
	min-width: 0;
	overflow: hidden;
	border-radius: 4px;
}

.mc-carousel__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 3/4;
	transition: transform 0.4s ease;
}

.mc-carousel__slide:hover img {
	transform: scale(1.08);
}

.mc-carousel__btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, transform 0.2s ease;
}

.mc-carousel__btn:hover {
	background: var(--mc-primary);
	transform: translateY(-50%) scale(1.1);
}

.mc-carousel__btn svg {
	width: 20px;
	height: 20px;
}

.mc-carousel__btn--prev { left: 0.75rem; }
.mc-carousel__btn--next { right: 0.75rem; }

.mc-carousel__dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1.5rem;
	padding: 0;
}

.mc-carousel__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid var(--mc-primary);
	background: transparent;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s ease;
}

.mc-carousel__dot--active {
	background: var(--mc-primary);
}

.mc-carousel__dot:hover {
	background: var(--mc-accent);
}

@media (max-width: 1024px) {
	.mc-carousel__slide {
		flex: 0 0 calc((100% - 1.5rem) / 4);
	}
}

@media (max-width: 768px) {
	.mc-carousel__slide {
		flex: 0 0 calc((100% - 0.5rem) / 2);
	}
}

/* ==========================================================================
   Gallery Heading with Inline Logo
   ========================================================================== */

.mc-inline-logo-gallery {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0.25rem;
	opacity: 0.4;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.mc-testimonial-card {
	border: 1px solid #c6c6c6;
	border-radius: 8px;
	padding: var(--mc-sp-m);
	background: var(--mc-background);
}

.mc-testimonial-card__stars {
	color: var(--mc-secondary);
	font-size: var(--mc-fs-small);
	margin-bottom: var(--mc-sp-xs);
}

.mc-testimonial-card__quote {
	font-size: var(--mc-fs-small);
	margin-bottom: var(--mc-sp-s);
	line-height: 1.6;
}

.mc-testimonial-card__author {
	color: var(--mc-muted);
	font-size: var(--mc-fs-small);
}

.mc-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--mc-sp-m);
}

@media (max-width: 768px) {
	.mc-testimonials-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Stats Bar
   ========================================================================== */

.mc-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--mc-sp-m);
	text-align: center;
}

.mc-stats__item h3 {
	font-size: var(--mc-fs-xxlarge);
	color: var(--mc-secondary);
	margin-bottom: var(--mc-sp-2xs);
}

.mc-stats__item p {
	font-size: var(--mc-fs-small);
	color: var(--mc-background);
}

@media (max-width: 768px) {
	.mc-stats {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.mc-faq-list {
	max-width: 900px;
	margin: 0 auto;
}

.mc-faq-item {
	border-bottom: 1px solid #c6c6c6;
	padding: var(--mc-sp-s) 0;
}

.mc-faq-item:last-child {
	border-bottom: none;
}

.mc-faq-item summary {
	cursor: pointer;
	font-weight: 600;
	padding: 0.25rem 0;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mc-faq-item summary::after {
	content: "+";
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--mc-primary);
	transition: transform 0.2s ease;
}

.mc-faq-item[open] summary::after {
	content: "\2212";
}

.mc-faq-item summary::-webkit-details-marker {
	display: none;
}

.mc-faq-item__answer {
	color: var(--mc-muted);
	font-size: var(--mc-fs-small);
	padding-top: var(--mc-sp-xs);
	line-height: 1.6;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.mc-cta-section {
	position: relative;
	min-height: 50vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.mc-cta-section__bg {
	position: absolute;
	inset: 0;
}

.mc-cta-section__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mc-cta-section__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 75, 71, 0.85) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.mc-cta-section__content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	padding: var(--mc-sp-2xl) var(--mc-sp-s);
}

.mc-cta-section__content h2 {
	color: var(--mc-secondary);
}

.mc-cta-section__content p {
	color: rgba(255, 255, 255, 0.9);
	font-size: var(--mc-fs-medium);
	margin: var(--mc-sp-s) 0 var(--mc-sp-l);
}

/* ==========================================================================
   Awards Section
   ========================================================================== */

.mc-awards__logos {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--mc-sp-l);
	align-items: center;
	margin-top: var(--mc-sp-l);
}

.mc-awards__logos img {
	max-width: 100%;
	margin: 0 auto;
}

@media (max-width: 600px) {
	.mc-awards__logos {
		grid-template-columns: 1fr;
		gap: var(--mc-sp-m);
	}
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.mc-contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--mc-sp-l);
}

.mc-contact-grid h3 {
	color: var(--mc-primary);
	font-size: var(--mc-fs-large);
	margin-bottom: var(--mc-sp-s);
}

.mc-contact-grid p {
	font-size: var(--mc-fs-small);
	line-height: 1.6;
}

@media (max-width: 768px) {
	.mc-contact-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Team Grid
   ========================================================================== */

.mc-team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--mc-sp-m);
}

.mc-team-card {
	text-align: center;
}

.mc-team-card img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: var(--mc-sp-xs);
}

.mc-team-card h4 {
	margin-bottom: 0.25rem;
}

.mc-team-card p {
	color: var(--mc-muted);
	font-size: var(--mc-fs-small);
}

@media (max-width: 768px) {
	.mc-team-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ==========================================================================
   Instagram Section
   ========================================================================== */

.mc-instagram {
	background: var(--mc-foreground);
	padding: var(--mc-sp-2xl) 0;
}

.mc-instagram__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: var(--mc-sp-xl);
}

.mc-instagram__left {
	text-align: center;
}

.mc-instagram__frame {
	width: 280px;
	height: 280px;
	border-radius: 50%;
	border: 4px solid var(--mc-secondary);
	overflow: hidden;
	margin: 0 auto var(--mc-sp-l);
}

.mc-instagram__frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mc-instagram__left h2 {
	color: var(--mc-background);
	font-size: clamp(1.8rem, 3vw + 0.5rem, 3rem);
	font-weight: 700;
	line-height: 1.1;
}

.mc-instagram__left p {
	color: rgba(255, 255, 255, 0.8);
	margin: var(--mc-sp-s) 0 var(--mc-sp-l);
}

.mc-instagram__feed {
	max-width: 400px;
	margin: 0 auto;
}

.mc-instagram__feed .instagram-media {
	margin: 0 auto !important;
}

@media (max-width: 768px) {
	.mc-instagram__inner {
		grid-template-columns: 1fr;
	}

	.mc-instagram__frame {
		width: 220px;
		height: 220px;
	}
}

/* ==========================================================================
   Footer
   ========================================================================== */

.mc-footer {
	background: var(--mc-foreground);
	color: var(--mc-background);
	padding-top: var(--mc-sp-xl);
}

.mc-footer__inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 0.5fr;
	gap: var(--mc-sp-l);
	padding-bottom: var(--mc-sp-xl);
}

.mc-footer__logo img {
	filter: brightness(0) invert(1);
	margin-bottom: var(--mc-sp-s);
}

.mc-footer__brand-desc {
	font-size: var(--mc-fs-small);
	color: var(--mc-muted);
	line-height: 1.6;
	margin-bottom: var(--mc-sp-m);
}

.mc-footer__subbrands {
	display: flex;
	gap: var(--mc-sp-s);
	align-items: center;
}

.mc-footer__subbrand-icon {
	filter: brightness(0) invert(1);
	opacity: 0.6;
}

.mc-footer__subbrand-text {
	font-family: var(--mc-font-heading);
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 0.3px;
}

.mc-footer__heading {
	font-size: var(--mc-fs-large);
	color: var(--mc-secondary);
	margin-bottom: var(--mc-sp-s);
}

.mc-footer__address,
.mc-footer__hours p,
.mc-footer__contact {
	font-size: var(--mc-fs-small);
	line-height: 1.8;
	margin-bottom: var(--mc-sp-xs);
}

.mc-footer a {
	color: var(--mc-background);
	text-decoration: none;
	transition: color 0.2s ease;
}

.mc-footer a:hover {
	color: var(--mc-secondary);
}

.mc-footer__social-links {
	display: flex;
	gap: var(--mc-sp-s);
}

.mc-social-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.mc-social-circle:hover {
	background: var(--mc-primary);
	border-color: var(--mc-primary);
	color: #fff;
}

.mc-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: var(--mc-sp-m) 0;
}

.mc-footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--mc-sp-s);
}

.mc-footer__copy {
	font-size: var(--mc-fs-small);
	color: var(--mc-muted);
}

.mc-footer__legal {
	display: flex;
	gap: var(--mc-sp-m);
}

.mc-footer__legal a {
	font-size: var(--mc-fs-small);
	color: var(--mc-muted);
}

.mc-footer__legal a:hover {
	color: var(--mc-secondary);
}

.mc-footer__dev {
	font-size: 0.7rem;
	color: var(--mc-muted);
	letter-spacing: 0.04em;
}

.mc-footer__dev a {
	color: var(--mc-secondary);
	text-decoration: none;
	font-weight: 600;
}

.mc-footer__dev a:hover {
	color: #fff;
}

@media (max-width: 768px) {
	.mc-footer__inner {
		grid-template-columns: 1fr;
	}

	.mc-footer__bottom-inner {
		flex-direction: column;
		text-align: center;
	}

	.mc-footer__legal {
		justify-content: center;
	}
}

/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */

.mc-whatsapp {
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	z-index: 990;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.25rem;
	background: #25D366;
	color: #fff;
	border-radius: 100px;
	text-decoration: none;
	font-weight: 600;
	font-size: var(--mc-fs-small);
	box-shadow: var(--mc-shadow-md);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mc-whatsapp:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
	color: #fff;
}

.mc-whatsapp svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

@media (max-width: 768px) {
	.mc-whatsapp {
		display: none;
	}
}

/* ==========================================================================
   Back to Top
   ========================================================================== */

.mc-back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 990;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--mc-primary);
	color: var(--mc-background);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
	box-shadow: var(--mc-shadow-md);
}

.mc-back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
}

.mc-back-to-top:hover {
	transform: translateY(-2px);
	background: var(--mc-accent);
}

.mc-back-to-top svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

/* ==========================================================================
   Membership Popup
   ========================================================================== */

.mc-popup {
	position: fixed;
	inset: 0;
	z-index: 9990;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mc-popup.is-visible {
	opacity: 1;
	visibility: visible;
}

.mc-popup__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

.mc-popup__content {
	position: relative;
	background: var(--mc-background);
	border-radius: 8px;
	max-width: 500px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	transform: translateY(20px);
	transition: transform 0.3s ease;
}

.mc-popup.is-visible .mc-popup__content {
	transform: translateY(0);
}

.mc-popup__close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	width: 36px;
	height: 36px;
	border: none;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.mc-popup__close:hover {
	background: rgba(0, 0, 0, 0.8);
}

.mc-popup__body {
	padding: var(--mc-sp-m);
	text-align: center;
}

.mc-popup__body h3 {
	margin-bottom: var(--mc-sp-xs);
}

.mc-popup__body p {
	color: var(--mc-muted);
	font-size: var(--mc-fs-small);
	margin-bottom: var(--mc-sp-m);
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */

.mc-fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.mc-fade-in.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ==========================================================================
   Hide Oversite decorative elements
   ========================================================================== */

.qweb-wave,
.qweb-separator,
[class*="qweb-wave"],
[class*="wave-separator"],
[class*="qweb-decoration"],
[class*="qweb-shape"],
[class*="qweb-circle"],
[class*="qweb-curve"],
[class*="qweb-ornament"],
.qweb-decorative,
svg[class*="qweb-"],
[data-qweb-decoration] {
	display: none !important;
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.mc-fade-in {
		opacity: 1;
		transform: none;
	}
}

/* ==========================================================================
   Legal Pages (Privacy, Terms, Health Declaration)
   ========================================================================== */

.mc-page {
	padding: var(--mc-sp-xl) 0;
	background: var(--mc-background);
	min-height: 60vh;
}

.mc-legal {
	max-width: 820px;
	margin: 0 auto;
	color: var(--mc-foreground);
	line-height: 1.8;
}

.mc-legal h1 {
	font-family: var(--mc-font-heading);
	font-size: clamp(1.8rem, 4vw, 2.4rem);
	font-weight: 700;
	color: var(--mc-primary);
	margin-bottom: var(--mc-sp-m);
	padding-bottom: var(--mc-sp-s);
	border-bottom: 3px solid var(--mc-secondary);
}

.mc-legal h2 {
	font-family: var(--mc-font-heading);
	font-size: clamp(1.2rem, 3vw, 1.5rem);
	font-weight: 700;
	color: var(--mc-primary);
	margin-top: var(--mc-sp-l);
	margin-bottom: var(--mc-sp-s);
}

.mc-legal h3 {
	font-family: var(--mc-font-heading);
	font-size: clamp(1rem, 2.5vw, 1.2rem);
	font-weight: 700;
	color: var(--mc-accent);
	margin-top: var(--mc-sp-l);
	margin-bottom: var(--mc-sp-s);
}

.mc-legal p {
	margin-bottom: var(--mc-sp-s);
	font-size: 0.95rem;
}

.mc-legal ul {
	list-style: disc;
	padding-left: 1.5rem;
	margin-bottom: var(--mc-sp-m);
}

.mc-legal ul ul {
	list-style: circle;
	margin-top: 0.3rem;
	margin-bottom: 0.3rem;
}

.mc-legal li {
	margin-bottom: 0.4rem;
	font-size: 0.95rem;
	line-height: 1.7;
}

.mc-legal a {
	color: var(--mc-primary);
	text-decoration: underline;
	text-decoration-color: var(--mc-secondary);
	text-underline-offset: 2px;
}

.mc-legal a:hover {
	color: var(--mc-accent);
}

@media (max-width: 768px) {
	.mc-page {
		padding: var(--mc-sp-l) 0;
	}

	.mc-legal {
		padding: 0 var(--mc-sp-s);
	}
}

/* ==========================================================================
   Page Hero (inner pages)
   ========================================================================== */

.mc-page-hero {
	position: relative;
	min-height: 340px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.mc-page-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.mc-page-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mc-page-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 75, 71, 0.8) 0%, rgba(0, 75, 71, 0.6) 100%);
	z-index: 1;
}

.mc-page-hero__content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #fff;
	padding: var(--mc-sp-xl) var(--mc-sp-m);
}

.mc-page-hero__content h1 {
	font-family: var(--mc-font-heading);
	font-size: var(--mc-fs-huge);
	margin: 0 0 var(--mc-sp-xs);
	color: var(--mc-secondary);
}

.mc-page-hero__content p {
	font-size: var(--mc-fs-large);
	max-width: 600px;
	margin: 0 auto;
	opacity: 0.9;
}

.mc-page-hero--tall {
	min-height: 80vh;
}

.mc-page-hero--tall .mc-page-hero__overlay {
	background: rgba(0, 0, 0, 0.50);
}

.mc-page-hero--tall .mc-page-hero__content h1 {
	color: var(--mc-background);
	font-size: clamp(2.5rem, 5vw, 3.75rem);
	font-weight: 400;
}

/* ==========================================================================
   Location Blocks (Locations page — photo+text | map)
   ========================================================================== */

.mc-section--flush {
	padding-left: 0;
	padding-right: 0;
}

.mc-loc-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 480px;
}

.mc-loc-block__photo {
	position: relative;
	overflow: hidden;
}

.mc-loc-block__photo > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mc-loc-block__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 40%, rgba(0, 0, 0, 0.15) 100%);
	pointer-events: none;
}

.mc-loc-block__details {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: var(--mc-sp-l) var(--mc-sp-l) var(--mc-sp-m);
	z-index: 2;
}

.mc-loc-block__details h2 {
	font-family: var(--mc-font-heading);
	font-size: clamp(1.6rem, 2.5vw, 2.2rem);
	color: var(--mc-background);
	margin: 0 0 var(--mc-sp-xs);
}

.mc-loc-block__address {
	color: rgba(255, 255, 255, 0.85);
	font-size: var(--mc-fs-small);
	line-height: 1.5;
	margin: 0;
}

.mc-loc-block__details h3 {
	font-family: var(--mc-font-body);
	font-weight: 700;
	font-size: var(--mc-fs-medium);
	color: var(--mc-background);
	margin: var(--mc-sp-s) 0 var(--mc-sp-2xs);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.mc-loc-block__details p {
	color: rgba(255, 255, 255, 0.9);
	font-size: var(--mc-fs-small);
	line-height: 1.6;
	margin: 0 0 2px;
}

.mc-loc-block__details a {
	color: var(--mc-background);
}

.mc-loc-block__details a:hover {
	color: var(--mc-secondary);
}

.mc-loc-block__logos {
	display: flex;
	gap: var(--mc-sp-xs);
	align-items: center;
	margin-top: var(--mc-sp-s);
}

.mc-loc-block__logos img {
	height: 28px;
	width: auto;
	opacity: 0.9;
}

.mc-loc-block__map {
	position: relative;
	min-height: 480px;
}

.mc-loc-block__map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

@media (max-width: 768px) {
	.mc-loc-block {
		grid-template-columns: 1fr;
	}

	.mc-loc-block__photo {
		min-height: 420px;
	}

	.mc-loc-block__map {
		min-height: 300px;
	}
}

/* ==========================================================================
   Elements Grid (Facilities page)
   ========================================================================== */

.mc-elements-grid {
	display: flex;
	flex-direction: column;
	gap: var(--mc-sp-xl);
}

.mc-element-card {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--mc-sp-l);
	align-items: center;
}

.mc-element-card__image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
}

.mc-element-card__content h2 {
	font-family: var(--mc-font-heading);
	font-size: var(--mc-fs-xlarge);
	color: var(--mc-primary);
	margin: 0 0 var(--mc-sp-xs);
}

.mc-element-card__content p {
	font-size: var(--mc-fs-medium);
	color: var(--mc-muted);
	line-height: 1.7;
}

@media (min-width: 768px) {
	.mc-element-card {
		grid-template-columns: 1fr 1fr;
	}

	.mc-element-card--reverse {
		direction: rtl;
	}

	.mc-element-card--reverse > * {
		direction: ltr;
	}
}

/* ==========================================================================
   Print
   ========================================================================== */

@media print {
	.mc-top-bar,
	.mc-back-to-top,
	.mc-whatsapp,
	.mc-header__toggle,
	.mc-header__cta,
	.mc-footer__social-links {
		display: none !important;
	}

	body {
		color: #000;
		background: #fff;
	}

	a[href]::after {
		content: " (" attr(href) ")";
		font-size: 0.8em;
		font-weight: normal;
	}
}
