:root {
	--lakhe-ink: #09090b;
	--lakhe-ink-soft: #111114;
	--lakhe-paper: #f4f0e8;
	--lakhe-paper-2: #ebe4d8;
	--lakhe-red: #b41420;
	--lakhe-red-dark: #790b14;
	--lakhe-gold: #d6ad62;
	--lakhe-white: #fffdf8;
	--lakhe-muted: #8b8985;
	--lakhe-line: rgba(255, 255, 255, .13);
	--lakhe-radius: 2px;
	--lakhe-display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
	--lakhe-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}

body {
	margin: 0;
	background: var(--lakhe-paper);
	color: var(--lakhe-ink);
	font-family: var(--lakhe-body);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.lakhe-menu-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

button,
input,
select,
textarea { font: inherit; }

::selection { background: var(--lakhe-red); color: white; }

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	top: 12px;
	left: 12px;
	z-index: 10000;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: white;
	color: black;
}

.lakhe-container {
	width: min(100% - 48px, 1240px);
	margin-inline: auto;
}

.lakhe-reading-width { max-width: 900px; }

.lakhe-site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	color: var(--lakhe-white);
	border-bottom: 1px solid transparent;
	transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.admin-bar .lakhe-site-header { top: 32px; }

.lakhe-site-header.is-scrolled,
body:not(.home) .lakhe-site-header {
	background: rgba(9, 9, 11, .96);
	border-color: var(--lakhe-line);
	backdrop-filter: blur(14px);
}

.lakhe-header-inner {
	display: flex;
	align-items: center;
	min-height: 82px;
	gap: 36px;
}

.lakhe-brand,
.lakhe-footer-logo,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	flex: 0 0 auto;
}

.custom-logo { width: auto; max-height: 58px; }

.lakhe-brand-mark {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(214, 173, 98, .68);
	border-radius: 50%;
	background: radial-gradient(circle at 50% 36%, #c92330 0 11%, var(--lakhe-red) 12% 52%, #62060d 53% 100%);
	box-shadow: inset 0 0 0 5px rgba(0, 0, 0, .22), 0 0 0 2px rgba(180, 20, 32, .28);
	color: white;
	font-family: Georgia, serif;
	font-size: 25px;
	font-weight: 700;
	line-height: 1;
}

.lakhe-brand-copy {
	display: flex;
	flex-direction: column;
	line-height: 1;
	letter-spacing: .09em;
}

.lakhe-brand-copy strong {
	font-family: var(--lakhe-display);
	font-size: 23px;
	font-stretch: condensed;
	letter-spacing: .11em;
}

.lakhe-brand-copy small {
	margin-top: 5px;
	color: var(--lakhe-gold);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: .42em;
}

.lakhe-primary-nav { margin-left: auto; }

.lakhe-menu,
.lakhe-menu ul {
	display: flex;
	align-items: center;
	gap: 32px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lakhe-menu a {
	position: relative;
	display: block;
	padding: 29px 0 27px;
	color: rgba(255, 255, 255, .76);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.lakhe-menu a::after {
	position: absolute;
	left: 0;
	bottom: 20px;
	width: 0;
	height: 2px;
	background: var(--lakhe-red);
	content: "";
	transition: width .2s ease;
}

.lakhe-menu a:hover,
.lakhe-menu .current-menu-item > a { color: white; }

.lakhe-menu a:hover::after,
.lakhe-menu .current-menu-item > a::after { width: 100%; }

.lakhe-header-actions {
	display: flex;
	align-items: center;
	gap: 17px;
}

.lakhe-cart {
	position: relative;
	display: grid;
	place-items: center;
	width: 34px;
	height: 42px;
}

.lakhe-cart svg {
	width: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lakhe-cart-count {
	position: absolute;
	top: 1px;
	right: -4px;
	display: grid;
	place-items: center;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 20px;
	background: var(--lakhe-red);
	font-size: 9px;
	font-weight: 800;
}

.lakhe-header-cta {
	padding: 12px 19px;
	background: var(--lakhe-red);
	color: white;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
	transition: background .2s ease, transform .2s ease;
}

.lakhe-header-cta:hover { background: #d31c2a; transform: translateY(-2px); }

.lakhe-menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 10px;
	border: 0;
	background: transparent;
	color: white;
}

.lakhe-menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 22px;
	height: 2px;
	margin: 5px 0;
	background: currentColor;
	transition: transform .2s ease, opacity .2s ease;
}

.lakhe-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 790px;
	padding: 148px 0 98px;
	overflow: hidden;
	background:
		radial-gradient(circle at 79% 42%, rgba(180, 20, 32, .29), transparent 30%),
		linear-gradient(120deg, #08080a 0%, #101014 58%, #26070b 100%);
	background-position: center;
	background-size: cover;
	color: var(--lakhe-white);
}

.lakhe-hero::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 150px;
	background: linear-gradient(transparent, rgba(0, 0, 0, .42));
	content: "";
	pointer-events: none;
}

.lakhe-hero-pattern,
.lakhe-final-pattern {
	position: absolute;
	inset: 0;
	opacity: .1;
	background-image:
		linear-gradient(30deg, transparent 24%, currentColor 25%, currentColor 26%, transparent 27%, transparent 74%, currentColor 75%, currentColor 76%, transparent 77%),
		linear-gradient(150deg, transparent 24%, currentColor 25%, currentColor 26%, transparent 27%, transparent 74%, currentColor 75%, currentColor 76%, transparent 77%);
	background-size: 110px 190px;
	color: var(--lakhe-gold);
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 44%, black 100%);
	mask-image: linear-gradient(90deg, transparent 0%, transparent 44%, black 100%);
	pointer-events: none;
}

.lakhe-hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(380px, .78fr);
	align-items: center;
	gap: clamp(55px, 8vw, 118px);
}

