/**
 * Cheap Sheep — Monochrome homepage stylesheet.
 * Six stacked sections (hero, manifesto, flagship, arsenal, trust, footer)
 * rendered by front-page.php from template-parts/home/mono-*.php.
 * Enqueued only on the front page (functions.php, is_front_page()).
 *
 * Reveal system: functions.php prints an IntersectionObserver that adds
 * .cs-anim-ready to <html> (only when IO is supported AND the visitor does
 * not prefer reduced motion), then .is-visible to each section on first
 * top-edge crossing. Pre-reveal hidden states are gated behind
 * .cs-anim-ready so no-JS visitors always see full content.
 * Entrance animations run on __cell / __stage-wrap WRAPPERS while hover
 * transforms live on the inner card — fill-mode:both would otherwise pin
 * the animated transform and swallow the hover.
 */

:root {
	--csh-bg: #FFFFFF;
	--csh-ink: #111111;
	--csh-muted: #707072;
	--csh-line: #E5E5E5;
	--csh-stage: #F5F5F7;
	--csh-cta-bg: #111111;
	--csh-cta-text: #FFFFFF;
	--csh-radius: 18px;
	--csh-ease: cubic-bezier(0.16, 1, 0.3, 1);
	--csh-ff-display: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
	--csh-ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
}

/* === shared chrome === */

.cs-home {
	background: var(--csh-bg);
	color: var(--csh-ink);
	font-family: var(--csh-ff-body);
	overflow-x: clip; /* belt-and-braces: reveal offsets must never scroll x */
}

.csh-container {
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.cs-home .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}

/* Black pill button (inverts to white inside the dark footer). */
.csh-btn {
	display: inline-block;
	font-family: var(--csh-ff-body);
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.2;
	text-decoration: none;
	text-align: center;
	background: var(--csh-cta-bg);
	color: var(--csh-cta-text);
	border: 1px solid var(--csh-cta-bg);
	border-radius: 999px;
	padding: 0.85em 1.9em;
	cursor: pointer;
	transition: background 0.25s var(--csh-ease), border-color 0.25s var(--csh-ease), transform 0.25s var(--csh-ease), box-shadow 0.25s var(--csh-ease);
}

.csh-btn:hover,
.csh-btn:focus {
	background: #454545;
	border-color: #454545;
	color: var(--csh-cta-text);
	text-decoration: none;
}

.csh-btn:active {
	transform: scale(0.98);
}

.csh-btn--sm {
	font-size: 0.85rem;
	padding: 0.65em 1.4em;
}

.cs-home :focus-visible {
	outline: 2px solid #111111;
	outline-offset: 2px;
}

.cs-minimalist-footer :focus-visible {
	outline: 2px solid #FFFFFF;
	outline-offset: 2px;
}

/* Gray product stage: white-shot photos melt into the tile. */
.cs-hero__stage,
.cs-flagship__stage,
.cs-arsenal-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--csh-stage);
	border-radius: var(--csh-radius);
	overflow: hidden;
}

.cs-hero__img,
.cs-flagship__img,
.cs-arsenal-card__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	mix-blend-mode: multiply;
}

/* === section 1: cinematic hero === */

.cs-hero-section {
	padding-block: clamp(4rem, 10vw, 9.5rem);
}

.cs-hero__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2.5rem, 5vw, 4.5rem);
	align-items: center;
}

.cs-hero__title {
	font-family: var(--csh-ff-display);
	font-weight: 700;
	font-size: clamp(2.6rem, 6vw, 5rem);
	letter-spacing: -0.03em;
	line-height: 1.02;
	color: var(--csh-ink);
	margin: 0 0 1.5rem;
	animation: csh-rise 0.9s var(--csh-ease) 0s backwards;
}

.cs-hero__sub {
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	line-height: 1.65;
	color: var(--csh-muted);
	max-width: 46ch;
	margin: 0 0 2.25rem;
	animation: csh-rise 0.9s var(--csh-ease) 0.2s backwards;
}

.cs-hero__cta-row {
	animation: csh-rise 0.9s var(--csh-ease) 0.4s backwards;
}

/* Hero CTA gets the lift; the base .csh-btn hover stays bounce-free. */
.cs-hero__cta-row .csh-btn:hover,
.cs-hero__cta-row .csh-btn:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(17, 17, 17, 0.16);
}

