/* ============================================================
   LPJH Page Sections — base styles (identity-driven via --brand-*)
   Components reference ONLY the --brand-* role layer.
   ============================================================ */

.lpjh-sec { position: relative; }
.lpjh-sec__inner { max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem; }

/* Section surfaces */
.lpjh-sec--bg-cream   { background: var(--brand-bg); }
.lpjh-sec--bg-linen   { background: var(--brand-surface-alt); }
.lpjh-sec--bg-inverse,
.lpjh-sec--bg-inverse * { color: var(--brand-inverse-text); }
.lpjh-sec--bg-inverse { background: var(--brand-inverse-bg); }

/* Shared type */
.lpjh-sec-eyebrow {
	font-family: var(--brand-font-body);
	font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
	color: var(--brand-accent); margin: 0 0 0.75rem; font-weight: 600;
}
.lpjh-sec-heading {
	font-family: var(--brand-font-display);
	font-size: clamp(1.9rem, 3.4vw, 2.75rem); font-weight: 500; line-height: 1.12;
	color: var(--brand-heading); margin: 0 0 1.25rem; letter-spacing: 0.01em;
}
.lpjh-sec-heading--center { text-align: center; margin-left: auto; margin-right: auto; }
.lpjh-sec-prose { font-family: var(--brand-font-body); color: var(--brand-text); line-height: 1.8; font-size: 1rem; }
.lpjh-sec-prose p { margin: 0 0 1.1rem; }
.lpjh-sec-prose a { color: var(--brand-accent); }

/* Buttons (section vocabulary) */
.lpjh-sbtn {
	display: inline-block; margin-top: 1.5rem; padding: 0.85rem 2rem;
	font-family: var(--brand-font-body); font-size: 0.8rem; letter-spacing: 0.12em;
	text-transform: uppercase; text-decoration: none; border: 1px solid var(--brand-accent);
	transition: background 0.3s ease, color 0.3s ease;
}
.lpjh-sbtn--solid   { background: var(--brand-accent); color: var(--brand-on-accent); }
.lpjh-sbtn--solid:hover { background: var(--brand-accent-hover); border-color: var(--brand-accent-hover); }
.lpjh-sbtn--outline { background: transparent; color: var(--brand-accent); }
.lpjh-sbtn--outline:hover { background: var(--brand-accent); color: var(--brand-on-accent); }
.lpjh-sbtn--on-dark { background: transparent; color: var(--brand-inverse-text); border-color: var(--brand-inverse-text); }
.lpjh-sbtn--on-dark:hover { background: var(--brand-accent); border-color: var(--brand-accent); color: var(--brand-on-accent); }

/* ── HERO ── */
.lpjh-sec-hero { display: flex; align-items: flex-end; overflow: hidden; }
.lpjh-sec-hero--tall   { min-height: 90vh; }
.lpjh-sec-hero--medium { min-height: 65vh; }
.lpjh-sec-hero--short  { min-height: 45vh; }
.lpjh-sec-hero__bg { position: absolute; inset: 0; z-index: 0; }
.lpjh-sec-hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.lpjh-sec-hero__overlay { position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(180deg, rgba(28,25,23,0) 40%, rgba(28,25,23,0.6) 100%); }
.lpjh-sec-hero__inner { position: relative; z-index: 2; max-width: 1200px; width: 100%;
	margin: 0 auto; padding: 0 1.5rem 5rem; color: var(--brand-inverse-text); }
.lpjh-sec-hero__heading { font-family: var(--brand-font-display); font-weight: 500;
	font-size: clamp(2.4rem, 6vw, 4.5rem); line-height: 1.02; margin: 0 0 1rem; color: #fff; }
.lpjh-sec-hero__sub { font-family: var(--brand-font-body); font-size: 1.1rem; max-width: 620px;
	line-height: 1.7; opacity: 0.92; margin: 0; }
.lpjh-sec-hero .lpjh-sec-eyebrow { color: var(--brand-accent); }

/* ── RICH TEXT ── */
.lpjh-sec-rt--narrow .lpjh-sec__inner { max-width: 760px; }
.lpjh-sec-rt--center { text-align: center; }
.lpjh-sec-rt--center .lpjh-sec-prose { margin-left: auto; margin-right: auto; }

/* ── SPLIT ── */
.lpjh-sec-split__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.lpjh-sec-split--img-left .lpjh-sec-split__media { order: -1; }
.lpjh-sec-split__img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── STAT BAND ── */
.lpjh-sec-stats__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 3rem 4rem; }
.lpjh-sec-stat { text-align: center; }
.lpjh-sec-stat__value { display: block; font-family: var(--brand-font-display);
	font-size: clamp(2.2rem, 4vw, 3.25rem); font-weight: 500; color: var(--brand-accent); line-height: 1; }
.lpjh-sec-stat__label { display: block; font-family: var(--brand-font-body); font-size: 0.8rem;
	letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-text-muted); margin-top: 0.5rem; }

