/*
Theme Name: Hive Fitness
Theme URI: https://hivefitnessclt.com
Description: Custom WordPress theme for Hive Fitness — Charlotte's premium community gym. Includes all main pages: Home, Memberships, Schedule, Ignite+ Bootcamp, Personal Training, Premium Open Gym, About, Member Wins, Contact, Privacy, and a Coming Soon page for the Train at Hive equipment library. Integrates with WellnessLiving, Smash Balloon Instagram Feed, Ninja Forms, Complianz, Google Analytics 4, and Meta Pixel.
Author: Hive Fitness
Version: 1.0.0
License: All Rights Reserved
Text Domain: hive-fitness
Requires PHP: 7.4
Requires at least: 6.0
Tested up to: 6.6
*/

:root {
	--hive-black: #0e0e0e;
	--hive-charcoal: #1a1a1a;
	--hive-concrete: #2a2a2a;
	--hive-blue: #38b6ff;
	--hive-blue-deep: #1a8fd9;
	--hive-bone: #f7f4ee;
	--hive-bone-dim: #e8e3d8;
	--hive-text-dim: #a8a8a8;
	--font-display: 'Bebas Neue','Oswald','Impact',sans-serif;
	--font-body: 'Inter',system-ui,-apple-system,sans-serif;
	--font-serif: 'Fraunces','Georgia',serif;
	--ease: cubic-bezier(0.22,1,0.36,1);
}
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
	font-family: var(--font-body);
	background: var(--hive-black);
	color: var(--hive-bone);
	line-height: 1.6;
	font-size: 17px;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--hive-blue); color: var(--hive-black); }

h1,h2,h3,h4 {
	font-family: var(--font-display);
	font-weight: 400;
	line-height: .95;
	letter-spacing: .01em;
	text-transform: uppercase;
}
h1 { font-size: clamp(3rem,9vw,7.5rem); letter-spacing: -.01em; }
h2 { font-size: clamp(2.25rem,6vw,5rem); }
h3 { font-size: clamp(1.75rem,4vw,3rem); }
h4 { font-size: 1.15rem; }

.eyebrow {
	font-family: var(--font-body);
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .25em;
	text-transform: uppercase;
	color: var(--hive-blue);
	display: inline-block;
	margin-bottom: 1.25rem;
	position: relative;
	padding-left: 2.25rem;
}
.eyebrow::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 1.75rem;
	height: 1px;
	background: var(--hive-blue);
}
.lead {
	font-size: clamp(1.05rem,1.8vw,1.3rem);
	line-height: 1.55;
	color: var(--hive-bone-dim);
	max-width: 56ch;
}
.accent { color: var(--hive-blue); }
.text-center { text-align: center; }
.text-accent { color: var(--hive-blue); }
.text-dim { color: var(--hive-text-dim); }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2.5rem); }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2.5rem); }
.section-pad { padding: clamp(4rem,10vw,8rem) 0; }
.bg-black { background: var(--hive-black); }
.bg-charcoal { background: var(--hive-charcoal); }

.btn {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	padding: 1.05rem 2rem;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: .95rem;
	letter-spacing: .04em;
	text-transform: uppercase;
	border-radius: 999px;
	transition: all .4s var(--ease);
	cursor: pointer;
	white-space: nowrap;
	text-decoration: none !important;
}
.btn-primary { background: var(--hive-blue); color: var(--hive-black); }
.btn-primary:hover { background: var(--hive-bone); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(56,182,255,0.25); }
.btn-ghost { background: transparent; color: var(--hive-bone); border: 1px solid rgba(247,244,238,0.3); }
.btn-ghost:hover { border-color: var(--hive-blue); color: var(--hive-blue); }
.arrow { display: inline-block; transition: transform .4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* Header */
.site-header {
	position: fixed;
	top: 26px;
	left: 0; right: 0;
	z-index: 100;
	padding: 1.25rem 0;
	transition: all .4s var(--ease);
	background: transparent;
}
.site-header.scrolled {
	background: rgba(14,14,14,0.92);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: .85rem 0;
	border-bottom: 1px solid rgba(56,182,255,0.1);
}
.site-header.solid {
	background: var(--hive-black);
	border-bottom: 1px solid rgba(56,182,255,0.1);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand-logo { display: block; height: 48px; width: auto; max-width: 200px; transition: opacity .3s var(--ease), height .4s var(--ease); }
.site-header.scrolled .brand-logo { height: 40px; }
.site-brand:hover .brand-logo { opacity: .85; }

.primary-nav { display: none; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .primary-nav { display: flex; } }

/* Defensive: kill bullets/list styling in case any plugin or WordPress core CSS tries to apply them.
   The nav is rendered as <a> tags directly, but this protects against unexpected ul/li nesting. */
.primary-nav, .primary-nav ul, .primary-nav li, .primary-nav-wp, .primary-nav-wp ul, .primary-nav-wp li {
	list-style: none !important;
	list-style-type: none !important;
	margin: 0;
	padding: 0;
}
.primary-nav li, .primary-nav-wp li { display: inline-flex; }
.primary-nav li::before, .primary-nav li::marker { content: none !important; }

.primary-nav a {
	font-size: .85rem;
	font-weight: 500;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--hive-bone);
	position: relative;
	padding: .5rem 0;
}
.primary-nav a::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0;
	width: 0; height: 1px;
	background: var(--hive-blue);
	transition: width .4s var(--ease);
}
.primary-nav a:hover, .primary-nav a.active { color: var(--hive-blue); }
.primary-nav a:hover::after, .primary-nav a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 1.25rem; }
.phone-link { display: none; font-size: .9rem; color: var(--hive-bone); align-items: center; gap: .4rem; }
@media (min-width: 768px) { .phone-link { display: flex; } }
.phone-link:hover { color: var(--hive-blue); }

.menu-toggle { display: flex; flex-direction: column; gap: 5px; padding: .5rem; width: 40px; height: 40px; align-items: center; justify-content: center; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--hive-bone); transition: all .4s var(--ease); }
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
	position: fixed;
	inset: 0;
	background: var(--hive-black);
	z-index: 99;
	padding: 6rem 2rem 3rem;
	transform: translateY(-100%);
	transition: transform .5s var(--ease);
	overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: .5rem; }
.mobile-menu a {
	font-family: var(--font-display);
	font-size: 2.5rem;
	color: var(--hive-bone);
	padding: .75rem 0;
	border-bottom: 1px solid rgba(247,244,238,0.08);
	letter-spacing: .04em;
}
.mobile-menu a:hover { color: var(--hive-blue); }
.mobile-menu .btn { margin-top: 2rem; align-self: flex-start; }

/* Hero (full-screen image hero) */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 8rem 0 4rem;
}
.hero-page-inner { min-height: 65vh; padding: 8rem 0 4rem; }
.hero-page-inner h1 { font-size: clamp(2.5rem,7vw,5.5rem); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(14,14,14,0.55) 0%, rgba(14,14,14,0.85) 100%),
		radial-gradient(ellipse at 30% 50%, rgba(56,182,255,0.08), transparent 60%);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* Self-hosted hero video — fills the hero area with object-fit cover */
.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	pointer-events: none;
}
/* Poster image sits behind the video as a fallback if the MP4 fails to load */
.hero-poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
/* On smaller screens (mobile), skip the video and just show the poster — saves bandwidth, avoids autoplay issues */
@media (max-width: 768px) {
	.hero-video { display: none; }
}
.hero-content { position: relative; z-index: 2; max-width: 920px; }
.hero h1 { margin-bottom: 1.5rem; animation: heroIn 1.1s var(--ease) .1s both; }
.hero h1 .accent { color: var(--hive-blue); display: block; }
.hero .lead { margin-bottom: 2.5rem; animation: heroIn 1.1s var(--ease) .3s both; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; animation: heroIn 1.1s var(--ease) .5s both; }
.hero-trust { margin-top: 3rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; animation: heroIn 1.1s var(--ease) .7s both; }
.trust-stars { display: flex; align-items: center; gap: .5rem; color: var(--hive-blue); font-weight: 600; }
.trust-text { font-size: .85rem; color: var(--hive-text-dim); letter-spacing: .05em; }