.cs-hero__cta-row .csh-btn:active {
	transform: translateY(0) scale(0.98);
	box-shadow: none;
}

.cs-hero__stage-wrap {
	animation: csh-stage-in 0.9s var(--csh-ease) 0.6s backwards;
}

.cs-hero__stage {
	aspect-ratio: 4 / 3;
	padding: 9%;
}

@keyframes csh-rise {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes csh-stage-in {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@media (min-width: 768px) {
	.cs-hero__grid {
		grid-template-columns: 1.05fr 0.95fr;
	}
}

@media (max-width: 767px) {
	.cs-hero__cta-row .csh-btn {
		display: block;
		width: 100%;
	}
}

/* === section 2: brand manifesto === */

.cs-manifesto-section {
	padding-block: clamp(5rem, 12vw, 8.75rem);
}

.cs-manifesto__inner {
	text-align: center;
}

.cs-manifesto__title {
	font-family: var(--csh-ff-display);
	font-weight: 700;
	font-size: clamp(1.9rem, 4vw, 3rem);
	letter-spacing: -0.03em;
	color: var(--csh-ink);
	margin: 0 0 1.75rem;
}

.cs-manifesto__body {
	font-size: clamp(1.05rem, 1.5vw, 1.2rem);
	line-height: 1.75;
	color: var(--csh-muted);
	max-width: 38ch;
	margin-inline: auto;
	margin-block: 0;
}

.cs-anim-ready .cs-manifesto-section .cs-manifesto__title {
	opacity: 0;
}

.cs-anim-ready .cs-manifesto-section .cs-manifesto__body {
	opacity: 0.5;
}

.cs-anim-ready .cs-manifesto-section.is-visible .cs-manifesto__title {
	animation: csh-reveal-up 0.8s var(--csh-ease) both;
}

.cs-anim-ready .cs-manifesto-section.is-visible .cs-manifesto__body {
	animation: csh-fade-in 0.8s var(--csh-ease) 1.1s both;
}

@keyframes csh-reveal-up {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes csh-fade-in {
	from {
		opacity: 0.5;
	}
	to {
		opacity: 1;
	}
}

/* === section 3: flagship spotlight === */

.cs-flagship-section {
	padding-block: clamp(4rem, 9vw, 7rem);
	overflow: hidden; /* ±50px reveal offsets must never cause x-scroll */
}

.cs-flagship__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2.5rem, 5vw, 4.5rem);
	align-items: center;
}

.cs-flagship__stage {
	aspect-ratio: 1 / 1;
	padding: 10%;
}

.cs-flagship__stage .cs-flagship__img {
	transition: transform 0.6s var(--csh-ease);
}

.cs-flagship__stage:hover .cs-flagship__img,
.cs-flagship__stage:focus-visible .cs-flagship__img {
	transform: scale(1.03);
}

.cs-flagship__eyebrow,
.cs-arsenal__eyebrow {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--csh-muted);
	margin: 0 0 0.9rem;
}

.cs-flagship__title {
	font-family: var(--csh-ff-display);
	font-weight: 700;
	font-size: clamp(1.8rem, 3.2vw, 2.6rem);
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: var(--csh-ink);
	margin: 0 0 2rem;
}

.cs-flagship__specs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem 2rem;
	margin: 0 0 2rem;
}

.cs-flagship__spec {
	border-top: 1px solid var(--csh-line);
	padding-top: 0.9rem;
}

.cs-flagship__spec dt {
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--csh-muted);
	margin: 0 0 0.3rem;
}

.cs-flagship__spec dd {
	font-weight: 600;
	font-size: 1rem;
	color: var(--csh-ink);
	margin: 0;
}

.cs-flagship__quote {
	font-style: italic;
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--csh-muted);
	margin: 0 0 2rem;
}

.cs-anim-ready .cs-flagship-section .cs-flagship__stage-wrap {
	opacity: 0;
	transform: translateX(-50px);
}

.cs-anim-ready .cs-flagship-section .cs-flagship__detail {
	opacity: 0;
	transform: translateX(50px);
}

.cs-anim-ready .cs-flagship-section.is-visible .cs-flagship__stage-wrap {
	animation: csh-slide-from-left 0.8s var(--csh-ease) both;
}

.cs-anim-ready .cs-flagship-section.is-visible .cs-flagship__detail {
	animation: csh-slide-from-right 0.8s var(--csh-ease) both;
}

