:root {
	--luxe-ink: #081936;
	--luxe-ink-2: #142747;
	--luxe-gold: #c8953a;
	--luxe-gold-2: #f1d398;
	--luxe-cream: #f8f4ed;
	--luxe-paper: #fffdf8;
	--luxe-teal: #1b7f86;
	--luxe-plum: #7a284f;
	--luxe-muted: #677083;
	--luxe-line: rgba(8, 25, 54, 0.13);
	--luxe-shadow: 0 24px 80px rgba(8, 25, 54, 0.14);
	--luxe-radius: 8px;
	--luxe-radius-sm: 6px;
	--luxe-container: min(1180px, calc(100vw - 40px));
	--luxe-font: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--luxe-paper);
	color: var(--luxe-ink);
	font-family: var(--luxe-font);
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

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

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

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

input,
select,
textarea {
	width: 100%;
	border: 1px solid var(--luxe-line);
	border-radius: var(--luxe-radius-sm);
	background: #fff;
	color: var(--luxe-ink);
	padding: 13px 15px;
	outline: none;
	transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
	border-color: rgba(200, 149, 58, 0.75);
	box-shadow: 0 0 0 4px rgba(200, 149, 58, 0.14);
}

button,
.button,
.wp-element-button,
.wc-block-components-button {
	cursor: pointer;
}

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

.skip-link:focus {
	z-index: 10000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: #fff;
	border-radius: var(--luxe-radius-sm);
	box-shadow: var(--luxe-shadow);
}

.luxe-container {
	width: var(--luxe-container);
	margin: 0 auto;
}

.luxe-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 253, 248, 0.94);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(8, 25, 54, 0.08);
	transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

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

.has-transparent-header .luxe-site-header:not(.is-scrolled) {
	position: fixed;
	inset: 0 0 auto;
	background: rgba(255, 253, 248, 0.78);
	border-color: transparent;
}

.luxe-site-header.is-scrolled {
	box-shadow: 0 12px 36px rgba(8, 25, 54, 0.08);
}

.luxe-header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	min-height: 86px;
}

.luxe-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.luxe-brand__mark {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 25%, var(--luxe-gold-2), var(--luxe-gold) 42%, var(--luxe-ink) 44%, var(--luxe-ink-2));
	color: #fff;
	font-weight: 900;
	letter-spacing: 0;
	box-shadow: 0 14px 28px rgba(8, 25, 54, 0.2);
}

.luxe-brand__text {
	display: grid;
	line-height: 1.2;
}

.luxe-brand__text strong {
	font-size: clamp(1.1rem, 1.6vw, 1.55rem);
	letter-spacing: 0;
}

.luxe-brand__text small {
	color: var(--luxe-muted);
	font-size: 0.78rem;
	text-transform: uppercase;
}

.luxe-primary-nav {
	justify-self: end;
}

.luxe-menu,
.luxe-menu ul,
.luxe-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.luxe-menu {
	display: flex;
	align-items: center;
	gap: 6px;
}

.luxe-menu li {
	position: relative;
}

.luxe-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 13px;
	border-radius: var(--luxe-radius-sm);
	font-size: 0.9rem;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--luxe-ink);
	transition: color 180ms ease, background 180ms ease;
}

.luxe-menu a:hover,
.luxe-menu .current-menu-item > a,
.luxe-menu .current_page_item > a {
	color: var(--luxe-gold);
	background: rgba(200, 149, 58, 0.08);
}

.luxe-menu ul {
	position: absolute;
	left: 0;
	top: calc(100% + 12px);
	min-width: 230px;
	padding: 10px;
	border: 1px solid var(--luxe-line);
	border-radius: var(--luxe-radius);
	background: rgba(255, 253, 248, 0.98);
	box-shadow: var(--luxe-shadow);
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.luxe-menu li:hover > ul,
.luxe-menu li:focus-within > ul {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.luxe-menu ul a {
	display: flex;
	width: 100%;
	justify-content: space-between;
	text-transform: none;
}

.luxe-header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.luxe-icon-link,
.luxe-cart-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	border: 1px solid rgba(8, 25, 54, 0.12);
	border-radius: var(--luxe-radius-sm);
	background: rgba(255, 255, 255, 0.62);
}

.luxe-icon-link {
	width: 42px;
}

.luxe-icon-link span {
	width: 16px;
	height: 16px;
	border: 2px solid var(--luxe-ink);
	border-radius: 50%;
	box-shadow: 0 11px 0 -5px var(--luxe-ink);
}

.luxe-cart-link {
	gap: 9px;
	padding: 0 12px;
	font-weight: 800;
}

.luxe-cart-link strong {
	display: grid;
	place-items: center;
	min-width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--luxe-gold);
	color: #fff;
	font-size: 0.78rem;
}

.luxe-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--luxe-line);
	border-radius: var(--luxe-radius-sm);
	background: #fff;
}

.luxe-menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--luxe-ink);
}

.luxe-main {
	min-height: 60vh;
}

.luxe-hero {
	position: relative;
	min-height: 760px;
	display: grid;
	align-items: center;
	overflow: hidden;
	background: var(--luxe-cream);
}

.luxe-hero__bg {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	opacity: 0.9;
}

.luxe-hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.84) 38%, rgba(255, 253, 248, 0.2) 78%);
}

.luxe-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
	gap: 50px;
	align-items: center;
	padding: 130px 0 64px;
}

.luxe-kicker,
.luxe-section-head > span,
.luxe-page-hero > span,
.luxe-page-hero .luxe-container > span,
.luxe-ticket-panel__header > span,
.luxe-dashboard-welcome > span,
.luxe-dashboard-welcome__copy > span,
.luxe-thankyou > span {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--luxe-gold);
	font-size: 0.85rem;
	font-weight: 900;
	text-transform: uppercase;
}

.luxe-kicker::after,
.luxe-section-head > span::after,
.luxe-page-hero > span::after,
.luxe-page-hero .luxe-container > span::after {
	content: "";
	width: 56px;
	height: 2px;
	background: currentColor;
}

.luxe-hero h1,
.luxe-event-hero h1,
.luxe-page-hero h1 {
	max-width: 760px;
	margin: 18px 0;
	font-size: clamp(3.1rem, 7vw, 6.8rem);
	line-height: 0.94;
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--luxe-ink);
}

.luxe-hero h1 {
	max-width: 700px;
}