@keyframes heroIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

.hero::before {
	content: '';
	position: absolute;
	bottom: -40px; right: -40px;
	width: 280px; height: 280px;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><polygon points='50,5 95,27.5 95,72.5 50,95 5,72.5 5,27.5' fill='none' stroke='%2338b6ff' stroke-width='1' opacity='0.25'/></svg>") center/contain no-repeat;
	z-index: 1;
	animation: spinSlow 60s linear infinite;
}
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* === Page hero — used on every secondary page (Memberships, Schedule, About, etc.) ===
   Critical: top padding must clear the fixed site header (~150px on desktop, ~110px on mobile).
   Without this padding the hero overlaps the header.
*/
.page-hero {
	background: var(--hive-black);
	color: var(--hive-bone);
	padding: 11rem 0 4rem; /* 11rem (176px) top clears the fixed header */
	border-bottom: 1px solid rgba(56,182,255,0.08);
	text-align: center;
	position: relative;
	overflow: hidden;
}
@media (max-width: 768px) {
	.page-hero { padding: 8rem 0 3rem; }
}
.page-hero .container,
.page-hero .container-narrow {
	position: relative;
	z-index: 1;
}
.page-hero-eyebrow {
	display: inline-block;
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: var(--hive-blue);
	margin-bottom: 1.5rem;
}
.page-hero-title {
	font-family: var(--font-display);
	font-size: clamp(2.4rem, 6vw, 4.5rem);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: .03em;
	text-transform: uppercase;
	color: var(--hive-bone);
	margin: 0 0 1.5rem;
}
.page-hero-title .accent {
	color: var(--hive-blue);
	display: block;
}
.page-hero-sub {
	font-size: 1.1rem;
	line-height: 1.55;
	color: var(--hive-bone-dim);
	max-width: 720px;
	margin: 0 auto;
}
/* Subtle hex decoration in the corners */
.page-hero::before,
.page-hero::after {
	content: '';
	position: absolute;
	width: 280px;
	height: 280px;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><polygon points='50,5 92,28 92,72 50,95 8,72 8,28' fill='none' stroke='%2338b6ff' stroke-width='1' opacity='0.08'/></svg>") center/contain no-repeat;
	pointer-events: none;
	z-index: 0;
}
.page-hero::before { top: -60px; left: -80px; }
.page-hero::after  { bottom: -80px; right: -80px; transform: rotate(30deg); }

/* Hero with split layout (homepage with YouTube video) */
.hero-split { padding: 9rem 0 5rem; min-height: auto; background: var(--hive-black); }
.hero-split::before { display: none; }
.hero-split .hero-media { display: none; }
.hero-split .hero-content { max-width: none; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.hero-text h1 { font-size: clamp(2.2rem,5.5vw,4.5rem); animation: heroIn 1.1s var(--ease) .1s both; }
.hero-video { position: relative; animation: heroIn 1.1s var(--ease) .4s both; }
.video-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(56,182,255,0.15);
	background: #000;
}
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100% !important; height: 100% !important; border: 0; }
.video-wrap::before {
	content: '';
	position: absolute;
	inset: -2px;
	background: linear-gradient(135deg, rgba(56,182,255,0.4), transparent 60%);
	border-radius: 14px;
	z-index: -1;
	filter: blur(20px);
	opacity: .4;
}

/* Trust strip */
.trust-strip { padding: 1rem 0; background: var(--hive-charcoal); border-bottom: 1px solid rgba(56,182,255,0.1); }
.trust-strip .container { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; }
.trust-strip .stars { color: var(--hive-blue); letter-spacing: .1em; font-weight: 600; }
.trust-strip .stars strong { color: var(--hive-bone); margin-left: .4rem; }
.trust-strip .text { font-size: .85rem; color: var(--hive-text-dim); letter-spacing: .05em; }

/* Section head */
.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 1rem; }

/* Pillars */
.pillars { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 768px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	min-height: 460px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 2.5rem;
	color: var(--hive-bone);
	transition: transform .5s var(--ease);
	background: var(--hive-charcoal);
	border: 1px solid rgba(56,182,255,0.08);
	text-decoration: none !important;
}
.pillar::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(14,14,14,0.95) 100%); z-index: 1; }
.pillar-img { position: absolute; inset: 0; z-index: 0; }
.pillar-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3) contrast(1.05); transition: transform .8s var(--ease); }
.pillar:hover { transform: translateY(-6px); }
.pillar:hover .pillar-img img { transform: scale(1.06); }
.pillar > * { position: relative; z-index: 2; }
.pillar h3 { margin-bottom: .85rem; }
.pillar p { font-size: 1rem; color: var(--hive-bone-dim); margin-bottom: 1.5rem; }
.pillar-link { color: var(--hive-blue); font-weight: 600; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; }

/* Trainers grid */
.trainers-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 600px) { .trainers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .trainers-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .trainers-grid { grid-template-columns: repeat(4, 1fr); } }
.trainer-card { background: var(--hive-charcoal); border-radius: 12px; overflow: hidden; transition: transform .5s var(--ease); border: 1px solid rgba(56,182,255,0.1); }
.trainer-card:hover { transform: translateY(-6px); }
.bg-charcoal .trainer-card { background: var(--hive-black); }
.trainer-img {
	aspect-ratio: 4/5;
	background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
	position: relative;
	overflow: hidden;
}
.trainer-img-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 25%;
	display: block;
}
.trainer-img-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-size: .8rem;
	letter-spacing: .1em;
	text-transform: uppercase;
}
.trainer-meta { padding: 1.25rem; border-top: 1px solid rgba(56,182,255,0.15); }
.trainer-name { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .35rem; }
.trainer-title { font-size: .75rem; color: var(--hive-blue); letter-spacing: .08em; text-transform: uppercase; font-weight: 500; }

/* Why grid (5-up) */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 600px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(5, 1fr); } }
.why-item {
	padding: 2rem 1.5rem;
	background: var(--hive-charcoal);
	border: 1px solid rgba(56,182,255,0.1);
	border-radius: 12px;
	transition: all .4s var(--ease);
}
.bg-charcoal .why-item { background: var(--hive-black); }
.why-item:hover { border-color: var(--hive-blue); transform: translateY(-4px); }
.why-hex { width: 44px; height: 44px; color: var(--hive-blue); margin-bottom: 1.25rem; }
.why-item h4 { margin-bottom: .6rem; letter-spacing: .02em; }
.why-item p { font-size: .95rem; color: var(--hive-text-dim); line-height: 1.5; }

