/* ============================================================
   Workspace Pages — Cubicles + Open Workstations
   Layout: Cinematic hero → brand showcase panels → filmstrip
   ============================================================ */

.page-id-419 .site-main,
.page-id-1336 .site-main { margin: 0; padding: 0; }
.page-id-419 .entry-header,
.page-id-1336 .entry-header { display: none; }

/* ══════════════════════════════════════════════════════════
   CINEMATIC HERO
══════════════════════════════════════════════════════════ */
.ws-hero {
	position: relative;
	height: 92vh;
	min-height: 540px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	padding: 0 6% 8%;
}

.ws-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.05);
	transition: transform 8s ease;
}
.ws-hero.is-loaded .ws-hero__bg { transform: scale(1); }

.ws-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0,0,0,0.88) 0%,
		rgba(0,0,0,0.45) 40%,
		rgba(0,0,0,0.15) 100%
	);
}

.ws-hero__content {
	position: relative;
	z-index: 2;
	max-width: 760px;
}

.ws-hero__brands {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 22px;
	opacity: 0;
	animation: wsFadeUp 0.6s ease 0.3s forwards;
}

.ws-hero__brand-pill {
	background: rgba(244,173,41,0.15);
	border: 1px solid rgba(244,173,41,0.4);
	color: #f4ad29;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	padding: 5px 14px;
	border-radius: 20px;
}

.ws-hero__heading {
	font-size: clamp(3rem, 6vw, 5.5rem);
	font-weight: 900;
	color: #fff;
	line-height: 1.0;
	letter-spacing: -0.03em;
	margin: 0 0 20px;
	opacity: 0;
	animation: wsFadeUp 0.6s ease 0.5s forwards;
}

.ws-hero__heading em {
	font-style: normal;
	color: #f4ad29;
}

.ws-hero__sub {
	font-size: 1.05rem;
	color: rgba(255,255,255,0.72);
	line-height: 1.7;
	max-width: 520px;
	margin-bottom: 36px;
	opacity: 0;
	animation: wsFadeUp 0.6s ease 0.7s forwards;
}

.ws-hero__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	opacity: 0;
	animation: wsFadeUp 0.6s ease 0.9s forwards;
}

