/* =========================================================================
   Sirius Bright — main stylesheet
   No frameworks, no web fonts, no external requests.
   ========================================================================= */

:root {
	--brand:        #f69322;
	--brand-light:  #fbaf3a;
	--brand-dark:   #d97a0f;
	--brand-ink:    #7a4408;
	--brand-wash:   #fff6ea;

	--ink:          #0f1a2b;
	--ink-2:        #1b2942;
	--ink-3:        #33435c;
	--muted:        #5c6b82;
	--muted-2:      #8494a8;

	--line:         #e4e9f0;
	--line-2:       #eef2f7;
	--bg:           #ffffff;
	--bg-soft:      #f6f8fb;
	--bg-dark:      #0f1a2b;

	--wa:           #25d366;
	--danger:       #d64545;

	--radius:       14px;
	--radius-sm:    9px;
	--radius-lg:    22px;

	--shadow-sm:    0 1px 2px rgba(15,26,43,.06), 0 2px 8px rgba(15,26,43,.05);
	--shadow:       0 4px 12px rgba(15,26,43,.07), 0 14px 34px rgba(15,26,43,.08);
	--shadow-lg:    0 18px 50px rgba(15,26,43,.16);

	--wrap:         1200px;
	--wrap-narrow:  760px;
	--gutter:       20px;

	--font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

/* -------------------------------------------------------------------------
   Base
   ---------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 17px;
	line-height: 1.65;
	color: var(--ink-3);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

h1, h2, h3, h4 {
	margin: 0 0 .5em;
	color: var(--ink);
	line-height: 1.18;
	letter-spacing: -.018em;
	font-weight: 750;
}
h1 { font-size: clamp(2rem, 1.35rem + 2.6vw, 3.2rem); }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.5vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 1rem + .4vw, 1.3rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--brand); }

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

ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: .35em; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

::selection { background: var(--brand); color: #fff; }

:focus-visible {
	outline: 3px solid var(--brand);
	outline-offset: 2px;
	border-radius: 4px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px,1px,1px,1px);
	white-space: nowrap;
}

.sb-skip {
	position: absolute; left: -9999px; top: 0; z-index: 999;
	background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.sb-skip:focus { left: 0; color: #fff; }

/* -------------------------------------------------------------------------
   Layout
   ---------------------------------------------------------------------- */

.sb-wrap {
	width: 100%;
	max-width: var(--wrap);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.sb-wrap--narrow { max-width: var(--wrap-narrow); }

.sb-section { padding: clamp(2.6rem, 1.6rem + 3.4vw, 5rem) 0; }
.sb-section + .sb-section { padding-top: 0; }
.sb-section h2 { margin-bottom: .55em; }
.sb-section__intro {
	max-width: 62ch;
	color: var(--muted);
	font-size: 1.05rem;
	margin-bottom: 2rem;
}

.sb-eyebrow {
	text-transform: uppercase;
	letter-spacing: .12em;
	font-size: .76rem;
	font-weight: 750;
	color: var(--brand-dark);
	margin-bottom: .6em;
}

.sb-layout { display: grid; gap: 2.5rem; }
@media (min-width: 900px) {
	.sb-layout { grid-template-columns: minmax(0,1fr) 340px; gap: 3.5rem; align-items: start; }
}

/* -------------------------------------------------------------------------
   Buttons
   ---------------------------------------------------------------------- */

.sb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .55em;
	padding: .85em 1.45em;
	border: 1.5px solid transparent;
	border-radius: 999px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: transform .14s ease, box-shadow .14s ease, background-color .14s ease, color .14s ease;
	white-space: nowrap;
}
.sb-btn:hover { transform: translateY(-1px); }
.sb-btn:active { transform: translateY(0); }

.sb-btn--primary {
	background: var(--brand);
	color: #22160a;
	box-shadow: 0 2px 0 var(--brand-dark), var(--shadow-sm);
}
.sb-btn--primary:hover { background: var(--brand-light); color: #22160a; }

.sb-btn--light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.sb-btn--light:hover { background: #fff; color: var(--brand-dark); }

.sb-btn--ghost {
	background: transparent;
	color: var(--ink);
	border-color: var(--line);
}
.sb-btn--ghost:hover { border-color: var(--brand); color: var(--brand-dark); background: var(--brand-wash); }

.sb-btn--wa { background: var(--wa); color: #06331a; }
.sb-btn--wa:hover { background: #31e676; color: #06331a; }

.sb-btn--sm { padding: .62em 1.1em; font-size: .92rem; }
.sb-btn--block { width: 100%; }

.sb-icon { width: 22px; height: 22px; flex: 0 0 auto; }
.sb-icon--sm { width: 17px; height: 17px; }

/* -------------------------------------------------------------------------
   Top bar + header
   ---------------------------------------------------------------------- */

.sb-topbar {
	background: var(--ink);
	color: #c8d3e2;
	font-size: .86rem;
}
.sb-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 40px;
	padding-block: 6px;
}
.sb-topbar p { margin: 0; }
.sb-topbar__msg { display: flex; align-items: center; gap: .5em; }
.sb-topbar__msg .sb-icon { color: var(--brand-light); }
.sb-topbar__contact { display: flex; align-items: center; gap: 1.1rem; }
.sb-topbar__contact a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: .4em; }
.sb-topbar__contact a:hover { color: var(--brand-light); }
.sb-topbar__hours { color: #94a6bd; }
@media (max-width: 860px) {
	.sb-topbar__msg, .sb-topbar__hours { display: none; }
	.sb-topbar__inner { justify-content: center; }
}

.sb-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(255,255,255,.96);
	backdrop-filter: saturate(160%) blur(8px);
	border-bottom: 1px solid var(--line);
}
.sb-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 72px;
}
.sb-logo, .custom-logo-link { display: block; }
.sb-logo img, .custom-logo-link img { height: 44px; width: auto; }
@media (max-width: 520px) { .sb-logo img, .custom-logo-link img { height: 36px; } }

.sb-nav { display: flex; align-items: center; gap: 1.5rem; }
.sb-nav__list {
	display: flex;
	align-items: center;
	gap: .25rem;
	list-style: none;
	margin: 0; padding: 0;
}
.sb-nav__list li { margin: 0; position: relative; }
.sb-nav__list a {
	display: block;
	padding: .55em .7em;
	color: var(--ink-2);
	font-weight: 600;
	font-size: .95rem;
	text-decoration: none;
	border-radius: 8px;
}
.sb-nav__list a:hover { background: var(--bg-soft); color: var(--brand-dark); }
.sb-nav__list .current-menu-item > a { color: var(--brand-dark); }

.sb-nav__list .sub-menu {
	position: absolute;
	top: 100%; left: 0;
	min-width: 230px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow);
	padding: .4rem;
	list-style: none;
	margin: 0;
	display: none;
	z-index: 20;
}
.sb-nav__list li:hover > .sub-menu,
.sb-nav__list li:focus-within > .sub-menu { display: block; }

.sb-burger {
	display: none;
	width: 46px; height: 42px;
	background: transparent;
	border: 1.5px solid var(--line);
	border-radius: 10px;
	cursor: pointer;
	padding: 11px 11px;
}
.sb-burger span {
	display: block; height: 2px; background: var(--ink); border-radius: 2px;
	transition: transform .2s ease, opacity .2s ease;
}
.sb-burger span + span { margin-top: 5px; }
.sb-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sb-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.sb-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Parent items that open a submenu get a caret. */
.sb-nav__list .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 6px; height: 6px;
	margin-left: .45em;
	border-right: 1.8px solid currentColor;
	border-bottom: 1.8px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	opacity: .6;
}
.sb-nav__list .sub-menu a { font-weight: 600; font-size: .92rem; padding: .55em .75em; }
.sb-nav__list .sub-menu a:hover { background: var(--brand-wash); }