/* Steps grid */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 600px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .steps-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); } }
.step { padding: 2rem 1.5rem; background: var(--hive-charcoal); border: 1px solid rgba(56,182,255,0.1); border-radius: 12px; }
.bg-charcoal .step { background: var(--hive-black); }
.step-num { font-family: var(--font-display); font-size: 3rem; color: var(--hive-blue); line-height: 1; margin-bottom: .75rem; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
	padding: 2.5rem 2rem;
	background: var(--hive-charcoal);
	border: 1px solid rgba(56,182,255,0.1);
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: all .4s var(--ease);
}
.bg-charcoal .price-card { background: var(--hive-black); }
.price-card.featured {
	background: var(--hive-bone);
	color: var(--hive-black);
	border-color: var(--hive-blue);
}
@media (min-width: 900px) { .price-card.featured { transform: scale(1.05); } }
.price-card.featured .price-tier,
.price-card.featured .price-amount,
.price-card.featured .price-features li { color: var(--hive-black); }
.price-card.featured .price-best { color: #444; }
.price-ribbon {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--hive-blue);
	color: var(--hive-black);
	padding: .4rem 1.25rem;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	border-radius: 999px;
}
.price-tier { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: .5rem; }
.price-amount { font-family: var(--font-display); font-size: 4rem; line-height: 1; margin-bottom: .25rem; }
.price-amount small { font-size: 1rem; font-family: var(--font-body); color: var(--hive-text-dim); margin-left: .25rem; letter-spacing: 0; text-transform: lowercase; }
.price-card.featured .price-amount small { color: #666; }
.price-best { font-size: .85rem; color: var(--hive-text-dim); margin: .75rem 0 1.5rem; font-style: italic; }
.price-features { list-style: none; padding: 0; margin: 0 0 2rem; flex-grow: 1; }
.price-features li { padding: .65rem 0 .65rem 1.75rem; border-bottom: 1px solid rgba(247,244,238,0.08); font-size: .95rem; position: relative; }
.price-card.featured .price-features li { border-bottom-color: rgba(0,0,0,0.08); }
.price-features li::before { content: ''; position: absolute; left: 0; top: 1rem; width: 14px; height: 8px; border-left: 2px solid var(--hive-blue); border-bottom: 2px solid var(--hive-blue); transform: rotate(-45deg); }

/* 2-column pricing grid (for Regular vs 24/7 setup) */
.pricing-grid-2 { grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .pricing-grid-2 { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }

/* Hours toggle visual */
.hours-toggle { text-align: center; margin: 0 auto 3rem; max-width: 720px; }
.hours-toggle-pill {
	display: inline-flex;
	align-items: stretch;
	background: var(--hive-charcoal);
	border: 1px solid rgba(56,182,255,0.2);
	border-radius: 999px;
	padding: 4px;
	gap: 4px;
	margin-bottom: 1rem;
}
.ht-option {
	padding: .75rem 1.5rem;
	font-size: .85rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	border-radius: 999px;
	color: var(--hive-bone);
}
.ht-option.ht-24 { background: var(--hive-blue); color: var(--hive-black); }
.ht-divider {
	display: flex;
	align-items: center;
	padding: 0 .75rem;
	font-size: .75rem;
	color: var(--hive-text-dim);
	letter-spacing: .05em;
}
.hours-toggle-note {
	font-size: .9rem;
	color: var(--hive-text-dim);
	margin: 0 auto;
	max-width: 56ch;
	line-height: 1.5;
}

/* Pricing rows (Regular / 24/7 split inside one card) */
.price-pricing-rows { margin: .5rem 0 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: .85rem 1rem;
	background: rgba(56,182,255,0.05);
	border: 1px solid rgba(56,182,255,0.15);
	border-radius: 8px;
}
.price-card.featured .price-row { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.1); }
.price-row-247 {
	background: rgba(56,182,255,0.12);
	border-color: rgba(56,182,255,0.4);
}
.price-card.featured .price-row-247 {
	background: var(--hive-black);
	color: var(--hive-bone);
	border-color: var(--hive-blue);
}
.price-card.featured .price-row-247 .price-row-amount,
.price-card.featured .price-row-247 .price-row-label { color: var(--hive-bone); }
.price-row-label {
	font-size: .7rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--hive-text-dim);
	margin-bottom: .15rem;
}
.price-card.featured .price-row .price-row-label { color: #555; }
.price-row-amount {
	font-family: var(--font-display);
	font-size: 2rem;
	line-height: 1;
}
.price-row-amount small {
	font-size: .65rem;
	font-family: var(--font-body);
	letter-spacing: 0;
	text-transform: lowercase;
	color: var(--hive-text-dim);
	margin-left: .25rem;
}
.btn-sm {
	padding: .55rem 1rem;
	font-size: .75rem;
	letter-spacing: .06em;
}
.btn-dark {
	background: var(--hive-black);
	color: var(--hive-bone);
	border: 0;
}
.btn-dark:hover { background: var(--hive-blue); color: var(--hive-black); }

/* Hive 365 tier - distinct accent for the 24/7 option */
.price-card-365 {
	background: linear-gradient(180deg, var(--hive-charcoal) 0%, var(--hive-black) 100%);
	border: 1px solid rgba(56,182,255,0.3);
	position: relative;
}
.price-card-365::after {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--hive-blue), var(--hive-blue-deep));
	border-radius: 12px 12px 0 0;
}
.price-ribbon-365 {
	background: var(--hive-black);
	color: var(--hive-blue);
	border: 1px solid var(--hive-blue);
}
.price-card-365 .price-tier { color: var(--hive-blue); }

/* Hive Pro tier - elevated styling */
.price-card-pro {
	background: linear-gradient(180deg, #1a2838 0%, #0e0e0e 100%);
	border: 1px solid var(--hive-blue);
	box-shadow: 0 0 0 1px rgba(56,182,255,0.1), 0 25px 50px rgba(0,0,0,0.4);
	position: relative;
}
.price-card-pro::before {
	content: '';
	position: absolute;
	inset: -2px;
	background: linear-gradient(135deg, var(--hive-blue), transparent 70%);
	border-radius: 14px;
	z-index: -1;
	filter: blur(15px);
	opacity: .25;
}
.price-ribbon-pro {
	background: linear-gradient(135deg, var(--hive-blue), var(--hive-blue-deep));
	color: var(--hive-black);
	box-shadow: 0 4px 12px rgba(56,182,255,0.4);
}
.price-card-pro .price-tier { color: var(--hive-blue); }
.price-card-pro .price-amount { color: var(--hive-bone); }
.price-card-pro .price-features li::before {
	border-left-color: var(--hive-blue);
	border-bottom-color: var(--hive-blue);
}

/* Fees callout box on memberships page */
.fees-callout {
	margin: 3rem auto 0;
	max-width: 900px;
	padding: 2.5rem;
	background: linear-gradient(135deg, var(--hive-charcoal) 0%, rgba(56,182,255,0.05) 100%);
	border: 1px solid rgba(56,182,255,0.2);
	border-radius: 16px;
	position: relative;
}
.fees-callout-head {
	display: flex;
	align-items: center;
	gap: .75rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(56,182,255,0.15);
}
.fees-callout-head svg { color: var(--hive-blue); flex-shrink: 0; }
.fees-callout-head h3 { font-size: 1.5rem; margin: 0; letter-spacing: .03em; }
.fees-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}
@media (min-width: 700px) { .fees-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.fee-item {
	padding: 1.5rem;
	background: var(--hive-black);
	border-radius: 12px;
	border-left: 3px solid var(--hive-blue);
}
.fee-amount {
	font-family: var(--font-display);
	font-size: 2.5rem;
	color: var(--hive-blue);
	line-height: 1;
	margin-bottom: .35rem;
}
.fee-label {
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--hive-bone);
	margin-bottom: .75rem;
}
.fee-note {
	font-size: .9rem;
	color: var(--hive-text-dim);
	line-height: 1.55;
}
.fees-fineprint {
	font-size: .85rem;
	color: var(--hive-text-dim);
	text-align: center;
	margin: 0;
	padding-top: 1rem;
	border-top: 1px solid rgba(56,182,255,0.1);
	letter-spacing: .02em;
}

