/* ==========================================================================
   Bleib Studio — Home Page
   Brand palette:
     --bleib-primary   #544134  (deep brown)
     --bleib-secondary #7ca4dd  (soft blue)
     --bleib-white     #ffffff
     --bleib-black     #000000
   ========================================================================== */

.bleib-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 100%;
	align-items: stretch;
	background-color: var(--bleib-white, #ffffff);
	/* Bounding line below the section, like the header */
	border-bottom: 1px solid var(--bleib-gray, #d4d3d3);
}

/* ---- Image column / slider ---------------------------------------------- */
.bleib-hero__media {
	position: relative;
	min-height: 740px;
	overflow: hidden;
	/* Vertical divider between the two columns, like the header */
	border-right: 1px solid var(--bleib-gray, #d4d3d3);
}

.bleib-hero__slider {
	position: absolute;
	inset: 0;
}

/* Slides stack and crossfade */
.bleib-hero__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	will-change: opacity;
	pointer-events: none;
}

.bleib-hero__slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

/* ---- Line-style pagination ---------------------------------------------- */
.bleib-hero__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 1.5rem;
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	z-index: 2;
}

.bleib-hero__dot {
	width: 28px;
	height: 4px;
	padding: 0;
	border: none;
	border-radius: 2px;
	background-color: var(--bleib-gray, #d4d3d3);
	cursor: pointer;
	transition: background-color 0.3s ease, width 0.3s ease;
}

.bleib-hero__dot.is-active {
	background-color: var(--bleib-primary, #544134);
	width: 40px;
}

.bleib-hero__dot:hover,
.bleib-hero__dot:focus-visible {
	background-color: var(--bleib-primary, #544134);
	outline: none;
}

/* ---- Content column ----------------------------------------------------- */
.bleib-hero__content {
	display: flex;
	align-items: center;
	padding: 4rem clamp(1.5rem, 5vw, 5rem);
	background-color: var(--bleib-white, #ffffff);
}

.bleib-hero__inner {
	max-width: 560px;
}

.bleib-hero__text {
	margin: 0 0 2rem;
	color: var(--bleib-primary, #544134);
	font-family: var(--bleib-font-heading, 'Syne', sans-serif);
	font-weight: 700;
	line-height: 1.25;
	font-size: clamp(2.0rem, 3.6vw, 3.5rem);
}

/* ---- CTA button --------------------------------------------------------- */
.bleib-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	max-width: 100%;
	padding: 1.2rem 2.5rem;
	background-color: var(--bleib-primary, #544134);
	color: var(--bleib-white, #ffffff);
	font-family: var(--bleib-font-heading, 'Syne', sans-serif);
	font-weight: 600;
	font-size: 1rem;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-decoration: none;
	border-radius: 0;
	transition: background-color 0.2s ease, transform 0.15s ease;
}

.bleib-hero__btn:hover,
.bleib-hero__btn:focus {
	background-color: var(--bleib-secondary, #7ca4dd);
	color: var(--bleib-white, #ffffff);
	transform: translateY(-2px);
}

/* ==========================================================================
   Bleib Studio — Scrolling Text Marquee
   ========================================================================== */

.bleib-scroll-text {
	--scroll-bg-color: #352921;
	position: relative;
	width: 100%;
	background-color: var(--scroll-bg-color);
	overflow: hidden;
	border-bottom: 1px solid var(--bleib-gray, #d4d3d3);
	display: flex;
	align-items: stretch;
	user-select: none;
	box-sizing: border-box;
}

/* Side static columns (120px alignment with header) */
.bleib-scroll-text__side {
	width: 120px;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--scroll-bg-color);
	color: var(--bleib-white, #ffffff);
	z-index: 2;
}

.bleib-scroll-text__side--left {
	border-right: 1px solid var(--bleib-gray, #d4d3d3);
}

.bleib-scroll-text__side--right {
	border-left: 1px solid var(--bleib-gray, #d4d3d3);
}

.bleib-scroll-text__static-char {
	font-size: 1.5rem;
	line-height: 1;
	animation: bleib-spin 16s linear infinite;
	display: inline-block;
}

@keyframes bleib-spin {
	to {
		transform: rotate(360deg);
	}
}

/* Center marquee column - spans the entire width between 120px side blocks */
.bleib-scroll-text__center {
	flex: 1 1 0;
	min-width: 0;
	position: relative;
	display: flex;
	align-items: center;
	padding: clamp(1.2rem, 3vw, 2.2rem) 0;
	box-sizing: border-box;
}

/* Static vertical divider line (aligns with 50% split) */
.bleib-scroll-text__divider {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 1px;
	background-color: var(--bleib-gray, #d4d3d3);
	z-index: 1;
	/* Renders in background so outline/solid text scrolls on top of it */
	pointer-events: none;
}

.bleib-scroll-text__wrapper {
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
	position: relative;
	z-index: 2;
	/* Renders text on top of the divider */
}

.bleib-scroll-text__track {
	display: inline-flex;
	align-items: center;
	gap: 1.5rem;
	will-change: transform;
	transform: translate3d(var(--scroll-x, 0px), 0, 0);
	/* Fallback infinite marquee animation if JS is disabled */
	animation: bleib-marquee-fallback 30s linear infinite;
}

@keyframes bleib-marquee-fallback {
	0% {
		transform: translate3d(0, 0, 0);
	}

	100% {
		transform: translate3d(-33.333%, 0, 0);
	}
}

/* Stop automatic animation if JS scroll-driven animation is active */
.bleib-scroll-text.is-js-active .bleib-scroll-text__track {
	animation: none;
}

.bleib-scroll-text__item {
	font-family: var(--bleib-font-heading, 'Syne', sans-serif);
	font-size: clamp(2.2rem, 5.5vw, 4.5rem);
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1;
	display: inline-block;
	white-space: nowrap;
	vertical-align: middle;
}

.bleib-scroll-text__item--solid {
	color: var(--bleib-white, #ffffff);
}

.bleib-scroll-text__item--outline {
	color: var(--scroll-bg-color, #352921);
	-webkit-text-stroke: 3px var(--bleib-white, #ffffff);
	paint-order: stroke fill;
}

.bleib-scroll-text__separator {
	font-size: clamp(1.8rem, 4.5vw, 3.8rem);
	color: var(--bleib-white, #ffffff);
	display: inline-block;
	margin: 0 1.5rem;
	line-height: 1;
	vertical-align: middle;
}

/* Tablet & Mobile Layout overrides */
@media (max-width: 1024px) {
	.bleib-scroll-text__side {
		display: none;
		/* Hide side columns to maximize space */
	}

	.bleib-scroll-text__center {
		padding: 1.5rem 0;
	}

	.bleib-scroll-text__divider {
		display: none;
		/* Hide vertical grid split line on mobile since the hero columns stack */
	}
}


/* ==========================================================================
   Responsive — stack image on top, content below
   ========================================================================== */

/* Tablet & below: single column, image scales by aspect ratio */
@media (max-width: 1024px) {
	.bleib-hero {
		grid-template-columns: 1fr;
	}

	.bleib-hero__media {
		min-height: 0;
		aspect-ratio: 16 / 10;
		max-height: 60vh;
		/* Divider becomes horizontal when the columns stack */
		border-right: none;
		border-bottom: 1px solid var(--bleib-gray, #d4d3d3);
	}

	.bleib-hero__content {
		padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 5vw, 2.5rem);
	}

	.bleib-hero__inner {
		max-width: 100%;
	}
}

/* Phones — taller hero image */
@media (max-width: 600px) {
	.bleib-hero__media {
		aspect-ratio: 3 / 4;
		max-height: 75vh;
	}

	.bleib-hero__text {
		margin-bottom: 1.5rem;
	}

	.bleib-hero__btn {
		width: 100%;
	}
}

/* ==========================================================================
   Bleib Studio — Trust / Features section
   Grid rhythm mirrors the header: 120px side columns + vertical dividers.
   ========================================================================== */

.bleib-trust {
	background-color: var(--bleib-white, #ffffff);
	width: 100%;
	box-sizing: border-box;
	border-bottom: 1px solid var(--bleib-gray, #d4d3d3);
	padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

/* ---- Heading block ------------------------------------------------------ */
.bleib-trust__head {
	text-align: center;
	padding: 0 1.5rem clamp(2rem, 5vw, 3.5rem);
}

.bleib-trust__eyebrow {
	margin: 0 0 0.75rem;
	color: var(--bleib-secondary, #7ca4dd);
	font-family: var(--bleib-font-body, 'Archivo', sans-serif);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.bleib-trust__title {
	margin: 0;
	color: var(--bleib-primary, #544134);
	font-family: var(--bleib-font-heading, 'Syne', sans-serif);
	font-weight: 700;
	line-height: 1.1;
	font-size: clamp(2rem, 4.5vw, 3.5rem);
}

/* ---- Feature grid (header rhythm: 120 | 4 cols | 120) ------------------- */
.bleib-trust__grid {
	display: grid;
	grid-template-columns: 120px repeat(4, 1fr) 120px;
	align-items: stretch;
	border-top: 1px solid var(--bleib-gray, #d4d3d3);
	border-bottom: 1px solid var(--bleib-gray, #d4d3d3);
}

/* Empty side spacers, matching the header's 120px columns */
.bleib-trust__side {
	width: 120px;
}

/* Left spacer meets the first cell with a divider line */
.bleib-trust__side--left {
	border-right: 1px solid var(--bleib-gray, #d4d3d3);
}

.bleib-trust__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2vw, 1.75rem);
	/* Vertical dividers between cells (and before the right spacer) */
	border-right: 1px solid var(--bleib-gray, #d4d3d3);
}

.bleib-trust__icon {
	display: inline-flex;
	color: var(--bleib-primary, #544134);
	margin-bottom: 1.5rem;
}

.bleib-trust__icon svg {
	width: 48px;
	height: 48px;
}

.bleib-trust__item-title {
	margin: 0 0 0.75rem;
	color: var(--bleib-primary, #544134);
	font-family: var(--bleib-font-heading, 'Syne', sans-serif);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.bleib-trust__item-text {
	margin: 0;
	max-width: 24ch;
	color: rgba(84, 65, 52, 0.7);
	font-size: 0.95rem;
	line-height: 1.5;
}

/* ---- Responsive: 4 → 2 columns (keeps 2 per row down to mobile) -------- */
@media (max-width: 1024px) {

	/* Drop the 120px side columns, like the marquee does */
	.bleib-trust__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bleib-trust__side {
		display: none;
	}

	.bleib-trust__item {
		border-bottom: 1px solid var(--bleib-gray, #d4d3d3);
	}

	/* Remove right border on the right-hand cell of each row */
	.bleib-trust__item:nth-child(2n + 1) {
		border-right: none;
	}
}

/* Mobile: keep 2 per row, just tighten spacing */
@media (max-width: 600px) {
	.bleib-trust__item {
		padding: 1.5rem 1rem;
	}

	.bleib-trust__icon svg {
		width: 40px;
		height: 40px;
	}
}

/* ==========================================================================
   Bleib Studio — About band (scroll-driven character colour reveal)
   Section layout is defined further below; these rules only handle the reveal.
   ========================================================================== */

/* Keep each word intact; wrapping happens between words */
.bleib-about-band__word {
	display: inline-block;
}

/* Each character starts light and transitions to the brand colour */
.bleib-about-band__char {
	color: #d5ceca;
	transition: color 0.3s ease;
}

.bleib-about-band__char.is-active {
	color: var(--bleib-primary, #544134);
}

/* If motion is reduced, JS reveals everything immediately (no transition) */
@media (prefers-reduced-motion: reduce) {
	.bleib-about-band__char {
		transition: none;
	}
}

/* ==========================================================================
   Bleib Studio — Latest Arrivals Carousel
   ========================================================================== */

.bleib-arrivals {
	background-color: var(--bleib-white, #ffffff);
	width: 100%;
	position: relative;
	box-sizing: border-box;
}

/* ---- Title Row ----------------------------------------------------------- */
.bleib-arrivals__title-row {
	display: flex;
	align-items: stretch;
	border-bottom: 1px solid var(--bleib-gray, #d4d3d3);
}

.bleib-arrivals__side-spacer {
	width: 120px;
	flex: 0 0 auto;
}

.bleib-arrivals__title-row .bleib-arrivals__side-spacer:first-child {
	border-right: 1px solid var(--bleib-gray, #d4d3d3);
}

.bleib-arrivals__title-row .bleib-arrivals__side-spacer:last-child {
	border-left: 1px solid var(--bleib-gray, #d4d3d3);
}

.bleib-arrivals__title-container {
	flex: 1 1 0;
	padding: 3rem 2rem 2.5rem;
	display: flex;
	align-items: center;
}

.bleib-arrivals__title {
	font-family: var(--bleib-font-heading, 'Syne', sans-serif);
	font-size: clamp(1.5rem, 2.5vw, 1.7rem);
	font-weight: 700;
	color: var(--bleib-primary, #544134);
	margin: 0;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.bleib-arrivals__count {
	font-family: var(--bleib-font-heading, 'Syne', sans-serif);
	font-size: 0.55em;
	font-weight: 500;
	color: var(--bleib-black, #000000);
	top: -0.45em;
	margin-left: 0.15rem;
}

/* ---- Carousel Block ------------------------------------------------------ */
.bleib-arrivals__carousel-container {
	display: flex;
	align-items: stretch;
	border-bottom: 1px solid var(--bleib-gray, #d4d3d3);
}

.bleib-arrivals__side {
	width: 120px;
	flex: 0 0 auto;
	background-color: var(--bleib-white, #ffffff);
}

.bleib-arrivals__side--left {
	border-right: 1px solid var(--bleib-gray, #d4d3d3);
}

.bleib-arrivals__side--right {
	border-left: 1px solid var(--bleib-gray, #d4d3d3);
}

.bleib-arrivals__viewport {
	flex: 1 1 0;
	overflow: hidden;
	position: relative;
}

.bleib-arrivals__track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: transform;
}

/* ---- Product Card -------------------------------------------------------- */
.bleib-arrivals__card {
	flex: 0 0 25%;
	/* 4 products on desktop */
	box-sizing: border-box;
	border-right: 1px solid var(--bleib-gray, #d4d3d3);
	position: relative;
	transition: background-color 0.3s ease;
}

.bleib-arrivals__card:last-child {
	border-right: none;
}

.bleib-arrivals__card:hover {
	background-color: #fcfcfc;
}

.bleib-arrivals__card-link {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

.bleib-arrivals__image-wrapper {
	position: relative;
	aspect-ratio: 1 / 1;
	width: 100%;
	background-color: #fcfcfc;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-bottom: 1px solid var(--bleib-gray, #d4d3d3);
}

.bleib-arrivals__badge {
	position: absolute;
	top: 1.2rem;
	left: 1.2rem;
	background-color: var(--bleib-black, #000000);
	color: var(--bleib-white, #ffffff);
	font-family: var(--bleib-font-body, 'Archivo', sans-serif);
	font-size: 0.7rem;
	font-weight: 600;
	padding: 0.3rem 0.8rem;
	border-radius: 12px;
	letter-spacing: 0.05em;
	z-index: 5;
}

.bleib-arrivals__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.bleib-arrivals__card:hover .bleib-arrivals__image {
	transform: scale(1.05);
}

.bleib-arrivals__image-placeholder {
	font-family: var(--bleib-font-body, 'Archivo', sans-serif);
	font-size: 0.9rem;
	color: var(--bleib-primary, #544134);
	opacity: 0.6;
}

.bleib-arrivals__meta {
	padding: 1.8rem 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	background-color: var(--bleib-white, #ffffff);
	flex-grow: 1;
	box-sizing: border-box;
}

.bleib-arrivals__item-title {
	font-family: var(--bleib-font-body, 'Archivo', sans-serif);
	font-size: clamp(0.9rem, 1.2vw, 1.05rem);
	font-weight: 500;
	color: var(--bleib-black, #000000);
	margin: 0;
	line-height: 1.4;
	flex-grow: 1;
	padding-right: 1.2rem;
}

.bleib-arrivals__item-price {
	font-family: var(--bleib-font-body, 'Archivo', sans-serif);
	font-size: clamp(0.9rem, 1.2vw, 1.05rem);
	font-weight: 600;
	color: var(--bleib-black, #000000);
	white-space: nowrap;
}

/* ---- Controls Row -------------------------------------------------------- */
.bleib-arrivals__controls-row {
	display: flex;
	align-items: stretch;
}

.bleib-arrivals__controls-container {
	flex: 1 1 0;
	padding: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
}

/* Pagination Dots */
.bleib-arrivals__dots {
	display: flex;
	gap: 0.6rem;
}

.bleib-arrivals__dot {
	width: 8px !important;
	height: 8px !important;
	border-radius: 50% !important;
	border: 1px solid var(--bleib-black, #000000) !important;
	background-color: transparent !important;
	background: transparent !important;
	cursor: pointer;
	padding: 0 !important;
	transition: background-color 0.3s ease;
	min-width: 0 !important;
	min-height: 0 !important;
	box-shadow: none !important;
}

.bleib-arrivals__dot.is-active {
	background-color: var(--bleib-black, #000000) !important;
	background: var(--bleib-black, #000000) !important;
}

.bleib-arrivals__dot:focus-visible {
	outline: 2px solid var(--bleib-secondary, #7ca4dd) !important;
	outline-offset: 2px;
}

/* Nav arrows */
.bleib-arrivals__nav {
	display: flex;
	gap: 1.2rem;
}

.bleib-arrivals__arrow {
	font-family: var(--bleib-font-heading, 'Syne', sans-serif);
	font-size: 1.8rem;
	border: none !important;
	border-radius: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	color: var(--bleib-black, #000000) !important;
	cursor: pointer;
	padding: 0 !important;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.25s ease, opacity 0.2s ease;
	width: auto !important;
	height: auto !important;
	min-width: 0 !important;
	min-height: 0 !important;
	box-shadow: none !important;
}

.bleib-arrivals__arrow:hover,
.bleib-arrivals__arrow:focus {
	background: transparent !important;
	background-color: transparent !important;
	color: var(--bleib-secondary, #7ca4dd) !important;
}

.bleib-arrivals__arrow--prev:hover {
	transform: translateX(-4px);
}

.bleib-arrivals__arrow--next:hover {
	transform: translateX(4px);
}

.bleib-arrivals__arrow:disabled {
	opacity: 0.3 !important;
	background: transparent !important;
	background-color: transparent !important;
	color: var(--bleib-black, #000000) !important;
	cursor: not-allowed;
	transform: none !important;
}

/* ==========================================================================
   Bleib Studio — Latest Arrivals Responsive Overrides
   ========================================================================== */

/* Tablet viewports: show 2 columns, hide static side gutters */
@media (max-width: 1024px) {

	.bleib-arrivals__side-spacer,
	.bleib-arrivals__side {
		display: none;
	}

	.bleib-arrivals__title-container {
		padding: 2.2rem 1.5rem 1.8rem;
	}

	.bleib-arrivals__viewport {
		border-left: 1px solid var(--bleib-gray, #d4d3d3);
		border-right: 1px solid var(--bleib-gray, #d4d3d3);
	}

	.bleib-arrivals__card {
		flex: 0 0 50%;
		/* 2 columns */
	}

	.bleib-arrivals__card:nth-child(2n) {
		border-right: none;
	}

	.bleib-arrivals__controls-container {
		padding: 1.5rem;
	}
}

/* Phone viewports: show 1 column */
@media (max-width: 600px) {
	.bleib-arrivals__card {
		flex: 0 0 100%;
		/* 1 column */
		border-right: none;
	}

	.bleib-arrivals__meta {
		padding: 1.5rem 1.2rem;
	}

	.bleib-arrivals__image-wrapper {
		aspect-ratio: 1 / 1;
	}

	.bleib-arrivals__controls-container {
		flex-direction: row;
		justify-content: space-between;
	}
}

/* ==========================================================================
   Bleib Studio — About Us Band
   ========================================================================== */

.bleib-about-band {
	background-color: var(--bleib-white, #ffffff);
	width: 100%;
	border-bottom: 1px solid var(--bleib-gray, #d4d3d3);
	box-sizing: border-box;
}

.bleib-about-band__inner {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	padding: clamp(4rem, 8vw, 7.5rem) clamp(1.5rem, 8vw, 6rem);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.bleib-about-band__subtitle {
	font-family: var(--bleib-font-body, 'Archivo', sans-serif);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--bleib-secondary, #7ca4dd);
	/* Brand soft blue accent */
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	line-height: 1;
}

.bleib-about-band__title {
	font-family: var(--bleib-font-heading, 'Syne', sans-serif);
	font-size: clamp(2.1rem, 4.2vw, 4.4rem);
	font-weight: 700;
	color: var(--bleib-black, #000000);
	/* Brand black */
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0 0 2.5rem;
	max-width: 95%;
}

.bleib-about-band__cta-row {
	display: block;
}

.bleib-about-band__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1.2rem 2.5rem;
	background-color: var(--bleib-primary, #544134) !important;
	/* Brand secondary soft blue */
	color: var(--bleib-white, #ffffff) !important;
	/* Brand white text */
	border: 1px solid var(--bleib-white, #ffffff) !important;
	/* Brand white border */
	border-radius: 0px !important;
	font-family: var(--bleib-font-body, 'Archivo', sans-serif);
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.25s ease, transform 0.15s ease, box-shadow 0.2s ease;
	box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
}

.bleib-about-band__btn:hover,
.bleib-about-band__btn:focus {
	background-color: #6993ce !important;
	/* Slightly darker brand blue */
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(124, 164, 221, 0.25);
}

.bleib-about-band__btn:active {
	transform: translateY(0);
}

/* Tablet & Mobile Layout overrides */
@media (max-width: 1024px) {
	.bleib-about-band__inner {
		padding: 4rem 1.5rem;
	}

	.bleib-about-band__title {
		max-width: 100%;
		margin-bottom: 2rem;
	}
}

/* ==========================================================================
   Bleib Studio — Lookbooks / Categories Grid
   ========================================================================== */

.bleib-categories {
	background-color: var(--bleib-white, #ffffff);
	width: 100%;
	position: relative;
	box-sizing: border-box;
}

/* ---- Title Row ----------------------------------------------------------- */
.bleib-categories__title-row {
	display: flex;
	align-items: stretch;
	border-bottom: 1px solid var(--bleib-gray, #d4d3d3);
}

.bleib-categories__side-spacer {
	width: 120px;
	flex: 0 0 auto;
}

.bleib-categories__title-row .bleib-categories__side-spacer:first-child {
	border-right: 1px solid var(--bleib-gray, #d4d3d3);
}

.bleib-categories__title-row .bleib-categories__side-spacer:last-child {
	border-left: 1px solid var(--bleib-gray, #d4d3d3);
}

.bleib-categories__title-container {
	flex: 1 1 0;
	padding: 1.2rem 1.2rem 1.2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.bleib-categories__title {
	font-family: var(--bleib-font-heading, 'Syne', sans-serif);
	font-size: clamp(1.5rem, 2.5vw, 1.7rem);
	font-weight: 700;
	color: var(--bleib-primary, #544134);
	margin: 0;
	line-height: 1.2;
}

/* ---- Grid Row ------------------------------------------------------------ */
.bleib-categories__grid-row {
	display: flex;
	align-items: stretch;
	border-bottom: 1px solid var(--bleib-gray, #d4d3d3);
}

.bleib-categories__side {
	width: 120px;
	flex: 0 0 auto;
	background-color: var(--bleib-white, #ffffff);
}

.bleib-categories__side--left {
	border-right: 1px solid var(--bleib-gray, #d4d3d3);
}

.bleib-categories__side--right {
	border-left: 1px solid var(--bleib-gray, #d4d3d3);
}

.bleib-categories__columns {
	flex: 1 1 0;
	display: flex;
}

/* ---- Category Card ------------------------------------------------------- */
.bleib-categories__card {
	flex: 1 1 33.333%;
	box-sizing: border-box;
	border-right: 1px solid var(--bleib-gray, #d4d3d3);
	position: relative;
	overflow: hidden;
}

.bleib-categories__card:last-child {
	border-right: none;
}

.bleib-categories__card-link {
	display: block;
	text-decoration: none;
	color: inherit;
	width: 100%;
	height: 100%;
}

.bleib-categories__image-wrapper {
	position: relative;
	aspect-ratio: 3 / 4;
	width: 100%;
	overflow: hidden;
	display: block;
}

.bleib-categories__bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bleib-categories__card:hover .bleib-categories__bg-image {
	transform: scale(1.05);
}

.bleib-categories__image-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f7f7f7;
	font-family: var(--bleib-font-body, 'Archivo', sans-serif);
	font-size: 0.95rem;
	color: var(--bleib-primary, #544134);
	opacity: 0.6;
}

/* ---- Bottom Black Bar Footer --------------------------------------------- */
.bleib-categories__footer {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--bleib-black, #000000);
	padding: 1.25rem 1.6rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	box-sizing: border-box;
	z-index: 5;
	transition: background-color 0.25s ease;
}

.bleib-categories__card:hover .bleib-categories__footer {
	/* Keep the background color black as per the new hover design */
	background-color: var(--bleib-black, #000000);
}

.bleib-categories__footer-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.bleib-categories__name {
	font-family: var(--bleib-font-heading, 'Montserrat', sans-serif);
	font-weight: 700;
	font-size: clamp(0.95rem, 1.2vw, 1.15rem);
	color: var(--bleib-white, #ffffff);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: color 0.25s ease;
}

.bleib-categories__card:hover .bleib-categories__name {
	color: var(--bleib-white, #ffffff);
}

.bleib-categories__description-wrapper {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		margin-top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	margin-top: 0;
	overflow: hidden;
}

.bleib-categories__card:hover .bleib-categories__description-wrapper {
	grid-template-rows: 1fr;
	margin-top: 0.75rem;
}

.bleib-categories__description {
	font-family: var(--bleib-font-body, 'Archivo', sans-serif);
	font-size: clamp(0.75rem, 0.9vw, 0.85rem);
	font-weight: 300;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.75);
	min-height: 0;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.bleib-categories__card:hover .bleib-categories__description {
	opacity: 1;
	transition: opacity 0.3s ease 0.1s;
	/* Slight delay on fade-in so it coordinates with the expand transition */
}

.bleib-categories__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--bleib-white, #ffffff);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bleib-categories__arrow svg {
	display: block;
	width: 14px;
	height: 14px;
	stroke: currentColor;
	stroke-width: 2.5;
}

.bleib-categories__card:hover .bleib-categories__arrow {
	transform: rotate(90deg);
}

/* ---- Navigation Arrows --------------------------------------------------- */
.bleib-categories__nav-arrows {
	display: none;
	/* Hidden on desktop */
	align-items: center;
	gap: 1.25rem;
}

.bleib-categories__nav-btn {
	background: none;
	border: none;
	padding: 0.5rem;
	color: var(--bleib-black, #000000);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.25s ease;
	opacity: 0.8;
}

.bleib-categories__nav-btn:hover {
	opacity: 1;
}

.bleib-categories__nav-btn.is-disabled {
	opacity: 0.2;
	pointer-events: none;
	cursor: not-allowed;
}

/* ==========================================================================
   Bleib Studio — Lookbooks / Categories Responsive Overrides
   ========================================================================== */

/* Tablet viewports: hide side columns and enable horizontal scroll */
@media (max-width: 1024px) {

	.bleib-categories__side-spacer,
	.bleib-categories__side {
		display: none;
	}

	.bleib-categories__title-container {
		padding: 0.9rem 0.7rem 0.7rem;
	}

	.bleib-categories__viewport,
	.bleib-categories__columns {
		border-left: 1px solid var(--bleib-gray, #d4d3d3);
		border-right: 1px solid var(--bleib-gray, #d4d3d3);
	}
}

/* Mobile viewports: enable horizontal slider/swipe */
@media (max-width: 768px) {
	.bleib-categories__nav-arrows {
		display: flex;
	}

	.bleib-categories__columns {
		flex-direction: row;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.bleib-categories__columns::-webkit-scrollbar {
		display: none;
	}

	.bleib-categories__card {
		flex: 0 0 100%;
		width: 100%;
		scroll-snap-align: start;
		border-right: none;
		border-bottom: none;
	}

	.bleib-categories__description-wrapper {
		grid-template-rows: 1fr;
		margin-top: 0.75rem;
	}

	.bleib-categories__description {
		opacity: 1;
	}

	.bleib-categories__arrow {
		display: none;
	}
}