/*
Theme Name: SignJive
Author: SignJive
Description: Standalone SignJive brand theme (Mobki brand system v1)
Version: 1.0.0
Text Domain: signjive
*/

/* ---------- Fonts ---------- */

@font-face {
	font-family: 'Baloo 2';
	font-style: normal;
	font-weight: 500 700;
	font-display: swap;
	src: url('fonts/baloo2-variable.woff2') format('woff2-variations'), url('fonts/baloo2-variable.woff2') format('woff2');
}

@font-face {
	font-family: 'Nunito Sans';
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url('fonts/nunito-sans-variable.woff2') format('woff2-variations'), url('fonts/nunito-sans-variable.woff2') format('woff2');
}

@font-face {
	font-family: 'Nunito Sans';
	font-style: italic;
	font-weight: 400 700;
	font-display: swap;
	src: url('fonts/nunito-sans-italic-variable.woff2') format('woff2-variations'), url('fonts/nunito-sans-italic-variable.woff2') format('woff2');
}

@font-face {
	font-family: 'Barlow';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('fonts/barlow-600.woff2') format('woff2');
}

/* ---------- Base reset ---------- */

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: #fff;
}

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

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

a {
	color: #E88019;
}

p {
	margin: 0 0 1em;
	line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.25;
	margin: 0 0 20px;
	font-weight: 700;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

@media (max-width: 600px) {
	h1 { font-size: 2rem; }
	h2 { font-size: 1.6rem; }
	h3 { font-size: 1.3rem; }
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

/* ---------- Header (matches original: fixed white bar, logo left, nav + orange CTA right) ---------- */

.site-header {
	background: #fff;
	position: sticky;
	top: 0;
	z-index: 50;
	height: 125px;
}

.site-header-inner {
	max-width: 1046px;
	margin: 0 auto;
	padding: 8px 0 0;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.site-logo img,
.site-logo .custom-logo {
	width: 176px;
	max-width: 176px;
	height: auto;
	display: block;
}

.site-logo a {
	display: block;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.menu-toggle-bar {
	display: block;
	width: 26px;
	height: 2px;
	background: #333;
}

.main-navigation {
	padding-top: 10px;
}

.main-navigation ul {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 0;
}

.main-navigation a {
	display: block;
	padding: 6px 14px;
	color: #333;
	text-decoration: none;
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 1.3;
	white-space: nowrap;
}

.main-navigation li:hover > a,
.main-navigation li.current-menu-item > a,
.main-navigation li.current_page_item > a {
	color: #E88019;
}

/* Nav CTA button — stays highlighted regardless of hover/current state */
.main-navigation li.nav-cta {
	margin-left: 14px;
}

.main-navigation li.nav-cta > a {
	background-color: #E88019;
	border-radius: 5px;
	padding: 0 8px;
	width: 176px;
	height: 39px;
	line-height: 39px;
	text-align: center;
	font-weight: 700;
	letter-spacing: 0;
}

.main-navigation li.nav-cta > a,
.main-navigation li.nav-cta > a:hover,
.main-navigation li.nav-cta > a:focus,
.main-navigation li.nav-cta.current-menu-item > a {
	color: #000;
}

.main-navigation li.nav-cta:hover > a {
	background-color: #cf700e;
}

@media (max-width: 900px) {
	.site-header {
		height: auto;
	}

	.site-header-inner {
		flex-wrap: wrap;
		align-items: center;
		padding: 12px 20px;
	}

	.menu-toggle {
		display: flex;
	}

	.main-navigation {
		width: 100%;
		padding-top: 0;
	}

	.main-navigation ul {
		display: none;
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.main-navigation.is-open ul {
		display: flex;
		padding-bottom: 12px;
	}

	.main-navigation a {
		padding: 10px 4px;
	}

	.main-navigation li.nav-cta {
		margin: 8px 0 0;
	}

	.main-navigation li.nav-cta > a {
		width: 100%;
	}
}

/* ---------- Page content ---------- */

.site-main {
	display: block;
}

.entry-title {
	font-size: 2.2rem;
	margin: 40px 40px 1.5rem;
	max-width: 1120px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 40px;
	padding-right: 40px;
	box-sizing: border-box;
}

/* Constrain plain content to the same 1200px container as the header;
   alignwide/alignfull blocks (theme.json contentSize/wideSize) escape it. */
.entry-content > *:not(.alignwide):not(.alignfull) {
	max-width: 1120px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 40px;
	padding-right: 40px;
	box-sizing: border-box;
}

/* Boxed direct children (cards, forms) show a visible background —
   inset them so that background edge lines up with sibling text,
   instead of the padding trick above making the box look wider. */
.entry-content > .sj-founder-card:not(.alignwide):not(.alignfull) {
	max-width: 1040px;
	padding: 24px;
}

.entry-content > form:not(.alignwide):not(.alignfull),
.entry-content > div[class*="fluentform"]:not(.alignwide):not(.alignfull) {
	max-width: 1040px;
	padding: 32px;
}

.entry-content > .alignwide {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.entry-content {
	padding-bottom: 40px;
}

.home .inside-article {
	padding-top: 0;
}

.home .entry-content {
	margin-top: 0;
	padding-bottom: 0;
}

/* ---------- Footer (matches original: dark bar, centered italic contact line) ---------- */

.site-footer {
	background: #423c38;
	color: #fff;
}

.site-footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 34px 20px 30px;
	text-align: center;
}

.site-footer-contact {
	margin: 0;
	font-size: 16px;
	font-style: italic;
	color: #fff;
}

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

.site-footer-contact a:hover {
	text-decoration: underline;
}

.site-footer-credit {
	margin: 10px 0 0;
	font-size: 12px;
	color: #b9b2ac;
}

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

.site-footer-credit a:hover {
	text-decoration: none;
}

/* ---------- Testimonial cards ---------- */

.sj-testimonial-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.sj-testimonial-header {
	background: linear-gradient(135deg, #1f5c8a 0%, #2f7fb8 100%);
	padding: 28px 20px 20px;
	text-align: center;
	position: relative;
}

.sj-testimonial-avatar {
	width: 84px;
	height: 84px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.sj-testimonial-body {
	padding: 18px 22px 26px;
	text-align: center;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.sj-testimonial-name {
	font-weight: 700;
	margin: 0 0 2px;
}

.sj-testimonial-role,
.sj-testimonial-location {
	font-size: 0.9em;
	color: #6e6459;
	margin: 0;
}

.sj-testimonial-logo {
	max-width: 130px;
	max-height: 48px;
	width: auto;
	margin: 14px auto;
	display: block;
}

.sj-testimonial-quote {
	font-style: italic;
	font-size: 0.95em;
	line-height: 1.5;
	color: #423c38;
	text-align: left;
}

/* ---------- Section vertical rhythm ---------- */

.wp-block-group.has-background {
	padding-top: 64px;
	padding-bottom: 64px;
}

.wp-block-group.alignfull.has-sky-tint-background-color {
	padding-top: 40px;
	padding-bottom: 40px;
}

.wp-block-group.alignfull.has-jive-orange-background-color {
	padding-top: 48px;
	padding-bottom: 48px;
}

/* ---------- Buttons ---------- */

.wp-block-button__link.has-jive-orange-background-color {
	color: #1a1a1a;
	font-weight: 700;
	border-radius: 6px;
	padding: 12px 26px;
}

.wp-block-button__link.has-ink-background-color {
	font-weight: 700;
	border-radius: 6px;
	padding: 10px 22px;
}

/* ---------- Card grids — Featured Projects & Our Services ---------- */

.sj-card-grid .wp-block-columns {
	column-gap: 2rem;
	row-gap: 2rem;
}

.sj-card-grid .wp-block-column {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	padding-bottom: 22px;
}

.sj-card-grid .wp-block-column > .wp-block-image.size-large {
	margin: 0 0 16px;
}

.sj-card-grid .wp-block-column > .wp-block-image.aligncenter {
	margin: 24px auto 12px;
}

.sj-card-grid .wp-block-column > h3,
.sj-card-grid .wp-block-column > h4,
.sj-card-grid .wp-block-column > p {
	padding-left: 20px;
	padding-right: 20px;
}

.sj-card-grid .wp-block-column > h3:first-child,
.sj-card-grid .wp-block-column > h4:first-child {
	padding-top: 24px;
}

/* ---------- Card grid — From Start to Finish (text-only cards) ---------- */

.sj-card-grid-flat .wp-block-columns {
	column-gap: 2rem;
	row-gap: 2rem;
}

.sj-card-grid-flat .wp-block-column {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	padding: 28px 20px;
}

/* ---------- Our Customers logo grid frame ---------- */

.sj-logos-section .wp-block-image {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	padding: 16px;
	background: #fff;
	border: 1px solid #e6e4dc;
	border-radius: 14px;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.sj-logos-section .wp-block-image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
}

/* ---------- Founder card (About) ---------- */

.sj-founder-card {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	padding: 24px;
}

/* ---------- FAQ accordion ---------- */

.sj-faq-item {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	margin-bottom: 16px;
	overflow: hidden;
}

.sj-faq-item:last-child {
	margin-bottom: 0;
}

.sj-faq-item summary {
	list-style: none;
	cursor: pointer;
	position: relative;
	padding: 22px 56px 22px 28px;
	transition: background-color 0.15s ease;
}

.sj-faq-item summary::-webkit-details-marker {
	display: none;
}

.sj-faq-item summary:hover {
	background-color: #faf9f6;
}

.sj-faq-item summary:focus-visible {
	outline: 2px solid #E88019;
	outline-offset: -2px;
}

.sj-faq-question h2 {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.4;
}

.sj-faq-item summary::after {
	content: "+";
	position: absolute;
	right: 26px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.6rem;
	line-height: 1;
	color: #E88019;
	font-weight: 400;
}

.sj-faq-item[open] summary::after {
	content: "\2212";
}

.sj-faq-item .sj-faq-answer {
	padding: 0 28px 24px;
}

.sj-faq-item .sj-faq-answer p {
	margin: 0;
	color: #423c38;
	line-height: 1.6;
}

/* ---------- Case study cards ---------- */

.sj-case-study-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	margin-bottom: 32px;
}

.sj-case-study-card:last-child {
	margin-bottom: 0;
}

.sj-case-study-card .wp-block-image {
	margin: 0 0 20px;
}

.sj-case-study-card > h2,
.sj-case-study-card > p {
	padding-left: 28px;
	padding-right: 28px;
}

.sj-case-study-card > h2:first-child {
	padding-top: 24px;
}

.sj-case-study-card > p:last-child {
	padding-bottom: 28px;
}

/* ---------- Gallery ---------- */

.wp-block-gallery .wp-block-image img {
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* ---------- Get a Quote form ---------- */

.entry-content > form,
.entry-content > div[class*="fluentform"] {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	padding: 32px;
}

.ff-btn-submit {
	background-color: #E88019 !important;
	border-color: #E88019 !important;
	color: #1a1a1a !important;
	font-weight: 700 !important;
	border-radius: 6px !important;
}

/* ---------- Hero stats grid ---------- */

.sj-stats-grid .wp-block-columns {
	margin-bottom: 12px;
}

.sj-stats-grid .wp-block-column p.has-large-font-size {
	margin-bottom: 2px;
}

.sj-hero-phone {
	margin-top: 8px;
}

.sj-hero-phone a {
	color: inherit;
	text-decoration: none;
}

.sj-hero-phone a:hover {
	text-decoration: underline;
}

/* ---------- Lead-magnet trigger + modal ---------- */

.sj-lead-trigger {
	display: inline-block;
	background: #fff;
	color: #33302B;
	border: 2px solid #E88019;
	border-radius: 8px;
	padding: 16px 24px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.sj-lead-trigger:hover {
	background: #fff8f1;
}

.sj-lead-trigger .sj-lead-trigger-sub {
	display: block;
	font-weight: 400;
	font-size: 0.85em;
	color: #6e6459;
	margin-top: 4px;
}

.sj-lead-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.sj-lead-modal:not([hidden]) {
	display: flex;
}

.sj-lead-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(26, 26, 26, 0.6);
}

.sj-lead-modal-panel {
	position: relative;
	background: #fff;
	border-radius: 12px;
	max-width: 480px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	padding: 32px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.sj-lead-modal-panel h2 {
	font-size: 1.4rem;
	margin-bottom: 10px;
	padding-right: 24px;
}

.sj-lead-modal-panel > p {
	color: #6e6459;
	margin-bottom: 20px;
}

.sj-lead-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: none;
	font-size: 1.8rem;
	line-height: 1;
	color: #6e6459;
	cursor: pointer;
	padding: 4px;
}

.sj-lead-modal-close:hover {
	color: #33302B;
}

/* =====================================================================
   Home page — mirrors the original signjive.com section order & design
   ===================================================================== */

.home .entry-content > .sj-sec {
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}

.sj-sec {
	width: 100%;
	color: #423c38;
}

.sj-sec h2 {
	font-size: 40px;
	font-weight: 700;
	line-height: normal;
	text-align: center;
	color: #423c38;
	margin: 0;
}

.sj-sec p {
	line-height: normal;
}

.sj-wrap {
	max-width: 1216px;
	margin: 0 auto;
	padding: 0 20px;
}

.sj-wrap--wide { max-width: 1240px; }
.sj-wrap--services { max-width: 850px; }

.sj-lede {
	max-width: 960px;
	margin: 0 auto 27px;
	font-size: 19px;
	line-height: 1.4 !important;
	text-align: center;
}

.sj-customers .sj-wrap .sj-lede { max-width: 1240px; }

/* --- Buttons --- */

.sj-btn {
	display: inline-block;
	font: 700 16px/1 Arial, Helvetica, sans-serif;
	text-align: center;
	text-decoration: none;
	border-radius: 5px;
	white-space: nowrap;
}

.sj-btn--orange {
	background: #E88019;
	color: #000;
	width: 176px;
	height: 39px;
	line-height: 39px;
}

.sj-btn--orange:hover { background: #cf700e; }

.sj-btn--grey {
	background: #595959;
	color: #fff;
	height: 32px;
	line-height: 32px;
	padding: 0 12px;
}

.sj-btn--grey:hover { background: #3f3f3f; }

.sj-btn--teal {
	background: #237787;
	color: #fff;
	height: 30px;
	line-height: 30px;
	padding: 0 12px;
}

.sj-btn--teal:hover { background: #1f6c7b; }

.sj-cta {
	margin: 38px 0 0;
	text-align: center;
}

/* --- Hero --- */

.sj-hero {
	background: #acd2d8;
	padding: 52px 20px 165px;
}

.sj-hero__inner {
	max-width: 1301px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 565px) minmax(0, 661px);
	column-gap: 75px;
	justify-content: center;
	align-items: start;
}

.sj-hero h1 {
	font-family: 'Barlow', Arial, Helvetica, sans-serif;
	font-weight: 600;
	font-size: 50px;
	line-height: 65px;
	color: #474444;
	margin: 0 0 34px;
}

.sj-hero__lead {
	font-size: 19px;
	line-height: 1.5 !important;
	color: #474444;
	margin: 0 0 40px;
}

.sj-hero__stats {
	display: grid;
	grid-template-columns: 265px 265px;
	margin-left: 3px;
}

.sj-hero__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #474444;
}

.sj-hero__num {
	font-family: 'Arial Black', Arial, Helvetica, sans-serif;
	font-weight: 400;
	font-size: 35px;
	line-height: 52px;
	color: #474444;
	text-decoration: none;
}

.sj-hero__num--phone { font-size: 30px; line-height: 45px; margin-top: 3px; }

.sj-hero__label { font-size: 18px; line-height: 27px; }
.sj-hero__call { font-size: 30px; line-height: 45px; }

.sj-hero__img img {
	display: block;
	width: 661px;
	max-width: 100%;
	height: auto;
	border-radius: 0;
}

/* --- Numbers strip (added content: confirmed stats) --- */

.sj-numbers {
	background: #fff;
	padding: 30px 20px;
}

.sj-numbers__inner {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	gap: 90px;
	text-align: center;
	color: #474444;
}

.sj-numbers__num {
	display: block;
	font-family: 'Arial Black', Arial, Helvetica, sans-serif;
	font-size: 35px;
	line-height: 52px;
}

.sj-numbers__label { display: block; font-size: 18px; line-height: 27px; }

/* --- Featured Projects --- */

.sj-featured {
	background: #f4f3f0;
	padding: 40px 0 39px;
}

.sj-featured h2,
.sj-process h2,
.sj-customers h2,
.sj-testimonials h2 { margin-bottom: 33px; }

.sj-grid { display: grid; justify-content: center; }
.sj-grid--3 { grid-template-columns: repeat(3, minmax(0, 387px)); gap: 28px; }

.sj-card {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 549px;
}

.sj-card img {
	display: block;
	width: 100%;
	height: 334px;
	object-fit: cover;
}

.sj-card__body { padding: 24px 30px 30px; }

.sj-card h3 {
	font-size: 20px;
	line-height: 28px;
	font-weight: 700;
	color: #423c38;
	margin: 0 0 20px;
}

.sj-card p { font-size: 16px; line-height: 24px !important; margin: 0; }

/* --- From Start to Finish --- */

.sj-process {
	background: #f2e8c7;
	padding: 40px 0 33px;
}

.sj-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 250px));
	gap: 10px;
	justify-content: center;
	margin-top: 37px;
}

.sj-step {
	background: #fafafa;
	border-radius: 10px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
	padding: 24px 18px 21px;
	text-align: center;
}

.sj-step img {
	display: block;
	width: 100%;
	height: 159px;
	object-fit: cover;
	border-radius: 14px;
}

.sj-step h3 {
	font-size: 20px;
	line-height: 28px;
	font-weight: 700;
	color: #333;
	margin: 12px 0 4px;
}

.sj-step p { font-size: 16px; line-height: 22.4px !important; color: #000; margin: 0; }

/* --- Our Customers --- */

.sj-customers {
	background: #fafafa;
	padding: 40px 0 53px;
}

.sj-customers .sj-wrap { max-width: 1287px; }

.sj-logos {
	display: block;
	width: 100%;
	max-width: 1247px;
	height: auto;
	margin: 62px auto 0;
}

/* --- Testimonials --- */

.sj-testimonials {
	background: #f4f3f0;
	padding: 40px 0 30px;
}

.sj-grid--4 { grid-template-columns: repeat(4, minmax(0, 292px)); gap: 10px; }

.sj-quote {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
	padding: 46px 20px 34px;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

.sj-quote::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 145px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 292 145' preserveAspectRatio='none'%3E%3Crect width='292' height='145' fill='%23003d75'/%3E%3Cpath d='M262 0C232 30 236 90 250 145H292V0Z' fill='%234a86c0'/%3E%3Crect x='272' width='20' height='145' fill='%23336ea6'/%3E%3Cpath d='M0 143C70 90 220 90 292 143V146H0Z' fill='%23fff'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
	pointer-events: none;
}

.sj-quote > * { position: relative; }

.sj-quote__avatar {
	display: block;
	width: 153px;
	height: 153px;
	border-radius: 50%;
	border: 5px solid #fff;
	box-sizing: content-box;
	object-fit: cover;
	margin: 0 auto 18px;
}

.sj-quote__name { font-size: 20px; font-weight: 700; color: #423c38; margin: 0 0 4px; }
.sj-quote__role { font-size: 14px; line-height: 21px !important; margin: 0; }
.sj-quote__loc { font-size: 14px; line-height: 21px !important; color: #888; margin: 0; }

.sj-quote__logo {
	display: block;
	width: 228px;
	max-width: 100%;
	height: 73px;
	object-fit: contain;
	margin: 20px auto 22px;
}

.sj-quote__text {
	font-size: 16px;
	line-height: 22.4px !important;
	font-style: italic;
	text-align: center;
	margin: 0;
}

/* --- Services --- */

.sj-services {
	background: #acd2d8;
	padding: 40px 0 36px;
}

.sj-services h2 { margin-bottom: 10px; }

.sj-grid--2 { grid-template-columns: repeat(2, minmax(0, 402px)); gap: 15px; }

.sj-service {
	background: #fafafa;
	border-radius: 10px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
	padding: 22px 34px 24px;
	min-height: 396px;
	text-align: center;
}

.sj-service img {
	display: block;
	width: 100%;
	height: 155px;
	object-fit: cover;
	border-radius: 14px;
}

.sj-service h3 {
	font-size: 20px;
	line-height: 28px;
	color: #423c38;
	margin: 30px 0 16px;
}

.sj-service p { font-size: 16px; line-height: 24px !important; margin: 0; }

/* --- Case Studies teaser --- */

.sj-casestudies { background: #fafafa; }

.sj-casestudies__head { padding: 60px 20px 12px; text-align: center; }
.sj-casestudies__head p { margin: 30px 0 0; }

.sj-band { text-align: center; padding: 52px 20px 44px; }
.sj-band--grey { background: #d3d3d3; padding: 58px 20px 80px; }
.sj-band--light { background: #fafafa; }
.sj-band:nth-of-type(4) { padding-top: 62px; padding-bottom: 0; }

.sj-band img {
	display: block;
	width: 100%;
	max-width: 843px;
	height: auto;
	margin: 0 auto;
}

.sj-band--cta { padding: 26px 20px 21px !important; }
.sj-band--cta p { margin: 0; }

/* --- Gallery teaser --- */

.sj-gallery {
	background: #e8e6e6;
	padding: 47px 20px 103px;
	text-align: center;
}

.sj-gallery p { margin: 26px 0 29px; }
.sj-gallery p:last-child { margin: 36px 0 0; }

.sj-gallery__grid {
	max-width: 1296px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 6px;
}

.sj-gallery__grid a { display: block; }

.sj-gallery__grid img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

/* --- Contact (logo + phone left, quote form right) --- */

.sj-contact {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 740px;
}

.sj-contact__left {
	background: #fff;
	padding: 212px 20px 40px 198px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.sj-contact__left img { display: block; width: 224px; height: auto; }

.sj-contact__phone { margin: 18px 0 0 !important; }

.sj-contact__phone a {
	font-size: 30px;
	font-weight: 700;
	line-height: 45px;
	letter-spacing: 0.04em;
	color: #423c38;
	text-decoration: none;
}

.sj-contact__right { background: #7ccad7; padding: 47px 20px 30px 111px; }
.sj-contact__form { max-width: 498px; }

.sj-contact__title { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.sj-contact__title h2 { font-size: 32px; line-height: 48px; text-align: left; }

.sj-chevrons { width: 58px; height: 40px; fill: #E88019; flex: none; }

/* --- Quote form (Fluent Forms, styled like the original Wix form) --- */

.sj-contact__form .frm-fluent-form fieldset {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	column-gap: 24px;
}

.sj-contact__form .ff-el-group { grid-column: span 2; margin-bottom: 18px; }
.sj-contact__form .ff-el-group:nth-of-type(-n+2) { grid-column: span 1; }

.sj-contact__form .ff-el-input--label { margin-bottom: 0; }

/* Placeholders carry the labels for the short text fields, as in the original */
.sj-contact__form .ff-el-group:nth-of-type(-n+5) .ff-el-input--label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.sj-contact__form .ff-el-input--label label {
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	color: #423c38;
	margin-bottom: 4px;
}

.sj-contact__form .ff-el-input--label label::after,
.sj-contact__form .ff-el-input--label.ff-el-is-required.asterisk-right label::after { content: none !important; }

.sj-contact__form .ff-el-form-control {
	background: #fff;
	border: 2px solid #333;
	border-radius: 0;
	height: 37px;
	padding: 0 14px;
	font: italic 14px Arial, Helvetica, sans-serif;
	color: #423c38;
	box-shadow: none;
}

.sj-contact__form textarea.ff-el-form-control {
	height: 92px;
	padding: 8px 14px;
	font-style: normal;
}

.sj-contact__form .ff-el-form-control::placeholder { color: #423c38; opacity: 1; font-style: italic; }
.sj-contact__form .ff-el-form-control:focus { border-color: #000; outline: none; }

/* SMS consent — exact original text, bold lead-in, link and required asterisk */
.sj-contact__form .ff_tc_label {
	display: flex;
	align-items: center;
	gap: 11px;
	margin: 0;
}

.sj-contact__form .ff_tc_checkbox { flex: none; line-height: 0; }

.sj-contact__form .ff_tc_checkbox input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 18px;
	height: 18px;
	margin: 0;
	border: 2px solid #423c38;
	background: transparent;
	cursor: pointer;
	position: relative;
}

.sj-contact__form .ff_tc_checkbox input[type="checkbox"]:checked::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 0;
	width: 5px;
	height: 10px;
	border: solid #423c38;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.sj-contact__form .ff_t_c {
	font: italic 14px/21px Arial, Helvetica, sans-serif;
	color: #423c38;
}

.sj-contact__form .ff_t_c a { color: #423c38; text-decoration: underline; }

.sj-contact__form .ff_submit_btn_wrapper { text-align: right; margin: 0; }

.sj-contact__form .ff-btn-submit.ff_btn_style {
	background-color: #E88019 !important;
	border: 0 !important;
	border-radius: 26px !important;
	height: 52px;
	padding: 0 12px !important;
	min-width: 106px;
	font: 700 24px Arial, Helvetica, sans-serif !important;
	color: #423c38 !important;
}

.sj-contact__form .ff-message-success {
	background: transparent;
	border: 0;
	box-shadow: none;
	font-style: italic;
	text-align: center;
	color: #423c38;
}

.sj-contact__form .ff-el-is-error .ff-el-form-control { border-color: #b3261e; }
.sj-contact__form .error.text-danger { color: #8a1c14; font-size: 13px; }

/* --- Privacy Policy (kept plain, exactly like the original page) --- */

.entry-content > .sj-legal.sj-legal.sj-legal {
	max-width: 522px;
	margin: 0 auto;
	padding: 155px 20px 250px;
	font-size: 16px;
	line-height: 22.4px;
	color: #000;
}

.sj-legal h1,
.sj-legal h2,
.sj-legal p {
	font-size: 16px;
	font-weight: 400;
	line-height: 22.4px;
	margin: 0;
	color: inherit;
}

.sj-legal section { margin-bottom: 22.4px; }
.sj-legal a { color: inherit; text-decoration: underline; }

/* ---------- Responsive ---------- */

@media (max-width: 1240px) {
	.sj-hero h1 { font-size: 42px; line-height: 55px; }
	.sj-contact__left { padding-left: 20px; }
	.sj-contact__right { padding-left: 60px; }
}

@media (max-width: 1000px) {
	.sj-hero { padding: 36px 20px 48px; }
	.sj-hero__inner { grid-template-columns: 1fr; row-gap: 36px; }
	.sj-hero__stats { grid-template-columns: 1fr 1fr; margin: 0; }
	.sj-grid--3 { grid-template-columns: minmax(0, 420px); }
	.sj-card { min-height: 0; }
	.sj-steps { grid-template-columns: repeat(2, minmax(0, 250px)); }
	.sj-grid--4 { grid-template-columns: repeat(2, minmax(0, 292px)); }
	.sj-grid--2 { grid-template-columns: minmax(0, 402px); }
	.sj-service { min-height: 0; }
	.sj-gallery__grid { grid-template-columns: repeat(2, 1fr); }
	.sj-contact { grid-template-columns: 1fr; min-height: 0; }
	.sj-contact__left { padding: 48px 20px; }
	.sj-contact__right { padding: 40px 20px; }
	.sj-contact__form { margin: 0 auto; }
	.sj-numbers__inner { flex-direction: column; gap: 18px; }
}

@media (max-width: 600px) {
	.sj-sec h2 { font-size: 30px; }
	.sj-hero h1 { font-size: 34px; line-height: 44px; }
	.sj-hero__lead, .sj-lede { font-size: 17px; }
	.sj-steps, .sj-grid--4 { grid-template-columns: minmax(0, 320px); }
	.sj-contact__form .frm-fluent-form fieldset { grid-template-columns: 1fr; }
	.sj-contact__form .ff-el-group,
	.sj-contact__form .ff-el-group:nth-of-type(-n+2) { grid-column: span 1; }
	.sj-contact__title h2 { font-size: 26px; }
	.entry-content > .sj-legal.sj-legal.sj-legal { padding: 48px 20px 80px; }
}

/* Fluent renders the consent label as a table row; force a flex row so the box is vertically centred */
.sj-contact__form .ff_tc_label { display: flex !important; align-items: center; }
.sj-contact__form .ff_tc_checkbox,
.sj-contact__form .ff_t_c { display: block !important; }
.sj-contact__form .ff_t_c { flex: 1; }
.sj-contact__form textarea.ff-el-form-control { resize: none; }

/* =====================================================================
   Inner pages built from full-width sections (Gallery, Case Studies, Get a Quote)
   ===================================================================== */

.entry-content:has(> .sj-sec:last-child) { padding-bottom: 0; }

.sj-page-head { text-align: center; padding: 38px 20px 12px; }
.sj-page-head--gallery { background: #fff; }
.sj-page-head--cs { background: #fafafa; padding-top: 40px; padding-bottom: 20px; }

.sj-page-head h1 {
	font-size: 56px;
	line-height: 67px;
	font-weight: 700;
	color: #000;
	margin: 0;
}

.sj-page-head .sj-lead-wrap { margin: 12px 0 0 !important; }
.sj-page-head .sj-lead-trigger { padding: 8px 18px; font-size: 14px; border-width: 2px; }
.sj-page-head .sj-lead-trigger-sub { font-size: 12px; margin-top: 2px; }

.sj-gallery-page { background: #fff; }

.sj-gallery-page__grid {
	max-width: 1385px;
	margin: 0 auto;
	padding: 29px 0 56px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
}

.sj-gallery-page__grid img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.sj-cs-band { padding: 51px 20px 40px; text-align: center; }
.sj-cs-band--grey { background: #d3d3d3; }
.sj-cs-band--light { background: #fafafa; }

.sj-cs-band > img {
	display: block;
	width: 100%;
	max-width: 1068px;
	height: auto;
	margin: 0 auto;
}

.sj-cs-details {
	max-width: 1068px;
	margin: 14px auto 0;
	text-align: left;
	color: #423c38;
}

.sj-cs-details summary {
	cursor: pointer;
	font-size: 14px;
	line-height: 22px;
	font-style: italic;
	list-style-position: inside;
}

.sj-cs-details p { font-size: 15px; line-height: 1.55 !important; margin: 10px 0 0; }

.sj-contact--page { min-height: 807px; }

.sj-contact__title h1 {
	font-size: 32px;
	line-height: 48px;
	font-weight: 700;
	color: #423c38;
	text-align: left;
	margin: 0;
}

@media (max-width: 1000px) {
	.sj-contact--page { min-height: 0; }
	.sj-gallery-page__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.sj-page-head h1 { font-size: 40px; line-height: 50px; }
	.sj-gallery-page__grid { grid-template-columns: 1fr; }
	.sj-cs-band { padding: 28px 12px 24px; }
}

@media (max-width: 600px) {
	.sj-hero__num--phone { font-size: 21px; }
	.sj-hero__call { font-size: 22px; }
	.sj-hero__stats { grid-template-columns: 1fr 1fr; }
}

/* Services page reuses the home "Our Services" cards; its H1 matches the home H2 */
.sj-services h1 {
	font-size: 40px;
	line-height: normal;
	font-weight: 700;
	text-align: center;
	color: #423c38;
	margin: 0 0 10px;
}

/* --- Trust signals: in-house process, license, ISA membership --- */

.sj-trust {
	background: #fff;
	padding: 56px 0 60px;
}

.sj-trust .sj-wrap { max-width: 1040px; }
.sj-trust h2 { margin-bottom: 18px; }

.sj-trust__lede {
	max-width: 820px;
	margin: 0 auto 14px !important;
	font-size: 18px;
	line-height: 1.55 !important;
	text-align: center;
}

.sj-trust__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 34px;
}

.sj-trust__item {
	background: #f4f3f0;
	border-radius: 10px;
	padding: 18px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.sj-trust__item h3 {
	font-size: 20px;
	line-height: 28px;
	font-weight: 700;
	color: #423c38;
	margin: 0 0 6px;
}

.sj-trust__item p { font-size: 16px; line-height: 22px !important; margin: 0; }
.sj-trust__item img { display: block; width: 100%; height: auto; margin: 0 0 16px; border-radius: 8px; }

.sj-contact__left .sj-contact__trust {
	margin-top: 34px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.sj-contact__left .sj-contact__trust img { width: 96px; height: auto; margin-bottom: 8px; }
.sj-contact__trust p { font-size: 15px; line-height: 22px !important; margin: 0; }

@media (max-width: 800px) {
	.sj-trust { padding: 40px 0 44px; }
	.sj-trust__grid { grid-template-columns: 1fr; }
}

/* --- About: founder Q&A --- */

.sj-qa {
	max-width: 860px;
	margin: 28px 0 40px;
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.sj-qa__turn { display: flex; gap: 14px; align-items: flex-start; }

.sj-qa__avatar {
	flex: none;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #237787;
	color: #fff;
	font-weight: 700;
	font-size: 18px;
}

.sj-qa__body { flex: 1; min-width: 0; }

.sj-qa__who {
	display: block;
	margin-bottom: 4px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #6e6459;
}

.sj-qa__q p { margin: 0; font-size: 18px; line-height: 1.4; font-weight: 700; color: #423c38; }

.sj-qa__bubble {
	background: #f4f3f0;
	border-radius: 10px;
	padding: 16px 20px;
}

.sj-qa__bubble p { margin: 0 0 12px; font-size: 16px; line-height: 1.6; }
.sj-qa__bubble p:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
	.sj-qa__turn { gap: 10px; }
	.sj-qa__avatar { width: 36px; height: 36px; font-size: 15px; }
	.sj-qa__bubble { padding: 14px 16px; }
}

.sj-founder-card + .wp-block-paragraph,
.sj-founder-card + p { margin-top: 22px; }

.sj-trust__item p + p { margin-top: 8px; }
.sj-trust__item a { color: #a64b00; text-decoration: underline; }

/* Case Studies heading is an h1 for SEO but keeps its original h2 look */
.sj-page-head--cs h1 {
	font-size: 40px;
	line-height: normal;
	color: #423c38;
}

.sj-contact__note {
	font-size: 15px;
	line-height: 22px !important;
	color: #423c38;
	margin: -8px 0 20px !important;
}

/* ---------- Case study article pages ---------- */

.sj-cs-article { max-width: 1100px; margin: 0 auto 28px; }

.sj-cs-crumb {
	font-size: 14px;
	margin-bottom: 14px;
}

.sj-cs-crumb a {
	color: #237787;
	text-decoration: none;
	font-weight: 700;
}

.sj-cs-crumb a:hover { text-decoration: underline; }

.sj-cs-hero-img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.sj-cs-facts {
	max-width: 1040px;
	margin: 0 auto 28px;
	background: #f4f3f0;
	border-radius: 10px;
	padding: 6px 24px;
}

.sj-cs-facts__row {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 14px;
	padding: 14px 0;
	border-bottom: 1px solid #e3e0d8;
}

.sj-cs-facts__row:last-child { border-bottom: 0; }

.sj-cs-facts__row .k {
	flex: 0 0 160px;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #6e6459;
}

.sj-cs-facts__row .v { flex: 1 1 260px; color: #423c38; }

.sj-cs-related {
	max-width: 1040px;
	margin: 48px auto 0;
	padding-top: 28px;
	border-top: 1px solid #e3e0d8;
}

.sj-cs-related h3 { margin: 0 0 18px; font-size: 20px; }

.sj-cs-related__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.sj-cs-related__card {
	display: block;
	text-decoration: none;
	color: #423c38;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sj-cs-related__card img { display: block; width: 100%; height: 130px; object-fit: cover; }

.sj-cs-related__card span {
	display: block;
	padding: 10px 12px;
	font-weight: 700;
	font-size: 14.5px;
}

.sj-cs-related__card:hover span { color: #a64b00; text-decoration: underline; }

/* Index page: image now links to the full case study */
.sj-cs-band__link { display: block; }
.sj-cs-readmore {
	display: inline-block;
	margin-top: 14px;
	font-weight: 700;
	color: #237787;
	text-decoration: none;
}
.sj-cs-readmore:hover { text-decoration: underline; }

@media (max-width: 800px) {
	.sj-cs-related__grid { grid-template-columns: 1fr; }
	.sj-cs-facts__row .k { flex-basis: 100%; }
}

.sj-cs-tagline {
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #237787;
	margin: 16px 0 0 !important;
}

/* Global `ul { list-style: none }` reset (for nav menus) also strips core
   List blocks in article content — restore real bullets there. */
.entry-content .wp-block-list {
	list-style: disc;
	margin: 0 0 1em 1.3em;
	padding: 0;
}

.entry-content .wp-block-list li {
	margin-bottom: 6px;
}

/* Core block library's full CSS isn't loaded on this classic theme, so
   wp:quote (used on About's closing quote and case-study testimonials)
   needs its own styling. */
.entry-content .wp-block-quote {
	margin: 24px 0;
	padding: 4px 0 4px 22px;
	border-left: 4px solid #237787;
}

.entry-content .wp-block-quote p {
	font-style: italic;
	font-size: 18px;
	line-height: 1.5;
	color: #423c38;
	margin: 0;
}

.entry-content .wp-block-quote cite {
	display: block;
	margin-top: 10px;
	font-style: normal;
	font-size: 14px;
	font-weight: 700;
	color: #6e6459;
}

/* --- Our Customers: logos link to matching case studies --- */

.sj-logos-wrap {
	position: relative;
	max-width: 1247px;
	margin: 62px auto 0;
}

.sj-logos-wrap .sj-logos { margin: 0; display: block; }

.sj-logo-link {
	position: absolute;
	display: block;
	border-radius: 10px;
	text-decoration: none;
	overflow: hidden;
}

.sj-logo-link:focus-visible {
	outline: 3px solid #237787;
	outline-offset: -3px;
	z-index: 2;
}

.sj-logo-cta {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 6px;
	background: rgba(35, 119, 135, 0.88);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	opacity: 0;
	transition: opacity 0.15s;
}

@media (hover: hover) {
	.sj-logo-link:hover .sj-logo-cta { opacity: 1; }
}

.sj-logo-link:focus-visible .sj-logo-cta { opacity: 1; }

/* --- Founder Q&A byline (photo + name, once, above the Q&A) --- */

.sj-qa-byline {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 14px 0 30px;
}

.sj-qa-byline img {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	flex: none;
}

.sj-qa-byline strong {
	display: block;
	font-size: 17px;
	color: #423c38;
}

.sj-qa-byline span {
	display: block;
	font-size: 14px;
	color: #6e6459;
}

/* --- About page: vertical rhythm for the plain (no-background) sections --- */

.sj-about-block {
	margin-top: 56px;
	margin-bottom: 8px;
}

.sj-about-block:first-of-type {
	margin-top: 48px;
}

/* --- Trust section: designed graphics inside the original 3-box grid (2026-09-22) --- */

.sj-trust__note {
	margin: 22px 0 0;
	font-size: 15px;
	color: #6e6459;
	text-align: center;
}

.sj-trust__note a { color: #a64b00; text-decoration: underline; }