/* 24/7 Hours homepage feature section */
.hours247-feature {
	background: linear-gradient(135deg, var(--hive-charcoal) 0%, var(--hive-black) 100%);
	border: 1px solid rgba(56,182,255,0.2);
	border-radius: 20px;
	padding: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
	position: relative;
	overflow: hidden;
}
@media (min-width: 900px) { .hours247-feature { grid-template-columns: 1.2fr 1fr; gap: 4rem; } }
.hours247-feature::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 400px;
	height: 400px;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><polygon points='50,5 92,28 92,72 50,95 8,72 8,28' fill='none' stroke='%2338b6ff' stroke-width='1' opacity='0.15'/></svg>") center/contain no-repeat;
	pointer-events: none;
	animation: spinSlow 80s linear infinite;
}
.hours247-feature > * { position: relative; z-index: 1; }
.hours247-content h2 { margin-bottom: 1rem; }
.hours247-content p { color: var(--hive-bone-dim); margin-bottom: 1.25rem; line-height: 1.65; }
.hours247-perks {
	display: grid;
	grid-template-columns: 1fr;
	gap: .85rem;
	margin: 1.75rem 0;
}
.hours247-perk {
	display: flex;
	align-items: flex-start;
	gap: .75rem;
	font-size: .95rem;
	color: var(--hive-bone-dim);
}
.hours247-perk-icon {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(56,182,255,0.15);
	color: var(--hive-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .8rem;
	font-weight: 700;
	margin-top: 1px;
}
.hours247-visual {
	text-align: center;
	padding: 2rem 0;
}
.hours247-clock {
	font-family: var(--font-display);
	font-size: clamp(5rem, 14vw, 9rem);
	line-height: 1;
	color: var(--hive-blue);
	letter-spacing: -.02em;
	margin-bottom: .5rem;
	text-shadow: 0 0 60px rgba(56,182,255,0.4);
}
.hours247-clock-sub {
	font-family: var(--font-display);
	font-size: 1.5rem;
	color: var(--hive-bone);
	letter-spacing: .15em;
	text-transform: uppercase;
}
.hours247-pricing {
	margin-top: 1.5rem;
	padding: 1rem 1.5rem;
	background: rgba(56,182,255,0.1);
	border: 1px solid rgba(56,182,255,0.3);
	border-radius: 999px;
	font-size: .9rem;
	color: var(--hive-bone);
	display: inline-block;
}
.hours247-pricing strong { color: var(--hive-blue); }

/* Train at Hive feature section (homepage) */
.tah-feature {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}
@media (min-width: 900px) { .tah-feature { grid-template-columns: 1.15fr 1fr; gap: 4rem; } }
.tah-feature-content h2 { margin-bottom: 1rem; }
.tah-feature-content > .lead { margin-bottom: 2rem; max-width: 56ch; }
.tah-feature-perks {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin-bottom: 2.5rem;
}
.tah-perk {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	align-items: start;
}
.tah-perk-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(56,182,255,0.12);
	color: var(--hive-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.tah-perk-icon svg { width: 22px; height: 22px; }
.tah-perk h4 { margin: 0 0 .35rem; font-size: 1.1rem; letter-spacing: .03em; }
.tah-perk p { margin: 0; font-size: .95rem; line-height: 1.55; color: var(--hive-bone-dim); }
.tah-feature-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Phone mockup visual */
.tah-feature-visual {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}
.tah-phone-mockup {
	width: 100%;
	max-width: 320px;
	background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
	border: 2px solid rgba(56,182,255,0.25);
	border-radius: 36px;
	padding: 14px;
	position: relative;
	box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(56,182,255,0.15), 0 0 80px rgba(56,182,255,0.18);
}
.tah-phone-notch {
	position: absolute;
	top: 14px;
	left: 50%;
	transform: translateX(-50%);
	width: 90px;
	height: 22px;
	background: var(--hive-black);
	border-radius: 0 0 14px 14px;
	z-index: 2;
}
.tah-phone-screen {
	background: var(--hive-black);
	border-radius: 24px;
	padding: 2.25rem 1.5rem 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.tah-phone-header { padding-bottom: .75rem; border-bottom: 1px solid rgba(56,182,255,0.15); }
.tah-phone-eyebrow {
	font-size: .6rem;
	color: var(--hive-blue);
	letter-spacing: .15em;
	text-transform: uppercase;
	font-weight: 600;
}
.tah-phone-title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	letter-spacing: .03em;
	color: var(--hive-bone);
	margin-top: .25rem;
}
.tah-phone-img {
	aspect-ratio: 16/10;
	background: linear-gradient(135deg, rgba(56,182,255,0.15), rgba(56,182,255,0.04));
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--hive-blue);
}
.tah-phone-pills { display: flex; flex-wrap: wrap; gap: .35rem; }
.tah-phone-pill {
	font-size: .65rem;
	padding: .25rem .6rem;
	background: rgba(56,182,255,0.12);
	border: 1px solid rgba(56,182,255,0.3);
	color: var(--hive-blue);
	border-radius: 999px;
	letter-spacing: .04em;
	font-weight: 600;
	text-transform: uppercase;
}
.tah-phone-cue {
	font-size: .75rem;
	color: var(--hive-bone-dim);
	line-height: 1.5;
	padding: .65rem .75rem;
	background: rgba(247,244,238,0.04);
	border-left: 2px solid var(--hive-blue);
	border-radius: 4px;
}
.tah-phone-cue strong { color: var(--hive-blue); display: block; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .25rem; }
.tah-phone-reps { display: flex; flex-direction: column; gap: .4rem; }
.tah-phone-rep-row {
	display: flex;
	justify-content: space-between;
	font-size: .75rem;
	padding: .5rem .65rem;
	background: rgba(56,182,255,0.06);
	border-radius: 4px;
}
.tah-phone-rep-label {
	color: var(--hive-blue);
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	font-size: .65rem;
}
.tah-phone-rep-val { color: var(--hive-bone-dim); font-size: .7rem; }

.tah-qr-callout {
	display: flex;
	align-items: center;
	gap: .65rem;
	padding: .75rem 1.25rem;
	background: var(--hive-black);
	border: 1px dashed rgba(56,182,255,0.3);
	border-radius: 999px;
	font-size: .85rem;
	color: var(--hive-text-dim);
}
.tah-qr-callout svg { color: var(--hive-blue); flex-shrink: 0; }

/* FAQ */
.faq { max-width: 820px; margin: 2rem auto 0; }
.faq-item { border-bottom: 1px solid rgba(56,182,255,0.15); }
.faq-q {
	padding: 1.5rem 0;
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--hive-bone);
	cursor: pointer;
	transition: color .3s var(--ease);
	list-style: none;
	position: relative;
	padding-right: 2rem;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	color: var(--hive-blue);
	font-size: 1.5rem;
	font-weight: 300;
	transition: transform .3s var(--ease);
}
.faq-item[open] .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-q:hover { color: var(--hive-blue); }
.faq-a { padding: 0 0 1.5rem; color: var(--hive-bone-dim); max-width: 65ch; font-size: 1rem; line-height: 1.65; }