.lakhe-hero-copy { max-width: 710px; }

.lakhe-kicker {
	display: flex;
	align-items: center;
	gap: 11px;
	margin: 0 0 18px;
	color: var(--lakhe-red);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .22em;
	line-height: 1.4;
	text-transform: uppercase;
}

.lakhe-kicker > span {
	display: block;
	width: 28px;
	height: 2px;
	background: currentColor;
}

.lakhe-hero .lakhe-kicker { color: var(--lakhe-gold); }

.lakhe-hero h1,
.lakhe-section-heading h2,
.lakhe-story-copy h2,
.lakhe-final-cta h2,
.lakhe-page-hero h1,
.lakhe-error-page h1 {
	margin: 0;
	font-family: var(--lakhe-display);
	font-weight: 900;
	letter-spacing: -.055em;
	line-height: .94;
	text-transform: uppercase;
}

.lakhe-hero h1 {
	max-width: 770px;
	font-size: clamp(58px, 6.2vw, 96px);
	text-wrap: balance;
}

.lakhe-hero-lead {
	max-width: 590px;
	margin: 26px 0 0;
	color: rgba(255, 255, 255, .66);
	font-size: 18px;
	line-height: 1.75;
}

.lakhe-hero-buttons {
	display: flex;
	align-items: center;
	gap: 31px;
	margin-top: 38px;
}

.lakhe-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	min-height: 54px;
	padding: 13px 21px;
	border: 1px solid transparent;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .14em;
	line-height: 1;
	text-transform: uppercase;
	transition: transform .2s ease, background .2s ease, color .2s ease;
}

.lakhe-button span { font-size: 18px; font-weight: 400; }
.lakhe-button:hover { transform: translateY(-3px); }
.lakhe-button-primary { background: var(--lakhe-red); color: white; }
.lakhe-button-primary:hover { background: #d21a28; }
.lakhe-button-light { background: var(--lakhe-white); color: var(--lakhe-ink); }

.lakhe-text-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 8px 0 5px;
	border-bottom: 1px solid currentColor;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .13em;
	line-height: 1.2;
	text-transform: uppercase;
}

.lakhe-text-link span { transition: transform .2s ease; }
.lakhe-text-link:hover span { transform: translateX(4px); }
.lakhe-hero .lakhe-text-link { color: rgba(255, 255, 255, .83); }
.lakhe-text-link.light { color: white; }