@media (max-width: 1040px) {
	.sb-burger { display: block; }
	.sb-nav {
		position: absolute;
		top: 100%; left: 0; right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: .5rem;
		background: #fff;
		border-bottom: 1px solid var(--line);
		box-shadow: var(--shadow);
		padding: 1rem var(--gutter) 1.4rem;
		max-height: calc(100dvh - 112px);
		overflow-y: auto;
		display: none;
	}
	.sb-nav.is-open { display: flex; }
	.sb-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
	.sb-nav__list a { padding: .8em .4em; border-bottom: 1px solid var(--line-2); border-radius: 0; }
	.sb-nav__list .sub-menu { position: static; display: block; border: 0; box-shadow: none; padding-left: .8rem; }
	.sb-nav__list .menu-item-has-children > a::after { display: none; }
	.sb-nav__cta { margin-top: .6rem; }
	.sb-nav__cta .sb-btn { width: 100%; }
}

/* -------------------------------------------------------------------------
   Hero
   ---------------------------------------------------------------------- */

.sb-hero {
	position: relative;
	background: var(--bg-dark);
	color: #e8eef6;
	overflow: hidden;
	isolation: isolate;
}
.sb-hero__media { position: absolute; inset: 0; z-index: -2; }
.sb-hero__img { width: 100%; height: 100%; object-fit: cover; }
.sb-hero::after {
	content: "";
	position: absolute; inset: 0; z-index: -1;
	background:
		linear-gradient(105deg, rgba(10,18,31,.96) 0%, rgba(10,18,31,.9) 42%, rgba(10,18,31,.55) 72%, rgba(10,18,31,.35) 100%);
}
@media (max-width: 900px) {
	.sb-hero::after { background: linear-gradient(180deg, rgba(10,18,31,.94), rgba(10,18,31,.9)); }
}

