/* ============================================================================
   GoSmallLocal Services — design system
   Mirrors the main GoSmallLocal site (paper background, amber accent,
   bordered cards, dark footer). Edit the tokens below to retune the look.
   ========================================================================== */

:root {
	/* Core palette — same values as the main GoSmallLocal theme */
	--gsl-ink:        #0a0a0a;
	--gsl-ink-2:      #1a1a1a;
	--gsl-ink-soft:   #404040;
	--gsl-mute:       #6b6b6b;
	--gsl-line:       #e5e5e0;
	--gsl-paper:      #fafaf7;
	--gsl-paper-2:    #ffffff;
	--gsl-amber:      #ffb800;
	--gsl-amber-deep: #e09e00;
	--gsl-green:      #1f8a4c;

	--gsl-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter,
	            "Helvetica Neue", Helvetica, Arial, sans-serif;

	--gsl-w-content: 1240px;
	--gsl-w-narrow:  860px;
}

/* ── Reset & base ────────────────────────────────────────────────────────── */

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: var(--gsl-font);
	font-size: 16px;
	line-height: 1.55;
	color: var(--gsl-ink);
	background: var(--gsl-paper);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

a { color: var(--gsl-ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gsl-amber-deep); }

h1, h2, h3, h4 {
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

.gsl-container {
	max-width: var(--gsl-w-content);
	margin: 0 auto;
	padding: 0 24px;
}
@media (max-width: 600px) {
	.gsl-container { padding: 0 18px; }
}
.gsl-container--narrow { max-width: var(--gsl-w-narrow); }

.gsl-sr-only {
	position: absolute;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ── Site header ─────────────────────────────────────────────────────────── */

.gsl-header {
	border-bottom: 1px solid var(--gsl-line);
	background: var(--gsl-paper);
	position: sticky;
	top: 0;
	z-index: 100;
}
.gsl-header.is-scrolled { box-shadow: 0 2px 12px rgba(10, 10, 10, 0.06); }

.gsl-header__inner {
	position: relative; /* anchor for mobile dropdown panel */
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 0;
}

.gsl-logo {
	font-weight: 700;
	font-size: 1.1rem;
	letter-spacing: -0.02em;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.gsl-logo__lll {
	font-weight: 900;
	font-size: 1.25rem;
	letter-spacing: -0.08em;
	color: var(--gsl-amber);
	line-height: 1;
}
.gsl-logo__go { color: var(--gsl-ink); }
.gsl-logo__local { color: var(--gsl-amber-deep); }
.gsl-logo__suffix {
	font-weight: 600;
	font-size: 0.8rem;
	color: var(--gsl-mute);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-left: 2px;
}

.gsl-nav { display: flex; gap: 28px; align-items: center; }
.gsl-nav ul { display: contents; list-style: none; margin: 0; padding: 0; }
.gsl-nav li { display: contents; }
.gsl-nav a { text-decoration: none; font-size: 0.95rem; color: var(--gsl-ink-soft); }
.gsl-nav a:not(.gsl-btn):hover { color: var(--gsl-ink); }
.gsl-nav .current-menu-item > a:not(.gsl-btn),
.gsl-nav a[aria-current="page"]:not(.gsl-btn) { color: var(--gsl-ink); font-weight: 600; }

/* ── Mobile hamburger toggle (pure CSS) ──────────────────────────────────── */

.gsl-menu-btn {
	display: none;
	width: 40px; height: 40px;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	background: transparent;
	border: 1px solid var(--gsl-line);
	flex-shrink: 0;
}
.gsl-menu-btn span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--gsl-ink);
	transition: transform 0.2s ease, opacity 0.15s ease;
}
.gsl-menu-toggle:checked + .gsl-menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gsl-menu-toggle:checked + .gsl-menu-btn span:nth-child(2) { opacity: 0; }
.gsl-menu-toggle:checked + .gsl-menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1023px) {
	.gsl-header__inner { gap: 12px; padding: 12px 0; }
	.gsl-menu-btn { display: flex; margin-right: 4px; }

	.gsl-nav {
		position: absolute;
		top: 100%;
		left: -24px;
		right: -24px;
		background: var(--gsl-paper);
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0 24px;
		border-bottom: 0 solid var(--gsl-line);
		max-height: 0;
		overflow: hidden;
		visibility: hidden;
		transition: max-height 0.25s ease, padding 0.25s ease, visibility 0s linear 0.25s;
	}
	.gsl-menu-toggle:checked ~ .gsl-nav {
		max-height: 600px;
		padding: 8px 24px 24px;
		border-bottom-width: 1px;
		visibility: visible;
		transition: max-height 0.25s ease, padding 0.25s ease, visibility 0s linear 0s;
	}
	.gsl-nav a {
		display: block;
		padding: 14px 0;
		font-size: 1.05rem;
		border-bottom: 1px solid var(--gsl-line);
		color: var(--gsl-ink);
	}
	.gsl-nav a.gsl-btn {
		margin-top: 16px;
		text-align: center;
		border-bottom: 1px solid var(--gsl-ink);
	}
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */

.gsl-btn {
	display: inline-block;
	padding: 11px 20px;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	background: var(--gsl-ink);
	color: var(--gsl-paper);
	border: 1px solid var(--gsl-ink);
	border-radius: 8px;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.15s ease, color 0.15s ease;
}
.gsl-btn:not(.gsl-btn--ghost):not(.gsl-btn--amber):hover { background: var(--gsl-amber); color: var(--gsl-ink); border-color: var(--gsl-amber); }

.gsl-btn--ghost {
	background: transparent;
	color: var(--gsl-ink);
	border-color: var(--gsl-ink-soft);
}
.gsl-btn--ghost:hover {
	background: var(--gsl-ink);
	color: var(--gsl-paper-2);
	border-color: var(--gsl-ink);
}

.gsl-btn--amber {
	background: var(--gsl-amber);
	color: var(--gsl-ink);
	border-color: var(--gsl-amber);
}
.gsl-btn--amber:hover { background: var(--gsl-ink); color: var(--gsl-amber); border-color: var(--gsl-ink); }

.gsl-btn--lg { padding: 14px 26px; font-size: 1rem; }

/* ── Hero ────────────────────────────────────────────────────────────────── */

.gsl-hero {
	padding: 88px 0 72px;
	border-bottom: 1px solid var(--gsl-line);
	background: var(--gsl-paper);
}

.gsl-hero__eyebrow {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gsl-amber-deep);
	margin-bottom: 20px;
}

