@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
	--bg: #050505;
	--bg-alt: #0b0b0b;
	--panel: rgba(0, 0, 0, 0.82);
	--panel-strong: rgba(0, 0, 0, 0.92);
	--text: #ffffff;
	--muted: rgba(255, 255, 255, 0.78);
	--yellow: #ffd400;
	--yellow-soft: rgba(255, 212, 0, 0.16);
	--line: rgba(255, 212, 0, 0.18);
	--shadow: 0 28px 90px rgba(0, 0, 0, 0.7);
	--radius-xl: 32px;
	--radius-lg: 24px;
	--radius-md: 18px;
	--radius-sm: 14px;
	--container: 1180px;
	--ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	min-height: 100vh;
	background:
		radial-gradient(circle at top left, rgba(255, 212, 0, 0.2), transparent 24%),
		radial-gradient(circle at 80% 15%, rgba(255, 212, 0, 0.08), transparent 20%),
		linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
	color: var(--text);
	font-family: 'Plus Jakarta Sans', sans-serif;
	line-height: 1.6;
	overflow-x: hidden;
	position: relative;
}
body::before {
	content: '';
	position: fixed;
	inset: 0;
	pointer-events: none;
	background-image: linear-gradient(rgba(255, 212, 0, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 212, 0, 0.05) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 82%);
	opacity: 0.32;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: min(100% - 32px, var(--container)); margin: 0 auto; }