.luxe-hero p {
	max-width: 590px;
	margin: 0 0 30px;
	color: #263755;
	font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.luxe-hero__actions,
.luxe-mini-links {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.luxe-btn,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wc-block-components-button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 50px;
	padding: 0 22px;
	border: 1px solid transparent !important;
	border-radius: var(--luxe-radius-sm) !important;
	background: var(--luxe-ink) !important;
	color: #fff !important;
	font-weight: 900 !important;
	text-transform: uppercase;
	box-shadow: 0 12px 24px rgba(8, 25, 54, 0.16);
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.luxe-btn i,
.luxe-inline-link::after {
	content: "";
	width: 18px;
	height: 1px;
	background: currentColor;
	box-shadow: 6px -5px 0 -4px currentColor, 6px 5px 0 -4px currentColor;
}

.luxe-btn:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wc-block-components-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(8, 25, 54, 0.22);
}

.luxe-btn--ghost {
	background: rgba(255, 253, 248, 0.64) !important;
	color: var(--luxe-gold) !important;
	border-color: rgba(200, 149, 58, 0.42) !important;
	box-shadow: none;
}

.luxe-btn--text {
	background: transparent !important;
	color: var(--luxe-ink) !important;
	border-color: transparent !important;
	box-shadow: none;
	padding-inline: 0;
}

.luxe-btn--small {
	min-height: 42px;
	padding: 0 14px;
	font-size: 0.78rem;
}

.luxe-hero__panel {
	display: flex;
	justify-content: flex-end;
}

.luxe-orbit-card {
	max-width: 360px;
	padding: 32px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: var(--luxe-radius);
	background: rgba(8, 25, 54, 0.84);
	color: #fff;
	box-shadow: var(--luxe-shadow);
	backdrop-filter: blur(18px);
	animation: luxe-float 6s ease-in-out infinite;
}

.luxe-orbit-card span {
	color: var(--luxe-gold-2);
	font-weight: 900;
	text-transform: uppercase;
}

.luxe-orbit-card strong {
	display: block;
	margin: 12px 0;
	font-size: 2rem;
	line-height: 1.05;
}

@keyframes luxe-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-14px);
	}
}

.luxe-values {
	background: var(--luxe-ink);
	color: #fff;
}

.luxe-values__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}

.luxe-value {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 18px;
	padding: 34px 26px;
	border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.luxe-value:first-child {
	border-left: 0;
}

.luxe-value span {
	width: 54px;
	height: 54px;
	border: 2px solid var(--luxe-gold);
	border-radius: 50%;
	position: relative;
}

.luxe-value span::before {
	content: "";
	position: absolute;
	inset: 14px;
	border: 2px solid var(--luxe-gold);
	border-radius: 3px;
	transform: rotate(45deg);
}

.luxe-value h2 {
	margin: 0 0 4px;
	font-size: 1.05rem;
	text-transform: uppercase;
}

.luxe-value p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.95rem;
}

.luxe-section {
	padding: clamp(70px, 8vw, 120px) 0;
}

.luxe-section--ivory,
.luxe-section--split {
	background: var(--luxe-cream);
}

.luxe-section-head {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 18px;
	align-items: end;
	margin-bottom: 34px;
}

.luxe-section-head span,
.luxe-section-head h2 {
	grid-column: 1;
}

.luxe-section-head .luxe-btn {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: center;
}

.luxe-section-head h2,
.luxe-split h2,
.luxe-newsletter h2,
.luxe-auth-visual h1 {
	margin: 0;
	max-width: 720px;
	font-size: clamp(2rem, 4vw, 4rem);
	line-height: 1.02;
	letter-spacing: 0;
	color: var(--luxe-ink);
}

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

.luxe-event-card,
.luxe-post-card,
.luxe-dashboard-card,
.luxe-ticket-card,
.luxe-speaker-card,
.luxe-testimonial-grid blockquote {
	border: 1px solid var(--luxe-line);
	border-radius: var(--luxe-radius);
	background: rgba(255, 255, 255, 0.76);
	box-shadow: 0 14px 36px rgba(8, 25, 54, 0.06);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.luxe-event-card:hover,
.luxe-post-card:hover,
.luxe-dashboard-card:hover,
.luxe-ticket-card:hover {
	transform: translateY(-5px);
	border-color: rgba(200, 149, 58, 0.38);
	box-shadow: 0 24px 58px rgba(8, 25, 54, 0.12);
}

.luxe-event-card__media,
.luxe-post-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 1.35 / 1;
	border-radius: var(--luxe-radius) var(--luxe-radius) 0 0;
	background: var(--luxe-ink);
}

.luxe-event-card__media img,
.luxe-post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.luxe-event-card:hover img,
.luxe-post-card:hover img {
	transform: scale(1.045);
}

.luxe-event-card__date {
	position: absolute;
	left: 16px;
	bottom: 16px;
	padding: 8px 12px;
	border-radius: var(--luxe-radius-sm);
	background: rgba(255, 253, 248, 0.92);
	color: var(--luxe-ink);
	font-size: 0.8rem;
	font-weight: 900;
	text-transform: uppercase;
}

.luxe-event-card__body,
.luxe-post-card > div {
	padding: 24px;
}

.luxe-event-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	color: var(--luxe-gold);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.luxe-event-card h3,
.luxe-post-card h2,
.luxe-dashboard-card h3,
.luxe-ticket-card h3,
.luxe-speaker-card h3 {
	margin: 10px 0 8px;
	font-size: 1.35rem;
	line-height: 1.18;
}

.luxe-event-card p,
.luxe-post-card p,
.luxe-dashboard-card p,
.luxe-ticket-card p {
	color: var(--luxe-muted);
	margin: 0 0 18px;
}

.luxe-inline-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--luxe-ink);
	font-weight: 900;
	text-transform: uppercase;
	font-size: 0.82rem;
}

.luxe-inline-link:hover {
	color: var(--luxe-gold);
}

.luxe-split {
	display: grid;
	grid-template-columns: 0.85fr 1fr;
	gap: 70px;
	align-items: center;
}

.luxe-split p {
	margin-top: 0;
	color: #34425d;
	font-size: 1.12rem;
}

.luxe-mini-links a {
	display: inline-flex;
	padding: 10px 0;
	border-bottom: 2px solid var(--luxe-gold);
	font-weight: 900;
}

.luxe-stats {
	background: linear-gradient(135deg, var(--luxe-ink), #133f4d 70%, #0d2d41);
	color: #fff;
}

.luxe-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.luxe-stats__grid div {
	padding: 44px 28px;
	border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.luxe-stats__grid div:first-child {
	border-left: 0;
}

.luxe-stats strong {
	display: block;
	font-size: clamp(2.2rem, 5vw, 4.5rem);
	line-height: 1;
	color: var(--luxe-gold-2);
}

.luxe-stats span {
	text-transform: uppercase;
	font-weight: 900;
}

.luxe-slider {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(300px, 360px);
	gap: 20px;
	overflow-x: auto;
	padding: 6px 2px 24px;
	scroll-snap-type: x mandatory;
	cursor: grab;
}

.luxe-slider.is-dragging {
	cursor: grabbing;
}

.luxe-slider .luxe-event-card {
	scroll-snap-align: start;
}

.luxe-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.luxe-testimonial-grid blockquote {
	margin: 0;
	padding: 30px;
}

.luxe-testimonial-grid p {
	margin: 0 0 18px;
	font-size: 1.05rem;
	color: #293a57;
}

.luxe-testimonial-grid cite {
	color: var(--luxe-gold);
	font-style: normal;
	font-weight: 900;
}

.luxe-partners {
	padding: 34px 0;
	background: #fff;
	border-block: 1px solid var(--luxe-line);
}

.luxe-partners__grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(4, 1fr);
	gap: 20px;
	align-items: center;
}

.luxe-partners span {
	color: var(--luxe-muted);
	font-size: 0.85rem;
	font-weight: 900;
	text-transform: uppercase;
}

.luxe-partners strong {
	padding: 16px;
	border: 1px solid var(--luxe-line);
	border-radius: var(--luxe-radius-sm);
	text-align: center;
	color: var(--luxe-ink-2);
	background: var(--luxe-paper);
}

.luxe-newsletter {
	padding: clamp(70px, 8vw, 110px) 0;
	background: var(--luxe-ink);
	color: #fff;
}

.luxe-newsletter__inner {
	display: grid;
	grid-template-columns: 1fr minmax(320px, 0.65fr);
	gap: 42px;
	align-items: end;
}

.luxe-newsletter h2 {
	color: #fff;
}

.luxe-newsletter form,
.luxe-footer-newsletter form {
	display: flex;
	gap: 10px;
}

.luxe-newsletter input,
.luxe-footer-newsletter input {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.22);
	color: #fff;
}