.sb-hero__inner {
	display: grid;
	gap: 2.5rem;
	padding-block: clamp(2.4rem, 1.4rem + 4vw, 4.6rem);
	align-items: center;
}
@media (min-width: 980px) {
	.sb-hero__inner { grid-template-columns: minmax(0,1.15fr) 400px; gap: 3.5rem; }
}

.sb-hero h1 { color: #fff; margin-bottom: .35em; }
.sb-hero__lede {
	font-size: clamp(1.02rem, .96rem + .35vw, 1.18rem);
	color: #ccd8e6;
	max-width: 56ch;
}
.sb-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .45em;
	background: rgba(246,147,34,.15);
	border: 1px solid rgba(251,175,58,.35);
	color: var(--brand-light);
	padding: .38em .85em;
	border-radius: 999px;
	font-size: .82rem;
	font-weight: 650;
	margin-bottom: 1.1em;
}
.sb-hero__points {
	list-style: none;
	padding: 0;
	margin: 1.4rem 0 1.8rem;
	display: grid;
	gap: .55rem;
}
.sb-hero__points li {
	display: flex;
	align-items: flex-start;
	gap: .6em;
	color: #d7e2ee;
	font-size: .98rem;
	margin: 0;
}
.sb-hero__points .sb-icon { color: var(--brand-light); margin-top: .25em; }

.sb-hero__actions { display: flex; flex-wrap: wrap; gap: .7rem; }

.sb-hero__form .sb-form {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 1.6rem;
	box-shadow: var(--shadow-lg);
	color: var(--ink-3);
}