.section { padding: 100px 0; position: relative; }
.page-hero { padding: 78px 0 26px; }
.section-tight { padding: 70px 0; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.section-head p { max-width: 620px; color: var(--muted); margin: 0; }

.kicker, .eyebrow { letter-spacing: 0.18em; text-transform: uppercase; color: var(--yellow); font-size: 0.78rem; font-weight: 800; margin: 0 0 12px; }
h1, h2, h3, h4, .brand strong { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.03em; margin: 0; }
h1 { font-size: clamp(3rem, 8vw, 6.5rem); line-height: 0.92; }
h2 { font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1; }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); }
p { margin: 0 0 16px; color: var(--muted); }
.lead { font-size: clamp(1rem, 1.25vw, 1.18rem); color: rgba(255, 255, 255, 0.86); }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.surface,
.card,
.panel,
.pricing-card,
.trainer-card,
.gallery-card,
.facility-card,
.service-card,
.stats-card,
.faq-item,
.testimonial-card,
.form-card,
.story-card,
.hero-panel,
.page-banner,
.cta-panel,
.modal-dialog {
	background: linear-gradient(180deg, rgba(14, 14, 14, 0.98), rgba(5, 5, 5, 0.98));
	border: 1px solid rgba(255, 212, 0, 0.18);
	border-radius: var(--radius-xl);
	backdrop-filter: blur(18px);
	box-shadow: var(--shadow);
	color: var(--text);
}

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent; font-weight: 700; transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease); position: relative; overflow: hidden; }
.btn::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 0%, rgba(255, 212, 0, 0.22) 50%, transparent 100%); transform: translateX(-120%); transition: transform 500ms var(--ease); }
.btn:hover::before { transform: translateX(120%); }
.btn-primary { color: #050505; background: linear-gradient(135deg, #ffe36a 0%, var(--yellow) 45%, #ffbf00 100%); box-shadow: 0 18px 40px rgba(255, 212, 0, 0.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 48px rgba(255, 212, 0, 0.38); }
.btn-outline { color: var(--text); border-color: rgba(255, 212, 0, 0.18); background: rgba(0, 0, 0, 0.75); }
.btn-outline:hover, .btn-ghost:hover { border-color: rgba(255, 212, 0, 0.72); background: rgba(255, 212, 0, 0.12); color: #050505; transform: translateY(-2px); }
.btn-ghost { color: var(--text); border-color: rgba(255, 212, 0, 0.14); background: rgba(0, 0, 0, 0.55); }
.btn-small { min-height: 44px; padding: 0 18px; font-size: 0.95rem; }

.site-header { position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(22px); background: rgba(5, 5, 5, 0.88); border-bottom: 1px solid rgba(255, 212, 0, 0.14); }
.nav-shell { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 82px; }
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-mark { display: block; width: 48px; height: 48px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; gap: 2px; }
.brand-copy small { color: rgba(255, 255, 255, 0.72); font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-brand { align-items: center; }
.footer-logo-wordmark { display: block; width: min(100%, 300px); height: auto; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 10px; }
.site-nav a { color: rgba(255, 255, 255, 0.92); padding: 11px 14px; border-radius: 999px; transition: background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease); }
.site-nav a:hover, .site-nav a.active { color: #050505; background: var(--yellow); transform: translateY(-1px); }
.nav-toggle { display: none; width: 48px; height: 48px; border-radius: 14px; border: 1px solid rgba(255, 212, 0, 0.2); background: rgba(0, 0, 0, 0.72); padding: 0; align-items: center; justify-content: center; gap: 5px; flex-direction: column; }
.nav-toggle span { width: 18px; height: 2px; border-radius: 99px; background: var(--yellow); }

.hero { min-height: calc(100vh - 82px); display: grid; align-items: center; position: relative; overflow: clip; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 34px; align-items: center; padding: 72px 0; }
.hero-copy { max-width: 760px; position: relative; z-index: 1; }
.hero-copy p { max-width: 640px; }
.hero-actions, .hero-stats, .team-controls, .filter-bar, .carousel-controls, .map-bar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.page-banner .btn, .cta-panel .btn {
	min-width: 220px;
	justify-content: center;
}
.control-chip {
	min-height: 44px;
	padding: 0 18px;
	border-radius: 999px;
	border: 1px solid rgba(255, 212, 0, 0.22);
	background: rgba(0, 0, 0, 0.78);
	color: var(--yellow);
	font-weight: 800;
	letter-spacing: 0.04em;
	transition: transform 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.control-chip:hover {
	transform: translateY(-2px);
	background: linear-gradient(135deg, #ffe36a 0%, var(--yellow) 45%, #ffbf00 100%);
	color: #050505;
	border-color: transparent;
	box-shadow: 0 18px 40px rgba(255, 212, 0, 0.24);
}
.control-chip:focus-visible {
	outline: 2px solid rgba(255, 227, 106, 0.9);
	outline-offset: 2px;
}
.filter-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 999px;
	border: 1px solid rgba(255, 212, 0, 0.18) !important;
	background: rgba(0, 0, 0, 0.8) !important;
	background-color: rgba(0, 0, 0, 0.8) !important;
	color: var(--text) !important;
	font: 700 0.92rem/1 'Inter', sans-serif;
	letter-spacing: 0.02em;
	appearance: none !important;
	-webkit-appearance: none !important;
	box-shadow: inset 0 0 0 1px rgba(255, 212, 0, 0.04);
	transition: transform 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.filter-chip:hover,
.filter-chip.active {
	transform: translateY(-2px);
	background: linear-gradient(135deg, #ffe36a 0%, var(--yellow) 45%, #ffbf00 100%) !important;
	color: #050505 !important;
	border-color: transparent !important;
	box-shadow: 0 18px 40px rgba(255, 212, 0, 0.28) !important;
}
.filter-chip:focus-visible {
	outline: 2px solid rgba(255, 227, 106, 0.9);
	outline-offset: 2px;
}
.gallery-search input, .trainer-search input {
	all: unset !important;
	display: block !important;
	width: 100%;
	min-height: 56px;
	padding: 0 18px;
	border-radius: 18px;
	border: 1px solid rgba(255, 212, 0, 0.22) !important;
	background: rgba(0, 0, 0, 0.92) !important;
	background-color: rgba(0, 0, 0, 0.92) !important;
	background-image: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(5, 5, 5, 0.98)) !important;
	background-clip: padding-box;
	background-origin: border-box;
	color: var(--text) !important;
	font: 600 0.98rem/1.2 'Inter', sans-serif;
	letter-spacing: 0.02em;
	appearance: none !important;
	-webkit-appearance: none !important;
	-webkit-text-fill-color: var(--text) !important;
	caret-color: var(--yellow);
	color-scheme: dark !important;
	box-sizing: border-box;
	box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.92) !important, inset 0 0 0 1px rgba(255, 212, 0, 0.08), 0 10px 24px rgba(0, 0, 0, 0.18) !important;
	transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), transform 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease);
}
.gallery-search input:hover, .trainer-search input:hover {
	border-color: rgba(255, 212, 0, 0.5) !important;
}
.gallery-search input::-webkit-search-decoration,
.gallery-search input::-webkit-search-cancel-button,
.gallery-search input::-webkit-search-results-button,
.gallery-search input::-webkit-search-results-decoration,
.trainer-search input::-webkit-search-decoration,
.trainer-search input::-webkit-search-cancel-button,
.trainer-search input::-webkit-search-results-button,
.trainer-search input::-webkit-search-results-decoration {
	-webkit-appearance: none;
}
.gallery-search input::placeholder, .trainer-search input::placeholder { color: rgba(255, 255, 255, 0.46); }
.gallery-search input:focus, .trainer-search input:focus {
	outline: none;
	border-color: rgba(255, 212, 0, 0.84) !important;
	box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.96) !important, 0 0 0 4px rgba(255, 212, 0, 0.12) !important;
	background: rgba(0, 0, 0, 0.96) !important;
	background-color: rgba(0, 0, 0, 0.96) !important;
}
.hero-actions { margin: 30px 0 22px; }
.stat-pill { min-width: 160px; padding: 18px 20px; border-radius: 18px; border: 1px solid rgba(255, 212, 0, 0.18); background: rgba(0, 0, 0, 0.72); backdrop-filter: blur(14px); }
.stat-pill strong { display: block; color: var(--yellow); font-size: 1.45rem; font-family: 'Space Grotesk', sans-serif; }
.stat-pill span { color: rgba(255, 255, 255, 0.84); font-size: 0.92rem; }
.hero-visual { position: relative; min-height: 700px; border-radius: 38px; overflow: hidden; border: 1px solid rgba(255, 212, 0, 0.14); box-shadow: var(--shadow); }
.hero-visual::before, .hero-visual::after { content: ''; position: absolute; border-radius: 999px; filter: blur(5px); }
.hero-visual::before { width: 320px; height: 320px; background: radial-gradient(circle, rgba(255, 212, 0, 0.4), transparent 68%); top: -30px; right: -30px; }
.hero-visual::after { width: 220px; height: 220px; background: radial-gradient(circle, rgba(255, 212, 0, 0.14), transparent 70%); bottom: 20px; left: 16px; }
.hero-panel { position: absolute; inset: 22px; border-radius: 30px; background: linear-gradient(180deg, rgba(10, 10, 10, 0.34), rgba(10, 10, 10, 0.76)), linear-gradient(135deg, rgba(255, 212, 0, 0.18), rgba(0, 0, 0, 0.1)); border: 1px solid rgba(255, 212, 0, 0.16); display: flex; flex-direction: column; justify-content: space-between; padding: 28px; }
.hero-panel .badge-row { display: flex; flex-wrap: wrap; gap: 10px; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px; background: rgba(0, 0, 0, 0.72); border: 1px solid rgba(255, 212, 0, 0.16); color: var(--text); font-size: 0.86rem; }
.hero-panel .figure { align-self: flex-end; width: min(92%, 520px); border-radius: 28px; padding: 20px; background: rgba(0, 0, 0, 0.72); border: 1px solid rgba(255, 212, 0, 0.16); }
.figure-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.figure-card { min-height: 120px; border-radius: 22px; padding: 18px; background: linear-gradient(135deg, rgba(255, 212, 0, 0.12), rgba(0, 0, 0, 0.85)); border: 1px solid rgba(255, 212, 0, 0.16); }
.figure-card strong { display: block; font-size: clamp(1rem, 1.4vw, 1.22rem); line-height: 1.1; margin-top: 22px; max-width: 100%; overflow-wrap: anywhere; word-break: break-word; }
.accent-line { width: 84px; height: 4px; border-radius: 999px; background: linear-gradient(90deg, var(--yellow), rgba(255, 212, 0, 0.1)); }

.icon-card, .service-card, .facility-card, .story-card, .stats-card, .testimonial-card, .faq-item, .form-card, .pricing-card, .trainer-card, .gallery-card { padding: 22px; }
.icon-card { position: relative; overflow: hidden; min-height: 220px; }
.icon-card:hover, .service-card:hover, .facility-card:hover, .gallery-card:hover, .story-card:hover, .pricing-card:hover, .trainer-card:hover { transform: translateY(-6px); border-color: rgba(255, 212, 0, 0.28); box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5); }
.icon-badge { width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(255, 212, 0, 0.2), rgba(0, 0, 0, 0.85)); border: 1px solid rgba(255, 212, 0, 0.18); margin-bottom: 18px; font-size: 1.2rem; color: var(--yellow); }
.feature-list, .pricing-list, .meta-list, .timeline-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.feature-list li, .pricing-list li, .meta-list li, .timeline-list li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255, 255, 255, 0.88); }
.feature-list li::before, .pricing-list li::before, .meta-list li::before, .timeline-list li::before { content: ''; width: 8px; height: 8px; border-radius: 999px; margin-top: 9px; flex: 0 0 auto; background: var(--yellow); box-shadow: 0 0 0 6px rgba(255, 212, 0, 0.08); }
.trainer-card { display: flex; flex-direction: column; gap: 18px; cursor: pointer; transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease); }
.trainer-visual, .gallery-visual, .facility-visual, .story-visual { min-height: 240px; border-radius: 24px; background: linear-gradient(180deg, rgba(10, 10, 10, 0.15), rgba(10, 10, 10, 0.85)), radial-gradient(circle at 20% 20%, rgba(255, 212, 0, 0.22), transparent 26%), linear-gradient(135deg, rgba(255, 212, 0, 0.12), rgba(0, 0, 0, 0.9)); position: relative; overflow: hidden; }
.trainer-visual::after, .gallery-visual::after, .facility-visual::after, .story-visual::after { content: ''; position: absolute; inset: auto 14px 14px auto; width: 120px; height: 120px; border-radius: 28px; background: radial-gradient(circle, rgba(255, 212, 0, 0.22), transparent 72%); transform: rotate(12deg); }
.trainer-body, .gallery-body, .facility-body, .story-body { display: grid; gap: 10px; }
.social-links, .footer-links, .page-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a, .footer-links a, .page-links a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 999px; border: 1px solid rgba(255, 212, 0, 0.16); background: rgba(0, 0, 0, 0.72); transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease); }
.social-links a:hover, .footer-links a:hover, .page-links a:hover { transform: translateY(-2px); background: var(--yellow); color: #050505; border-color: transparent; }
.stats-card { text-align: center; }
.stats-card strong { display: block; font-size: clamp(2rem, 4vw, 3.4rem); font-family: 'Space Grotesk', sans-serif; color: var(--yellow); }
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track { display: grid; grid-auto-flow: column; grid-auto-columns: 100%; transition: transform 500ms var(--ease); }
.testimonial-card { display: grid; gap: 14px; }
.rating { color: var(--yellow); letter-spacing: 0.18em; }
.pricing-card { position: relative; overflow: hidden; }
.pricing-card.featured { border-color: rgba(255, 212, 0, 0.35); box-shadow: 0 24px 80px rgba(255, 212, 0, 0.1), var(--shadow); }
.pricing-card.featured::before { content: 'Most Popular'; position: absolute; top: 18px; right: -42px; transform: rotate(35deg); background: var(--yellow); color: #050505; padding: 8px 58px; font-weight: 800; letter-spacing: 0.06em; }
.price { font-size: clamp(2.6rem, 5vw, 4rem); line-height: 0.94; color: var(--text); font-family: 'Space Grotesk', sans-serif; }
.price span { font-size: 1rem; color: var(--muted); }
.faq-item button { width: 100%; padding: 0; border: none; background: transparent; color: var(--text); display: flex; align-items: center; justify-content: space-between; gap: 14px; text-align: left; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 280ms var(--ease), opacity 280ms var(--ease); opacity: 0; }
.faq-item.active .faq-answer { max-height: 220px; opacity: 1; }
.faq-icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 999px; background: rgba(0, 0, 0, 0.72); border: 1px solid rgba(255, 212, 0, 0.18); flex: 0 0 auto; color: var(--yellow); }
.cta-panel { position: relative; overflow: hidden; padding: 34px; border-radius: 38px; background: radial-gradient(circle at top right, rgba(255, 212, 0, 0.2), transparent 22%), linear-gradient(135deg, rgba(255, 212, 0, 0.12), rgba(0, 0, 0, 0.88)); border: 1px solid rgba(255, 212, 0, 0.16); }
.cta-panel::after { content: ''; position: absolute; inset: auto -10% -42% auto; width: 380px; height: 380px; border-radius: 999px; background: radial-gradient(circle, rgba(255, 212, 0, 0.2), transparent 68%); }
.footer { padding: 70px 0 34px; border-top: 1px solid rgba(255, 212, 0, 0.14); margin-top: 30px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 0.8fr 0.8fr; gap: 30px; }
.footer a, .footer span { display: block; color: rgba(255, 255, 255, 0.82); margin-top: 10px; }
.footer h3 { margin-bottom: 14px; }
.page-banner { min-height: 320px; padding: 34px; display: flex; align-items: end; justify-content: space-between; gap: 24px; background: radial-gradient(circle at top left, rgba(255, 212, 0, 0.18), transparent 24%), linear-gradient(180deg, rgba(10, 10, 10, 0.38), rgba(10, 10, 10, 0.82)); }
.page-banner p { max-width: 680px; }
.form-grid { display: grid; gap: 16px; }
.field { display: grid; gap: 8px; }
.field input, .field textarea, .field select { width: 100%; border-radius: 18px; border: 1px solid rgba(255, 212, 0, 0.18); background: rgba(0, 0, 0, 0.72); color: var(--text); padding: 16px 18px; outline: none; transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: rgba(255, 212, 0, 0.5); box-shadow: 0 0 0 5px rgba(255, 212, 0, 0.09); }
.field textarea { min-height: 150px; resize: vertical; }
.notice { font-size: 0.92rem; color: rgba(255, 255, 255, 0.72); }
.page-transition { position: fixed; inset: 0; background: #050505; z-index: 2000; pointer-events: none; opacity: 0; transition: opacity 220ms var(--ease); }
body.is-navigating .page-transition { opacity: 1; }
.cursor-dot, .cursor-ring { display: none; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.modal { position: fixed; inset: 0; display: grid; place-items: center; padding: 18px; background: rgba(10, 10, 10, 0.82); backdrop-filter: blur(18px); opacity: 0; pointer-events: none; transition: opacity 220ms var(--ease); z-index: 2500; }
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal-dialog { width: min(100%, 860px); max-height: min(90vh, 860px); overflow: auto; border-radius: 30px; }
.modal-body { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; padding: 24px; }
.modal-close { position: sticky; top: 16px; margin-left: auto; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 999px; background: rgba(0, 0, 0, 0.72); border: 1px solid rgba(255, 212, 0, 0.18); color: var(--yellow); }
.placeholder-visual { min-height: 320px; border-radius: 24px; background: linear-gradient(135deg, rgba(255, 212, 0, 0.24), rgba(0, 0, 0, 0.9)); border: 1px solid rgba(255, 212, 0, 0.18); display: grid; place-items: center; color: var(--text); }
.masonry { columns: 3 260px; column-gap: 20px; }
.masonry > * { break-inside: avoid; margin-bottom: 20px; }
.gallery-card { cursor: pointer; position: relative; overflow: hidden; }
.gallery-card .label { display: inline-flex; margin-bottom: 12px; padding: 8px 12px; border-radius: 999px; background: rgba(255, 212, 0, 0.12); color: var(--yellow); font-size: 0.8rem; }
.gallery-card .thumbnail { min-height: 220px; border-radius: 22px; margin-bottom: 16px; background: linear-gradient(180deg, rgba(10, 10, 10, 0.1), rgba(10, 10, 10, 0.82)), linear-gradient(135deg, rgba(255, 212, 0, 0.24), rgba(0, 0, 0, 0.9)); transform: scale(1); transition: transform 400ms var(--ease); }
.gallery-card:hover .thumbnail { transform: scale(1.06); }
.map-frame { width: 100%; min-height: 420px; border: 0; border-radius: 26px; filter: saturate(0.9) contrast(1.05); }
.whatsapp-fab { position: fixed; right: 18px; bottom: 18px; z-index: 1200; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 999px; background: linear-gradient(135deg, #ffe36a 0%, var(--yellow) 45%, #ffbf00 100%); color: #050505; border: 1px solid rgba(255, 212, 0, 0.28); box-shadow: 0 18px 40px rgba(255, 212, 0, 0.28); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
