/* =============================================================
   Spartion Consulting — theme stylesheet
   Design system tokens bundled verbatim from the Spartion DS
   (_ds/tokens): colors · typography · spacing · base primitives.
   Flat system: depth via 1px borders + surface steps, not shadows.
   ============================================================= */

:root {
	/* --- Forest green scale (brand primary = green-900) --- */
	--green-950: #04160B;
	--green-900: #072C16;
	--green-800: #0B3320;
	--green-700: #0F4128;
	--green-600: #15623B;
	--green-500: #1E7A4B;
	--green-400: #2FA37A;
	--green-300: #4FD1A0;
	--green-200: #8FE3C4;
	--green-100: #C9F2E1;
	--green-50:  #EAF8F1;

	/* --- Sage / grey scale (brand secondary = sage-300) --- */
	--sage-50:  #F4F7F4;
	--sage-100: #EEF2EE;
	--sage-200: #E3EAE4;
	--sage-300: #DADFDC;
	--sage-400: #B8C2BB;
	--sage-500: #93A096;
	--sage-600: #6E7A72;

	/* --- Neutral ink scale --- */
	--ink-950: #0C1410;
	--ink-900: #14201A;
	--ink-800: #22302A;
	--ink-700: #38463F;
	--ink-500: #67736C;
	--ink-400: #8B968F;
	--ink-300: #B4BCB7;
	--ink-100: #ECEFED;
	--white:    #FFFFFF;

	/* --- Semantic --- */
	--amber: #C98A1B; --amber-soft: #F6E8C9;
	--red: #C9504A; --red-soft: #F6DCDA;
	--blue: #3F7CC0; --blue-soft: #DCE8F5;
	--success: #1E7A4B; --success-soft: #D7EFE2;

	/* --- Semantic aliases (light / marketing default) --- */
	--brand: var(--green-900);
	--brand-on: var(--sage-50);
	--accent: var(--green-400);
	--surface-page: var(--sage-50);
	--surface-card: var(--white);
	--surface-sunken: var(--sage-100);
	--surface-inverse: var(--green-900);
	--text-strong: var(--green-900);
	--text-body: var(--ink-800);
	--text-muted: var(--ink-500);
	--text-on-brand: var(--sage-100);
	--text-on-brand-muted: rgba(218,223,220,.72);
	--line: rgba(12,44,24,.12);
	--line-strong: rgba(12,44,24,.20);
	--line-on-brand: rgba(218,223,220,.16);
	--focus-ring: var(--green-400);

	/* --- Families --- */
	--font-wordmark: 'Questrial', 'Century Gothic', system-ui, sans-serif;
	--font-display:  'Jost', 'Questrial', system-ui, sans-serif;
	--font-body:     'Hanken Grotesk', system-ui, -apple-system, sans-serif;
	--font-mono:     'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;

	/* --- Type scale --- */
	--fs-eyebrow: 0.75rem; --fs-xs: 0.8125rem; --fs-sm: 0.875rem;
	--fs-base: 1rem; --fs-md: 1.125rem; --fs-lg: 1.375rem; --fs-xl: 1.75rem;
	--fs-2xl: 2.25rem; --fs-3xl: 3rem; --fs-4xl: 4rem; --fs-5xl: 5.5rem;

	--fw-light: 300; --fw-regular: 400; --fw-medium: 500; --fw-semibold: 600; --fw-bold: 700;
	--lh-tight: 1.05; --lh-snug: 1.18; --lh-normal: 1.5; --lh-relaxed: 1.65;
	--ls-wordmark: 0.22em; --ls-eyebrow: 0.18em; --ls-tight: -0.02em; --ls-snug: -0.01em;

	/* --- Spacing / radius / motion --- */
	--sp-1:4px; --sp-2:8px; --sp-3:12px; --sp-4:16px; --sp-5:20px; --sp-6:24px;
	--sp-8:32px; --sp-10:40px; --sp-12:48px; --sp-16:64px; --sp-20:80px; --sp-24:96px; --sp-32:128px;
	--r-xs:4px; --r-sm:8px; --r-md:10px; --r-lg:14px; --r-xl:20px; --r-pill:999px;
	--bw:1px;
	--shadow-sm: 0 1px 2px rgba(7,44,22,.06);
	--shadow-md: 0 6px 24px -8px rgba(7,44,22,.14);
	--shadow-lg: 0 24px 60px -20px rgba(7,44,22,.22);
	--dur-fast:140ms; --dur:200ms; --dur-slow:360ms;
	--ease: cubic-bezier(0.2,0.7,0.3,1);
	--ease-out: cubic-bezier(0.16,1,0.3,1);
	--container: 1200px;
}