.sb-crumbs { margin-bottom: 1.1rem; font-size: .84rem; }
.sb-crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4em; margin: 0; padding: 0; }
.sb-crumbs li { margin: 0; display: flex; align-items: center; gap: .4em; }
.sb-crumbs li + li::before { content: "›"; opacity: .5; }
.sb-crumbs a { color: inherit; opacity: .78; text-decoration: none; }
.sb-crumbs a:hover { opacity: 1; text-decoration: underline; }
.sb-hero .sb-crumbs { color: #b9c7d8; }
.sb-hero .sb-crumbs a { color: #d5e0ec; }

/* Page head (non-hero pages) */
.sb-pagehead {
	background: var(--bg-soft);
	border-bottom: 1px solid var(--line);
	padding: clamp(1.8rem, 1.2rem + 2.4vw, 3.4rem) 0;
}
.sb-pagehead__lede { font-size: 1.1rem; color: var(--muted); max-width: 62ch; }
.sb-pagehead__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }
.sb-pagethumb { margin-top: 2rem; }
.sb-pagethumb img { border-radius: var(--radius); width: 100%; }

/* -------------------------------------------------------------------------
   Trust bar
   ---------------------------------------------------------------------- */

.sb-trust { background: var(--bg); padding: 0; }
.sb-trust__grid {
	display: grid;
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	margin-top: -28px;
	position: relative;
	z-index: 5;
	box-shadow: var(--shadow);
}
@media (min-width: 720px) { .sb-trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .sb-trust__grid { grid-template-columns: repeat(4, 1fr); } }

.sb-trust__item {
	background: #fff;
	padding: 1.15rem 1.25rem;
	display: flex;
	align-items: flex-start;
	gap: .8rem;
}
.sb-trust__icon { color: var(--brand); width: 26px; height: 26px; margin-top: 2px; }
.sb-trust__item strong { display: block; color: var(--ink); font-size: .98rem; }
.sb-trust__item span { display: block; font-size: .87rem; color: var(--muted); line-height: 1.5; }

/* -------------------------------------------------------------------------
   Service cards
   ---------------------------------------------------------------------- */

.sb-services__grid {
	display: grid;
	gap: 1.1rem;
	grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
}
.sb-card {
	display: flex;
	flex-direction: column;
	gap: .35rem;
	padding: 1.5rem;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	text-decoration: none;
	color: var(--ink-3);
	transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.sb-card:hover {
	border-color: var(--brand);
	box-shadow: var(--shadow);
	transform: translateY(-2px);
	color: var(--ink-3);
}
.sb-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px; height: 48px;
	border-radius: 12px;
	background: var(--brand-wash);
	color: var(--brand-dark);
	margin-bottom: .7rem;
}
.sb-card h3 { margin-bottom: .2em; }
.sb-card p { font-size: .95rem; color: var(--muted); margin-bottom: .9em; }
.sb-card__more {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: .35em;
	font-weight: 700;
	font-size: .92rem;
	color: var(--brand-dark);
}

/* -------------------------------------------------------------------------
   Includes / checklist grid
   ---------------------------------------------------------------------- */

.sb-includes { background: var(--bg-soft); }
.sb-includes__grid {
	display: grid;
	gap: 1.4rem 2rem;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	margin-top: 1.8rem;
}
.sb-includes__item { display: flex; gap: .9rem; align-items: flex-start; }
.sb-includes__tick {
	flex: 0 0 auto;
	width: 30px; height: 30px;
	border-radius: 50%;
	background: var(--brand);
	color: #22160a;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}
.sb-includes__item h3 { margin-bottom: .25em; font-size: 1.05rem; }
.sb-includes__item p { font-size: .95rem; color: var(--muted); margin: 0; }

/* -------------------------------------------------------------------------
   Intro / prose
   ---------------------------------------------------------------------- */

.sb-intro p {
	font-size: 1.08rem;
	color: var(--ink-3);
}
.sb-intro p:first-child { font-size: 1.16rem; color: var(--ink-2); }

.sb-prose h2 { margin-top: 1.8em; }
.sb-prose h3 { margin-top: 1.5em; }
.sb-prose > *:first-child { margin-top: 0; }
.sb-prose ul, .sb-prose ol { padding-left: 1.3em; }
.sb-prose li { margin-bottom: .5em; }
.sb-prose img { border-radius: var(--radius); }
.sb-prose blockquote {
	margin: 1.6em 0;
	padding: .2em 0 .2em 1.3em;
	border-left: 4px solid var(--brand);
	color: var(--ink-2);
	font-size: 1.08rem;
}
.sb-prose table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }
.sb-prose th, .sb-prose td { border: 1px solid var(--line); padding: .7em .85em; text-align: left; }
.sb-prose th { background: var(--bg-soft); }

/* -------------------------------------------------------------------------
   Local section
   ---------------------------------------------------------------------- */

.sb-local__grid { display: grid; gap: 2.4rem; }
@media (min-width: 940px) {
	.sb-local__grid { grid-template-columns: minmax(0,1fr) 360px; gap: 3rem; align-items: start; }
}
.sb-local__text h3 { margin-top: 1.7em; color: var(--ink-2); }
.sb-local__text h3:first-of-type { margin-top: 1em; }
.sb-local__img { border-radius: var(--radius); margin-top: 1.4rem; width: 100%; }

.sb-panel {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.5rem;
	box-shadow: var(--shadow-sm);
}
.sb-panel--sticky { position: sticky; top: 100px; }
.sb-panel h3 { margin-bottom: .9em; }
.sb-panel__list { list-style: none; padding: 0; margin: 0 0 1.3rem; }
.sb-panel__list li {
	display: flex;
	gap: .6em;
	align-items: flex-start;
	font-size: .95rem;
	padding: .55em 0;
	border-bottom: 1px solid var(--line-2);
}
.sb-panel__list li:last-child { border-bottom: 0; }
.sb-panel__list .sb-icon { color: var(--brand-dark); margin-top: .2em; flex: 0 0 auto; }

/* -------------------------------------------------------------------------
   Compliance block
   ---------------------------------------------------------------------- */

.sb-compliance { background: var(--bg-soft); }
.sb-compliance--home { background: var(--ink); color: #c9d5e4; }
.sb-compliance--home h2 { color: #fff; }
.sb-compliance--home .sb-eyebrow { color: var(--brand-light); }
.sb-compliance--home .sb-btn--ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.sb-compliance--home .sb-btn--ghost:hover { background: rgba(255,255,255,.08); color: #fff; border-color: var(--brand-light); }

.sb-compliance__grid {
	display: grid;
	gap: 1.2rem;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	margin: 1.8rem 0;
}
.sb-compliance__item {
	background: #fff;
	border: 1px solid var(--line);
	border-left: 4px solid var(--brand);
	border-radius: var(--radius-sm);
	padding: 1.3rem;
}
.sb-compliance__item h3 { font-size: 1.02rem; margin-bottom: .4em; }
.sb-compliance__item p { font-size: .94rem; color: var(--muted); margin: 0; }

.sb-note {
	display: flex;
	gap: .6em;
	align-items: flex-start;
	background: var(--brand-wash);
	border: 1px solid rgba(246,147,34,.3);
	border-radius: var(--radius-sm);
	padding: .95rem 1.1rem;
	font-size: .93rem;
	color: var(--brand-ink);
}
.sb-note .sb-icon { color: var(--brand-dark); margin-top: .15em; flex: 0 0 auto; }

/* -------------------------------------------------------------------------
   Process
   ---------------------------------------------------------------------- */

.sb-process__list {
	list-style: none;
	padding: 0;
	margin: 2rem 0 0;
	display: grid;
	gap: 1.4rem;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	counter-reset: step;
}
.sb-process__list li {
	position: relative;
	padding-top: .4rem;
	margin: 0;
}
.sb-process__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
	font-weight: 750;
	margin-bottom: .8rem;
}
.sb-process__list h3 { font-size: 1.04rem; margin-bottom: .3em; }
.sb-process__list p { font-size: .94rem; color: var(--muted); margin: 0; }

/* -------------------------------------------------------------------------
   Why grid
   ---------------------------------------------------------------------- */

.sb-why { background: var(--bg-soft); }
.sb-why__grid {
	display: grid;
	gap: 1.6rem;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	margin-top: 2rem;
}
.sb-why__icon { width: 34px; height: 34px; color: var(--brand); margin-bottom: .7rem; }
.sb-why__item h3 { margin-bottom: .3em; }
.sb-why__item p { font-size: .95rem; color: var(--muted); margin: 0; }

/* -------------------------------------------------------------------------
   Feature band
   ---------------------------------------------------------------------- */

.sb-feature__grid { display: grid; gap: 2.2rem; align-items: center; }
@media (min-width: 940px) {
	.sb-feature__grid { grid-template-columns: minmax(0,1fr) minmax(0,1.05fr); gap: 3.4rem; }
}
.sb-feature__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.sb-feature__list { list-style: none; padding: 0; margin: 1.3rem 0 1.6rem; display: grid; gap: .5rem; }
.sb-feature__list li { display: flex; gap: .6em; align-items: flex-start; font-size: .98rem; margin: 0; }
.sb-feature__list .sb-icon { color: var(--brand); margin-top: .25em; flex: 0 0 auto; }
.sb-feature__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin: 0; }

/* -------------------------------------------------------------------------
   Coverage / link grids
   ---------------------------------------------------------------------- */

.sb-coverage__region { margin-bottom: 2rem; }
.sb-coverage__region h3 {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: .09em;
	color: var(--muted-2);
	margin-bottom: .9em;
	padding-bottom: .5em;
	border-bottom: 1px solid var(--line);
}
.sb-coverage__all { margin-top: 2rem; }

.sb-links__grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: .6rem;
	grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
}
.sb-links__grid li { margin: 0; }
.sb-links__grid a {
	display: flex;
	align-items: center;
	gap: .5em;
	padding: .72em .9em;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	font-size: .93rem;
	font-weight: 600;
	color: var(--ink-2);
	text-decoration: none;
	transition: border-color .14s ease, background-color .14s ease, color .14s ease;
}
.sb-links__grid a:hover { border-color: var(--brand); background: var(--brand-wash); color: var(--brand-ink); }
.sb-links__grid .sb-icon { color: var(--brand); flex: 0 0 auto; }

/* Areas index */
.sb-arearegion__grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	margin-top: 1.6rem;
}
.sb-areacity h3 {
	font-size: 1.08rem;
	padding-bottom: .5em;
	margin-bottom: .7em;
	border-bottom: 2px solid var(--brand);
}
.sb-areacity h3 a { color: var(--ink); text-decoration: none; }
.sb-areacity h3 a:hover { color: var(--brand-dark); }
.sb-areacity__subs { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 1.2rem; }
.sb-areacity__subs li { margin-bottom: .3em; break-inside: avoid; }
.sb-areacity__subs a { font-size: .9rem; color: var(--ink-3); text-decoration: none; }
.sb-areacity__subs a:hover { color: var(--brand-dark); text-decoration: underline; }
.sb-areacity__note { font-size: .9rem; color: var(--muted); }
@media (max-width: 420px) { .sb-areacity__subs { columns: 1; } }