.gsl-hero__title { max-width: 18ch; margin-bottom: 24px; }

.gsl-hero__lead {
	font-size: 1.2rem;
	max-width: 56ch;
	color: var(--gsl-ink-soft);
	margin-bottom: 36px;
}

.gsl-hero__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* Split hero: copy on the left, visual card stack on the right */
.gsl-hero--split .gsl-hero__inner {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 64px;
	align-items: center;
}
.gsl-hero--split .gsl-hero__copy { min-width: 0; }
.gsl-hero--split .gsl-hero__title { max-width: 16ch; }

.gsl-hero__art {
	position: relative;
	width: 100%;
	max-width: 480px;
	margin-left: auto;
	display: grid;
	gap: 14px;
}
@media (max-width: 960px) {
	.gsl-hero--split .gsl-hero__inner { grid-template-columns: 1fr; gap: 48px; }
	.gsl-hero__art { max-width: 420px; margin: 0 auto; }
}

/* Hero illustration */
.gsl-hero__img {
	width: 100%;
	height: auto;
	margin-bottom: 6px;
}

/* Mini cards used as the hero visual */
.gsl-mini-card {
	background: var(--gsl-paper-2);
	border: 1px solid var(--gsl-line);
	border-radius: 10px;
	padding: 18px 20px;
	display: flex;
	align-items: center;
	gap: 14px;
	box-shadow: 0 1px 0 rgba(10, 10, 10, 0.02);
}
.gsl-mini-card:nth-child(2) { margin-left: 28px; }
.gsl-mini-card:nth-child(3) { margin-left: 56px; }
@media (max-width: 600px) {
	.gsl-mini-card:nth-child(2) { margin-left: 14px; }
	.gsl-mini-card:nth-child(3) { margin-left: 28px; }
}
.gsl-mini-card__icon {
	width: 40px; height: 40px;
	flex-shrink: 0;
	border-radius: 8px;
	background: var(--gsl-ink);
	color: var(--gsl-amber);
	display: grid;
	place-items: center;
}
.gsl-mini-card__title { font-weight: 600; font-size: 0.98rem; display: block; }
.gsl-mini-card__sub { font-size: 0.85rem; color: var(--gsl-mute); display: block; margin-top: 2px; }