.lakhe-hero-proof {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 54px;
	color: rgba(255, 255, 255, .5);
	font-size: 10px;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.lakhe-hero-proof > span:last-child { display: flex; flex-direction: column; }
.lakhe-hero-proof strong { color: white; font-size: 11px; }
.lakhe-proof-faces { display: flex; }

.lakhe-proof-faces i {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	margin-left: -7px;
	border: 2px solid var(--lakhe-ink);
	border-radius: 50%;
	background: var(--lakhe-red);
	color: white;
	font-size: 7px;
	font-style: normal;
	font-weight: 900;
}

.lakhe-proof-faces i:nth-child(2) { background: var(--lakhe-gold); color: var(--lakhe-ink); }
.lakhe-proof-faces i:nth-child(3) { background: #29292d; }

.lakhe-featured-wrap { transform: rotate(1.3deg); }

.lakhe-featured-event {
	display: block;
	background: #121216;
	box-shadow: 0 38px 80px rgba(0, 0, 0, .48);
	transition: transform .3s ease, box-shadow .3s ease;
}

a.lakhe-featured-event:hover { transform: translateY(-8px); box-shadow: 0 46px 90px rgba(0, 0, 0, .58); }

.lakhe-featured-image {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 1.22;
	overflow: hidden;
	background:
		radial-gradient(circle at 53% 47%, rgba(255, 193, 106, .18), transparent 9%),
		radial-gradient(circle at 50% 50%, var(--lakhe-red) 0, #680810 31%, #17090b 63%, #0b0b0d 100%);
}

.lakhe-featured-image::before,
.lakhe-card-art::before,
.lakhe-story-art::before {
	position: absolute;
	inset: 8%;
	border: 1px solid rgba(214, 173, 98, .26);
	border-radius: 50%;
	box-shadow: 0 0 0 24px rgba(214, 173, 98, .035), 0 0 0 48px rgba(214, 173, 98, .025);
	content: "";
}

.lakhe-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

a.lakhe-featured-event:hover .lakhe-featured-image img { transform: scale(1.035); }

.lakhe-art-mark {
	position: relative;
	z-index: 1;
	color: var(--lakhe-gold);
	font-family: Georgia, serif;
	font-size: clamp(110px, 14vw, 190px);
	font-weight: 700;
	line-height: 1;
	text-shadow: 10px 12px 0 rgba(0, 0, 0, .28);
}

.lakhe-live-chip {
	position: absolute;
	top: 20px;
	right: 20px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 11px;
	background: rgba(9, 9, 11, .86);
	font-size: 8px;
	font-weight: 900;
	letter-spacing: .13em;
	text-transform: uppercase;
	backdrop-filter: blur(8px);
}

.lakhe-live-chip i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #ff2a38;
	box-shadow: 0 0 0 4px rgba(255, 42, 56, .15);
}

.lakhe-featured-info {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 19px;
	padding: 22px;
}

.lakhe-date-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 60px;
	border-right: 1px solid rgba(255, 255, 255, .16);
	font-family: var(--lakhe-display);
	line-height: 1;
}

.lakhe-date-block strong { color: var(--lakhe-gold); font-size: 22px; }
.lakhe-date-block span { margin-top: 6px; color: rgba(255, 255, 255, .5); font-size: 7px; font-weight: 900; letter-spacing: .1em; }
.lakhe-featured-info small { color: var(--lakhe-red); font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.lakhe-featured-info h2 { margin: 3px 0 2px; font-family: var(--lakhe-display); font-size: 20px; letter-spacing: -.02em; line-height: 1.1; text-transform: uppercase; }
.lakhe-featured-info p { margin: 0; color: rgba(255, 255, 255, .48); font-size: 10px; }
.lakhe-event-arrow { color: var(--lakhe-gold); font-size: 20px; }

.lakhe-scroll-cue {
	position: absolute;
	z-index: 3;
	right: 26px;
	bottom: 99px;
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgba(255, 255, 255, .36);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: .2em;
	text-transform: uppercase;
	transform: rotate(90deg);
	transform-origin: right bottom;
}

.lakhe-scroll-cue span { width: 34px; height: 1px; background: currentColor; }

.lakhe-marquee {
	position: relative;
	z-index: 4;
	overflow: hidden;
	background: var(--lakhe-red);
	color: white;
}

.lakhe-marquee > div {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 31px;
	min-width: max-content;
	padding: 17px 22px;
	font-family: var(--lakhe-display);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.lakhe-marquee b { color: var(--lakhe-gold); font-size: 10px; }

.lakhe-section { padding: 112px 0; }
.lakhe-events-section { background: var(--lakhe-paper); }

.lakhe-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 46px;
}

.lakhe-section-heading h2,
.lakhe-story-copy h2,
.lakhe-final-cta h2 { font-size: clamp(42px, 5vw, 68px); }

.lakhe-section-heading > p {
	max-width: 460px;
	margin: 0 0 4px;
	color: #5f5c57;
}

.lakhe-event-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 25px;
}

.lakhe-event-card {
	position: relative;
	background: var(--lakhe-white);
	box-shadow: 0 12px 30px rgba(22, 16, 12, .08);
	transition: transform .25s ease, box-shadow .25s ease;
}

.lakhe-event-card:hover { transform: translateY(-7px); box-shadow: 0 24px 45px rgba(22, 16, 12, .15); }

.lakhe-event-image {
	position: relative;
	display: block;
	aspect-ratio: 1.03;
	overflow: hidden;
	background: var(--lakhe-ink);
}

.lakhe-event-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.lakhe-event-card:hover .lakhe-event-image img { transform: scale(1.04); }

.lakhe-card-art {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at center, rgba(180, 20, 32, .82) 0 19%, rgba(111, 8, 17, .82) 20% 34%, transparent 35%),
		linear-gradient(145deg, #1c1a1a, #09090b 60%);
}

.lakhe-card-art i {
	position: relative;
	z-index: 1;
	color: var(--lakhe-gold);
	font-family: Georgia, serif;
	font-size: 115px;
	font-style: normal;
	font-weight: 700;
	line-height: 1;
}

.lakhe-card-art em {
	position: absolute;
	right: 18px;
	bottom: -15px;
	color: rgba(255, 255, 255, .07);
	font-family: var(--lakhe-display);
	font-size: 88px;
	font-style: normal;
	font-weight: 900;
	line-height: 1;
}

.lakhe-card-date {
	position: absolute;
	top: 17px;
	left: 17px;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 52px;
	padding: 10px 9px 8px;
	background: rgba(255, 253, 248, .95);
	color: var(--lakhe-ink);
	line-height: 1;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

.lakhe-card-date strong { font-family: var(--lakhe-display); font-size: 24px; }
.lakhe-card-date small { margin-top: 5px; color: var(--lakhe-red); font-size: 8px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }

.lakhe-event-card-body { padding: 25px 26px 26px; }
.lakhe-event-card-body > p { margin: 0 0 8px; color: var(--lakhe-red); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.lakhe-event-card-body h3 { min-height: 54px; margin: 0; font-family: var(--lakhe-display); font-size: 24px; letter-spacing: -.02em; line-height: 1.08; text-transform: uppercase; }
.lakhe-event-card-body h3 a:hover { color: var(--lakhe-red); }

.lakhe-event-meta {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	min-height: 48px;
	margin-top: 15px;
	padding-bottom: 20px;
	border-bottom: 1px solid #ded8cd;
}

.lakhe-event-meta span { color: #716c65; font-size: 12px; }
.lakhe-event-meta strong { color: var(--lakhe-red); font-size: 14px; white-space: nowrap; }
.lakhe-event-meta del { color: #8a867f; font-size: 11px; }

.lakhe-card-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 19px;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.lakhe-card-button span { color: var(--lakhe-red); font-size: 18px; transition: transform .2s ease; }
.lakhe-card-button:hover span { transform: translate(3px, -3px); }

.lakhe-empty-events {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 38px;
	border: 1px solid #d6cec1;
	background: rgba(255, 255, 255, .44);
}

.lakhe-empty-events > span { color: var(--lakhe-red); font-family: Georgia, serif; font-size: 60px; line-height: 1; }
.lakhe-empty-events h3 { margin: 0; font-family: var(--lakhe-display); font-size: 25px; text-transform: uppercase; }
.lakhe-empty-events p { margin: 4px 0 0; color: #6e6a63; }

.lakhe-services {
	background: var(--lakhe-paper-2);
	border-top: 1px solid #ddd4c7;
}

.lakhe-service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid #cfc5b6;
	border-left: 1px solid #cfc5b6;
}

.lakhe-service-grid article {
	position: relative;
	min-height: 310px;
	padding: 31px;
	border-right: 1px solid #cfc5b6;
	border-bottom: 1px solid #cfc5b6;
	transition: background .25s ease, color .25s ease;
}

.lakhe-service-grid article:hover { background: var(--lakhe-ink); color: white; }
.lakhe-service-grid article > span { color: #9a9388; font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.lakhe-service-icon { margin: 48px 0 29px; color: var(--lakhe-red); font-family: Georgia, serif; font-size: 35px; line-height: 1; }
.lakhe-service-grid article:hover .lakhe-service-icon { color: var(--lakhe-gold); }
.lakhe-service-grid h3 { margin: 0 0 13px; font-family: var(--lakhe-display); font-size: 24px; letter-spacing: -.02em; text-transform: uppercase; }
.lakhe-service-grid p { margin: 0; color: #6c6860; font-size: 14px; }
.lakhe-service-grid article:hover p { color: rgba(255, 255, 255, .58); }

.lakhe-story {
	position: relative;
	overflow: hidden;
	background: var(--lakhe-ink);
	color: white;
}

.lakhe-story-grid { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 670px; }

.lakhe-story-art {
	position: relative;
	display: grid;
	place-items: center;
	overflow: hidden;
	background: radial-gradient(circle at center, #9a101a 0%, #48080d 31%, #100e10 68%);
}

.lakhe-story-art::after {
	position: absolute;
	inset: 0;
	background: repeating-radial-gradient(circle, transparent 0 37px, rgba(214, 173, 98, .08) 38px 39px);
	content: "";
}

.lakhe-story-art::before { inset: 16%; z-index: 1; }
.lakhe-story-art strong { position: relative; z-index: 2; color: var(--lakhe-gold); font-family: Georgia, serif; font-size: clamp(160px, 21vw, 280px); line-height: 1; text-shadow: 15px 20px 0 rgba(0, 0, 0, .18); }
.lakhe-story-art i { position: absolute; z-index: 3; right: 28px; bottom: 28px; color: rgba(255, 255, 255, .55); font-size: 9px; font-style: normal; font-weight: 900; letter-spacing: .23em; }

.lakhe-story-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px clamp(45px, 7vw, 105px);
}

.lakhe-story-copy .lakhe-kicker { color: var(--lakhe-gold); }
.lakhe-story-body { max-width: 680px; margin-top: 30px; }
.lakhe-story-body p { margin: 0 0 18px; color: rgba(255, 255, 255, .64); font-size: 16px; line-height: 1.78; }
.lakhe-story-body p:last-child { margin-bottom: 0; }
.lakhe-story-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 46px 0; padding: 30px 0; border-top: 1px solid var(--lakhe-line); border-bottom: 1px solid var(--lakhe-line); }
.lakhe-story-stats div { display: flex; flex-direction: column; }
.lakhe-story-stats strong { color: var(--lakhe-gold); font-family: var(--lakhe-display); font-size: 30px; line-height: 1; }
.lakhe-story-stats span { margin-top: 9px; color: rgba(255, 255, 255, .45); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.lakhe-process { background: var(--lakhe-white); }
.lakhe-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #d9d2c7; }
.lakhe-process-grid article { position: relative; padding: 34px 28px 10px 0; }
.lakhe-process-grid article:not(:last-child)::after { position: absolute; top: 0; right: 28px; width: 1px; height: 100%; background: #d9d2c7; content: ""; }
.lakhe-process-grid b { color: var(--lakhe-red); font-size: 10px; letter-spacing: .12em; }
.lakhe-process-grid h3 { max-width: 190px; margin: 53px 0 11px; font-family: var(--lakhe-display); font-size: 22px; line-height: 1.05; text-transform: uppercase; }
.lakhe-process-grid p { max-width: 220px; margin: 0; color: #777169; font-size: 13px; }

.lakhe-final-cta {
	position: relative;
	overflow: hidden;
	padding: 98px 0;
	background: var(--lakhe-red);
	color: white;
	text-align: center;
}

.lakhe-final-pattern { opacity: .23; color: #320306; -webkit-mask-image: none; mask-image: none; }
.lakhe-final-cta .lakhe-container { position: relative; z-index: 1; }
.lakhe-final-cta p { margin: 0 0 17px; color: rgba(255, 255, 255, .6); font-size: 9px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.lakhe-final-cta h2 { max-width: 850px; margin-inline: auto; }
.lakhe-final-cta .lakhe-button { margin-top: 32px; }

.lakhe-site-footer { padding: 75px 0 25px; background: #070709; color: white; }
.lakhe-footer-grid { display: grid; grid-template-columns: 1.25fr .65fr 1fr .58fr; gap: 65px; padding-bottom: 62px; }
.lakhe-footer-brand p { max-width: 270px; margin: 24px 0 0; color: rgba(255, 255, 255, .45); font-size: 13px; }
.lakhe-site-footer h3 { margin: 0 0 23px; color: var(--lakhe-gold); font-size: 9px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.lakhe-site-footer p { color: rgba(255, 255, 255, .48); font-size: 12px; }
.lakhe-footer-menu,
.lakhe-footer-menu ul,
.lakhe-site-footer .lakhe-menu { display: block; margin: 0; padding: 0; list-style: none; }
.lakhe-footer-menu a,
.lakhe-site-footer .lakhe-menu a { display: inline-block; padding: 3px 0; color: rgba(255, 255, 255, .62); font-size: 12px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.lakhe-site-footer .lakhe-menu a::after { display: none; }
.lakhe-footer-menu a:hover,
.lakhe-site-footer .lakhe-menu a:hover { color: white; }
.lakhe-email-link { display: inline-block; margin-top: 11px; border-bottom: 1px solid var(--lakhe-red); font-size: 12px; font-weight: 700; }
.lakhe-social-links { display: flex; flex-direction: column; gap: 6px; }
.lakhe-social-links a,
.lakhe-social-links span { color: rgba(255, 255, 255, .55); font-size: 12px; }
.lakhe-social-links a:hover { color: white; }
.lakhe-footer-bottom { display: flex; justify-content: space-between; padding-top: 23px; border-top: 1px solid var(--lakhe-line); color: rgba(255, 255, 255, .31); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

/* Pages and posts */
.lakhe-content-main,
.lakhe-shop-main { min-height: 70vh; padding: 155px 0 110px; background: var(--lakhe-paper); }
.lakhe-page-hero { margin-bottom: 48px; padding-bottom: 38px; border-bottom: 1px solid #d4ccbf; }
.lakhe-page-hero h1 { max-width: 930px; font-size: clamp(48px, 7vw, 92px); }
.lakhe-page-image { margin: 0 0 45px; }
.lakhe-entry-content { font-size: 17px; }
.lakhe-entry-content > * { max-width: 740px; margin-inline: auto; }
.lakhe-entry-content > .alignwide { max-width: 1100px; }
.lakhe-entry-content > .alignfull { max-width: none; }
.lakhe-entry-content h2,
.lakhe-entry-content h3 { margin-top: 2em; font-family: var(--lakhe-display); line-height: 1.1; text-transform: uppercase; }
.lakhe-entry-content a { color: var(--lakhe-red); text-decoration: underline; }
.lakhe-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.lakhe-post-card { background: white; }
.lakhe-post-image { display: block; aspect-ratio: 1.3; overflow: hidden; }
.lakhe-post-image img { width: 100%; height: 100%; object-fit: cover; }
.lakhe-post-card > div { padding: 25px; }
.lakhe-post-card time { color: var(--lakhe-red); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.lakhe-post-card h2 { margin: 9px 0 12px; font-family: var(--lakhe-display); font-size: 25px; line-height: 1.06; text-transform: uppercase; }
.navigation.pagination { margin-top: 45px; }
.nav-links { display: flex; gap: 8px; }
.page-numbers { padding: 8px 14px; background: white; }
.page-numbers.current { background: var(--lakhe-red); color: white; }

.lakhe-error-page { display: grid; place-items: center; min-height: 86vh; padding: 130px 24px 80px; background: radial-gradient(circle at center, #371014, var(--lakhe-ink) 62%); color: white; text-align: center; }
.lakhe-error-page > div { max-width: 700px; }
.lakhe-error-page > div > span { color: var(--lakhe-gold); font-family: var(--lakhe-display); font-size: 110px; font-weight: 900; line-height: 1; opacity: .2; }
.lakhe-error-page h1 { margin-top: -23px; font-size: clamp(42px, 7vw, 75px); }
.lakhe-error-page p { margin: 24px auto 31px; color: rgba(255, 255, 255, .58); }

/* WooCommerce */
.woocommerce .woocommerce-breadcrumb { margin-bottom: 28px; color: #7e786f; font-size: 11px; }
.woocommerce .woocommerce-products-header__title,
.woocommerce div.product .product_title,
.woocommerce-cart h1,
.woocommerce-checkout h1,
.woocommerce-account h1 { font-family: var(--lakhe-display); font-size: clamp(42px, 5vw, 70px); line-height: .95; text-transform: uppercase; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product { float: none; width: auto !important; margin: 0 !important; padding: 0 0 25px; background: white; box-shadow: 0 12px 30px rgba(22, 16, 12, .08); }
.woocommerce ul.products li.product a img { margin: 0 0 22px; aspect-ratio: 1.05; object-fit: cover; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { padding: 0 22px; font-family: var(--lakhe-display); font-size: 22px; line-height: 1.05; text-transform: uppercase; }
.woocommerce ul.products li.product .price { padding: 0 22px; color: var(--lakhe-red); font-weight: 800; }
.woocommerce ul.products li.product .button { margin: 8px 22px 0; }
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
	border-radius: 0;
	background: var(--lakhe-red);
	color: white;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover { background: #d21a28; color: white; }
.woocommerce div.product { padding-top: 18px; }
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: var(--lakhe-red); font-size: 22px; font-weight: 900; }
.woocommerce div.product form.cart .button { min-height: 48px; }
.woocommerce div.product div.images img { background: #111; }
.woocommerce-tabs { padding-top: 35px; }
.woocommerce table.shop_table { border-radius: 0; background: white; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single { min-height: 46px; padding: 10px 12px; border: 1px solid #cfc8bd; border-radius: 0; background: white; }
.select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 24px; }
.woocommerce-checkout #payment { border-radius: 0; background: #e7dfd3; }
.woocommerce-message,
.woocommerce-info { border-top-color: var(--lakhe-red); background: white; }
.woocommerce-message::before,
.woocommerce-info::before { color: var(--lakhe-red); }

@media (max-width: 1080px) {
	.lakhe-container { width: min(100% - 38px, 1180px); }
	.lakhe-header-inner { gap: 23px; }
	.lakhe-menu { gap: 21px; }
	.lakhe-header-cta { display: none; }
	.lakhe-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr); gap: 45px; }
	.lakhe-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 840px) {
	.admin-bar .lakhe-site-header { top: 46px; }
	.lakhe-header-inner { min-height: 72px; }
	.lakhe-menu-toggle { display: block; order: 3; margin-left: 3px; }
	.lakhe-primary-nav {
		position: fixed;
		top: 72px;
		left: 0;
		right: 0;
		bottom: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0;
		padding: 30px;
		background: rgba(9, 9, 11, .98);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-12px);
		transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
	}
	.admin-bar .lakhe-primary-nav { top: 118px; }
	.lakhe-menu-open .lakhe-primary-nav { opacity: 1; visibility: visible; transform: none; }
	.lakhe-primary-nav .lakhe-menu { display: flex; flex-direction: column; gap: 6px; }
	.lakhe-primary-nav .lakhe-menu a { padding: 14px; font-family: var(--lakhe-display); font-size: 29px; letter-spacing: .04em; }
	.lakhe-primary-nav .lakhe-menu a::after { display: none; }
	.lakhe-menu-open .lakhe-menu-toggle > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.lakhe-menu-open .lakhe-menu-toggle > span:nth-child(2) { opacity: 0; }
	.lakhe-menu-open .lakhe-menu-toggle > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
	.lakhe-header-actions { margin-left: auto; }
	.lakhe-hero { min-height: auto; padding: 135px 0 85px; }
	.lakhe-hero-grid { grid-template-columns: 1fr; }
	.lakhe-hero-copy { max-width: 700px; }
	.lakhe-featured-wrap { width: min(100%, 500px); margin-left: auto; }
	.lakhe-scroll-cue { display: none; }
	.lakhe-event-grid { grid-template-columns: repeat(2, 1fr); }
	.lakhe-service-grid { grid-template-columns: 1fr; }
	.lakhe-service-grid article { min-height: 250px; }
	.lakhe-service-icon { margin: 35px 0 23px; }
	.lakhe-story-grid { grid-template-columns: 1fr; }
	.lakhe-story-art { min-height: 500px; }
	.lakhe-process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 35px; }
	.lakhe-process-grid article:nth-child(2)::after { display: none; }
	.lakhe-post-grid,
	.woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.lakhe-container { width: min(100% - 28px, 1240px); }
	.lakhe-site-header { background: rgba(9, 9, 11, .9); backdrop-filter: blur(12px); }
	.lakhe-header-inner { min-height: 66px; }
	.lakhe-brand-mark { width: 39px; height: 39px; font-size: 21px; }
	.lakhe-brand-copy strong { font-size: 18px; }
	.lakhe-brand-copy small { font-size: 6px; }
	.lakhe-cart { display: none; }
	.lakhe-primary-nav { top: 66px; }
	.admin-bar .lakhe-primary-nav { top: 112px; }
	.lakhe-hero { padding: 116px 0 64px; }
	.lakhe-hero h1 { font-size: clamp(48px, 15vw, 67px); }
	.lakhe-hero-lead { margin-top: 21px; font-size: 16px; }
	.lakhe-hero-buttons { align-items: flex-start; flex-direction: column; gap: 18px; margin-top: 29px; }
	.lakhe-hero-proof { margin-top: 36px; }
	.lakhe-featured-wrap { margin-top: 8px; transform: none; }
	.lakhe-featured-info { grid-template-columns: auto 1fr; padding: 17px; }
	.lakhe-event-arrow { display: none; }
	.lakhe-date-block { width: 48px; height: 54px; }
	.lakhe-featured-info h2 { font-size: 17px; }
	.lakhe-marquee > div { justify-content: flex-start; gap: 22px; overflow: hidden; }
	.lakhe-section { padding: 75px 0; }
	.lakhe-section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 32px; }
	.lakhe-section-heading h2,
	.lakhe-story-copy h2,
	.lakhe-final-cta h2 { font-size: 43px; }
	.lakhe-event-grid { grid-template-columns: 1fr; }
	.lakhe-event-image { aspect-ratio: 1.14; }
	.lakhe-event-card-body h3 { min-height: 0; }
	.lakhe-empty-events { align-items: flex-start; padding: 25px; }
	.lakhe-empty-events > span { font-size: 43px; }
	.lakhe-service-grid article { min-height: 230px; padding: 26px; }
	.lakhe-story-art { min-height: 390px; }
	.lakhe-story-copy { padding: 70px 26px; }
	.lakhe-story-stats { grid-template-columns: 1fr; gap: 24px; }
	.lakhe-story-stats div { flex-direction: row; align-items: center; gap: 18px; }
	.lakhe-story-stats span { margin-top: 0; }
	.lakhe-process-grid { grid-template-columns: 1fr; }
	.lakhe-process-grid article { padding-right: 0; padding-bottom: 25px; border-bottom: 1px solid #d9d2c7; }
	.lakhe-process-grid article::after { display: none; }
	.lakhe-process-grid h3 { max-width: none; margin-top: 28px; }
	.lakhe-final-cta { padding: 75px 0; }
	.lakhe-footer-grid { grid-template-columns: 1fr; gap: 39px; }
	.lakhe-footer-bottom { flex-direction: column; gap: 5px; }
	.lakhe-content-main,
	.lakhe-shop-main { padding: 120px 0 75px; }
	.lakhe-post-grid,
	.woocommerce ul.products { grid-template-columns: 1fr; }
	.woocommerce div.product div.images,
	.woocommerce div.product div.summary { float: none; width: 100%; }
}

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