/* Lime Bartending — pixel-matched to mockup */

:root {
	--lime: #b5e61d;
	--lime-bright: #a5d610;
	--lime-dark: #9acc18;
	--dark: #0a0a0a;
	--dark-2: #141414;
	--dark-3: #1c1c1c;
	--white: #ffffff;
	--gray-50: #fafafa;
	--gray-100: #f5f5f5;
	--gray-200: #e5e5e5;
	--text-dark: #111111;
	--text-muted-dark: #555555;
	--text-muted-light: #aaaaaa;
	--blue-name: #2563eb;
	--font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-serif: 'Playfair Display', Georgia, serif;
	--font-script: 'Pacifico', cursive;
	--max: 1280px;
	--header-h: 72px;
	--radius: 6px;
	--ease: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
	font-family: var(--font);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--white);
	background: var(--dark);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--ease); }
ul { list-style: none; }

.container {
	width: 100%;
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 32px;
}

.highlight { color: var(--lime); }
.script-text {
	font-family: var(--font-script);
	color: var(--lime);
	font-weight: 400;
	font-size: 1.35em;
	display: inline-block;
	line-height: 1.1;
}
.icon { flex-shrink: 0; }
.anchor-target { display: block; height: 0; visibility: hidden; }

/* Typography scale (mockup) */
.section-title-serif {
	font-family: var(--font-serif);
	font-weight: 800;
	font-size: clamp(2rem, 3.2vw, 2.75rem);
	line-height: 1.18;
	letter-spacing: -0.01em;
}
.section-title-serif span { display: block; }
.section-light { background: var(--white); color: var(--text-dark); }
.section-light .section-title-serif { color: var(--text-dark); }
.section-light .section-subtitle { color: var(--text-muted-dark); }
.section-gray { background: var(--gray-100); color: var(--text-dark); }
.section-gray .section-title-serif { color: var(--text-dark); }

.section-label {
	display: block;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--lime-bright);
	margin-bottom: 1rem;
}
.section-subtitle {
	font-size: 1rem;
	line-height: 1.75;
	max-width: 28rem;
}
.section-header-center {
	text-align: center;
	max-width: 42rem;
	margin: 0 auto 3.5rem;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 1.75rem;
	font-family: var(--font);
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border-radius: var(--radius);
	border: 2px solid transparent;
	cursor: pointer;
	transition: all var(--ease);
	white-space: nowrap;
}
.btn-primary { background: var(--lime); color: var(--dark); border-color: var(--lime); }
.btn-primary:hover { background: var(--lime-dark); border-color: var(--lime-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.9); }
.btn-outline:hover { background: var(--white); color: var(--dark); }
.btn-sm { padding: 0.625rem 1.125rem; font-size: 0.625rem; }

/* Header */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1000;
	height: var(--header-h);
	background: rgba(10, 10, 10, 0.72);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(255,255,255,0.06);
	transition: background var(--ease), border var(--ease);
}
.site-header.is-scrolled {
	background: rgba(10,10,10,0.96);
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-h);
	gap: 1.5rem;
}
.site-logo, .custom-logo-link img { height: 3rem; width: auto; }

/* Brand lockup — mockup: lime icon + green Lime + white tagline */
.brand-lockup {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	line-height: 1;
}
.brand-icon {
	width: 2.625rem;
	height: 2.625rem;
	object-fit: contain;
	flex-shrink: 0;
}
.brand-wordmark { display: flex; flex-direction: column; gap: 0.125rem; }
.brand-name {
	font-size: 1.375rem;
	font-weight: 800;
	color: var(--lime);
	letter-spacing: -0.02em;
	line-height: 1;
}
.brand-tagline {
	font-size: 0.5625rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--white);
	line-height: 1.2;
}
.brand-wordmark-footer .brand-name { font-size: 1.125rem; }
.brand-wordmark-footer .brand-tagline { font-size: 0.5rem; }
.footer-brand-lockup {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}
.footer-logo-icon { width: 2rem; height: 2rem; object-fit: contain; }

.main-navigation { flex: 1; display: flex; justify-content: center; }
.primary-menu { display: flex; align-items: center; gap: 2rem; }
.primary-menu > li { position: relative; }
.primary-menu a {
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--white);
	padding: 0.375rem 0;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}
.primary-menu a:hover, .primary-menu .current-menu-item > a { color: var(--lime); }
.primary-menu .sub-menu {
	position: absolute;
	top: 100%; left: 50%;
	transform: translateX(-50%);
	min-width: 11rem;
	background: var(--dark-2);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: var(--radius);
	padding: 0.5rem 0;
	opacity: 0; visibility: hidden;
	transition: opacity var(--ease), visibility var(--ease);
	margin-top: 0.5rem;
	box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; }