/* ══════════════════════════════════════════════════════════
   SHARED BUTTONS
══════════════════════════════════════════════════════════ */
.ws-btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 13px 26px;
	font-weight: 700;
	font-size: 0.88rem;
	text-decoration: none;
	letter-spacing: 0.04em;
	border-radius: 4px;
	transition: all 0.25s ease;
}
.ws-btn--primary {
	background: #f4ad29;
	color: #1a0e00;
}
.ws-btn--primary:hover {
	background: #ffbe45;
	color: #1a0e00;
	text-decoration: none;
	transform: translateY(-2px);
}
.ws-btn--outline {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255,255,255,0.35);
}
.ws-btn--outline:hover {
	border-color: rgba(255,255,255,0.7);
	background: rgba(255,255,255,0.07);
	color: #fff;
	text-decoration: none;
}
.ws-btn--dark {
	background: #111;
	color: #fff;
}
.ws-btn--dark:hover {
	background: #252525;
	color: #fff;
	text-decoration: none;
	transform: translateY(-2px);
}
.ws-btn--light {
	background: #fff;
	color: #111;
}
.ws-btn--light:hover {
	background: #f0eeea;
	color: #111;
	text-decoration: none;
	transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   SPACE PLANNING BANNER
══════════════════════════════════════════════════════════ */
.ws-planning {
	background: #f4ad29;
	padding: 22px 6%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.ws-planning__text {
	font-size: 1.05rem;
	font-weight: 800;
	color: #1a0e00;
	letter-spacing: -0.01em;
}

.ws-planning__sub {
	font-size: 0.85rem;
	font-weight: 500;
	color: rgba(26,14,0,0.65);
	margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════
   BRAND SECTION WRAPPER
══════════════════════════════════════════════════════════ */
.ws-brand {
	display: flex;
	flex-direction: column;
}

/* ── Top panel: text + image split ── */
.ws-brand__panel {
	display: grid;
	grid-template-columns: 44fr 56fr;
	min-height: 560px;
}

.ws-brand__panel--reversed {
	grid-template-columns: 56fr 44fr;
}
.ws-brand__panel--reversed .ws-brand__image { order: -1; }

/* ── Text side ── */
.ws-brand__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 70px 7%;
}

.ws-brand__body--dark {
	background: #111;
}
.ws-brand__body--light {
	background: #f7f5f2;
}

.ws-brand__logo-area {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 28px;
}

.ws-brand__logo-area img {
	max-height: 32px;
	width: auto;
	filter: brightness(0) invert(1);
	opacity: 0.9;
}
.ws-brand__body--light .ws-brand__logo-area img {
	filter: none;
	opacity: 1;
}

.ws-brand__name {
	font-size: 1.1rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.ws-brand__body--dark .ws-brand__name { color: #fff; }
.ws-brand__body--light .ws-brand__name { color: #111; }

.ws-brand__tagline {
	font-size: clamp(1.7rem, 2.8vw, 2.6rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0 0 20px;
}
.ws-brand__body--dark .ws-brand__tagline { color: #fff; }
.ws-brand__body--light .ws-brand__tagline { color: #111; }

.ws-brand__tagline em {
	font-style: normal;
	color: #f4ad29;
}

.ws-brand__desc {
	font-size: 0.95rem;
	line-height: 1.75;
	margin-bottom: 32px;
}
.ws-brand__body--dark .ws-brand__desc { color: rgba(255,255,255,0.62); }
.ws-brand__body--light .ws-brand__desc { color: #555; }

.ws-brand__actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

/* ── Image side ── */
.ws-brand__image {
	position: relative;
	overflow: hidden;
}

.ws-brand__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.7s ease;
}

.ws-brand:hover .ws-brand__image img { transform: scale(1.04); }

/* ── Filmstrip ── */
.ws-filmstrip {
	background: #1a1a1a;
	padding: 20px 0;
	overflow: hidden;
	position: relative;
}

.ws-filmstrip::before,
.ws-filmstrip::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 80px;
	z-index: 2;
	pointer-events: none;
}
.ws-filmstrip::before {
	left: 0;
	background: linear-gradient(to right, #1a1a1a, transparent);
}
.ws-filmstrip::after {
	right: 0;
	background: linear-gradient(to left, #1a1a1a, transparent);
}

.ws-filmstrip__track {
	display: flex;
	gap: 12px;
	padding: 0 60px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	cursor: grab;
}
.ws-filmstrip__track:active { cursor: grabbing; }
.ws-filmstrip__track::-webkit-scrollbar { display: none; }

.ws-filmstrip__item {
	flex: 0 0 auto;
	width: 280px;
	height: 175px;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}

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

.ws-filmstrip__item:hover img { transform: scale(1.07); }

/* ── Brand label between sections ── */
.ws-section-label {
	background: #111;
	padding: 0 6%;
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 52px;
}

.ws-section-label__number {
	font-size: 0.7rem;
	font-weight: 800;
	color: #f4ad29;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	white-space: nowrap;
}

.ws-section-label__line {
	flex: 1;
	height: 1px;
	background: rgba(255,255,255,0.1);
}

.ws-section-label__title {
	font-size: 0.7rem;
	font-weight: 800;
	color: rgba(255,255,255,0.35);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════════════ */
.ws-cta {
	background: #111;
	padding: 100px 6%;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.ws-cta::before {
	content: '';
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: rgba(244,173,41,0.06);
	top: -160px;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
}

.ws-cta__heading {
	font-size: clamp(2rem, 4vw, 3.4rem);
	font-weight: 900;
	color: #fff;
	letter-spacing: -0.025em;
	line-height: 1.1;
	margin: 0 0 16px;
	position: relative;
}

.ws-cta__heading em {
	font-style: normal;
	color: #f4ad29;
}

.ws-cta__sub {
	font-size: 1rem;
	color: rgba(255,255,255,0.52);
	margin: 0 0 40px;
	position: relative;
}

.ws-cta__actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
}

/* ══════════════════════════════════════════════════════════
   REVEAL
══════════════════════════════════════════════════════════ */
.ws-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}
.ws-reveal.is-visible { opacity: 1; transform: none; }
.ws-reveal--delay-1 { transition-delay: 0.12s; }
.ws-reveal--delay-2 { transition-delay: 0.24s; }

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════ */
@keyframes wsFadeUp {
	from { opacity: 0; transform: translateY(20px); }
	to   { opacity: 1; transform: none; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
	.ws-hero { height: auto; padding: 120px 6% 60px; }

	.ws-brand__panel,
	.ws-brand__panel--reversed { grid-template-columns: 1fr; min-height: auto; }
	.ws-brand__panel--reversed .ws-brand__image { order: 0; }
	.ws-brand__image { height: 55vw; min-height: 280px; }
	.ws-brand__body { padding: 50px 6%; }

	.ws-planning { flex-direction: column; gap: 12px; }
}

@media (max-width: 600px) {
	.ws-hero__heading { font-size: 2.6rem; }
	.ws-filmstrip__item { width: 220px; height: 140px; }
}