@keyframes csh-slide-from-left {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes csh-slide-from-right {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@media (min-width: 768px) {
	.cs-flagship__grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* === section 4: curated arsenal === */

.cs-arsenal-section {
	padding-block: clamp(4rem, 9vw, 7rem);
}

.cs-arsenal__header {
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.cs-arsenal__title {
	font-family: var(--csh-ff-display);
	font-weight: 700;
	font-size: clamp(1.8rem, 3.2vw, 2.6rem);
	letter-spacing: -0.03em;
	color: var(--csh-ink);
	margin: 0;
}

.cs-arsenal__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 3.5vw, 2.5rem);
}

.cs-arsenal-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	border-radius: var(--csh-radius);
	transition: transform 0.4s var(--csh-ease), box-shadow 0.4s var(--csh-ease);
}

.cs-arsenal-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 48px rgba(17, 17, 17, 0.09);
}

.cs-arsenal-card__media {
	flex: 1;
	min-height: 0;
	padding: 10%;
}

.cs-arsenal-card__img {
	transition: transform 0.4s var(--csh-ease);
}

.cs-arsenal-card:hover .cs-arsenal-card__img {
	transform: scale(1.05);
}

.cs-arsenal-card__body {
	padding: 1.25rem 0.25rem 0.5rem;
}

.cs-arsenal-card__cat {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--csh-muted);
	margin: 0 0 0.4rem;
}

.cs-arsenal-card__name {
	font-family: var(--csh-ff-body);
	font-weight: 600;
	font-size: 1.05rem;
	line-height: 1.35;
	letter-spacing: -0.01em;
	margin: 0 0 0.4rem;
}

.cs-arsenal-card__name a {
	color: var(--csh-ink);
	text-decoration: none;
}

.cs-arsenal-card__name a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.cs-arsenal-card__meta {
	font-size: 0.9rem;
	color: var(--csh-muted);
	margin: 0 0 1rem;
}

.cs-arsenal-card__price {
	font-weight: 700;
	color: var(--csh-ink);
}

.cs-arsenal-card__price .woocommerce-Price-amount {
	font-weight: 700;
	color: var(--csh-ink);
}

.cs-arsenal-card__spec::before {
	content: '· ';
}

/* Entrance cascade: animate the CELL so the card hover stays instant.
   animation-delay (not transition-delay) per spec. */
.cs-anim-ready .cs-arsenal-section .cs-arsenal__cell {
	opacity: 0;
	transform: translateY(40px);
}

.cs-anim-ready .cs-arsenal-section.is-visible .cs-arsenal__cell {
	animation: csh-card-rise 0.7s var(--csh-ease) both;
}

.cs-anim-ready .cs-arsenal-section.is-visible .cs-arsenal__cell:nth-child(1) { animation-delay: 0.1s; }
.cs-anim-ready .cs-arsenal-section.is-visible .cs-arsenal__cell:nth-child(2) { animation-delay: 0.2s; }
.cs-anim-ready .cs-arsenal-section.is-visible .cs-arsenal__cell:nth-child(3) { animation-delay: 0.3s; }
.cs-anim-ready .cs-arsenal-section.is-visible .cs-arsenal__cell:nth-child(4) { animation-delay: 0.4s; }
.cs-anim-ready .cs-arsenal-section.is-visible .cs-arsenal__cell:nth-child(5) { animation-delay: 0.5s; }
.cs-anim-ready .cs-arsenal-section.is-visible .cs-arsenal__cell:nth-child(6) { animation-delay: 0.6s; }

@keyframes csh-card-rise {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (min-width: 601px) {
	.cs-arsenal__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Square card: image area flexes to fill, text pinned below. */
	.cs-arsenal-card {
		aspect-ratio: 1 / 1;
	}
}

@media (min-width: 1025px) {
	.cs-arsenal__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* === section 5: "no-drama" trust grid === */

.cs-trust-section {
	border-top: 1px solid var(--csh-line);
	padding-block: clamp(4rem, 9vw, 7rem);
}

.cs-trust__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.5rem, 3vw, 2rem);
	align-items: stretch;
}

.cs-trust__cell {
	display: flex;
}