/* Hero bullet points (short trust/value bullets under the lead) */
.gsl-hero__bullets {
	list-style: none;
	margin: -12px 0 32px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, max-content));
	gap: 10px 32px;
}
@media (max-width: 600px) {
	.gsl-hero__bullets { grid-template-columns: 1fr; }
}
.gsl-hero__bullets li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: 0.95rem;
	color: var(--gsl-ink-soft);
}
.gsl-hero__bullets .gsl-checklist__check { width: 18px; height: 18px; font-size: 0.66rem; }

/* ── Sections ────────────────────────────────────────────────────────────── */

.gsl-section { padding: 72px 0; }
.gsl-section--tight { padding: 48px 0; }
.gsl-section--alt {
	background: var(--gsl-paper-2);
	border-top: 1px solid var(--gsl-line);
	border-bottom: 1px solid var(--gsl-line);
}

.gsl-section__head { margin-bottom: 36px; }
.gsl-section__title { margin: 0; }
.gsl-section__sub { color: var(--gsl-mute); font-size: 1rem; margin: 8px 0 0; max-width: 60ch; }

/* ── Service cards ───────────────────────────────────────────────────────── */

.gsl-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}
.gsl-cards--max2 { max-width: 900px; }

.gsl-card {
	background: var(--gsl-paper-2);
	border: 1px solid var(--gsl-line);
	border-radius: 10px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: border-color 0.15s ease;
	position: relative;
}
.gsl-card:hover { border-color: var(--gsl-ink); }
.gsl-card--accent { box-shadow: inset 0 3px 0 var(--gsl-amber); }

.gsl-card__icon {
	width: 46px; height: 46px;
	border-radius: 9px;
	background: var(--gsl-ink);
	color: var(--gsl-amber);
	display: grid;
	place-items: center;
}
.gsl-card__title { font-size: 1.2rem; font-weight: 600; margin: 0; }
.gsl-card__text { font-size: 0.97rem; color: var(--gsl-ink-soft); margin: 0; }
.gsl-card__cta { margin-top: auto; padding-top: 8px; }

/* ── Checklist block ─────────────────────────────────────────────────────── */

.gsl-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 12px;
}
.gsl-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: var(--gsl-paper-2);
	border: 1px solid var(--gsl-line);
	border-radius: 8px;
	padding: 14px 16px;
	font-size: 0.96rem;
	color: var(--gsl-ink-soft);
}
.gsl-checklist__check {
	flex-shrink: 0;
	width: 20px; height: 20px;
	margin-top: 1px;
	border-radius: 50%;
	background: var(--gsl-amber);
	color: var(--gsl-ink);
	display: grid;
	place-items: center;
	font-size: 0.72rem;
	font-weight: 700;
}

/* Plain list (e.g., info we need from the contractor) */
.gsl-plainlist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 8px 24px;
	max-width: 760px;
}
.gsl-plainlist li {
	padding: 9px 0 9px 24px;
	border-bottom: 1px solid var(--gsl-line);
	color: var(--gsl-ink-soft);
	font-size: 0.96rem;
	position: relative;
}
.gsl-plainlist li::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px; height: 8px;
	background: var(--gsl-amber);
	border-radius: 2px;
}

/* ── Pricing block ───────────────────────────────────────────────────────── */
/* Pricing is plain markup inside page templates — edit prices there. */

.gsl-pricing {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
	max-width: 760px;
}
.gsl-price-card {
	background: var(--gsl-paper-2);
	border: 1px solid var(--gsl-line);
	border-radius: 10px;
	padding: 28px;
}
.gsl-price-card--featured { border-color: var(--gsl-ink); box-shadow: inset 0 3px 0 var(--gsl-amber); }
.gsl-price-card__label {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gsl-mute);
	margin-bottom: 10px;
}
.gsl-price-card__amount {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.1;
}
.gsl-price-card__amount small { font-size: 1rem; font-weight: 500; color: var(--gsl-mute); }
.gsl-price-card__note { font-size: 0.92rem; color: var(--gsl-mute); margin: 10px 0 0; }

