/* ============================================================
   Storage Pages (Filing Cabinets + Storage Cabinets)
   Layout: Split-screen hero + alternating product sections
   ============================================================ */

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

/* ── Shared tokens ── */
:root {
	--sp-orange: #f4ad29;
	--sp-dark-orange: #bf6a08;
	--sp-ink: #111;
	--sp-soft: #f4f2ee;
	--sp-white: #ffffff;
}

/* ══════════════════════════════════════════════════════════
   SPLIT HERO
══════════════════════════════════════════════════════════ */
.sp-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 100vh;
}

.sp-hero__text {
	background: var(--sp-ink);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 120px 7% 80px 6%;
	position: relative;
	z-index: 1;
}

/* diagonal clip on the right edge of the text panel */
.sp-hero__text::after {
	content: '';
	position: absolute;
	right: -60px;
	top: 0;
	bottom: 0;
	width: 120px;
	background: var(--sp-ink);
	clip-path: polygon(0 0, 0 100%, 100% 100%);
	z-index: 2;
}

.sp-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 11px;
	font-weight: 700;
	color: var(--sp-orange);
	margin-bottom: 24px;
	opacity: 0;
	animation: spFadeUp 0.6s ease 0.3s forwards;
}

.sp-hero__eyebrow::before {
	content: '';
	display: block;
	width: 28px;
	height: 2px;
	background: var(--sp-orange);
	flex-shrink: 0;
}

.sp-hero__heading {
	font-size: clamp(2.8rem, 4.5vw, 5rem);
	font-weight: 900;
	color: var(--sp-white);
	line-height: 1.0;
	letter-spacing: -0.03em;
	margin: 0 0 28px;
	opacity: 0;
	animation: spFadeUp 0.6s ease 0.5s forwards;
}

.sp-hero__heading em {
	font-style: normal;
	color: var(--sp-orange);
}

.sp-hero__sub {
	font-size: 1rem;
	color: rgba(255,255,255,0.62);
	line-height: 1.75;
	max-width: 380px;
	margin-bottom: 40px;
	opacity: 0;
	animation: spFadeUp 0.6s ease 0.7s forwards;
}

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

.sp-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: 4px;
	font-weight: 700;
	font-size: 0.88rem;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	transition: all 0.25s ease;
}

.sp-btn--primary {
	background: var(--sp-orange);
	color: #1a0e00;
}
.sp-btn--primary:hover {
	background: #ffbe45;
	color: #1a0e00;
	text-decoration: none;
	transform: translateY(-2px);
}

.sp-btn--ghost {
	background: transparent;
	color: rgba(255,255,255,0.75);
	border: 1px solid rgba(255,255,255,0.25);
}
.sp-btn--ghost:hover {
	border-color: rgba(255,255,255,0.7);
	color: #fff;
	text-decoration: none;
	background: rgba(255,255,255,0.06);
}

.sp-btn--dark {
	background: var(--sp-ink);
	color: var(--sp-white);
}
.sp-btn--dark:hover {
	background: #2a2a2a;
	color: var(--sp-white);
	text-decoration: none;
	transform: translateY(-2px);
}

.sp-hero__image {
	position: relative;
	overflow: hidden;
}

.sp-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transform: scale(1.04);
	transition: transform 7s ease;
}
.sp-hero__image.is-loaded img { transform: scale(1); }

/* ══════════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════════ */
.sp-trust {
	background: var(--sp-orange);
	padding: 0;
	overflow: hidden;
}

.sp-trust__inner {
	display: flex;
	align-items: stretch;
}

.sp-trust__item {
	flex: 1 1 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 18px 20px;
	border-right: 1px solid rgba(0,0,0,0.12);
	text-align: center;
	transition: background 0.2s ease;
}
.sp-trust__item:last-child { border-right: 0; }
.sp-trust__item:hover { background: rgba(0,0,0,0.06); }

.sp-trust__icon {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}
.sp-trust__icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: #1a0e00;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sp-trust__label {
	font-size: 0.8rem;
	font-weight: 800;
	color: #1a0e00;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	line-height: 1.3;
}

/* ══════════════════════════════════════════════════════════
   ALTERNATING SPLIT SECTIONS
══════════════════════════════════════════════════════════ */
.sp-split {
	display: grid;
	grid-template-columns: 55fr 45fr;
	min-height: 520px;
}

.sp-split--reversed {
	grid-template-columns: 45fr 55fr;
}

.sp-split--reversed .sp-split__image { order: -1; }

.sp-split__image {
	position: relative;
	overflow: hidden;
}
.sp-split__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}
.sp-split:hover .sp-split__image img { transform: scale(1.04); }

/* Product-shot variant: neutral bg, contain so the full product is visible */
.sp-split__image--product {
	background: #f0eeea;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sp-split__image--product img {
	object-fit: contain;
	padding: 8%;
	transform: none;
}
.sp-split:hover .sp-split__image--product img {
	transform: scale(1.04);
}