.luxe-newsletter input::placeholder,
.luxe-footer-newsletter input::placeholder {
	color: rgba(255, 255, 255, 0.65);
}

.luxe-newsletter button,
.luxe-footer-newsletter button {
	border: 0;
	border-radius: var(--luxe-radius-sm);
	background: var(--luxe-gold);
	color: #fff;
	font-weight: 900;
	padding: 0 18px;
}

.luxe-page-hero {
	padding: 150px 0 54px;
}

.luxe-page-hero--compact {
	padding: 124px 0 48px;
}

.luxe-page-hero h1 {
	font-size: clamp(2.4rem, 5vw, 5rem);
}

.luxe-content-shell,
.luxe-rich-content {
	max-width: 900px;
}

.luxe-rich-content {
	font-size: 1.05rem;
	color: #2b3d59;
}

.luxe-rich-content a {
	color: var(--luxe-gold);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.luxe-rich-content h2,
.luxe-rich-content h3,
.luxe-rich-content h4 {
	color: var(--luxe-ink);
	line-height: 1.15;
}

.luxe-featured-image {
	margin-bottom: 34px;
	border-radius: var(--luxe-radius);
	overflow: hidden;
	box-shadow: var(--luxe-shadow);
}

.luxe-post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	padding-bottom: 90px;
}

.luxe-post-card {
	overflow: hidden;
}

.luxe-post-card > div > span {
	color: var(--luxe-gold);
	font-weight: 900;
	text-transform: uppercase;
	font-size: 0.78rem;
}

.luxe-event-hero {
	position: relative;
	min-height: 650px;
	display: grid;
	align-items: end;
	overflow: hidden;
	color: #fff;
	background: var(--luxe-ink);
}

.luxe-event-hero__bg {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	opacity: 0.64;
}

.luxe-event-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 25, 54, 0.2), rgba(8, 25, 54, 0.88));
}

.luxe-event-hero__inner {
	position: relative;
	z-index: 1;
	padding: 138px 0 70px;
}

.luxe-event-hero h1 {
	color: #fff;
	text-transform: none;
	max-width: 930px;
}

.luxe-event-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.luxe-event-hero__meta span,
.luxe-back-link {
	display: inline-flex;
	padding: 9px 12px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--luxe-radius-sm);
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(12px);
	font-weight: 800;
}

.luxe-back-link {
	margin-bottom: 24px;
}

.luxe-event-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
	gap: 42px;
	padding: 70px 0 110px;
}

.luxe-info-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-bottom: 34px;
}

.luxe-info-grid div {
	padding: 22px;
	border: 1px solid var(--luxe-line);
	border-radius: var(--luxe-radius);
	background: #fff;
}

.luxe-info-grid span {
	display: block;
	color: var(--luxe-gold);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.luxe-info-grid strong {
	display: block;
	margin-top: 8px;
	line-height: 1.25;
}

.luxe-event-sidebar {
	position: relative;
}

.luxe-ticket-panel {
	position: sticky;
	top: 112px;
	padding: 22px;
	border: 1px solid rgba(200, 149, 58, 0.3);
	border-radius: var(--luxe-radius);
	background: rgba(255, 253, 248, 0.92);
	box-shadow: var(--luxe-shadow);
	backdrop-filter: blur(14px);
}

.luxe-ticket-panel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--luxe-line);
}

.luxe-ticket-panel__header strong {
	color: var(--luxe-ink);
	font-size: 1.2rem;
}

.luxe-ticket-list {
	display: grid;
	gap: 14px;
}

.luxe-ticket-card {
	padding: 18px;
	background: #fff;
}

.luxe-ticket-card__buy {
	display: grid;
	gap: 12px;
}

.luxe-ticket-card__buy strong {
	color: var(--luxe-plum);
	font-size: 1.2rem;
}

.luxe-ticket-form {
	display: grid;
	grid-template-columns: 82px 1fr;
	gap: 10px;
	align-items: center;
}

.luxe-ticket-form input {
	padding: 9px;
	text-align: center;
}

.luxe-ticket-empty {
	padding: 18px;
	border-radius: var(--luxe-radius-sm);
	background: rgba(200, 149, 58, 0.1);
	color: #5d4b2f;
}

.luxe-gallery-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 14px;
}

.luxe-gallery-grid img {
	width: 100%;
	height: 100%;
	min-height: 220px;
	object-fit: cover;
	border-radius: var(--luxe-radius);
}

.luxe-gallery-grid img:first-child {
	grid-row: span 2;
}

.luxe-speaker-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.luxe-speaker-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px;
}

.luxe-speaker-card img {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
}

.luxe-speaker-card p {
	margin: 0;
	color: var(--luxe-muted);
}

.luxe-event-meta-box {
	margin-top: 36px;
	padding: 24px;
	border: 1px solid var(--luxe-line);
	border-radius: var(--luxe-radius);
	background: #fff;
}

.luxe-site-footer {
	background: #06142d;
	color: #fff;
}

.luxe-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.75fr 0.85fr 1.2fr;
	gap: 40px;
	padding: 70px 0 42px;
}

.luxe-brand--footer .luxe-brand__text small,
.luxe-footer-brand p,
.luxe-footer-menu,
.luxe-footer-newsletter p {
	color: rgba(255, 255, 255, 0.68);
}

.luxe-site-footer h2 {
	margin: 0 0 16px;
	font-size: 0.92rem;
	text-transform: uppercase;
	color: var(--luxe-gold-2);
}

.luxe-footer-menu {
	display: grid;
	gap: 10px;
}

.luxe-footer-menu a:hover {
	color: var(--luxe-gold-2);
}

.luxe-footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.68);
}

.luxe-socials {
	display: flex;
	gap: 10px;
}

.luxe-socials a {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(241, 211, 152, 0.45);
	border-radius: 50%;
	color: var(--luxe-gold-2);
	font-weight: 900;
}

/* The Events Calendar */
.fcc-theme-archive {
	padding: 118px 0 120px;
	background:
		linear-gradient(180deg, rgba(248, 244, 237, 0.92), rgba(255, 253, 248, 0.98) 34%, #fffdf8),
		var(--luxe-paper);
}

.fcc-theme-archive .luxe-container {
	position: relative;
}

.fcc-theme-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
	gap: clamp(26px, 5vw, 72px);
	align-items: end;
	margin-bottom: 28px;
	padding: clamp(34px, 6vw, 66px);
	border: 1px solid rgba(200, 149, 58, 0.22);
	border-radius: var(--luxe-radius);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 244, 237, 0.86)),
		url("../images/hero-reference.jpeg") right center / 58% auto no-repeat;
	box-shadow: var(--luxe-shadow);
	overflow: hidden;
}

.fcc-theme-hero__content {
	max-width: 720px;
}

.fcc-theme-hero h1 {
	margin: 14px 0 16px;
	font-size: clamp(2.6rem, 6vw, 5.7rem);
	line-height: 0.96;
	letter-spacing: 0;
	color: var(--luxe-ink);
}