/* =============================================================
   Reset / base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: var(--fs-base);
	line-height: var(--lh-normal);
	color: var(--text-body);
	background: var(--surface-page);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; border-radius: 2px; }
::selection { background: var(--green-200); color: var(--green-900); }

/* WP full-width content: sections are full-bleed, inner max-width via .sp-container */
.sp-main > * { width: 100%; }

/* =============================================================
   Brand type primitives
   ============================================================= */
.sp-container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-6); }
.sp-wordmark { font-family: var(--font-wordmark); text-transform: uppercase; letter-spacing: var(--ls-wordmark); font-weight: var(--fw-regular); line-height: 1.1; }
.sp-eyebrow { font-family: var(--font-wordmark); text-transform: uppercase; letter-spacing: var(--ls-eyebrow); font-size: var(--fs-eyebrow); font-weight: var(--fw-regular); color: var(--accent); }
.sp-display { font-family: var(--font-display); font-weight: var(--fw-light); line-height: var(--lh-tight); letter-spacing: var(--ls-tight); color: var(--text-strong); }
.sp-h2 { font-family: var(--font-display); font-weight: var(--fw-regular); font-size: var(--fs-2xl); line-height: var(--lh-snug); letter-spacing: var(--ls-snug); color: var(--text-strong); }
.sp-lead { font-size: var(--fs-md); line-height: var(--lh-relaxed); color: var(--text-muted); }
.sp-mono { font-family: var(--font-mono); }

/* =============================================================
   Buttons (Button component: primary / accent / inverse)
   ============================================================= */
.sp-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font-family: var(--font-body); font-weight: 600; font-size: 15px; line-height: 1;
	padding: 0 22px; height: 44px; border-radius: var(--r-md); border: 1px solid transparent;
	cursor: pointer; white-space: nowrap;
	transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease),
		border-color var(--dur) var(--ease), transform var(--dur-fast) var(--ease), box-shadow var(--dur) var(--ease);
}
.sp-btn--lg { height: 54px; padding: 0 28px; font-size: 16px; }
.sp-btn--sm { height: 38px; padding: 0 16px; font-size: 14px; }
.sp-btn--full { width: 100%; }
.sp-btn--primary { background: var(--green-900); color: var(--sage-50); }
.sp-btn--primary:hover { background: var(--green-800); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.sp-btn--accent { background: var(--green-400); color: var(--green-950); }
.sp-btn--accent:hover { background: var(--green-300); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.sp-btn--inverse { background: transparent; color: var(--sage-50); border-color: var(--line-on-brand); }
.sp-btn--inverse:hover { background: rgba(255,255,255,.06); border-color: rgba(218,223,220,.4); }
.sp-btn i { font-size: 18px; }

/* text link with arrow */
.sp-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--green-900); }
.sp-link i { font-size: 16px; transition: transform var(--dur) var(--ease); }
.sp-link:hover i { transform: translateX(4px); }

/* =============================================================
   Header
   ============================================================= */