.sb-suburbs__grid {
	display: grid;
	gap: 1.3rem;
	grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
	margin-top: 1.6rem;
}
.sb-suburbs__item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.25rem;
}
.sb-suburbs__item h3 { font-size: 1.02rem; margin-bottom: .35em; }
.sb-suburbs__item h3 a { color: var(--ink); text-decoration: none; }
.sb-suburbs__item h3 a:hover { color: var(--brand-dark); }
.sb-suburbs__item p { font-size: .92rem; color: var(--muted); margin-bottom: .7em; }
.sb-suburbs__links { font-size: .86rem; }
.sb-suburbs__links a { color: var(--brand-dark); text-decoration: none; }
.sb-suburbs__links a:hover { text-decoration: underline; }

.sb-parentlink { padding-top: 0; }
.sb-parentlink p {
	display: flex;
	gap: .6em;
	align-items: flex-start;
	background: var(--bg-soft);
	border-radius: var(--radius-sm);
	padding: 1rem 1.2rem;
	font-size: .96rem;
	margin: 0;
}
.sb-parentlink .sb-icon { color: var(--brand); margin-top: .25em; flex: 0 0 auto; }

/* Filter */
.sb-filter { display: block; max-width: 520px; }
.sb-filter span { display: block; font-weight: 700; color: var(--ink); margin-bottom: .45em; }
.sb-filter input {
	width: 100%;
	padding: .85em 1.1em;
	border: 1.5px solid var(--line);
	border-radius: 999px;
	font-size: 1rem;
	font-family: inherit;
}
.sb-filter input:focus { border-color: var(--brand); outline: none; box-shadow: 0 0 0 3px rgba(246,147,34,.18); }
.sb-filter__empty { margin-top: 1rem; color: var(--danger); font-weight: 600; }