.primary-menu .sub-menu a { padding: 0.625rem 1.25rem; font-size: 0.625rem; }
.menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 0; height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	margin-left: 2px;
}
.header-cta { flex-shrink: 0; }
.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 30px; height: 30px;
	background: none; border: none; cursor: pointer;
}
.menu-toggle-bar { display: block; width: 100%; height: 2px; background: var(--white); }

/* Hero — full-bleed photo, text left overlay (mockup) */
.hero {
	position: relative;
	min-height: calc(100vh - 0px);
	min-height: 100svh;
	padding-top: var(--header-h);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: 72% center;
	background-repeat: no-repeat;
	z-index: 0;
}
.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		90deg,
		rgba(8, 8, 8, 0.88) 0%,
		rgba(8, 8, 8, 0.78) 28%,
		rgba(8, 8, 8, 0.45) 48%,
		rgba(8, 8, 8, 0.12) 68%,
		rgba(8, 8, 8, 0.05) 100%
	);
}
.hero-inner {
	position: relative;
	z-index: 2;
	flex: 1;
	display: flex;
	align-items: center;
	padding-top: 3rem;
	padding-bottom: 2rem;
}
.hero-content {
	max-width: 54rem;
	width: 100%;
}
.hero-title {
	margin-bottom: 1.5rem;
	font-family: var(--font-serif);
}
.hero-title-line {
	display: block;
	font-size: clamp(3rem, 6.5vw, 4.75rem);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.025em;
	color: var(--white);
}
.hero-subtitle {
	font-family: var(--font);
	font-size: 1.125rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.92);
	margin-bottom: 2.25rem;
	line-height: 1.65;
	max-width: 26rem;
}
.hero-title-line.highlight { color: var(--lime); }

.hero-buttons { display: flex; flex-wrap: wrap; gap: 0.875rem; margin-bottom: 0; }

/* 3 icons + text — single row like mockup */
.hero-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem 1.5rem;
	margin-top: 2.5rem;
	padding: 0;
	list-style: none;
	width: 100%;
}
.hero-feature {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 0;
}
.hero-feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	color: var(--lime);
}
.hero-feature-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}
.hero-feature-text {
	font-size: 0.625rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--white);
	line-height: 1.35;
}

/* Stats — compact bar */
.stats-bar {
	background: var(--dark-2);
	padding: 1.75rem 0;
	border-top: 1px solid rgba(255,255,255,0.05);
}
.stats-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}
.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.375rem;
}
.stat-item .icon { color: var(--lime); width: 2rem; height: 2rem; }
.stat-item strong {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--lime);
	line-height: 1;
}
.stat-item span {
	font-size: 0.6875rem;
	font-weight: 500;
	color: var(--text-muted-light);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	line-height: 1.3;
	max-width: 8rem;
}

/* Learn — left: text + 4 cols | right: gallery */
.learn-section { padding: 6.25rem 0; }
.learn-grid {
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	gap: 3rem;
	align-items: start;
}
.learn-left .section-subtitle {
	font-size: 0.9375rem;
	max-width: 100%;
	margin-bottom: 0;
}
.learn-features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem 1.5rem;
	width: 100%;
	margin-top: 2.25rem;
}
.learn-feature {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
	min-width: 0;
}
.learn-feature-icon {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	color: var(--lime-bright);
	flex-shrink: 0;
}
.learn-feature-icon .icon { width: 2rem; height: 2rem; }
.learn-feature h3 {
	font-family: var(--font);
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.35;
}
.learn-feature p {
	font-size: 0.875rem;
	color: var(--text-muted-dark);
	line-height: 1.6;
}

.learn-gallery {
	position: relative;
	height: 32.5rem;
	min-width: 0;
}
.gallery-card {
	position: absolute;
	border-radius: 0.625rem;
	overflow: hidden;
	box-shadow: 0 20px 56px rgba(0,0,0,0.2);
	border: 5px solid var(--white);
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; }
.gallery-card-1 { top: 0; left: 0; width: 60%; height: 62%; transform: rotate(-5deg); z-index: 1; }
.gallery-card-2 { top: 6%; right: -2%; width: 54%; height: 54%; transform: rotate(6deg); z-index: 2; }
.gallery-card-3 { bottom: -2%; left: 16%; width: 60%; height: 54%; transform: rotate(-2.5deg); z-index: 3; }