.sp-header {
	position: sticky; top: 0; z-index: 40;
	background: rgba(244,247,244,.86);
	-webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line); font-family: var(--font-body);
}
.sp-header__inner { max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-6); display: flex; align-items: center; height: 76px; }
.sp-header__brand { display: flex; align-items: center; gap: 11px; }
.sp-header__brand img { height: 32px; width: auto; }
.sp-header__brand .sp-wordmark { font-size: 14px; color: var(--green-900); }
.sp-nav { display: flex; gap: 1px; margin-left: 28px; flex-wrap: wrap; }
.sp-nav a {
	display: inline-flex; align-items: center; height: 36px; padding: 0 11px;
	border-radius: var(--r-pill); font-size: 13.5px; white-space: nowrap; font-weight: 500;
	color: var(--text-body); transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.sp-nav a:hover { background: var(--sage-100); color: var(--green-900); }
.sp-nav a[aria-current="page"], .sp-nav a.is-active { font-weight: 600; color: var(--green-900); background: var(--sage-200); }
.sp-header__spacer { flex: 1; }
.sp-header__cta { display: inline-flex; }
.sp-burger { display: none; background: none; border: none; cursor: pointer; margin-left: 12px; width: 40px; height: 40px; align-items: center; justify-content: center; color: var(--green-900); border-radius: var(--r-sm); }
.sp-burger i { font-size: 24px; }
.sp-burger:hover { background: var(--sage-100); }

/* =============================================================
   Sections / hero
   ============================================================= */
.sp-section { padding: var(--sp-24) var(--sp-6); }
.sp-hero-home { position: relative; background: var(--green-900); overflow: hidden; }
.sp-hero-home__mark { position: absolute; right: -6%; top: 50%; transform: translateY(-50%); width: 620px; max-width: 60vw; opacity: .06; pointer-events: none; }
.sp-hero-home__inner { position: relative; max-width: var(--container); margin-inline: auto; padding: 108px 24px 0; }
.sp-hero-home__eyebrow { font-family: var(--font-wordmark); text-transform: uppercase; letter-spacing: .2em; font-size: 12px; color: var(--green-300); margin-bottom: 20px; }
.sp-hero-home h1 { font-family: var(--font-display); font-weight: 300; line-height: 1.04; letter-spacing: -.02em; color: var(--sage-50); font-size: clamp(42px, 6vw, 68px); margin: 0; text-wrap: balance; }
.sp-hero-home__sub { font-size: 18px; line-height: 1.65; color: var(--text-on-brand-muted); max-width: 480px; margin: 24px 0 0; }
.sp-hero-cta { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

/* stat band */
.sp-stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 88px; border-top: 1px solid var(--line-on-brand); }
.sp-stat { padding: 26px 20px 30px 0; border-left: 1px solid var(--line-on-brand); padding-left: 20px; }
.sp-stat:first-child { border-left: none; padding-left: 0; }
.sp-stat__num { font-family: var(--font-mono); font-size: 28px; color: var(--green-300); line-height: 1; }
.sp-stat__label { margin-top: 8px; font-size: 13px; color: var(--text-on-brand-muted); line-height: 1.5; max-width: 220px; }

/* page hero (inner pages) */
.sp-pagehero { padding: 76px 24px 60px; border-bottom: 1px solid var(--line); }
.sp-pagehero__inner { max-width: var(--container); margin-inline: auto; }
.sp-pagehero h1 { font-family: var(--font-display); font-weight: 300; line-height: 1.08; letter-spacing: -.02em; color: var(--green-900); font-size: clamp(36px, 5vw, 54px); margin: 0; max-width: 760px; text-wrap: balance; }
.sp-pagehero__sub { font-size: 17px; line-height: 1.65; color: var(--text-muted); max-width: 580px; margin: 20px 0 0; }
.sp-pagehero__eyebrow { font-family: var(--font-wordmark); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; color: var(--green-400); margin-bottom: 16px; }

/* section heads */
.sp-eyebrow2 { font-family: var(--font-wordmark); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; color: var(--green-400); margin-bottom: 12px; }
.sp-secttitle { font-family: var(--font-display); font-weight: 400; font-size: 36px; line-height: 1.18; letter-spacing: -.01em; color: var(--green-900); margin: 0; }

/* =============================================================
   Editorial service list (home)
   ============================================================= */
.sp-svc-list { border-top: 1px solid var(--line); }
.sp-svc-row { display: flex; align-items: center; gap: 28px; padding: 28px 4px; border-bottom: 1px solid var(--line); transition: background-color var(--dur) var(--ease), padding-inline var(--dur) var(--ease); }
.sp-svc-row:hover { background: var(--sage-100); padding-inline: 12px 12px; }
.sp-svc-row__idx { font-family: var(--font-mono); font-size: 14px; color: var(--ink-300); width: 28px; flex-shrink: 0; }
.sp-icon-chip { display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: var(--green-50); flex-shrink: 0; }
.sp-icon-chip--48 { width: 48px; height: 48px; }
.sp-icon-chip--52 { width: 52px; height: 52px; border-radius: 14px; }
.sp-icon-chip i { color: var(--green-700); }
.sp-svc-row__body { flex: 1; min-width: 0; }
.sp-svc-row__body h3 { font-family: var(--font-display); font-weight: 500; font-size: 19px; color: var(--green-900); margin: 0 0 4px; }
.sp-svc-row__body p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text-muted); max-width: 540px; }
.sp-svc-row__arr { font-size: 18px; color: var(--ink-400); flex-shrink: 0; transition: transform var(--dur) var(--ease); }
.sp-svc-row:hover .sp-svc-row__arr { transform: translateX(4px); color: var(--green-700); }

