/* ═══════════════════════════════════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════════════════════════════════ */
.hero-slider {
	position: relative;
	width: 100%;
	height: calc(100vh - 60px);
	overflow: hidden;
	background: var(--color-surface);
}

.slider-track {
	width: 100%;
	height: 100%;
}

.slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 0.9s ease;
}
.slide.is-active {
	opacity: 1;
}

.slide-caption {
	position: absolute;
	bottom: 5rem;
	left: var(--gutter);
	font-family: var(--font-heading);
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-white);
}

/* Red bar below slider */
.slider-red-bar {
	background: var(--color-footer);
	color: var(--color-white);
	padding-block: 1.7rem;
	overflow: hidden;
}

.slider-red-bar__ticker {
	overflow: hidden;
	white-space: nowrap;
}

.slider-red-bar__track {
	display: inline-flex;
	gap: 0;
	animation: ticker-scroll 28s linear infinite;
}

.slider-red-bar__item {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(0.75rem, 1vw, 0.9rem);
	letter-spacing: 0.03em;
	line-height: 1;
	padding-right: 6rem;
	white-space: nowrap;
}

@keyframes ticker-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* Pause on hover */
.slider-red-bar:hover .slider-red-bar__track {
	animation-play-state: paused;
}

/* Arrows */
.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	color: var(--color-white);
	background: rgba(0,0,0,0.18);
	border-radius: 50%;
	transition: background 200ms;
}
.slider-arrow:hover { background: rgba(0,0,0,0.38); }
.slider-prev { left: 1.25rem; }
.slider-next { right: 1.25rem; }

/* Dots */
.slider-dots {
	position: absolute;
	bottom: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.5rem;
	z-index: 10;
}
.slider-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255,255,255,0.45);
	transition: background 200ms, transform 200ms;
}
.slider-dot.is-active {
	background: var(--color-white);
	transform: scale(1.3);
}

/* No-slide placeholder */
.slider-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-family: var(--font-heading);
	font-size: 0.9rem;
	color: var(--color-text);
	opacity: 0.5;
}

@media (max-width: 700px) {
	.hero-slider { height: 75vw; min-height: 280px; }
	.slider-arrow { display: none; }
}


/* ═══════════════════════════════════════════════════════════════════════
   INTRO TEXT + CATEGORY IMAGE ROW
═══════════════════════════════════════════════════════════════════════ */
.categories-section {
	padding-block: 5rem 0;
}

.categories-text {
	max-width: 780px;
	margin-inline: auto;
	text-align: center;
	padding-bottom: 4rem;
}

.categories-headline {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(1.2rem, 2.5vw, 1.8rem);
	line-height: 1.3;
	margin-bottom: 2rem;
}

.categories-text p {
	font-family: var(--font-body);
	font-size: clamp(1.2rem, 1.8vw, 1.7rem);
	line-height: 1.75;
	color: var(--color-text);
}

.categories-text p + p { margin-top: 1.2em; }

/* ── Category carousel ──────────────────────────────────────────────── */
.cat-carousel {
	position: relative;
	display: flex;
	align-items: center;
}

.cat-carousel__track-wrap {
	overflow: hidden;
	flex: 1;
}

.cat-carousel__track {
	display: flex;
	gap: 0;
	transition: transform 0.5s ease;
	will-change: transform;
}

.cat-item {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.6rem;
	padding-bottom: 1.25rem;
	user-select: none;
}

.cat-item img {
	display: block;
	height: 340px;
	width: auto;
	object-fit: contain;
	pointer-events: none;
}

.cat-label {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 0.7rem;
	letter-spacing: 0.03em;
	color: var(--color-text);
	opacity: 0.75;
	white-space: nowrap;
}

.cat-carousel__arrow {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	color: var(--color-text);
	background: none;
	border: 1px solid var(--color-text);
	border-radius: 50%;
	z-index: 2;
	transition: background 200ms, color 200ms;
	margin-inline: 0.5rem;
}
.cat-carousel__arrow:hover {
	background: var(--color-text);
	color: var(--color-bg);
}

@media (max-width: 700px) {
	.categories-section { padding-block: 3rem 0; }
	.categories-text { text-align: left; padding-bottom: 2.5rem; }
	.cat-item img { height: 220px; }
	.cat-carousel__arrow { width: 36px; height: 36px; font-size: 1rem; }
}


/* ═══════════════════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════════════════ */
.services-section {
	background: var(--color-bg);
	padding-block: 5rem;
}

.services-headline {
	font-family: var(--font-body);
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	font-weight: 500;
	line-height: 1.25;
	margin-bottom: 3rem;
	text-align: center;
	text-transform: uppercase;
}
.services-headline em {
	font-style: italic;
}

/* Accordion */
.services-accordion {
	border-top: 1px solid var(--color-text);
}

.service-block {
	border-bottom: 1px solid var(--color-text);
}

.service-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.1rem 0;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(0.85rem, 1.2vw, 1rem);
	letter-spacing: 0.04em;
	text-align: left;
	color: var(--color-text);
	background: none;
	border: none;
	cursor: pointer;
}

.service-icon {
	font-size: 1.4rem;
	font-weight: 300;
	line-height: 1;
	flex-shrink: 0;
	margin-left: 1rem;
	transition: transform 250ms ease;
}

.service-toggle[aria-expanded="true"] .service-icon {
	transform: rotate(45deg);
}

.service-body {
	padding-bottom: 1.5rem;
}

.service-body p {
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.8;
	max-width: 760px;
}

.services-cta {
	margin-top: 3.5rem;
	text-align: center;
}

.services-cta__sentence {
	font-family: var(--font-body);
	font-size: clamp(1.3rem, 2vw, 1.8rem);
	color: var(--color-text);
	text-decoration: underline;
	text-underline-offset: 0.2em;
	text-decoration-thickness: 1px;
	transition: opacity 200ms ease;
}

.services-cta__sentence:hover {
	opacity: 0.55;
}


/* ═══════════════════════════════════════════════════════════════════════
   BRANDS STRIP
═══════════════════════════════════════════════════════════════════════ */
.brands-section {
	padding-block: 3rem;
	border-top: 1px solid var(--color-surface);
}

.brands-label {
	font-family: var(--font-heading);
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.5;
	margin-bottom: 1rem;
	text-align: center;
}

.brands-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem 2.5rem;
}

.brands-list li {
	font-family: var(--font-body);
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	font-style: italic;
	color: var(--color-text);
}


/* ═══════════════════════════════════════════════════════════════════════
   SUBSTACK BLOCK
═══════════════════════════════════════════════════════════════════════ */
/* substack-section styles moved to main.css */