.fcc-theme-hero p {
	max-width: 620px;
	margin: 0 0 28px;
	color: #35445f;
	font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.fcc-theme-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.fcc-theme-hero__panel {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.fcc-theme-metric {
	min-height: 150px;
	display: grid;
	align-content: end;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.52);
	border-radius: var(--luxe-radius);
	background: rgba(8, 25, 54, 0.9);
	color: #fff;
	box-shadow: 0 18px 44px rgba(8, 25, 54, 0.18);
}

.fcc-theme-metric strong {
	display: block;
	color: var(--luxe-gold-2);
	font-size: clamp(2.4rem, 5vw, 4.2rem);
	line-height: 0.92;
}

.fcc-theme-metric span {
	margin-top: 10px;
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.fcc-theme-view-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 22px;
	padding: 10px;
	border: 1px solid var(--luxe-line);
	border-radius: var(--luxe-radius);
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 10px 30px rgba(8, 25, 54, 0.06);
}

.fcc-theme-view-links a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 16px;
	border-radius: var(--luxe-radius-sm);
	color: var(--luxe-ink);
	font-size: 0.82rem;
	font-weight: 900;
	text-transform: uppercase;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.fcc-theme-view-links a:hover {
	transform: translateY(-1px);
	background: var(--luxe-ink);
	color: #fff;
}

.luxe-calendar-shell {
	margin: 0 0 18px;
	padding: clamp(18px, 3vw, 34px);
	border: 1px solid var(--luxe-line);
	border-radius: var(--luxe-radius);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: var(--luxe-shadow);
}

.tribe-common,
.tribe-events,
.tribe-common .tribe-common-l-container {
	font-family: var(--luxe-font) !important;
	color: var(--luxe-ink) !important;
}

.tribe-common .tribe-common-l-container {
	max-width: none !important;
	padding: 0 !important;
}

.tribe-events .tribe-events-c-events-bar,
.tribe-events .tribe-events-header,
.tribe-common--breakpoint-medium.tribe-events .tribe-events-header {
	border-radius: var(--luxe-radius) !important;
	border-color: var(--luxe-line) !important;
	background: #fff !important;
	box-shadow: 0 12px 30px rgba(8, 25, 54, 0.06) !important;
}

.tribe-events .tribe-events-c-search__input,
.tribe-events .tribe-events-c-view-selector__content,
.tribe-events .tribe-events-c-top-bar__datepicker-button {
	border-radius: var(--luxe-radius-sm) !important;
}

.tribe-events .tribe-events-c-events-bar__search-container,
.tribe-events .tribe-events-c-view-selector__content {
	background: #fff !important;
}

.tribe-events .tribe-events-c-events-bar__search-container {
	padding: 8px !important;
}

.tribe-events .tribe-events-c-top-bar {
	margin: 28px 0 !important;
	padding: 0 4px !important;
}

.tribe-events .tribe-events-c-top-bar__datepicker-button {
	color: var(--luxe-ink) !important;
	font-size: clamp(1.35rem, 3vw, 2.4rem) !important;
	font-weight: 900 !important;
}

.tribe-common .tribe-common-c-btn,
.tribe-common a.tribe-common-c-btn,
.tribe-events .tribe-events-c-search__button {
	background: var(--luxe-ink) !important;
	border-radius: var(--luxe-radius-sm) !important;
	color: #fff !important;
	font-weight: 900 !important;
}

.tribe-events-calendar-list__event,
.tribe-events-pro-photo__event,
.tribe-events-pro-map__event-card,
.tribe-events-calendar-day__event,
.tribe-events-pro-week-grid__event,
.tribe-events-calendar-month__calendar-event {
	border-radius: var(--luxe-radius) !important;
	transition: transform 180ms ease, box-shadow 180ms ease !important;
}

.tribe-events-calendar-list__event:hover,
.tribe-events-pro-photo__event:hover,
.tribe-events-pro-map__event-card:hover,
.tribe-events-calendar-day__event:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 42px rgba(8, 25, 54, 0.1);
}

.tribe-events-calendar-list__event-row,
.tribe-events-calendar-day__event {
	padding: 22px !important;
	border: 1px solid var(--luxe-line) !important;
	border-radius: var(--luxe-radius) !important;
	background: #fff !important;
	margin: 0 0 20px !important;
}

.tribe-events-calendar-list__event-featured-image,
.tribe-events-calendar-day__event-featured-image,
.tribe-events-pro-photo__event-featured-image {
	border-radius: var(--luxe-radius) !important;
	box-shadow: 0 14px 30px rgba(8, 25, 54, 0.1);
}

.tribe-events-calendar-list__event-title-link,
.tribe-events-calendar-day__event-title-link,
.tribe-events-pro-photo__event-title-link,
.tribe-events-calendar-month__calendar-event-title-link {
	color: var(--luxe-ink) !important;
	font-weight: 900 !important;
}

.tribe-events-calendar-list__event-title-link:hover,
.tribe-events-calendar-day__event-title-link:hover,
.tribe-events-pro-photo__event-title-link:hover,
.tribe-events-calendar-month__calendar-event-title-link:hover {
	color: var(--luxe-gold) !important;
	border-color: transparent !important;
}

.tribe-events-calendar-month__day {
	background: #fff !important;
	transition: background 180ms ease, box-shadow 180ms ease !important;
}

.tribe-events-calendar-month__day:hover {
	background: rgba(200, 149, 58, 0.06) !important;
	box-shadow: inset 0 0 0 1px rgba(200, 149, 58, 0.22);
}

.tribe-events-calendar-month__day--current .tribe-events-calendar-month__day-date,
.tribe-events-calendar-month__day-cell--selected {
	background: rgba(200, 149, 58, 0.12) !important;
	color: var(--luxe-ink) !important;
}

.tribe-events-calendar-month__mobile-events-icon--event {
	background: var(--luxe-gold) !important;
}

.tribe-events .tribe-events-calendar-month__calendar-event-datetime,
.tribe-events .tribe-events-calendar-list__event-datetime,
.tribe-events .tribe-events-calendar-day__event-datetime {
	color: var(--luxe-gold) !important;
	font-weight: 900 !important;
}

.tribe-events .tribe-events-calendar-list__event-description,
.tribe-events .tribe-events-calendar-day__event-description,
.tribe-events .tribe-events-pro-photo__event-description {
	color: var(--luxe-muted) !important;
}

.tribe-events .tribe-events-calendar-list__month-separator {
	margin: 34px 0 22px !important;
}

.tribe-events .tribe-events-calendar-list__month-separator-text {
	color: var(--luxe-gold) !important;
	font-weight: 900 !important;
	text-transform: uppercase;
}

.tribe-events .tribe-events-c-nav {
	margin-top: 34px !important;
	padding-top: 24px !important;
	border-top: 1px solid var(--luxe-line) !important;
}

.tribe-events .tribe-events-c-nav__prev,
.tribe-events .tribe-events-c-nav__next {
	color: var(--luxe-ink) !important;
	font-weight: 900 !important;
}

.tribe-events .tribe-events-c-nav__prev:hover,
.tribe-events .tribe-events-c-nav__next:hover {
	color: var(--luxe-gold) !important;
}

.tribe-events-single .tribe-events-event-meta,
.tribe-events-meta-group,
.tribe-events-venue-map {
	border-radius: var(--luxe-radius) !important;
}