/* Journey — dark 2-col */
.journey-section { padding: 6.25rem 0; background: var(--dark); }
.journey-grid {
	display: grid;
	grid-template-columns: 38% 62%;
	gap: 3rem;
	align-items: start;
}
.journey-intro .section-subtitle {
	color: var(--text-muted-light);
	margin-bottom: 2rem;
	font-size: 0.9375rem;
}
.journey-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.125rem;
}
.journey-card {
	background: var(--dark-3);
	border-radius: 0.625rem;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.06);
	text-align: left;
}
.journey-card-image {
	aspect-ratio: 4 / 5;
	overflow: hidden;
}
.journey-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.journey-card h3 {
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--lime);
	line-height: 1.35;
	padding: 0.875rem 1rem 0.25rem;
}
.journey-card p {
	font-size: 0.75rem;
	color: var(--text-muted-light);
	line-height: 1.55;
	padding: 0 1rem 1rem;
}

/* Testimonials — grey bg, white cards */
.testimonials-section { padding: 6.25rem 0; }
.testimonials-slider {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.testimonials-track {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	flex: 1;
}
.testimonial-card {
	background: var(--white);
	border-radius: 0.75rem;
	padding: 2rem 1.5rem;
	text-align: center;
	box-shadow: 0 4px 24px rgba(0,0,0,0.06);
	border: 1px solid var(--gray-200);
}
.testimonial-avatar {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 1rem;
	border: 3px solid var(--lime);
}
.testimonial-quote {
	font-size: 0.875rem;
	color: var(--text-muted-dark);
	line-height: 1.7;
	margin-bottom: 1rem;
}
.testimonial-name {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--lime-bright);
	margin-bottom: 0.125rem;
}
.testimonial-location {
	font-size: 0.75rem;
	color: var(--text-muted-dark);
	margin-bottom: 0.625rem;
}
.testimonial-stars {
	display: flex;
	justify-content: center;
	gap: 0.1875rem;
	color: var(--lime-bright);
}
.slider-btn {
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--white);
	border: 1px solid var(--gray-200);
	color: var(--text-dark);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--ease);
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.slider-btn:hover { background: var(--lime); color: var(--dark); border-color: var(--lime); }

/* Pre-footer CTA — compact banner like mockup (~200px) */
.pre-footer-cta {
	background: var(--dark);
	color: var(--white);
}
.pre-footer-cta-inner {
	display: grid;
	grid-template-columns: minmax(200px, 32%) 1fr;
	align-items: stretch;
	height: 12.5rem;
}
.pre-footer-cta-image {
	overflow: hidden;
	height: 100%;
}
.pre-footer-cta-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.pre-footer-cta-content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.75rem 2rem;
	align-items: center;
	padding: 1.125rem 2.5rem 1.125rem 1.75rem;
	background: var(--dark);
	color: var(--white);
	min-width: 0;
	height: 100%;
}
.pre-footer-cta-copy {
	min-width: 0;
}
.pre-footer-cta-title {
	font-family: var(--font-serif);
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 0.25rem;
	letter-spacing: -0.01em;
	color: var(--white);
}
.pre-footer-cta-title .script-text {
	font-size: 1.2em;
}
.pre-footer-cta-subtitle {
	font-size: 0.75rem;
	color: var(--text-muted-light);
	margin-bottom: 0.5rem;
	line-height: 1.4;
}
.pre-footer-features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.375rem 1rem;
}
.pre-footer-feature {
	display: flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 0.5rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--text-muted-light);
}
.pre-footer-feature .icon { color: var(--lime); flex-shrink: 0; width: 14px; height: 14px; }
.pre-footer-cta-buttons {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	flex-shrink: 0;
}
.pre-footer-cta-buttons .btn {
	min-width: 11.5rem;
	justify-content: center;
	padding: 0.5625rem 1rem;
	font-size: 0.5625rem;
}

.footer-bottom {
	background: var(--dark);
	border-top: 1px solid rgba(255,255,255,0.06);
	padding: 2rem 0;
}
.footer-bottom-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.125rem;
	text-align: center;
}
.footer-menu { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.375rem; }
.footer-menu a {
	font-size: 0.625rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-muted-light);
}
.footer-menu a:hover { color: var(--lime); }
.copyright { font-size: 0.75rem; color: var(--text-muted-light); }

/* Responsive */
@media (max-width: 1100px) {
	.hero-bg { background-position: 65% center; }
	.journey-grid { grid-template-columns: 1fr; gap: 2.5rem; }
	.journey-intro { text-align: center; }
	.journey-intro .section-subtitle { margin-left: auto; margin-right: auto; }
}

