@charset "UTF-8";
/* ===============================
   Blue Crest Creative — 2026 redesign
   =============================== */

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: "Source Sans 3", Segoe, "Segoe UI", "DejaVu Sans", Verdana, sans-serif;
	font-size: 16px;
	color: #141414;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

a {
	color: #23b0bb;
	text-decoration: none;
}

a:hover {
	color: #0a3b61;
}

.skip-link {
	position: absolute;
	left: .5rem;
	top: .5rem;
	transform: translateY(-150%);
	padding: .5rem .75rem;
	background: #000;
	color: #fff;
	border-radius: .25rem;
	z-index: 9999;
}

.skip-link:focus {
	transform: translateY(0);
	outline: 2px solid Highlight;
	outline-offset: 2px;
}

img {
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}

/* Header */
.site-header {
	justify-content: flex-end;
	/* nav-only now, push it right */
	padding: 14px 48px;
	/* shorter than before, no logo to accommodate */
}

.hero-logo {
	display: inline-block;
	background: #fff;
	padding: 10px 18px;
	border-radius: 14px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
	margin-bottom: 24px;
}

.hero-logo img {
	height: 60px;
	width: auto;
	display: block;
}

.logo-wordmark {
	font: 700 21px Poppins, sans-serif;
	color: #0a3b61;
}

.main-nav {
	display: flex;
	gap: 28px;
	font: 600 14px Poppins, sans-serif;
}

.main-nav a {
	color: #666;
}

.main-nav a.is-active {
	color: #0a3b61;
}

/* Hero */
.hero {
	background: linear-gradient(135deg, #23b0bb 0%, #0a3b61 75%);
	padding: 56px 48px;
	display: flex;
	align-items: center;
	gap: 44px;
	color: #fff;
}

.hero-copy {
	flex: 1.25;
}

.hero-tag {
	margin: 0;
	font: 700 44px/1.2 Poppins, sans-serif;
}

.hero-tag-highlight {
	background: rgba(255, 255, 255, 0.16);
	padding: 2px 14px;
	border-radius: 10px;
}

.hero-sub {
	max-width: 540px;
	margin: 20px 0 0;
	font-size: 17px;
	line-height: 1.6;
	opacity: .92;
}

.hero-showcase {
	flex: 1;
	position: relative;
	height: 280px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
	background: #0a3b61;
}

.showcase-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1.4s ease;
}

.showcase-slide.is-active {
	opacity: 1;
}

.showcase-scrim {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(0deg, rgba(10, 59, 97, .85) 0%, rgba(10, 59, 97, 0) 45%);
}

.showcase-label {
	position: absolute;
	left: 22px;
	bottom: 18px;
	color: #fff;
	font: 600 17px Poppins, sans-serif;
	pointer-events: none;
}

.showcase-dots {
	position: absolute;
	right: 22px;
	bottom: 22px;
	display: flex;
	gap: 8px;
}

.showcase-dots span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .4);
	transition: background .3s;
}

.showcase-dots span.is-active {
	background: #fff;
}

/* Placeholder thumbnails — swap for real photography.
   Replace each .thumb--* rule's background with: background-image: url("img/your-photo.jpg"); background-size: cover; background-position: center; */
.thumb {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	background-color: #123a52;
	background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, .06) 0 2px, transparent 2px 14px);
}

.thumb--tall {
	aspect-ratio: 4 / 3;
	height: auto;
	border-radius: 18px;
}

.thumb--icon {
	background-size: contain;
	background-position: center;
	background-origin: content-box;
	padding: 30px;
}

.thumb--brand {
	background-image: url("../img/bccfish.png");
}

.thumb--web {
	background-image: url("../img/bcc-sf.png");
}

.thumb--app {
	background-image: url("../img/bcc-th.png");
}

.thumb--brand-work {
	background-image: url("../img/nhance-it-logo.png");
}

/* Example once you have real photos:
.thumb--brand { background-image: url("img/work-brand.jpg"); background-size: cover; background-position: center; }
*/

/* Cards */
.cards {
	max-width: 1080px;
	margin: 44px auto 0;
	padding: 0 48px 90px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.card {
	flex: 1;
	background: #fff;
	border-radius: 22px;
	box-shadow: 0 20px 50px rgba(10, 59, 97, .18);
	padding: 38px 32px;
	text-align: left;
}

.card-heading {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 22px;
}

.icon-badge {
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	border-radius: 50%;
	background: #23b0bb;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 22px;
}

.card-heading .icon-badge {
	width: 48px;
	height: 48px;
	font-size: 20px;
}

.card-heading .title {
	margin: 0;
}

.card .title {
	font: 600 20px Poppins, sans-serif;
	margin: 0 0 14px;
}

.card-what .title {
	margin: 0;
}

.card .prose {
	font-size: 15px;
	line-height: 1.7;
	color: #333;
	margin: 0 0 12px;
}

.card .prose-strong {
	font-size: 15px;
	line-height: 1.7;
	color: #333;
	margin: 0;
	font-weight: 600;
}

.what-grid {
	display: flex;
	gap: 32px;
}

.what-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.what-col p {
	font-size: 15px;
	line-height: 1.6;
	color: #333;
	margin: 0;
}

.card-row {
	display: flex;
	gap: 28px;
}

.contact-line {
	font-size: 15px;
	margin: 0 0 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.contact-line i {
	color: #23b0bb;
}

.contact-line a {
	color: #0a3b61;
	font-weight: 600;
}

.testimonial {
	max-width: 755px;
	margin: 0 auto 70px;
	padding: 0 48px;
	text-align: center;
}

.testimonial-quote {
	font: 600 20px/1.5 Poppins, sans-serif;
	color: #0a3b61;
	margin: 0 0 10px;
	text-wrap: pretty;
}

.testimonial-attr {
	font-size: 14px;
	color: #666;
	margin: 0;
}

/* Work page */
.work-hero {
	background: linear-gradient(135deg, #23b0bb 0%, #0a3b61 75%);
	padding: 32px 24px;
	text-align: center;
	color: #fff;
}

.work-hero .hero-logo {
	margin-bottom: 20px;
}

.work-hero p {
	margin: 0;
	font: 700 42px Poppins, sans-serif;
}

.work-grid {
	max-width: 1080px;
	margin: 0 auto;
	padding: 56px 48px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.work-row-top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.thumb--square {
	aspect-ratio: 1 / 1;
	height: auto;
	border-radius: 18px;
}

.thumb--wide {
	aspect-ratio: 21 / 9;
	height: auto;
	border-radius: 18px;
}

.work-item .title {
	font: 600 18px Poppins, sans-serif;
	margin: 18px 0 8px;
}

.work-item .prose {
	font-size: 15px;
	line-height: 1.7;
	color: #333;
	margin: 0;
}

/* Footer */
.site-footer {
	text-align: center;
	font-size: 13px;
	padding: 26px;
	color: #fff;
	background: #0a3b61;
}

.site-footer a {
	color: #fff;
	text-decoration: underline;
}

@media (max-width: 860px) {
	.site-header {
		padding: 16px 24px;
	}

	.hero {
		flex-direction: column;
		padding: 40px 24px;
		text-align: center;
	}

	.hero-copy {
		text-align: center;
	}

	.hero-sub {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-showcase {
		width: 100%;
		height: 220px;
	}

	.card-row {
		flex-direction: column;
	}

	.what-grid {
		grid-template-columns: 1fr;
	}

	.cards {
		padding: 0 24px 60px;
	}

	.work-grid {
		grid-template-columns: 1fr;
		padding: 40px 24px;
	}
}

@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
}