/* service detail rows (Diensten page) */
.sp-svc-detail { display: grid; grid-template-columns: 100px 1fr 340px; gap: 40px; padding: 56px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 96px; }
.sp-svc-detail__idx { font-family: var(--font-mono); font-size: 15px; color: var(--ink-300); }
.sp-svc-detail__main { max-width: 560px; }
.sp-svc-detail__main h2 { font-family: var(--font-display); font-weight: 500; font-size: 26px; color: var(--green-900); margin: 0 0 12px; }
.sp-svc-detail__main p { margin: 0; font-size: 15.5px; line-height: 1.7; color: var(--text-muted); }
.sp-svc-detail__aside { border-left: 1px solid var(--line); padding-left: 32px; }
.sp-getlabel { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--green-700); margin-bottom: 16px; }
.sp-check { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.sp-check i { font-size: 16px; color: var(--green-400); margin-top: 2px; flex-shrink: 0; }
.sp-check span { font-size: 14px; line-height: 1.55; color: var(--text-body); }

/* =============================================================
   Pillars / values (top-border cards)
   ============================================================= */
.sp-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sp-pillar { border-top: 2px solid var(--green-900); padding-top: 18px; }
.sp-pillar > i { font-size: 24px; color: var(--green-700); }
.sp-pillar h3 { font-family: var(--font-display); font-weight: 500; font-size: 19px; color: var(--green-900); margin: 16px 0 8px; }
.sp-pillar p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text-muted); }

/* =============================================================
   FAQ
   ============================================================= */
.sp-faq { border-top: 1px solid var(--line); }
.sp-faq__item { padding: 24px 0; border-bottom: 1px solid var(--line); }
.sp-faq__item h3 { font-family: var(--font-display); font-weight: 500; font-size: 17px; color: var(--green-900); margin: 0 0 8px; }
.sp-faq__item p { margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--text-muted); }
/* interactive accordion variant */
details.sp-acc { padding: 0; border-bottom: 1px solid var(--line); }
details.sp-acc summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 22px 0; font-family: var(--font-display); font-weight: 500; font-size: 17px; color: var(--green-900); }
details.sp-acc summary::-webkit-details-marker { display: none; }
details.sp-acc summary::after { content: "\ea61"; font-family: "tabler-icons"; font-size: 18px; color: var(--green-400); transition: transform var(--dur) var(--ease); }
details.sp-acc[open] summary::after { transform: rotate(180deg); }
details.sp-acc > p { margin: 0 0 22px; font-size: 14.5px; line-height: 1.65; color: var(--text-muted); max-width: 680px; }

/* =============================================================
   Pricing
   ============================================================= */
.sp-price-groups { max-width: var(--container); margin-inline: auto; display: flex; flex-direction: column; gap: 64px; }
.sp-price-group__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 8px; flex-wrap: wrap; }
.sp-price-group__head h2 { font-family: var(--font-display); font-weight: 500; font-size: 24px; color: var(--green-900); margin: 0; }
.sp-price-group__note { font-size: 13.5px; color: var(--text-muted); }
.sp-price-group__desc { margin: 0 0 24px; font-size: 15px; line-height: 1.6; color: var(--text-muted); max-width: 640px; }
.sp-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.sp-tier { border: 1px solid var(--line); border-radius: 16px; padding: 26px 24px; background: var(--surface-card); position: relative; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.sp-tier:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sp-tier--featured { border-color: var(--green-900); background: var(--green-50); }
.sp-tier__badge { position: absolute; top: -11px; left: 24px; background: var(--green-900); color: var(--sage-50); font-size: 11px; font-weight: 600; letter-spacing: .05em; padding: 3px 10px; border-radius: var(--r-pill); }
.sp-tier__name { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--green-700); margin-bottom: 10px; }
.sp-tier__price { font-family: var(--font-display); font-weight: 500; font-size: 26px; color: var(--green-900); margin-bottom: 4px; }
.sp-tier__pricenote { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.sp-tier__desc { font-size: 14px; line-height: 1.6; color: var(--text-body); }
.sp-topline { border-top: 2px solid var(--green-900); padding-top: 20px; }
.sp-topline h2 { font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--green-900); margin: 0 0 10px; }
.sp-topline p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--text-muted); max-width: 640px; }