/* WooCommerce */
.luxe-commerce {
	padding-top: 30px;
}

.luxe-commerce-shell,
.woocommerce-account .woocommerce,
.luxe-cart-form,
.cart-collaterals,
.luxe-order-review,
.luxe-checkout-fields,
.luxe-thankyou {
	border: 1px solid var(--luxe-line);
	border-radius: var(--luxe-radius);
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 14px 42px rgba(8, 25, 54, 0.08);
}

.luxe-commerce-shell {
	padding: clamp(18px, 3vw, 32px);
	margin-bottom: 90px;
}

.woocommerce table.shop_table {
	border: 0 !important;
	border-collapse: separate;
	border-spacing: 0 12px;
}

.woocommerce table.shop_table th {
	color: var(--luxe-gold);
	font-size: 0.78rem;
	text-transform: uppercase;
}

.woocommerce table.shop_table td {
	border-top: 0 !important;
	background: #fff;
}

.woocommerce table.shop_table tbody tr.cart_item td:first-child {
	border-radius: var(--luxe-radius-sm) 0 0 var(--luxe-radius-sm);
}

.woocommerce table.shop_table tbody tr.cart_item td:last-child {
	border-radius: 0 var(--luxe-radius-sm) var(--luxe-radius-sm) 0;
}

.woocommerce .quantity .qty {
	max-width: 86px;
	text-align: center;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border: 1px solid rgba(200, 149, 58, 0.3) !important;
	border-top-width: 1px !important;
	border-radius: var(--luxe-radius);
	background: rgba(200, 149, 58, 0.08) !important;
	color: var(--luxe-ink) !important;
}

.woocommerce-error {
	border-color: rgba(122, 40, 79, 0.35) !important;
	background: rgba(122, 40, 79, 0.08) !important;
}

.luxe-shop-page {
	padding: 118px 0 110px;
	background:
		linear-gradient(180deg, rgba(248, 244, 237, 0.9), rgba(255, 253, 248, 0.98) 32%, #fffdf8),
		var(--luxe-paper);
}

.luxe-shop-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
	gap: clamp(24px, 5vw, 70px);
	align-items: end;
	margin-bottom: 24px;
	padding: clamp(34px, 6vw, 62px);
	border: 1px solid rgba(200, 149, 58, 0.22);
	border-radius: var(--luxe-radius);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 237, 0.88)),
		url("../images/hero-reference.jpeg") right center / 54% auto no-repeat;
	box-shadow: var(--luxe-shadow);
}

.luxe-shop-hero h1 {
	margin: 14px 0 16px;
	font-size: clamp(2.8rem, 6vw, 5.7rem);
	line-height: 0.96;
	letter-spacing: 0;
	color: var(--luxe-ink);
}

.luxe-shop-hero p {
	max-width: 610px;
	margin: 0;
	color: #35445f;
	font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.luxe-shop-hero__metric {
	display: grid;
	align-content: end;
	min-height: 150px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.48);
	border-radius: var(--luxe-radius);
	background: rgba(8, 25, 54, 0.92);
	color: #fff;
	box-shadow: 0 18px 44px rgba(8, 25, 54, 0.18);
}

.luxe-shop-hero__metric strong {
	display: block;
	color: var(--luxe-gold-2);
	font-size: clamp(2.6rem, 5vw, 4.2rem);
	line-height: 0.92;
}