/* ── GALLERY ── */
.lpjh-sec-gallery__grid { display: grid; grid-template-columns: repeat(var(--lpjh-gal-cols, 3), 1fr); gap: 1rem; }
.lpjh-sec-gallery__item { margin: 0; overflow: hidden; }
.lpjh-sec-gallery__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block;
	transition: transform 0.6s var(--lpjh-ease, cubic-bezier(.19,1,.22,1)); }
.lpjh-sec-gallery__item:hover .lpjh-sec-gallery__img { transform: scale(1.04); }

/* ── TESTIMONIALS ── */
.lpjh-sec-testimonials__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.lpjh-sec-testimonials__grid[data-count="1"] { max-width: 760px; margin: 0 auto; }
.lpjh-sec-quote { flex: 1 1 340px; max-width: 440px; background: var(--brand-surface);
	border: 1px solid var(--brand-border); padding: 2.5rem 2.75rem; margin: 0; }
.lpjh-sec-quote__mark { display: block; font-family: var(--brand-font-display); font-size: 3rem;
	line-height: 0.6; color: var(--brand-accent); opacity: 0.55; height: 1.4rem; }
.lpjh-sec-quote__text { font-family: var(--brand-font-display); font-style: italic;
	font-size: 1.1rem; line-height: 1.75; color: var(--brand-heading); margin: 0 0 1.25rem; }
.lpjh-sec-quote__author { font-family: var(--brand-font-body); font-size: 0.82rem;
	font-weight: 600; letter-spacing: 0.03em; color: var(--brand-heading); }

/* ── CTA ── */
.lpjh-sec-cta__inner { text-align: center; max-width: 760px; }
.lpjh-sec-cta__heading { font-family: var(--brand-font-display); font-weight: 500;
	font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin: 0 0 1rem; }
.lpjh-sec--bg-inverse .lpjh-sec-cta__heading { color: var(--brand-inverse-text); }
.lpjh-sec-cta__body { font-family: var(--brand-font-body); font-size: 1.05rem; line-height: 1.7;
	max-width: 560px; margin: 0 auto; opacity: 0.9; }

/* ── Responsive ── */
@media (max-width: 900px) {
	.lpjh-sec__inner { padding: 3.5rem 1.25rem; }
	.lpjh-sec-split__grid { grid-template-columns: 1fr; gap: 2rem; }
	.lpjh-sec-split--img-left .lpjh-sec-split__media { order: 0; }
	.lpjh-sec-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.lpjh-sec-gallery__grid { grid-template-columns: 1fr; }
}

/* ── HTML / EMBED ── */
.lpjh-sec-embed { width: 100%; }
.lpjh-sec-embed iframe { max-width: 100%; }

/* ── FAQ ── */
.lpjh-sec-faq__inner { max-width: 820px; }
.lpjh-sec-faq__intro { text-align: center; font-family: var(--brand-font-body); color: var(--brand-text-muted); line-height: 1.7; max-width: 620px; margin: 0 auto 2.5rem; }
.lpjh-faq-item { border-bottom: 1px solid var(--brand-border); padding: 0; }
.lpjh-faq-item:first-child { border-top: 1px solid var(--brand-border); }
.lpjh-faq-q { font-family: var(--brand-font-display); font-size: 1.3rem; font-weight: 500; color: var(--brand-heading); padding: 1.4rem 2.5rem 1.4rem 0; cursor: pointer; list-style: none; position: relative; transition: color 0.25s ease; }
.lpjh-faq-q::-webkit-details-marker { display: none; }
.lpjh-faq-q::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-family: var(--brand-font-body); font-size: 1.5rem; color: var(--brand-accent); transition: transform 0.25s ease; }
.lpjh-faq-item[open] .lpjh-faq-q::after { content: '\2212'; }
.lpjh-faq-item[open] .lpjh-faq-q { color: var(--brand-accent); }
.lpjh-faq-a { font-family: var(--brand-font-body); color: var(--brand-text); line-height: 1.75; padding: 0 2.5rem 1.6rem 0; }
.lpjh-faq-a a { color: var(--brand-accent); }

/* ── FEATURE GRID ── */
.lpjh-sec-fg__head { text-align: center; margin-bottom: 3rem; }
.lpjh-sec-fg__grid { display: grid; grid-template-columns: repeat(var(--lpjh-fg-cols, 3), 1fr); gap: 2.5rem; }
.lpjh-fg-item { text-align: left; }
.lpjh-fg-item__media { overflow: hidden; margin-bottom: 1.25rem; }
.lpjh-fg-item__img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
.lpjh-fg-item__title { font-family: var(--brand-font-display); font-size: 1.5rem; font-weight: 500; color: var(--brand-heading); margin: 0 0 0.75rem; }
.lpjh-fg-item__text { font-family: var(--brand-font-body); color: var(--brand-text); line-height: 1.75; font-size: 0.95rem; margin: 0 0 1rem; }
.lpjh-fg-item__link { font-family: var(--brand-font-body); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-accent); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s ease; }
.lpjh-fg-item__link:hover { border-bottom-color: currentColor; }
@media (max-width: 900px) { .lpjh-sec-fg__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .lpjh-sec-fg__grid { grid-template-columns: 1fr; } }