.gsl-fineprint {
	font-size: 0.9rem;
	color: var(--gsl-mute);
	max-width: 70ch;
	margin-top: 20px;
}

/* ── Step timeline (e.g. 21-day process) ─────────────────────────────────── */

.gsl-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	counter-reset: gsl-step;
}
@media (max-width: 860px) {
	.gsl-steps { grid-template-columns: 1fr; }
}
.gsl-step {
	background: var(--gsl-paper-2);
	border: 1px solid var(--gsl-line);
	border-radius: 10px;
	padding: 26px;
	position: relative;
}
.gsl-step::before {
	counter-increment: gsl-step;
	content: counter(gsl-step);
	display: grid;
	place-items: center;
	width: 38px; height: 38px;
	border-radius: 50%;
	background: var(--gsl-amber);
	color: var(--gsl-ink);
	font-weight: 700;
	font-size: 1.05rem;
	margin-bottom: 16px;
}
.gsl-step__days {
	display: block;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gsl-amber-deep);
	margin-bottom: 8px;
}
.gsl-step p { margin: 0; color: var(--gsl-ink-soft); font-size: 0.97rem; }

/* ── Package cards (side-by-side pricing with discount) ──────────────────── */

.gsl-pkg-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 24px;
	align-items: start;
	max-width: 1000px;
}
.gsl-pkg {
	background: var(--gsl-paper-2);
	border: 1px solid var(--gsl-line);
	border-radius: 12px;
	padding: 32px;
	position: relative;
}
.gsl-pkg--featured {
	border-color: var(--gsl-ink);
	box-shadow: inset 0 4px 0 var(--gsl-amber);
}
.gsl-pkg__badge {
	position: absolute;
	top: -13px;
	right: 24px;
	background: var(--gsl-ink);
	color: var(--gsl-amber);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 999px;
}
.gsl-pkg__name { font-size: 1.3rem; margin: 0 0 14px; }
.gsl-pkg__prices { display: flex; align-items: baseline; gap: 12px; margin-bottom: 4px; }
.gsl-price-old {
	font-size: 1.1rem;
	color: var(--gsl-mute);
	text-decoration: line-through;
	text-decoration-thickness: 2px;
	text-decoration-color: var(--gsl-amber-deep);
}
.gsl-price-now {
	font-size: 2.3rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1;
}
.gsl-price-now small {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--gsl-amber-deep);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-right: 6px;
}
.gsl-pkg__discount-note { font-size: 0.85rem; color: var(--gsl-mute); margin: 0 0 18px; }
.gsl-pkg__meta {
	border-top: 1px solid var(--gsl-line);
	border-bottom: 1px solid var(--gsl-line);
	padding: 12px 0;
	margin-bottom: 18px;
	display: grid;
	gap: 6px;
	font-size: 0.92rem;
}
.gsl-pkg__meta span { color: var(--gsl-mute); }
.gsl-pkg__meta strong { color: var(--gsl-ink); font-weight: 600; }
.gsl-pkg__desc { color: var(--gsl-ink-soft); font-size: 0.97rem; }
.gsl-pkg h4 {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gsl-amber-deep);
	margin: 22px 0 10px;
}
.gsl-pkg__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 7px;
}
.gsl-pkg__list li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: 0.92rem;
	color: var(--gsl-ink-soft);
}
.gsl-pkg__list .gsl-checklist__check {
	width: 17px; height: 17px;
	font-size: 0.62rem;
	margin-top: 2px;
}
.gsl-pkg__cta { margin-top: 26px; }
.gsl-pkg__cta .gsl-btn { width: 100%; text-align: center; }