.luxe-shop-hero__metric span {
	margin-top: 10px;
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.luxe-shop-shell {
	padding: clamp(18px, 3vw, 34px);
	border: 1px solid var(--luxe-line);
	border-radius: var(--luxe-radius);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: var(--luxe-shadow);
}

.luxe-shop-shell .page-title {
	display: none;
}

.luxe-shop-shell .woocommerce-notices-wrapper {
	margin-bottom: 18px;
}

.luxe-shop-shell .woocommerce-result-count {
	float: none !important;
	display: inline-flex;
	align-items: center;
	min-height: 46px;
	margin: 0 0 22px !important;
	padding: 0 16px;
	border: 1px solid rgba(200, 149, 58, 0.22);
	border-radius: var(--luxe-radius-sm);
	background: rgba(200, 149, 58, 0.08);
	color: var(--luxe-ink);
	font-weight: 900;
}

.luxe-shop-shell .woocommerce-ordering {
	float: right !important;
	margin: 0 0 22px !important;
	min-width: min(100%, 320px);
}

.luxe-shop-shell .woocommerce-ordering select {
	height: 46px;
	border-color: var(--luxe-line);
	border-radius: var(--luxe-radius-sm);
	background-color: #fff;
	color: var(--luxe-ink);
	font-weight: 800;
}

.luxe-shop-shell ul.products {
	clear: both;
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin: 0 !important;
	padding: 0 !important;
}

.luxe-shop-shell ul.products::before,
.luxe-shop-shell ul.products::after {
	content: none !important;
	display: none !important;
}

.woocommerce .luxe-shop-shell ul.products li.product,
.woocommerce-page .luxe-shop-shell ul.products li.product {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	padding: 0 0 22px !important;
	border: 1px solid var(--luxe-line);
	border-radius: var(--luxe-radius);
	background: #fff;
	box-shadow: 0 14px 36px rgba(8, 25, 54, 0.07);
	overflow: hidden;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.woocommerce .luxe-shop-shell ul.products li.product:hover,
.woocommerce-page .luxe-shop-shell ul.products li.product:hover {
	transform: translateY(-5px);
	border-color: rgba(200, 149, 58, 0.38);
	box-shadow: 0 24px 58px rgba(8, 25, 54, 0.13);
}

.woocommerce .luxe-shop-shell ul.products li.product a.woocommerce-LoopProduct-link {
	display: block;
	color: var(--luxe-ink);
}

.woocommerce .luxe-shop-shell ul.products li.product img {
	width: 100%;
	aspect-ratio: 1.28 / 1;
	height: auto;
	margin: 0 0 20px !important;
	object-fit: cover;
	background:
		linear-gradient(135deg, rgba(8, 25, 54, 0.05), rgba(200, 149, 58, 0.08));
	transition: transform 380ms ease;
}

.woocommerce .luxe-shop-shell ul.products li.product:hover img {
	transform: scale(1.035);
}

.woocommerce .luxe-shop-shell ul.products li.product .woocommerce-loop-product__title {
	padding: 0 22px !important;
	margin: 0 0 8px !important;
	color: var(--luxe-ink);
	font-size: 1.45rem !important;
	line-height: 1.15;
	font-weight: 900;
}

.woocommerce .luxe-shop-shell ul.products li.product .price {
	display: block;
	padding: 0 22px;
	margin: 0 0 18px !important;
	color: var(--luxe-gold) !important;
	font-size: 1rem !important;
	font-weight: 900 !important;
}

.woocommerce .luxe-shop-shell ul.products li.product .button {
	margin: 0 22px !important;
	width: calc(100% - 44px);
	min-height: 48px;
	box-shadow: 0 14px 28px rgba(8, 25, 54, 0.14);
}

.woocommerce .luxe-shop-shell nav.woocommerce-pagination {
	margin-top: 34px;
}

.woocommerce .luxe-shop-shell nav.woocommerce-pagination ul {
	border: 0;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.woocommerce .luxe-shop-shell nav.woocommerce-pagination ul li {
	border: 0;
}

.woocommerce .luxe-shop-shell nav.woocommerce-pagination ul li a,
.woocommerce .luxe-shop-shell nav.woocommerce-pagination ul li span {
	min-width: 42px;
	border: 1px solid var(--luxe-line);
	border-radius: var(--luxe-radius-sm);
	background: #fff;
	color: var(--luxe-ink);
	font-weight: 900;
}

.product-thumbnail img {
	width: 86px !important;
	border-radius: var(--luxe-radius-sm);
}

.product-name a {
	font-weight: 900;
}

.remove {
	display: inline-flex !important;
	margin-top: 8px;
	color: var(--luxe-plum) !important;
	font-weight: 800 !important;
}

.cart-collaterals {
	padding: 24px;
	margin-top: 24px;
}

.cart_totals {
	float: none !important;
	width: 100% !important;
}

.luxe-checkout-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 22px;
}

.luxe-checkout-steps span {
	padding: 13px;
	border: 1px solid var(--luxe-line);
	border-radius: var(--luxe-radius-sm);
	background: #fff;
	text-align: center;
	color: var(--luxe-muted);
	font-weight: 900;
}

.luxe-checkout-steps .is-active {
	background: var(--luxe-ink);
	color: #fff;
}

.luxe-checkout-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
	gap: 24px;
	align-items: start;
}

.luxe-checkout-fields,
.luxe-order-review,
.luxe-thankyou {
	padding: 26px;
}

.luxe-order-review {
	position: sticky;
	top: 112px;
}

.luxe-order-review h3 {
	margin-top: 0;
}

.woocommerce form .form-row label {
	font-weight: 900;
}

.woocommerce form .form-row .required {
	color: var(--luxe-plum);
}

.luxe-thankyou {
	text-align: center;
}

.luxe-thankyou h2 {
	margin: 10px auto 24px;
	max-width: 680px;
	font-size: clamp(2rem, 4vw, 3.6rem);
	line-height: 1.05;
}

.woocommerce-order-overview {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	padding: 0 !important;
	margin: 0 0 24px !important;
	list-style: none;
}

.woocommerce-order-overview li {
	padding: 18px !important;
	border: 1px solid var(--luxe-line) !important;
	border-radius: var(--luxe-radius-sm);
	background: #fff;
}

.woocommerce-account .luxe-content-shell,
.woocommerce-account .luxe-rich-content {
	max-width: var(--luxe-container);
}

.woocommerce-account .luxe-content-shell {
	padding-bottom: 90px;
}

.woocommerce-account .luxe-page-hero--compact {
	padding-bottom: 32px;
}

.woocommerce-account .woocommerce {
	display: grid !important;
	grid-template-columns: 300px minmax(0, 1fr);
	align-items: start;
	gap: 30px;
	width: 100%;
	max-width: none;
	min-height: 620px;
	padding: 30px;
	overflow: visible;
}

.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after {
	content: none !important;
	display: none !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
	float: none !important;
	width: auto !important;
	min-width: 0;
}

.woocommerce-account .woocommerce-notices-wrapper {
	grid-column: 1 / -1;
}

.woocommerce-account .woocommerce > h2,
.woocommerce-account .woocommerce > form.login,
.woocommerce-account .woocommerce > form.register {
	grid-column: 1 / -1;
}

.luxe-account-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.luxe-account-nav {
	position: sticky;
	top: 112px;
	padding: 16px;
	border: 1px solid var(--luxe-line);
	border-radius: var(--luxe-radius);
	background: linear-gradient(180deg, #fff, rgba(248, 244, 237, 0.88));
	box-shadow: 0 18px 44px rgba(8, 25, 54, 0.08);
}

.luxe-account-nav__profile {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
	padding: 14px;
	border-radius: var(--luxe-radius-sm);
	background: var(--luxe-ink);
	color: #fff;
}

.luxe-account-nav__avatar {
	display: grid;
	place-items: center;
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--luxe-gold);
	color: #fff;
	font-weight: 900;
}

.luxe-account-nav__profile strong,
.luxe-account-nav__profile small {
	display: block;
	line-height: 1.2;
}

.luxe-account-nav__profile small {
	margin-top: 3px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.76rem;
	font-weight: 800;
	text-transform: uppercase;
}

.luxe-account-nav a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid var(--luxe-line);
	border-radius: var(--luxe-radius-sm);
	background: #fff;
	color: var(--luxe-ink);
	font-weight: 900;
	text-decoration: none;
	transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.luxe-account-nav a::after {
	content: "";
	width: 13px;
	height: 1px;
	background: currentColor;
	box-shadow: 5px -4px 0 -3px currentColor, 5px 4px 0 -3px currentColor;
	opacity: 0.55;
}

.luxe-account-nav .is-active a,
.luxe-account-nav a:hover {
	background: var(--luxe-ink);
	color: #fff;
	border-color: var(--luxe-ink);
	transform: translateX(3px);
}

.luxe-dashboard-welcome {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
	gap: 28px;
	align-items: stretch;
	padding: clamp(26px, 4vw, 42px);
	margin-bottom: 24px;
	border-radius: var(--luxe-radius);
	background:
		linear-gradient(135deg, rgba(248, 244, 237, 0.98), rgba(255, 255, 255, 0.92)),
		url("../images/hero-reference.jpeg") right center / 46% auto no-repeat;
	box-shadow: 0 18px 50px rgba(8, 25, 54, 0.08);
	overflow: hidden;
}

.luxe-dashboard-welcome h2 {
	max-width: 620px;
	margin: 10px 0 12px;
	font-size: clamp(2.4rem, 5vw, 4.4rem);
	line-height: 0.98;
	letter-spacing: 0;
}

.luxe-dashboard-welcome p {
	max-width: 560px;
	margin: 0;
	color: #33435d;
	font-size: 1.05rem;
}

.luxe-dashboard-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.luxe-dashboard-stats {
	display: grid;
	gap: 12px;
}

.luxe-dashboard-stats div {
	display: grid;
	align-content: center;
	min-height: 96px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.44);
	border-radius: var(--luxe-radius);
	background: rgba(8, 25, 54, 0.92);
	color: #fff;
	box-shadow: 0 12px 30px rgba(8, 25, 54, 0.14);
}

.luxe-dashboard-stats strong {
	display: block;
	color: var(--luxe-gold-2);
	font-size: 2.3rem;
	line-height: 0.95;
}

.luxe-dashboard-stats span {
	margin-top: 7px;
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.luxe-dashboard-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.luxe-dashboard-card {
	position: relative;
	display: grid;
	align-content: start;
	min-height: 230px;
	padding: 22px;
	overflow: hidden;
	text-decoration: none !important;
}

.luxe-dashboard-card::after {
	content: "";
	position: absolute;
	right: 18px;
	bottom: 18px;
	width: 22px;
	height: 1px;
	background: currentColor;
	box-shadow: 7px -5px 0 -4px currentColor, 7px 5px 0 -4px currentColor;
	color: var(--luxe-gold);
	transition: transform 180ms ease;
}

.luxe-dashboard-card:hover::after {
	transform: translateX(4px);
}

.luxe-dashboard-card__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: rgba(200, 149, 58, 0.13);
	color: var(--luxe-gold);
	font-weight: 900;
}

.luxe-dashboard-card > small {
	color: var(--luxe-gold);
	font-weight: 900;
	text-transform: uppercase;
	font-size: 0.78rem;
}