.sp-split__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 60px 7%;
}

.sp-split--alt .sp-split__body { background: var(--sp-soft); }
.sp-split--dark .sp-split__body { background: #1a1a1a; color: #fff; }

.sp-split__tag {
	display: inline-block;
	text-transform: uppercase;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.18em;
	color: var(--sp-dark-orange);
	margin-bottom: 14px;
}
.sp-split--dark .sp-split__tag { color: var(--sp-orange); }

.sp-split__title {
	font-size: clamp(1.8rem, 2.8vw, 2.8rem);
	font-weight: 800;
	color: var(--sp-ink);
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0 0 18px;
}
.sp-split--dark .sp-split__title { color: #fff; }

.sp-split__desc {
	font-size: 0.97rem;
	color: #555;
	line-height: 1.75;
	margin-bottom: 28px;
}
.sp-split--dark .sp-split__desc { color: rgba(255,255,255,0.6); }

.sp-split__note {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff3d6;
	border-left: 3px solid var(--sp-orange);
	padding: 10px 14px;
	border-radius: 0 6px 6px 0;
	font-size: 0.85rem;
	font-weight: 600;
	color: #7a4800;
	margin-bottom: 28px;
}

/* ══════════════════════════════════════════════════════════
   PRODUCT BENTO GRID
══════════════════════════════════════════════════════════ */
.sp-bento {
	padding: 70px 5%;
	background: var(--sp-white);
}

.sp-bento__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 32px;
	gap: 20px;
	flex-wrap: wrap;
}

.sp-bento__title {
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	font-weight: 800;
	color: var(--sp-ink);
	letter-spacing: -0.02em;
	margin: 0;
}

.sp-bento__subtitle {
	font-size: 0.88rem;
	color: #888;
	margin: 6px 0 0;
}

.sp-bento__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.sp-tile {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	background: #f5f5f5;
	aspect-ratio: 1;
	cursor: pointer;
}

.sp-tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.sp-tile:hover img { transform: scale(1.07); }

.sp-tile__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 16px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.sp-tile:hover .sp-tile__overlay { opacity: 1; }

.sp-tile__label {
	font-size: 0.82rem;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════════════════════
   SECTION DIVIDER (category label band)
══════════════════════════════════════════════════════════ */
.sp-divider {
	background: var(--sp-ink);
	padding: 28px 6%;
	display: flex;
	align-items: center;
	gap: 20px;
}

.sp-divider__line {
	flex: 1;
	height: 1px;
	background: rgba(255,255,255,0.12);
}

.sp-divider__label {
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: var(--sp-orange);
	white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════
   CATALOG STRIP
══════════════════════════════════════════════════════════ */
.sp-catalog {
	background: var(--sp-soft);
	padding: 60px 6%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}

.sp-catalog__text h3 {
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--sp-ink);
	margin: 0 0 6px;
}

.sp-catalog__text p {
	font-size: 0.9rem;
	color: #666;
	margin: 0;
}

.sp-catalog__links {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════════════ */
.sp-cta {
	background: var(--sp-ink);
	padding: 90px 6%;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 40px;
}

.sp-cta__heading {
	font-size: clamp(1.8rem, 3vw, 2.8rem);
	font-weight: 900;
	color: #fff;
	letter-spacing: -0.025em;
	margin: 0 0 10px;
	line-height: 1.1;
}

.sp-cta__heading em {
	font-style: normal;
	color: var(--sp-orange);
}

.sp-cta__sub {
	font-size: 0.95rem;
	color: rgba(255,255,255,0.55);
	margin: 0;
}

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════════ */
.sp-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}
.sp-reveal.is-visible { opacity: 1; transform: none; }
.sp-reveal--delay-1 { transition-delay: 0.1s; }
.sp-reveal--delay-2 { transition-delay: 0.2s; }
.sp-reveal--delay-3 { transition-delay: 0.3s; }

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

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
	.sp-hero { grid-template-columns: 1fr; min-height: auto; }
	.sp-hero__text { padding: 110px 6% 50px; }
	.sp-hero__text::after { display: none; }
	.sp-hero__image { height: 50vw; min-height: 260px; }

	.sp-split,
	.sp-split--reversed { grid-template-columns: 1fr; min-height: auto; }
	.sp-split--reversed .sp-split__image { order: 0; }
	.sp-split__image { height: 130vw; min-height: 560px; }

	.sp-trust__inner { flex-wrap: wrap; }
	.sp-trust__item { flex-basis: 50%; border-bottom: 1px solid rgba(0,0,0,0.1); }
	.sp-trust__item:nth-child(2n) { border-right: 0; }

	.sp-bento__grid { grid-template-columns: repeat(2, 1fr); }

	.sp-cta { grid-template-columns: 1fr; }
	.sp-cta__actions { flex-direction: row; }

	.sp-catalog { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
	.sp-bento__grid { grid-template-columns: 1fr 1fr; }
	.sp-trust__item { flex-basis: 100%; border-right: 0; }
}