/* Collapsible "what's included" details inside a package card */
.gsl-pkg__details { margin-top: 20px; border-top: 1px solid var(--gsl-line); }
.gsl-pkg__toggle {
	cursor: pointer;
	list-style: none;
	user-select: none;
	padding: 16px 0;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--gsl-ink);
	display: flex;
	align-items: center;
	gap: 10px;
}
.gsl-pkg__toggle::-webkit-details-marker { display: none; }
.gsl-pkg__toggle::before {
	content: "+";
	flex-shrink: 0;
	width: 22px; height: 22px;
	border-radius: 50%;
	background: var(--gsl-amber);
	color: var(--gsl-ink);
	font-weight: 700;
	display: grid;
	place-items: center;
	line-height: 1;
}
.gsl-pkg__details[open] .gsl-pkg__toggle::before { content: "\2212"; }
.gsl-pkg__details[open] .gsl-pkg__toggle .gsl-pkg__toggle-open { display: none; }
.gsl-pkg__toggle-close { display: none; }
.gsl-pkg__details[open] .gsl-pkg__toggle .gsl-pkg__toggle-close { display: inline; }
.gsl-pkg__details > *:first-child + * { margin-top: 0; }
.gsl-pkg__details h4:first-of-type { margin-top: 4px; }

/* ── Comparison table ────────────────────────────────────────────────────── */

.gsl-table-wrap {
	max-width: 860px;
	overflow-x: auto;
	border: 1px solid var(--gsl-line);
	border-radius: 10px;
	background: var(--gsl-paper-2);
}
.gsl-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.93rem;
}
.gsl-table th,
.gsl-table td {
	padding: 12px 18px;
	text-align: left;
	border-bottom: 1px solid var(--gsl-line);
	white-space: nowrap;
}
.gsl-table td:first-child { white-space: normal; min-width: 220px; color: var(--gsl-ink-soft); }
.gsl-table tr:last-child td { border-bottom: 0; }
.gsl-table thead th {
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gsl-mute);
	background: var(--gsl-paper);
}
.gsl-table thead th:nth-child(3) { color: var(--gsl-amber-deep); }
.gsl-table td:nth-child(2),
.gsl-table td:nth-child(3) { font-weight: 600; }
.gsl-table .gsl-table__no { color: var(--gsl-mute); font-weight: 400; }

/* ── Note / disclaimer box ───────────────────────────────────────────────── */

.gsl-note {
	border: 1px solid var(--gsl-line);
	border-left: 3px solid var(--gsl-amber);
	background: var(--gsl-paper-2);
	border-radius: 0 8px 8px 0;
	padding: 18px 22px;
	max-width: 760px;
	font-size: 0.96rem;
	color: var(--gsl-ink-soft);
}
.gsl-note p:last-child { margin-bottom: 0; }

/* ── "Coming soon" chips ─────────────────────────────────────────────────── */

.gsl-soon {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 12px;
}
.gsl-soon__item {
	border: 1px dashed var(--gsl-line);
	background: var(--gsl-paper-2);
	border-radius: 8px;
	padding: 18px 20px;
	color: var(--gsl-ink-soft);
	font-size: 0.95rem;
}
.gsl-soon__item strong { display: block; color: var(--gsl-ink); font-weight: 600; margin-bottom: 2px; }
.gsl-soon__badge {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: var(--gsl-paper);
	border: 1px solid var(--gsl-line);
	border-radius: 999px;
	padding: 3px 9px;
	color: var(--gsl-amber-deep);
	margin-bottom: 10px;
}

/* ── FAQ block (details/summary accordion) ───────────────────────────────── */

.gsl-faq {
	max-width: 760px;
	display: grid;
	gap: 12px;
}
.gsl-faq__item {
	background: var(--gsl-paper-2);
	border: 1px solid var(--gsl-line);
	border-radius: 10px;
	overflow: hidden;
}
.gsl-faq__item[open] { border-color: var(--gsl-ink); }
.gsl-faq__q {
	cursor: pointer;
	list-style: none;
	padding: 18px 52px 18px 22px;
	font-weight: 600;
	font-size: 1rem;
	position: relative;
	user-select: none;
}
.gsl-faq__q::-webkit-details-marker { display: none; }
.gsl-faq__q::after {
	content: "+";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px; height: 24px;
	border-radius: 50%;
	background: var(--gsl-amber);
	color: var(--gsl-ink);
	font-weight: 700;
	display: grid;
	place-items: center;
	line-height: 1;
}
.gsl-faq__item[open] .gsl-faq__q::after { content: "\2212"; }
.gsl-faq__a {
	padding: 0 22px 18px;
	color: var(--gsl-ink-soft);
	font-size: 0.97rem;
}
.gsl-faq__a p:last-child { margin-bottom: 0; }

/* ── Footer CTA bar (amber) ──────────────────────────────────────────────── */