.luxe-dashboard-card h3 {
	margin-top: 8px;
	font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.luxe-dashboard-card p {
	margin-bottom: 0;
	font-size: 0.95rem;
}

.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
	margin: 0 auto 90px;
	max-width: var(--luxe-container);
	padding: clamp(18px, 3vw, 32px);
	border: 1px solid var(--luxe-line);
	border-radius: var(--luxe-radius);
	background: rgba(255, 255, 255, 0.84);
	box-shadow: var(--luxe-shadow);
}

.wc-block-cart,
.wc-block-checkout {
	color: var(--luxe-ink);
	font-family: var(--luxe-font);
}

.wc-block-components-main,
.wc-block-components-sidebar,
.wc-block-cart__main,
.wc-block-cart__sidebar {
	border-radius: var(--luxe-radius);
}

.wc-block-components-sidebar,
.wc-block-cart__sidebar {
	padding: 24px !important;
	border: 1px solid rgba(200, 149, 58, 0.28);
	background: var(--luxe-paper);
	box-shadow: 0 14px 42px rgba(8, 25, 54, 0.08);
}

.wc-block-cart-items,
.wc-block-components-order-summary,
.wc-block-components-checkout-step,
.wc-block-components-totals-wrapper {
	border-color: var(--luxe-line) !important;
}

.wc-block-cart-items__row,
.wc-block-components-order-summary-item,
.wc-block-components-checkout-step {
	border-radius: var(--luxe-radius-sm);
	background: #fff;
}

.wc-block-cart-items__row {
	margin-bottom: 12px;
	box-shadow: 0 10px 26px rgba(8, 25, 54, 0.06);
}

.wc-block-cart-item__image img,
.wc-block-components-order-summary-item__image img {
	border-radius: var(--luxe-radius-sm);
}

.wc-block-components-product-name,
.wc-block-cart-item__total-price-and-sale-badge-wrapper,
.wc-block-components-totals-item__label,
.wc-block-components-checkout-step__title {
	color: var(--luxe-ink);
	font-weight: 900;
}

.wc-block-components-checkout-step__heading {
	padding: 18px 0;
}

.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-form .wc-block-components-text-input input[type="email"],
.wc-block-components-form .wc-block-components-text-input input[type="tel"],
.wc-block-components-form .wc-block-components-text-input input[type="text"] {
	border-color: var(--luxe-line) !important;
	border-radius: var(--luxe-radius-sm) !important;
	background: #fff !important;
}

.wc-block-components-button:not(.is-link) {
	border-radius: var(--luxe-radius-sm) !important;
	background: var(--luxe-ink) !important;
	color: #fff !important;
	font-weight: 900 !important;
	text-transform: uppercase;
}

.wc-block-components-notice-banner {
	border-radius: var(--luxe-radius) !important;
	border-color: rgba(200, 149, 58, 0.32) !important;
	background: rgba(200, 149, 58, 0.08) !important;
}

/* Auth and wp-login.php */
.luxe-auth-page {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr minmax(360px, 520px);
	background: var(--luxe-cream);
}

.luxe-auth-visual {
	display: grid;
	align-content: end;
	padding: clamp(90px, 12vw, 160px) clamp(30px, 8vw, 110px);
	background: linear-gradient(rgba(8, 25, 54, 0.35), rgba(8, 25, 54, 0.82)), url("../images/hero-reference.jpeg") center/cover;
	color: #fff;
}

.luxe-auth-visual h1 {
	color: #fff;
}

.luxe-auth-card {
	align-self: center;
	width: min(100% - 40px, 440px);
	margin: 0 auto;
	padding: 34px;
	border: 1px solid var(--luxe-line);
	border-radius: var(--luxe-radius);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: var(--luxe-shadow);
}

.luxe-auth-card h2 {
	margin: 0 0 22px;
	font-size: 2.2rem;
}

.luxe-auth-card--wide {
	width: min(100% - 40px, 560px);
}

.luxe-auth-tabs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 6px;
	padding: 6px;
	margin-bottom: 24px;
	border: 1px solid var(--luxe-line);
	border-radius: var(--luxe-radius-sm);
	background: rgba(8, 25, 54, 0.05);
}

.luxe-auth-tabs a {
	padding: 10px 18px;
	border-radius: calc(var(--luxe-radius-sm) - 4px);
	font-weight: 900;
	text-align: center;
	color: var(--luxe-muted);
}

.luxe-auth-tabs a.is-active {
	background: var(--luxe-ink);
	color: #fff;
}

.luxe-auth-notice {
	padding: 14px 16px;
	margin-bottom: 22px;
	border: 1px solid rgba(180, 61, 42, 0.26);
	border-radius: var(--luxe-radius-sm);
	background: rgba(180, 61, 42, 0.08);
	color: #8b2b1d;
	font-weight: 800;
}

.luxe-auth-notice p {
	margin: 0;
}

.luxe-auth-notice p + p {
	margin-top: 8px;
}

.luxe-auth-forms {
	display: block;
}

.luxe-auth-panel {
	display: none;
}

.luxe-auth-panel.is-active {
	display: block;
}

.luxe-auth-panel h2 {
	font-size: 1.8rem;
}

.luxe-auth-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.luxe-client-form label,
.luxe-auth-check {
	display: block;
	margin-bottom: 8px;
	font-weight: 900;
}

.luxe-client-form input[type="text"],
.luxe-client-form input[type="email"],
.luxe-client-form input[type="password"] {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid var(--luxe-line);
	border-radius: var(--luxe-radius-sm);
	background: #fff;
	color: var(--luxe-ink);
	font: inherit;
}

.luxe-auth-check {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 16px;
	color: var(--luxe-muted);
}

.luxe-auth-check input {
	width: 18px;
	height: 18px;
}

.luxe-client-form button,
.luxe-auth-success .luxe-btn {
	width: 100%;
	justify-content: center;
	border: 0;
	border-radius: var(--luxe-radius-sm);
	background: var(--luxe-ink);
	color: #fff;
	font-weight: 900;
	padding: 14px 18px;
	cursor: pointer;
}

.luxe-auth-helper {
	display: inline-block;
	margin-top: 16px;
	font-weight: 900;
	color: var(--luxe-gold);
}

.luxe-auth-success {
	text-align: center;
}

.luxe-auth-card .login-username,
.luxe-auth-card .login-password,
.luxe-auth-card .login-remember {
	margin-bottom: 14px;
}

.luxe-auth-card label {
	font-weight: 900;
}

.luxe-auth-card input[type="submit"],
#wp-submit {
	width: 100%;
	border: 0;
	border-radius: var(--luxe-radius-sm);
	background: var(--luxe-ink);
	color: #fff;
	font-weight: 900;
	padding: 14px 18px;
}

.luxe-auth-links {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-top: 16px;
	font-weight: 900;
	color: var(--luxe-gold);
}

body.login {
	background: linear-gradient(135deg, var(--luxe-ink), #123d4a);
	font-family: var(--luxe-font);
}

body.login #login {
	width: min(420px, calc(100vw - 36px));
	padding-top: 7vh;
}

body.login h1 a {
	width: 86px;
	height: 86px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 25%, var(--luxe-gold-2), var(--luxe-gold) 42%, var(--luxe-ink) 44%, var(--luxe-ink-2)) !important;
	background-size: cover !important;
	box-shadow: var(--luxe-shadow);
}

