/* ==========================================================================
   SCOLA — Editorial Service page (Photography / Video / Branding)
   Loads ON TOP of editorial-home.css.
   Adds: pricing preview, FAQ, related services cross-sell.
   ========================================================================== */

/* === Hero refinements for service pages === */
.scola-eh--service .scola-eh__hero {
	min-height: 100vh;
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
	grid-template-rows: 1fr;
	gap: clamp(40px, 5vw, 96px);
	align-items: stretch;
}

@media (max-width: 900px) {
	.scola-eh--service .scola-eh__hero {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
		min-height: auto;
	}
}

.scola-eh--service .scola-eh__hero-left {
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 60px;
	min-height: 80vh;
}

@media (max-width: 900px) {
	.scola-eh--service .scola-eh__hero-left { min-height: 60vh; gap: 40px; }
}

/* Bigger H1 on service pages (more editorial weight) */
.scola-eh--service .scola-eh__hero-h1 {
	font-size: clamp(64px, 11vw, 220px);
	line-height: 0.9;
}

.scola-eh__hero-media {
	aspect-ratio: 3 / 4;
	border-radius: 4px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--ink-2), var(--ink));
	position: relative;
	min-height: 540px;
	align-self: end;
}

@media (max-width: 900px) {
	.scola-eh__hero-media { min-height: 380px; aspect-ratio: 4/5; }
}

.scola-eh__hero-media img,
.scola-eh__hero-media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(15%) contrast(1.05);
	transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s;
	display: block;
}

.scola-eh__hero-media:hover img,
.scola-eh__hero-media:hover video {
	transform: scale(1.03);
	filter: grayscale(0%) contrast(1.1);
}