.gsl-footer-cta {
	background: var(--gsl-amber);
	padding: 48px 0;
}
.gsl-footer-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.gsl-footer-cta__title {
	margin: 0 0 8px;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--gsl-ink);
}
.gsl-footer-cta__sub {
	margin: 0;
	color: var(--gsl-ink-soft);
	font-size: 1rem;
	max-width: 52ch;
}
.gsl-footer-cta .gsl-btn {
	background: var(--gsl-ink);
	color: var(--gsl-amber);
	border-color: var(--gsl-ink);
	flex-shrink: 0;
}
.gsl-footer-cta .gsl-btn:hover {
	background: var(--gsl-paper);
	color: var(--gsl-ink);
	border-color: var(--gsl-paper);
}
@media (max-width: 640px) {
	.gsl-footer-cta__inner { flex-direction: column; align-items: flex-start; }
}

/* ── Footer (dark) ───────────────────────────────────────────────────────── */

.gsl-footer {
	background: var(--gsl-ink);
	color: var(--gsl-paper);
	padding: 0 0 32px;
}
.gsl-footer a { color: var(--gsl-paper); }
.gsl-footer__cols {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
	padding-top: 56px;
}
@media (max-width: 960px) {
	.gsl-footer__cols { grid-template-columns: 1fr 1fr 1fr; gap: 36px; }
	.gsl-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
	.gsl-footer__cols { grid-template-columns: 1fr 1fr; }
	.gsl-footer__brand { grid-column: 1 / -1; }
}
.gsl-footer h4 {
	font-size: 0.74rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	margin: 0 0 16px;
	color: var(--gsl-amber);
	font-weight: 600;
}
.gsl-footer ul { list-style: none; margin: 0; padding: 0; }
.gsl-footer ul li { margin-bottom: 8px; }
.gsl-footer ul a { text-decoration: none; font-size: 0.95rem; color: #c0c0c0; }
.gsl-footer ul a:hover { color: var(--gsl-amber); }
.gsl-footer__slogan {
	color: #b0b0b0;
	margin: 14px 0 0;
	max-width: 40ch;
	font-size: 0.95rem;
	line-height: 1.55;
}
.gsl-footer__bottom {
	border-top: 1px solid #2a2a2a;
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	font-size: 0.85rem;
	color: #888;
}
.gsl-footer__bottom a { color: #c0c0c0; text-decoration: none; }
.gsl-footer__bottom a:hover { color: var(--gsl-amber); }

/* ── Contact form ────────────────────────────────────────────────────────── */

.gsl-form {
	background: var(--gsl-paper-2);
	border: 1px solid var(--gsl-line);
	border-radius: 10px;
	padding: 32px;
	max-width: 720px;
}
@media (max-width: 600px) {
	.gsl-form { padding: 22px 18px; }
}
.gsl-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
@media (max-width: 640px) {
	.gsl-form__grid { grid-template-columns: 1fr; }
}
.gsl-form__field--full { grid-column: 1 / -1; }
.gsl-form label {
	display: block;
	font-size: 0.88rem;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--gsl-ink);
}
.gsl-form input,
.gsl-form select,
.gsl-form textarea {
	width: 100%;
	padding: 11px 14px;
	font-family: inherit;
	font-size: 0.97rem;
	color: var(--gsl-ink);
	background: var(--gsl-paper);
	border: 1px solid var(--gsl-line);
	border-radius: 8px;
	outline: none;
	transition: border-color 0.15s ease;
	-webkit-appearance: none;
	appearance: none;
}
.gsl-form select {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 38px;
}
.gsl-form input:focus,
.gsl-form select:focus,
.gsl-form textarea:focus { border-color: var(--gsl-ink); }
.gsl-form textarea { min-height: 130px; resize: vertical; }
.gsl-form__actions { margin-top: 22px; }
.gsl-form__note { font-size: 0.9rem; color: var(--gsl-mute); margin: 16px 0 0; }

/* ── Two-column helper ───────────────────────────────────────────────────── */

.gsl-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}
@media (max-width: 860px) {
	.gsl-split { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Utility ─────────────────────────────────────────────────────────────── */

.gsl-mt-0 { margin-top: 0; }
.gsl-mb-0 { margin-bottom: 0; }
.gsl-center { text-align: center; }