body.login form {
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--luxe-radius);
	background: rgba(255, 253, 248, 0.94);
	box-shadow: var(--luxe-shadow);
}

body.login .button-primary {
	background: var(--luxe-gold) !important;
	border-color: var(--luxe-gold) !important;
}

body.login #nav a,
body.login #backtoblog a {
	color: #fff !important;
}

@media (max-width: 1080px) {
	.luxe-header-inner {
		grid-template-columns: auto auto;
	}

	.luxe-shop-hero {
		grid-template-columns: 1fr;
		background:
			linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 237, 0.94)),
			url("../images/hero-reference.jpeg") center bottom / cover no-repeat;
	}

	.luxe-menu-toggle {
		display: block;
		justify-self: end;
	}

	.luxe-primary-nav {
		position: fixed;
		inset: 86px 0 auto;
		padding: 18px 20px 26px;
		background: rgba(255, 253, 248, 0.98);
		border-bottom: 1px solid var(--luxe-line);
		box-shadow: var(--luxe-shadow);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity 180ms ease, transform 180ms ease;
	}

	.admin-bar .luxe-primary-nav {
		top: 118px;
	}

	.luxe-primary-nav.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.luxe-menu {
		display: grid;
		gap: 4px;
	}

	.luxe-menu a {
		width: 100%;
		justify-content: space-between;
	}

	.luxe-menu ul {
		position: static;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		box-shadow: none;
		margin: 4px 0 8px 16px;
	}

	.luxe-header-actions {
		display: none;
	}

	.luxe-hero__grid,
	.fcc-theme-hero,
	.luxe-newsletter__inner,
	.luxe-event-layout,
	.luxe-checkout-grid,
	.woocommerce-account .woocommerce {
		grid-template-columns: 1fr;
	}

	.luxe-values__grid,
	.luxe-stats__grid,
	.luxe-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.luxe-event-grid,
	.luxe-post-grid,
	.luxe-testimonial-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.luxe-order-review,
	.luxe-ticket-panel {
		position: static;
	}

	.luxe-account-nav {
		position: static;
	}

	.luxe-dashboard-welcome {
		grid-template-columns: 1fr;
		background:
			linear-gradient(135deg, rgba(248, 244, 237, 0.98), rgba(255, 255, 255, 0.96)),
			url("../images/hero-reference.jpeg") center bottom / cover no-repeat;
	}

	.luxe-dashboard-stats {
		grid-template-columns: repeat(3, 1fr);
	}

	.luxe-dashboard-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.luxe-shop-shell ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fcc-theme-hero {
		background:
			linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 237, 0.94)),
			url("../images/hero-reference.jpeg") center bottom / cover no-repeat;
	}
}

@media (max-width: 760px) {
	:root {
		--luxe-container: min(100vw - 24px, 1180px);
	}

	.admin-bar .luxe-site-header {
		top: 46px;
	}

	.luxe-header-inner {
		min-height: 74px;
	}

	.luxe-brand__mark {
		width: 44px;
		height: 44px;
		font-size: 0.85rem;
	}

	.luxe-brand__text small {
		display: none;
	}

	.luxe-primary-nav {
		inset: 74px 0 auto;
	}

	.admin-bar .luxe-primary-nav {
		top: 120px;
	}

	.luxe-hero {
		min-height: 680px;
	}

	.luxe-hero__bg::after {
		background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.84));
	}

	.luxe-hero__grid {
		padding-top: 112px;
	}

	.luxe-hero h1,
	.luxe-event-hero h1 {
		font-size: clamp(2.7rem, 14vw, 4.2rem);
	}

	.luxe-values__grid,
	.fcc-theme-hero__panel,
	.luxe-stats__grid,
	.luxe-event-grid,
	.luxe-post-grid,
	.luxe-testimonial-grid,
	.luxe-partners__grid,
	.luxe-footer-grid,
	.luxe-split,
	.luxe-info-grid,
	.luxe-speaker-grid,
	.luxe-dashboard-grid,
	.woocommerce-order-overview,
	.luxe-auth-page {
		grid-template-columns: 1fr;
	}

	.luxe-value,
	.luxe-stats__grid div {
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.14);
	}

	.luxe-value:first-child,
	.luxe-stats__grid div:first-child {
		border-top: 0;
	}

	.luxe-section-head {
		grid-template-columns: 1fr;
	}

	.luxe-section-head .luxe-btn {
		grid-column: 1;
		grid-row: auto;
		justify-self: start;
	}

	.luxe-gallery-grid {
		grid-template-columns: 1fr;
	}

	.luxe-gallery-grid img:first-child {
		grid-row: auto;
	}

	.luxe-footer-bottom,
	.luxe-newsletter form,
	.luxe-footer-newsletter form,
	.luxe-checkout-steps {
		flex-direction: column;
		display: flex;
		align-items: stretch;
	}

	.luxe-auth-visual {
		min-height: 42vh;
	}

	.luxe-auth-card {
		margin: 34px auto;
	}

	.luxe-auth-forms,
	.luxe-auth-row {
		grid-template-columns: 1fr;
	}

	.luxe-auth-tabs {
		display: grid;
	}

	.luxe-shop-page {
		padding: 92px 0 72px;
	}

	.luxe-shop-hero {
		padding: 26px;
	}

	.luxe-shop-hero h1 {
		font-size: clamp(2.35rem, 12vw, 3.6rem);
	}

	.luxe-shop-shell {
		padding: 14px;
	}

	.luxe-shop-shell .woocommerce-result-count,
	.luxe-shop-shell .woocommerce-ordering {
		float: none !important;
		width: 100%;
		margin-bottom: 12px !important;
	}

	.luxe-shop-shell ul.products {
		grid-template-columns: 1fr;
	}

	.woocommerce-account .woocommerce {
		padding: 14px;
	}

	.luxe-dashboard-welcome {
		padding: 22px;
	}

	.luxe-dashboard-stats {
		grid-template-columns: 1fr;
	}

	.luxe-dashboard-card {
		min-height: 190px;
	}

	.fcc-theme-archive {
		padding: 92px 0 72px;
	}

	.fcc-theme-hero {
		padding: 26px;
		margin-bottom: 16px;
	}

	.fcc-theme-hero h1 {
		font-size: clamp(2.35rem, 12vw, 3.6rem);
	}

	.fcc-theme-view-links {
		overflow-x: auto;
		flex-wrap: nowrap;
		padding: 8px;
		scroll-snap-type: x mandatory;
	}

	.fcc-theme-view-links a {
		flex: 0 0 auto;
		scroll-snap-align: start;
	}

	.luxe-calendar-shell {
		padding: 14px;
	}

	.woocommerce table.shop_table_responsive tr,
	.woocommerce-page table.shop_table_responsive tr {
		display: block;
		margin-bottom: 14px;
		border: 1px solid var(--luxe-line);
		border-radius: var(--luxe-radius);
		overflow: hidden;
		background: #fff;
	}

	.woocommerce table.shop_table_responsive tr td,
	.woocommerce-page table.shop_table_responsive tr td {
		display: flex !important;
		justify-content: space-between;
		gap: 18px;
		text-align: right !important;
	}

	.woocommerce table.shop_table_responsive tr td::before,
	.woocommerce-page table.shop_table_responsive tr td::before {
		content: attr(data-title);
		font-weight: 900;
		color: var(--luxe-gold);
	}
}

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