/* Somali Legal Hub — main stylesheet */

@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-Variable.woff2') format('woff2');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'DM Serif Display';
	src: url('../fonts/DMSerifDisplay-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 90%; }
body {
	margin: 0;
	font-family: var(--slh-font-sans);
	color: var(--slh-ink);
	background: var(--slh-white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 0.5em; font-weight: 700; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }

.slh-skip-link {
	position: absolute; left: -999px; top: 0; background: var(--slh-navy); color: #fff;
	padding: 0.75rem 1.25rem; z-index: 1000; border-radius: 0 0 var(--slh-radius-sm) 0;
}
.slh-skip-link:focus { left: 0; }

.slh-container {
	max-width: 80rem;
	margin-inline: auto;
	padding-inline: 1rem;
}
@media (min-width: 640px) { .slh-container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .slh-container { padding-inline: 2rem; } }

/* Buttons */
.slh-btn {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 0.875rem 1.5rem; border-radius: 0.5rem;
	font-weight: 700; font-size: 0.875rem; border: 2px solid transparent;
	transition: all 0.2s ease;
}
.slh-btn svg { width: 1rem; height: 1rem; }
.slh-btn:hover { transform: none; }
.slh-btn--primary { background: var(--slh-green); color: #fff; border-color: var(--slh-green); box-shadow: 0 10px 25px -8px rgba(45,122,70,0.5); }
.slh-btn--primary:hover { background: rgba(45,122,70,0.9); }
.slh-btn--navy { background: var(--slh-navy); color: #fff; border-color: var(--slh-navy); box-shadow: 0 4px 12px rgba(27,58,107,0.25); }
.slh-btn--navy:hover { background: rgba(27,58,107,0.9); }
.slh-btn--outline { border-color: rgba(255,255,255,0.3); color: #fff; background: transparent; }
.slh-btn--outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.slh-btn--whatsapp { background: var(--slh-whatsapp); color: #fff; border-color: var(--slh-whatsapp); }
.slh-btn--whatsapp:hover { background: #1fb959; }
.slh-btn--sm { padding: 0.5rem 1rem; font-size: 0.8rem; }
.slh-btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.slh-icon { width: 1.1rem; height: 1.1rem; }
.slh-icon--sm { width: 1rem; height: 1rem; }
.slh-icon--xs { width: 0.75rem; height: 0.75rem; }

/* Pill (badge chip used in hero / CTA) */
.slh-pill {
	display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 999px;
	background: rgba(45,122,70,0.2); border: 1px solid rgba(45,122,70,0.3);
	padding: 0.375rem 1rem; margin-bottom: 1.5rem;
}
.slh-pill svg { color: var(--slh-teal); width: 0.875rem; height: 0.875rem; }
.slh-pill span { font-size: 0.7rem; font-weight: 700; color: var(--slh-teal); letter-spacing: 0.08em; text-transform: uppercase; }

/* Eyebrow (line + label used above section headings) */
.slh-eyebrow-line { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.slh-eyebrow-line--left { justify-content: flex-start; }
.slh-eyebrow-line span { height: 1px; width: 2rem; background: var(--slh-green); display: block; }
.slh-eyebrow-line p { margin: 0; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--slh-green); }

/* Header */
.slh-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); }
.slh-header__hairline { height: 2px; background: linear-gradient(to right, var(--slh-navy), var(--slh-teal), var(--slh-green)); }
.slh-header__inner { display: flex; align-items: center; justify-content: space-between; height: 62px; gap: 1rem; }
.slh-brand { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.slh-brand__ring {
	position: relative; height: 36px; width: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
	box-shadow: 0 0 0 2px rgba(27,58,107,0.15); transition: box-shadow 0.2s ease;
}
.slh-brand:hover .slh-brand__ring, .slh-footer__brand-link:hover .slh-brand__ring { box-shadow: 0 0 0 2px rgba(27,58,107,0.4); }
.slh-brand__logo { width: 100%; height: 100%; object-fit: cover; }
.slh-brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.slh-brand__name { font-family: var(--slh-font-serif); font-weight: 400; color: var(--slh-navy); font-size: 0.95rem; letter-spacing: 0.02em; }
.slh-brand__tag { font-size: 0.625rem; font-weight: 500; color: var(--slh-green); }

.slh-nav-list { display: flex; align-items: center; gap: 0.125rem; flex: 1; justify-content: center; }
.slh-nav-list a {
	position: relative; display: inline-block; padding: 0.5rem 0.75rem; border-radius: 0.5rem;
	font-weight: 500; font-size: 0.875rem; color: var(--slh-navy);
}
.slh-nav-list a::after {
	content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
	height: 2px; width: 0; border-radius: 999px; background: var(--slh-green); transition: width 0.3s ease;
}
.slh-nav-list a:hover::after { width: 1rem; }
.slh-nav-list li.current-menu-item > a { color: var(--slh-navy); font-weight: 700; }
.slh-nav-list li.current-menu-item > a::after { width: 1.25rem; }

.slh-header__actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.slh-header__divider { display: none; height: 1.25rem; width: 1px; background: var(--slh-border); margin-inline: 0.25rem; }
@media (min-width: 1024px) { .slh-header__divider { display: block; } }

.slh-lang { position: relative; }
.slh-lang__btn {
	display: flex; align-items: center; gap: 0.4rem; border-radius: 0.75rem; border: none; cursor: pointer;
	background: #f3f4f6; color: #374151; height: 2.25rem; padding: 0 0.75rem; font-size: 0.85rem; font-weight: 600;
	transition: background 0.2s ease, color 0.2s ease;
}
.slh-lang__btn:hover { background: #e5e7eb; color: var(--slh-navy); }
.slh-lang__btn svg { width: 1rem; height: 1rem; opacity: 0.7; }
.slh-lang__chevron { width: 0.875rem !important; height: 0.875rem !important; opacity: 0.5 !important; transition: transform 0.2s ease; }
.slh-lang.is-open .slh-lang__chevron { transform: rotate(180deg); }
.slh-lang__menu {
	position: absolute; top: calc(100% + 0.5rem); right: 0; min-width: 11rem; background: #fff;
	border: 1px solid var(--slh-border); border-radius: 1rem; box-shadow: var(--slh-shadow-lg);
	padding: 0.4rem; display: none; flex-direction: column; gap: 0.15rem; z-index: 50;
}
.slh-lang.is-open .slh-lang__menu { display: flex; }
.slh-lang__menu a {
	display: flex; align-items: center; justify-content: space-between; gap: 0.65rem; text-align: left;
	padding: 0.6rem 0.7rem; border-radius: 0.65rem; font-size: 0.875rem; font-weight: 500; color: #374151;
}
.slh-lang__menu a svg { width: 0.875rem; height: 0.875rem; color: var(--slh-green); flex-shrink: 0; }
.slh-lang__menu a:hover { background: #f9fafb; }
.slh-lang__menu a.is-active { background: rgba(27,58,107,0.08); color: var(--slh-navy); font-weight: 600; }

.slh-theme-toggle {
	display: flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem;
	border-radius: 0.75rem; border: none; background: #f3f4f6; color: #374151; cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}
.slh-theme-toggle:hover { background: #e5e7eb; color: var(--slh-navy); }
.slh-theme-toggle svg { width: 1rem; height: 1rem; }
.slh-theme-toggle__moon { display: none; }
[data-theme="dark"] .slh-theme-toggle__sun { display: none; }
[data-theme="dark"] .slh-theme-toggle__moon { display: block; }

.slh-nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; padding: 0.4rem; cursor: pointer; }
.slh-nav-toggle span { width: 22px; height: 2px; background: var(--slh-navy); border-radius: 2px; }
.slh-mobile-nav { display: none; }

/* Hero */
.slh-hero { position: relative; overflow: hidden; background: var(--slh-navy); min-height: 92vh; display: flex; align-items: center; }
.slh-hero__dots {
	position: absolute; inset: 0; opacity: 0.05;
	background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0); background-size: 40px 40px;
}
.slh-hero__gradient { position: absolute; inset: 0; background: linear-gradient(to bottom right, var(--slh-navy), rgba(27,58,107,0.95), rgba(45,122,70,0.3)); }
.slh-hero__glow { position: absolute; height: 24rem; width: 24rem; border-radius: 50%; filter: blur(64px); }
.slh-hero__glow--green { top: -8rem; right: -8rem; background: rgba(45,122,70,0.1); }
.slh-hero__glow--teal { bottom: -8rem; left: -8rem; background: rgba(0,207,207,0.1); }
.slh-hero__inner { position: relative; z-index: 10; padding-block: 6rem; }
.slh-hero__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.slh-hero__title { font-family: var(--slh-font-serif); font-size: 2.25rem; font-weight: 400; color: #fff; line-height: 1.1; margin-bottom: 1rem; }
.slh-hero__title span { color: var(--slh-teal); }
.slh-hero__lede { font-size: 1.125rem; color: rgba(255,255,255,0.8); margin-bottom: 0.75rem; }
@media (min-width: 640px) {
	.slh-hero__title { font-size: 3rem; }
	.slh-hero__lede { font-size: 1.25rem; }
}
@media (min-width: 1024px) {
	.slh-hero__title { font-size: 3.75rem; }
}
.slh-hero__tagline { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--slh-green); margin-bottom: 2rem; }
.slh-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.slh-hero__stats { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; margin-top: 2.5rem; }
.slh-hero__stat { display: flex; align-items: center; gap: 0.75rem; }
.slh-hero__stat-divider { height: 2rem; width: 1px; background: rgba(255,255,255,0.2); }
.slh-hero__stat-value { margin: 0; font-size: 1.25rem; font-weight: 700; color: var(--slh-teal); }
.slh-hero__stat-label { margin: 0; font-size: 0.75rem; color: rgba(255,255,255,0.6); }

.slh-hero__media { display: none; justify-content: center; align-items: center; }
.slh-hero__badge-ring { position: relative; }
.slh-hero__badge-inner {
	position: relative; height: 18rem; width: 18rem; border-radius: 50%;
	background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
	backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center;
	box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4);
}
.slh-hero__badge-inner::before {
	content: ''; position: absolute; inset: -1rem; border-radius: 50%; background: rgba(0,207,207,0.2); filter: blur(40px); z-index: -1;
}
.slh-hero__badge-inner img {
	height: 13rem; width: 13rem; border-radius: 50%; object-fit: cover; background: #fff;
	box-shadow: 0 20px 25px -5px rgba(0,0,0,0.3);
}
.slh-hero__floater {
	position: absolute; border-radius: 0.75rem; padding: 0.5rem 0.75rem; font-size: 0.75rem; font-weight: 700; color: #fff;
	box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
}
.slh-hero__floater--top { top: -1rem; right: -1rem; background: var(--slh-green); }
.slh-hero__floater--bottom { bottom: -1rem; left: -1rem; background: rgba(0,207,207,0.2); border: 1px solid rgba(0,207,207,0.4); font-weight: 600; }
.slh-hero__wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.slh-hero__wave svg { width: 100%; height: 40px; display: block; }

/* Sections */
.slh-section { padding: 5rem 0; background: var(--slh-bg); }
.slh-section--white { background: #fff; }
.slh-section__title { font-size: 1.875rem; font-weight: 700; color: var(--slh-navy); text-align: center; line-height: 1.2; }
.slh-section__title--left { text-align: left; }
.slh-section__title--nomargin { margin-top: -0.5rem; }
.slh-section__lede { text-align: center; max-width: 620px; margin: 0.75rem auto 0; color: #6b7280; font-size: 1rem; }
@media (min-width: 768px) {
	.slh-section__title { font-size: 2.25rem; }
}
.slh-section > .slh-container > .slh-eyebrow-line + .slh-section__title,
.slh-section > .slh-container > .slh-section__title { margin-bottom: 0; }
.slh-section > .slh-container > .slh-section__lede { margin-bottom: 2.5rem; }
.slh-section__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 0.5rem; gap: 1rem; flex-wrap: wrap; }

.slh-card {
	background: #fff; border: 1px solid #f3f4f6; border-radius: 0.75rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.slh-card:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); border-color: rgba(27,58,107,0.3); }

/* Services grid */
.slh-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.slh-service-card { position: relative; padding: 1.5rem; display: flex; flex-direction: column; overflow: hidden; }
.slh-service-card__icon {
	width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center;
	border-radius: 0.5rem; background: rgba(27,58,107,0.08); color: var(--slh-navy);
	margin-bottom: 1rem; transition: background 0.3s ease, color 0.3s ease;
}
.slh-card:hover .slh-service-card__icon { background: var(--slh-navy); color: #fff; }
.slh-service-card h3 { font-size: 1.125rem; color: var(--slh-navy); margin-bottom: 0.5rem; }
.slh-service-card p { color: #6b7280; font-size: 0.875rem; margin-bottom: 0; flex: 1; }
.slh-service-card__link { margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; font-weight: 600; color: var(--slh-green); }
.slh-service-card__link:hover { color: var(--slh-navy); }
.slh-service-card__bar { position: absolute; bottom: 0; left: 0; height: 2px; width: 0; background: var(--slh-green); transition: width 0.5s ease; }
.slh-card:hover .slh-service-card__bar { width: 100%; }

/* About */
.slh-about { display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: center; }
.slh-about__media { position: relative; }
.slh-about__panel {
	position: relative; border-radius: 1rem; overflow: hidden; background: var(--slh-navy);
	padding: 2.5rem; display: flex; align-items: center; justify-content: center; min-height: 340px;
	box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4);
}
.slh-about__panel-dots { position: absolute; inset: 0; opacity: 0.1; background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0); background-size: 28px 28px; }
.slh-about__panel-inner { position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.slh-about__panel-logo {
	height: 11rem; width: 11rem; border-radius: 50%; overflow: hidden; background: #fff;
	box-shadow: 0 20px 25px -5px rgba(0,0,0,0.3); border: 4px solid rgba(255,255,255,0.2);
}
.slh-about__panel-logo img { width: 100%; height: 100%; object-fit: cover; }
.slh-about__panel-text { text-align: center; color: #fff; }
.slh-about__panel-name { font-family: var(--slh-font-serif); font-size: 1.4rem; font-weight: 400; letter-spacing: 0.02em; margin-bottom: 0; }
.slh-about__panel-role { color: var(--slh-teal); font-size: 0.875rem; margin: 0.25rem 0 0; }
.slh-about__panel-loc { color: rgba(255,255,255,0.6); font-size: 0.75rem; margin: 0.25rem 0 0; }
.slh-about__float {
	position: absolute; border-radius: 0.75rem; padding: 1rem 1.25rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.25);
}
.slh-about__float--green { bottom: -1.25rem; right: -1.25rem; background: var(--slh-green); color: #fff; }
.slh-about__float--white { top: -1.25rem; left: -1.25rem; background: #fff; border: 1px solid #f3f4f6; }
.slh-about__float--white .slh-about__float-value { color: var(--slh-navy); }
.slh-about__float--white .slh-about__float-label { color: #6b7280; }
.slh-about__float-value { margin: 0; font-size: 1.5rem; font-weight: 700; }
.slh-about__float-label { margin: 0; font-size: 0.75rem; opacity: 0.85; }
.slh-about__text { color: #4b5563; margin-bottom: 1.5rem; }
.slh-link-arrow { color: var(--slh-navy); font-weight: 700; display: inline-flex; align-items: center; gap: 0.3rem; }
.slh-link-arrow:hover { color: var(--slh-green); }
.slh-link-arrow--head { font-size: 0.875rem; color: var(--slh-green); }
.slh-checklist { margin: 0 0 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.slh-checklist li { position: relative; padding-left: 1.75rem; font-size: 0.875rem; color: #4b5563; }
.slh-checklist li::before {
	content: ''; position: absolute; left: 0; top: 0.15em; width: 1.25rem; height: 1.25rem;
	border-radius: 50%; border: 2px solid var(--slh-green);
}
.slh-checklist li::after {
	content: ''; position: absolute; left: 0.34rem; top: 0.5em; width: 0.4rem; height: 0.22rem;
	border-left: 2px solid var(--slh-green); border-bottom: 2px solid var(--slh-green); transform: rotate(-45deg);
}

/* Stats band */
.slh-stats-band { background: var(--slh-navy); padding: 3.5rem 0; }
.slh-stats-band__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.slh-stats-band__item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.slh-stats-band__icon {
	margin-bottom: 0.75rem; display: inline-flex; height: 3rem; width: 3rem; align-items: center; justify-content: center;
	border-radius: 50%; background: rgba(255,255,255,0.1); color: var(--slh-teal);
}
.slh-stats-band__value { margin: 0 0 0.25rem; font-size: 2.25rem; font-weight: 700; color: #fff; }
.slh-stats-band__label { margin: 0; font-size: 0.875rem; color: rgba(255,255,255,0.6); }

/* Why choose us */
.slh-why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.slh-why-card {
	display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem; background: #fff;
	border: 1px solid #f3f4f6; border-radius: 0.75rem; transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.slh-why-card:hover { border-color: rgba(27,58,107,0.2); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08); }
.slh-why-card__icon {
	flex-shrink: 0; height: 2.75rem; width: 2.75rem; border-radius: 0.5rem; background: rgba(27,58,107,0.08);
	color: var(--slh-navy); display: flex; align-items: center; justify-content: center; transition: background 0.3s ease, color 0.3s ease;
}
.slh-why-card:hover .slh-why-card__icon { background: var(--slh-navy); color: #fff; }
.slh-why-card h3 { color: var(--slh-navy); font-size: 0.9rem; margin-bottom: 0.35rem; }
.slh-why-card p { color: #6b7280; font-size: 0.8rem; margin-bottom: 0; }

/* News grid / cards */
.slh-news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.slh-news-card { overflow: hidden; display: flex; flex-direction: column; }
.slh-news-card__bar { height: 6px; width: 100%; background: linear-gradient(to right, var(--slh-navy), var(--slh-teal)); }
.slh-news-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.slh-news-card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.slh-badge {
	display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.1rem 0.6rem;
	border-radius: 999px; font-size: 0.7rem; font-weight: 600; background: #dbeafe; color: #1447e6;
}
.slh-badge--activity { background: rgba(45,122,70,0.12); color: var(--slh-green); }
.slh-news-card__date { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.7rem; color: #9ca3af; }
.slh-news-card__body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.slh-news-card__body h3 a:hover { color: var(--slh-green); }
.slh-news-card__body p { color: #6b7280; font-size: 0.875rem; flex: 1; }

/* Filter tabs */
.slh-filter-tabs { display: flex; gap: 0.6rem; margin-bottom: 2rem; flex-wrap: wrap; }
.slh-filter-tabs a {
	padding: 0.5rem 1.1rem; border-radius: 999px; border: 1px solid var(--slh-border);
	font-weight: 600; font-size: 0.85rem; color: #444;
}
.slh-filter-tabs a.is-active, .slh-filter-tabs a:hover { background: var(--slh-navy); color: #fff; border-color: var(--slh-navy); }

.slh-pagination { display: flex; justify-content: center; gap: 0.75rem; margin-top: 2.5rem; }
.slh-pagination .page-numbers { padding: 0.5rem 0.9rem; border-radius: var(--slh-radius-sm); border: 1px solid var(--slh-border); font-weight: 600; font-size: 0.85rem; }
.slh-pagination .current { background: var(--slh-navy); color: #fff; border-color: var(--slh-navy); }

/* CTA */
.slh-cta { position: relative; overflow: hidden; background: var(--slh-navy); padding: 5rem 0; text-align: center; }
.slh-cta__dots { position: absolute; inset: 0; opacity: 0.05; background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0); background-size: 36px 36px; }
.slh-cta__glow { position: absolute; height: 18rem; width: 18rem; border-radius: 50%; filter: blur(64px); }
.slh-cta__glow--green { top: -5rem; right: -5rem; background: rgba(45,122,70,0.2); }
.slh-cta__glow--teal { bottom: -5rem; left: -5rem; background: rgba(0,207,207,0.1); }
.slh-cta__inner { position: relative; z-index: 10; max-width: 56rem; }
.slh-cta h2 { font-size: 1.875rem; color: #fff; margin-bottom: 1rem; }
.slh-cta p { color: rgba(255,255,255,0.7); max-width: 40rem; margin: 0 auto 2.5rem; font-size: 1.125rem; }
@media (min-width: 640px) { .slh-cta h2 { font-size: 2.25rem; } }
@media (min-width: 768px) { .slh-cta h2 { font-size: 3rem; } }
.slh-cta .slh-hero__actions { justify-content: center; }
.slh-cta__badges { display: flex; justify-content: center; gap: 2rem; margin-top: 3rem; flex-wrap: wrap; padding: 0; }
.slh-cta__badges li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.5); }
.slh-cta__badges li span { height: 4px; width: 4px; border-radius: 50%; background: var(--slh-green); display: block; }

/* About page: hero */
.slh-icon--lg { width: 1.75rem; height: 1.75rem; }
.slh-eyebrow-solo { color: var(--slh-teal); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.slh-eyebrow-solo--teal { color: var(--slh-teal); }
.slh-about-hero { position: relative; background: var(--slh-navy); padding: 7rem 0 4rem; overflow: hidden; }
.slh-about-hero__dots { position: absolute; inset: 0; opacity: 0.05; background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0); background-size: 36px 36px; }
.slh-about-hero__glow { position: absolute; border-radius: 50%; filter: blur(64px); }
.slh-about-hero__glow--green { top: -5rem; right: -5rem; height: 20rem; width: 20rem; background: rgba(45,122,70,0.15); }
.slh-about-hero__glow--teal { bottom: -2.5rem; left: -5rem; height: 16rem; width: 16rem; background: rgba(0,207,207,0.1); }
.slh-about-hero__row { position: relative; z-index: 10; display: flex; flex-direction: column; gap: 1.5rem; }
.slh-about-hero__row h1 { font-weight: 700; font-size: 2.25rem; color: #fff; margin-bottom: 0.75rem; }
.slh-about-hero__lede { color: rgba(255,255,255,0.7); font-size: 1.125rem; max-width: 36rem; margin: 0; }
@media (min-width: 640px) {
	.slh-about-hero__row h1 { font-size: 3rem; }
}
.slh-about-hero__badge { display: none; align-items: center; gap: 1rem; flex-shrink: 0; }
.slh-about-hero__badge-logo { height: 5rem; width: 5rem; border-radius: 50%; overflow: hidden; background: #fff; border: 4px solid rgba(255,255,255,0.2); box-shadow: var(--slh-shadow-lg); }
.slh-about-hero__badge-logo img { width: 100%; height: 100%; object-fit: cover; }
.slh-about-hero__badge-name { color: #fff; font-weight: 700; font-size: 0.875rem; margin: 0; }
.slh-about-hero__badge-loc { display: flex; align-items: center; gap: 0.3rem; color: var(--slh-teal); font-size: 0.75rem; margin: 0.15rem 0 0; }
.slh-about-hero__wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.slh-about-hero__wave svg { width: 100%; height: 30px; display: block; }
@media (min-width: 768px) {
	.slh-about-hero__row { flex-direction: row; align-items: center; justify-content: space-between; }
	.slh-about-hero__badge { display: flex; }
}

/* About page: Our Story */
.slh-story { display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: center; }
.slh-story__media { position: relative; }
.slh-story__panel { position: relative; background: var(--slh-bg); border: 1px solid #f3f4f6; border-radius: 1rem; padding: 2rem; }
.slh-story__panel-logo { margin: 0 auto 2rem; height: 11rem; width: 11rem; border-radius: 50%; overflow: hidden; background: #fff; box-shadow: var(--slh-shadow-lg); border: 4px solid rgba(27,58,107,0.1); }
.slh-story__panel-logo img { width: 100%; height: 100%; object-fit: cover; }
.slh-story__chips { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.slh-story__chip { background: #fff; border-radius: 0.75rem; padding: 1rem; border: 1px solid #f3f4f6; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.slh-story__chip p { font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--slh-green); margin: 0 0 0.25rem; }
.slh-story__chip span { font-size: 0.875rem; font-weight: 600; color: var(--slh-navy); }
.slh-story__blob { position: absolute; border-radius: 50%; z-index: -1; }
.slh-story__blob--green { bottom: -1rem; right: -1rem; height: 6rem; width: 6rem; background: rgba(45,122,70,0.1); }
.slh-story__blob--teal { top: -1rem; left: -1rem; height: 4rem; width: 4rem; background: rgba(0,207,207,0.1); }
.slh-story__text p { color: #4b5563; }
.slh-story__focus-label { font-size: 0.875rem; font-weight: 600; color: var(--slh-navy); margin-bottom: 0.75rem; }
.slh-checklist--icon { display: flex; flex-direction: column; gap: 0.625rem; margin: 0 0 1.5rem; padding: 0; }
.slh-checklist--icon li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: #4b5563; }
.slh-checklist--icon svg { color: var(--slh-green); margin-top: 0.15em; flex-shrink: 0; }
.slh-checklist--icon-green svg { color: var(--slh-green); }

/* About page: Vision & Mission */
.slh-vm-card { position: relative; background: #fff; border: 1px solid #f3f4f6; border-radius: 1rem; padding: 2rem; box-shadow: 0 1px 2px rgba(0,0,0,0.04); overflow: hidden; height: 100%; }
.slh-vm-card--navy { background: var(--slh-navy); border-color: transparent; color: #fff; }
.slh-vm-card__dots { position: absolute; inset: 0; opacity: 0.05; background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0); background-size: 28px 28px; }
.slh-vm-card__glow { position: absolute; height: 10rem; width: 10rem; border-radius: 50%; filter: blur(24px); }
.slh-vm-card__glow--teal { top: -2.5rem; right: -2.5rem; background: rgba(0,207,207,0.1); }
.slh-vm-card__glow--green { bottom: -2.5rem; right: -2.5rem; background: rgba(45,122,70,0.05); }
.slh-vm-card__body { position: relative; z-index: 10; height: 100%; }
.slh-vm-card__icon { display: inline-flex; align-items: center; justify-content: center; height: 3rem; width: 3rem; border-radius: 0.75rem; margin-bottom: 1.25rem; }
.slh-vm-card__icon svg { width: 1.5rem; height: 1.5rem; }
.slh-vm-card__icon--teal { background: rgba(0,207,207,0.15); border: 1px solid rgba(0,207,207,0.2); color: var(--slh-teal); }
.slh-vm-card__icon--green { background: rgba(45,122,70,0.1); border: 1px solid rgba(45,122,70,0.2); color: var(--slh-green); }
.slh-vm-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.slh-vm-card--navy h3 { color: #fff; }
.slh-vm-card:not(.slh-vm-card--navy) h3 { color: var(--slh-navy); }
.slh-vm-card__quote { margin: 0 0 1.5rem; padding: 1rem; border-radius: 0.75rem; font-style: italic; font-size: 0.875rem; line-height: 1.6; background: var(--slh-bg); border: 1px solid #e5e7eb; color: #374151; }
.slh-vm-card__quote--dark { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.slh-vm-card .slh-checklist--icon { margin-bottom: 0; }
.slh-vm-card--navy .slh-checklist--icon svg { color: var(--slh-teal); }
.slh-vm-card--navy .slh-checklist--icon span { color: rgba(255,255,255,0.8); }
.slh-vm-card__foot { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid #f3f4f6; font-size: 0.75rem; color: #9ca3af; }
.slh-vm-card__foot--dark { border-top-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
.slh-vm-card__foot.slh-vm-card__foot { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.slh-tag--pill { display: inline-block; background: rgba(45,122,70,0.08); border: 1px solid rgba(45,122,70,0.15); color: var(--slh-green); font-size: 0.75rem; font-weight: 500; padding: 0.25rem 0.75rem; border-radius: 999px; margin: 0; }

/* About page: Core Values */
.slh-value-card { position: relative; background: #fff; border: 1px solid #f3f4f6; border-radius: 1rem; padding: 1.5rem; display: flex; flex-direction: column; overflow: hidden; transition: box-shadow 0.3s ease, transform 0.3s ease; }
.slh-value-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); transform: translateY(-4px); }
.slh-value-card__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.slh-value-card__icon {
	flex-shrink: 0; height: 2.75rem; width: 2.75rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center;
	background: var(--v-bg); color: var(--v-color); transition: transform 0.3s ease;
}
.slh-value-card__icon svg { width: 1.25rem; height: 1.25rem; }
.slh-value-card:hover .slh-value-card__icon { transform: scale(1.1); }
.slh-value-card__head h3 { color: var(--slh-navy); font-size: 1rem; margin: 0; }
.slh-value-card__num-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.slh-value-card__num { font-size: 3rem; font-weight: 900; line-height: 1; color: color-mix(in srgb, var(--v-color) 9%, transparent); }
.slh-value-card__rule { height: 1px; flex: 1; background: #f3f4f6; }
.slh-dotlist { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; margin: 0; padding: 0; }
.slh-dotlist li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: #6b7280; }
.slh-dotlist li span { margin-top: 0.4em; height: 0.35rem; width: 0.35rem; border-radius: 50%; background: var(--v-color); flex-shrink: 0; }
.slh-value-card__bar { display: block; margin-top: 1.25rem; height: 2px; width: 0; border-radius: 999px; background: var(--v-color); transition: width 0.5s ease; }
.slh-value-card:hover .slh-value-card__bar { width: 100%; }

/* About page: Philosophy */
.slh-philosophy-row { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; }
.slh-philosophy-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.slh-philosophy-card { background: #fff; border: 1px solid #f3f4f6; border-radius: 0.75rem; padding: 1.5rem; transition: box-shadow 0.3s ease, border-color 0.3s ease; }
.slh-philosophy-card:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.08); border-color: rgba(27,58,107,0.2); }
.slh-philosophy-card__head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.slh-philosophy-card__icon { flex-shrink: 0; height: 2.25rem; width: 2.25rem; border-radius: 0.5rem; background: rgba(27,58,107,0.08); color: var(--slh-navy); display: flex; align-items: center; justify-content: center; }
.slh-philosophy-card__icon svg { width: 1.25rem; height: 1.25rem; }
.slh-philosophy-card h3 { color: var(--slh-navy); font-size: 0.875rem; margin: 0; }
.slh-philosophy-card p { color: #6b7280; font-size: 0.875rem; margin: 0; }
.slh-goal-panel { position: relative; background: var(--slh-navy); border-radius: 1rem; padding: 2rem; color: #fff; overflow: hidden; }
.slh-goal-panel__dots { position: absolute; inset: 0; opacity: 0.05; background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0); background-size: 24px 24px; }
.slh-goal-panel__inner { position: relative; z-index: 10; }
.slh-goal-panel h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.slh-goal-panel__list { display: flex; flex-direction: column; gap: 1rem; margin: 0 0 2rem; padding: 0; }
.slh-goal-panel__list li { display: flex; align-items: center; gap: 1rem; font-size: 0.875rem; color: rgba(255,255,255,0.85); }
.slh-goal-panel__list li span { flex-shrink: 0; height: 2rem; width: 2rem; border-radius: 50%; background: var(--slh-green); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: #fff; }
.slh-goal-panel__quote { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.5rem; margin: 0; font-size: 0.875rem; font-style: italic; color: rgba(255,255,255,0.7); }

/* About page: Who We Serve */
.slh-serve-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.slh-serve-card { text-align: center; background: var(--slh-bg); border: 1px solid transparent; border-radius: 0.75rem; padding: 1.5rem; transition: all 0.3s ease; }
.slh-serve-card:hover { border-color: rgba(27,58,107,0.15); background: #fff; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08); }
.slh-serve-card__icon {
	margin: 0 auto 1rem; display: flex; height: 3.5rem; width: 3.5rem; align-items: center; justify-content: center;
	border-radius: 50%; background: rgba(27,58,107,0.08); color: var(--slh-navy); transition: background 0.3s ease, color 0.3s ease;
}
.slh-serve-card:hover .slh-serve-card__icon { background: var(--slh-navy); color: #fff; }
.slh-serve-card h3 { color: var(--slh-navy); font-size: 0.875rem; margin-bottom: 0.5rem; }
.slh-serve-card p { color: #6b7280; font-size: 0.75rem; margin: 0; }

/* Page hero (About/Services/Support/Contact/News/Single) */
.slh-page-hero { background: var(--slh-navy); color: #fff; padding: 3.5rem 0; text-align: center; }
.slh-page-hero h1 { font-size: clamp(1.75rem, 3.5vw, 2.4rem); margin-bottom: 0.4rem; }
.slh-page-hero p { color: #cdd8ea; margin-bottom: 0; }
.slh-page-hero--article { text-align: left; }
.slh-page-hero--article .slh-badge { position: static; display: inline-block; margin-bottom: 0.75rem; }
.slh-page-hero--article time { display: block; color: #cdd8ea; font-size: 0.85rem; margin-top: 0.5rem; }
.slh-btn--on-dark { border-color: rgba(255,255,255,0.5); color: #fff; }
.slh-btn--on-dark:hover { background: rgba(255,255,255,0.12); }

/* About page extras */
.slh-vm-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.slh-values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }

/* Services page: hero */
.slh-services-hero { position: relative; background: var(--slh-navy); padding: 7rem 0 4rem; overflow: hidden; text-align: center; }
.slh-services-hero__dots { position: absolute; inset: 0; opacity: 0.05; background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0); background-size: 36px 36px; }
.slh-services-hero__glow { position: absolute; border-radius: 50%; filter: blur(64px); }
.slh-services-hero__glow--green { top: -5rem; right: -5rem; height: 20rem; width: 20rem; background: rgba(45,122,70,0.15); }
.slh-services-hero__glow--teal { bottom: -2.5rem; left: -5rem; height: 16rem; width: 16rem; background: rgba(0,207,207,0.1); }
.slh-services-hero__inner { position: relative; z-index: 10; }
.slh-services-hero__inner h1 { font-weight: 700; font-size: 2.25rem; color: #fff; margin-bottom: 1rem; }
.slh-services-hero__lede { color: rgba(255,255,255,0.7); font-size: 1.125rem; max-width: 42rem; margin: 0 auto; }
.slh-services-hero__tags { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 2rem; padding: 0; }
.slh-services-hero__tags li { display: flex; align-items: center; gap: 0.5rem; }
.slh-services-hero__tag-dot { height: 4px; width: 4px; border-radius: 50%; background: rgba(255,255,255,0.3); display: block; }
.slh-services-hero__tag-text { color: rgba(255,255,255,0.6); font-size: 0.75rem; font-weight: 500; }
.slh-services-hero__wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.slh-services-hero__wave svg { width: 100%; height: 30px; display: block; }
@media (min-width: 640px) {
	.slh-services-hero__inner h1 { font-size: 3rem; }
}

/* Services page: card grid */
.slh-svc-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.slh-svc-card { background: #fff; border: 1px solid #f3f4f6; border-radius: 1rem; overflow: hidden; display: flex; flex-direction: column; height: 100%; transition: box-shadow 0.3s ease, transform 0.3s ease; scroll-margin-top: 6rem; }
.slh-svc-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); transform: translateY(-4px); }
.slh-svc-card__bar { height: 6px; width: 100%; background: var(--s-color); }
.slh-svc-card__body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.slh-svc-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.slh-svc-card__icon { height: 3rem; width: 3rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; background: var(--s-bg); color: var(--s-color); transition: transform 0.3s ease; }
.slh-svc-card__icon svg { width: 1.5rem; height: 1.5rem; }
.slh-svc-card:hover .slh-svc-card__icon { transform: scale(1.1); }
.slh-svc-card__num { font-size: 2.25rem; font-weight: 900; color: color-mix(in srgb, var(--s-color) 8%, transparent); }
.slh-svc-card__body h3 { font-size: 1.125rem; color: var(--slh-navy); margin-bottom: 0.5rem; line-height: 1.3; }
.slh-svc-card__body > p { color: #6b7280; font-size: 0.875rem; flex: 1; margin-bottom: 1.25rem; }
.slh-svc-card__list { display: flex; flex-direction: column; gap: 0.4rem; margin: 0 0 1.25rem; padding: 0; }
.slh-svc-card__list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.75rem; color: #6b7280; }
.slh-svc-card__list li span { margin-top: 0.4em; height: 0.35rem; width: 0.35rem; border-radius: 50%; background: var(--s-color); flex-shrink: 0; }
.slh-svc-card__more { padding-left: 0.85rem; color: #9ca3af; font-size: 0.75rem; }
.slh-svc-card__btn {
	margin-top: auto; display: inline-flex; align-items: center; gap: 0.5rem; align-self: flex-start;
	border-radius: 0.5rem; padding: 0.6rem 1rem; font-size: 0.875rem; font-weight: 700; color: #fff;
	background: var(--s-color); box-shadow: 0 1px 2px rgba(0,0,0,0.06); transition: box-shadow 0.2s ease;
}
.slh-svc-card__btn:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.15); }

/* News & Activities: hero */
.slh-news-hero { position: relative; background: var(--slh-navy); padding: 7rem 0 4rem; overflow: hidden; }
.slh-news-hero__dots { position: absolute; inset: 0; opacity: 0.05; background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0); background-size: 36px 36px; }
.slh-news-hero__glow { position: absolute; border-radius: 50%; filter: blur(64px); }
.slh-news-hero__glow--green { top: -5rem; right: -5rem; height: 20rem; width: 20rem; background: rgba(45,122,70,0.15); }
.slh-news-hero__glow--teal { bottom: -2.5rem; left: -5rem; height: 16rem; width: 16rem; background: rgba(0,207,207,0.1); }
.slh-news-hero__inner { position: relative; z-index: 10; }
.slh-news-hero__inner h1 { font-weight: 700; font-size: 2.25rem; color: #fff; margin-bottom: 1rem; }
.slh-news-hero__lede { color: rgba(255,255,255,0.7); font-size: 1.125rem; max-width: 42rem; margin: 0; }
.slh-news-hero__wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.slh-news-hero__wave svg { width: 100%; height: 30px; display: block; }
@media (min-width: 640px) {
	.slh-news-hero__inner h1 { font-size: 3rem; }
}

/* News & Activities: filter bar */
.slh-news-filters { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.slh-news-filters__tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.slh-news-filter-btn {
	display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 999px; padding: 0.5rem 1rem;
	font-size: 0.875rem; font-weight: 600; background: #fff; border: 1px solid #e5e7eb; color: #4b5563; transition: all 0.2s ease;
}
.slh-news-filter-btn:hover { border-color: rgba(27,58,107,0.3); color: var(--slh-navy); }
.slh-news-filter-btn.is-active { background: var(--slh-navy); border-color: var(--slh-navy); color: #fff; box-shadow: 0 4px 6px -1px rgba(27,58,107,0.2); }
.slh-news-filter-count { border-radius: 999px; padding: 0.05rem 0.4rem; font-size: 0.7rem; font-weight: 700; background: #f3f4f6; color: #6b7280; }
.slh-news-filter-btn.is-active .slh-news-filter-count { background: rgba(255,255,255,0.2); color: #fff; }
.slh-news-filters__count { margin: 0; font-size: 0.875rem; color: #9ca3af; }
.slh-news-filters__count strong { color: var(--slh-navy); }
@media (min-width: 640px) {
	.slh-news-filters { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* News & Activities: article list */
.slh-news-list { display: flex; flex-direction: column; gap: 1.5rem; }
.slh-news-item {
	display: flex; flex-direction: column; background: #fff; border: 1px solid #f3f4f6; border-radius: 1rem;
	overflow: hidden; transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.slh-news-item:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); transform: translateY(-4px); }
.slh-news-item__bar { height: 6px; width: 100%; flex-shrink: 0; background: linear-gradient(to right, var(--slh-navy), var(--slh-teal)); }
.slh-news-item__body { padding: 1.5rem; flex: 1; }
.slh-news-item__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.slh-news-item__meta-bit { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.75rem; color: #9ca3af; }
.slh-news-item__body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.slh-news-item__body h3 a:hover { color: var(--slh-green); }
.slh-news-item__body p { color: #6b7280; font-size: 0.875rem; margin-bottom: 1.25rem; }
.slh-news-item__link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; font-weight: 700; color: var(--slh-green); }
.slh-news-item__link:hover { color: var(--slh-navy); }
@media (min-width: 768px) {
	.slh-news-item { flex-direction: row; }
	.slh-news-item__bar { width: 6px; height: auto; }
	.slh-news-item__body { padding: 2rem; }
	.slh-news-item__body h3 { font-size: 1.5rem; }
}

/* Support page: hero */
.slh-support-hero { position: relative; background: var(--slh-navy); padding: 7rem 0 4rem; overflow: hidden; }
.slh-support-hero__dots { position: absolute; inset: 0; opacity: 0.05; background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0); background-size: 36px 36px; }
.slh-support-hero__glow { position: absolute; border-radius: 50%; filter: blur(64px); }
.slh-support-hero__glow--green { top: -5rem; right: -5rem; height: 20rem; width: 20rem; background: rgba(45,122,70,0.15); }
.slh-support-hero__glow--teal { bottom: -2.5rem; left: -5rem; height: 16rem; width: 16rem; background: rgba(0,207,207,0.1); }
.slh-support-hero__inner { position: relative; z-index: 10; }
.slh-support-hero__inner h1 { font-weight: 700; font-size: 2.25rem; color: #fff; margin-bottom: 1rem; }
.slh-support-hero__lede { color: rgba(255,255,255,0.7); font-size: 1.125rem; max-width: 42rem; margin: 0; }
.slh-support-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.slh-support-hero__wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.slh-support-hero__wave svg { width: 100%; height: 30px; display: block; }
@media (min-width: 640px) {
	.slh-support-hero__inner h1 { font-size: 3rem; }
}
.slh-ghost-btn {
	display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 0.75rem;
	background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
	padding: 0.6rem 1rem; font-size: 0.875rem; font-weight: 500; color: #fff; transition: background 0.2s ease;
}
.slh-ghost-btn:hover { background: rgba(255,255,255,0.2); }
.slh-ghost-btn svg { color: var(--slh-teal); }

/* Support page: body wrapper + FAQ */
.slh-support-body { background: var(--slh-bg); padding-block: 4rem; }
.slh-support-stack { display: flex; flex-direction: column; gap: 4rem; }
.slh-faq-cats { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0 2rem; }
.slh-faq-cat-btn {
	display: inline-flex; align-items: center; gap: 0.4rem; border-radius: 999px; padding: 0.5rem 1rem;
	font-size: 0.875rem; font-weight: 600; background: #fff; border: 1px solid #e5e7eb; color: #4b5563; cursor: pointer; transition: all 0.2s ease;
}
.slh-faq-cat-btn:hover { border-color: rgba(27,58,107,0.4); color: var(--slh-navy); }
.slh-faq-cat-btn.is-active { background: var(--slh-navy); border-color: var(--slh-navy); color: #fff; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.15); }
.slh-faq-cat-count { border-radius: 999px; padding: 0.05rem 0.4rem; font-size: 0.7rem; font-weight: 700; background: #f3f4f6; color: #6b7280; }
.slh-faq-cat-btn.is-active .slh-faq-cat-count { background: rgba(255,255,255,0.2); color: #fff; }

.slh-faq2-list { display: flex; flex-direction: column; gap: 0.75rem; }
.slh-faq2 { border-radius: 0.75rem; border: 1px solid #f3f4f6; background: #fff; overflow: hidden; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.slh-faq2:hover { border-color: #e5e7eb; }
.slh-faq2[open] { border-color: rgba(27,58,107,0.3); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.slh-faq2 summary { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; cursor: pointer; list-style: none; }
.slh-faq2 summary::-webkit-details-marker { display: none; }
.slh-faq2__icon {
	flex-shrink: 0; height: 1.75rem; width: 1.75rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
	margin-top: 0.1rem; background: var(--slh-bg); color: var(--slh-navy); transition: background 0.2s ease, color 0.2s ease;
}
.slh-faq2:hover .slh-faq2__icon { background: rgba(27,58,107,0.1); }
.slh-faq2[open] .slh-faq2__icon { background: var(--slh-navy); color: #fff; }
.slh-faq2__q { flex: 1; font-weight: 600; font-size: 0.875rem; line-height: 1.4; color: #374151; transition: color 0.2s ease; }
.slh-faq2:hover .slh-faq2__q { color: var(--slh-navy); }
.slh-faq2[open] .slh-faq2__q { color: var(--slh-navy); }
.slh-faq2__chevron { flex-shrink: 0; color: #9ca3af; margin-top: 0.15rem; transition: transform 0.3s ease, color 0.2s ease; }
.slh-faq2[open] .slh-faq2__chevron { color: var(--slh-navy); transform: rotate(180deg); }
.slh-faq2__answer { padding: 0 1.25rem 1.25rem 4rem; }
.slh-faq2__answer::before { content: ''; display: block; height: 1px; background: #f3f4f6; margin-bottom: 1rem; }
.slh-faq2__answer p { font-size: 0.875rem; color: #4b5563; margin: 0; }

/* Support page: contact form + sidebar */
.slh-support-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 2.5rem; }
.slh-support-form-card { background: #fff; border-radius: 1rem; border: 1px solid #f3f4f6; padding: 2rem; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.slh-support-form-card__head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.slh-support-form-card__icon { flex-shrink: 0; height: 2.5rem; width: 2.5rem; border-radius: 0.75rem; background: rgba(27,58,107,0.08); color: var(--slh-navy); display: flex; align-items: center; justify-content: center; }
.slh-support-form-card__head h3 { color: var(--slh-navy); font-size: 1rem; margin-bottom: 0.15rem; }
.slh-support-form-card__head p { color: #9ca3af; font-size: 0.75rem; margin: 0; }

.slh-form2 { display: flex; flex-direction: column; gap: 1rem; }
.slh-form2__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.slh-form2 label { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.75rem; font-weight: 600; color: #374151; }
.slh-form2__req { color: #f87171; }
.slh-form2 input, .slh-form2 select, .slh-form2 textarea {
	font: inherit; font-size: 0.875rem; color: #374151; border-radius: 0.75rem; border: 1px solid #e5e7eb;
	background: var(--slh-bg); padding: 0.75rem 1rem; transition: border-color 0.2s ease;
}
.slh-form2 input:focus, .slh-form2 select:focus, .slh-form2 textarea:focus { outline: none; border-color: var(--slh-navy); }
.slh-form2 textarea { resize: none; }
.slh-form2__note { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.75rem; color: #9ca3af; margin: 0; }
.slh-form2__note-dot { flex-shrink: 0; margin-top: 0.15rem; height: 0.875rem; width: 0.875rem; border-radius: 50%; background: rgba(45,122,70,0.2); display: flex; align-items: center; justify-content: center; }
.slh-form2__note-dot span { height: 0.375rem; width: 0.375rem; border-radius: 50%; background: var(--slh-green); display: block; }
.slh-form2__submit {
	width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem; border: none; cursor: pointer;
	border-radius: 0.75rem; background: var(--slh-navy); padding: 0.9rem; font-size: 0.875rem; font-weight: 700; color: #fff;
	box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); transition: background 0.2s ease, box-shadow 0.2s ease;
}
.slh-form2__submit:hover { background: rgba(27,58,107,0.9); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.15); }

.slh-support-side { display: flex; flex-direction: column; gap: 1.25rem; }
.slh-whatsapp-card {
	display: flex; align-items: center; gap: 1rem; border-radius: 1rem; padding: 1.25rem; color: #fff;
	background: var(--slh-whatsapp); box-shadow: 0 10px 15px -3px rgba(37,211,102,0.25); transition: background 0.2s ease;
}
.slh-whatsapp-card:hover { background: #20b558; }
.slh-whatsapp-card__icon { flex-shrink: 0; height: 3rem; width: 3rem; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; }
.slh-whatsapp-card__text { flex: 1; display: flex; flex-direction: column; }
.slh-whatsapp-card__title { font-weight: 700; font-size: 1rem; }
.slh-whatsapp-card__sub { color: rgba(255,255,255,0.8); font-size: 0.75rem; margin-top: 0.1rem; }

.slh-side-card { background: #fff; border-radius: 1rem; border: 1px solid #f3f4f6; padding: 1.5rem; }
.slh-side-card__title { color: var(--slh-navy); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.slh-side-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.slh-side-contact-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.slh-side-contact-list li > span:last-child { display: flex; flex-direction: column; }
.slh-side-contact-list strong { font-size: 0.7rem; font-weight: 600; color: #9ca3af; margin-bottom: 0.1rem; }
.slh-side-contact-list a, .slh-side-contact-list span span { font-size: 0.875rem; color: #374151; }
.slh-side-contact-list a:hover { color: var(--slh-navy); }
.slh-side-contact-list__icon { flex-shrink: 0; height: 2rem; width: 2rem; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; }
.slh-side-contact-list__icon--navy { background: rgba(27,58,107,0.08); color: var(--slh-navy); }
.slh-side-contact-list__icon--green { background: rgba(45,122,70,0.08); color: var(--slh-green); }
.slh-side-contact-list__icon--teal { background: rgba(0,207,207,0.1); color: var(--slh-teal); }

.slh-hours-card { position: relative; background: var(--slh-navy); border-radius: 1rem; padding: 1.5rem; color: #fff; overflow: hidden; }
.slh-hours-card__dots { position: absolute; inset: 0; opacity: 0.05; background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0); background-size: 20px 20px; }
.slh-hours-card__inner { position: relative; z-index: 10; }
.slh-hours-card__head { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.slh-hours-card__head svg { color: var(--slh-teal); }
.slh-hours-card__head h3 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin: 0; }
.slh-hours-card ul { display: flex; flex-direction: column; gap: 0.75rem; margin: 0; padding: 0; }
.slh-hours-card li { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; font-size: 0.75rem; }
.slh-hours-card li > span:first-child { color: rgba(255,255,255,0.7); }
.slh-hours-card__open { font-weight: 600; color: var(--slh-teal); }
.slh-hours-card__closed { font-weight: 600; color: #fca5a5; }
.slh-hours-card__note { margin: 1rem 0 0; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.75rem; color: rgba(255,255,255,0.5); }

.slh-side-links { display: flex; flex-direction: column; gap: 0.25rem; }
.slh-side-links a {
	display: flex; align-items: center; justify-content: space-between; padding: 0.6rem; border-radius: 0.75rem;
	font-size: 0.875rem; font-weight: 500; color: #4b5563; transition: background 0.2s ease, color 0.2s ease;
}
.slh-side-links a:hover { background: var(--slh-bg); color: var(--slh-navy); }
.slh-side-links a svg { opacity: 0; transition: opacity 0.2s ease, transform 0.2s ease; }
.slh-side-links a:hover svg { opacity: 1; transform: translateX(2px); }

/* Contact page: hero */
.slh-contact-hero { position: relative; background: var(--slh-navy); padding: 7rem 0 4rem; overflow: hidden; }
.slh-contact-hero__dots { position: absolute; inset: 0; opacity: 0.05; background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0); background-size: 36px 36px; }
.slh-contact-hero__glow { position: absolute; border-radius: 50%; filter: blur(64px); }
.slh-contact-hero__glow--green { top: -5rem; right: -5rem; height: 20rem; width: 20rem; background: rgba(45,122,70,0.15); }
.slh-contact-hero__glow--teal { bottom: -2.5rem; left: -5rem; height: 16rem; width: 16rem; background: rgba(0,207,207,0.1); }
.slh-contact-hero__inner { position: relative; z-index: 10; }
.slh-contact-hero__inner h1 { font-weight: 700; font-size: 2.25rem; color: #fff; margin-bottom: 1rem; }
.slh-contact-hero__lede { color: rgba(255,255,255,0.7); font-size: 1.125rem; max-width: 42rem; margin: 0; }
.slh-contact-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.slh-contact-hero__wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.slh-contact-hero__wave svg { width: 100%; height: 30px; display: block; }
@media (min-width: 640px) {
	.slh-contact-hero__inner h1 { font-size: 3rem; }
}

/* Contact page: form label icons + confidentiality box */
.slh-form2__label-icon { display: inline-flex; align-items: center; gap: 0.35rem; }
.slh-form2__label-icon svg { color: #9ca3af; }
.slh-form2__optional { color: #9ca3af; font-weight: 400; }
.slh-form2__confidential {
	display: flex; align-items: flex-start; gap: 0.75rem; border-radius: 0.75rem;
	background: var(--slh-bg); border: 1px solid #e5e7eb; padding: 1rem;
}
.slh-form2__confidential p { margin: 0; font-size: 0.75rem; color: #6b7280; line-height: 1.6; }

/* Contact page: info cards */
.slh-info-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.slh-info-card { background: #fff; border: 1px solid #f3f4f6; border-radius: 1rem; padding: 1.25rem; transition: box-shadow 0.3s ease, border-color 0.3s ease; }
.slh-info-card:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.08); border-color: #e5e7eb; }
.slh-info-card__icon {
	height: 2.75rem; width: 2.75rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center;
	background: var(--i-bg); color: var(--i-color); margin-bottom: 0.75rem;
}
.slh-info-card__label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 0.25rem; }
.slh-info-card__value { font-size: 0.875rem; font-weight: 600; color: #1f2937; margin: 0; word-break: break-word; }
.slh-info-card__value--link:hover { text-decoration: underline; }
.slh-info-card__sub { font-size: 0.75rem; color: #9ca3af; margin: 0.15rem 0 0; }

.slh-website-card { display: flex; align-items: center; gap: 1rem; background: var(--slh-navy); border-radius: 1rem; padding: 1.25rem; }
.slh-website-card__icon { flex-shrink: 0; height: 2.75rem; width: 2.75rem; border-radius: 0.75rem; background: rgba(255,255,255,0.1); color: var(--slh-teal); display: flex; align-items: center; justify-content: center; }
.slh-website-card__label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slh-teal); margin: 0 0 0.15rem; }
.slh-website-card__value { font-size: 0.875rem; font-weight: 600; color: #fff; margin: 0; }
.slh-website-card__sub { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin: 0; }

.slh-follow-card__label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #9ca3af; margin: 0 0 1rem; }
.slh-follow-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.slh-follow-item {
	display: flex; align-items: center; gap: 0.75rem; border-radius: 0.75rem; border: 1px solid #f3f4f6;
	padding: 0.6rem; font-size: 0.875rem; font-weight: 500; color: #4b5563; transition: box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.slh-follow-item:hover { border-color: #e5e7eb; box-shadow: 0 1px 2px rgba(0,0,0,0.06); color: #111827; }
.slh-follow-item__icon { flex-shrink: 0; height: 2rem; width: 2rem; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; color: #fff; }
.slh-follow-item__icon svg { width: 1rem; height: 1rem; }

/* Contact page: map */
.slh-map2 { position: relative; border-radius: 1rem; overflow: hidden; border: 1px solid #f3f4f6; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.slh-map2 iframe { display: block; }
.slh-map2__overlay {
	position: absolute; top: 0; left: 0; right: 0; z-index: 10; padding: 1rem;
	background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
	display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.slh-map2__badge { display: flex; align-items: center; gap: 0.5rem; }
.slh-map2__pin { flex-shrink: 0; height: 2rem; width: 2rem; border-radius: 50%; background: var(--slh-navy); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.2); color: #fff; }
.slh-map2__badge span { display: flex; flex-direction: column; }
.slh-map2__badge strong { color: #fff; font-size: 0.875rem; }
.slh-map2__badge em { color: rgba(255,255,255,0.7); font-size: 0.75rem; font-style: normal; }
.slh-map2__link {
	display: inline-flex; align-items: center; gap: 0.4rem; border-radius: 0.5rem; background: rgba(255,255,255,0.9);
	padding: 0.4rem 0.75rem; font-size: 0.75rem; font-weight: 600; color: var(--slh-navy); box-shadow: 0 1px 2px rgba(0,0,0,0.1); transition: background 0.2s ease;
}
.slh-map2__link:hover { background: #fff; }

/* Comments (News & Activities articles) */
.slh-comments { max-width: 760px; margin: 0 auto; padding: 3rem 0; border-top: 1px solid #f3f4f6; }
.slh-comments__title { color: var(--slh-navy); font-size: 1.375rem; margin-bottom: 1.5rem; }
.slh-comments__title span { color: var(--slh-green); }
.slh-comments__closed { color: #9ca3af; font-style: italic; }
.slh-comment-list { display: flex; flex-direction: column; gap: 1.25rem; margin: 0 0 2rem; padding: 0; list-style: none; }
.slh-comment-list .children { list-style: none; margin: 1.25rem 0 0; padding: 0 0 0 3rem; display: flex; flex-direction: column; gap: 1.25rem; }
.slh-comment { display: flex; gap: 1rem; }
.slh-comment__avatar { flex-shrink: 0; }
.slh-comment__avatar img { border-radius: 50%; display: block; }
.slh-comment__body { flex: 1; background: var(--slh-bg); border-radius: var(--slh-radius-lg); padding: 1rem 1.25rem; }
.slh-comment__meta { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.6rem; margin-bottom: 0.4rem; }
.slh-comment__author { font-weight: 700; color: var(--slh-navy); font-size: 0.9rem; }
.slh-comment__date { font-size: 0.75rem; color: var(--slh-muted); }
.slh-comment__pending { font-size: 0.8rem; color: var(--slh-green); font-style: italic; margin: 0 0 0.5rem; }
.slh-comment__text p:last-child { margin-bottom: 0; }
.slh-comment__reply { margin-top: 0.5rem; }
.slh-comment__reply a { font-size: 0.8rem; font-weight: 700; color: var(--slh-green); }
.slh-comment__reply a:hover { color: var(--slh-navy); }
.slh-comment-form { max-width: none; }
.slh-comment-form #reply-title { color: var(--slh-navy); font-size: 1.125rem; margin-bottom: 1rem; }
.slh-comment-form .comment-notes,
.slh-comment-form .comment-form-cookies-consent { font-size: 0.8rem; color: var(--slh-muted); }
.slh-comment-form .comment-form-cookies-consent { display: flex; align-items: center; gap: 0.5rem; }
.slh-comment-form #cancel-comment-reply-link { display: inline-block; margin-left: 0.75rem; font-size: 0.8rem; color: var(--slh-muted); }

/* Support page FAQ */
.slh-faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; max-width: 760px; margin-inline: auto; }
.slh-faq { background: #fff; border: 1px solid var(--slh-border); border-radius: var(--slh-radius); padding: 0.25rem 1.5rem; }
.slh-faq[hidden] { display: none; }
.slh-faq summary { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 0; cursor: pointer; font-weight: 700; color: var(--slh-navy); list-style: none; }
.slh-faq summary::-webkit-details-marker { display: none; }
.slh-faq__icon { font-size: 1.3rem; color: var(--slh-green); transition: transform 0.2s ease; }
.slh-faq[open] .slh-faq__icon { transform: rotate(45deg); }
.slh-faq__answer { padding-bottom: 1.25rem; color: #444; font-size: 0.92rem; }
.slh-faq__pending { color: var(--slh-muted); font-style: italic; }
.slh-form__note { font-size: 0.8rem; color: var(--slh-muted); margin: -0.5rem 0 0; }

/* Contact page extras */
.slh-contact-list__note { display: block; font-size: 0.78rem; color: var(--slh-muted); }
.slh-social--inline { margin-top: 0.75rem; }
.slh-contact-info h3 { margin-top: 2rem; color: var(--slh-navy); font-size: 1rem; }
.slh-map { border-radius: var(--slh-radius-lg); overflow: hidden; box-shadow: var(--slh-shadow); }
.slh-map__caption { text-align: center; margin-top: 1rem; color: #555; font-size: 0.9rem; }

.slh-page-content { padding: 3.5rem 0; max-width: 820px; margin-inline: auto; }
.slh-page-content h2 { color: var(--slh-navy); margin-top: 1.5em; }
.slh-page-content img { border-radius: var(--slh-radius-lg); margin-block: 1.5rem; }

.slh-single__thumb { padding-top: 2rem; }
.slh-single__thumb img { border-radius: var(--slh-radius-lg); width: 100%; object-fit: cover; max-height: 480px; }
.slh-single__content { padding-block: 2.5rem; max-width: 760px; }
.slh-single__back { padding-bottom: 3rem; }

/* Contact */
.slh-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.slh-contact-list { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 1rem; }
.slh-contact-list li { display: flex; flex-direction: column; gap: 0.15rem; }
.slh-contact-list strong { color: var(--slh-navy); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.03em; }
.slh-form { display: flex; flex-direction: column; gap: 1.1rem; background: var(--slh-bg); padding: 2rem; border-radius: var(--slh-radius-lg); }
.slh-form label { display: flex; flex-direction: column; gap: 0.4rem; font-weight: 600; font-size: 0.9rem; color: #333; }
.slh-form input, .slh-form textarea, .slh-form select {
	font: inherit; padding: 0.7rem 0.9rem; border-radius: var(--slh-radius-sm);
	border: 1px solid var(--slh-border); background: #fff;
}
.slh-form input:focus, .slh-form textarea:focus, .slh-form select:focus { outline: 2px solid var(--slh-navy-soft); outline-offset: 1px; }

/* Footer */
.slh-footer { position: relative; background: #fff; color: #6b7280; border-top: 1px solid #e5e7eb; }
.slh-footer__hairline { height: 2px; background: linear-gradient(to right, var(--slh-navy), var(--slh-teal), var(--slh-green)); }
.slh-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-block: 3.5rem; }
.slh-footer__brand-link { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.slh-footer__title { font-family: var(--slh-font-serif); font-weight: 400; color: var(--slh-navy); letter-spacing: 0.02em; font-size: 0.95rem; margin-bottom: 0; }
.slh-footer__subtitle { font-size: 0.625rem; font-weight: 500; color: var(--slh-green); }
.slh-footer__desc { font-size: 0.875rem; color: #6b7280; margin-bottom: 0.5rem; }
.slh-footer__motto { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slh-navy); margin-bottom: 1.5rem; }
.slh-social { display: flex; gap: 0.5rem; }
.slh-social a {
	width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
	border-radius: 0.65rem; background: #f3f4f6; color: #6b7280; transition: all 0.2s ease;
}
.slh-social a svg { width: 14px; height: 14px; }
.slh-social a:hover { background: var(--slh-navy); color: #fff; }
.slh-footer__col h3 {
	display: flex; align-items: center; gap: 0.5rem; color: var(--slh-navy); font-size: 0.7rem;
	font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem;
}
.slh-footer__col h3 span { height: 1px; width: 1.5rem; background: #e5e7eb; display: block; }
.slh-footer-list { display: flex; flex-direction: column; gap: 0.65rem; }
.slh-footer-list a { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: #6b7280; }
.slh-footer-list a:hover { color: var(--slh-navy); }
.slh-footer-list a span { height: 4px; width: 4px; border-radius: 50%; background: #d1d5db; flex-shrink: 0; display: block; }
.slh-footer-list a:hover span { background: var(--slh-green); }
.slh-footer-list--contact { gap: 1rem; }
.slh-footer-list--contact li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: #6b7280; }
.slh-footer-list--contact li svg { color: var(--slh-green); flex-shrink: 0; margin-top: 0.15em; }
.slh-footer-list--contact a:hover { color: var(--slh-navy); }
.slh-footer__bottom-wrap { border-top: 1px solid #f3f4f6; background: rgba(249,250,251,0.6); }
.slh-footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-block: 1rem; flex-wrap: wrap; gap: 0.75rem; }
.slh-footer__bottom p { margin: 0; font-size: 0.75rem; color: #9ca3af; }
.slh-footer-bottom-list { display: flex; gap: 1rem; }
.slh-footer-bottom-list a { font-size: 0.75rem; color: #9ca3af; }
.slh-footer-bottom-list a:hover { color: var(--slh-navy); }

/* WhatsApp floating button */
.slh-whatsapp-fab {
	position: fixed; bottom: 1.5rem; right: 1.5rem; width: 56px; height: 56px;
	background: var(--slh-whatsapp); border-radius: 50%; display: flex; align-items: center; justify-content: center;
	box-shadow: var(--slh-shadow-lg); z-index: 90;
}
.slh-whatsapp-fab svg { width: 28px; height: 28px; color: #fff; }
.slh-whatsapp-fab:hover { transform: scale(1.06); }

.slh-404 { text-align: center; padding: 6rem 0; }
.slh-404 h1 { color: var(--slh-navy); font-size: 2.5rem; }

/* Dark theme (toggled via the header sun/moon button, data-theme="dark" on <html>) */
[data-theme="dark"] body { background: var(--slh-navy-dark); color: var(--slh-navy-tint); }
[data-theme="dark"] .slh-header { background: rgba(12,24,41,0.95); }
[data-theme="dark"] .slh-brand__name { color: #fff; }
[data-theme="dark"] .slh-nav-list a { color: var(--slh-navy-tint); }
[data-theme="dark"] .slh-nav-list li.current-menu-item > a { color: #fff; }
[data-theme="dark"] .slh-lang__btn,
[data-theme="dark"] .slh-theme-toggle { background: rgba(255,255,255,0.08); color: var(--slh-navy-tint); }
[data-theme="dark"] .slh-lang__btn:hover,
[data-theme="dark"] .slh-theme-toggle:hover { background: rgba(255,255,255,0.15); color: #fff; }
[data-theme="dark"] .slh-header__divider { background: rgba(255,255,255,0.1); }
[data-theme="dark"] .slh-lang__menu { background: var(--slh-navy-panel); border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .slh-lang__menu a { color: var(--slh-navy-tint); }
[data-theme="dark"] .slh-lang__menu a:hover { background: rgba(255,255,255,0.08); }
[data-theme="dark"] .slh-lang__menu a.is-active { background: rgba(0,207,207,0.1); color: var(--slh-teal); }
[data-theme="dark"] .slh-mobile-nav.is-open { background: var(--slh-navy-dark); border-color: rgba(255,255,255,0.1); }

[data-theme="dark"] .slh-section { background: var(--slh-navy-dark); }
[data-theme="dark"] .slh-section--white { background: var(--slh-navy-panel); }
[data-theme="dark"] .slh-section__title,
[data-theme="dark"] .slh-service-card h3,
[data-theme="dark"] .slh-why-card h3,
[data-theme="dark"] .slh-about__panel-name,
[data-theme="dark"] .slh-value-card__head h3,
[data-theme="dark"] .slh-vm-card:not(.slh-vm-card--navy) h3,
[data-theme="dark"] .slh-goal-panel h3,
[data-theme="dark"] .slh-philosophy-card h3,
[data-theme="dark"] .slh-serve-card h3,
[data-theme="dark"] .slh-page-content h2,
[data-theme="dark"] .slh-contact-list strong,
[data-theme="dark"] .slh-faq summary { color: #fff; }
[data-theme="dark"] .slh-section__lede,
[data-theme="dark"] .slh-service-card p,
[data-theme="dark"] .slh-why-card p,
[data-theme="dark"] .slh-about__text,
[data-theme="dark"] .slh-news-card__body p,
[data-theme="dark"] .slh-page-content,
[data-theme="dark"] .slh-page-content p,
[data-theme="dark"] .slh-dotlist li,
[data-theme="dark"] .slh-philosophy-card p,
[data-theme="dark"] .slh-serve-card p,
[data-theme="dark"] .slh-goal-panel__quote,
[data-theme="dark"] .slh-map__caption,
[data-theme="dark"] .slh-faq__answer { color: var(--slh-navy-tint); }
[data-theme="dark"] .slh-card,
[data-theme="dark"] .slh-value-card,
[data-theme="dark"] .slh-vm-card:not(.slh-vm-card--navy),
[data-theme="dark"] .slh-philosophy-card,
[data-theme="dark"] .slh-serve-card,
[data-theme="dark"] .slh-story__panel,
[data-theme="dark"] .slh-story__chip,
[data-theme="dark"] .slh-goal-panel { background: var(--slh-navy-panel); border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .slh-value-card__rule { background: rgba(255,255,255,0.1); }
[data-theme="dark"] .slh-story__chip p { color: var(--slh-teal); }
[data-theme="dark"] .slh-story__chip span { color: #fff; }
[data-theme="dark"] .slh-service-card__icon,
[data-theme="dark"] .slh-why-card__icon { background: rgba(255,255,255,0.08); color: var(--slh-teal); }
[data-theme="dark"] .slh-card:hover .slh-service-card__icon,
[data-theme="dark"] .slh-why-card:hover .slh-why-card__icon { background: var(--slh-teal); color: var(--slh-navy-dark); }
[data-theme="dark"] .slh-checklist li { color: var(--slh-navy-tint); }
[data-theme="dark"] .slh-eyebrow-line p { color: var(--slh-teal); }
[data-theme="dark"] .slh-eyebrow-line span { background: var(--slh-teal); }

[data-theme="dark"] .slh-about__panel-inner,
[data-theme="dark"] .slh-about__float--white { background: var(--slh-navy-panel); border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .slh-about__float--white .slh-about__float-value { color: #fff; }
[data-theme="dark"] .slh-about__float--white .slh-about__float-label { color: var(--slh-navy-tint); }

[data-theme="dark"] .slh-footer { background: var(--slh-navy-dark); color: var(--slh-navy-tint); border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .slh-footer__title { color: #fff; }
[data-theme="dark"] .slh-footer__desc { color: var(--slh-navy-tint); }
[data-theme="dark"] .slh-footer__col h3 { color: var(--slh-teal); }
[data-theme="dark"] .slh-footer__col h3 span { background: rgba(255,255,255,0.15); }
[data-theme="dark"] .slh-footer-list a,
[data-theme="dark"] .slh-footer-list--contact li { color: var(--slh-navy-tint); }
[data-theme="dark"] .slh-footer-list a:hover { color: #fff; }
[data-theme="dark"] .slh-social a { background: rgba(255,255,255,0.08); color: var(--slh-navy-tint); }
[data-theme="dark"] .slh-footer__bottom-wrap { background: rgba(0,0,0,0.15); border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .slh-footer__bottom p,
[data-theme="dark"] .slh-footer-bottom-list a { color: #64748b; }

[data-theme="dark"] .slh-form,
[data-theme="dark"] .slh-vm-card,
[data-theme="dark"] .slh-goal { background: var(--slh-navy-panel); }
[data-theme="dark"] .slh-form input,
[data-theme="dark"] .slh-form textarea,
[data-theme="dark"] .slh-form select { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); color: #fff; }
[data-theme="dark"] .slh-faq { background: var(--slh-navy-panel); border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .slh-filter-tabs a { border-color: rgba(255,255,255,0.15); color: var(--slh-navy-tint); }

/* Scroll-reveal (fade + slide in on entering the viewport) */
.slh-reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.slh-reveal.is-visible { opacity: 1; transform: translateY(0); }
.slh-reveal--left { transform: translateX(-40px); }
.slh-reveal--right { transform: translateX(40px); }
.slh-reveal--left.is-visible, .slh-reveal--right.is-visible { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
	.slh-reveal { opacity: 1; transform: none; transition: none; }
}

/* Responsive — kept in strict ascending min-width order so later,
   larger-viewport rules always correctly override earlier, smaller ones. */
@media (min-width: 640px) {
	.slh-services-grid { grid-template-columns: repeat(2, 1fr); }
	.slh-values-grid { grid-template-columns: repeat(2, 1fr); }
	.slh-serve-grid { grid-template-columns: repeat(2, 1fr); }
	.slh-philosophy-grid { grid-template-columns: 1fr 1fr; }
	.slh-form2__row { grid-template-columns: 1fr 1fr; }
	.slh-info-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
	.slh-svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.slh-svc-grid { grid-template-columns: repeat(3, 1fr); }
	.slh-hero__grid { grid-template-columns: 1fr 1fr; }
	.slh-hero__media { display: flex; }
	.slh-about { grid-template-columns: 1fr 1.2fr; }
	.slh-services-grid { grid-template-columns: repeat(3, 1fr); }
	.slh-why-grid { grid-template-columns: repeat(3, 1fr); }
	.slh-news-grid { grid-template-columns: repeat(3, 1fr); }
	.slh-stats-band__grid { grid-template-columns: repeat(4, 1fr); }
	.slh-nav { display: block; }
	.slh-header__actions .slh-btn--whatsapp span { display: inline; }
	.slh-nav-toggle { display: none !important; }
	.slh-story { grid-template-columns: 1fr 1fr; }
	.slh-vm-grid { grid-template-columns: 1fr 1fr; }
	.slh-values-grid { grid-template-columns: repeat(3, 1fr); }
	.slh-philosophy-row { grid-template-columns: 3fr 2fr; }
	.slh-philosophy-grid { grid-template-columns: 1fr 1fr; }
	.slh-serve-grid { grid-template-columns: repeat(4, 1fr); }
	.slh-support-grid { grid-template-columns: 2fr 1fr; }
}
@media (min-width: 1280px) {
	.slh-services-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1023px) {
	.slh-nav { display: none; }
	.slh-header__actions .slh-btn--whatsapp span { display: none; }
	.slh-nav-toggle { display: flex; }
	.slh-mobile-nav.is-open {
		display: block; padding: 1rem 1.25rem 1.5rem; border-top: 1px solid var(--slh-border); background: #fff;
	}
	.slh-mobile-nav-list { display: flex; flex-direction: column; gap: 0.9rem; }
}
@media (max-width: 960px) {
	.slh-contact-grid { grid-template-columns: 1fr; }
	.slh-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
	.slh-footer__grid { grid-template-columns: 1fr; }
}

/* WooCommerce default pages (Shop, Cart, Checkout, My Account) */
.slh-woocommerce { padding: 3rem 1rem; }
.slh-woocommerce .button,
.slh-woocommerce a.button,
.slh-woocommerce input.button,
.slh-woocommerce .checkout-button { background: var(--slh-green); color: #fff; border-radius: 0.5rem; border: none; }
.slh-woocommerce .button:hover,
.slh-woocommerce a.button:hover { background: rgba(45,122,70,0.9); color: #fff; }
.slh-woocommerce a { color: var(--slh-navy); }
.slh-woocommerce h1, .slh-woocommerce h2, .slh-woocommerce h3 { color: var(--slh-navy); }