.scola-eh__hero-trust {
	margin: 14px 0 0;
	font-size: 13px;
	color: var(--muted, #6E6E6E);
	letter-spacing: 0.01em;
}

.scola-eh__hero-media-meta {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	display: flex;
	justify-content: space-between;
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #FFFFFF;
	text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* === PRICING PREVIEW === */
.scola-eh__pricing {
	background: var(--cream);
	padding: clamp(100px, 12vw, 160px) clamp(20px, 4vw, 48px);
	border-top: 1px solid rgba(10,10,10,0.08);
	border-bottom: 1px solid rgba(10,10,10,0.08);
}

.scola-eh__pricing-header {
	max-width: 1440px;
	margin: 0 auto clamp(48px, 6vw, 80px);
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 32px;
}

.scola-eh__pricing-header h2 {
	font-size: clamp(40px, 6vw, 96px);
	font-weight: 300;
	letter-spacing: -0.04em;
	line-height: 0.95;
	color: var(--ink);
	margin: 0;
	font-family: var(--sans);
}

.scola-eh__pricing-header h2 em {
	font-family: var(--serif);
	font-style: italic;
	letter-spacing: -0.03em;
	color: var(--orange);
	font-weight: 400;
}

.scola-eh__pricing-grid {
	max-width: 1440px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

@media (max-width: 968px) {
	.scola-eh__pricing-grid { grid-template-columns: 1fr; }
}

.scola-eh__tier {
	background: var(--bg);
	padding: 40px 32px 32px;
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: relative;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
	border: 1px solid rgba(10,10,10,0.06);
}

.scola-eh__tier:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px -10px rgba(10,10,10,0.12);
}

.scola-eh__tier--featured {
	background: var(--ink);
	color: #FFFFFF;
	border-color: var(--ink);
}

.scola-eh__tier--featured .scola-eh__tier-name { color: #FFFFFF; }
.scola-eh__tier--featured .scola-eh__tier-price { color: var(--orange); }
.scola-eh__tier--featured .scola-eh__tier-features li { color: var(--light); }
.scola-eh__tier--featured .scola-eh__tier-features li::before { color: var(--orange); }

.scola-eh__tier-badge {
	position: absolute;
	top: -10px;
	right: 16px;
	background: var(--orange);
	color: var(--ink);
	padding: 4px 12px;
	border-radius: 999px;
	font-family: var(--mono);
	font-size: 9px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 700;
}

.scola-eh__tier-num {
	font-family: var(--mono);
	font-size: 11px;
	color: var(--muted);
	letter-spacing: 0.16em;
}

.scola-eh__tier-name {
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 400;
	letter-spacing: -0.025em;
	line-height: 1;
	color: var(--ink);
	font-family: var(--sans);
}

.scola-eh__tier-name em {
	font-family: var(--serif);
	font-style: italic;
	letter-spacing: -0.03em;
	color: var(--orange);
	font-weight: 400;
}

.scola-eh__tier-price {
	font-size: clamp(40px, 5vw, 72px);
	font-weight: 200;
	letter-spacing: -0.04em;
	line-height: 1;
	color: var(--ink);
	font-family: var(--sans);
	margin: 16px 0;
}

.scola-eh__tier-price small {
	font-size: 0.3em;
	font-family: var(--mono);
	color: var(--muted);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 500;
	margin-left: 6px;
	vertical-align: super;
}

.scola-eh__tier-features {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex-grow: 1;
}

.scola-eh__tier-features li {
	font-size: 13px;
	line-height: 1.5;
	color: var(--ink-2);
	padding-left: 24px;
	position: relative;
}

.scola-eh__tier-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--orange);
	font-weight: 700;
}

.scola-eh__tier-cta {
	margin-top: 16px;
	background: var(--ink);
	color: #FFFFFF;
	padding: 16px 24px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-align: center;
	transition: background 0.2s, color 0.2s;
	font-family: var(--sans);
}

.scola-eh__tier-cta:hover {
	background: var(--orange);
	color: var(--ink);
}

.scola-eh__tier--featured .scola-eh__tier-cta {
	background: var(--orange);
	color: var(--ink);
}

.scola-eh__tier--featured .scola-eh__tier-cta:hover {
	background: #FFFFFF;
	color: var(--ink);
}

/* === FAQ === */
.scola-eh__faq {
	background: var(--bg);
	padding: clamp(100px, 12vw, 160px) clamp(20px, 4vw, 48px);
}

.scola-eh__faq-header {
	max-width: 1440px;
	margin: 0 auto clamp(48px, 6vw, 80px);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
	gap: clamp(40px, 6vw, 120px);
	align-items: end;
}

@media (max-width: 968px) {
	.scola-eh__faq-header { grid-template-columns: 1fr; gap: 24px; }
}

.scola-eh__faq-header h2 {
	font-size: clamp(48px, 7vw, 120px);
	font-weight: 300;
	letter-spacing: -0.04em;
	line-height: 0.95;
	color: var(--ink);
	margin: 0;
	font-family: var(--sans);
}

.scola-eh__faq-header h2 em {
	font-family: var(--serif);
	font-style: italic;
	letter-spacing: -0.03em;
	color: var(--orange);
	font-weight: 400;
}

.scola-eh__faq-list {
	max-width: 1440px;
	margin: 0 auto;
}

.scola-eh__faq-item {
	border-top: 1px solid rgba(10,10,10,0.1);
	padding: 32px 0;
	display: grid;
	grid-template-columns: 60px 1fr auto;
	gap: 24px;
	align-items: start;
	cursor: pointer;
	transition: padding 0.3s;
}

.scola-eh__faq-item:last-child { border-bottom: 1px solid rgba(10,10,10,0.1); }
.scola-eh__faq-item:hover { padding: 40px 0; }

.scola-eh__faq-num {
	font-family: var(--mono);
	font-size: 11px;
	color: var(--muted);
	letter-spacing: 0.14em;
	padding-top: 8px;
}

.scola-eh__faq-q {
	font-size: clamp(20px, 2.4vw, 32px);
	font-weight: 400;
	letter-spacing: -0.02em;
	color: var(--ink);
	font-family: var(--sans);
	line-height: 1.25;
	margin: 0;
}

.scola-eh__faq-q em {
	font-family: var(--serif);
	font-style: italic;
	letter-spacing: -0.03em;
	color: var(--orange);
	font-weight: 400;
}

.scola-eh__faq-a {
	grid-column: 2;
	font-size: 16px;
	line-height: 1.6;
	color: var(--ink-2);
	margin-top: 16px;
	max-width: 720px;
	display: none;
}

.scola-eh__faq-item.is-open .scola-eh__faq-a { display: block; }

.scola-eh__faq-toggle {
	font-family: var(--mono);
	font-size: 24px;
	color: var(--muted);
	font-weight: 300;
	transition: transform 0.3s, color 0.2s;
	padding-top: 4px;
}

.scola-eh__faq-item.is-open .scola-eh__faq-toggle {
	transform: rotate(45deg);
	color: var(--orange);
}

@media (max-width: 768px) {
	.scola-eh__faq-item { grid-template-columns: 40px 1fr auto; gap: 16px; }
}

/* === RELATED SERVICES (cross-sell) === */
.scola-eh__related {
	background: var(--ink);
	color: #FFFFFF;
	padding: clamp(100px, 12vw, 160px) clamp(20px, 4vw, 48px);
}

.scola-eh__related-header {
	max-width: 1440px;
	margin: 0 auto clamp(48px, 6vw, 80px);
}

.scola-eh__related-label {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 24px;
	display: inline-block;
}

.scola-eh__related-header h2 {
	font-size: clamp(40px, 6vw, 96px);
	font-weight: 300;
	letter-spacing: -0.04em;
	line-height: 0.95;
	color: #FFFFFF;
	margin: 0;
}

.scola-eh__related-header h2 em {
	font-family: var(--serif);
	font-style: italic;
	letter-spacing: -0.03em;
	color: var(--orange);
	font-weight: 400;
}

.scola-eh__related-grid {
	max-width: 1440px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

@media (max-width: 768px) {
	.scola-eh__related-grid { grid-template-columns: 1fr; }
}

.scola-eh__related-card {
	background: var(--ink-2);
	padding: 48px 40px;
	border-radius: 4px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 24px;
	align-items: end;
	min-height: 200px;
	transition: background 0.3s, transform 0.3s;
}

.scola-eh__related-card:hover {
	background: var(--orange);
	color: var(--ink);
	transform: translateY(-4px);
}

.scola-eh__related-card:hover .scola-eh__related-name,
.scola-eh__related-card:hover .scola-eh__related-num,
.scola-eh__related-card:hover .scola-eh__related-arrow {
	color: var(--ink);
}

.scola-eh__related-num {
	font-family: var(--mono);
	font-size: 11px;
	color: var(--muted);
	letter-spacing: 0.16em;
	display: block;
	margin-bottom: 8px;
	transition: color 0.3s;
}

.scola-eh__related-name {
	font-size: clamp(28px, 3.5vw, 48px);
	font-weight: 300;
	letter-spacing: -0.03em;
	line-height: 1;
	color: #FFFFFF;
	font-family: var(--sans);
	transition: color 0.3s;
}

.scola-eh__related-name em {
	font-family: var(--serif);
	font-style: italic;
	letter-spacing: -0.03em;
	color: var(--orange);
	font-weight: 400;
}

.scola-eh__related-card:hover .scola-eh__related-name em {
	color: var(--ink);
}

.scola-eh__related-arrow {
	font-size: 32px;
	color: var(--muted);
	transition: transform 0.3s, color 0.3s;
}

.scola-eh__related-card:hover .scola-eh__related-arrow {
	transform: translate(8px, -4px);
}