/* Reviews (curated) */
.reviews { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 768px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review { padding: 2rem; background: var(--hive-charcoal); border-radius: 12px; border-left: 3px solid var(--hive-blue); }
.bg-charcoal .review { background: var(--hive-black); }
.review-stars { color: var(--hive-blue); font-size: 1.1rem; letter-spacing: .1em; margin-bottom: 1rem; }
.review-text { font-size: 1rem; line-height: 1.6; color: var(--hive-bone-dim); margin-bottom: 1.25rem; }
.review-author { font-size: .85rem; letter-spacing: .05em; text-transform: uppercase; color: var(--hive-blue); font-weight: 600; }

/* Editorial */
.editorial { max-width: 70ch; margin: 0 auto; }
.editorial p { margin-bottom: 1.25rem; font-size: 1.1rem; line-height: 1.75; color: var(--hive-bone-dim); }
.editorial blockquote {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 1.6rem;
	line-height: 1.4;
	border-left: 3px solid var(--hive-blue);
	padding-left: 2rem;
	margin: 2.5rem 0;
	color: var(--hive-bone);
}

/* Split layout */
.split { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.split-img { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 12px; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-content h2 { margin-bottom: 1.5rem; }
.divider { height: 1px; width: 60px; background: var(--hive-blue); margin: 1.5rem 0; }

/* Trainer profile */
.trainer-profile { display: grid; grid-template-columns: 1fr; gap: 3rem; padding: 2rem 0; align-items: center; }
@media (min-width: 900px) { .trainer-profile { grid-template-columns: 1fr 1.2fr; gap: 4rem; } .trainer-profile.reverse .trainer-profile-img { order: 2; } }
.trainer-profile + .trainer-profile { border-top: 1px solid rgba(56,182,255,0.08); margin-top: 1rem; padding-top: 4rem; }
.trainer-profile-img { aspect-ratio: 4/5; background: linear-gradient(135deg, #2a2a2a, #1a1a1a); display: flex; align-items: center; justify-content: center; color: #666; letter-spacing: .1em; text-transform: uppercase; font-size: .85rem; border-radius: 12px; overflow: hidden; position: relative; }
.trainer-profile-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.trainer-profile-content h3 { font-size: clamp(2.5rem,5vw,4rem); margin-bottom: .4rem; }
.trainer-profile-title { font-size: .9rem; letter-spacing: .12em; text-transform: uppercase; color: var(--hive-blue); margin-bottom: 1.5rem; font-weight: 500; }
.trainer-profile-content p { font-size: 1.05rem; color: var(--hive-bone-dim); margin-bottom: 1.25rem; max-width: 56ch; }
.trainer-quote { font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; border-left: 3px solid var(--hive-blue); padding-left: 1.25rem; margin: 1.5rem 0; color: var(--hive-bone); }
.tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0; }
.tag { font-size: .7rem; padding: .35rem .8rem; border: 1px solid rgba(247,244,238,0.2); border-radius: 999px; letter-spacing: .05em; text-transform: uppercase; color: var(--hive-bone-dim); }

/* Stories */
.stories { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-top: 2rem; }
.story { background: var(--hive-charcoal); padding: 2.5rem; border-radius: 12px; border-left: 3px solid var(--hive-blue); }
.bg-charcoal .story { background: var(--hive-black); }
.story-title { font-family: var(--font-display); font-size: 1.75rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .5rem; }
.story-meta { color: var(--hive-text-dim); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.25rem; }

/* Week */
.week-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
@media (min-width: 600px) { .week-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .week-grid { grid-template-columns: repeat(6, 1fr); } }
.week-day { padding: 1.5rem 1.25rem; background: var(--hive-charcoal); border-radius: 12px; border-top: 3px solid var(--hive-blue); }
.bg-charcoal .week-day { background: var(--hive-black); }
.week-name { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: .06em; color: var(--hive-blue); margin-bottom: .6rem; }
.week-focus { font-size: .85rem; font-weight: 600; color: var(--hive-bone); margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .05em; }
.week-day p { font-size: .85rem; color: var(--hive-text-dim); line-height: 1.5; }

/* Logo wall */
.logo-wall { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 600px) { .logo-wall { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .logo-wall { grid-template-columns: repeat(6, 1fr); } }
.logo-item { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: .08em; color: var(--hive-text-dim); text-align: center; padding: 1.5rem .5rem; border: 1px solid rgba(247,244,238,0.08); border-radius: 4px; transition: all .3s var(--ease); }
.logo-item:hover { color: var(--hive-blue); border-color: var(--hive-blue); }

/* Hours */
.hours-list { display: grid; gap: .75rem; max-width: 600px; margin-top: 2rem; }
.hours-row { display: flex; justify-content: space-between; padding: 1rem 1.25rem; background: var(--hive-charcoal); border-radius: 4px; border-left: 3px solid var(--hive-blue); }
.bg-charcoal .hours-row { background: var(--hive-black); }
.day { font-weight: 600; letter-spacing: .04em; text-transform: uppercase; font-size: .95rem; }
.time { color: var(--hive-bone-dim); }
.locals-box { margin-top: 3rem; padding: 2rem; background: var(--hive-charcoal); border: 1px dashed rgba(56,182,255,0.3); border-radius: 12px; max-width: 600px; }
.bg-charcoal .locals-box { background: var(--hive-black); }
.locals-headline { font-family: var(--font-display); font-size: 1.5rem; color: var(--hive-blue); letter-spacing: .04em; margin-bottom: .5rem; }
.locals-box p { color: var(--hive-bone-dim); margin-bottom: 1.25rem; }

/* Hive 365 callout (Open Gym page hours section) */
.hive365-callout {
	margin-top: 2.5rem;
	padding: 2rem 2rem 1.75rem;
	background: linear-gradient(135deg, rgba(56,182,255,0.10) 0%, rgba(56,182,255,0.03) 100%);
	border: 1px solid rgba(56,182,255,0.35);
	border-radius: 12px;
	max-width: 600px;
	position: relative;
	overflow: hidden;
}
.hive365-callout::before {
	content: '';
	position: absolute;
	top: -50px;
	right: -50px;
	width: 180px;
	height: 180px;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><polygon points='50,5 92,28 92,72 50,95 8,72 8,28' fill='none' stroke='%2338b6ff' stroke-width='1.2' opacity='0.18'/></svg>") center/contain no-repeat;
	pointer-events: none;
}
.hive365-callout > * { position: relative; z-index: 1; }
.hive365-callout-badge {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	background: var(--hive-blue);
	color: var(--hive-black);
	padding: .35rem .75rem;
	border-radius: 999px;
	font-family: var(--font-display);
	font-size: .8rem;
	letter-spacing: .08em;
	font-weight: 700;
	margin-bottom: 1rem;
}
.hive365-callout-headline {
	font-family: var(--font-display);
	font-size: 1.5rem;
	color: var(--hive-bone);
	letter-spacing: .04em;
	margin-bottom: .75rem;
	line-height: 1.15;
}
.hive365-callout p {
	color: var(--hive-bone-dim);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}
.hive365-callout p strong { color: var(--hive-blue); font-weight: 600; }
.hive365-callout-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
}
.hive365-callout-price {
	font-size: .85rem;
	color: var(--hive-text-dim);
	letter-spacing: .02em;
}

/* Legal page (Privacy, Terms) — clean readable typography */
.legal-page { color: var(--hive-bone-dim); }
.legal-page h2 {
	font-family: var(--font-display);
	font-size: 1.85rem;
	color: var(--hive-bone);
	letter-spacing: .03em;
	margin: 3rem 0 1rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(56,182,255,0.15);
}
.legal-page h2:first-of-type { margin-top: 1rem; padding-top: 0; border-top: none; }
.legal-page h3 {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 1.15rem;
	color: var(--hive-bone);
	letter-spacing: .01em;
	margin: 2rem 0 .75rem;
}
.legal-page p {
	line-height: 1.7;
	margin-bottom: 1.25rem;
	font-size: .98rem;
}
.legal-page ul {
	margin: 0 0 1.5rem 1.25rem;
	padding-left: 0.75rem;
	line-height: 1.7;
}
.legal-page ul li {
	margin-bottom: .65rem;
	font-size: .98rem;
}
.legal-page strong { color: var(--hive-bone); font-weight: 600; }
.legal-page a {
	color: var(--hive-blue);
	border-bottom: 1px solid rgba(56,182,255,0.35);
	transition: color .2s ease;
}
.legal-page a:hover { color: var(--hive-bone); border-bottom-color: var(--hive-bone); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-top: 2rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.2fr 1fr; gap: 4rem; } }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.contact-item h4 { font-size: .85rem; letter-spacing: .15em; color: var(--hive-blue); margin-bottom: .4rem; font-family: var(--font-body); font-weight: 600; }
.contact-item p, .contact-item a { font-size: 1.05rem; color: var(--hive-bone-dim); }
.map-embed { margin-top: 2rem; border-radius: 12px; overflow: hidden; aspect-ratio: 16/10; background: #1a1a1a; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: invert(0.92) hue-rotate(180deg) contrast(0.85); }
.contact-form .field { margin-bottom: 1.25rem; }
.contact-form label { display: block; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--hive-text-dim); margin-bottom: .5rem; font-weight: 500; }
.contact-form input, .contact-form textarea, .contact-form select {
	width: 100%;
	padding: .95rem 1rem;
	background: var(--hive-charcoal);
	border: 1px solid rgba(247,244,238,0.15);
	color: var(--hive-bone);
	border-radius: 4px;
	font-size: 1rem;
	font-family: var(--font-body);
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--hive-blue); }
.contact-form textarea { min-height: 140px; resize: vertical; }

/* === Ninja Forms — Hive-themed overrides (apply on live WordPress site) === */
.nf-form-wrapper { position: relative; }

/* Preview note that wraps the static placeholder */
.nf-form-preview {
	background: var(--hive-black);
	border: 1px dashed rgba(56,182,255,0.25);
	border-radius: 10px;
	padding: 1.5rem;
}
.nf-preview-note {
	text-align: left;
	color: var(--hive-blue);
	font-size: .8rem;
	letter-spacing: .03em;
	margin-bottom: 1.25rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(56,182,255,0.15);
}
.nf-preview-note strong { color: var(--hive-bone); font-weight: 600; }

/* Live Ninja Forms styling overrides for the WordPress site */
/* Container */
.nf-form-wrapper .nf-form-cont,
.nf-form-wrapper .nf-form-content {
	background: transparent !important;
	padding: 0 !important;
	max-width: none !important;
}

/* Field rows */
.nf-form-wrapper .nf-field-container,
.nf-form-wrapper .nf-form-fields-required { margin-bottom: 1rem !important; }

/* Labels */
.nf-form-wrapper .nf-field-label label,
.nf-form-wrapper .nf-form-fields-required {
	font-family: var(--font-body) !important;
	font-size: .8rem !important;
	letter-spacing: .1em !important;
	text-transform: uppercase !important;
	color: var(--hive-text-dim) !important;
	font-weight: 500 !important;
}

/* Inputs, textareas, selects */
.nf-form-wrapper input[type=text],
.nf-form-wrapper input[type=email],
.nf-form-wrapper input[type=tel],
.nf-form-wrapper input[type=number],
.nf-form-wrapper textarea,
.nf-form-wrapper select {
	background: var(--hive-black) !important;
	border: 1px solid rgba(56,182,255,0.18) !important;
	color: var(--hive-bone) !important;
	font-family: var(--font-body) !important;
	font-size: 1rem !important;
	padding: .85rem 1rem !important;
	border-radius: 6px !important;
	transition: border-color .2s ease !important;
	width: 100% !important;
	box-shadow: none !important;
}
.nf-form-wrapper input:focus,
.nf-form-wrapper textarea:focus,
.nf-form-wrapper select:focus {
	border-color: var(--hive-blue) !important;
	outline: none !important;
}
.nf-form-wrapper textarea { min-height: 140px !important; resize: vertical !important; }

/* Submit button */
.nf-form-wrapper input[type=button],
.nf-form-wrapper .nf-element[type=button],
.nf-form-wrapper input[type=submit] {
	background: var(--hive-blue) !important;
	color: var(--hive-black) !important;
	border: none !important;
	font-family: var(--font-display) !important;
	font-size: 1rem !important;
	letter-spacing: .08em !important;
	font-weight: 700 !important;
	padding: 1rem 2rem !important;
	border-radius: 6px !important;
	cursor: pointer !important;
	transition: transform .15s ease !important;
	width: auto !important;
}
.nf-form-wrapper input[type=submit]:hover { transform: translateY(-1px) !important; }

/* Success/error messages */
.nf-form-wrapper .nf-response-msg {
	background: var(--hive-charcoal) !important;
	color: var(--hive-bone) !important;
	border: 1px solid var(--hive-blue) !important;
	border-radius: 6px !important;
	padding: 1.25rem !important;
}
.nf-form-wrapper .nf-error-msg,
.nf-form-wrapper .ninja-forms-field-error {
	color: var(--hive-red) !important;
	font-size: .85rem !important;
	margin-top: .35rem !important;
}

/* Schedule iframe */
.schedule-embed { background: var(--hive-charcoal); border-radius: 12px; padding: 2rem; border: 1px solid rgba(56,182,255,0.1); }
.iframe-wrap { position: relative; width: 100%; min-height: 700px; border-radius: 4px; overflow: hidden; background: var(--hive-bone); margin: 1.5rem 0; }
.iframe-wrap iframe { width: 100%; height: 700px; border: 0; background: var(--hive-bone); display: block; }

/* Press */
.press-link {
	display: block;
	padding: 2rem;
	background: var(--hive-charcoal);
	border-radius: 12px;
	border-left: 3px solid var(--hive-blue);
	transition: transform .4s var(--ease);
	max-width: 760px;
	margin: 2rem auto 0;
	text-decoration: none !important;
	color: var(--hive-bone) !important;
}
.bg-charcoal .press-link { background: var(--hive-black); }
.press-link:hover { transform: translateY(-4px); }
.press-source { font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--hive-blue); margin-bottom: .5rem; }
.press-headline { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: .04em; text-transform: uppercase; line-height: 1.2; }
.press-cta { margin-top: 1rem; color: var(--hive-text-dim); font-size: .9rem; }

/* Instagram & Reviews placeholder boxes */
.feed-placeholder {
	min-height: 300px;
	margin: 2rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px dashed rgba(56,182,255,0.3);
	border-radius: 12px;
	color: var(--hive-text-dim);
	padding: 3rem 2rem;
	text-align: center;
	flex-direction: column;
	gap: 1rem;
}
.feed-placeholder svg { width: 56px; height: 56px; color: var(--hive-blue); opacity: .8; }
.feed-placeholder .label { font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; color: var(--hive-blue); font-weight: 600; }
.feed-placeholder .desc { font-size: .95rem; color: var(--hive-text-dim); max-width: 50ch; line-height: 1.5; }
.feed-placeholder code { background: rgba(56,182,255,0.1); padding: .15em .5em; border-radius: 4px; color: var(--hive-blue); font-family: 'Monaco', 'Menlo', monospace; font-size: .85em; }

/* Mock Instagram grid for visual demo */
.mock-instagram { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin: 2rem 0; max-width: 900px; margin-left: auto; margin-right: auto; }
@media (min-width: 600px) { .mock-instagram { grid-template-columns: repeat(6, 1fr); } }
.mock-ig-tile {
	aspect-ratio: 1;
	background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #555;
	font-size: 1.5rem;
	transition: transform .4s var(--ease);
	overflow: hidden;
}
.mock-ig-tile:nth-child(1) { background: linear-gradient(135deg, #2a3848, #1a1a1a); }
.mock-ig-tile:nth-child(2) { background: linear-gradient(135deg, #38b6ff22, #1a1a1a); }
.mock-ig-tile:nth-child(3) { background: linear-gradient(135deg, #1a2838, #1a1a1a); }
.mock-ig-tile:nth-child(4) { background: linear-gradient(135deg, #2a2a2a, #38b6ff11); }
.mock-ig-tile:nth-child(5) { background: linear-gradient(135deg, #1a1a1a, #2a3848); }
.mock-ig-tile:nth-child(6) { background: linear-gradient(135deg, #2a2a2a, #1a2838); }
.mock-ig-tile:hover { transform: scale(1.02); }

/* Mock Google Reviews for visual demo */
.mock-reviews { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin: 2rem 0; }
@media (min-width: 768px) { .mock-reviews { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .mock-reviews { grid-template-columns: repeat(3, 1fr); } }
.mock-review { padding: 1.75rem; background: var(--hive-charcoal); border-radius: 12px; border-left: 3px solid var(--hive-blue); }
.bg-charcoal .mock-review { background: var(--hive-black); }
.mock-review-head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.mock-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--hive-blue), var(--hive-blue-deep)); display: flex; align-items: center; justify-content: center; color: var(--hive-black); font-weight: 700; font-size: .9rem; }
.mock-author-info { flex: 1; }
.mock-author-name { font-size: .95rem; font-weight: 600; color: var(--hive-bone); }
.mock-author-date { font-size: .75rem; color: var(--hive-text-dim); }
.mock-review-stars { color: var(--hive-blue); font-size: .95rem; letter-spacing: .1em; margin-bottom: .75rem; }
.mock-review-text { font-size: .95rem; color: var(--hive-bone-dim); line-height: 1.55; }

/* Member Highlights — social-feed-style cards */
.highlights-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-top: 3rem;
}
@media (min-width: 700px) { .highlights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .highlights-grid { grid-template-columns: repeat(3, 1fr); } }

.highlight-card {
	background: var(--hive-charcoal);
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(56,182,255,0.1);
	display: flex;
	flex-direction: column;
	transition: transform .5s var(--ease), border-color .4s var(--ease);
}
.highlight-card:hover {
	transform: translateY(-6px);
	border-color: rgba(56,182,255,0.4);
}

/* Card header — like a social post */
.highlight-head {
	display: flex;
	align-items: center;
	gap: .75rem;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid rgba(247,244,238,0.05);
}
.highlight-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--hive-blue), var(--hive-blue-deep));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--hive-black);
	font-weight: 700;
	font-size: 1rem;
	flex-shrink: 0;
}
.highlight-meta { flex: 1; min-width: 0; }
.highlight-name {
	font-size: .95rem;
	font-weight: 600;
	color: var(--hive-bone);
	margin: 0;
	letter-spacing: .01em;
}
.highlight-date {
	font-size: .75rem;
	color: var(--hive-text-dim);
	letter-spacing: .04em;
}
.highlight-badge {
	font-size: .65rem;
	padding: .25rem .6rem;
	background: rgba(56,182,255,0.15);
	color: var(--hive-blue);
	border-radius: 999px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	flex-shrink: 0;
}

/* Card hero - the big number / win */
.highlight-hero {
	padding: 3rem 1.5rem;
	background: linear-gradient(135deg, rgba(56,182,255,0.12) 0%, transparent 100%);
	text-align: center;
	border-bottom: 1px solid rgba(247,244,238,0.05);
	position: relative;
	overflow: hidden;
}
.highlight-hero::before {
	content: '';
	position: absolute;
	bottom: -30px;
	right: -30px;
	width: 120px;
	height: 120px;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><polygon points='50,5 92,28 92,72 50,95 8,72 8,28' fill='none' stroke='%2338b6ff' stroke-width='2' opacity='0.15'/></svg>") center/contain no-repeat;
}
.highlight-stat {
	font-family: var(--font-display);
	font-size: clamp(2.75rem, 6vw, 4rem);
	line-height: 1;
	color: var(--hive-blue);
	letter-spacing: .02em;
	margin-bottom: .5rem;
	position: relative;
	z-index: 1;
}
.highlight-stat-label {
	font-size: .8rem;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: var(--hive-bone);
	font-weight: 600;
	position: relative;
	z-index: 1;
}

/* Card body */
.highlight-body { padding: 1.5rem; flex-grow: 1; }
.highlight-quote {
	font-size: .95rem;
	line-height: 1.55;
	color: var(--hive-bone-dim);
	margin: 0 0 1rem;
}
.highlight-tags {
	display: flex;
	flex-wrap: wrap;
	gap: .4rem;
}
.highlight-tag {
	font-size: .7rem;
	color: var(--hive-blue);
	letter-spacing: .04em;
	font-weight: 500;
}

/* Card footer (like / engagement) */
.highlight-footer {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: .85rem 1.25rem;
	border-top: 1px solid rgba(247,244,238,0.05);
	font-size: .8rem;
	color: var(--hive-text-dim);
}
.highlight-action {
	display: flex;
	align-items: center;
	gap: .35rem;
	transition: color .3s var(--ease);
	cursor: pointer;
}
.highlight-action:hover { color: var(--hive-blue); }
.highlight-action svg { width: 16px; height: 16px; }

/* Featured (large hero) member highlight */
.highlight-featured {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	background: linear-gradient(135deg, var(--hive-charcoal) 0%, var(--hive-black) 100%);
	border: 1px solid rgba(56,182,255,0.2);
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 4rem;
}
@media (min-width: 900px) { .highlight-featured { grid-template-columns: 1.1fr 1fr; } }
.highlight-featured-visual {
	background: linear-gradient(135deg, rgba(56,182,255,0.18) 0%, transparent 60%);
	padding: 4rem 3rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.highlight-featured-visual::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><polygon points='50,5 92,28 92,72 50,95 8,72 8,28' fill='none' stroke='%2338b6ff' stroke-width='1' opacity='0.1'/></svg>") right -100px center / 400px no-repeat;
	pointer-events: none;
}
.highlight-featured-visual > * { position: relative; z-index: 1; }
.highlight-featured-stat {
	font-family: var(--font-display);
	font-size: clamp(4rem, 9vw, 7rem);
	line-height: .95;
	color: var(--hive-blue);
	margin-bottom: 1rem;
}
.highlight-featured-label {
	font-size: 1rem;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: var(--hive-bone);
	margin-bottom: 1.5rem;
	font-weight: 600;
}
.highlight-featured-content { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.highlight-featured-name { font-family: var(--font-display); font-size: 2.2rem; letter-spacing: .04em; margin-bottom: .25rem; }
.highlight-featured-meta { color: var(--hive-blue); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.5rem; font-weight: 500; }
.highlight-featured-quote {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 1.2rem;
	line-height: 1.5;
	color: var(--hive-bone-dim);
	border-left: 3px solid var(--hive-blue);
	padding-left: 1.25rem;
	margin: 0 0 1.5rem;
}

/* Filter pills (for member highlights) */
.highlight-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .5rem;
	margin: 0 0 2.5rem;
}
.highlight-filter {
	padding: .55rem 1.1rem;
	background: var(--hive-charcoal);
	border: 1px solid rgba(247,244,238,0.15);
	border-radius: 999px;
	font-size: .8rem;
	letter-spacing: .04em;
	color: var(--hive-bone-dim);
	cursor: pointer;
	transition: all .3s var(--ease);
}
.highlight-filter:hover { border-color: var(--hive-blue); color: var(--hive-blue); }
.highlight-filter.active { background: var(--hive-blue); color: var(--hive-black); border-color: var(--hive-blue); }

/* === Instagram Feed (Smash Balloon) Hive-themed overrides === */
.ig-feed-wrapper {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}

/* Static-preview placeholder (renders only when Smash Balloon shortcode isn't replaced) */
.ig-feed-placeholder {
	background: var(--hive-black);
	border: 1px dashed rgba(56,182,255,0.25);
	border-radius: 12px;
	padding: 2rem;
}
.ig-placeholder-note {
	text-align: center;
	color: var(--hive-blue);
	font-size: .85rem;
	letter-spacing: .03em;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(56,182,255,0.15);
}
.ig-placeholder-note strong { color: var(--hive-bone); font-weight: 600; }
.ig-placeholder-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: .75rem;
}
@media (min-width: 600px) { .ig-placeholder-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px) { .ig-placeholder-grid { grid-template-columns: repeat(4, 1fr); } }
.ig-placeholder-tile {
	aspect-ratio: 1;
	background: linear-gradient(135deg, var(--hive-charcoal), var(--hive-black));
	border: 1px solid rgba(56,182,255,0.08);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	opacity: .35;
}

/* Live Smash Balloon Instagram Feed — Hive-themed overrides for WP site */
/* These selectors target Smash Balloon's default markup; safe to keep even if not loaded */
.ig-feed-wrapper #sb_instagram,
.ig-feed-wrapper .sbi {
	background: transparent !important;
	padding: 0 !important;
	max-width: none !important;
}
.ig-feed-wrapper .sbi_photo_wrap,
.ig-feed-wrapper .sbi_item {
	border-radius: 8px !important;
	overflow: hidden !important;
	transition: transform .3s ease !important;
}
.ig-feed-wrapper .sbi_photo_wrap:hover,
.ig-feed-wrapper .sbi_item:hover {
	transform: translateY(-3px);
}
.ig-feed-wrapper .sbi_photo {
	border-radius: 8px !important;
}
/* Hide Smash Balloon's default "load more" if present — we use our own CTA */
.ig-feed-wrapper #sbi_load { display: none !important; }
.ig-feed-wrapper #sbi_load .sbi_btn_text { font-family: var(--font-display) !important; letter-spacing: .08em !important; }
/* Hide Smash Balloon header (account avatar/name banner) — page already says it's our feed */
.ig-feed-wrapper #sb_instagram .sb_instagram_header,
.ig-feed-wrapper .sbi_header_text { display: none !important; }

/* === Cookie notice (minimal, non-blocking) === */
.cookie-notice {
	position: fixed;
	bottom: 1rem;
	left: 1rem;
	right: 1rem;
	z-index: 9999;
	background: var(--hive-black);
	border: 1px solid rgba(56,182,255,0.4);
	border-radius: 8px;
	padding: 1rem 1.25rem;
	box-shadow: 0 10px 40px rgba(0,0,0,0.5);
	max-width: 720px;
	margin: 0 auto;
}
.cookie-notice-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}
.cookie-notice-text {
	font-size: .85rem;
	color: var(--hive-bone-dim);
	line-height: 1.5;
	flex: 1;
	min-width: 220px;
}
.cookie-notice-text a {
	color: var(--hive-blue);
	border-bottom: 1px solid rgba(56,182,255,0.4);
	transition: color .2s ease;
}
.cookie-notice-text a:hover { color: var(--hive-bone); }
.cookie-notice-btn {
	background: var(--hive-blue);
	color: var(--hive-black);
	border: none;
	padding: .55rem 1.25rem;
	border-radius: 6px;
	font-family: var(--font-display);
	font-size: .85rem;
	letter-spacing: .08em;
	font-weight: 700;
	cursor: pointer;
	transition: transform .15s ease;
	white-space: nowrap;
}
.cookie-notice-btn:hover { transform: translateY(-1px); }
@media (max-width: 500px) {
	.cookie-notice-inner { flex-direction: column; align-items: stretch; }
	.cookie-notice-btn { width: 100%; }
}

/* === WellnessLiving Schedule Widget — Hive-themed wrapper === */
.wl-embed-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	background: var(--hive-bone);
	border-radius: 16px;
	padding: 1.5rem;
	box-shadow: 0 30px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(56,182,255,0.15);
	position: relative;
}

/* Force the WL widget container to take full width and inherit clean background */
.wl-embed-wrapper .wl-widget {
	width: 100% !important;
	min-height: 400px;
}

/* Static-preview placeholder mock — looks like a real schedule */
.wl-preview-placeholder {
	background: var(--hive-bone);
	border-radius: 8px;
}
.wl-preview-note {
	text-align: center;
	color: #666;
	font-size: .85rem;
	letter-spacing: .03em;
	margin-bottom: 1.5rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px dashed rgba(0,0,0,0.1);
}
.wl-preview-note strong { color: var(--hive-black); font-weight: 600; }
.wl-preview-note svg { color: var(--hive-blue); }
.wl-preview-tabs {
	display: flex;
	gap: .25rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(0,0,0,0.08);
	overflow-x: auto;
}
.wl-preview-tab {
	flex-shrink: 0;
	padding: .5rem .9rem;
	font-size: .8rem;
	font-weight: 600;
	color: #555;
	letter-spacing: .02em;
	background: rgba(0,0,0,0.04);
	border-radius: 6px;
	cursor: default;
	white-space: nowrap;
}
.wl-preview-tab-active {
	background: var(--hive-black);
	color: var(--hive-bone);
}
.wl-preview-classes { display: flex; flex-direction: column; gap: .75rem; }
.wl-preview-class {
	display: grid;
	grid-template-columns: 90px 1fr auto;
	gap: 1rem;
	align-items: center;
	padding: 1rem 1.25rem;
	background: #fff;
	border-radius: 8px;
	border: 1px solid rgba(0,0,0,0.06);
	transition: border-color .2s ease;
}
.wl-preview-class:hover { border-color: var(--hive-blue); }
.wl-preview-time {
	font-family: var(--font-display);
	font-size: 1.1rem;
	color: var(--hive-black);
	letter-spacing: .03em;
}
.wl-preview-name {
	font-weight: 600;
	color: var(--hive-black);
	font-size: 1rem;
	margin-bottom: .25rem;
}
.wl-preview-detail { font-size: .82rem; color: #666; }
.wl-preview-spots { color: #1a7a2e; font-weight: 600; }
.wl-preview-low { color: #b8851a; }
.wl-preview-full { color: #9c2520; }
.wl-preview-btn {
	background: var(--hive-blue);
	color: var(--hive-black);
	padding: .5rem 1rem;
	border-radius: 6px;
	font-family: var(--font-display);
	font-size: .85rem;
	letter-spacing: .08em;
	font-weight: 700;
	cursor: pointer;
}
.wl-preview-btn-disabled {
	background: rgba(0,0,0,0.1);
	color: #666;
}

@media (max-width: 600px) {
	.wl-embed-wrapper { padding: 1rem; }
	.wl-preview-class { grid-template-columns: 70px 1fr auto; gap: .65rem; padding: .85rem 1rem; }
	.wl-preview-time { font-size: 1rem; }
	.wl-preview-name { font-size: .9rem; }
	.wl-preview-detail { font-size: .75rem; }
	.wl-preview-btn { padding: .4rem .75rem; font-size: .75rem; }
}

/* Final CTA */
.final-cta { padding: clamp(5rem,12vw,9rem) 0; text-align: center; background: var(--hive-black); position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(56,182,255,0.12), transparent 70%); pointer-events: none; }
.final-cta > * { position: relative; }
.final-cta h2 { margin-bottom: 1.5rem; }
.final-cta .lead { margin: 0 auto 2.5rem; }
.cta-note { margin-top: 1.5rem; font-size: .85rem; color: var(--hive-text-dim); letter-spacing: .05em; }

/* Sticky CTA */
.sticky-cta { position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 90; transform: translateY(150%); transition: transform .5s var(--ease); }
@media (min-width: 768px) { .sticky-cta { display: none; } }
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn { width: 100%; justify-content: center; box-shadow: 0 12px 30px rgba(0,0,0,0.4); }

/* Footer */
.site-footer { background: #050505; color: var(--hive-bone-dim); padding: 4rem 0 2rem; border-top: 1px solid rgba(56,182,255,0.1); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; } }
.footer-col h4 { font-size: .85rem; letter-spacing: .15em; color: var(--hive-blue); margin-bottom: 1.25rem; font-family: var(--font-body); font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: .6rem; font-size: .95rem; }
.footer-col a:hover { color: var(--hive-blue); }
.footer-tag { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: .04em; text-transform: uppercase; color: var(--hive-bone); margin-bottom: 1rem; line-height: 1.3; }
.footer-pitch { font-size: .95rem; line-height: 1.6; max-width: 38ch; }
.footer-social { display: flex; gap: .75rem; margin-top: 1rem; }
.footer-social a { width: 40px; height: 40px; border: 1px solid rgba(247,244,238,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .3s var(--ease); }
.footer-social a:hover { border-color: var(--hive-blue); background: var(--hive-blue); color: var(--hive-black); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(247,244,238,0.08); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; font-size: .85rem; color: var(--hive-text-dim); }

/* Preview banner */
.preview-banner {
	position: fixed;
	top: 0; left: 0; right: 0;
	background: var(--hive-blue);
	color: var(--hive-black);
	font-size: .75rem;
	font-weight: 600;
	text-align: center;
	padding: .4rem;
	z-index: 200;
	letter-spacing: .05em;
	text-transform: uppercase;
}
@media (max-width: 600px) { .preview-banner { font-size: .65rem; } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Mobile tweaks */
@media (max-width: 899px) {
	.hero-split { padding: 6rem 0 3rem; }
}