@media (max-width: 1024px) {
	.container { padding: 0 24px; }
	.hero-bg { background-position: center center; }
	.hero-overlay {
		background: linear-gradient(
			180deg,
			rgba(8, 8, 8, 0.82) 0%,
			rgba(8, 8, 8, 0.72) 50%,
			rgba(8, 8, 8, 0.85) 100%
		);
	}
	.hero-inner { text-align: center; justify-content: center; padding-bottom: 3.5rem; }
	.hero-content { max-width: 100%; margin: 0 auto; }
	.hero-subtitle { margin-left: auto; margin-right: auto; }
	.hero-buttons { justify-content: center; }
	.hero-features {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem 0.75rem;
		margin-top: 2rem;
		justify-items: stretch;
	}
	.hero-feature {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 0.625rem;
		max-width: none;
	}
	.hero-feature-icon { width: 2.125rem; height: 2.125rem; }
	.hero-feature-text {
		font-size: 0.5625rem;
		line-height: 1.35;
		max-width: 7.5rem;
	}
	.stats-inner { grid-template-columns: repeat(2, 1fr); }
	.learn-grid { grid-template-columns: 1fr; gap: 2rem; }
	.learn-features-grid { grid-template-columns: repeat(2, 1fr); }
	.learn-gallery {
		height: 20rem;
		max-width: 28rem;
		margin: 0 auto;
		overflow: hidden;
	}
	.journey-cards { grid-template-columns: 1fr; max-width: 20rem; margin: 0 auto; }
	.testimonials-track { grid-template-columns: 1fr; max-width: 24rem; margin: 0 auto; }
	.slider-btn { display: none; }
	.pre-footer-cta-inner {
		grid-template-columns: 1fr;
		height: auto;
	}
	.pre-footer-cta-image { height: 10rem; }
	.pre-footer-cta-content {
		grid-template-columns: 1fr;
		padding: 1.5rem 1.5rem;
		gap: 1rem;
		height: auto;
	}
	.pre-footer-cta-buttons { width: 100%; }
	.pre-footer-cta-buttons .btn { width: 100%; min-width: 0; }
}

@media (max-width: 768px) {
	.menu-toggle { display: flex; }
	.header-cta { display: none; }
	.main-navigation {
		position: fixed;
		top: var(--header-h); left: 0; right: 0;
		background: rgba(10,10,10,0.98);
		padding: 1rem 1.5rem;
		border-bottom: 1px solid rgba(255,255,255,0.08);
		transform: translateY(-110%);
		opacity: 0; visibility: hidden;
		transition: all var(--ease);
	}
	.main-navigation.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
	.primary-menu { flex-direction: column; align-items: stretch; gap: 0; }
	.primary-menu a { padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
	.primary-menu .sub-menu {
		position: static; transform: none;
		opacity: 1; visibility: visible;
		background: transparent; border: none; box-shadow: none;
		padding: 0 0 0 1rem; margin: 0;
	}
	.learn-grid { gap: 1.25rem; }
	.learn-features-grid {
		grid-template-columns: 1fr;
		margin-top: 1.5rem;
		gap: 1.25rem;
	}
	.learn-gallery {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
		gap: 0.75rem;
		height: auto;
		max-width: 100%;
		margin: 0;
		padding: 0;
		overflow: visible;
	}
	.gallery-card {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		bottom: auto;
		width: 100%;
		height: auto;
		transform: none;
		border-width: 4px;
	}
	.gallery-card img { aspect-ratio: 4 / 3; }
	.gallery-card-1 { grid-column: 1; grid-row: 1; }
	.gallery-card-2 { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
	.gallery-card-3 { grid-column: 1; grid-row: 2; }
	.learn-section, .journey-section, .testimonials-section { padding: 4rem 0; }
	.hero { min-height: auto; }
	.hero-inner { padding-top: 2rem; padding-bottom: 3.75rem; }
	.hero-features {
		grid-template-columns: repeat(3, 1fr);
		gap: 0.875rem 0.5rem;
		margin-top: 1.75rem;
	}
	.hero-feature { gap: 0.5rem; }
	.hero-feature-icon { width: 1.875rem; height: 1.875rem; }
	.hero-feature-text {
		font-size: 0.5rem;
		letter-spacing: 0.05em;
		max-width: 6.25rem;
	}
	.stats-bar { padding: 2rem 0; }
}

@media (max-width: 480px) {
	.hero-buttons, .pre-footer-cta-buttons { flex-direction: column; width: 100%; }
	.hero-buttons .btn, .pre-footer-cta-buttons .btn { width: 100%; }
	.stats-inner { grid-template-columns: 1fr 1fr; }
}

:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

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