/* =============================================================
   Case / references / CTA cards
   ============================================================= */
.sp-case-card { border: 1px solid var(--line); border-radius: 20px; padding: 44px; background: var(--surface-card); }
.sp-case-card h2 { font-family: var(--font-display); font-weight: 500; font-size: 24px; color: var(--green-900); margin: 0 0 6px; }
.sp-case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.sp-case-grid .sp-getlabel { margin-bottom: 10px; }
.sp-case-grid p { margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--text-muted); }

.sp-cta-card { background: var(--green-900); border-radius: 20px; padding: 64px 48px; text-align: center; position: relative; overflow: hidden; }
.sp-cta-card--sm { padding: 56px 48px; }
.sp-cta-card__mark { position: absolute; top: 50%; transform: translateY(-50%); width: 320px; opacity: .06; pointer-events: none; }
.sp-cta-card__mark--l { left: -60px; }
.sp-cta-card__mark--r { right: -60px; }
.sp-cta-card > * { position: relative; }
.sp-cta-card h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 4vw, 38px); color: var(--sage-50); margin: 0; }
.sp-cta-card p { font-size: 16px; line-height: 1.6; color: var(--text-on-brand-muted); margin: 14px auto 0; max-width: 460px; }

/* centered plain CTA (light) */
.sp-cta-plain { max-width: 680px; margin-inline: auto; text-align: center; }
.sp-cta-plain h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(30px, 4vw, 44px); line-height: 1.18; letter-spacing: -.01em; color: var(--green-900); margin: 0; }
.sp-cta-plain p { font-size: 18px; line-height: 1.65; color: var(--text-muted); margin: 16px auto 0; max-width: 460px; }

/* mission pull-quote */
.sp-quote { padding: 88px 24px; background: var(--green-900); position: relative; overflow: hidden; }
.sp-quote__mark { position: absolute; right: -80px; top: 50%; transform: translateY(-50%); width: 420px; opacity: .06; pointer-events: none; }
.sp-quote__inner { position: relative; max-width: 820px; margin-inline: auto; text-align: center; }
.sp-quote h2 { font-family: var(--font-display); font-weight: 300; letter-spacing: -.02em; line-height: 1.2; color: var(--sage-50); font-size: clamp(28px, 4vw, 42px); margin: 0; }

/* =============================================================
   Contact info + form
   ============================================================= */