/* -------------------------------------------------------------------------
   FAQ
   ---------------------------------------------------------------------- */

.sb-faq { background: var(--bg-soft); }
.sb-faq__list { margin-top: 1.8rem; display: grid; gap: .7rem; }
.sb-faq__item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	overflow: hidden;
}
.sb-faq__item summary {
	cursor: pointer;
	list-style: none;
	padding: 1.05rem 1.25rem;
	font-weight: 700;
	color: var(--ink);
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	font-size: 1.01rem;
}
.sb-faq__item summary::-webkit-details-marker { display: none; }
.sb-faq__item summary:hover { color: var(--brand-dark); }
.sb-faq__chev { color: var(--brand); transform: rotate(90deg); transition: transform .2s ease; flex: 0 0 auto; margin-top: .15em; }
.sb-faq__item[open] .sb-faq__chev { transform: rotate(-90deg); }
.sb-faq__answer { padding: 0 1.25rem 1.2rem; }
.sb-faq__answer p { margin: 0; color: var(--muted); font-size: .98rem; }

/* -------------------------------------------------------------------------
   Forms
   ---------------------------------------------------------------------- */

.sb-form__title { font-size: 1.25rem; margin-bottom: .3em; }
.sb-form__intro { font-size: .93rem; color: var(--muted); margin-bottom: 1.2em; }
.sb-form__row { margin-bottom: .85rem; }
.sb-form__grid { display: grid; gap: .85rem; }
@media (min-width: 420px) { .sb-form__grid { grid-template-columns: 1fr 1fr; } }
.sb-form label {
	display: block;
	font-size: .85rem;
	font-weight: 650;
	color: var(--ink-2);
	margin-bottom: .32em;
}
.sb-form input[type="text"],
.sb-form input[type="tel"],
.sb-form input[type="email"],
.sb-form select,
.sb-form textarea {
	width: 100%;
	padding: .72em .9em;
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	font-size: 1rem;
	font-family: inherit;
	color: var(--ink);
	background: #fff;
}
.sb-form textarea { resize: vertical; min-height: 84px; }
.sb-form input:focus, .sb-form select:focus, .sb-form textarea:focus {
	border-color: var(--brand);
	outline: none;
	box-shadow: 0 0 0 3px rgba(246,147,34,.18);
}
.sb-form .sb-btn { margin-top: .6rem; }
.sb-form__note { font-size: .85rem; color: var(--muted); margin: .8em 0 0; text-align: center; }
.sb-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.sb-form__status { margin-top: .9rem; font-size: .93rem; font-weight: 600; }
.sb-form__status.is-ok { color: #1a7f45; }
.sb-form__status.is-error { color: var(--danger); }
.sb-form.is-sending button { opacity: .6; pointer-events: none; }
.sb-form--compact .sb-form__title { font-size: 1.1rem; }

.sb-search { display: flex; gap: .6rem; max-width: 520px; margin-top: 1.2rem; }
.sb-search input {
	flex: 1;
	padding: .75em 1em;
	border: 1.5px solid var(--line);
	border-radius: 999px;
	font-size: 1rem;
	font-family: inherit;
}
.sb-search input:focus { border-color: var(--brand); outline: none; }

/* -------------------------------------------------------------------------
   Contact page
   ---------------------------------------------------------------------- */

.sb-contact { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .sb-contact { grid-template-columns: minmax(0,1fr) 400px; gap: 3.5rem; align-items: start; } }
.sb-contact__list { list-style: none; padding: 0; margin: 2rem 0; display: grid; gap: 1.1rem; }
.sb-contact__list li { display: flex; gap: .9rem; align-items: flex-start; margin: 0; }
.sb-contact__list .sb-icon { color: var(--brand); flex: 0 0 auto; margin-top: .2em; }
.sb-contact__list strong { display: block; color: var(--ink); font-size: .9rem; }
.sb-contact__list a { text-decoration: none; }
.sb-contact__list a:hover { text-decoration: underline; }

/* -------------------------------------------------------------------------
   CTA band
   ---------------------------------------------------------------------- */

.sb-cta-band {
	background: linear-gradient(120deg, var(--brand-dark), var(--brand) 55%, var(--brand-light));
	color: #2a1a06;
	padding: clamp(2rem, 1.4rem + 2.4vw, 3.2rem) 0;
	margin-top: clamp(2.6rem, 1.6rem + 3.4vw, 5rem);
}
.sb-cta-band__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.6rem;
}
.sb-cta-band h2 { color: #22160a; margin-bottom: .2em; }
.sb-cta-band p { color: #43310f; margin: 0; font-size: 1.04rem; }
.sb-cta-band__actions { display: flex; flex-wrap: wrap; gap: .7rem; }

/* -------------------------------------------------------------------------
   Posts
   ---------------------------------------------------------------------- */

.sb-postgrid {
	display: grid;
	gap: 1.4rem;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.sb-postcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.sb-postcard a { text-decoration: none; color: inherit; display: block; height: 100%; }
.sb-postcard:hover { border-color: var(--brand); box-shadow: var(--shadow); }
.sb-postcard__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.sb-postcard__body { padding: 1.2rem; }
.sb-postcard h3 { font-size: 1.08rem; margin-bottom: .3em; }
.sb-postcard p { font-size: .93rem; color: var(--muted); margin-bottom: .8em; }
.sb-postmeta { color: var(--muted); font-size: .9rem; }

.pagination, .navigation.pagination { margin-top: 2.5rem; }
.nav-links { display: flex; flex-wrap: wrap; gap: .4rem; }
.page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 42px; height: 42px; padding: 0 .7em;
	border: 1px solid var(--line); border-radius: 9px;
	text-decoration: none; color: var(--ink-2); font-weight: 600;
}
.page-numbers.current { background: var(--brand); border-color: var(--brand); color: #22160a; }
.page-numbers:hover { border-color: var(--brand); }

.sb-comments { margin-top: 2rem; }
.sb-commentlist { list-style: none; padding: 0; }
.sb-commentlist .children { list-style: none; padding-left: 1.5rem; }

/* -------------------------------------------------------------------------
   Footer
   ---------------------------------------------------------------------- */

.sb-footer {
	background: var(--ink);
	color: #9fb0c6;
	padding: clamp(2.6rem, 1.8rem + 3vw, 4.4rem) 0 0;
	font-size: .94rem;
	margin-top: 0;
}
.sb-cta-band + .sb-footer { margin-top: 0; }
.sb-footer a { color: #d3dce7; text-decoration: none; }
.sb-footer a:hover { color: var(--brand-light); text-decoration: underline; }
.sb-footer h3 {
	color: #fff;
	font-size: .88rem;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: 1.1em;
}
.sb-footer h4 { color: var(--brand-light); font-size: .82rem; margin-bottom: .7em; text-transform: uppercase; letter-spacing: .06em; }
.sb-footer ul { list-style: none; padding: 0; margin: 0; }
.sb-footer li { margin-bottom: .5em; }

.sb-footer__top { display: grid; gap: 2.4rem; padding-bottom: 2.6rem; }
@media (min-width: 760px) { .sb-footer__top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .sb-footer__top { grid-template-columns: 1.7fr 1fr 1.2fr 1fr; gap: 2.8rem; } }

.sb-footer__brand .sb-logo img, .sb-footer__brand .custom-logo-link img { height: 46px; margin-bottom: 1.2rem; }
.sb-footer__blurb { max-width: 42ch; margin-bottom: 1.4rem; }
.sb-footer__contact li { display: flex; gap: .6em; align-items: flex-start; }
.sb-footer__contact .sb-icon { color: var(--brand); margin-top: .22em; flex: 0 0 auto; }
.sb-footer__social { display: flex; gap: 1rem; margin-top: 1.2rem; }

.sb-footer__regions { border-top: 1px solid rgba(255,255,255,.1); padding: 2.2rem 0; }
.sb-footer__regiongrid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }
.sb-footer__regiongrid li { margin-bottom: .35em; font-size: .88rem; }

.sb-footer__legal {
	border-top: 1px solid rgba(255,255,255,.1);
	padding: 1.6rem 0 2rem;
	font-size: .85rem;
	color: #7f92ab;
}
.sb-footer__note { margin-top: .5em; max-width: 80ch; }

/* -------------------------------------------------------------------------
   Sticky mobile bar
   ---------------------------------------------------------------------- */

.sb-stickybar {
	position: fixed;
	bottom: 0; left: 0; right: 0;
	z-index: 80;
	display: none;
	background: #fff;
	border-top: 1px solid var(--line);
	box-shadow: 0 -6px 24px rgba(15,26,43,.14);
	padding-bottom: env(safe-area-inset-bottom);
}
.sb-stickybar a {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	padding: .65rem .3rem;
	font-size: .73rem;
	font-weight: 700;
	color: var(--ink-2);
	text-decoration: none;
	border-right: 1px solid var(--line-2);
}
.sb-stickybar a:last-child { border-right: 0; }
.sb-stickybar a:first-child { color: var(--brand-dark); }
.sb-stickybar a:nth-child(2) { color: #16803c; }
.sb-stickybar__quote { background: var(--brand); color: #22160a !important; }

@media (max-width: 860px) {
	.sb-stickybar { display: flex; }
	body.has-sticky-bar { padding-bottom: 64px; }
}

/* -------------------------------------------------------------------------
   Print
   ---------------------------------------------------------------------- */

@media print {
	.sb-topbar, .sb-header, .sb-stickybar, .sb-cta-band, .sb-hero__form, .sb-footer__regions { display: none !important; }
	.sb-hero { background: #fff; color: #000; }
	.sb-hero::after, .sb-hero__media { display: none; }
	.sb-hero h1, .sb-hero__lede { color: #000; }
}

/* -------------------------------------------------------------------------
   Announcement bar
   ---------------------------------------------------------------------- */

.sb-alert {
	background: linear-gradient(90deg, var(--brand-dark), var(--brand));
	color: #2a1a06;
	font-size: .92rem;
	font-weight: 600;
}
.sb-alert__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: .55rem;
	padding: .6rem var(--gutter);
	text-align: center;
}
.sb-alert p { margin: 0; }
.sb-alert a {
	color: #2a1a06;
	font-weight: 800;
	text-decoration: underline;
	display: inline-flex;
	align-items: center;
	gap: .3em;
	white-space: nowrap;
}
.sb-alert a:hover { color: #fff; }

.sb-card__scope {
	display: inline-block;
	font-size: .8rem;
	color: var(--muted-2);
	background: var(--bg-soft);
	border-radius: 999px;
	padding: .25em .75em;
	margin-bottom: .8em;
}

.sb-footer__credit {
	margin-top: .9em;
	padding-top: .9em;
	border-top: 1px solid rgba(255,255,255,.08);
	font-size: .82rem;
	color: #6d809a;
}
.sb-footer__credit a { color: #9fb0c6; text-decoration: none; }
.sb-footer__credit a:hover { color: var(--brand-light); text-decoration: underline; }