.cs-pillar {
	flex: 1;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--csh-line);
	border-radius: var(--csh-radius);
	padding: clamp(1.75rem, 3vw, 2.5rem);
	transition: transform 0.3s var(--csh-ease), box-shadow 0.3s var(--csh-ease);
}

.cs-pillar:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(17, 17, 17, 0.07);
}

.cs-pillar__chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	background: var(--csh-stage);
	border-radius: 14px;
	color: var(--csh-ink);
	margin-bottom: 1.4rem;
	transition: transform 0.3s var(--csh-ease);
}

.cs-pillar:hover .cs-pillar__chip {
	transform: scale(1.1);
}

.cs-pillar__title {
	font-family: var(--csh-ff-body);
	font-weight: 700;
	font-size: 1.1rem;
	letter-spacing: -0.01em;
	color: var(--csh-ink);
	margin: 0 0 0.6rem;
}

.cs-pillar__body {
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--csh-muted);
	margin: 0;
}

.cs-anim-ready .cs-trust-section .cs-trust__cell {
	opacity: 0;
	transform: translateY(40px);
}

.cs-anim-ready .cs-trust-section.is-visible .cs-trust__cell {
	animation: csh-card-rise 0.7s var(--csh-ease) both;
}

.cs-anim-ready .cs-trust-section.is-visible .cs-trust__cell:nth-child(1) { animation-delay: 0.1s; }
.cs-anim-ready .cs-trust-section.is-visible .cs-trust__cell:nth-child(2) { animation-delay: 0.3s; }
.cs-anim-ready .cs-trust-section.is-visible .cs-trust__cell:nth-child(3) { animation-delay: 0.5s; }

@media (min-width: 769px) {
	.cs-trust__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* === section 6: minimalist footer (no entrance animation) === */

.cs-minimalist-footer {
	background: #0D0D0D;
	color: #FFFFFF;
	font-family: var(--csh-ff-body);
	padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem;
}

.cs-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2.5rem, 4vw, 3rem);
}

.cs-footer__wordmark {
	font-family: var(--csh-ff-display);
	font-weight: 700;
	font-size: 1.6rem;
	letter-spacing: -0.02em;
	margin: 0 0 0.6rem;
}

.cs-footer__tagline {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #7E7E7E;
	margin: 0 0 1.5rem;
}

.cs-footer__news {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
	max-width: 380px;
}

.cs-footer__news-input {
	flex: 1;
	min-width: 200px;
	background: #1A1A1A;
	border: 1px solid #333333;
	border-radius: 999px;
	color: #FFFFFF;
	font-family: var(--csh-ff-body);
	font-size: 0.9rem;
	padding: 0.75em 1.3em;
}

.cs-footer__news-input::placeholder {
	color: #7E7E7E;
}

.cs-footer__news-btn {
	background: #F2F2F2;
	color: var(--csh-ink);
	border: 1px solid #F2F2F2;
	border-radius: 999px;
	font-family: var(--csh-ff-body);
	font-weight: 600;
	font-size: 0.9rem;
	padding: 0.75em 1.5em;
	cursor: pointer;
	transition: background 0.2s var(--csh-ease), transform 0.2s var(--csh-ease);
}

.cs-footer__news-btn:hover {
	background: #FFFFFF;
	border-color: #FFFFFF;
}

.cs-footer__news-btn:active {
	transform: scale(0.98);
}

.cs-footer__heading {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #FFFFFF;
	margin: 0 0 1.1rem;
}

.cs-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}

.cs-footer__link {
	display: inline-block;
	color: #7E7E7E;
	font-size: 0.95rem;
	text-decoration: none;
	transition: color 0.2s var(--csh-ease), transform 0.2s var(--csh-ease);
}

.cs-footer__link:hover,
.cs-footer__link:focus-visible {
	color: #FFFFFF;
	transform: translateX(3px);
}

.cs-footer__help {
	font-size: 0.95rem;
	line-height: 1.65;
	color: #7E7E7E;
	margin: 0 0 1rem;
}

.cs-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	border-top: 1px solid #262626;
	margin-top: clamp(2.5rem, 5vw, 4rem);
	padding-top: 1.75rem;
}

.cs-footer__copyright {
	font-size: 0.85rem;
	color: #7E7E7E;
	margin: 0;
}

.cs-footer__legal {
	list-style: none;
	display: flex;
	gap: 1.5rem;
	margin: 0;
	padding: 0;
}