.sp-contact-grid { max-width: var(--container); margin-inline: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.sp-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.sp-info-item .sp-icon-chip { width: 40px; height: 40px; border-radius: 10px; }
.sp-info-item i { font-size: 18px; }
.sp-info-item__label { font-size: 13px; color: var(--text-muted); margin-bottom: 2px; }
.sp-info-item__val { font-size: 15px; font-weight: 600; color: var(--green-900); }
.sp-formcard { background: var(--surface-card); border: 1px solid var(--line); border-radius: 20px; padding: 40px; }

/* CF7 form styled as the DS Input component */
.sp-formcard .wpcf7-form p { margin: 0 0 18px; }
.sp-formcard label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: var(--text-strong); }
.sp-formcard input[type=text], .sp-formcard input[type=email], .sp-formcard input[type=tel], .sp-formcard textarea {
	width: 100%; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: var(--r-md);
	font-family: var(--font-body); font-size: 15px; color: var(--text-body); background: var(--white); outline: none;
	transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.sp-formcard input:focus, .sp-formcard textarea:focus { border-color: var(--green-400); box-shadow: 0 0 0 3px rgba(47,163,122,.15); }
.sp-formcard textarea { resize: vertical; min-height: 110px; }
.sp-formcard input[type=submit] {
	width: 100%; height: 54px; background: var(--green-900); color: var(--sage-50);
	font-family: var(--font-body); font-weight: 600; font-size: 16px; border: none; border-radius: var(--r-md);
	cursor: pointer; transition: background-color var(--dur) var(--ease), transform var(--dur-fast) var(--ease);
}
.sp-formcard input[type=submit]:hover { background: var(--green-800); transform: translateY(-1px); }
.wpcf7 .wpcf7-not-valid-tip { font-size: 12px; color: var(--red); margin-top: 4px; }
.wpcf7 .wpcf7-response-output { border-radius: var(--r-md); font-size: 14px; margin: 14px 0 0; }

/* legal pages */
.sp-legal { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: 36px; }
.sp-legal h2 { font-family: var(--font-display); font-weight: 500; font-size: 19px; color: var(--green-900); margin: 0 0 10px; }
.sp-legal p { margin: 0; font-size: 15px; line-height: 1.75; color: var(--text-muted); }

/* =============================================================
   Footer
   ============================================================= */
.sp-footer { background: var(--green-950); color: var(--text-on-brand-muted); font-family: var(--font-body); padding: 64px 24px 32px; }
.sp-footer__top { max-width: var(--container); margin-inline: auto; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.sp-footer__brand { max-width: 300px; }
.sp-footer__brand img { height: 58px; margin-bottom: 18px; }
.sp-footer__brand p { font-size: 13.5px; line-height: 1.6; margin: 0 0 18px; }
.sp-footer__nap { font-size: 13px; line-height: 1.8; }
.sp-footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.sp-footer__col-h { font-family: var(--font-wordmark); text-transform: uppercase; letter-spacing: .18em; font-size: 11.5px; color: var(--green-300); margin-bottom: 16px; }
.sp-footer__col a { display: block; font-size: 14px; color: var(--text-on-brand-muted); margin-bottom: 10px; transition: color var(--dur) var(--ease); }
.sp-footer a:hover { color: var(--sage-50); }
.sp-footer__bottom { max-width: var(--container); margin-inline: auto; border-top: 1px solid var(--line-on-brand); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; font-size: 12.5px; flex-wrap: wrap; gap: 14px; }
.sp-footer__bottom .sp-wordmark { font-size: 11px; }

/* =============================================================
   Reveal-on-scroll
   ============================================================= */
.sp-reveal { opacity: 0; transform: translateY(16px); transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out); }
.sp-reveal.is-visible { opacity: 1; transform: none; }

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 900px) {
	.sp-contact-grid { grid-template-columns: 1fr; gap: 40px; }
	.sp-svc-detail { grid-template-columns: 60px 1fr; }
	.sp-svc-detail__aside { grid-column: 1 / -1; border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 24px; }
	.sp-pillars, .sp-case-grid { grid-template-columns: 1fr; }
	.sp-stats { grid-template-columns: repeat(2, 1fr); }
	.sp-stat:nth-child(3) { border-left: none; padding-left: 0; }
}
@media (max-width: 780px) {
	.sp-burger { display: inline-flex; }
	.sp-header { position: sticky; }
	.sp-nav {
		display: none; position: absolute; top: 76px; left: 0; right: 0;
		flex-direction: column; gap: 2px; margin-left: 0; padding: 12px 16px 16px;
		background: rgba(244,247,244,.98); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
		border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
	}
	.sp-nav.is-open { display: flex; }
	.sp-nav a { height: 44px; width: 100%; padding: 0 14px; font-size: 15px; }
	.sp-header__cta .sp-btn { height: 40px; padding: 0 14px; font-size: 13px; }
	.sp-hero-home__inner { padding-top: 72px; }
	.sp-stats { margin-top: 56px; }
	.sp-quote { padding: 60px 24px; }
	.sp-cta-card { padding: 48px 28px; }
	.sp-svc-detail { grid-template-columns: 1fr; gap: 20px; }
	.sp-svc-detail__idx { display: none; }
}
@media (prefers-reduced-motion: reduce) {
	.sp-reveal { opacity: 1; transform: none; transition: none; }
	*, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