.cs-footer__legal .cs-footer__link {
	font-size: 0.85rem;
}

@media (min-width: 601px) {
	.cs-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1025px) {
	.cs-footer__grid {
		grid-template-columns: 1.4fr 1fr 1fr 1fr;
	}
}

/* === reduced motion: everything static, everything visible === */

@media (prefers-reduced-motion: reduce) {
	.cs-home *,
	.cs-home *::before,
	.cs-home *::after,
	.cs-minimalist-footer *,
	.cs-minimalist-footer *::before,
	.cs-minimalist-footer *::after {
		animation: none !important;
		transition: none !important;
	}

	.cs-anim-ready .cs-manifesto-section .cs-manifesto__title,
	.cs-anim-ready .cs-manifesto-section .cs-manifesto__body,
	.cs-anim-ready .cs-flagship-section .cs-flagship__stage-wrap,
	.cs-anim-ready .cs-flagship-section .cs-flagship__detail,
	.cs-anim-ready .cs-arsenal-section .cs-arsenal__cell,
	.cs-anim-ready .cs-trust-section .cs-trust__cell {
		opacity: 1 !important;
		transform: none !important;
	}
}

/* === SCROLL-LINKED CANVAS ANIMATION SECTION === */

.cs-animation-section {
	position: relative;
	width: 100%;
	height: 100vh; /* Lock height to viewport */
	background: #b9b9b9; /* Match exact gray background of the frame images */
	overflow: hidden;
}

.cs-canvas-container {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: var(--site-header-height, 109px);
	box-sizing: border-box;
}

#cs-product-canvas {
	display: block;
	width: 100%;
	height: 100%;
	background: #b9b9b9;
}

/* Sleek Minimalist Preloader Screen */
.cs-animation-loader {
	position: absolute;
	inset: 0;
	z-index: 1000;
	background: #b9b9b9;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.5s ease;
}

.cs-loader-inner {
	width: 80%;
	max-width: 320px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.cs-loader-bar-wrap {
	width: 100%;
	height: 2px;
	background: rgba(0, 0, 0, 0.15); /* Darker progress track for visibility on light gray */
	border-radius: 999px;
	overflow: hidden;
}

.cs-loader-bar {
	width: 0%;
	height: 100%;
	background: #FF6B00; /* Safety Orange loading progress */
	transition: width 0.1s linear;
}

.cs-loader-text {
	color: #4A5568; /* Dark text for contrast */
	font-family: var(--csh-ff-body);
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

/* === SCROLL-LINKED TEXT OVERLAY === */
.cs-animation-text-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none; /* Let user scroll through the text */
	box-sizing: border-box;
	padding-top: var(--site-header-height, 109px);
	display: flex;
	align-items: center;
	padding-left: clamp(2rem, 8vw, 10%); /* Left aligned */
	z-index: 10;
}

.cs-anim-slide {
	position: absolute;
	max-width: 500px;
	color: #111111; /* Dark text */
	pointer-events: auto; /* Enable CTA button clicks */
	display: flex;
	flex-direction: column;
	gap: 1rem;
	transition: transform 0.1s ease-out; /* Smooth momentum */
}

.cs-slide--hidden {
	opacity: 0;
	transform: translateY(40px);
}

.cs-slide-eyebrow {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #FF6B00; /* Safety Orange */
	display: inline-block;
}

.cs-slide-headline {
	font-family: var(--csh-ff-display, 'Inter Tight', sans-serif);
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: #111111; /* Dark ink */
	margin: 0;
}

.cs-slide-desc {
	font-family: var(--csh-ff-body, 'Inter', sans-serif);
	font-size: clamp(0.95rem, 1.2vw, 1.15rem);
	line-height: 1.6;
	color: #4A5568; /* Dark slate gray for excellent legibility */
	margin: 0;
}

.cs-slide-cta {
	margin-top: 1rem;
}

/* Custom Orange Button */
.csh-btn--orange {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #FF6B00;
	color: #ffffff !important;
	border: 1px solid #FF6B00;
	border-radius: 6px;
	padding: 0.85em 1.75em;
	font-family: var(--csh-ff-body, 'Inter', sans-serif);
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.csh-btn--orange:hover {
	background: #e66000;
	border-color: #e66000;
	transform: translateY(-2px);
}

.csh-btn--orange:active {
	transform: translateY(0px);
}


